/* LESS VARIABLES */
.border-radius (@radius: 5px) {
	border-radius: @radius;
  	-webkit-border-radius: @radius;
  	-moz-border-radius: @radius;
}
.box-sizing (@type: border-box) {
	-webkit-box-sizing: @type;
	-moz-box-sizing:    @type;
	box-sizing:         @type;
}
/* ############## */

html, body {
	min-width: 1200px;
}
.clr {
	clear: both;
}
a {
	color: inherit;
}
.dot {
	position: absolute;
	cursor: pointer;
}

.block {
	width: 1000px;
	left: 50%;
	margin-left: -500px;
/*	outline: 1px solid red;*/
}

.popup {
	position: absolute;
	/*cursor: pointer;
	display: none;*/
}

@media screen and (max-width: 1024px) {
	.skrollable img{
		-ms-transform: scale(0.7);
		-webkit-transform: scale(0.7);
		-o-transform: scale(0.7);
		-moz-transform: scale(0.7);
		transform: scale(0.7);
	}
	h2 {
		-ms-transform: scale(0.7);
		-webkit-transform: scale(0.7);
		-o-transform: scale(0.7);
		-moz-transform: scale(0.7);
		transform: scale(0.7);
	}
}

.skrollable {
	/*
	 * First-level skrollables are positioned relative to window
	 */
	position:fixed;

	/*
	 * Skrollables by default have a z-index of 100 in order to make it easy to position elements in front/back without changing each skrollable
	 */
	z-index:100;
}

/*
.skrollable.unrendered {
	display:none !important;
}
*/

.skrollable .skrollable {
	/*
	 * Second-level skrollables are positioned relative their parent skrollable
	 */
	position:absolute;
}

.skrollable .skrollable .skrollable {
	/*
	 * Third-level (and below) skrollables are positioned static
	 */
	position:static;
}


html,
body,
div,
span,
p,
a,
del,
em,
img,
ol,
ul,
li,
fieldset,
form,
label {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 100000;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
	
	.spinner {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		margin: -50px 0 0 -50px;
		width:100px;
		height: 100px;
		background: url(../images/loading.gif) no-repeat center center;
		/*.border-radius(40px);*/
	
	}
}



.pink {
	color: #F55B9A;
}


.zag {
	z-index: 100;
	left: 50%;
	margin: 20px 0 0 -500px;
	width: 1000px;
	position: absolute;
	h1 {
		font: 43px/48px FuturaPTCondExtraBold-Reg;
		text-transform: uppercase;
	}
	h2 {
		font: 18px/18px FuturaPTCondExtraBold-Reg;
		text-transform: uppercase;
	}
	.join_button {
		width: 275px;
		height: 75px;
		background: url(../images/join.png);
		margin-left: 362px;
		cursor: pointer;
		
		&:hover {
			background: url(../images/join_hover.png);
		}
		&:active {
			background: url(../images/join_click.png);
		}
	}
}

#wrapper {
	margin: 0 0 0 120px;
	.content {
		width: 1000px;
		margin: 0 auto;
		
		.ruler {
			margin-left: 80px;
			span {
				width: 80px;
				text-align: center;
				display: block;
				float: left;
				font: 14px/16px FuturaPTCondMedium-Reg;
				background: url(../images/rul.png) no-repeat top center;
				padding-top: 30px;
			}
		}
	}
}

.popup {
	width: 901px;
	height: 616px;
	position: fixed;
	top: 40px;
	left: 50%;
	margin-left: -308px;
	background: url(../images/popup/border.png);
	top: -660px;
	z-index: 1000;
	-webkit-transition: all 900ms cubic-bezier(0.720, 0, 0.240, 1); /* older webkit */
	-webkit-transition: all 900ms cubic-bezier(0.720, -0.370, 0.240, 1.405); 
	   -moz-transition: all 900ms cubic-bezier(0.720, -0.370, 0.240, 1.405); 
	    -ms-transition: all 900ms cubic-bezier(0.720, -0.370, 0.240, 1.405); 
	     -o-transition: all 900ms cubic-bezier(0.720, -0.370, 0.240, 1.405); 
	        transition: all 900ms cubic-bezier(0.720, -0.370, 0.240, 1.405); /* custom */
	
	&.active {
		top: 40px;
	}
	
	.cross {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 29px;
		height: 29px;
		background: url(../images/popup/cross.png);
		cursor: pointer;
		
		&:hover {
			background: url(../images/popup/cross_hover.png);
		}
	}
	
	a {
		color: #F55B9A;
	}
	
	h3 {
		font: 30px/25px FuturaPTCondExtraBold-Reg;
		text-transform: uppercase;
	}

	td {
		text-align: center;
		vertical-align: ;
		font: 24px/24px FuturaPTCondMedium-Reg;
		width: 220px;
		
		.fb {
			width: 70px;
			height: 62px;
			display: block;
			background: url(../images/fb.png);
			float: left;
			margin-left: 40px;
			&:hover {
				background: url(../images/fb_hover.png);
			}
		}
		.vk {
			width: 70px;
			height: 62px;
			display: block;
			background: url(../images/vk.png);
			float: left;
			&:hover {
				background: url(../images/vk_hover.png);
			}
		}
		.app {
			width: 108px;
			height: 107px;
			display: block;
			background: url(../images/popup/app.png);
			margin-left: 50px;
			&:hover {
				background: url(../images/popup/app_hover.png);
			}
		}
		.run {
			width: 123px;
			height: 131px;
			margin-left: 50px;
			background: url(../images/popup/run.png);
		}
	}
	.blank {
		width: 60px;
	}
	.links {
		font: 30px/25px FuturaPTCondExtraBold-Reg;
		text-transform: uppercase;
		
		a {
			padding: 0 13px;
		}
	}
}
.now {
	font: 50px/50px FuturaPTCondExtraBold-Reg;
	text-transform: uppercase;
	margin-top: 530px;
}

.socnet {
	margin-left: 205px;
	
	.border {
		width: 70px;
		height: 10px;
		background-color: #000;
		float: left;
		margin-top: 26px;
	}
	.fb {
		width: 70px;
		height: 62px;
		background: url(../images/fb.png);
		display: block;
		float: left;
		margin-left: 7px;
		&:hover {
			background: url(../images/fb_hover.png);
		}
	}
	.vk {
		width: 70px;
		height: 62px;
		background: url(../images/vk.png);
		display: block;
		float: left;
		margin-right: 7px;
		&:hover {
			background: url(../images/vk_hover.png);
		}
	}
}