/*
 * Swiper - Mobile Touch Slider CSS
 * http://www.idangero.us/sliders/swiper
 *
 * Vladimir Kharlampidi, The iDangero.us
 * http://www.idangero.us/
 * 
 * Copyright 2012-2013, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us
 *
 * Licensed under GPL & MIT
 *
*/

/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;

	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	-o-user-select: none;
	user-select: none;
}
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
	/* Specify Swiper's Size: */

	width: 100%;
	height: 450px;
	direction: ltr;
	background-color: white;
}
.swiper-slide {
	/* Specify Slides's Size: */
	/*min-width: 300px;*/
	height: 430px;
	opacity: 0.5;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
.swiper-wrapper {
	height: 400px!important;
}
.swiper-slide-active {
	/* Specific active slide styling: */
	height: 385px;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.swiper-slide-visible {
	/* Specific visible slide styling: */	
	
}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
	/* Stylize pagination button: */	

}
.swiper-active-switch {
	/* Specific active button style: */	
	
}
.swiper-visible-switch {
	/* Specific visible button style: */	
	
}


/* WORLD PICKER */

.worldRow .loginBox {
	display: inline-block;
	margin: 0 auto;
	vertical-align: top;
}

.world-swiper-container {
	/*transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;*/
}

.world-swiper-container.wType_retro {
	background-color: #fff;
	background-image: url('../img/v70/wRetroBG.jpg');
	background-position: center top;
	background-repeat: no-repeat;
	background: #fff url('../img/v70/wRetroBG.jpg') no-repeat center top;
}

.swiper-slide.wType_retro {
	background: url('../img/v70/wArtRetro.png') no-repeat;
	background-position: right bottom;
}

.world-swiper-container.wType_classic {
	background-color: #fff;
	background-image: url('../img/v70/wClassicBG.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background: #fff url('../img/v70/wClassicBG.jpg') no-repeat center bottom;
}

.swiper-slide.wType_classic {
	background: url('../img/v70/wArtClassic.png') no-repeat;
	background-position: right bottom;
}

.world-swiper-container.wType_new {
	background-color: #fff;
	background-image: url('../img/v70/wNewBG.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background: #fff url('../img/v70/wNewBG.jpg') no-repeat center center;
}

.swiper-slide.wType_new {
	background: url('../img/v70/wArtNew.png') no-repeat;
	background-position: right bottom;
}

.world-swiper-container.wType_old {
	background-color: #fff;
	background-image: url('../img/v70/wOtherBG.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background: #fff url('../img/v70/wOtherBG.jpg') no-repeat center top;
}

.swiper-slide.wType_x {
	background: url('../img/v70/wArtX.png') no-repeat;
	background-position: right bottom;
}

.checkboxesWrapper {
	position: absolute;
	bottom: 5%;
	left: 1%;
	font-size: 16px;
	color: #000;
	padding: 7px;
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 0 5px #9D9D9D;
}
.checkboxesWrapper:hover, .checkboxesWrapper.error {
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 5px #272727;
}
.remember {
	/*padding: 5px;*/
}
.checkboxesWrapper .remember input, .checkboxesWrapper .group.terms input {
	display:none;
}

.checkboxesWrapper.error .group.terms {
	border: 1px solid red;
}

.checkboxesWrapper.error .group.terms {
	-webkit-animation-name: errorPulse;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: errorPulse;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;

    -o-animation-name: errorPulse;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;

    -ms-animation-name: errorPulse;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;

    animation-name: errorPulse;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes errorPulse {
	0%	{box-shadow: none; border: none;}
	25%	{box-shadow: 0 0 5px red; border: none;}
	50%	{box-shadow: 0 0 8px red; border: none;}
	100% {box-shadow: none; border: none;}
}

.checkboxContainer {
	cursor: pointer;
}

.checkboxesWrapper label.checkboxContainer span.checkboxNew {
	display:inline-block;
    border:1px solid #ccc;
    border-radius:3px;
    width:20px;
    height:20px;
    background:#fff;
    vertical-align:middle;
    margin:3px;
    box-shadow: 0 0 5px #C7C7C7 inset;
}

label.checkboxContainer :checked + span.checkboxNew {
    background: #fff url('../img/v70/checked.png') no-repeat center center;
    background-size: 80%;
}

.checkboxesWrapper .group.terms label {
	font-size: 16px;
	text-transform: capitalize;
	color: #000;
}

.checkboxesWrapper .group.terms a {
	color: #F00;
	font-size: 11px;
}

.checkboxesWrapper .group.terms a:hover {
	color: #000;
}

.swiper-slide .registerButton {
	min-width: 300px;
}

/* WORLD INFO */
.pickerOverlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI4NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC45Ii8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjg1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC43Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(top,  rgba(0,0,0,1) 70%, rgba(0,0,0,0.9) 85%, rgba(0,0,0,0.85) 95%, rgba(0,0,0,0.7) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%,rgba(0,0,0,1)), color-stop(85%,rgba(0,0,0,0.9)), color-stop(95%,rgba(0,0,0,0.85)), color-stop(100%,rgba(0,0,0,0.7))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 70%,rgba(0,0,0,0.9) 85%,rgba(0,0,0,0.85) 95%,rgba(0,0,0,0.7) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,1) 70%,rgba(0,0,0,0.9) 85%,rgba(0,0,0,0.85) 95%,rgba(0,0,0,0.7) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,1) 70%,rgba(0,0,0,0.9) 85%,rgba(0,0,0,0.85) 95%,rgba(0,0,0,0.7) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 70%,rgba(0,0,0,0.9) 85%,rgba(0,0,0,0.85) 95%,rgba(0,0,0,0.7) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#b3000000',GradientType=0 ); /* IE6-8 */

	opacity: 1;
	z-index: 150;
	pointer-events:none;
}
#btnSlidePrev, #btnSlideNext {
	height: 210px;
	width: 70px;
	position: absolute;
	z-index: 3;
	top:25%;
	opacity: 0.65;
	transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
}
#btnSlidePrev:hover, #btnSlideNext:hover {
	opacity: 1;
}
#btnSlidePrev {
	background: url("../img/v70/news/prev.png") no-repeat center center;
	left: 1%;
}
#btnSlideNext {
	background: url("../img/v70/news/next.png") no-repeat center center;
	right: 1%;
}
#btnClosePicker {
	position: absolute;
	top:1%;
	right: 1%;
	z-index: 3;
	width: 50px;
	height: 52px;
	background: url("../img/v70/pickerCloseBtn.png") no-repeat center center;
	background-size: 100%; 
	cursor: pointer;
	opacity: 0.7;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
}
#btnClosePicker:hover {
	opacity: 1;
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
}
.pickerWrapper {
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	background: none; 
	z-index: 160;
}
.pickerWrapper .topLine {
	background: url("../img/v70/topH.png") center top repeat-x; 
	width: 100%; 
	height: 15px;
	position: absolute;
	top: 0;
}
.pickerWrapper .bottomLine {
	background: url("../img/v70/bottomH.png") center top repeat-x;
	width: 100%; 
	height: 15px;	
	position: absolute;
	bottom: -1px;
}
.pickerWrapper .welcomeMsg {
	margin-top: 20px;
	text-align: center;
	font-size: 32px;
	background: rgba(255, 255, 255, 0.3);
	cursor: default;
}
.wDescriptionWrapper {
	min-width: 55%;
	cursor: default;
	display: inline-block;
}
.wDescriptionWrapper::before {
	content: "";
	width: auto;
	display: block;
	background: url("../img/v70/wInfoBg.png") left top repeat-x;
	height: 16px;
}
.wDescriptionWrapper::after {
	content: "";
	width: auto;
	display: block;
	background: url("../img/v70/wInfoBg.png") left bottom repeat-x;
	height: 16px;
}
.wDescription {
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
}
.mainInfo {
	font-size: 32px;
	font-weight: bold;
	display: inline-block;
	line-height: 32px;
}
.statsFlags {
	display: inline-block;
	float: right;
}
.statsFlags img {
	border: 1px solid #ccc;
	width: 100%;
}
.wParams {
	border-top: 1px solid #000;
	display: block;
	clear: both;
	margin-top:5px;
}
.worldTitle {
	color: #ffa200;
	font-size:20px;
	line-height: 24px;
}
.wParams .type {
	font-size: 24px;
	text-transform: uppercase;
}
.wParams .stats {
	font-size: 13px;
	color: #212121;
	font-family: Verdana, sans-serif;
}
.wParams .stats strong {
	color: #762626;
}
#generalInfo {
	margin-top: 10px;
	line-height: 28px;
}
#generalInfo span {
	/*font-size: 14px;
	font-weight: bold;
	padding: 4px 14px;
	background: #e2e2e2;
	border: 1px solid #A9A9A9;
	border-radius: 3px;
	cursor: pointer;
	white-space: nowrap;*/
	font-size: 14px;
	padding: 7px 14px;
	background: #000000;
	background: rgb(66,66,66);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(66,66,66,1) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(66,66,66,1)), color-stop(100%,rgba(0,0,0,1)));
	background: -webkit-linear-gradient(top, rgba(66,66,66,1) 0%,rgba(0,0,0,1) 100%);
	background: -o-linear-gradient(top, rgba(66,66,66,1) 0%,rgba(0,0,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(66,66,66,1) 0%,rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(66,66,66,1) 0%,rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#000000',GradientType=0 );
	color: #fff;
	border: 1px solid #A9A9A9;
	cursor: pointer;
	white-space: nowrap;
}

#generalInfo span:hover {
	/*background: #FFFFFF;
	border: 1px solid #A9A9A9;*/
	box-shadow: 0 0 4px gray inset;
	background: #e2e2e2;
	color: #000;
}

.additionalInfo {
	position: relative;
	top: 3%;
	width: 33%;
	margin: 0 auto;
	color: #fff;
	display: table;
	vertical-align: middle;
	cursor: default;
}

.infoIcon {
	display: table-cell;
	width: 38px;
	height: 38px;
	background: url("../img/v70/wDescription.png") center center no-repeat;
	padding: 10px;
}
.infoText {
	display: table-cell;
	vertical-align: middle;
	padding: 10px;
}
.infoText h3 {
	font-size: 14px;
	text-transform: uppercase;
	border-bottom: 1px solid #353535;
}
.infoText p {
	color: #8C8C8C;
	margin-top: 5px;
	font-family: Verdana, sans-serif;
}

@media all and (max-width: 1366px) {
	.wDescriptionWrapper {
		/*width: 75%;*/
	}
	.swiper-slide .registerButton {
		width: 260px;
		min-width: 260px;
	}
}

@media all and (max-width: 1284px) {
	.wDescription {
		background-size: 130%;
	}
	.swiper-slide {
		height: 430px;
	}
	.swiper-slide.swiper-slide-active {
		height: 385px!important;
	}
	.additionalInfo {
		width: 70%;
	}
}

@media all and (max-width: 1024px) {
	.wDescription {
		background-size: 130%;
	}
}

@media all and (max-width: 900px) {
	.pickerWrapper {
		position: absolute;
	}
	.swiper-slide.wType_new, .swiper-slide.wType_old, .swiper-slide.wType_retro, .swiper-slide.wType_classic {
		background: none;
	}
	.statsFlags {
		width: 40px;
	}
	.mainInfo {
		font-size: 22px;
	}
	.wParams .type {
		font-size: 18px;
	}
	#generalInfo span {
		font-size: 16px;
		line-height: 36px;
	}
}

@media all and (max-width: 640px) {
	.mainInfo {
		font-size: 24px;
		line-height: 24px;
	}
	.wParams .type {
		font-size: 16px;
	}
	.swiper-slide {
		min-width: 300px;
		height: auto!important;
		background: none!important;
	}
	.worldRow {
		top: 0!important;
	}
	.wDescriptionWrapper {
		width: 80%;
		margin: 0 10% 0 10%;
	}
	.wDescription {
		width: 100%;
		padding: 3px 5px;
	}
	.pickerWrapper .welcomeMsg {
		display: none;
		margin-top: 0px!important;
		font-size: 22px;
		line-height: 24px;
	}
	.swiper-wrapper, .swiper-container, .swiper-slide.swiper-slide-active {
		height: auto!important;
	}
	.world-swiper-container.wType_new, .world-swiper-container.wType_old, .world-swiper-container.wType_retro, .world-swiper-container.wType_classic {
		background-color: #fff;
		background-image: url('../img/v70/wMobileBG.jpg');
		background-position: center center;
		background-repeat: no-repeat;
		background: #fff url('../img/v70/wMobileBG.jpg') no-repeat center center;
		padding-bottom: 15px;
	}
	.swiper-slide {
		transition: none;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		-ms-transition: none;
	}
	.swiper-slide .registerButton {
		width: auto!important;
		min-width: auto!important;
		height: auto;
		line-height: 30px;
	}
	.additionalInfo {
		width: 100%;
		top:0!important;
	}
	#btnClosePicker {
		top: 0%;
		right: 0%;
		width: 30px;
		height: 32px;
		z-index: 3;
	}
	#btnSlidePrev, #btnSlideNext {
		width: 30px;
		top: 20%;
		height: 100px;
		background-size: 100%;
	}
	.checkboxesWrapper {
		position: static!important;
		padding: 0!important;
		background: none!important;
		clear: both;
		display: block;
		background: rgba(255, 255, 255, 0.85);
		box-shadow: none!important;
		min-height: 70px;
	}
	.checkboxesWrapper:hover {
		box-shadow: none!important;
	}
	#generalInfo {
		margin: 0!important;
		width: 70%;
		display: inline-block;
	}
	.checkboxesWrapper .group.terms {
		padding: 0;
	}
	.pickerOverlay {
		background: #000!important;
	}
}

@media all and (max-height: 360px) {
	.speed, .start, .players, .end {
		display: inline-block;
		width: auto!important;
	}
	.speed:after, .start:after, .players:after, .end:after {
		content: " | "
	}
	#generalInfo span {
		padding: 2px 5px;
		border-radius: 0;
		line-height: 28px;
	}
	.wDescriptionWrapper::before, .wDescriptionWrapper::after {
		display: none;
	}
	.infoText {
		padding: 0;
	}
	.wDescription {
		padding: 0 5px!important;
	}
}
