


.simpleLang_switcher{
    position: fixed;
    right: 50px;
    top:40px;
    z-index: 9999;
}

.simpleLang_switcher .contR{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #FFF;
    cursor: pointer;
    z-index: 1;
}

.simpleLang_switcher .contR .location{
    font-weight: 100;
    border-right: solid 1px #ffffff67;
    padding-right: 10px;
}

.simpleLang_switcher .contR .country{
    font-weight: 400;
    padding-left: 10px;
}

.simpleLang_switcher .contR img.arrow_lang{
    width: 10px;
    height: 10px;
    margin-left: 15px;
}



ul.dropDownLanguage{
    background: #161616;
    flex-direction: column;
    padding: 0px;
    border-radius: 8px;
    margin-top: 18px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    transition: all 0.2s ease-in-out;
    height: 220px;
}

.hideLanguageSwitcher{
    height: 0px !important;
    opacity: 0;
}

ul.dropDownLanguage li a{
    width: calc(100% - 40px);
    display: block;
    padding: 15px 20px;
    font-size: 13px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    background: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

ul.dropDownLanguage li a img{
    width: 14px;
    filter: invert(1);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

ul.dropDownLanguage li a:hover{
    background: #313131;
}

ul.dropDownLanguage li a:hover img{
    opacity: 1;
}

ul.dropDownLanguage li a.activ:hover img{
    opacity: 0;
}

ul.dropDownLanguage li a.activ{
    background: #292929;
}

ul.dropDownLanguage li:first-child a{
    padding-top:20px;
}

ul.dropDownLanguage li:last-child a{
    padding-bottom:20px;
}

@media (max-width: 900px) {
    .simpleLang_switcher {
        position: fixed;
        right: 35px;
        top: 35px;
    }
}