/* FORCE FLOAT ABOVE HOSTINGER LAYOUT */
.update-popup {
  position: fixed !important;

  top: 50vh !important;
  left: 50vw !important;

  transform: translate(-50%, -50%) !important;

  background: red !important;
  color: #00ffcc !important;

  padding: 25px 45px !important;
  border-radius: 12px !important;

  font-size: 22px !important;
  font-weight: bold !important;

  z-index: 999999 !important;

  opacity: 0;
  transition: opacity 0.6s ease;

  max-width: 80vw;

  pointer-events: none;
}

.update-popup.show {
  opacity: 1;
}

/* TICKER */
.popup-ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 320px;
}

.popup-ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: popupScroll 10s linear infinite;

  text-shadow:
    0 0 5px #00ffcc,
    0 0 10px #00ffcc,
    0 0 20px #00ffcc;
}

@keyframes popupScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
