.newsletterModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  visibility: none;
  transition: 0.5s ease-in-out;
  will-change: opacity;
}
.newsletterModal.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.newsletterModal button {
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 450px) {
  .newsletterModal {
    zoom: 0.65;
  }
  .newsletterModal .formCell {
    padding-bottom: 0px;
  }
  .newsletterModal label {
    line-height: 1;
  }
  .newsletterModal h1 {
    font-size: 20px;
    padding: 10px 10px;
    margin-bottom: 10px;
  }
  .newsletterModal .newsletter {
    margin: 0;
    margin-bottom: 10px;
  }
  .newsletterModal .form-group {
    margin-bottom: 0.5rem;
  }
}
.newsletterModal .modalOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: 0.5s ease-in-out;
}
.newsletterModal .modalContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  padding: 10px;
  width: 95%;
  max-width: 800px;
  background: #fff;
  max-height: 100%;
}
.newsletterModal .modalContent .scroll {
  height: 100%;
  max-height: 750px;
  overflow-y: auto;
  width: 100%;
}
.newsletterModal .modalContent h3 {
  text-align: center;
  font-family: Baileys Drizzle, "sans-serif";
}
.newsletterModal .modalContent p {
  text-align: center;
}
.newsletterModal .modalContent label {
  text-align: left !important;
}
.newsletterModal .modalContent .small {
  text-align: left;
  font-size: 10px;
}
.newsletterModal .modalContent .small a {
    color: #000;
    text-decoration: underline;
}
.newsletterModal .modalContent .modalClose {
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 24px;
  background: transparent;
  appearance: none;
  border: none;
  cursor: pointer;
  z-index: 1000000;
}

.es-co .newsletterModal .form-check {
    margin-bottom: 10px;
}

.es-co .newsletterModal .form .btn {
    margin-top: 20px;
}

/* for 150%+ */
@media only screen and (min-resolution: 120dpi) and (min-resolution: 1.5dppx) and (pointer: fine) {
    .newsletterModal .modalContent {
        overflow-y: scroll;
    }
}