<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =========================
   �앹뾽 �щ씪�대뜑 Swiper + 踰꾪듉 湲곕컲 �ㅽ���
   ========================= */

/* �대몢�� 諛곌꼍 dim 泥섎━ */
.popup-dimmed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* �앹뾽 �щ씪�대뜑 以묒븰 諛곗튂 */
.popUpSwiper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 500px;
  max-width: 90vw;
}

/* �앹뾽 �щ씪�대뜑 諛뺤뒪 */
.popup-container {
  box-sizing: border-box;
  background: white;
  border-radius: 10px;
  overflow: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-width: 90vh;
  max-height: 90vh; 
  padding: 20px 0 20px;
}

/* �щ씪�대뜑 湲곕낯 援ъ“ */
.swiper {
  width: 100%;
  overflow: visible;
}

.swiper-wrapper {
  overflow: visible;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

/* �앹뾽 蹂몃Ц */
.boxPopupSwiper {
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* 踰꾪듉 �섎떒 �곸뿭 */
.button-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 12px;
  gap: 10px;
}

/* 怨듯넻 踰꾪듉 �ㅽ��� */
.button-footer button {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  background-color: #0087B8;
}

.button-footer button:hover {
  background-color: #e0e0e0;
}

/* Swiper �ㅻ퉬寃뚯씠�� �붿궡�� �꾩튂 議곗젙 */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  top: 50%;
  transform: translateY(-50%);
  caret-color: transparent;
  user-select: none;
}

.swiper-button-prev {
	left: -40px
}

.swiper-button-next {
	right: -40px
}

/* 紐⑤컮�� ���� */
@media (max-width: 480px) {
  .button-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button-footer button {
    width: 100%;
  }
}</pre></body></html>