/*! Swipebox v1.4.4 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
/* 2021.10.14 수정 xetemplate */

/* 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: 0 !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  background-color: rgba(0,0,0,1);
  -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;
  top: 80px;
  bottom: 80px;
  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: 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: 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-bottom-bar {
	z-index: 999;
  opacity: 0;
}

#swipebox-top-bar {
  -webkit-transition: 0.5s;
          transition: 0.5s;
  position: absolute;
  left: 0;
  top: -80px;
  z-index: 999;
  width: 100%;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 160px, 0);
  transform: translate3d(0, 160px, 0);
  -moz-transform: translate3d(0, 160px, 0);
  -ms-transform: translate3d(0, 160px, 0);
  -o-transform: translate3d(0, 160px, 0);
}

/* Title */
#swipebox-title {
  display: block;
  font-size: 18px;
  margin: 0 auto;
  padding: 15px 10%;
  text-align: center;
  text-shadow: 1px 4px 8px rgba(0,0,0,.9);
  color: white !important;
}


#swipebox-bottom-bar.visible-bars {
  opacity: 1;
}

/* 슬라이더 숫자 표기 */
#swipebox-present-slide {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 48px;
  font-size: 13px;
  color: #cbcbcb;
}

/* Buttons */
#swipebox-arrows {
  z-index: 9999;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
#swipebox-link,
#swipebox-prev,
#swipebox-next,
#swipebox-close {
  display: inline-block;
  text-decoration: none !important;
  cursor: pointer;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background-repeat: no-repeat;
  border: 0 !important;
  background-color: #2b2b2b;
  background-size: 32px;
  background-position: center;
}
#swipebox-close {
  background-image: url(./img/close.png) !important;
  background-color: #3b3b3b;
}
#swipebox-prev,
#swipebox-next {
   -webkit-transition: 0.5s;
          transition: 0.5s;
}
#swipebox-prev {
  background-image: url(./img/left-arrow.png) !important;
}
#swipebox-next {
  background-image: url(./img/right-arrow.png) !important;
}
#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.5;
}
#swipebox-link {
  font-size: 0;
  background-image: url(./img/link.png) !important;
  background-color: #3b3b3b;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}
.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: $md-screen) {

}