/*LANGUAGES*/
.lang-menu {
    padding:14px 24px;
    width:auto;
    border:none;
    display:block;
    outline:0;
    cursor:pointer;
    display:inline-block;
}
.lang-menu:hover {
    background-color: #ccc;
    color: black;
}
.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-between;
    line-height: 1.5;
    cursor: pointer;
}
.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1px;
    background-size: contain;
    background-repeat: no-repeat;
}
.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: #ccc;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 45px;
    right: 0px;
    width: 140px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}
.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}
.lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 1px 1px;
    display: inline-block;
}
.lang-menu ul li:hover {
    background-color: #1266AC;
}
.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    vertical-align: middle;
    margin-right: 7px;
    background-size: contain;
    background-repeat: no-repeat;
}
.lang-menu:hover ul {
    display: block;
}


.lang-menu li img {
    margin-left: auto;
    width: 22px;
}

