/* Lock scroll when popup is open */
body.has-pop-up {
  overflow: hidden;
}

/* Fullscreen grey overlay */
.pop_up {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  background-color: rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  font-family: "Montserrat", serif;
}
.pop_up.is-visible {
  display: flex;
}
.pop_up-container {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  max-width: 70rem;
  width: 100%;
  max-height: 85vh;
  padding: 2.4rem 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  overflow-y: auto;
}
.pop_up-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .pop_up-container-wrapper {
    flex-direction: column;
  }
}
.pop_up-container-wrapper-texts {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.pop_up-container-wrapper-texts-headline h2 {
  font-size: 3.4rem;
  line-height: 1.3;
  margin: 0 0 1.2rem;
  text-align: center;
  text-decoration: underline;
}
.pop_up-container-wrapper-texts-subheadline p {
  margin: 0;
  text-align: center;
}
.pop_up-container-wrapper-texts-discount h2 {
  font-size: 3.1rem;
  text-align: center;
  margin: 1.5rem 0;
}
.pop_up-container-wrapper-texts-discount p {
  margin: 0;
  text-align: center;
}
.pop_up-container-wrapper-texts-urgency p {
  margin: 0 0 1.5rem;
  text-align: center;
}
.pop_up-container-wrapper-texts-button a {
  background-color: #ffd230;
  padding: 1rem;
  text-decoration: none;
  border-radius: 0.5rem;
  color: black !important;
  display: block;
  font-weight: 700;
  text-align: center;
}
.pop_up-container-wrapper-texts-button a:visited {
  color: black !important;
}
.pop_up-container-wrapper-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_up-container-wrapper-image img {
  max-width: 100%;
}
@media screen and (min-width: 750px) {
  .pop_up-container-wrapper-image #mobile {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pop_up-container-wrapper-image #desktop {
    display: none;
  }
}

/* Exit button (X) in top-right */
.pop_up-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem;
  color: #555;
  transition: color 0.15s ease;
}
.pop_up-close:hover {
  color: #000;
}

@media (max-width: 480px) {
  .pop_up-container {
    max-width: 400px;
    padding: 2rem 1.6rem;
    border-radius: 8px;
  }
  .pop_up-container-headline h2 {
    font-size: 1.8rem;
  }
  .pop_up-close {
    top: 0.6rem;
    right: 0.8rem;
  }
}/*# sourceMappingURL=lightbox-pop-up.css.map */