/* this colors the asterisk red, for fields that are required.*/
.required-field {
    color: red !important;
    font-size: 150% !important;
    line-height: 0.0em !important;
}

/* error message block */
.errorMessage {
    color: crimson;
    font-size: 0.9em;
    font-style: italic;
    font-weight: bold;
    padding: 10px 0 0 10px;
}

/* success message block */
.successMessage {
    color: green;
    font-size: 0.9em;
    font-style: italic;
    font-weight: bold;
    padding: 10px 0 0 10px;
}

/* used to define un-implemented links */
.unImplementedLink {
    text-decoration: line-through !important;
}


.cashRegisterContainer{display:flex;}
.leftBox{
height: 90vh;
    width: 60vw;
    overflow: auto;
}
.rightBox{
height: 90vh;
    width: 40vw;
}