/* Swipebox v1.2.6 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */

html.swipebox-html.swipebox-touch
{
	overflow: hidden !important;
}

#swipebox-overlay img
{
	border: none !important;
}

#swipebox-overlay
{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999 !important;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

#swipebox-slider
{
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	white-space: nowrap;
	position: absolute;
	display: none;
}

#swipebox-slider .slide
{
	background: url("../img/loader.gif") no-repeat center center;
	height: 100%;
	width: 100%;
	line-height: 1px;
	text-align: center;
	display: inline-block;
}

#swipebox-slider .slide:before
{
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}

#swipebox-slider .slide img, 
#swipebox-slider .slide .swipebox-video-container
{
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}

#swipebox-slider .slide .swipebox-video-container
{
	background: none;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	/* padding: 5%; */
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video
{
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe
{
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

#swipebox-action,
#swipebox-caption
{
	position: absolute;
	left: 0;
	z-index: 999;
	/* height: 50px; */
	width: 100%;
}

#swipebox-action
{
	/* bottom: -50px; */
	bottom: 0;
}

/* #swipebox-action.visible-bars
{
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
} */

#swipebox-action #swipebox-prev,
#swipebox-action #swipebox-next/* ,
#swipebox-action #swipebox-close */
{
	background-image: url("../img/icons.png");
	background-repeat: no-repeat;
	border: none !important;
	text-decoration: none !important;
	cursor: pointer;
	position: absolute;
	/* width: 50px;
	height: 50px; */
	width: 40px;
	height: 40px;
	top: 0;
}

#swipebox-caption #swipebox-close
{
	background-image: url("../img/icons.png");
	background-repeat: no-repeat;
	border: none !important;
	text-decoration: none !important;
	cursor: pointer;
	position: absolute;
	/* width: 50px;
	height: 50px; */
	width: 30px;
	height: 30px;
	top: 0;
}

#swipebox-action #swipebox-prev
{
	/* background-position: -32px 13px; */
	background-position: -37px 8px;
	left: 40px;
}

#swipebox-action #swipebox-next
{
	/* background-position: -78px 13px; */
	background-position: -83px 8px;
	right: 40px;
}

/* #swipebox-action #swipebox-close */
#swipebox-caption #swipebox-close
{
	/* background-position: 15px 12px; */
	background-position: 5px 2px;
	/* left: 40px; */
	right: 40px;
}

#swipebox-action #swipebox-prev.disabled,
#swipebox-action #swipebox-next.disabled
{
	opacity: 0.3;
}

#swipebox-action span#copyright
{
	display: block;
	width: 800px;
	margin: 0 auto;
	line-height: 40px;
	text-align: center;
}

#swipebox-caption
{
	/* top: -50px; */
	top: 0;
	text-align: center;
}

/* #swipebox-caption.visible-bars
{
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
} */

#swipebox-slider.rightSpring
{
	-moz-animation: rightSpring 0.3s;
	-webkit-animation: rightSpring 0.3s;
}

#swipebox-slider.leftSpring
{
	-moz-animation: leftSpring 0.3s;
	-webkit-animation: leftSpring 0.3s;
}

@-moz-keyframes rightSpring
{
	0%
	{
		margin-left: 0;
	}
	50%
	{
		margin-left: -30px;
	}
	100%
	{
		margin-left: 0;
	}
}

@-moz-keyframes leftSpring
{
	0%
	{
		margin-left: 0;
	}
	50%
	{
		margin-left: 30px;
	}
	100%
	{
		margin-left: 0;
	}
}

@-webkit-keyframes rightSpring
{
	0%
	{
		margin-left: 0;
	}
	50%
	{
		margin-left: -30px;
	}
	100%
	{
		margin-left: 0;
	}
}

@-webkit-keyframes leftSpring
{
	0%
	{
		margin-left: 0;
	}
	50%
	{
		margin-left: 30px;
	}
	100%
	{
		margin-left: 0;
	}
}

@media screen and (max-width: 800px)
{
	/* #swipebox-action #swipebox-close */
	#swipebox-caption #swipebox-close
	{
		/* left: 0; */
		right: 0;
	}
	#swipebox-action #swipebox-prev
	{
		/* right: 60px; */
		left: 0;
	}
	#swipebox-action #swipebox-next
	{
		right: 0;
	}
}


/* --- Skin --- */

#swipebox-overlay
{
	background: #000000;
}

#swipebox-action,
#swipebox-caption
{
	text-shadow: 1px 1px 1px black;
	/* background-color: #000000;
	background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(100%, #000000));
	background-image: -webkit-linear-gradient(#000000, #000000);
	background-image: -moz-linear-gradient(#000000, #000000);
	background-image: -o-linear-gradient(#000000, #000000);
	background-image: linear-gradient(#000000, #000000); */
	background-color: rgba(0, 0, 0, 0.66);
	background-image: url('../../../media/IE/000000_66.png')\0;
	opacity: 0.95;
}

#swipebox-action,
#swipebox-caption
{
	color: white !important;
	font-family: Helvetica, Arial, sans-serif;
}

#swipebox-action
{
	/* border-top: 1px solid rgba(255, 255, 255, 0.2); */
	/* height: 50px; */
	font-size: 10px;
	height: 40px;
}

#swipebox-caption
{
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
	font-size: 15px;
	/* line-height: 43px; */
	height: 30px;
	line-height: 30px;
}