<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.popup-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  transition: all 700ms ease;
}

.popup-overlay.active {
  opacity: 1;
  z-index: 100;
}

.popup-container {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 50px));
  color: #fff;
  padding: 0;
  box-shadow: 0 6px 55px -10px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: all 700ms ease;
  height: 80vh;
  width: 80vh;
}

.popup-container .content {
  background-size: cover;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  display: block;
}

.popup-container .bottom {
  background-color: #00963a;
  color: #fff;
  padding: 20px;
  text-align: center;
}


.popup-overlay.active .popup-container {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}

.popup-overlay.active .left .bg-1,
.popup-overlay.active .left .bg-2 {
  transform: translateX(0);
}

.popup-container,
.popup-container * {
  box-sizing: border-box;
}

.popup-container .right {
  width: 100%;
  padding: 16px;
  position: absolute;
  top: 0;
}

.popup-container .skip-button {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #000;
  padding: 2px 6px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
}


.popup-container .hero-image-small {
  display: none;
}

@media (max-width: 560px) {

  .popup-container {
    padding: 0;
    width: 100%;
    height: 55%;
  }
}
</pre></body></html>