/** Shopify CDN: Minification failed

Line 42:11 Expected ")" to end URL token

**/
.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.black_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-foreground));
  z-index: 9999;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition: all 0.8s ease-in-out;
}
.newsletter__popup {
  opacity: 0;
  position: fixed;
  top: 50%; /* Center vertically */
  left: 0;
  right: 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
  z-index: 99999;
  overflow: auto;
  box-sizing: border-box;
  background-image: linear-gradient(
      rgb(var(--color-background)),
      rgb(var(--color-background))
    ),
    url(var(--background-image));
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  transform: translateY(-50%); /* Adjust position based on its height */
  transition: all 0.8s ease-in-out;
}

.newsletter_close {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.newsletter__popup_image_section {
  padding: 0;
}

.newsletter__popup_image_section img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
}

.newsletter__popup_text_section,
.newsletter_logo_section {
  padding: 40px;
  text-align: var(--float-newsletter-popuptext-align);
}

.newsletter-popup-form__field-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .newsletter__popup {
    display: var(--show-newsletter-popup-on-mobile);
    top: 5%; /* Not centered on small screens */
    transform: translateY(5%); /* Disable vertical centering for mobile */
    width: 90%;
  }
}

.newsletter-form__message.success {
  color: green;
  font-weight: bold;
}
.newsletter-form__message.error {
  color: red;
  font-weight: bold;
}
