@import url('../constants.css');
/*=========== Tab-wrapper  ===========*/
.faq-accordion .svg-inline--fa.fa-w-16 {
    width: auto;
    color: var(--green);
}

.faq-accordion {
    margin-bottom: 0;
}

.tab-acc div.acc_container .block {
    color: var(--white);
    font-size: 18px;
    line-height: var(--lh);
    font-weight: 400;
}

.tab-wrapper {
    overflow: hidden;
}

.block-wrapper {
    overflow: hidden;
}

.block-wrapper .tab-title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    position: relative;
    display: block;
    margin-bottom: 20px;
    font-family: var(--heading);
}

.block-wrapper .tab-acc>section {
    overflow: hidden;
    margin-bottom: 0;
    padding: 0 36px 0 100px;
}

.tab-acc .acc_title_bar {
    font-size: 24px;
    line-height: 140%;
    font-weight: 600;
    margin: 0;
    padding: 0 20px 0 30px;
    font-family: var(--text);
}

.tab-acc .acc_title_bar a {
    text-decoration: none;
    display: block;
    padding: 24px 56px 24px 0;
    position: relative;
    color: var(--headcolor);
    font-weight: 600;
    display: block;
    cursor: pointer;
    font-family: var(--text);
}

.tab-acc .acc_title_bar.default-title-bar.bb {
    border-bottom: 1px solid var(--border2);
}

.tab-acc .acc_title_bar.default-title-bar-active.bb {
    border-bottom: 1px solid transparent;
}

.tab-acc .acc_title_bar a:active,
.tab-acc .acc_title_bar a:focus {
    outline: none;
}

.tab-acc .acc_title_bar a::before {
    z-index: 2;
    /*content:url(<?php bloginfo('template_directory'); ?>/assets/images/minus.png); */
    content: "\f077";
    /*f067*/
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    width: 20px;
    background: transparent;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-repeat: no-repeat;
    color: var(--secondary);
    transition: .3s ease-in-out all;
}

.tab-acc .acc_title_bar.default-title-bar-active a::before {
    content: "\f077";
    transition: .3s ease-in-out all;
    color: var(--secondary);
}

/*f068*/
.tab-acc div.acc_container {
    padding: 0;
    background: var(--primary);
    padding: 0 20px 0 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.tab-acc div.acc_container:has(p:only-of-type) p:first-of-type {
    margin-bottom: 0px;
}

.tab-acc div.acc_container:has(p:not(:only-of-type)) p:last-of-type {
    margin-bottom: 0px;
}

.tab-acc .default-title-bar-active {
    background-color: var(--primary);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.tab-acc .acc_title_bar.default-title-bar-active.bb a,
.tab-acc div.acc_container p {
    color: var(--white);
}

.tab-acc .acc_title_bar.default-title-bar-active a::before {
    content: "\f077";
}

.tab-acc div.acc_container .block {
    padding: 0 0 24px;
    border-bottom: 1px solid var(--border2);
}

.tab-acc .nested .default-title-bar {
    background-color: #fff;
    padding: 0 24px;
    margin: 24px 0 0;
}

.tab-acc .nested .acc_container {
    padding: 0 24px;
    background-color: #fff;
}

/*=========== Tab-wrapper  ===========*/
@media screen and (max-width: 767px) {
    .tab-acc .acc_title_bar {
        font-size: 20px;
    }
}