.elementor-189 .elementor-element.elementor-element-99fed28{--display:flex;}#elementor-popup-modal-189{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-189 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-189 .dialog-close-button{display:flex;}#elementor-popup-modal-189 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-d8c6504 *//* ===== POPUP OVERLAY ===== */
.thankyou-popup {
  position: fixed;
  inset: 0;
  display: flex; /* всегда центрируется */
  align-items: center;
  justify-content: center;
  background: rgba(19, 20, 22, 0.55); /* лёгкое затемнение фона */
  z-index: 9999;
  padding: 16px;
  animation: fadeIn 0.3s ease;
}

/* ===== POPUP BOX ===== */
.popup-content {
  background: #CFFFC7;
  color: #131416;
  border-radius: 20px;
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  max-width: 340px;
  width: 100%;
  box-sizing: border-box;
  animation: scaleIn 0.3s ease;
  font-family: "Inter", "Arial", sans-serif;
}

/* ===== ICON ===== */
.popup-icon {
  background: #131416;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* ===== TEXT ===== */
.popup-content p {
  font-size: 16px;
  font-weight: 500;
  color: #131416;
  margin: 0;
  line-height: 1.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .popup-content {
    padding: 24px 28px;
    border-radius: 20px;
    max-width: 90%;
  }
  .popup-icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
    margin-bottom: 14px;
  }
  .popup-content p {
    font-size: 15px;
  }
}/* End custom CSS */