.transition( @target: all, @duration: 300ms, @type: ease, @delay: 0s ) {
	-webkit-transition: @target @duration @type @delay;
	-moz-transition: @target @duration @type @delay;
	-ms-transition: @target @duration @type @delay;
	-o-transition: @target @duration @type @delay;
	transition: @target @duration @type @delay;
}

.rotate( @value: 0deg ) {
	-webkit-transform: rotate( @value );
	-moz-transform: rotate( @value );
	-ms-transform: rotate( @value );
	-o-transform: rotate( @value );
	transform: rotate( @value );
}

.transform-origin( @x, @y ) {
	transform-origin: @x @y;
	-ms-transform-origin: @x @y;
	-webkit-transform-origin: @x @y;
}

.box-sizing {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.contain {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.cover {
	background-size: cover;
	background-position: center center;
}

.scale( @value: 1 ) {
	-webkit-transform: scale( @value );
	-moz-transform: scale( @value );
	-ms-transform: scale( @value );
	-o-transform: scale( @value );
	transform: scale( @value );
}

.clear {
	clear: both;
}

.pos(@w: auto, @h: auto, @l: 0, @t: 0, @z: 1) {
	position: absolute;
	z-index: @z;
	width: @w;
	height: @h;
	left: @l;
	top: @t;
}

/**/

.loader {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
  font-size: 5px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: #FFB2A7;
	z-index: 100;
}


body {
	font-family: trivia-grotesk;
}

.zahod {
	.bg {
		width: 100%;
		height: 550px;
		background: #FFB2A7 url(../images/bg.jpg) no-repeat center center;
	}
	.text {
		width: 670px;
		margin: 0 auto;
		font-size: 17px;
		line-height: 1.3;
		font-family: trivia-grotesk;
		text-align: center;
		padding: 50px 0 70px 0;
		margin-bottom: 50px;
		background: url(../images/go.png) no-repeat bottom center;
	}
}

.video_player {
	position: relative;
	background: #000;
	height: 700px;
	
	.player {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		height: 405px;
		width: 1040px;
		background: #121010;
		
		.video {
			position: relative;
			width: 720px;
			height: 100%;
			background: #222;
		}
		
		.playlist {
			position: absolute;
			right: 0px;
			top: 0px;
			width: 320px;
			height: 100%;
			color: #fff;
			
			.seasons {
				position: absolute;
				top: -30px;
				left: 0px;
				height: 30px;
				width: 100%;
				font-size: 0px;
				
				.season {
					display: inline-block;
					vertical-align: text-top;
					line-height: 30px;
					height: 30px;
					font-family: Arial;
					text-transform: uppercase;
					font-size: 10px;
					background: rgba(255,255,255,0.2);
					cursor: pointer;
					padding: 0 10px;
					
					&.active {
					
					}
					
					&.disabled {
						opacity: 0.4;
						pointer-events: none;
						line-height: 12px;
						text-align: center;
						
						span {
							display: inline-block;
							vertical-align: text-top;
							padding-top: 4px;
						}
					}
				}
			}
			
			.scrollable {
				width: 100%;
				height: 100%;
				
				.jspPane {
					width: 320px - 12px !important;
				}
			}
			
			li {
				display: block;
				height: 52px;
				padding: 12px;
				cursor: pointer;
				
				.thumb {
					float: left;
					width: 92px;
					height: 52px;
					opacity: 0.85;
				}
				.id {
					font-family: Arial;
					margin-left: 104px;
					text-transform: uppercase;
					font-size: 10px;
					padding-top: 8px;
				}
				.title {
					margin-left: 104px;
					text-transform: uppercase;
					font-size: 12px;
					-webkit-font-smoothing: antialiased;
					padding-top: 9px;
				}
				
				&:hover, &.active {
					background: #292828;
					
					.thumb {
						opacity: 1;
					}
				}
			}
		}
	}
}
