
#mobile-switcher-id {
    display: none !important;
}
@media screen and (max-width: 1000px) {
    #mobile-switcher-id {
        display: block !important;
    }
}
.mobile-switcher-container {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 40px 0 0 0;
    margin-bottom: 10px; 
    border-bottom: none; 
}

.country_side {
    position: relative;
    display: block;
}

.mobile-switcher-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    height: 40px;
    width: 100%;
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 18px;
    font-size: 14px;
    background-color: #fff;
    position: relative;
}

.mobile-switcher-label:active {
    background-color: #fff !important;
    box-shadow: none !important;
    transform: none !important;
}

.mobile-switcher-label .current-display {
    display: flex;
    align-items: center;
}

.mobile-switcher-label img {
    width: 20px;
    height: 16px;
    margin-right: 8px;
}

.mobile-switcher-label .lang-code {
    font-weight: normal;
    font-size: 14px;
    color: #333;
}

.mobile-icon-arrowdown {
    font-family: "iconfont" !important;
    font-size: 12px;
    line-height: 40px;
    position: absolute;
    height: 100%;
    top: 0;
    right: 10px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mobile-icon-arrowdown::before {
    content: "\e643";
}

.mobile-dropdown-panel {
    position: absolute; 
    bottom: 100%;
    left: 0;
    right: 0;
    top: auto;
    overflow: visible; 
    height: auto;
    transition: opacity 0.3s ease-in-out, visibility 0.01s linear 0.3s;
    opacity: 0; 
    visibility: hidden;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-bottom: none;
    z-index: 9999; 
}

.mobile-dropdown-panel.is-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
#mobile-switcher-id {
    -webkit-tap-highlight-color: transparent;
}

.mobile-select-option {
    display: flex;
    align-items: center;
    padding: 15px 12px 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}
.mobile-select-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.mobile-select-option span {
    font-weight: normal;
    font-size: 14px;
}
.mobile-select-option img {
    width: 20px; 
    height: 16px; 
    margin-right: 8px; 
}

.mobile-form-label,
.mobile-select-display,
.mobile-confirm-btn {
    display: none !important;
}
