/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 850px;
    width: 100%;
}
/* The Close Button */
.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: rgba(0,0,0,0.35);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 35px;
    right: calc((100% - 878px)/2);
    cursor: pointer;
}
.close:hover,
.close:focus {
    background: rgba(0,0,0,0.55);
}
.link_order_id {
    cursor: pointer;
}
#myOrders tr td {
    padding: 1em 10px;
}
@media only screen and (max-width:920px) {
    .close {
        top: 10px;
        right: 10px;
    }
}

