#waitingOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: transparent;
}

#waitingOverlayBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 30;
}

#waitingMessage {
    position: relative;
    width: 300px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold;
    border: 3px solid #94141c;
    padding: 20px;
    text-align: center;
    background-color: white;
    z-index: 31;
}

#waitingMessage img {
    margin: 15px 0 0 0;
}