.banner-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 600;
  background: linear-gradient(90deg, #DC0089, #554596, #058AD7, #0BE0B4);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .banner-top {
    justify-content: center;
    font-size: 1rem;
  }
}

.banner-top__content {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}
@media (min-width: 888px) {
  .banner-top__content {
    flex: 0 1 auto;
    text-align: center;
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
  }
}

.banner-top__btn {
  display: inline-block;
  padding: 0.2rem 1rem 0.23rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.banner-top__btn:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

body.has-banner .main-content {
  padding-top: var(--banner-height, 50px);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}
.popup-overlay.is-visible .popup {
  transform: scale(1);
}

.popup {
  position: relative;
  max-width: 640px;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.popup__close {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.75rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.popup__close:hover {
  color: #fff;
}

.popup__img-link {
  display: block;
  line-height: 0;
}

.popup__img {
  width: 100%;
  height: auto;
  display: block;
}
/*# sourceMappingURL=banner.css.map */