.status {
    padding: 3px;
    background: #ccc;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}

.status.NOT_FULFILLED {
    background: orange;
}

section#Orders .listRow>div:last-of-type,section#Orders .listHeader>div:last-of-type {
    text-align: right;
}




.todayHeader {
    display: flex;
    background: #333;
    /* margin: 20px 0px; */
    color: white;
    font-size: 20px;
    padding: 15px 0px;
    border-radius: 0px 0px 8px 8px;
    box-shadow: inset 0px 5px 6px -7px black;
}

.todayHeader>div {
    margin-left: 35px;
}

.todayHeader small {
    font-size: 8px;
    display: block;
    font-weight: bold;
    color: #ffffff75;
}

.orderStats {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    font-size: 12px;
    background: #1e1e1e;
    border-radius: 8px 8px 0px 0px;
    color: white;
    margin-top: 20px;
}

.lineSplit {
    width: 1px;
    height: 68px;
    background: #ffffff2e;
}

.orderStats .bold {
    margin-bottom: 5px;
    color: white;
}



@media screen and (max-width: 600px) {
    #MainContent #Orders .listRow > div, #MainContent #Orders .listHeader > div {
        display: block;
    }

    #MainContent #Orders .listRow > div:nth-of-type(1),
    #MainContent #Orders .listHeader > div:nth-of-type(1),
    #MainContent #Orders .listRow > div:last-of-type,
    #MainContent #Orders .listHeader > div:last-of-type {
        display: none;
    }

    #MainContent #Orders .listRow,
    #MainContent #Orders .listHeader {
        grid-template-columns: .75fr .7fr 1fr .5fr;
    }

    #MainContent #Orders .listRow > div:nth-of-type(5) {
        font-size: 10px;
        /* text-align: right; */
    }

    .todayHeader {
        font-size: 14px;
    }

    .todayHeader>div:first-of-type {
        display: none;
    }

    .orderStats>div:first-of-type,.orderStats>div:nth-of-type(2) {
        display: none;
    }

}