#pop-up-newsletter-container {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#mc-embedded-subscribe-form {
  background: #d0d0d0;
  width: calc( ((100vw - 105px) / 12) * 6 + (7px * 5) );
  padding: 7px;
  box-sizing: border-box;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  cursor: pointer;
}

.mc-submit-container {
  display: flex;
  justify-content: space-around;
}

.mc-field-group-header {
  display: flex;
  justify-content: space-between;
  line-height: .7;
}

.mc-field-group-header p {
  font-size: 30px;
}

.mc-fields {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-bottom: 21px;
}

.mce_inline_error {
  margin-top: 7px;
}

#mce-responses {
  margin-top: 21px;
}

.mc-fields input {
  width: 100%;
  padding: 4px 7px 5px;
  box-sizing: border-box;
}

.mc-fields input::placeholder {
  color: #d0d0d0;
}

#mc-embedded-subscribe {
  all: unset;
  text-decoration: underline;
}

.newsletter-close {
  cursor: pointer;
}

@media screen and (max-width: 820px) {
#mc-embedded-subscribe-form {
  width: calc(100vw - 28px);
}
}