@charset "UTF-8";

#colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    /*overflow: hidden;*/
    -webkit-transform: translate3d(0,0,0);
}

#cboxWrapper {
    max-width: none;
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}

#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%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    -ms-interpolation-mode: bicubic;
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
}
#colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

#cboxOverlay {
    background: rgba( 97,174,235, 0.8 );
}

#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}

#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	width: auto;
	background: none;
}
        

#cboxPrevious {
	position: absolute;
	top: 50%;
	left: -50px;
	margin-top: -32px;
	background: url(../images/arrow_prev.png) no-repeat top left;
	width: 45px;
	height: 48px;
	text-indent: -9999px;
}

#cboxCurrent {
	display: none !important;
}

#cboxNext {
	position: absolute;
	top: 50%;
	right: -50px;
	margin-top: -32px;
	background: url(../images/arrow_next.png) no-repeat top right;
	width: 45px;
	height: 48px;
	text-indent: -9999px;
}

#cboxClose {
	position: absolute;
	top: -53px;
	right: 5px;
	display: block;
	background: url(../images/close.png) no-repeat;
	width: 48px;
	height: 50px;
	text-indent: -9999px;
}

@media screen and (max-width:700px) {
	#cboxClose {
		top: -106px;
		width: 96px;
		height: 100px;
		background-size: 96px 100px;
	}
	#cboxNext {
		position: absolute;
		top: calc( 100% + 40px );
		left: calc( 50% + 10px );
		width: 90px;
		height: 96px;
		background-size: 90px 96px;
	}
	#cboxPrevious {
		position: absolute;
		top: calc( 100% + 40px );
		left: calc( 50% - 106px );
		margin-top: -32px;
		background: url(../images/arrow_prev.png) no-repeat;
		width: 90px;
		height: 96px;
		background-size: 90px 96px;
	}
}