
/* 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;
}
/* ############## */
* {
	margin: 0;
	padding: 0;
}
html {
	height: 100%;
}
body {
	font-family: CharterOSCRegular;
	background: url(../images/bg.jpg);
	font-size: 15px;
	line-height: 21px;
	height: 100%;
}

.clearFix{
	clear: both;
}

#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: -25px 0 0 -25px;
		width: 50px;
		height: 50px;
		background: rgba(0,0,0, 0.9) url(../images/loading.gif) no-repeat center center;
		.border-radius(40px);
	}
}
#header {
	font-family: FFDINBold;
}

.heading{
	color: rgba(0, 227, 236, 1);
	text-align: center;
	
	h1{
		font: 50px/60px 'LineaturaLight';
		width: 500px;
		float: left;
		letter-spacing: 10px;
	}
	h2{
		font: 30px/35px 'LineaturaLight';
		width: 320px;
		float: left;
	}
	.heart{
		background: url(../images/heart.png) no-repeat center center;
		width: 250px;
		height: 100px;
		float: left;
	}
	.description{
		width: 400px;
		font: 14px/18px 'CirceRegular';
		margin-left: 300px;
	}
}

.layer {
	z-index: 5;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	display: none;
}

#wrapper {
	width: 1000px;
	margin: 35px auto;
	position: relative;
	
	.tmb {
		cursor: pointer;
	}
	
	.popup{
		position: relative;
		width: 1000px;
	}
	
	.big {
		position: fixed;
		top: 50%;
		margin-top: -315px;
		z-index: 15;
	}
	
	.gif {
		position: fixed;
		top: 50%;
		margin-left: 350px;
		margin-top: -400px;
		z-index: 15;
	}
	
	.random{
		position: fixed;
		top: 50%;
		margin-left: 650px;
		margin-top: -315px;
		z-index: 15;
	}
	
	.caption{
		z-index: 20;
		top: 50%;
		text-align: center;
		font: 30px/35px 'LineaturaLight';
		position: fixed;
		color: rgba(0, 227, 236, 1);
		width: 280px;
		padding: 0 10px;
		margin-left: 350px;
	}
}
.block {
	
}