.lang-select {
    position: relative
}

.lang-select button {
    background: none;
    padding: .4rem;
    border: none;
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
    font-size: 1.1rem;
    cursor: pointer;
}

.lang-select button img {
    width: 20px;
    height: auto;
    margin-right: 6px;
    box-shadow: 2px 2px 3px #000000;    
}

.lang-select ul {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    list-style: none;
    margin: 0;
    padding: .2rem;
    background: var(--gold-gradient-full-vert);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.8);
    display: none;
    min-width: 160px;
    font-size: 1.2rem;
    border-radius: 10px;
}

.lang-select ul li {
    padding: .4rem .6rem
}

.lang-select ul li a {
    display: block;
    text-decoration: none;
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
}
.lang-select ul li a:hover {
    color: goldenrod;
}
.lang-select ul li a img {
    margin-right: 6px;
    width: 20px;
    height: auto;
    box-shadow: 2px 2px 3px #000000;    
}
.lang-select.open ul {
    display: block
}