html {
	background: #000 url(../images/visual01.jpg) no-repeat fixed;
	background-size: cover;
	background-position: bottom center;
}

html.vis2 {
	background-image: url(../images/visual02.jpg);
	background-position: bottom center;
}

html.vis3 {
	background-image: url(../images/visual03.jpg);
	background-position: bottom center;
}

html,
body {
	margin: 0;
	padding: 0;
}
	
.country-selector-wrapper {
	font-family: "Myriad", "Myriad Pro", arial,sans-serif;
	font-size: 14px;
	color: #ddd;
	box-sizing: border-box;
	width: 1280px;
	margin: 40px auto;
	max-width: 90%;
	padding: 20px;
	background-color: black;
	background-color: rgba(20,20,20,.86);
	overflow: hidden;
}

.country-selector-wrapper * {
	transition: .3s;
	box-sizing: border-box;
}

.country-selector-wrapper img {
	max-width: 100%;
}

.country-selector-wrapper .top {
	text-align: center;
	color: white;
	margin-bottom: 40px;
	margin-top: 10px;
}

.country-selector-wrapper .top h1 {
	text-transform: uppercase;
}

.country-selector-wrapper .top label {
	color: #888;
} 

.country-selector-wrapper .regions {
	overflow: hidden;
	text-align: center;
}

.country-selector-wrapper .region {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.country-selector-wrapper .region h3 {
	color: white;
	font-size: 18px;
	text-align: left;
}
.country-selector-wrapper .region span {
	line-height: 18px;
	display: block;
}
.country-selector-wrapper .region img {
	displaty: inline-block;
	height: 16px;
	margin-right: 10px;
	outline: 1px solid rgba(0,0,0,.1);
	vertical-align: top;
}

.country-selector-wrapper .region ul {
	display: inline-block;
	padding: 0;
	margin: 0;
	list-style: none;
	margin: 0 20px 20px 0;
}

.country-selector-wrapper .region li {
	padding: 0 0 15px;
	text-align: left;
	width: 220px;
}
.country-selector-wrapper .region li ul{
	padding: 0;
	margin: 0 0 0 36px;
}
.country-selector-wrapper .region li ul li{
	width: auto;
	padding: 5px 0 0;
}
.country-selector-wrapper .region a {
	text-decoration: none;
	color: white;
	cursor: pointer;
}

.country-selector-wrapper .region a:hover {
	color: #00adee;
}

.country-selector-wrapper, .country-selector-wrapper * {
	position: relative;
}

.country-selector-wrapper .blur {
	position: absolute;
	  top: -20px;
	  right: -20px;
	  bottom: -20px;
	  left: -20px;
	-webkit-filter: blur(20px);
	  -moz-filter: blur(20px);
	  -o-filter: blur(20px);
	  -ms-filter: blur(20px);
	  filter: blur(20px);
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
	  opacity: .3;
}

.country-selector-wrapper .bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: black;
}
