
.custom-select2 {
    --select2-color: #1E1E1E;
    --select2-border: #E4E4E4;
    --select2-svg: #737373;
    --select2-placeholder: #AAAAAA;
    --select2-hover: #46A353;
    --select2-error: #E54F4F;
    --select2-error-bg: #FFF1F1;
    --select2-disabled: #d8d8d8;
    --select2-disabled-bg: #f4f4f4;
    --select2-label-float: #54B862;
    position: relative;
}
.custom-select2-dropdown{
    --select2-dropdown-text: #54B862;
    --select2-dropdown-hover: #E8F6EA;
    --select2-dropdown-border: #E0E2E6;
    --select2-dropdown-search-border: #E4E4E4;
    --select2-dropdown-scrollbar-thumb: rgba(30,30,30,.12);
    --select2-dropdown-scrollbar-track: rgba(30,30,30,0);
}
.custom-select2-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .01em;
    color: var(--select2-color);
    transform-origin: left center;
    will-change: top,transform,color;
    transition: color .5s cubic-bezier(.19,1,.22,1),top .5s cubic-bezier(.19,1,.22,1),transform .5s cubic-bezier(.19,1,.22,1);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
}
.custom-select2 .select_box{
    display: none;
}
.custom-select2 .select2-container~.custom-select2-label {
    display: block;
}
.custom-select2 .custom-input.is-initialized~.custom-select2-label {
    display: block;
}
.custom-select2 .custom-input:focus~.custom-select2-label,
.custom-select2 .custom-input.has-value~.custom-select2-label,
.custom-select2 .select_box.is-selected~.custom-select2-label,
.custom-select2 .select2-container--open~.custom-select2-label {
    top: 0;
    transform: translateY(8px) scale(.75);
    line-height: 20px;
}


.custom-select2 .custom-input:focus~.custom-select2-label,
.custom-select2 .custom-input.has-value~.custom-select2-label,
.custom-select2 .select2-container--open~.custom-select2-label{
    color: var(--select2-label-float);
}
.custom-select2 .custom-input-container,
.custom-select2 .select2-container {
    width: 100% !important;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.custom-select2 .custom-input-container,
.custom-select2 .select2-selection--single {
    height: 64px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--select2-border);
    border-radius: 8px !important;
    transition: border-color .5s cubic-bezier(.19, 1, .22, 1);
    padding-left: 16px;
    padding-right: 16px;
}
.custom-select2 .select2-container.select2-container--disabled .select2-selection--single{
    pointer-events: none;
    background-color: var(--select2-disabled-bg);
    color: var(--select2-disabled);
}
.custom-select2 .select2-container:not(.select2-container--disabled) .select2-selection--single:hover,
.custom-select2 .select2-container--open .select2-selection--single {
    border-color: var(--select2-hover);
}

.custom-select2 .select2-selection__arrow {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: 24px !important;
    height: 24px !important;

}
.custom-select2 .select2-selection__arrow::after{
    content: "";
    display: block;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    margin: 0 !important;
    position: absolute;
    background-image: url('../../images/select2/select2-arrow-active.svg');
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}
.custom-select2 .select2-selection__arrow b {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    margin: 0 !important;
    position: absolute;
    background-image: url('../../images/select2/select2-arrow-default.svg');
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}
.custom-select2 .select2-selection__arrow,
.custom-select2 .select2-selection__arrow::after,
.custom-select2 .select2-selection__arrow b{
    transition: all .25s;
}


.custom-select2 .select2-container--open .select2-selection__arrow b {
    opacity: 0;
}
.custom-select2 .select2-container--open .select2-selection__arrow::after {
    opacity: 1;
}
.custom-select2 .select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
}
.custom-select2 .custom-input,
.custom-select2 .select2-selection__rendered {
    width: 100%;
    padding: 16px 0 0 0 !important;
    height: 100%;
    font-size: 16px;
    line-height: 46px !important;
    letter-spacing: .01em;
    color: var(--select2-color) !important;
    font-weight: 400;
    opacity: 0;
    text-transform: capitalize;
}
.custom-select2 .select2-selection__rendered .select2-selection__placeholder{
    color: var(--select2-placeholder) !important;
}
.custom-select2 .custom-input{
    opacity: 1;
    border: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}
.custom-select2 .custom-input:-webkit-input-placeholder {
	/* Edge */
	color: transparent;
}

.custom-select2 .custom-input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: transparent;
}

.custom-select2 .custom-input::-moz-placeholder {
	color: transparent;
}

.custom-select2 .custom-input::-ms-input-placeholder {
	color: transparent;
}

.custom-select2 .custom-input::-webkit-input-placeholder {
	color: transparent;
}

.custom-select2 .custom-input::placeholder {
	color: transparent;
}
/* Focus */
.custom-select2 .custom-input:focus:-webkit-input-placeholder {
	/* Edge */
	color: var(--select2-placeholder);
}

.custom-select2 .custom-input:focus:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--select2-placeholder);
}

.custom-select2 .custom-input:focus::-moz-placeholder {
	color: var(--select2-placeholder);
}

.custom-select2 .custom-input:focus::-ms-input-placeholder {
	color: var(--select2-placeholder);
}

.custom-select2 .custom-input:focus::-webkit-input-placeholder {
	color: var(--select2-placeholder);
}

.custom-select2 .custom-input:focus::placeholder {
	color: var(--select2-placeholder);
}



/* .custom-select2 .custom-input-placeholder{
    position: absolute;
    top: 0;
    left: 16px;
    width: calc(100% - 32px);
    height: 100%;
    transition: all .25s;
    opacity: 0;
    z-index: 2;
    color: var(--select2-placeholder) !important;
    pointer-events: none;
} */
.custom-select2 .select_box.is-selected~.select2-container .select2-selection__rendered,
.custom-select2 .select2-container--open .select2-selection__rendered {
    opacity: 1;
}

/* DROPDOWN */
.custom-select2-dropdown {
    margin: 4px 0;
    border: 1px solid var(--select2-dropdown-border) !important;
    /* box-shadow: 4px 4px 0 rgba(33,33,33,.05); */
    box-shadow: 0px 4px 9px 0px rgba(9, 45, 115, 0.09);
    border-radius: 8px !important;
    overflow: hidden;
}

.custom-select2-dropdown .select2-search--dropdown {
    padding: 6px;
}

.custom-select2-dropdown .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--select2-dropdown-search-border);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 16px;
    outline: none !important;
    background-color: #fff !important;
}

.custom-select2-dropdown .select2-results > .select2-results__options {
    max-height: 33vh;
    max-height: 33dvh;
    max-height: 33svh;
}

.custom-select2-dropdown .select2-results > .select2-results__options .select2-results__option {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--select2-color) !important;
    padding: 5px 10px;
}
.custom-select2-dropdown .select2-results > .select2-results__options .select2-results__option.select2-results__message {
    padding: 10px 10px;
}
.custom-select2-dropdown .select2-results > .select2-results__options .select2-results__option--highlighted.select2-results__option--selectable,
.custom-select2-dropdown .select2-results > .select2-results__options .select2-results__option--selected {
    color: var(--select2-dropdown-text) !important;
    background-color: var(--select2-dropdown-hover) !important;
}


/* scrollbar */
.custom-select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
    -webkit-appearance: none;
}

.custom-select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar:vertical {
    width: 6px;
}

.custom-select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar:horizontal {
    height: 6px;
}

.custom-select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: var(--select2-dropdown-scrollbar-thumb);
    border-radius: 20px;
    border: 1px solid #ffffff;
}

.custom-select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: var(--select2-dropdown-scrollbar-track);
}