html.spopup-lock,
html.spopup-lock body {
  overflow: hidden !important;
  max-height: 100%; }

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px; }
  .site-popup.is-open {
    display: flex; }
  .site-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    animation: sp-fade 0.25s ease; }
  .site-popup__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: sp-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
  .site-popup__wrap-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    text-indent: -9999px;
    overflow: hidden; }
  .site-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    appearance: none;
    background: rgba(255, 255, 255, 0.94);
    color: #373737;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease; }
    .site-popup__close svg {
      display: block;
      flex: 0 0 auto;
      width: 20px;
      height: 20px;
      overflow: visible;
      fill: currentColor; }
    .site-popup__close svg path {
      fill: currentColor; }
    .site-popup__close:hover, .site-popup__close:focus-visible {
      background: #fff;
      transform: scale(1.05); }
  .site-popup__card {
    position: relative;
    z-index: 0;
    display: flex;
    min-height: 100%; }
  .site-popup__media {
    flex: 1 1 50%;
    min-height: 220px; }
    .site-popup__media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .site-popup__body {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .site-popup__heading {
    margin: 0 0 15px;
    color: #373737; }
  .site-popup__content {
    color: #373737; }
    .site-popup__content p:last-child {
      margin-bottom: 0; }
  .site-popup__cta {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    background: #49a785;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    transition: opacity 0.2s ease; }
    .site-popup__cta:hover, .site-popup__cta:focus-visible {
      opacity: 0.9; }
  .site-popup__dialog--img-right .site-popup__card {
    flex-direction: row-reverse; }
  .site-popup__dialog--img-top .site-popup__card {
    flex-direction: column; }
  .site-popup__dialog--img-top .site-popup__media {
    position: relative;
    flex: none;
    width: 100%;
    min-height: 0;
    overflow: hidden; }
    .site-popup__dialog--img-top .site-popup__media img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .site-popup__dialog--img-top.site-popup__dialog--ratio-3-1 .site-popup__media {
    aspect-ratio: 3 / 1; }
  .site-popup__dialog--img-top.site-popup__dialog--ratio-21-9 .site-popup__media {
    aspect-ratio: 21 / 9; }
  .site-popup__dialog--img-top.site-popup__dialog--ratio-16-9 .site-popup__media {
    aspect-ratio: 16 / 9; }
  .site-popup__dialog--anchor-center-center .site-popup__media img {
    object-position: center center; }
  .site-popup__dialog--anchor-top-left .site-popup__media img {
    object-position: left top; }
  .site-popup__dialog--anchor-top-center .site-popup__media img {
    object-position: center top; }
  .site-popup__dialog--anchor-top-right .site-popup__media img {
    object-position: right top; }
  .site-popup__dialog--anchor-center-left .site-popup__media img {
    object-position: left center; }
  .site-popup__dialog--anchor-center-right .site-popup__media img {
    object-position: right center; }
  .site-popup__dialog--anchor-bottom-left .site-popup__media img {
    object-position: left bottom; }
  .site-popup__dialog--anchor-bottom-center .site-popup__media img {
    object-position: center bottom; }
  .site-popup__dialog--anchor-bottom-right .site-popup__media img {
    object-position: right bottom; }
  .site-popup__dialog--img-full .site-popup__card {
    display: block; }
  .site-popup__dialog--img-full .site-popup__media {
    flex: none;
    min-height: 0;
    max-height: none; }
    .site-popup__dialog--img-full .site-popup__media img {
      width: 100%;
      height: auto; }
  @media (max-width: 768px) {
    .site-popup__card, .site-popup__dialog--img-right .site-popup__card {
      flex-direction: column; }
    .site-popup__dialog--img-left.site-popup__dialog--ratio-3-1 .site-popup__media,
    .site-popup__dialog--img-right.site-popup__dialog--ratio-3-1 .site-popup__media,
    .site-popup__dialog--img-top.site-popup__dialog--ratio-3-1 .site-popup__media {
      aspect-ratio: 3 / 1; }
    .site-popup__dialog--img-left.site-popup__dialog--ratio-21-9 .site-popup__media,
    .site-popup__dialog--img-right.site-popup__dialog--ratio-21-9 .site-popup__media,
    .site-popup__dialog--img-top.site-popup__dialog--ratio-21-9 .site-popup__media {
      aspect-ratio: 21 / 9; }
    .site-popup__dialog--img-left.site-popup__dialog--ratio-16-9 .site-popup__media,
    .site-popup__dialog--img-right.site-popup__dialog--ratio-16-9 .site-popup__media,
    .site-popup__dialog--img-top.site-popup__dialog--ratio-16-9 .site-popup__media {
      aspect-ratio: 16 / 9; }
    .site-popup__dialog--img-left .site-popup__media,
    .site-popup__dialog--img-right .site-popup__media,
    .site-popup__dialog--img-top .site-popup__media {
      position: relative;
      flex: none;
      width: 100%;
      min-height: 0;
      max-height: none;
      overflow: hidden; }
      .site-popup__dialog--img-left .site-popup__media img,
      .site-popup__dialog--img-right .site-popup__media img,
      .site-popup__dialog--img-top .site-popup__media img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    .site-popup__body {
      padding: 30px 24px; } }

@keyframes sp-fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes sp-pop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98); }
  to {
    opacity: 1;
    transform: translateY(0) scale(1); } }
@media (max-width: 768px) {
  .site-popup__dialog--img-full .site-popup__media {
    aspect-ratio: auto;
    max-height: none; }
  .site-popup__dialog--img-full .site-popup__media img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain; } }
