








.responsive-tabs-widget .tab-container {
    display: flex;
}

.responsive-tabs-widget .arrow-indicator {
    position: absolute;
    top: 27.8px;
    transform: translateY(-50%);
    left: 0;
    aspect-ratio: 1 !important;
    width: 3rem;
    border: 1px solid #fff;
    background: rgba(250,249,247,.35);
    border-radius:  5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 34.9px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease-out;
}


.responsive-tabs-widget .tab-list {
    width:25rem;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 4rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.responsive-tabs-widget .tab-list > li {
    color: #00424B;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    padding:1rem;
    padding-bottom: 0.85rem;
    cursor: default;
    position: relative;
    border-radius: 1.5625rem;
    border: 1px solid #FFF;
    background: rgba(250, 249, 247, 0.35);
    box-shadow: 0px 0px 34.9px 0px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.15s ease-in-out;
}

.responsive-tabs-widget .tab-list > li:last-child{
    margin-bottom: 0;
}

.responsive-tabs-widget .tab-list li.active {
    transform: translateX(2rem);
    pointer-events: none;
    cursor: default;
}

.responsive-tabs-widget .tab-content-container {
    position: relative;
    margin-left: 6.5rem;
    height: auto;
    width: calc( 100% - 30rem);
}

.responsive-tabs-widget .tab-content {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(10%);
    transition: opacity 0.15s, transform 0.15s, filter 1s;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.responsive-tabs-widget .tab-content.active {
    transition: opacity 0.5s, transform 0.5s, filter 0.5s;
    position: absolute;
    opacity: 1;
    transform: translateX(0);
    z-index: 9;
}

.responsive-tabs-widget .tab-content.slide-out {
    opacity: 0;
    transform: translateX(-10%);
    filter: blur(1rem);
    z-index: -1;
}

.responsive-tabs-widget .tab-content li,
.responsive-tabs-widget .tab-content p {
    color: #00424B;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.responsive-tabs-widget .tab-content ol{
    list-style-type: none;
    padding-left: 0;
}

.responsive-tabs-widget .tab-content ol li{
    counter-increment: step-counter;
    margin-bottom: 0.125rem;
}

.responsive-tabs-widget .tab-content ol li:before{
    content: counter(step-counter) ". ";
    font-weight: 500;
}


@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(1rem);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}



.responsive-tabs-widget .tab-content.active ol li,
.responsive-tabs-widget .tab-content.active p{
    opacity: 0;
    transform: translateY(-1rem);
}

.responsive-tabs-widget .tab-content.active ol li:nth-child(1){
    animation-name: slideUp;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0s;
}
.responsive-tabs-widget .tab-content.active ol li:nth-child(2){
    animation-name: slideUp;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0.15s;
}
.responsive-tabs-widget .tab-content.active ol li:nth-child(3){
    animation-name: slideUp;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0.3s;
}
.responsive-tabs-widget .tab-content.active ol li:nth-child(4){
    animation-name: slideUp;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0.45s;
}

.responsive-tabs-widget .tab-content.active ol li:nth-child(5){
    animation-name: slideUp;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0.6s;
}
.responsive-tabs-widget .tab-content.active ol li:nth-child(6){
    animation-name: slideUp;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0.75s;
}

.responsive-tabs-widget .tab-content.active p{
    animation-name: slideUp;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 1.15s;
}



.responsive-tabs-widget .tab-content strong,
.responsive-tabs-widget .tab-content b{
    font-weight: 500;
}


.responsive-tabs-widget .tab-content a{
    border-radius: 5rem;
    border: 1px solid #00424B;
    background: rgba(0, 66, 75, 0.00);
    color: #00424B;
    display: inline-block;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.025rem;
    margin-top: 1.5rem;
    margin-left: 2.5rem;
    padding: 0.8rem 1.2rem;
}

.responsive-tabs-widget .tab-content a:hover{
    background:  #00424B;
    color:#fff;
    box-shadow: 0px 0px 15px -2px #00424b !important;
}


@media (min-width: 1024px) and (max-width:1170px ){
    .responsive-tabs-widget .tab-list > li {
        font-size: 1.5rem;
    }
}




/* Mobile Styles */
@media (max-width: 1024px) {


    .responsive-tabs-widget .arrow-indicator {
        left: unset;
        right: 0;
    }

    .responsive-tabs-widget .arrow-indicator  span{
        transform: rotate(180deg);
    }


    .responsive-tabs-widget .tab-container {
        flex-direction: column;
    }

    .responsive-tabs-widget .tab-list {
        width: 100%;
        border-right: none;
        margin-left: 0;
        
    }


    .responsive-tabs-widget .tab-list > li {
        font-size: 1.5rem;
        padding:1rem;
        padding-bottom: 0.85rem; 
        position: relative;
        text-align: left;
        transition: unset;
        transition: all 0.5s ease;
    }

    .responsive-tabs-widget .tab-list li.active {
        transform: translateX(0rem);
        margin-right: 4rem;
        pointer-events: all;
    }

    .responsive-tabs-widget .tab-content-container {
        position: static;
    }

    .responsive-tabs-widget .tab-list + .tab-content-container{
        display: none;
    }

    .responsive-tabs-widget .tab-content {
        padding: 15px;
        position: static;
        opacity: 1;
        transform: none;
    }

    .responsive-tabs-widget .tab-content.active {
        display: block;
        animation: slideDown 0.3s ease;
        position: relative;
    }

    @keyframes slideDown {
        from { 
            opacity: 0;
            transform: translateY(-10px);
        }
        to { 
            opacity: 1;
            transform: translateY(0);
        }
    }
}