
/* Container */
.country-popup-container {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

/* Body */
.country-popup-container .country-popup {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	max-height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	width: 700px;
	height: 500px;
	padding: 80px 35px;
	background: #ffffff url('../images/bg-popup-map.jpg') center center no-repeat;
	background-size: auto;
	text-align: center;
}

/* Close */
.country-popup .icon-close  {
	position: absolute;
	top: 20px;
	right: 20px;
	max-width: 18px;
	cursor: pointer
}

/* Logo */
.country-popup .country-select-logo {
	height: 65px;
	display: block;
	margin: 0 auto 35px;
}

/* Current country */
.country-popup .current-country {
	font-size: 16px;
	font-weight: 600;
	line-height: 58px;
	width: 100%;
	height: 60px;
	max-width: 320px;
	background: #00afba;
	color: #fff;
	display: block;
	margin: 0 auto 20px;
	text-transform: uppercase;
	border-radius: 50px;
	cursor: pointer;
}

.country-popup .current-country:hover 	{
	background: #464545;
}

.country-popup .info 	{
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 400;
}

/* Select country */
.country-popup select {
	border: 3px solid #00aeb9;
	border-radius: 50px;
	background: #ffffff url('../images/icon-arrow-blue-down.png') right 30px center no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	max-width: 320px;
	margin: 0 auto;
	text-transform: uppercase;
	padding: 0 25px;
	height: 60px;
	color: #00afba;
}

@media (max-width: 768px) {

	/* Body */
	.country-popup-container .country-popup {
		width: 100%;
		height: 100%;
		box-sizing: border-box
	}

}

