.ah-content,
body{
    background: #f5f5f5;
}
.nocomments{
    display: none;
}
.ah-faq-items{
    background: #f5f5f5;
    padding: 50px;
    border-radius: 10px;
}
.ah-faq-item{
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 3px 9px 0 rgb(0 0 0 / 3%);
    margin: 20px 5%;
    padding: 10px 30px;
}
.ah-faq-item-title {
    padding: 15px;
    position: relative;
    font-size: 15px;
    cursor: pointer;
    padding-left: 30px;
}
.ah-faq-item-title:before,
.ah-faq-item-title:after{
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: var(--main-color);
    left: 5px;
    bottom: 0;
    top: 0;
    margin: auto;
}
.ah-faq-item-title:before{
    transform: rotate(90deg);
    transition: all .35s ease-in-out;
}
.ah-faq-item[active="1"] .ah-faq-item-title:before{
    transform: rotate(0deg);
}
.ah-faq-item-desc {
    padding: 25px 0;
    border-top: 2px solid #f5f5f5;
    font-size: 14px;
    display: none;
}
.ah-faq-title {
    font-size: 22px;
    text-align: center;
    color: var(--main-color);
}
.ah-faq-desc{
    text-align: center;
    font-size: 13px;
    color: #999;
    padding-bottom: 20px;
}

@media only screen and (max-width: 750px) {
    .ah-faq-item{
        margin: 20px 0;
    }
}
@media only screen and (max-width: 600px) {
    .ah-faq-items{
        padding: 5px;
    }
    .ah-faq-item{
        padding: 10px 15px;
    }
}