/* Additional Breakpoints */
/*
* Colors
*/
/*
* Transitions
*/
/*
* Layouts
*/
/*
* Fonts
*/
.kit-popup-card__popup {
  cursor: pointer;
}
.kit-popup-card__popup-image {
  overflow: hidden;
}
.kit-popup-card__popup-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.kit-popup-card__popup--title {
  margin: 15px 0;
}
.kit-popup-card__popup-content {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 100px);
  min-height: 500px;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 61.99em) {
  .kit-popup-card__popup-content {
    top: 0;
    left: 0;
    transform: translateX(0);
    border-radius: 0;
    max-height: 100vh;
    flex: 100%;
    min-height: 100vh;
  }
}
.kit-popup-card__popup-content figure {
  max-width: 100% !important;
}
.kit-popup-card__popup-content.active {
  opacity: 1;
  visibility: visible;
}
.kit-popup-card__popup-content .contact-form__page-title {
  margin-bottom: 50px;
}
.kit-popup-card__popup-content .total-price {
  text-align: right;
  margin-top: 50px;
}
.kit-popup-card__popup-content-close {
  text-align: right;
  text-align: right;
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  background: #fff;
  cursor: pointer;
}
.kit-popup-card__popup-content-inner {
  height: 100%;
  max-height: calc(100vh - 100px);
  min-height: 500px;
  overflow-y: auto;
  padding: 20px;
}
@media (max-width: 61.99em) {
  .kit-popup-card__popup-content-inner {
    max-height: 100vh;
    min-height: 100vh;
  }
}
.kit-popup-card__popup-content-inner-title {
  margin-bottom: 20px;
  text-align: center;
}
.kit-popup-card__popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}
.kit-popup-card__popup-overlay.active {
  display: block;
}
