@-webkit-keyframes modalFadeIn {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes modalFadeIn {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.banner-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  padding: 16px;
  overflow: auto;
}
.banner-popup .alignleft, .banner-popup .alignright, .banner-popup .aligncenter {
  float: none;
  margin: 0 !important;
}
.banner-popup--corner {
  pointer-events: none;
}
.banner-popup--corner .banner-popup__content {
  pointer-events: all;
}
.banner-popup--standard {
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-popup--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-popup__content {
  margin: auto;
  position: relative;
  max-width: calc(100% - 32px);
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.3s ease-in-out 0.2s, -webkit-transform 0.3s ease-in-out 0.1s;
  transition: opacity 0.3s ease-in-out 0.2s, -webkit-transform 0.3s ease-in-out 0.1s;
  -o-transition: opacity 0.3s ease-in-out 0.2s, transform 0.3s ease-in-out 0.1s;
  transition: opacity 0.3s ease-in-out 0.2s, transform 0.3s ease-in-out 0.1s;
  transition: opacity 0.3s ease-in-out 0.2s, transform 0.3s ease-in-out 0.1s, -webkit-transform 0.3s ease-in-out 0.1s;
}
.banner-popup__content--show {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.banner-popup__content-inner {
  border-radius: 16px;
  overflow: hidden;
}
.banner-popup__close {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 16px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  line-height: 24px;
  cursor: pointer;
  color: #151522;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.banner-popup__headline {
  margin: 0 0 24px;
  text-align: center;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.25px;
  color: #1f2c47;
  font-family: Montserrat, sans-serif;
}
.banner-popup__subheadline {
  text-align: center;
  display: block;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.23px;
  color: #1e2945;
  font-family: Montserrat, sans-serif;
}
.banner-popup--bottom-right-corner .banner-popup__content {
  margin: auto 0 0 auto;
}
.banner-popup--bottom-left-corner .banner-popup__content {
  margin: auto auto 0 0;
}
.banner-popup--form .banner-popup__content {
  width: 416px;
  max-width: 100%;
}
.banner-popup--form .banner-popup__content-inner {
  background-color: #fafbfc;
}
.banner-popup__content-main {
  background: #fff;
  padding: 54px 44px 30px;
  position: relative;
  border-radius: 16px;
  -webkit-box-shadow: 0 11px 15px -7px rgba(21, 21, 34, 0.02), 0 9px 46px 8px rgba(21, 21, 34, 0.06), 0 24px 38px 3px rgba(21, 21, 34, 0.02);
          box-shadow: 0 11px 15px -7px rgba(21, 21, 34, 0.02), 0 9px 46px 8px rgba(21, 21, 34, 0.06), 0 24px 38px 3px rgba(21, 21, 34, 0.02);
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.25px;
  color: #151522;
}
.banner-popup__footer {
  padding: 24px 32px 16px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  position: relative;
}
.banner-popup__footer a {
  text-decoration: underline;
  color: inherit;
}

.banner-is-visible {
  overflow: hidden;
}

/*# sourceMappingURL=blog-banners-public.css.map*/