.popin {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5215686275);
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
}
.popin__container {
  width: 50%;
  max-width: 600px;
  min-width: 300px;
  max-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.5882352941);
  position: relative;
}
.popin__media {
  width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
}
.popin__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% 25%;
     object-position: 20% 25%;
}
.popin__content {
  width: 100%;
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.popin__title {
  font-weight: 600 !important;
}
.popin__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
}
.popin__actions .button {
  width: 70%;
  padding: 0.25rem 0.5rem;
  min-width: auto;
  max-width: none;
  text-transform: uppercase;
}
.popin__disclaimer {
  color: var(--sfra-grey-04);
}
.popin__close-button {
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.popin__icon-close {
  width: 100%;
  height: 100%;
  position: relative;
}
.popin.ready {
  transform: translateY(0);
}

.newsletterWrapper.highlighted {
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0144c;
  padding: 1rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}

@media screen and (min-width: 1024px) {
  .popin__container {
    flex-direction: row;
  }
  .popin__media {
    flex: none;
    width: 50%;
    height: 100%;
  }
  .popin__content {
    padding: 1rem;
    width: 50%;
    height: 100%;
    flex: none;
  }
  .popin__close-button {
    height: 4rem;
    width: 4rem;
  }
}

/*# sourceMappingURL=/popin_newsletter.7ead87eb.css.map */