
.select2-hidden-accessible{
    display: none;
}

.select2.select2-container{
    display: block;
    border: 1px solid #D7DEE3;
    border-radius: 4px;
    background: none;
    width: 275px;
    color: #98a1a8;
    position: relative;
    
    &::after{
        font-family: FontAwesome;
        content: "\f105";
        display: block;
        transform: rotate(90deg);
        position: absolute;
        top: 2px;
        right: 6px;
        font-size: 15px;
        font-weight: 600;
        z-index: -1;
    }
    &:has([aria-expanded="true"]){
        border-radius: 4px 4px 0 0;
    }
    & .select2-selection{
        display: block;
        width: 100%;
        padding: 2px 41px 2px 7px;
        cursor: default;
    }
}

.select2-container{
    z-index: 1;

    &>.select2-dropdown{
        display: block;
        background: #fff;
        z-index: 1;

        & input{
            width: 100%;
            border: 1px solid #999999;
            outline: 0;
            padding: 3px 41px 2px 7px;
            color: #98a1a8;
        }
        & ul{
            max-height: 30vh;
            overflow: auto;
            border: 1px solid #999999;
            border-top: 0;
            list-style-type: none;
            color: #98a1a8;
            padding: 0;

            &>li{
                padding: 3px 41px 2px 7px;
                cursor: default;
                &:hover{
                    color: #fff;
                    background-color: #365EDC;
                }
            }
        }
    }
}