.site-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
}
.site-popup.is-visible {
  display: flex;
}
.site-popup-container {
  position: relative;
  max-width: 780px;
  width: 92%;
}
.site-popup-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  background: #FFF;
  max-height: 90vh;
}
.site-popup-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.site-popup-image-col {
  flex: 0 0 44%;
  min-height: 320px;
  overflow: hidden;
}
.site-popup-image-col picture {
  display: block;
  height: 100%;
}
.site-popup-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.site-popup-content {
  flex: 1;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.site-popup-title {
  color: #7a3d30;
  text-transform: uppercase;
  margin-block: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 40px !important;
  line-height: 1.2 !important;
}
.site-popup-description {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.65;
}
.site-popup-description p {
  margin: unset;
}
.site-popup-description p:last-child {
  margin-bottom: 0;
}
.site-popup-btn {
  width: 100px;
  justify-content: center;
}
.site-popup-close-btn {
  position: absolute;
  top: -42px;
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  font-size: 1.25rem;
  color: #FFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
  z-index: 10;
}
.site-popup-close-btn:hover {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .site-popup {
    padding: 0 20px;
  }
  .site-popup-container {
    width: 100%;
  }
  .site-popup-wrapper {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-popup-inner {
    flex-direction: column;
  }
  .site-popup-image-col {
    flex: 0 0 auto;
    min-height: 220px;
    max-height: 240px;
  }
  .site-popup-content {
    padding: 24px 22px 22px;
  }
  .site-popup-title {
    font-size: 27px !important;
    margin: 0 0 14px;
  }
  .site-popup-description {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }
  .site-popup-close-btn {
    color: #FFF;
    top: -36px;
    font-size: 1.1rem;
  }
}
@media (max-width: 640px) and (max-height: 700px) {
  .site-popup {
    align-items: flex-start;
    padding-top: 50px;
  }
  .site-popup-container {
    max-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
  }
  .site-popup-wrapper {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .site-popup-image-col {
    min-height: 160px;
    max-height: 180px;
  }
}/*# sourceMappingURL=popup.min.css.map */