/*******
	Breakpoints / Layout / Grid
********/
/*******
	Typography
********/
/*******
	Backgrounds
********/
/*********
	Elements
********/
/* Breakpoints START */
/* Breakpoints END */
/* Spacings START */
/* Spacings END */
/* Typography START */
/* Font size & lineheight END */
.site-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2509803922);
  z-index: 99;
  display: none;
}
.site-popup.show {
  display: block;
}
.site-popup__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e5e5d7;
  display: flex;
  flex-direction: column;
  padding: 50px;
  max-height: 80vh;
  overflow: auto;
  background-color: #378145;
  color: white;
  width: 80%;
  max-width: 1000px;
}
@media (min-width: 1024px) {
  .site-popup__inner {
    max-height: 500px;
  }
}
.site-popup__close {
  background-image: url(/SiteFiles/dist/images/icons/close--white.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.site-popup__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .site-popup__content {
    flex-direction: row;
  }
}
.site-popup__image {
  flex: 1 1 0;
  max-height: 400px;
}
.site-popup__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.site-popup__body-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.site-popup__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
}
.site-popup__text {
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0px;
  margin-bottom: 10px;
}