<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.popup_opened {
  overflow: hidden;
}
.popup_c {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  padding: 55px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 100;
  overflow-y: auto;
}
.popup_c::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 1000px;
  background: rgba(52, 52, 52, 0.8);
  opacity: 0.9;
}
.popup {
  width: 100%;
  max-width: 550px;
  background-color: #f5f5f3;
  position: relative;
  z-index: 2;
	border-radius:9px;
}
.popup .image_c {
  width: 100%;
  float: left;
}
.popup .image_c img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
	border-top-left-radius:9px;
	border-top-right-radius:9px;
}
.popup .content_c {
  width: 100%;
  float: left;
  box-sizing: border-box;
  padding: 40px 50px 20px;
}
.popup .title {
  width: 100%;
  float: left;
      font: 400 1.8rem / 110% Rufina, Georgia, serif;
    letter-spacing: 0;
    color: #343434;
  padding-bottom: 15px;
}
.popup .subtitle {
  width: 100%;
  float: left;
  font: 500 1rem/170% Outfit,'Trebuchet MS',sans-serif;
  color: ##343434;
  padding-bottom: 20px;
  position: relative;
}
.popup .text {
  width: 100%;
  float: left;
  padding-top: 20px;
  font: 300 1rem / 170% Outfit, Verdana, sans-serif;
    color: #343434;
}
.popup strong {
  font-weight: 500;
}
.popup .text ul {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.popup .text ul li {
  display: inline-block;
  width: 100%;
  position: relative;
  padding-left: 20px;
}
.popup .text ul li::after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #9AB56D;
}
.popup .line {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 15px;
  align-items: center;
}
.popup .price_c {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.popup .price_c .prefix {
  font: 300 1.125rem/170% Outfit,'Trebuchet MS',sans-serif;
  color: #9AB56D;
}
.popup .price_c .price {
  font: 500 2rem/170% Outfit,'Trebuchet MS',sans-serif;
  color: #9AB56D;
}
.popup .price_c .price &gt; span {
  position: relative;
}
.popup .popup_link {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 16px;
  text-align: center;
  font: 700 1rem/120% Rufina,Georgia,serif;
  text-decoration: underline;
  color: #FFF;
  background-color: #9AB56D;
  transition: background-color ease 0.7s;
  -webkit-transition: background-color ease 0.7s;
	border-radius:5px;
}
.popup .popup_link:hover, .popup .popup_link:focus {
  background-color: #9AB56D;
	text-decoration:none;
}
.popup .mention {
  width: 100%;
  float: left;
  padding-top: 35px;
  margin-left: -25px;
  font: 300 1.125rem/170% Outfit,'Trebuchet MS',sans-serif;
  color: #343434;
}
.close_popup {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -60px;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  width: 26px;
}
.close_popup img {
  width: 100%;
  height: auto;
}
@media(max-width: 800px) {
  .close_popup {
    right: -25px;
    width: 21px;
  }
}
@media(max-width: 650px) {
  .popup_c {
    padding: 35px 0;
  }
  .popup_c::after {
    min-height: 800px;
  }
  .popup {
    max-width: 300px;
  }
  .popup .content_c {
    padding: 50px 25px 20px;
  }
  .popup .text {
  
  }
  .popup .title {
    font-size: 1.2rem;
  }
  .popup .line {
    flex-direction: column;
  }
  .popup .price_c {
    width: 100%;
  }
  .popup .price_c .price {
    font-size: 1.125rem;
  }
  .popup .popup_link {
    width: 100%;
  }
  .popup .mention {
    padding-top: 15px;
    margin-left: 0;
  }
  .close_popup {
    top: -3px;
    right: 0;
  }
}</pre></body></html>