#card {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
}
#card .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
}
#card .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  /* width: 750px; */
  width: 1190px;
  height: 1000px;
  min-height: 200px;
  z-index: 1;
}
#card .exit {
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  padding: 18px;
  cursor: pointer;
  z-index: 2;
  opacity: 0.4;
}
#card .popup-content .card-swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1e1f1f;
  overflow: hidden;
}
#card .popup-content .card-swiper-container .swiper-wrapper {
}
#card .popup-content .card-swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1e1f1f;
}
#card .popup-content .card-swiper-container .swiper-wrapper .swiper-slide img {
  /* width: 100%; */
  height: 100%;
}
#card .popup-content .card-swiper-container .swiper-pagination-bullet-active {
  background: white;
}
#card .swiper-arrow.swiper-button-prev {
  left: 25px;
}
#card .swiper-arrow.swiper-button-next {
  right: 25px;
}
#card .swiper-arrow {
  background-image: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 80px;
  margin-top: -40px;
}
#card .swiper-arrow i {
  font-size: 45px;
  color: #ffffff;
  opacity: 0.4;
}

#card .thumb-slide {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* width: 1190px; */
  width: 675px;
  margin: 0 auto;
}
#card .thumb-slide .swiper-slide{
  opacity: 0.2;
  transition: opacity 0.2s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
}
#card .thumb-slide .swiper-slide::before{
  content: '';
  display: inline-block;
  margin-top: 100%;
}
#card .thumb-slide .swiper-slide:hover {
  opacity: 1;
}
#card .thumb-slide .swiper-slide-thumb-active{
  opacity: 1;
  border: 3px solid #6a0595;
}

/* #card .popup-content .thumb-slide .swiper-slide img{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
} */

/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 450px) {
  #card .submit {
    display: block;
  }

  #card .popup-content {
    width: 98%;
  }
}
/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {
}
/* PC */
@media screen and (min-width: 1024px) {
}

#card video {
  width: 100%;
}