.popup-widget {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: none;
}
.popup-widget .popup-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
}
.popup-widget .popup-content {
z-index: 100000;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 80%;
    top: 0;
    bottom: 0;
}
.popup-widget .popup-close {
    position: absolute;
    top: 8px; right: 12px;
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
}


/* Extra Large (XL) - Desktop 1025px to 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
}

/* Large (LG) - Laptop 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
}

/* Small (SM) - Tablet 426px to 768px */
@media (min-width: 426px) and (max-width: 768px) {
}


@media (max-width: 425px) {
  .popup-widget .popup-content {
        max-width: 80%;
    }
}

