
/* Estilos de Selector de idiomas */
.select-multiple {
    overflow-wrap: break-word;
}

/* Opción mostrada*/
.select-menu .select-btn {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    height: 20px;
    background-color: #726c9e15;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;   
    border-radius: 12px;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    color: rgb(57, 50, 50);
}

.select-btn i {
    font-size: 15px;
    transition: 0.2s;
}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.select-menu .options {
    padding: 10px;
    margin-top: 2px;
    border-radius: 8px;
    background-color: #726c9e15;
    opacity:0;            
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.select-menu.active .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*Opciones*/
.options .option {
    flex-direction: row;
    justify-content: center;
    display: flex;
    height: 25px;
    cursor: pointer;
    border-radius: 8px;
    /* background-color: #726c9e15; */
}

.option i {
    font-size: 15px;
    margin-right: 12px;
}

.option .option-text {
    color: rgb(57, 50, 50);
    font-size: 12px;
}

.option .option-text:hover {
    color: rgb(255, 196, 0);
}

.select-menu {
    position:fixed;
     z-index: 1000; 
    right:20px;
}

/* Fin de estilos selector de idiomas */


