.adflyer-container {
  position: fixed;
  left: 0;
  z-index: 9999;
  overflow: visible;
  pointer-events: none;
  will-change: transform;
}

.adflyer-container.is-hidden {
  display: none;
}

.adflyer-container.zone-top {
  top: 90px;
}

.adflyer-container.zone-middle {
  top: 45vh;
}

.adflyer-container.zone-bottom {
  bottom: 90px;
  top: auto;
}

.plane-banner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
}

.plane-icon {
  width: 190px;
  height: auto;
  margin-right: 12px;
  z-index: 2;
}

.connector {
  width: 70px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #111, #111 6px, transparent 6px, transparent 12px);
  margin-right: 12px;
}

.banner-text {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  padding: 18px 28px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.banner-image {
  max-height: 260px;
  max-width: min(60vw, 520px);
  width: auto;
  background: #fff;
  border: 2px solid #111;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  padding: 6px;
}

@keyframes fly-across-rtl {
  0% {
    transform: translateX(105vw);
  }

  100% {
    transform: translateX(calc(-100vw - 100%));
  }
}
