/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/

#colorbox, #cboxOverlay, #cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
}
#cboxWrapper {max-width: none;}
#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(246, 13, 122, .7);
}
#cboxMiddleLeft,
#cboxBottomLeft {clear: left;}
#cboxContent {position: relative;}
#cboxLoadedContent {
	overflow: auto; 
	-webkit-overflow-scrolling: touch;
}
#cboxTitle {margin: 0;}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cboxPhoto {
	display: block;
	float: left;
	max-width: none;
	margin: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
.cboxIframe {
	display: block;
	width: 100%;
	height: 100%;
	margin:0;
	padding: 0;
	border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
		-moz-box-sizing: content-box;
		-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
#colorbox {outline: 0;}

#cboxCurrent{display: none!important;}


/****** loading ******/
#cboxLoadingGraphic {background: url(../images/loader.gif) no-repeat center center;}


/****** nav ******/
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	overflow: visible;
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {outline: 0;}

/* cboxPrevious / cboxNext */
#cboxPrevious,
#cboxNext {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 45px;
	margin-top: -22px;
	padding: 0;
	border: none;
	background: none;
	text-indent: -99999px;
	text-indent: -9999px;
	outline: none;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
	transition: all .4s ease;
		-webkit-appearance: none;
}
#cboxPrevious {left: -40px;}
#cboxNext {right: -40px;}

#cboxPrevious:before,
#cboxPrevious:after,
#cboxNext:before,
#cboxNext:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 2px;
	margin-top: 4px;
	background: #fff;
}
#cboxPrevious:before {
	margin-top: -17px;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#cboxPrevious:after {
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#cboxNext:before {
	margin-top: -17px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#cboxNext:after {
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* cboxClose */
#cboxClose {
	display: block;
	position: absolute;
	top: -60px;
	right: 0;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	outline: none;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
	transition: all .4s ease;
}
#cboxClose:before,
#cboxClose:after {
	content: '';
	position: absolute;
	top: 25px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #fff;
}
#cboxClose:before {
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#cboxClose:after {
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* hover */
#cboxPrevious:hover,
#cboxNext:hover,
#cboxClose:hover {opacity: .7;}


/****** cboxTitle ******/
#cboxTitle {
	float: none!important;
	padding: 1em;
	background: #fff;
	text-align: center;
	font-size: .9em;
}



/*============================================================================

	responsive

============================================================================*/
@media screen and (max-width:767px) {
	#cboxPrevious,
	#cboxNext {transform: scale(.6);}
	#cboxPrevious {left: -18px;}
	#cboxNext {right: -18px;}
}
