@charset "UTF-8";
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: #f2f2f2;
  padding: 30px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 300px;
  max-width: 400px;
}

#popupText {
  text-align: left;
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  font-family: 'Segoe UI', 'Noto Sans KR', sans-serif;
}

#popupClose {
  background-color: #747474;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Segoe UI', 'Noto Sans KR', sans-serif;
  float:right;
}
#loadingOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px; height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.b-space-btn-box ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.b-space-btn-box ul li {
  flex: 1;
  list-style: none;
}

.b-space-btn-box ul li:empty {
  display: none;
}
.b-space-img-box {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
}

.b-space-img-box img {
  flex: 0 0 100%;
  scroll-snap-align: center;
  object-fit: cover;
  border-radius: 6px;
}


.b-space-btn-box a.purple {
  background: linear-gradient(to right, #c2a3f2, #3b4f9f);
}

#popupClose:hover {
  background-color: #3a3a3a;
}

.inform-title .btn-popup-open {
  padding: 8px 1.5rem 7px;
  border: 1px solid var(--color125);
  border-radius: 9.9rem;
  background-color: var(--white100);
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--color125);
  line-height: 1;
  box-sizing: border-box;
  transition: 0.3s ease;
}

.inform-title .btn-popup-open:hover {
  background-color: var(--color125);
  color: var(--white100);
}

@media screen and (max-width: 1024.98px) {
    .pc-hide {
        display: none !important;
    }
    .inform-title .btn-popup-open {
      padding: 5px 1rem;
      font-size: 1.4rem;
    }
}
