/*!
Theme Name: clinfarm
Author: Oleh Babych
Author URI: https://www.weblancer.net/users/ob163256/
*/

.header__lang button{
    background-color: transparent;
    position: relative;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 5px 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40px;
}
.header__lang button::after{
    content: "";
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: block;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid currentColor;
        margin-left: 5px;
}
.header__lang{
    position: relative;
}
.header__lang:hover ul{
    opacity: 1;
    z-index: 1;
    pointer-events: all;
    transform: none;
}
.header__lang ul{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    z-index: -1;
    pointer-events: none;
    background-color: #fff;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}
.header__lang ul li a{
    color: #345bfd;
    text-align: center;
    padding: 5px 0;
    display: block;
}
@media only screen and (max-width: 1023.98px) {
    .header__lang{
        margin-right: 30px;
    }
}