
.dialog-changecountry {
	position: fixed;
	top: 0;
	width: 90%;
	margin: 0 auto;
	left: 0;
	right: 0;
	display: block;
	z-index: 100001;
	opacity: 0;
	pointer-events: none;
	padding: 40px 20px;
	background: #ffffff;
	box-shadow: 0px 10px 15px rgba(0,0,0,0.5);
	border-radius: 10px;
	text-align: center;
	max-width: 500px;
	transition: .15s all ease-in-out;
}

.dialog-changecountry.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(60px);
}

.dialog-changecountry p { margin-bottom: 20px; }

.dialog-changecountry .close-button {

}


#dialog-changecountry-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.4);
	z-index: 100000;
	opacity: 0;
	pointer-events: none;
}

#dialog-changecountry-overlay.show {
	opacity: 1;
	pointer-events: auto;
}


.dialog-changecountry-closebutton {
	border-radius: 20px;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	padding: 5px;
	position: absolute;
	right: -12px;
	top: -12px;
	text-align: center;
	background: #383838;
	color: #ffffff;
	width: 36px;
	height: 36px;
	cursor: pointer;
}
.dialog-changecountry-closebutton:hover {
	background: #000000;
}

.dialog-changecountry-closebutton i:before {
	content: '\4d';
	font-family: ETmodules!important;
	font-weight: 400;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    text-transform: none;
    speak: none;
    font-size: 26px;
}

.dialog-changecountry-changebutton {
	padding: 8px 20px;
	background: #95d4e5;
	color: #175667;
	display: inline-block;
	font-weight: bold;
	font-size: 12pt;
	text-align: center;
	min-width: 140px;
	box-shadow: 0px 2px 2px rgba(0,45,58,0.5);
}
.dialog-changecountry-changebutton:hover {
	background: #bedfe8;
	color: #14292f;
}

@media only screen and (max-width: 767px) {

}



