.custom-tabs .tabs-nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-tabs .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #494949;
    background: #F1F4F5;
    padding: 8px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    flex-shrink: 0;
    min-height: 35px;
}

.custom-tabs .nav-link.disabled {
    background: #D9E8E1;
    cursor: default;
}

.custom-tabs .nav-link.active {
    background: #036739;
    color: #ffffff;
}

.custom-tabs .tabs-content {
    padding: 30px 0 0;
}

.custom-tabs .tabs-content > .tab-pane {
    display: none;
}

.custom-tabs .tabs-content > .active {
    display: block;
}

.custom-tabs .fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.custom-tabs .fade:not(.show) {
    opacity: 0;
}


.custom-tabs .accordion {
    width: 100%;
}

.custom-tabs .accordion-header {
    background: var(--catalog-light-grey-color);
    padding: 8px 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display:  none;
    height: 35px;
}

.custom-tabs .accordion-header h4 {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.custom-tabs .accordion-header h4 {
    color: #494949;
}

.custom-tabs .accordion-header.show h4 {
    color: var(--catalog-white-color);
}

.custom-tabs .accordion-header.show {
    color: var(--catalog-white-color);
    background: var(--catalog-green-color);
}

.custom-tabs .accordion-header.show svg {
    stroke: var(--catalog-white-color);
}

.custom-tabs .accordion-body {
    display: flex;
}
@media (max-width: 768px) {
    .custom-tabs .tabs-nav {
        display: none !important;
    }

    .custom-tabs .fade:not(.show) {
        opacity: 1 !important;
    }

    .custom-tabs .tabs-content > .tab-pane {
        display: flex !important;
    }

    .custom-tabs .accordion-header {
        display: flex;
    }

    .custom-tabs .accordion-body {
        max-height: 0;
        opacity: 0;
        padding: 0;
    }

    .custom-tabs .accordion-header.show ~ .accordion-body {
        max-height: 5000px;
        opacity: 1;
        padding: 24px 0;
    }

    .custom-tabs .accordion-body {
        display: none;
    }
    
    .custom-tabs .tabs-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .custom-tabs .tab-inner {
        padding: 0 10px;
    }
}
