 .tabs-carousel-widget { 
    display: flex; 
    gap: 24px; 
    direction: rtl;
    font-family: 'yekan bakh';
}
.tabs-controls { 
    display: flex; 
    flex-direction: column; 
    width: 250px !important;
    min-width: 250px !important;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
    max-height: 280px;
    overflow-y: scroll;
}
.tab-control { 
    cursor: pointer; 
    margin-top: 3px; 
    margin-bottom: 3px; 
    text-align: right; 
    background: #fff;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgb(209, 213, 219);
    color: rgba(10, 10, 10, 1);
    font-size: 14px;
    font-weight: 500;
}

.tab-control .tab-carousel-all-button {
    display: none;
}
.tab-control .tab-carousel-all-button svg {
    margin-right: 5px;
}

.tab-control.active .tab-carousel-all-button,
.tab-control:hover .tab-carousel-all-button {
    display: flex;
    position: absolute;
    left: 10px;
    background-color: white;
    padding: 2px 6px 2px 6px;
    border-radius: 10px;
    color: rgb(12, 126, 172);
    align-items: center;
}

.tab-control.active ,.tab-control:hover { 
    background: rgba(236, 249, 254, 1); 
    color: rgba(10, 10, 10, 1);
    border-radius: 10px;
    border-bottom: unset !important;
    display: flex;
    position: relative;
    align-items: center;
}
.tabs-content { 
    flex: 1;
}
.tab-panel { 
    display: none; 
}
.tab-panel.active { 
    display: block; 
}
.tabs-content { 
    width: calc(100% - 260px) !important; 
    max-width: calc(100% - 260px) !important; 
}

@media (max-width:767px) {
    .tabs-content { 
        width: calc(100% - 180px) !important; 
        max-width: calc(100% - 180px) !important; 
    }
    .tabs-carousel-widget { 
        gap: 10px; 
    }
    .tabs-controls { 
        width: 170px !important;
        min-width: 170px !important;
        padding: 5px;
    }   
    .tab-control { 
        padding: 10px;
    }
    .tab-control.active .tab-carousel-all-button,
    .tab-control:hover .tab-carousel-all-button {

        left: 5px;
    }



    
    .tabs-carousel-widget {
        flex-direction: column;
    }

    .tabs-controls {
        width: 100% !important;
        min-width: 100% !important;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .tabs-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 15px;
    }

    .tab-control.active .tab-carousel-all-button,
    .tab-control:hover .tab-carousel-all-button {
        display: none;
    }

    .jet-listing-grid__slider-icon {
        display: none !important;
    }

}