.select2-selection {
    background-color: #10014605 !important;
    border-radius: 100px !important;
    border: 1px solid #10014615 !important;
    height: 44px !important;
    padding: 0 0 0 16px;
    border-radius: 100px;
    color: var(--dark-color);
    width: 100%;
    outline: none;
    transition: all 0.1s ease;
    min-width: 266px;
}
.select2-selection {
    display: flex !important;
    align-items: center !important;
}

.select2-selection.select2-selection--single:focus,
.select2-container--below.select2-container--open
    .select2-selection.select2-selection--single {
    border: 1px solid var(--dark-color) !important;
}

.select2-selection__arrow {
    top: auto !important;
    right: 10px !important;
}
.select2-selection__rendered {
    padding-left: 0 !important;
}
.select2-search__field {
    border: 1px solid var(--dark-color) !important;
    height: 36px;
    padding: 0px 14px !important;
    border-radius: 100px;
    color: var(--dark-color);
    outline: none;
    transition: all 0.1s ease;
}

.select2-search.select2-search--dropdown {
    padding: 10px 4px !important;
}

.select2-dropdown {
    border: 1px solid var(--dark-color) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid var(--dark-color) !important;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #10014605 !important;
    color: var(--dark-color) !important;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected {
    background-color: var(--dark-color) !important;
    color: white !important;
    font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--dark-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--dark-color) transparent transparent transparent !important;
}

span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open span.select2-selection.select2-selection--single {
    border-color: var(--pink-color) !important;
}

input.select2-search__field {
    border: 1px solid #10014615 !important;
    background: #10014605;
}

span.select2-dropdown.select2-dropdown--below {
    border: 1px solid #10014615 !important;
}

.select2-results__option {
    padding: 8px 6px !important;
}

.custom-select-list {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--dark-color);
    overflow: hidden;
    background-color: white;
    z-index: 9999;
}

.custom-select {
    background-color: white;
    border-radius: 100px;
}

.custom-select.active-select .custom-select-list {
    display: flex;
}

.custom-select-single-list.active-option {
    background-color: #8301ff17;
    color: var(--violet-color);
    font-weight: 600;
}

.select-scroll {
    max-height: 220px;
    overflow-y: auto;
}

.custom-select.custom-select i {
    transition: all 0.2s;
}

.custom-select.custom-select.active-select i {
    transform: rotate(-180deg);
}

.phone-select .custom-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 125px;
    min-width: auto;
    padding-right: 6px;
}
.phone-select .custom-select span {
    line-height: 1;
}

.custom-select.active-select {
    position: relative;
}

.custom-select {
    border: 1px solid var(--dark-color);
    height: 44px;
    padding: 0 10px;
    border-radius: 100px;
    color: var(--dark-color);
    outline: none;
    transition: all 0.1s ease;
    cursor: pointer;
    min-width: 266px;
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    padding: 0 16px;
}

.custom-select i {
    color: var(--dark-color);
}

.custom-select-single-list {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    background-color: white;
    padding: 8px;
    font-size: 1rem;
    width: 100%;
    overflow: hidden;
    transition: all 0.1s ease-in-out;
}
.custom-select-single-list:hover {
    background-color: #10014605;
}

.custom-select:focus {
    border: 1px solid var(--dark-color);
}


@media (max-width: 980px) {
    .select2-selection {
        height: 40px !important;
        font-size: 14px !important;
    }
}