/* BASIC css start */
.popup_main {
  position: fixed;
  right: 70px;
  bottom: 110px;
  z-index: 9999;

  width: 399px;

  background: #fff;
  display: none;

  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.popup_main.active {
  display: block;
}

.popup_main > div {
  position: relative;
}

/* 정사각형 이미지 영역 */
.popup_main .swiper-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.popup_main .swiper-wrapper {
  padding: 0;
  margin: 0;
}

.popup_main .swiper-slide {
  list-style: none;
}

/* 이미지 꽉 채우기 */
.popup_main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 슬라이드 번호 */
.popup_count {
  position: absolute;
  right: 15px;
  top: 15px;

  padding: 4px 10px;

  border-radius: 20px;

  background: rgba(0,0,0,.45);

  color: #fff;

  font-size: 12px;
  font-weight: 600;

  z-index: 10;
}

/* 화살표 */
.popup_main .swiper-button-next,
.popup_main .swiper-button-prev {
  display: none;

  width: 15px;
  height: 28px;

  background-size: 100%;

  outline: none;
}

.popup_main .swiper-button-next:after,
.popup_main .swiper-button-prev:after {
  display: none;
}

.popup_main .swiper-button-prev {
  left: 24px;
  right: auto;

  background-image: url(http://dainpark06.cafe24.com/sunny/images/ico_mvleft.png);
}

.popup_main .swiper-button-next {
  right: 24px;
  left: auto;

  background-image: url(http://dainpark06.cafe24.com/sunny/images/ico_mvright.png);
}

/* 하단 버튼 */
.popup_main .btns {
  display: flex;

  height: 40px;

  background: #fff;

  border-top: 1px solid #eee;
}

.popup_main .btns a {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #333;

  font-size: 13px;

  text-decoration: none;
}

.popup_main .btns a:first-child {
  border-right: 1px solid #eee;
}
/* BASIC css end */

