.accordion {
    margin: 3em auto;
    max-width: 100vw;
    border: none;
}
.toggle {
    display: none;
}
.option {
    position: relative;
    margin-bottom: 1em;
}
.title, .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.title {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    border: solid 2px #f18c92;
    border-radius: 10px;
    padding: 1em;
    display: block;
    color: #333;
    cursor: pointer;
}
.title:active {
    background-color: #f18c92;
    color: #fff;
}
.title::after,
.title::before {
    content: "";
    position: absolute;
    left: 5.5em;
    top: 1.4em;
    width: 1px;
    height: 0.75em;
    background-color: #333;
    transition: all 0.2s;
}
.title:active::after,
.title:active::before {
    background-color: #fff;
}
.title::after {
    transform: rotate(90deg);
}
.content {
    max-height: 0;
    overflow: hidden;
}
.content p {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 0.9em;
    line-height: 1.5;
}
.toggle:checked + .title + .content {
    max-height: 100%;
    overflow: visible;
    transition: all 1.5s;
}
.toggle:checked + .title::before {
    transform: rotate(90deg) !important;
}

@media only screen and (min-width: 769px){

.title:hover {
    background-color: #f18c92;
    color: #fff;
}
.title:hover::after,
.title:hover::before {
    background-color: #fff;
}



}