#price-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 350px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(180deg, #0d2a4b, #0a1e34);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  padding: 18px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 9999;
}

#price-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.price-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
}

.price-popup__header {
  font-weight: 700;
  font-size: 20px;
  margin: 6px 28px 4px 0;
}

.price_popup__text {
  font-size: 13px;
  opacity: .9;
  margin: 10px 0;
}

.price-popup__field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 13px;
}

.price-popup__field input[type="text"],
.price-popup__field input[type="tel"] {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: none;
  padding: 0 12px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  outline: none;
}

.price-popup__field input::placeholder {
  color: rgba(255, 255, 255, .6);
}

.price-popup__consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  margin: 8px 0 12px;
}

.price-popup__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.price-popup__captcha-img {
  height: 42px;
  border-radius: 8px;
}

.price-popup__captcha-refresh {
  border: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  cursor: pointer;
}

.price-popup__submit {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  background: #ef3b2d;
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
}

.price-popup__note {
  font-size: 12px;
  margin-top: 8px;
}

.note {
  margin: 10px 0 0 0 !important;
}

.captcha-row label.error {
  top: -7px !important;
  right: 70px !important;
}

.price-popup .error {
  position: unset;
}

@media screen and (max-width: 350px) {
  #price-popup {
    width: 320px;
    max-width: 100vw;
  }
}