/* lightbox.css */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

.lightbox-content img {
    width: 100%;
    max-width: 140px;
    height: 66px;
    text-align: left;
    display: block;
}

.lightbox-content {
    border-radius: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.6em 1.2em;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}


/* Hide UI */

.restaurant-closed-lightbox-open #wfc-open-cart-button {
    display: none;
}

.restaurant-is-closed .delivery-text {
    color: red;
    font-weight: 400;
}

.restaurant-closed-temporary .product-annoucment {
    text-align: center;
    color: #fff;
    background: red;
    padding: 1em;
}

.restaurant-closed-temporary #wfc-open-cart-button {
    display: none;
}

.restaurant-closed-temporary footer.order.purchasable {
    display: none;
}

.restaurant-closed-temporary .lightboxclosed-annoucment {
    margin: 1.4em 0;
}