.omnicasa-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  text-align: center;
}

.omnicasa-popup h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.omnicasa-popup h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.omnicasa-popup > div {
  background-color: #2e4e64;
  color: #fff;
  padding: 1.5rem;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  max-width: 90vw;
  width: 550px;
  max-height: 90vh;
}

.omnicasa-popup img {
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .omnicasa-popup {
    font-size: 12px;
  }
  .omnicasa-popup h2 {
    font-size: 14px;
    font-weight: bold;
  }

  .omnicasa-popup h3 {
    font-size: 12px;
    font-weight: bold;
  }
}

.close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  background-color: #2e4e64;
  border-radius: 99999px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-popup svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  color: #fff;
}
