.country_user_message_wrapper{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.29);
    padding: 20px;
}
.country_user_message{
    background-color: #ffffff;
    width: 100%;
    max-width: 550px;
    padding: 20px;
    text-align: center;
}
.country_user_message_flags{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.country_user_message_flags img{
    max-width: 130px;
    height: 110px;
    margin-bottom: 15px;
}
.country_user_message_flag a:hover{
    text-decoration: none;
}
@media (max-width: 768px) {
    .country_user_message_flags{
        flex-wrap: wrap;
        justify-content: center;
    }
    .country_user_message_flag{
        margin-bottom: 20px;
        width: 100%;
    }
}