/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
/* IE8, 10 에서 라이트박스 문제 해결 */
@media screen\0 {
	body {
		word-wrap: inherit;
	}
}
/**/
html.swipebox-html body,
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
  height: auto !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;
      -ms-user-select: none;
          user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
          transition: transform 0.4s ease;
  left: 0;
  right: 0;
  top: 60px;
  bottom: 50px;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  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,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 90%;
  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: 15px;
  -webkit-box-sizing: border-box;
          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-slider .slide-loading {
  background: url(../img/loader.gif) no-repeat center center;
}



#swipebox-top-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
}
#swipebox-title {
	display: block;
	padding: 20px 15px 0;
	text-align: center;
}

#swipebox-bottom-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	text-align: center;
	height: 50px;
}
#swipebox-arrows {
  display: inline-block;
}
#swipebox-link {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -100px;
	z-index: 99999;
}
#swipebox-link > a {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	transition: opacity 0.33s ease-out;
	-moz-transition: opacity 0.33s ease-out;
	-webkit-transition: opacity 0.33s ease-out;
	color: #bbc4cc;
	background-image: url(../img/icons.png);
	background-repeat: no-repeat;
	background-size: 200px 50px;
	background-color: #181919;
}
#swipebox-prev,
#swipebox-next,
#swipebox-close {
	display: inline-block;
	float: left;
	font-size: 0;
	margin: 0;
	background-image: url(../img/icons.png);
	background-repeat: no-repeat;
	background-size: 200px 50px;
	background-color: #181919;
	border: none !important;
	text-decoration: none !important;
	cursor: pointer;
	width: 50px;
	height: 50px;
	transition: opacity 0.33s ease-out;
	-moz-transition: opacity 0.33s ease-out;
	-webkit-transition: opacity 0.33s ease-out;
}
#swipebox-link > a {
	background-position: 0;
	background-color: rgba(46,48,50,.5);
}
#swipebox-prev {
	background-position: -50px 0;
}
#swipebox-next {
	background-position: -100px 0;
}
#swipebox-close {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-right: -100px;
	z-index: 99999;
  	background-position: -150px 0;
  	background-color: rgba(46,48,50,.5);
}

@media (min-width: 992px) {
	#swipebox-slider {
	  top: 80px;
	  bottom: 100px;
	}
	#swipebox-top-bar {
		height: 60px;
	}
	#swipebox-title {
		padding: 30px 15px 0;
	}
	#swipebox-link {
		bottom: 20px;
		margin-left: -120px;
	}
	#swipebox-close {
		bottom: 20px;
		margin-right: -120px;
	}
	#swipebox-bottom-bar {
		height: 60px;
		bottom: 20px;
	}
	#swipebox-link > a,
	#swipebox-prev,
	#swipebox-next,
	#swipebox-close {
		width: 60px;
		height: 60px;
		background-size: 240px 60px;
	}
	#swipebox-link > a {
		background-position: 0;
	}
	#swipebox-prev {
		background-position: -60px 0;
	}
	#swipebox-next {
		background-position: -120px 0;
	}
	#swipebox-close {
	  	background-position: -180px 0;
	}
	#swipebox-arrows a:hover {
	  	opacity: 0.8;
	}
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

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

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
          animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
          animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
          box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
          box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
  }

  #swipebox-arrows {
   
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
  background: rgba(0,0,0,.95);
}

#swipebox-bottom-bar,
#swipebox-top-bar {
}

#swipebox-top-bar {
  color: #bbc4cc !important;
  font-size: 14px;
}
