.popup-cta {
  display: none;
}
.popup-cta.is-open {
  display: block;
}
.popup-cta__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}
.popup-cta[aria-hidden=false] .popup-cta__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.popup-cta[aria-hidden=true] .popup-cta__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.popup-cta__container {
  background-color: var(--green);
  padding: 4rem 1.5rem 2rem;
  width: calc(100vw - 2rem);
  max-width: 40rem;
  max-height: 100vh;
  overflow-y: auto;
  color: var(--white);
  text-align: center;
  will-change: transform;
}
@media only screen and (min-width: 768px) {
  .popup-cta__container {
    max-width: 640px;
    padding: 3rem 1rem;
  }
}
.popup-cta[aria-hidden=false] .popup-cta__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.popup-cta[aria-hidden=true] .popup-cta__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.popup-cta__title {
  font-family: Reader;
  --mb: 1.875rem;
  font-size: 1.375rem;
  letter-spacing: 0.5px;
  line-height: 1.875rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .popup-cta__title {
    --mb: 2.625rem;
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
.popup-cta__close {
  background: transparent;
  border: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  .popup-cta__close {
    cursor: pointer;
  }
}
.popup-cta__close svg {
  pointer-events: none;
}
.popup-cta__content {
  font-family: Reader;
  --mb: 1.3125rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 1.3125rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
}
@media only screen and (min-width: 768px) {
  .popup-cta__content {
    --mb: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.popup-cta .button-large {
  border-color: var(--white);
  width: 100%;
  max-width: 28rem;
}
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
