body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	font-family: sf pro text,sf pro icons,apple webexp icons custom,helvetica neue,Helvetica,Arial,sans-serif;
}
header {
	background-color: rgba(0,0,0,0.8);
	color: #fff;
	padding: 2px;
	text-align: center;
}
.website-description {
    width: 70%;
    margin: 20px auto;
    margin-top: 100px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    border-radius: 15px;
    border: 1px solid #eaeaea;
}
.website-description h2 {
    margin: 5px 0 2px 0;
}
.website-description p {
    margin: 0;
    font-size: 14px;
}
.website-description ul {
    font-size: 12px;
    padding-inline-start: 1.5rem;
    margin: 0.5rem 0;
    line-height: 1.1rem;
    color: rgb(0 0 0 / 80%);
}
.website-description a {
    color: #000;
}
.website-description input {
    border-radius: 0.25rem;
    padding: 5px 10px;
    border: 1px solid #CED4DA;
    font-size: 14px;
    line-height: 1;
    height: 20px;
    min-width: 100px;
}
.QRimg {
    height: 120px;
    margin-right: 15px;
}
@media (max-width: 960px){
    .QRimg {
        display: none;
    }
    .website-description {
        width: 90%;
        margin-bottom: 5%;
    }
}
.container {
	display: grid;
    grid-template-columns: repeat(7,minmax(0,1fr));
    grid-gap: 20px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 5%;
}
@media screen and (min-width:1200px) and (max-width:1400px){
    .container {
        grid-template-columns: repeat(6,minmax(0,1fr));
        margin-bottom: 10%;
    }
}
@media screen and (min-width:960px) and (max-width:1200px){
    .container {
        grid-template-columns: repeat(5,minmax(0,1fr));
    }
}
@media (max-width: 960px){
    .container {
        grid-template-columns: repeat(3,minmax(0,1fr));
        width: 90%;
    }
}
.country {
	display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    width: auto;
    height: auto;
    text-align: center;
    cursor: pointer;
}
.country:hover {
	background-color: #f0f0f0;
}
.country img {
	width: 80%!important;
	height: auto!important;
	border-radius: 30px!important;
}
.country-name {
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
}
.country-name span {
	font-size: 12px;
	font-weight: normal;
	color: #666;
}
.modal {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}
.modal-content {
	display: block;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 15px;
    width: 50%;
    height: auto;
    overflow-y: auto;
}
@media (max-width: 960px){
    .modal-content {
        width: 80%;
    }
    .switch-btn {
        display: block;
    }
}
.close {
	position: absolute;
    right: 10px;
    top: 5px;
    font-size: 36px;
    font-weight: bold;
    color: #ccc;
    cursor: pointer;
}
.close:hover {
	color: #000;
}
.modal-country {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.modal-country img {
	width: 60px;
	height: auto;
	border-radius: 15px;
	margin-right: 10px;
}
.modal-country-name {
	font-size: 24px;
	font-weight: bold;
	margin-right: 10px;
}
.modal-country-name span {
	font-size: 24px;
    font-weight: normal;
    color: #000;
    font-weight: 600;
    line-height: 1rem;
}
.switch-btn {
    min-width: 60px;
    max-width: 200px;
    border-radius: 20px;
    margin-right: 8px;
    position: relative;
    z-index: 5;
    padding: 8px 14px;
    width: auto;
    height: auto;
    border: none;
    /* display: block; */
    text-align: center;
    outline: 0;
    background-color: #04aa6d!important;
    color: #fff!important;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}
.country-shortcode {
    display: inline-block;
    border-radius: 3px;
    font-weight: 500!important;
    padding-left: 5px;
    padding-right: 5px;
    z-index: 1;
    line-height: 1rem;
    font-size: 14px!important;
    background-color: #4ca772;
    color: #fff!important;
}
.modal-country-name p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}
.toggle-reminder {
    font-size: 13px;
    margin-bottom: 20px;
}