/* Overlay */

#restaurant-popup-overlay{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    z-index:999999;

}

/* Popup */

#restaurant-popup{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90%;

    max-width:1100px;

    max-height:90vh;

    background:#fff;

    border-radius:20px;

    overflow:auto;

    padding:40px;

    box-sizing:border-box;

}

/* Close */

#restaurant-popup-close{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#f2f2f2;

    cursor:pointer;

    font-size:30px;

    line-height:45px;

}

/* Loading */

#restaurant-popup-content{

    min-height:200px;

}