/* Popup container */
.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

/* Popup title */
.popup-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Popup content */
.popup-content {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Popup close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ccc;
  cursor: pointer;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.popup-title {
  color: black;
}
.popup-content {
  color: black;
}
.popup-content .wpcf7-form-control {
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .popup-overlay.popup-hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .popup-overlay.popup-hide-on-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .popup-overlay.popup-hide-on-laptop {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .popup-overlay.popup-hide-on-desktop {
    display: none !important;
  }
}
