.dialog-backdrop {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  z-index: 9999;
}

.dialog-content {
  background: #1a1a1a;
  padding: 10px;
  z-index: 9999;
  position: fixed;
  width: calc(100vw - 50px);
  max-height: 95vh;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.dialog-content p {
  line-height: 1.5;
}

@media (min-width: 930px) {
  .dialog-content {
    width: 90%;
  }
}

.dialog-content > .popup__close {
  width: 30px;
  height: 30px;
  background: url("../../../../themes/asetek-v2/dist/ico-x-white-bfb76bd5.svg") no-repeat center/21px auto;
  fill: #fff !important;
  display: block;
  margin-bottom: 5px;
  float: right;
}

.dialog-content > iframe {
  z-index: 9999;
  background-color: #fff !important;
  height: 100vh;
  min-height: 600px;
  max-height: 100%;
}

.product .swiper-slide {
  height: auto;
}

.product .slider__thumbs .swiper-slide img {
  height: 100%;
  object-fit: contain;
}

.dialog-content > .actions {
  margin-top: 20px;
}

.dialog-content > .actions > button {
  width: 49%;
  margin-right: 5px;
}

.dialog-content > .actions > button.configurator-continue {
  text-align: center;
  background: #E52421;
  color: #fff;
}

.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-align: center;
  padding: 9px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  justify-content: center;
  cursor: pointer;
}

.checkout-confirm {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-align: center;
  background: #E52421;
  padding: 10px 40px;
  border: 1px solid #E52421;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  transition: background,border-color,color;
  transition-duration: 0s, 0s, 0s;
  transition-duration: .4s;
  justify-content: center;
  cursor: pointer;
}