@charset "UTF-8";
/*-------------------------------------------------

Title       : 모달팝업 전용
Author      : EASESOFT
Create Date : 2024-07

-------------------------------------------------*/
/* 모달팝업 */
#modal .open_btn .btn_modal {
  position: relative;
}
#modal .open_btn .btn_modal em {
  font-size: 0;
}
#modal .open_btn .btn_modal em::before {
  content: "\ef92";
  font-family: "remixicon";
  font-size: 3rem;
}
#modal .open_btn .btn_modal .count {
  position: absolute;
  left: 0;
  top: 3px;
  background-color: #FB3BA8;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  font-size: 0;
}
#modal .slick-autoplay-toggle-button {
  display: none;
}
#modal .group {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#modal .group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
#modal .group .modal {
  position: relative;
  z-index: 1;
  width: 140rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
  transition: all 0.2s;
}
#modal .group .modal .title {
  margin-bottom: 5rem;
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  word-break: keep-all;
  word-wrap: break-word;
}
#modal .group .modal .blank {
  margin: 10rem 0;
  color: #fff;
  text-align: center;
}
#modal .group .modal .list {
  max-width: 111rem;
  margin: 0 auto;
}
#modal .group .modal .list .slick-list .slick-slide {
  margin: 0 10px;
}
#modal .group .modal .list .slick-list .img {
  max-width: 100%;
  margin: 0 auto;
  display: flex !important;
  justify-content: center;
}
#modal .group .modal .list .slick-list .img img {
  max-height: 60vh;
}
#modal .group .modal .control_box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}
#modal .group .modal .control_box .paging {
  margin: 0 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#modal .group .modal .control_box .paging span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
#modal .group .modal .control_box .paging em {
  color: #fff;
  font-weight: 600;
  font-size: 60%;
}
#modal .group .modal .control_box .paging .this {
  color: #ff5882;
  font-weight: 700;
}
#modal .group .modal .control_box button {
  font-size: 0;
}
#modal .group .modal .control_box button::before {
  font-family: "remixicon";
  font-size: 2.5rem;
  color: #fff;
}
#modal .group .modal .control_box button.prev {
  order: -1;
}
#modal .group .modal .control_box button.prev::before {
  content: "\ea64";
}
#modal .group .modal .control_box button.next::before {
  content: "\ea6e";
}
#modal .group .modal .control_box button.play::before {
  content: "\f00a";
}
#modal .group .modal .control_box button.pause::before {
  content: "\efd8";
}
#modal .group .modal .item {
  font-size: 1.4rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#modal .group .modal .item .label,
#modal .group .modal .item .control.close {
  display: inline-block;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 3rem;
  background-color: #000;
  color: #fff;
  line-height: 3rem;
}
#modal .group .modal .item .label .count,
#modal .group .modal .item .control.close .count {
  font-weight: 700;
  color: #ff5882;
}
#modal.active .group {
  opacity: 1;
  visibility: visible;
}

/*-------------------------------------------------

Responsive

-------------------------------------------------*/
/* Media Query */
@media (max-width: 1024px) {
  #modal .group .modal .list {
    max-width: 90%;
  }
  #modal .group .modal .list .img {
    min-width: auto;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  #modal .group .modal .title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  #modal .group .modal .list {
    max-width: 100%;
  }
  #modal .group .modal .slick-list {
    overflow: visible;
  }
  #modal .group .modal .slick-slide {
    margin: 0;
  }
  #modal .group .modal .item {
    gap: 0.5rem;
  }
  #modal .group .modal .item .label,
  #modal .group .modal .item .control.close {
    padding: 0 1rem;
    font-size: 1.2rem;
  }
}