/* Template: Διακοπές — /include/pop-ups-lib/diakopes.css */
html.vac-popup-open,
html.vac-popup-open body {
  overflow: hidden;
}
.vac-popup[hidden] {
  display: none !important;
}
.vac-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.vac-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 16, 12, 0.62);
  backdrop-filter: blur(2px);
}
.vac-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 197, 24, 0.28) 0%, transparent 55%),
    linear-gradient(165deg, #fffef8 0%, #fff8eb 48%, #f4ebe0 100%);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 20px;
  padding: 44px 40px 40px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  text-align: center;
  animation: vacPopupIn 0.35s ease-out;
}
@keyframes vacPopupIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.vac-popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0;
  transition: color 0.15s ease, background 0.15s ease;
}
.vac-popup__close:hover {
  color: #A52A2A;
  background: #fff;
}
.vac-popup__icon {
  margin: 0 0 16px;
  line-height: 1;
}
.vac-popup__icon .fa {
  font-size: 78px;
  color: #f0b400;
  text-shadow:
    0 0 24px rgba(245, 197, 24, 0.55),
    0 4px 0 rgba(200, 140, 0, 0.18);
}
.vac-popup__title {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #2a211c;
  font-weight: 700;
}
.vac-popup__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #4a403a;
}
.vac-popup__text strong {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  color: #A52A2A;
}
@media (max-width: 480px) {
  .vac-popup__dialog {
    padding: 36px 22px 30px;
    border-radius: 16px;
  }
  .vac-popup__icon .fa {
    font-size: 64px;
  }
  .vac-popup__title {
    font-size: 24px;
  }
  .vac-popup__text {
    font-size: 15px;
  }
}
