<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.boeki-popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 0 15px;
}

.boeki-popup-container .boeki-popup {
  position: relative;
  background: #fff;
  padding: 35px 20px 20px 20px;
  border-radius: 8px;
  max-height: 90vh;
  overflow-y: auto;
}

.boeki-popup-container .boeki-popup .close-arrow {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}


.boeki-popup-container .boeki-popup .close-arrow .line1,
.boeki-popup-container .boeki-popup .close-arrow .line2 {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  top: 50%;
}

.boeki-popup-container .boeki-popup .close-arrow .line1 {
  transform: rotate(45deg);
}

.boeki-popup-container .boeki-popup .close-arrow .line2 {
  transform: rotate(-45deg);
}

.boeki-popup-container .boeki-popup.design-text {
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.boeki-popup-container .boeki-popup.design-text a,
.boeki-popup-container .boeki-popup.design-text p {
  color: #666;
  line-height: 1.6;
}

.boeki-popup-container .boeki-popup.design-text .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.boeki-popup-container .boeki-popup.design-text .content {
  margin: 0 0 25px 0 !important;
}

.boeki-popup-container .boeki-popup.design-text .buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.boeki-popup-container .boeki-popup.design-text .buttons span,
.boeki-popup-container .boeki-popup.design-text .buttons a {
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.boeki-popup-container .boeki-popup.design-text .buttons #confirm {
  background-color: #4CAF50;
  color: white;
}

.boeki-popup-container .boeki-popup.design-text .buttons .close {
  background-color: #f44336;
  color: white;
}

.boeki-popup-container .boeki-popup.design-image {
  width: 80%;
  padding: 0;
}

.boeki-popup-container .boeki-popup.open {
  animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 1024px) {
  .boeki-popup-container .boeki-popup.design-text {
    width: 25%;
  }
  .boeki-popup-container .boeki-popup.design-image {
    width: 50%;
  }
}
</pre></body></html>