.newsletterPopUp {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.newsletterPopUp--close {
  cursor: pointer;
  position: absolute;
  color: var(--mainColor--black);
  z-index: 99;
}
@media all and (max-width: 768px) {
  .newsletterPopUp--close {
    top: 10px;
    right: 10px;
  }
}
@media all and (min-width: 768px) {
  .newsletterPopUp--close {
    top: 8px;
    right: 8px;
  }
}
.newsletterPopUp--close:before {
  color: var(--mainColor--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1;
  content: '\e616';
  font-family: 'luma-icons';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.newsletterPopUp .newsletterPage {
  width: clamp(364px, 70vw ,1300px);
  position: relative;
}
@media all and (max-width: 768px) {
  .newsletterPopUp .newsletterPage {
    margin: 0 24px;
  }
}
@media all and (min-width: 768px) {
  .newsletterPopUp .scg-msg {
    flex: 0 0 100%;
  }
}
.newsletterPopUp .scg-msg .message.success,
.newsletterPopUp .scg-msg .message.error {
  display: block !important;
}
