/*
Theme Name: Nextweb
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.popup-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
        z-index: 9999;
      }
      .popup-overlay.active {
        display: flex;
      }
      .popup-content {
        background: #fff;
        border-radius: 12px;
        padding: 30px;
        max-width: 600px;
        width: 90%;
        position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        animation: popupFade 0.3s ease;
      }
      @keyframes popupFade {
        from {opacity: 0; transform: translateY(-15px);}
        to {opacity: 1; transform: translateY(0);}
      }
      .close-popup {
        position: absolute;
        top: 8px;
        right: 0px;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #555;
		margin-right:0;
      }
      .close-popup:hover { color: #000; }

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}