.global-filter {
    position: relative;
    height: 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: rgba(84, 101, 125, 0.20);
    cursor: pointer;
}

    .global-filter:hover {
        border-width: 1px;
        border-style: solid;
        border-color: #54657D
    }

    .global-filter:focus {
        outline: none;
        border-color: #54657D;
        background-color: rgba(84, 101, 125, 0.12);
    }

    .global-filter:disabled {
        background: #F2F4F7;
        color: #B0B7C3;
        border-color: #E0E4EA;
        cursor: not-allowed;
        opacity: 1;
    }

.option {
    display: flex;
    justify-content: space-between;
    align-items : center;
    width: calc(100% - 12px);
    cursor: pointer;
    margin-left: 12px;
}

.option-focused {
    background-color: #f0f0f0;
}

.option-selected {
    background-color: #F0F9FF;
    color: #2E85FF;
}

.option > img {
    display: none;
    flex-shrink: 0;
}

.option-selected > img {
    display: block;
    flex-shrink: 0;
}

.option > span {
    display: inline-block;
    width: 85%;
    overflow-wrap:break-word;
}

.filter-icon-button {
    height: 22px;
    width: 24px;
    position: relative;
    border-style: none;
    background: transparent;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clear-icon-button:hover {
    background: #AFBACA20;
}

.filter-icon {
    height: 22px;
    width: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.input-text {
    background: transparent;
    border-style: none;
    cursor: pointer;
    min-width: 0;
    color: #F0F2F5;
    text-overflow: ellipsis;
}

    .input-text::placeholder {
        color: #8293AB;
    }

.search-input {
    border: 1px solid transparent;
    border-radius: 4px;
    border-color: #E0E5EB;
    height: 24px;
    width: 90%;
    background-image: url(/Images/search.svg);
    background-repeat: no-repeat;
    background-position: 6px center;
    background-size: 16px 16px;
    text-indent: 24px;
}

    .search-input:hover {
        border-width: 1px;
        border-style: solid;
        border-color: #54657D
    }

.custom-select-options {
    position: absolute;
    z-index: 999;
    width: 100%;
    border-radius: 4px;
    background: #FFF;
    min-height: 16px;
    padding: 4px 0px 4px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge {
    width: 22px;
    height: 22px;
    position: absolute;
    bottom: 7px;
    right: -4px;
}

.checkmark {
    float: right;
}

.scrollable-list-container {
    max-height: 240px;
    overflow-y: auto;
    overflow-x: clip;
    scrollbar-color: #9AA8BC #FFF;
    scrollbar-width: auto;
    color: #0A0C0F;
    width: 100%;
}

.search-container {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#filterBadge > img {
    position: absolute;
    top: -4px;
    left: 12px;
    user-select: none;
}
