/* =========================================
   INKKA GOV DROPDOWN
========================================= */

.select__control{

    background:
    linear-gradient(
    180deg,
    #FBF8F5,
    #F6F0EB
    ) !important;

    border:
    1px solid rgba(74,15,27,.08) !important;

    border-radius:
    18px !important;

    min-height:
    58px !important;

    box-shadow:
    0 10px 25px rgba(74,15,27,.06) !important;

    transition:
    .25s ease !important;
}

/* شيل البوردر الأزرق */

.select__control:hover,
.select__control--is-focused{

    border:
    1px solid rgba(74,15,27,.20) !important;

    box-shadow:
    0 14px 30px rgba(74,15,27,.10) !important;
}

/* المحافظة المختارة */

.select__single-value{

    color:
    #4A0F1B !important;

    font-weight:
    700 !important;

    font-size:
    15px !important;
}

/* السهم */

.select__dropdown-indicator svg{

    fill:
    #4A0F1B !important;
}

.select__indicator-separator{

    display:none !important;
}

/* أيقونة اللوكيشن */

.gov_select svg{

    color:
    #A07A52 !important;
}

/* القائمة */

.select__menu{

    overflow:hidden !important;

    border:none !important;

    border-radius:
    20px !important;

    box-shadow:
    0 25px 60px rgba(74,15,27,.12),
    0 10px 20px rgba(74,15,27,.06)
    !important;

    background:
    #FBF8F5 !important;
}

/* العناصر */

.select__option{

    padding:
    14px 18px !important;

    color:
    #4A0F1B !important;

    font-weight:
    600 !important;

    transition:
    .2s ease !important;
}

/* Hover */

.select__option:hover{

    background:
    #4A0F1B !important;

    color:
    #E7D4B2 !important;
}

/* العنصر المختار */

.select__option--is-selected{

    background:
    #F3E8DD !important;

    color:
    #4A0F1B !important;

    font-weight:
    700 !important;
}

/* العنصر المحدد أثناء الحركة */

.select__option--is-focused{

    background:
    rgba(74,15,27,.08) !important;

    color:
    #4A0F1B !important;
}

/* Scroll */

.select__menu-list::-webkit-scrollbar{

    width:8px;
}

.select__menu-list::-webkit-scrollbar-thumb{

    background:
    rgba(74,15,27,.25);

    border-radius:
    999px;
}

.select__menu-list::-webkit-scrollbar-track{

    background:
    transparent;
}