/**
 * 
 * Тема : 
 * 
 *
 * 
 */


#iblock-faq {
    
}



/*
 * -----------------------------------------------------------------------------
 *
 * .
 *
 * -----------------------------------------------------------------------------
 */

.faq-box {
    margin-top: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-box h2 {
    margin-bottom: 2rem;
}

.faq-box .faq {
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
}

.faq-box .ttl {
    position: relative;
    padding: 1rem 0;
    padding-right: 50px;
    
    font-size: 16px;
    font-weight: 600;
    
    cursor: pointer;
    user-select: none;
}

.faq-box .ttl::before {
    content: "";
    
    position: absolute;
    top: 50%; right: 0;
    
    width: 20px; height: 20px;
    
    margin-top: -10px;
    
    background-image: url(/_images/icon-plus.svg);
    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    
    transition: transform .3s ease;
}

.faq-box .ttl.active::before {
    transform: rotate(45deg);
}

.faq-box .txt {
    padding: 0 0 1rem;
    padding-right: 50px;
    
    font-size: 14px;
}





