.site-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.62);
}

.site-popup.is-visible {
  display: flex;
}

.site-popup__card {
  position: relative;
  width: fit-content;
  min-width: min(320px, calc(100vw - 40px));
  max-width: min(520px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  padding: 62px 44px 44px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.site-popup__close {
  position: absolute;
  top: 12px;
  right: 17px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #151515;
  font: 800 42px/38px "Nunito Sans", Arial, sans-serif;
  cursor: pointer;
}

.site-popup__content {
  color: #151515;
  font: 400 18px/1.4 "Nunito Sans", Arial, sans-serif;
  overflow-wrap: anywhere;
}

.site-popup__content > :first-child {
  margin-top: 0;
}

.site-popup__content > :last-child {
  margin-bottom: 0;
}

.site-popup__content img,
.site-popup__content table {
  max-width: 100%;
  height: auto;
}

.site-popup__content a {
  color: #318c37;
  text-decoration: underline;
}

.site-popup__content .text-tiny {
  font-size: 0.7em;
}

.site-popup__content .text-small {
  font-size: 0.85em;
}

.site-popup__content .text-big {
  font-size: 1.4em;
}

.site-popup__content .text-huge {
  font-size: 1.8em;
}

@media (max-width: 600px) {
  .site-popup {
    padding: 12px;
  }

  .site-popup__card {
    width: fit-content;
    min-width: min(280px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 54px 24px 30px;
    border-radius: 13px;
  }

  .site-popup__close {
    top: 8px;
    right: 10px;
  }

  .site-popup__content {
    font-size: 16px;
  }
}
