#card {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 200;
}
#card .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
#card .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 750px;
  min-height: 200px;
  z-index: 1;
}
#card .popup-content .exit {
  position: absolute;
  top: -66px;
  right: 0;
  width: 65px;
  padding: 10px;
  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%;
}
#card .swiper-arrow {
  background-image: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
#card .swiper-arrow i {
  font-size: 30px;
  color: white;
}

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

/* 모바일 */
@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) {
}
