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

.select2-container {
    position: relative;
    width: 100% !important;
    z-index: 15;
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid var(--color-black);
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
}

.select2-container--default .select2-selection--single {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 40px;
    height: 100%;
    transition: all .3s ease;
}

.select2-container--default .select2-selection--single {
    outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    transition: transform .3s ease;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
    width: 16px;
    height: 16px;
    background: url('../img/icons/select-arrow.svg') no-repeat center center !important;
    background-size: contain !important;
    margin: 0;
    left: 0;
    top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 16px 32px 16px 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select2-container--open .select2-selection--single {
    border-color: var(--color-black);
    box-shadow: 3px 3px 0 0 var(--color-black);
}

.select2-dropdown {
    position: absolute;
    margin-top: 8px;
    background-color: var(--color-green);
    border: 1px solid var(--color-black);
    border-radius: 24px;
    padding: 12px 16px;
    box-shadow: 3px 3px 0 0 var(--color-black);
    z-index: 10;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.select2-results__option span {
    padding: 8px 0;
    color: var(--color-black) !important;
    background: transparent !important;
}

.select2-results__option span {
    color: var(--color-black) !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: var(--color-green) !important;
}

.select2-container--default .select2-results__option--highlighted span {
    color: var(--color-white) !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--color-green) !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] span {
    color: var(--color-white) !important;
}

.select2-results__option[aria-selected="true"] span {
    color: var(--color-white) !important;
}

.select2-container--default 
.select2-results__option--highlighted[aria-selected="true"] {
    background-color: var(--color-green) !important;
    color: var(--color-white) !important;
}

.select2-container--default 
.select2-results__option--highlighted[aria-selected="true"] span {
    color: var(--color-white) !important;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: max-content;
    overflow: hidden;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 1678px) {
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding: 12px 28px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered span {
        font-size: 14px;
        line-height: 1;
    }

    .select2-results__option {
        font-size: 14px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 28px;
        width: 14px;
        height: 14px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 767px) {
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding: 12px 20px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered span {
        font-size: 12px;
        line-height: 1;
    }

    .select2-results__option {
        font-size: 12px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 20px;
        width: 12px;
        height: 12px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        width: 12px;
        height: 12px;
    }
}