@import "reset.css";

body{
    width: 100%;
    font-family: 'Poppins', sans-serif, '-apple-system';
}

a{
    text-decoration: none;
    color: #222;
}

a:hover{
    background-color: #f7f7f7;
    border-radius: 10px;
}

a:active{
    color: #0047ff;
}

#wrap{
    width: 100%;
}

#country_group{
    width: 1281px;
    margin: 0 auto;
}

.country_list {
    width: 100%;
    list-style-type: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.country_list li{

}

.country_list li:last-child{
    margin-bottom: 32px;
}


.country_list li a{
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 16px;
}

.country_name{
    font-size: 24px;
    margin-left: 16px;
}

.flag_img{
    width: 32px;
}


.selected_value {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.txt_info_group{
    text-align: center;
}

.txt_info_group p{
    margin-top: 8px;
    font-size: 14px;
    color: #fff;
}

.txt_info_group p:first-child{
    margin-top: 24px;
}

@media all and (min-width:768px) and (max-width:1280px) {
    #country_group{
        width: 90%;
    }


    .country_list{
        display: block;
    }

    .country_name{
        font-size: 20px;
    }
}


@media screen and (max-width: 767px) {
    #country_group{
        width: 90%;
    }


    .country_list{
        display: block;
    }

    .country_name{
        font-size: 20px;
    }
}