﻿


button {
    border: unset;
}


/*Select2*/

.select2-container--default .select2-selection--single {
    border-radius: var(--radius-sm);
    height: auto;
    min-height: 40px;
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    transition: all 0.3s ease;
    position: relative;
}

    .select2-container--default .select2-selection--single:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        height: 5px;
        width: 0%;
        background: black;
        transition: all 0.3s ease;
    }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single:after {
    content: "";
    position: absolute;
    left: 0;
    transform: translateX(0);
    bottom: 0;
    height: 5px;
    width: 100%;
    background: black;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0px 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: unset;
    display: flex;
    align-items: center;
    width: 20px;
    height: 20px;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        position: relative;
        margin: 0;
        font-family: "hugeicons-stroke-rounded" !important;
        border: none;
        transform: rotate(-90deg);
        transition: all 0.3s ease;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
            content: "\f1458";
            position: absolute;
            font-size: 20px;
            left: 0;
            width: 20px;
            text-align: center;
            transition: all 0.3s ease;
            top: 0;
        }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
    transform: rotate(180deg);
}
