.outer {
    max-width: autopx;
    margin: 0 auto;
    font-family: arial;
    line-height: 10px;
}
.faq-content {
    background-color: #f1f1f1;
    padding: px 20px;
    border-radius: 5px;
}
summary {
    background-color: #2196f3;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    outline: none;
    margin: 5px 0px;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary ~ * {
    animation: smooth 0.4s ease-in-out;
}
@keyframes smooth {
    0% {
        opacity: 0;
        margin-top: -10px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}
details > summary::after {
    position: absolute;
    content: "+";
    right: 25px;
}
details[open] > summary::after {
    position: absolute;
    content: "-";
    right: 25px;
}