/*--------------------------------------------------------------
>>> Animation
--------------------------------------------------------------*/
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@-webkit-keyframes CtazoomIn {
  0% {
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale3d(0.85, 0.85, 0.85);
            transform: scale3d(0.85, 0.85, 0.85);
    opacity: 1;
  }
}

@keyframes CtazoomIn {
  0% {
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale3d(0.85, 0.85, 0.85);
            transform: scale3d(0.85, 0.85, 0.85);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes CtaSpin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes CtaSpin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes moveToLeft {
  100% {
    left: 2rem;
  }
}

@keyframes moveToLeft {
  100% {
    left: 2rem;
  }
}

/*--------------------------------------------------------------
>>> popup
--------------------------------------------------------------*/
.popup-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.popup-wrapper.show {
  opacity: 1;
  visibility: visible;
  z-index: 1002;
  -webkit-transition: none;
  transition: none;
}

.popup-wrapper.show .popup {
  -webkit-animation: zoomIn .5s ease-out;
          animation: zoomIn .5s ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.popup--normal .popup {
  width: auto;
  max-width: 92%;
  max-width: 56rem;
  background: #fff;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0.125rem 0.625rem 0.4375rem rgba(0, 0, 0, 0.2);
          box-shadow: 0.125rem 0.625rem 0.4375rem rgba(0, 0, 0, 0.2);
  max-height: 85%;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.popup-header {
  position: relative;
}

.popup__subtitle {
  font-size: .875rem;
  font-weight: 400;
}

.popup__title {
  font-size: 1.25rem;
  font-weight: 400;
  margin: .5rem 0 .75rem;
}

.popup--normal .close-btn {
  position: absolute;
  cursor: pointer;
  right: -1rem;
  top: -1rem;
  background: #E4E6EB;
  border-radius: 50%;
  width: 2.1875rem;
  height: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: .35rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .25s;
  transition: all .25s;
}

.close-btn:hover {
  background: #d0d1d3;
}

.popup__image {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  max-width: 60%;
}

.popup__content {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  max-width: 40%;
  padding-left: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.popup-contents {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.popup__cta {
  text-align: center;
}

.popup-content-inner,
.popup-content-inner a {
  display: -ms-grid;
  display: grid;
}

.popup-content-inner img {
  max-height: 80vh;
}

/* CTA */
.cta-btn {
  height: 2.5rem;
  background: #066836;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 2rem;
  padding-left: 3rem;
  max-width: 20rem;
  margin: auto;
  position: fixed;
  bottom: 1rem;
  left: 45%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.cta-btn.show {
  z-index: 101;
  visibility: visible;
  -webkit-animation: fadeInUp .75s ease-in-out;
          animation: fadeInUp .75s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.cta__close {
  width: 1.5rem;
  height: 1.5rem;
  padding: .125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  right: -.5rem;
  top: -.5rem;
  z-index: 2;
  background: #d5d5d5;
  border-radius: 50%;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.cta__close img {
  width: 100%;
  height: 100%;
}

.cta__icon {
  width: 2rem;
  height: 2rem;
  border: .1rem solid #fff;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: .25rem;
}

.cta__title {
  color: #fff;
  font-size: .9375rem;
  margin-top: -.25rem;
}

.cta__icon img {
  border-radius: 50%;
}

@media screen and (min-width: 1024px) {
  .cta-btn.show.circle-cta {
    width: 2.5rem;
    max-width: 2.5rem;
    padding: 0;
    -webkit-transition: width 500ms ease-out,padding 500ms ease-out;
    transition: width 500ms ease-out,padding 500ms ease-out;
    -webkit-animation: fadeInUp 0ms, CtaSpin 200ms 5 ease-out 500ms, moveToLeft 1s ease-out 500ms;
            animation: fadeInUp 0ms, CtaSpin 200ms 5 ease-out 500ms, moveToLeft 1s ease-out 500ms;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .cta-btn.show.circle-cta .cta__title {
    display: none;
  }
  .cta-btn.show.circle-cta .cta__close {
    opacity: 0;
    -webkit-animation: CtazoomIn .25s ease-in-out 1.75s;
            animation: CtazoomIn .25s ease-in-out 1.75s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .cta-btn.show.circle-cta .cta__icon img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media screen and (max-width: 1023px) {
  .popup--normal .popup {
    max-width: 92%;
  }
  .post-details .cta__icon img {
    width: 100%;
    -webkit-transform: none;
            transform: none;
    position: static;
  }
}
/*# sourceMappingURL=popup-cta.css.map */