/* ACCORDIAN */
.accordionjs {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
    margin-bottom: 20px;
}

.accordionjs .acc_section {
    border: 1px solid #ccc;
    position: relative;
    /* z-index: 10; */
    margin-top: -1px;
    overflow: hidden;
}

.accordionjs .acc_section .acc_head {
    position: relative;
    background: #fff;
    padding: 10px;
    display: block;
    cursor: pointer;
}

.accordionjs .acc_section .acc_head h3 {
    line-height: 1;
    margin: 5px 0;
}

.accordionjs .acc_section .acc_content {
    padding: 10px;
}

.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.accordionjs .acc_section.acc_active>.acc_content {
    display: block;
}

/* .accordionjs .acc_section.acc_active>.acc_head {
    background: #F9F9F9;
    border-bottom: 1px solid #ccc;
} */

.accordionjs .acc_section .acc_head {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    background-color: #3a3b39;
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    transition: background-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* .accordionjs .acc_section .acc_head:hover,
.accordionjs .acc_section .acc_head:focus {
    background-color: #00375f;
} */

/* .accordionjs .acc_section.acc_active>.acc_head {
    background-color: #f25468;
} */

.accordionjs .acc_section {
    border: 0;
    margin: 20px 0px;
}

.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head,
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
    border-radius: 0;
}

.accordionjs .acc_section .ant-collapse-header {
    padding: 17px 21px 13px;
    line-height: 1.5715;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 1200px) {
    .accordionjs .acc_section .ant-collapse-header {
        padding: 26px 40px 22px;
        font-size: 21px;
        line-height: 39px;
    }

    .ant-collapse-content>.ant-collapse-content-box {
        padding: 38px 34px 36px;
    }
}

img.faq-down-arrow {
    max-width: 17px;
    height: auto;
    transition: all 0.3s;
}

.acc_section.acc_active img.faq-down-arrow {
    transform: rotate(180deg) !important;
}

.style-module-faqsnobackground .accordionjs .acc_section .acc_head {
    background: transparent !important;
    color: #3a3b39 !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #888;
    padding: 0 0 40px !important;
}

.ant-collapse-content {
    overflow: hidden;
    color: #3a3b39;
    background-color: rgba(42, 101, 192, 0.03);
    border-top: 1px solid #d9d9d9;
}

.ant-collapse-content>.ant-collapse-content-box {
    padding: 21px 21px 28px;
}

.custom-cms-content p {
    font-size: 18px;
}

.custom-faq-content {
    padding-top: 60px;
}

.custom-pc-faq h2.faq-heading,
.custom-pc-faq .sub-heding {
    text-align: center;
}

h2.faq-heading {
    margin: 0;
}

.custom-row-content h2 {
    margin: 0;
}

/* END ACCORDIAN */