.elementor-2034 .elementor-element.elementor-element-6db484e{--display:flex;}.elementor-2034 .elementor-element.elementor-element-62c2142{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-62c2142 *//* Button Styles */
.button-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Button Styles */
button#openPopup {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

button#openPopup:hover {
  background-color: black;
  color: white;
}

/* Ensures the overlay covers the entire screen */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Styles for the popup window */
.popup-content {
  position: relative;
  padding: 5px;
  border: solid 2px black; /* Black border */
  border-radius: 10px;
  background: Black;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  /* Use width and max-width to control the size of the popup */
  width: auto; /* Or specific width */
  max-width: 640px; /* Adjust based on your content */
}

/* Adjust iframe size within the popup as needed */
.popup-content iframe {
  width: 100%; /* Adjust the width as necessary */
  height: 540px; /* Adjust the height as necessary */
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 40px;
}


@media (max-width: 768px) {
  .popup-content {
    width: 100%; /* More screen width on smaller devices */
  }
}/* End custom CSS */