.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4CAF50;
  color: white;
  padding: 20px;
  border-radius: 5px;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.popup.show {
  display: block;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 999;
}

.overlay.show {
  display: block;
}

.results-contact .promo-demo-intro {
  margin-bottom: 14px;
}

.results-contact .promo-demo-form {
  margin: 0 0 18px;
}

.results-contact .promo-demo-actions {
  display: grid;
  gap: 10px;
  margin: 0 0 12px;
}

.results-contact .promo-demo-actions .btn {
  min-height: 52px;
  padding: 0 22px;
  width: 100%;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.results-contact .promo-demo-note {
  color: rgba(75, 90, 104, .86);
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 18px;
}

.results-contact .promo-demo-form .input-group {
  display: block;
  width: 100%;
}

.results-contact .promo-demo-form .form-control {
  min-height: 52px;
  padding: 0 18px;
  width: 100%;
  border-radius: 999px;
  margin-bottom: 12px;
}

.results-contact .promo-demo-form .input-group-btn {
  display: block;
  width: 100%;
}

.results-contact .promo-demo-form .input-group-btn .btn {
  min-height: 52px;
  padding: 0px 22px;
  width: 100%;
  border-radius: 999px;
  display: block;
  text-align: center;
  white-space: nowrap;
}

.results-contact .promo-demo-links-intro {
  margin-bottom: 12px;
}
