@charset "UTF-8";









/* PLAYERS */



.popup {
	position: fixed;
	top: -1px;
	left: -1px;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: rgba(10,10,10,0.9);
	border: 1px solid transparent;
	display: none;
}


.popup .close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 36px;
	height: 36px;
	border: 2px solid #fff;
	border-radius: 20px;
	cursor: pointer;
	background: url(/images/images/base/close.png) no-repeat center;
}

.popup .frame {
	position: absolute;
	top: 50%;
	left: 50%;
	background: #000;
	transform: translate(-50%,-50%);
	box-shadow: 0 0 10px rgba(0,0,0,0.5)
}

.player .stage {
	position: relative;
	width: 100%;
	overflow: hidden;
}


/* player & stage */

.popup.videoplayer .frame { width: 960px; max-width: 100%; border: 10px solid rgba(256,256,256,0.2) }
.popup.imageplayer .frame { width: 960px; height: 640px; border: 10px solid rgba(256,256,256,0.2)}

.popup.videoplayer .stage { height: 0; padding-bottom: 56.25% }

.popup.imageplayer .stage,
.popup.imageplayer .stage div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.popup.imageplayer .stage div { opacity: 0 }

.sizer { width: 100px; height: 100px; position: absolute; }



/* image only */

.popup .basis {
	position: absolute;
	bottom: 42px;
	left: 0;
	width: 100%;
	text-align: center;
	display: none;
	pointer-events: none;
}



.popup .basis > div {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	background: rgba(256,256,256,0.6);
	cursor: pointer;
	margin: 0 2px;
	pointer-events: auto;
}

.popup .basis > div > div {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-bottom: 10px;
	margin-left: -44px;
	width: 80px;
	height: 80px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	display: none;
	border: 4px solid rgba(256,256,256,0.8);
}

.popup .basis > div:hover > div { opacity: 1; display: block; }

.popup .freeze .basis, .popup .freeze .basis.show { pointer-events: none }
.popup .freeze .steps, .popup .freeze .steps.show { pointer-events: none }

.popup .basis.show { display: block }





.popup .steps {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.popup .steps.show {
	display: block;
}



.popup .handy {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	pointer-events: none;
}

.popup .handy.show, .popup .handy.fix, .popup .handy.tempfix {
	opacity: 1;
}



.popup .plate {
	position: absolute;
	bottom: 6px;
	left: 50%;
	margin-left: -65px;
	background: rgba(0,0,0,0.7);
	border-radius: 6px;
	overflow: hidden;
	z-index: 100;
	pointer-events: auto;
	display: none;
}

.popup .plate > div {
	height: 32px;
	width: 40px;
	float: left;
	cursor: pointer;
}

.popup .plate .step-to-prev { background: url(/images/images/base/gal-prev.png) no-repeat center; cursor: pointer; }
.popup .plate .step-to-next { background: url(/images/images/base/gal-next.png) no-repeat center; cursor: pointer; }

.popup .plate .count {
	width: auto;
	color: #eee;
	font-size: 14px;
	line-height: 32px;
	text-align: center;
	min-width: 50px;
	font-weight: 300;
}





.popup .steps {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.popup .prev,
.popup .next {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
}

.popup .next { right: 0; }
.popup .prev { left:  0; }

.popup .prev { cursor: w-resize }
.popup .next { cursor: e-resize }


.popup .steps:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	transform: translate(-50%,-50%);
	background: #fff url(/images/loading.gif) no-repeat center;
	content: '';
	opacity: 0;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
}

.popup.loading .steps:after { opacity: 0.8 }


.popup.imageplayer .title {
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	color: #eee;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	font-weight: 300;
	margin: 0;
	padding: 0;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	pointer-events: auto;
	display: none;
}


.popup.imageplayer .title span {
	display: inline-block;
	padding: 8px 16px;
	margin: 0;
	border-radius: 6px;
	background: rgba(0,0,0,0.7);
}


/* video only */


.videoplayer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.videoplayer .info {
	background: rgba(0,0,0,0.8);
	color: #eee;
	font-size: 15px;
	line-height: 24px;
	padding: 24px;
	position: absolute;
	top: 10px;
	left: 10px;
	border-radius: 3px;
	opacity: 0;
	font-weight: 300;
	display: none;
}

.videoplayer .stage:hover .info {
	opacity: 1;
}

.videoplayer .info .title {
	font-size: 18px;
}