.seletor-idiomas-custom {
    position: relative;
    width: 70px;
    font-family: inherit;
    cursor: pointer;
    user-select: none;
     font-family: "Montserrat";
}

.idioma-selecionado {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7px 5px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 0px;
    transition: all 0.3s;
    color: #fff;
    flex-direction: row;
}

.stk .idioma-selecionado {
    
    border: 1px solid #000;
    color: #000;
}

.idioma-selecionado:hover {
    background: #FF7866;
    color: #000;
    border: 1px solid #FF7866;
}

.idioma-selecionado .bandeira {
    margin-right: 8px;
}

.idioma-selecionado .bandeira img {
    width: 20px;
    height: auto;
    vertical-align: middle;
}


.idioma-selecionado .seta {
  
    display: flex;
    transition: all 300ms cubic-bezier(0, 0.62, 0.25, 1);
}

.idioma-selecionado .seta svg {
    fill: #fff;
    height: 29px;
    width: auto;
} 

.stk .idioma-selecionado .seta svg {
    fill: #000;
} 

.idioma-selecionado:hover .seta svg {
    fill: #000;
} 


.lista-idiomas {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.lista-idiomas li {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    transition: background 0.3s;
}

.lista-idiomas li:hover {
    background: #88D19E;
}



.lista-idiomas .bandeira {
    margin-right: 8px;
}

.lista-idiomas .bandeira img {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

.seletor-idiomas-custom.ativo .lista-idiomas {
    display: block;
}

.seletor-idiomas-custom.ativo .seta {
    transform: rotate(180deg);
}




@media (max-width: 767px) {


   .idioma-selecionado {
    font-size: 15px;
    padding: 5px 3px;
   }



.idioma-selecionado .seta svg {
   
    height: 26px;
    width: auto;
}


.lista-idiomas li {
     font-size: 15px;
}


.seletor-idiomas-custom {
   
    width: 64px;
  
}




}