/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 13 2026 | 17:08:22 */
/* Overlay dims the background */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: start;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
/* The popup box itself */
#popup-box {
  top: 90px;
  background: #0063a0;
  max-width: 420px;
  width: 90%;
  padding: 30px 15px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.25s ease;
}
#popup-overlay.visible #popup-box {
  transform: translateY(0);
}
#popup-message {
  margin: 0;
  font-size: 22px;
  line-height: 1.3em;
  color: #fff;
}
#popup-message span {
  font-size: 32px;
  line-height: 1.5em;
}
#popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  padding: 4px;
  transition: ease-in-out 0.3s;
}
#popup-close:hover {
  color: #8d8d8d;
}
