.cyberhost-faq-item{

    border:1px solid #e5e7eb;
    border-radius:12px;

    margin-bottom:15px;

    overflow:hidden;

    transition:.3s;
}

.cyberhost-faq-question{

    width:100%;

    background:#fff;

    border:none;

    padding:20px 25px;

    cursor:pointer;

    text-align:left;

    font-size:16px;

    font-weight:600;

    position:relative;
}

.cyberhost-faq-question::after{

    content:"+";

    position:absolute;

    right:25px;

    font-size:24px;
}

.cyberhost-faq-item.active
.cyberhost-faq-question::after{

    content:"−";
}

.cyberhost-faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 25px;
}

.cyberhost-faq-item.active
.cyberhost-faq-answer{

    max-height:500px;

    padding:20px 25px;
}