/**
* Theme Name: Luxride Child
* Description: This is a child theme of Luxride, generated by Merlin WP.
* Author: <a href="https://themeforest.net/category/wordpress?term=steelthemes&#038;view=grid#content">SteelThemes</a>
* Template: luxride
* Version: 1.3.3
*/
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}
.popup-content {
  background: #fff;
  width: 500px;
  max-width: 90%;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: popupFade 0.3s ease-in-out;
}
.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
}
@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
