body #newsletter .popup {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}
body #newsletter .popup .box {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80%;
  max-height: 600px;
}
body #newsletter .popup .box .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  padding: 6px;
  width: 30px;
  height: 30px;
  transform: translate(50%, -50%);
  overflow: hidden;
  border-radius: 50%;
  background-color: #ffff;
  cursor: pointer;
}
body #newsletter .popup .box .close img {
  display: block;
  width: 100%;
  height: 100%;
}
body #newsletter .popup .box .content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
body #newsletter .popup .box .content .newsletter__item {
  display: grid;
  padding: 0;
  overflow: auto;
  grid-template-areas: "img text text" "img form form";
  grid-template-columns: auto 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  background-color: rgba(157, 209, 216, 0.8);
}
body #newsletter .popup .box .content .newsletter__item .newsletter__img {
  grid-area: img;
  height: 100%;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
body #newsletter .popup .box .content .newsletter__item .newsletter__img img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body #newsletter .popup .box .content .newsletter__item .newsletter__txt {
  grid-area: text;
  padding: 20px;
}
body #newsletter .popup .box .content .newsletter__item .newsletter__form {
  grid-area: form;
}
body #newsletter .popup .box .content .newsletter__item .newsletter__form .ml-embedded {
  width: 100%;
}
@media (max-width: 992px) {
  body #newsletter .popup .box .content .newsletter__item {
    grid-template-areas: "img text" "form form";
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 765px) {
  body #newsletter .popup .box .content .newsletter__item {
    grid-template-areas: "text" "form";
    grid-template-columns: repeat(1, auto);
  }
  body #newsletter .popup .box .content .newsletter__item .newsletter__img {
    display: none;
  }
}
body #newsletter .popup:not(.--open) {
  display: none;
}
body #mlb2-17043497.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  border: solid 1px #000 !important;
}
/*# sourceMappingURL=newsletter.css.map */
