﻿.select-container {
    position: relative;
    display: inline-block;
}

.custom-select-Mobile {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #efeded;
    border-radius: 4px;
    width: 80px;
    overflow: hidden;
}

.custom-select-option-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 227px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
}

.custom-select-Mobile-option.selected {
    background-color: #f0f0f0;
    color: #333;
}

.custom-select-Mobile-option {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.custom-select-Mobile-flag-image {
    width: 20px;
    height: auto;
    /*margin-right: 10px;*/
}

.custom-select-Mobile-option:hover {
    background-color: #f0f0f0;
}

.custom-select-Mobile-show-options {
    display: block;
}

.custom-select-Mobile-parent-div {
    display: flex !important;
    width: 100%;
}
