.dropdown-menu-country {
    opacity: 0;
    position: absolute;
    width: 300px;
    background: #FFF;
    z-index: 200000;
    border: 2px solid #000;
    transition: all 0.3s ease;
    visibility: hidden;
}

.country_selector {
    margin: 1rem;
}

.country_selector .expand-more{
    cursor: pointer;
}

.country_selector .expand-more::selection{
    background: none;
}

.dropdown-menu-country.show {
    opacity: 1;
}

.dropdown-menu-country ul {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-menu-country li {
    width: 50%;
}

#index .header-top .country-selector a.expand-more:not(.btn):not(.nav-link),
#index .header-top .language-selector-new a.expand-more:not(.btn):not(.nav-link),
#index .country-tag,
#index .language-tag
{
    color:#ffffff;    
}

.header-top .country-selector a.expand-more:not(.btn):not(.nav-link){
    padding-right: 1rem;
}

.form-control-sm {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.2rem;
}

#country_select, #language_select {
    width: 150px;
}

.modal-footer {
    justify-content: center;
}

.modal-sm {
    max-width: 500px;
}

.modal-lg {
    max-width: 500px;
}

.modal-instruction {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    flex: 1;
}

.selector-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.selector-item {
    flex: 1;
    max-width: 150px;
}

.btn-save-country {
    background-color: black;
    color: white;
}

#loadingSpinner {
    display: none;
    margin-left: 10px; /* Ajustar el margen según sea necesario */
    vertical-align: middle;
}

.button-spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Ajustar el espacio entre el botón y el spinner según sea necesario */
}

#saveCountry {
    background-color: black;
    color: white;
}

.language-selector-new {
    text-transform: none; /* Evitar que se aplique el uppercase */
}

.tooltip {
    z-index: 9999999999 !important;
}

.tooltip-inner {
    max-width: 200px; /* Ajustar el ancho máximo del tooltip */
    white-space: normal; /* Permitir que el texto del tooltip se ajuste en varias líneas */
}

@media (max-width: 575.98px) {
    #countryModal .modal-content {
        min-height: unset;
    }
    #countryModal .modal-dialog {
        margin: 90px auto;
        padding: 1rem;
    }
}

#mobile-sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 200000;
    transition: left 0.3s ease;
}