.header-country-info{
    position: relative;
    margin-left: 25px;
}
.href-country-info:focus, .href-country-info:visited, .href-country-info{
    color: #0099d6;
}
.href-country-info img{
    width: 25px;
    opacity: .7;
}
.header-country-list{
    position: absolute;
    transform: translate(0, 100%);
    padding: 10px 0;
    bottom: 0;
    left: -10px;
    z-index: 250;
    min-width: 180px;
    display: none;
}
.header-country-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 20px;
    box-shadow: 0 0 5px 1px #8080803b;
    background: white;
    border-radius: 5px;
}
.header-country-list a{
    margin-bottom: 5px;
}

.header-country-info:hover .header-country-list{
    display: block;
}

.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 Exo2;
    color: #E40489;
}
.header-country-geo a{
    font-size: 18px;
    background: #FD169F;
    border-radius: 0;
    color: white;
    padding: 5px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-country-geo a:hover{
    text-decoration: none;
    color: white;
    background: #00B6FF;
}
@media (max-width: 1366px) {
    .header-country-list{
        left: auto;
        right: -5px;
    }
}
@media (max-width: 767px) {
    .header-country-info {
        width: 100%;
        text-align: right;
    }
    .header-country-list{
        right: 50%;
        transform: translate(50%, 100%);
        min-width: auto;
    }
    .header-country-geo{
        width: 290px;
    }
    .header-country-geo p{
        font-size: 16px;
    }
    .header-country-geo a{
        padding: 3px 8px;
        font-size: 14px;
    }
}