/* Lang Switcher */
.lang-switcher {
     display: flex;
    /*display: none;*/
    position: relative;
}

.lang-switcher > img {
    width: 20px;
    margin: auto;
    height: 15px;
}

.lang-switcher__btn {
    display: inline-block;
    background-color: transparent;
    font-size: 19px;
    padding-right: 10px;
}

.lang-switcher__list {
    position: absolute;
    padding: 10px 20px;
    display: none;
    top: 100%;
    left: 15px;
    background-color: #0a123e;
    border-radius: 2px;
}

.lang-switcher-mobile .lang-switcher__list {
    background-color: transparent;
}

.lang-switcher .en::before {
    content: '';
    width: 20px;
    height: 15px;
    background-image: url("../images/icons/en.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    display: inline-block;
    margin-right: 10px;
}

.lang-switcher .ru::before {
    content: '';
    width: 20px;
    height: 15px;
    margin-right: 10px;
    background-image: url("../images/icons/ru.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    display: inline-block;
}

.lang-switcher__list .lang-switcher__item a {
    color: #fff;
    font-size: 19px;
    text-decoration: none;
}

.lang-switcher__list .lang-switcher__item:hover a {
    color: #d5d3d3;
}

.lang-switcher__list .lang-switcher__item {
    list-style: none;
    width: 105px;
}

.lang-switcher:hover .lang-switcher__list {
    display: block;
}

.lang-switcher__btn:hover {
    background-color: transparent;
}

.globe-dropdown {
    width: 15px;
    height: 15px;
    margin: auto;
}

.globe-dropdown img {
    margin: 0 !important;
    cursor: pointer;
}


/* Lang Switcher Mobile*/

.lang-switcher-mobile {
    width: 156px;
    margin: 0 auto;
    padding-bottom: 150px;
}
.lang-switcher-mobile .lang-switcher__list{
    padding-left: 0;
    left: 23%;
}
.lang-switcher-mobile .lang-switcher__item{
    width: 100px;
    text-align: left;
    padding-bottom: 10px;
}

.lang-switcher-mobile .lang-switcher__list .lang-switcher__item {
    list-style: none;
    width: 120px;
}

.lang-switcher__list-country{
    list-style: none;
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-top: 15px;
}

.lang-switcher__list-country img{
    height: 20px;
}

/* Lang Switcher end*/