.custom-select__wrapper {
    background-color: #ffffff;
    border: 1px solid var(--Gray-4, #D1D1D2);
    border-radius: 8px;
    max-width: 100%;
    position: relative;

    &:hover {
        border-color: var(--Gray-5, #bdbdc2);
    }

    .custom-select__active {
        min-height: 48px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;

        .custom-select__value {
            color: var(--Base-Dark, #171717);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            letter-spacing: 0.16px;

            &[data-value=""] {
                color: var(--Gray-6, #9A9AA2);
            }
        }

        .custom-select__arrow {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: end;
            justify-content: center;
        }
    }

    .custom-select__items {
        position: absolute;
        right: 0;
        min-width: 100%;
        border-radius: 12px;
        background-color: #ffffff;
        box-shadow: 2px 4px 18.3px 0 rgba(0, 0, 0, 0.04);
        padding: 8px 16px;
        margin-top: 8px;
        z-index: 1;
        max-height: 300px;
        overflow-y: auto;
                

        .custom-select__item {
            color: var(--Base-Dark, #171717);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            letter-spacing: 0.16px;
            min-height: 36px;
            border-radius: 4px;
            cursor: pointer;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            white-space: nowrap;
            
            
            

            &[data-value=""] {
                pointer-events: none;
                opacity: .5;
            }

            &:hover {
                background-color: var(--Gray-1, #FAFAFA);
            }

            &[data-selected="true"] {
                background-color: var(--Gray-2, #f2f2f2);
                pointer-events: none;
            }
            
            &.highlighted {
                background-color: var(--Gray-1, #FAFAFA);
            }
        }

        .custom-select__no-results {
            color: var(--Gray-7, #7a7a85);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            letter-spacing: 0.16px;
            min-height: 36px;
            border-radius: 4px;
            padding: 6px 12px;
            display: flex;
            align-items: center;
        }
    }
}