@charset "utf-8";

/*
======================================================================
colorbox
======================================================================*/


/* --------------------------------------------------------
-----------------------------------------------------------
 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;
	overflow:hidden;
}
#cboxOverlay {
	position:fixed;
	width:100%;
	height:100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
	clear:left;
}
#cboxContent {
	position:relative;
}
#cboxLoadedContent {
	overflow:auto;
}
#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;
}
.cboxIframe {
	width:100%;
	height:100%;
	display:block;
	border:0;
}
/* --------------------------------------------------------
-----------------------------------------------------------
 User Style:
 Change the following styles to modify the appearance of ColorBox.  They are
 ordered & tabbed in a way that represents the nesting of the generated HTML.
-----------------------------------------------------------
----------------------------------------------------------- */
#cboxOverlay {
	background:#000;
}
#colorbox {
}
#cboxContent {
	margin-top:20px;
}
.cboxIframe {
	background:#fff;
}
#cboxError {
	padding:50px;
	border:1px solid #ccc;
}
#cboxLoadedContent {
	background:#fff;
}
#cboxTitle {
	position:absolute;
	left:0;
	bottom: 0;
	color: #000;
	width: 100%;
	padding: 20px 10px;
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
}
	
#cboxTitle:empty {
		display: none !important;
}
#cboxCurrent {
	position:absolute;
	top:-20px;
	right:0px;
	color:#ccc;
}
#cboxSlideshow {
	position:absolute;
	top:-20px;
	right:90px;
	color:#fff;
}
#cboxPrevious,
#cboxNext {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
	position:absolute;
	top:50%;
	margin-top: -20px;
    height: 40px;
    width: 40px;
	text-indent:-9999px;
	outline: none;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 99;
}
@media screen and (max-width: 670px) {
	#cboxPrevious,
	#cboxNext {
		margin-top: -14px;
		height: 28px;
		width: 28px;
	}
}
#cboxPrevious:hover,
#cboxNext:hover {
	opacity: 0.8;
}
#cboxPrevious {
	left: 12px;
	background-image: url(/img/common/bnt_slider_prev.svg);
}
@media screen and (max-width: 670px) {
	#cboxPrevious {
		left: 0;
	}
}
#cboxNext {
	right: 12px;
	background-image: url(/img/common/bnt_slider_next.svg);
}
@media screen and (max-width: 670px) {
	#cboxNext {
		right: 0;
	}
}
#cboxLoadingOverlay {
	background:#000;
}
#cboxLoadingGraphic {
	background:url(/img/colorbox/loading.gif) no-repeat center center;
}
#cboxClose {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
	text-indent: -9999px;
    outline: none;
	position: absolute;
	left: 50%;
	bottom: -51px;
	width: 30px;
	height: 30px;
	margin-left: -15px;
	background-image: url(/img/colorbox/btn_close.svg);
	background-position: center;
	background-size: contain;
	opacity: 0.6;
}
@media screen and (max-width: 670px) {
	#cboxClose {
	    bottom: -36px;
		width: 22px;
		height: 22px;
		margin-left: -11px;
	}
}
#cboxClose:hover {
	opacity: 0.4;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 others
-----------------------------------------------------------
----------------------------------------------------------- */
#colorbox{
	box-sizing: border-box !important;
}
#colorbox,
#colorbox #cboxOverlay,
#colorbox #cboxWrapper {
	overflow: visible !important;
}