#hidden-menu-languages-selector--container{
    display: none;
    flex-direction: column;
    position: relative;
    align-self: flex-end;
    position: absolute;
    z-index: 20;
    margin-right: 2%;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.8vw;

    @media(max-height: 600px) and (orientation: landscape){
        width: 37dvw;
        top: 20dvh;
        height: 30dvh;
    }

    /* Tamanho médio (tablets) */
    @media (min-width: 600px) and (min-height: 600px){
        width: 35dvw;
        top: 10dvh;
        height: 15dvh;
    }
  
    /* Tamanho médio (Desktop) */
    @media (min-width: 1000px){
        top: 17dvh;
        width: 33dvw;
        height: 30dvh;
    }
}  

.languages--selector{
    display: flex;
    justify-content: center;
    flex: 1;
    width: 31%;
    margin-right: 23%;
    background-color: #fe6300;
    color: #FFFFFF;
    border-bottom: 1px solid white;
    text-decoration: none;

    @media(max-height: 600px) and (orientation: landscape){
        font-size: 1.1vw;
    }

    @media (min-width: 600px) and (min-height: 600px){
        font-size: 1vw;
    }
  
    /* Tamanho médio (Desktop) */
    @media (min-width: 1200px){
        font-size: 0.8vw;
    }
}

.languages--selector:hover{
    text-shadow: 1px 1px 5px #dabea8;
    cursor: pointer;
    background-color: #df5b0a;
}

.languages--selector > div{
    display: flex;
    justify-content: center;
    align-items: center;
}