.smk_accordion {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 0px;
    z-index: 0;
}

/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.faq_accordion .accordion_in {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 0px solid transparent;
    border-radius: 2px;
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border-bottom: 3px dashed var(--dottedline);
    padding-bottom: 20px;
}


/*.smk_accordion .accordion_in.acc_active .acc_head{border:1px solid transparent;background-color:#FFEC10;}
.smk_accordion .accordion_in .acc_content{border:1px solid #DCDCDC;border-top:0;}
.smk_accordion .accordion_in .acc_head{border:1px solid #DCDCDC;}*/
.faq_accordion .acc_head {
    background: url(../images/faq-plus-icon.svg)no-repeat right 0 center;
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.36px;
    line-height: 24px;
    padding: 0 40px 0 0;
    cursor: pointer;
    border: 0px solid transparent;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    letter-spacing: 0.32px;
}

.faq_accordion .accordion_in.acc_active .acc_head {
    background: url(../images/faq-minus-icon.svg)no-repeat right 0 center;
}

.faq_accordion .acc_content p {
    font-size: 14px;
    line-height: 28px;
}


/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */

.smk_accordion .accordion_in .acc_head .acc_icon_expand {
    position: relative;
}

.smk_accordion .accordion_in .acc_head .acc_icon_expand::after {
    display: block;
    position: absolute;
    right: -40px;
    left: auto;
    top: 5px;
    bottom: 0;
    margin: auto;
    content: "";
    width: 18px;
    height: 10px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    /*background-image: url(../images/green-faq-arrow.svg);*/
    margin-top: 0px;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    filter: brightness(0);
    opacity: 0.5;
}

.smk_accordion .accordion_in.acc_active>.acc_head .acc_icon_expand::after {
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    opacity: 1;
    filter: none;

}

/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */

.smk_accordion .accordion_in .acc_content p {
    font-weight: normal;
    color: var(--white);
    font-size: 16px;
    margin: 20px 0 0 0;
    line-height: 30px;
    letter-spacing: 0.32px;
}

.smk_accordion .accordion_in .acc_content p:last-of-type {
    margin-bottom: 0;
}

.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
    margin-top: 5px;
}

/**
 * --------------------------------------------------------------
 * General
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in.acc_active>.acc_content {
    display: block;
}

.acc_content {
    display: none;
}



@media(max-width:1200px) {}

@media(max-width:992px) {}

@media(max-width:567px) {}

@media(max-width:480px) {}