#npv-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  box-sizing: border-box;
}

#npv-popup-overlay.is-visible {
  display: flex;
}

.npv-no-scroll {
  overflow: hidden;
}

.npv-popup {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: #181E26;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.npv-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.npv-popup-image,
.npv-popup-content {
  width: 50%;
}
.npv-popup-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.npv-popup-image img {
  display: block;
  /*width: 100%;*/
  /*height: 100%;*/
  /*object-fit: cover;*/
  max-width: 100%;
  height: auto;
}

.npv-popup-content {
  padding: 48px 40px 32px;
  box-sizing: border-box;
}

.npv-popup-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.npv-popup-text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
}

#npv-popup-form .form-group {
  margin-bottom: 16px;
}

#npv-popup-form input[type="email"] {
  width: 100%;
  height: 52px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 0 16px;
  box-sizing: border-box;
}

#npv-popup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.npv-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #fff;
  text-align: left;
}

.npv-consent input {
  margin-top: 3px;
}

.npv-submit {
  min-width: 180px;
  min-height: 52px;
  border: 2px solid #C6A767;
  background: linear-gradient(90deg, #B7803B 3.1%, #FDE6A8 39%, #FEE3A6 60.5%, #B7803B 100%), linear-gradient(90deg, #9C6B07 3.1%, #C6A767 39%, #C6A767 60.5%, #855F12 100%), #C6A767 !important;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.npv-submit:hover {
  color: #C6A767;
  background: #000000;

}

.npv-popup-message {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.npv-popup-message.is-success {
  color: #ffffff;
}

.npv-popup-message.is-error {
  color: #fff2a6;
}

@media (max-width: 767px) {
  .npv-popup-image,
  .npv-popup-content {
    width: 100%;
  }

  .npv-popup-content {
    padding: 32px 20px 24px;
  }

  .npv-popup-title {
    font-size: 24px;
  }
}
