

.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 5px;
    padding: 21px 70px 22px 40px;
    cursor: pointer;
    box-shadow: inset 0px 0px 20px 5px rgb(0 0 0 / 2%);
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--thm-font);
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 12px;
    text-align: center;
    line-height: 34px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid #e7e7e7;
    transform: translateY(-50%) rotate(-90deg);
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: #fff;
    border-color: var(--thm-base);
    background-color: var(--thm-base);
    transform: translateY(-50%) rotate(360deg);
}

/***
.accordion-box .block .acc-btn.active .icon-outer i:before {
    position: relative;
    font-size: 25px;
    font-family: flaticon !important;
    font-weight: 400;
    margin: 0px;
    content: "\f113";
}
**/
.accordion-box .block .acc-content {
    position: relative;
    display: none;
    background: #ffffff;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 60px;
    padding-bottom: 29px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-top: 1px;
}

.accordion-box .block .acc-content p {
    margin: 0;
}