.header-country-info{
    position: relative;
    text-align: right;
}
.href-country-info:focus, .href-country-info:visited, .href-country-info:hover, .href-country-info{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-decoration: none;
    color: #6D7986;
}
.href-country-info span{
    text-decoration: underline;
    margin-left: 5px;
}
.href-country-info img{
    width: 33px;
    height: 35px;
}
.header-country-list{
    position: absolute;
    transform: translate(0, 100%);
    padding: 10px 0;
    bottom: 0;
    right: 0;
    z-index: 250;
    display: none;
}
.header-country-info:hover .header-country-list{
    display: block;
}
.header-country-wrapper{
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid rgba(210, 210, 210, 0.4);
    box-shadow: 0 10px 25px rgba(104, 104, 104, 0.1);
    border-radius: 10px;
    padding: 16px 0;
}
.header-country-wrapper > a{
    padding: 12px 22px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    text-decoration: none;
    text-align: left;
}
.header-country-wrapper > a:hover{
    text-decoration: none;
    background: rgba(211, 213, 218, 0.4);
    color: black;
}

.open.header-country-list{
    display: block;
}

.header-country-geo:hover + .header-country-list{
    display: none;
}

.header-country-geo{
    position: absolute;
    width: 350px;
    right: 0;
    top: 0;
    background: white;
    border-radius: 5px;
    filter: drop-shadow(0px 25px 35px rgba(0, 0, 0, 0.13));
    padding: 25px 20px;
    z-index: 999;
    text-align: center;
}
.header-country-geo p{
    font: 600 20px Montserrat;
    color: #E40489;
}
.header-country-geo a{
    font-size: 17px;
    background: #FD169F;
    border-radius: 0;
    color: white;
    padding: 5px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.header-country-geo a:hover{
    text-decoration: none;
    color: white;
    background: #00B6FF;
}
@media (max-width: 767px) {
    .header-country-geo{
        width: 290px;
        right: 50%;
        transform: translate(50%, 0);
    }
    .header-country-geo p{
        font-size: 16px;
    }
    .header-country-geo a{
        padding: 3px 8px;
        font-size: 14px;
    }
}