.select2 {
    font-size: 15px;
    width: 100% !important;
    text-wrap: wrap;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px !important;
    line-height: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--prakun-dark-1);
    font-size: 15px;
}

.select2-container .select2-selection--single {
    height: 45px;
    padding: .375rem .75rem;
}

.select2-container--default .select2-selection--single {
    background-color: var(--white);
    border: 1px solid var(--gray02);
    border-radius: var(--input-border-radius);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 15px;
    width: 15px;
    top: 54%;
    right: 0%;
    transform: translate(-50%, -50%);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    content: "";
    width: 10px;
    height: 10px;
    border-color: var(--main01) var(--main01) transparent transparent;
    border-style: solid;
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: -2px;
    transition: transform .25s;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: var(--main01) var(--main01) transparent transparent;
    margin-left: 0;
    margin-top: 0px;
    border-width: 1px 1px 0 0;
    transform: rotate(-45deg);

}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--gray03);
    font-size: 15px;
}


.select-custom .selection {
    font-size: 17px;
}

.select2-custom .select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
}

.select2-results__options {
    padding: 0 5px 5px;
}

.select2-results__option {
    font-size: 15px;
    color: var(--dark02);
    border-bottom: 1px dashed #959595;
}

.select2-results__option:nth-last-child(1) {
    border-bottom: 0;
}

@media (max-width: 767px) {
    #sort_price .select2-container .select2-selection--single {
        font-size: 14px;
        height: 34px;
        border-radius: 5px;
        padding: 8px 8px;
    }

    #sort_price .select2-selection__arrow {
        right: -5px;
    }

    #sort_price .select2-container--default .select2-selection--single .select2-selection__arrow b {
        width: 10px;
        height: 10px;
        border-width: 1px 1px 0 0;
    }

    #sort_price .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 15px;
    }

    #sort_price .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 55%;
    }

}