﻿@import './_variables.css';
@import "../design-system/variables/_dimensions.css";

.working-set-title-container {
    background-color: white;
    font-family: BrownStdBold;
    color: var(--Logistic-Suit-Secondary);
    border-color: var(--Logistic-Suit-Accent-Lighten-Gray);
    border-width: 3px;
    border-style: none none solid none;
    padding-inline: 10px;
    align-items: center;
    display: grid;
    font-weight: 700;
    min-height: 35px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    position: relative;
    z-index: 1;
/*    z-index: 2;*/
}

    .working-set-title-container .number-of-filters {
        top: 32%;
        inset-inline-start: -15%;
        border-radius: var(--norma--border-raduis-sm);
        width: var(--norma--width-xs-2);
        height: var(--norma-height-sm-3);
        display: flex;
        justify-content: center;
        align-items: center;
    }

@font-face {
    font-family: BrownStdBold;
    src: url(../fonts/BrownStd-Bold.otf);
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
}


#working-set-panel::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
#working-set-panel::-webkit-scrollbar-track {
    background-color: white !important;
}

/* Handle */
#working-set-panel::-webkit-scrollbar-thumb {
    background: var(--Logistic-Suit-Secondary) !important;
    border-radius: 10px !important;
}

    /* Handle on hover */
    #working-set-panel::-webkit-scrollbar-thumb:hover {
        background: var(--Logistic-Suit-Secondary) !important;
    }



#working-set-panel:hover {
    /*    overflow: scroll;
    padding-inline-end: 0px;*/
}

.norma_dropdown .dropdown-item.dimmed-dropdown-item {
    pointer-events: none !important;
    color: lightgray !important;
    cursor: not-allowed !important;
}

.norma_dropdown .dropdown-item.dimmed-dropdown-item .dropdown-item-icon{
    filter: opacity(0.5);
}