.geo-country {
    display: flex;
    justify-content: center;
    align-items: center;


    border-radius: 2px;
    background-color: #f5f5f5;
    font-size: 14px;
    text-align: left;
    color: #878787;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.geo-country:hover {
    background-color: #e3e3e3;
}

.geo-country img {
    max-width: 50px;
    margin-right: 10px;
    transition: all 0.2s ease-in-out;
}

.geo-country:hover img {
    transform: scale(1.1);

}


.geo-country span {
    font-size: 1.1rem;
    /*font-weight: bold;*/

}