.select2-wrapper{
    position: relative;
}
.select2-hidden-accessible{
    display: none !important;
}
.select2-container{

}
.select2-container--open{
    left:0 !important;
    top:44px !important;
    right:0 !important;
}
.select2-selection--single{
    position: relative;
    display: flex;
    align-items: center;
    width:100%;
    overflow: hidden;
    border-radius: 5px;
    transition: .3s;
    cursor: pointer;
}
.form-element.size-s .select2-selection--single{
    height: 30px;
}
.form-element.size-m .select2-selection--single{
    height: 40px;
}
.form-element.size-l .select2-selection--single{
    height: 50px;
}


.select2-selection--single .select2-selection__rendered{
    padding:0 30px 0 15px;
}
.select2-selection__clear{
    display: none;
}
.select2-selection__arrow:after{
    content: '\e907';
    font-family: si-solid;
    position: absolute;
    top:0;
    right:0;
    display: flex;
    align-items: center;
    background: var(--white);
    width:20px;
    border-left: 10px solid var(--white);
    font-size: 12px;
}

.form-element.size-s .select2-selection__arrow:after{
    height: 30px;
}
.form-element.size-m .select2-selection__arrow:after{
    height: 40px;
}
.form-element.size-l .select2-selection__arrow:after{
    height: 50px;
}
/**/
.select2-dropdown {
    background-color: var(--white);
    border: 1px solid var(--bluegray-200);
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-table;
    position: absolute;
    width:100% !important;
    top:10px;
    left: -100000px;
    right:0;
    z-index: 9;
    box-shadow: 0 0 40px 0 rgb(82 63 105 / 13%);
    padding:10px 0;
}
.select2-container--open .select2-dropdown{
    left:0;
}
/**/
.select2-search--dropdown {

}
.select2-search__field{
    display: flex;
    align-items: center;
    width: calc(100% - 20px);
    height: 44px;
    padding: 0 10px;
    margin:0 10px 10px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    background: var(--white);
    border: 1px solid var(--bluegray-100);
}
.select2-no-search .select2-search--dropdown{
    display: none;
}


/**/
.select2-results {
    display: block;
    max-height: 250px;
    overflow-y: auto;
}
.select2-results::-webkit-scrollbar { width: 3px;}
.select2-results::-webkit-scrollbar-button {}
.select2-results::-webkit-scrollbar-track {}
.select2-results::-webkit-scrollbar-track-piece { background-color: #fff;}
.select2-results::-webkit-scrollbar-thumb { height: 0; background-color: #ccc; border-radius: 3px;}
.select2-results::-webkit-scrollbar-corner { background-color: #999;}
.select2-results::-webkit-resizer { background-color: #666;}


.select2-results__options {
    display: block;
}
.select2-results__option {
    display: block;
    width:100%;
    padding: 10px;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    white-space: nowrap;
}
.select2-results__option:hover,
.select2-results__option.select2-results__option--highlighted{
    color: var(--black);
    background: var(--bluegray-50);
}
/**/
.select2-results__option--disabled{
    opacity: .4;
}
.select2-results__option--disabled:hover{
    color:var(--black);
    background: none;
}

/*select2 style*/
.select2-selection--single{
    border: 1px solid var(--bluegray-100);
    background: var(--white);
}
.select2-container--open .select2-selection--single{
    border: 1px solid var(--bluegray-300);

}


.select2-selection--multiple{
    display: block;
    padding: 10px 10px 0 10px;
    width: 100%;
    min-height: 50px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    background: var(--white);
    border: 1px solid var(--bluegray-100);
    cursor: pointer;
}

.select2-selection--multiple .select2-search__field{
    display:flex;
    width:100% !important;
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    margin-left: 5px;
    padding: 0;
    max-width: 100%;
    resize: none;
    height: 0;
    vertical-align: bottom;
    font-family: sans-serif;
    overflow: hidden;
    word-break: keep-all;
}
.select2-selection__rendered{
    display: flex;
    flex-wrap: wrap;
}
.select2-selection__choice{
    display: flex;
    align-items: center;
    justify-content: center;
    height:30px;
    padding:0 5px;
    font-size: 12px;
    background: var(--gray-300);
    border-radius: 4px;
    margin:5px 0 0 5px;
}
.select2-results__option--selected{
    color: var(--black);
    background: var(--bluegray-50);
}
.select2-selection__choice__remove{
    display: flex;
    align-items: center;
    justify-content: center;
    width:20px;
    height:20px;
    margin:0 5px 0 0;
    border-radius: 3px;
    cursor: pointer;
}
.select2-selection__choice__remove:hover{
    background: var(--red-200);
}
.select2-selection__choice__remove span{
    position: relative;
    top:-2px;
    color:var(--red-400);
    font-size:14px;
}
.select2-selection__choice__remove:hover span{
    color:var(--white);
}
[aria-label] {

}

[aria-label]:after {
    content: attr(aria-label);
    display: block;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 5000;
    padding: 5px;
    line-height: 100%;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    background-color: rgba(0,0,0);
    border-radius: 4px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    transition-delay: 0s;
}