.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.popup-wrapper {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff; /* default fallback */
    overflow: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 4px;
}

.popup-close {
    position: absolute;
    top: 0px;
    right: 15px;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 700;
    color: white;
    font-size: 30px;
}


@media(max-width:650px){
    .popup-wrapper {
    width: 90% !important;
    background-size: 100% ! Important;
    background-color: transparent;
    box-shadow: none;
    }
    .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    border: none;
    font-weight: 700;
    background: white;
    color: black;
    border-radius: 50%;
    font-size: 30px;
    line-height: 30px;
    width: 30px;
    height: 30px;
}
}