.select2-container{
    width: 100% !important;

}
.select2 .select2-selection {
    border: 1px solid var(--greyscale2);
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text_color);
    padding: 0;
    display: flex;
    align-items: center;
    height: 44px;
    background: var(--bg_color_primary);
}

.select2-container--default.select2-container--disabled .select2-selection--multiple,
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: var(--custom-alpha3);
    cursor: default;
}

.input-group-append .select2 .select2-selection {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    margin-top: 0;
    border-radius: 10px;
    background-color: transparent;
    padding-left: 16px;
    padding-right: 34px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--text_color);
    
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M18 9L12 15L6 9' stroke='%23030D08' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right;
    background-position-x: calc(100% - 16px);
    background-size: 12px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M18 9L12 15L6 9' stroke='%23030D08' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right;
    background-position-x: center;
    background-size: 12px;
    width: 30px;
    transition: all linear 0.2s;
   
    transform-origin: center;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg);
}


.select2-container--open .select2-dropdown {
    background: var(--bg_color_primary);
    border: 1px solid var(--greyscale5) !important;
    box-shadow: 0px 2px 12px var(--custom-alpha);
    border-radius: 8px 8px !important;
    top: 2px;
    overflow: hidden;
    font-size: 14px;
    color: var(--text_color);
    min-width: 120px;
    /* border-top: 0px !important; */
}

.select2-container--default .select2-results__option {
    padding: 12px;
    word-break: break-word;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected{
    background-color: var(--grey);
    color: var(--text_color);
}


.select2-container--default .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--greyscale4);
    font-size: 14px;
}


.select2-checkbox-dropdown .select2-results__option {
    display: flex;
}

.select2-checkbox-dropdown .select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    min-width: 20px;
    border: 1px solid var(--color_tertiary);
    border-radius: 5px;
    background-color: var(--bg_color_primary);
    margin-right: 12px;
    vertical-align: middle;
}

.select2-results__option[aria-selected=true]:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.52148 4.17407L3.6809 6.33349L7.99975 2.01465' stroke='%23FF8F19' stroke-width='2.15942' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-color: var(--bg_color_primary);
    border-color: var(--action_button_color);
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background: var(--bg_color_primary);
}


.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-color: transparent;
}

.select2-uppercase ul li{
    text-transform: uppercase;
 }


.select2-container--default .select2-results__option,
.select2-container--default .select2-results>.select2-results__options{
    margin-right: 6px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar{
	width: 6px;
	height: 6px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
	background-color: transparent;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
	background-color: var(--custom-alpha4);
	border-radius: 100px;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
	background-color: var(--custom-alpha4);
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, 
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 8px; 
    border-bottom-right-radius: 8px;
    border-bottom-color: var(--greyscale2);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--greyscale);
    border-radius: 6px;
    padding: 8px;
    outline: none;
}   
.select2-container--open{
    z-index: 99999;
}