﻿/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/* FAQ PAGE */

.faq .accordion-wrapper h2 {
    display: none;
}

.FAQacc.paddTB60 {
    padding-top: 38px; /*70 - 32 to account for top margin on accordion lis*/
}

.accordion {
    overflow: hidden;
    border-radius: 4px;
    margin: 0px;
}

.accordion-section-title {
    width: 100%;
    padding: 15px;
    cursor: pointer;
}

.accordion-section-title {
    /*width: calc(100% - 100px);*/
    padding: 15px 70px 15px 30px;
    display: inline-block;
    background-color: #EAEAEA;
    border: 0;
    color: #444444;
    transition: all linear 0.1s;
    text-decoration: none;
    border-radius: 8px;
    background: url('/Images/MSK/faq-arrow.png') no-repeat right 30px center #EAEAEA;
}

.content a.accordion-section-title {
    color: #444444;
    margin-top: 32px;
    font-weight: 700;
}

.accordion-section-title.active {
    background-color: #C3C1C1;
    text-decoration: none;
    background: url('/Images/MSK/faq-close.png') no-repeat right 30px center #EAEAEA;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-section-title:hover {
    background-color: #C3C1C1;
    text-decoration: none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

.accordion-section-content {
    padding: 15px 30px;
    display: none;
    background: #EAEAEA;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* END FAQ PAGE */

