.lang{
    cursor: pointer;
    padding: 30px 0;
}
.lang-current{
    display: flex;
    justify-content: space-around;
    width: 54px;
    line-height: 1;
}
.lang-options{
    position: absolute;
    top:90px;
    text-align: left;
    display: none;
    background: #fff;
    min-width: 100px;
    box-shadow: 0 0 6px 6px rgba(29,29,29,0.08);
    border-top: 2px solid #03a0e3;
}
.lang-options li a {
    display: block;
    font-size: 14px;
    color: #333;
    padding: 9px 20px;
    border-bottom: 1px solid #d9d9d9;
    white-space: nowrap;
    cursor: pointer;
    margin: unset !important;
}
.lang-options li a:hover {
    background: #03a0e3;
    color: #fff !important;
    border-bottom: 1px solid #03a0e3;
}
.lang:hover .lang-options{
    display: block;
    animation: navUp 0.5s 0s forwards;
}
.lang-current img {
    width: 16px;
    height: 16px;
}