@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');


.lang-menu {
    width: 100px;
    text-align: right;
    font-weight: bold;
    position: relative;
    font-family: 'Didact Gothic', sans-serif;
    z-index: 1;
}

.lang-menu .selected-lang {
    display: flex;
    justify-content: space-evenly;
    /* line-height: 2; */
    cursor: pointer;
    line-height: 2;
    font-size: 15px;
}

.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(/assets/flags/bandeira-brasil.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 5px;
    display: none;
    background-color: #f2f2f2;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 0px;
    right: 0;
    /* transform: translateX(-50%); */
    width: auto;

    border-radius: 18px;
    background: #e0e0e0;
    box-shadow: 20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
}


.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.lang-menu ul li a {
    text-decoration: none;
    /* width: 125px; */
    padding: 5px 10px;
    display: block;
}


.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.br:before {
    background-image: url(/assets/flags/bandeira-brasil.png);
}

.en:before {
    background-image: url(/assets/flags/bandeira-usa.png);
}

.es:before {
    background-image: url(/assets/flags/bandeira-espanha.png);
}


.lang-menu:hover ul {
    display: flex;
}