/* Minimal modal styles for the quick-order window.
   Standalone so the module does not depend on theme Bootstrap (PS 8/9 themes vary). */
.ooc-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 10000;
}

.ooc-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 560px;
    width: calc(100% - 30px);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .3);
    z-index: 10001;
}

.ooc-modal .ooc-modal-header,
.ooc-modal .ooc-modal-body,
.ooc-modal .ooc-modal-footer {
    padding: 15px 20px;
}

.ooc-modal .ooc-modal-header {
    border-bottom: 1px solid #e5e5e5;
}

.ooc-modal .ooc-modal-footer {
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

.ooc-modal .close {
    float: right;
    border: 0;
    background: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: .5;
}

.ooc-modal .close:hover {
    opacity: 1;
}
