@font-face {
  font-family: TheWave;
  src: url(../7226a127d0344bff2af9.ttf) format('truetype');
}
body {
  display: flex;
  margin: 0;
}
body #app {
  display: flex;
  height: 100%;
  width: 100%;
}
body * {
  font-family: TheWave;
  box-sizing: border-box;
}
body a {
  text-decoration: none;
  color: black;
  font-style: italic;
}
body .menu-item-selected {
  background: #00205b;
  color: #FFFFFF;
}
body .date-input {
  margin: 16px 0 8px 0;
  width: 100%;
}
body .multiselect-values {
  display: flex;
  flex-wrap: wrap;
}
body .multiselect-values > div {
  margin: 2px;
}
.app {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}
.home {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 50px 0 0 0;
}
@media (min-width: 900px) {
  .home {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 899px) {
  .home {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.app .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  height: 50px;
  padding: 5px;
  background: #00205b;
}
.app .header .header-logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 0 10px;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
}
.app .header .header-logo > img {
  height: 40px;
  width: 40px;
  margin: 0 10px 0 0;
}
.app .header .header-week {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.app .header .header-week .header-week-text {
  position: relative;
  right: 30px;
  top: 4px;
  font-weight: bold;
  width: 20px;
}
.app .header .header-week .header-week-icon {
  height: 40px;
  width: 40px;
  color: #FFFFFF;
}
.app .footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  height: 25px;
  width: 100%;
  background: #00205b;
  color: #FFFFFF;
  padding: 0 15px;
}
.app .footer .version {
  margin: 0;
  font-size: 10px;
}
.app .navigation {
  margin: 0 15px 0 0;
  cursor: pointer;
}
.app .message-snackbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-width: 300px;
}
.app .message-snackbar .message {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.app .message-snackbar.success {
  background-color: #43A047;
  width: 100%;
}
.app .message-snackbar.info {
  background-color: #1976D2;
  width: 100%;
}
.app .message-snackbar.warning {
  background-color: #FFA000;
  width: 100%;
  font-weight: bold;
}
.app .message-snackbar.error {
  background-color: #D32F2F;
  width: 100%;
  font-weight: bold;
}
.app .welcome {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}
.app .welcome h4 {
  font-weight: bold;
}
.app .welcome p {
  text-align: center;
}
.app .welcome a {
  font-weight: bold;
  text-decoration: none;
  color: #00205b;
}
@media (min-width: 900px) {
  .app .welcome {
    border-right: 1px solid #00205b;
    height: 100%;
  }
  .app .welcome h4 {
    margin: 20px 0 50px 0;
  }
}
@media (max-width: 899px) {
  .app .welcome {
    border-bottom: 1px solid #00205b;
  }
  .app .welcome h4 {
    margin: 20px 0;
  }
}
.app .signin {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 20px;
  overflow: auto;
}
.app .signin h6 {
  font-weight: bold;
}
.app .signin a {
  font-size: 12px;
}
.app .signin .signin-input {
  margin: 20px 0 0 0;
}
.app .signin .signin-controlbox {
  margin: 10px 0;
}
.app .signin .signin-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .app .signin {
    width: 40%;
  }
}
@media (max-width: 899px) {
  .app .signin {
    width: 100%;
  }
}
.app .week {
  height: 100%;
  width: 100%;
  padding: 20px 0;
}
@media (min-width: 1280px) {
  .app .week {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 1280px) {
  .app .week {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px;
    overflow: auto;
  }
}
.app .day {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  font-weight: bold;
}
.app .day .menus-box {
  margin: 10px;
}
@media (min-width: 900px) {
  .app .day {
    width: 100%;
    margin: 20px 0;
  }
  .app .day .menus-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .app .day {
    width: 20%;
    height: 100%;
    margin: 0 20px 40px;
  }
  .app .day .menus-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 899px) {
  .app .day {
    width: 100%;
    margin: 20px 0;
  }
  .app .day .menus-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
  }
}
.app .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  box-shadow: #EEEEEE 0 0 4px 2px;
  margin: 10px;
}
.app .menu.bring-your-own {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.app .menu .menu-edit-button {
  position: relative;
  overflow: visible;
  width: 0;
  z-index: 10;
}
.app .menu .menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  width: 100%;
  box-shadow: #EEEEEE 0 0 4px 2px;
}
@media (min-width: 900px) {
  .app .menu {
    width: 20%;
    height: 100%;
    min-height: 100px;
  }
}
@media (min-width: 1280px) {
  .app .menu {
    width: 100%;
    height: 20%;
  }
}
@media (max-width: 899px) {
  .app .menu {
    width: 100%;
    height: 20%;
    min-height: 100px;
  }
}
.app .account-settings {
  height: 100%;
  width: 100%;
}
.app .account-settings .tab-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 10px;
}
.app .account-settings .tab-content .inputs-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 400px;
  max-width: 600px;
  margin: 10px 0;
}
.app .account-settings .tab-content .divider {
  width: 100%;
  margin: 20px 0 0 0;
}
@media (min-width: 900px) {
  .app .account-settings {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .app .account-settings .tabs {
    height: 100%;
    width: 250px;
  }
}
@media (max-width: 899px) {
  .app .account-settings {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.app .users-view {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}
.app .users-view .MuiDataGrid-columnHeaderTitle {
  font-weight: bold;
}
.app .taxes-view {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}
.app .taxes-view .taxes-table {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  width: 80%;
  padding: 20px 10px;
  border-right: 1px solid #00205b;
}
.app .taxes-view .taxes-table .table-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #00205b;
}
.app .taxes-view .taxes-table .table-header h6 {
  font-weight: bold;
}
.app .taxes-view .taxes-table .table-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-top: 1px solid #00205b;
}
.app .taxes-view .taxes-table .col {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 5px 10px;
  border-right: 2px solid #00205b;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app .taxes-view .taxes-table .col.employee-id {
  width: 10%;
}
.app .taxes-view .taxes-table .col.employee-name {
  width: 15%;
}
.app .taxes-view .taxes-table .col.order-number {
  width: 12.5%;
}
.app .taxes-view .taxes-table .col.total {
  width: 12.5%;
  font-weight: bold;
  border-right: none;
}
.app .taxes-view .inputs-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 20%;
  padding: 20px;
}
.app .taxes-view .inputs-box .first {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
}
.app .week-view {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.app .week-view .week-view-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  overflow: auto;
}
.app .week-view .week-view-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
}
@media (max-width: 1280px) {
  .app .week-view {
    flex-flow: column-reverse;
  }
  .app .week-view .week-view-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    overflow: auto;
    padding: 20px;
  }
}
.app .day-print-view {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.app .day-print-view .day-print-view-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  padding: 20px 50px;
  overflow: auto;
}
.app .day-print-view .day-print-view-content .day-view {
  box-shadow: #00205b 0 0 4px 2px;
}
.app .day-print-view .day-print-inputs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  min-width: 200px;
  height: 100%;
  padding: 20px;
}
@media (min-width: 900px) {
  .app .day-print-view .day-print-view-content {
    border-right: 1px solid #00205b;
  }
}
@media (max-width: 899px) {
  .app .day-print-view {
    flex-flow: column-reverse;
  }
  .app .day-print-view .day-print-inputs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 10px 20px;
    border-bottom: 1px solid #00205b;
  }
  .app .day-print-view .day-print-inputs .date-input {
    max-width: 250px;
  }
}
.day-view {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.day-view .day-headers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 10px 0 0 0;
  border-bottom: 1px solid #00205b;
}
.day-view .day-menu {
  width: 100%;
  min-height: 100px;
}
.day-view .user-order {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.day-view .col {
  width: 100%;
  padding: 2px 5px;
  font-size: 0.85rem;
}
.day-view .name {
  width: 25%;
  padding: 2px 5px;
}
.day-view .order {
  width: 60%;
  padding: 2px 5px;
}
.day-view .price {
  width: 15%;
  padding: 2px 5px;
  text-align: right;
}
.day-view .bold {
  font-weight: bold;
}
.day-view .guest {
  background-color: #EEEEEE;
}
.day-view h4 {
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid #00205b;
}
.day-view h5 {
  font-weight: bold;
  margin: 10px 0;
  font-size: 1.125rem;
}
@media (min-width: 1280px) {
  .day-view {
    border-left: 2px solid #00205b;
    min-height: 100%;
    overflow: hidden;
  }
  .day-view.first {
    border: none;
  }
}
@media (max-width: 1280px) {
  .day-view {
    margin: 50px 0 0 0;
    box-shadow: #00205b 0 0 4px 2px;
  }
  .day-view.first {
    border: none;
    margin: 0;
  }
  .day-view .day-menu {
    min-height: 100px;
  }
}
.app.mobile .home {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.app.mobile .welcome {
  border-bottom: 1px solid #00205b;
}
.app.mobile .welcome h4 {
  margin: 20px 0;
}
.app.mobile .signin {
  width: 100%;
}
.app.mobile .week {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 20px;
  overflow: auto;
}
.app.mobile .day {
  width: 100%;
  margin: 20px 0;
}
.app.mobile .day .menus-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
}
.app.mobile .menu {
  width: 100%;
  height: 20%;
  min-height: 100px;
}
.app.mobile .account-settings {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.app.mobile .day-view {
  margin: 50px 0 0 0;
  box-shadow: #00205b 0 0 4px 2px;
}
.app.mobile .day-view.first {
  border: none;
  margin: 0;
}
.app.mobile .day-view .day-menu {
  min-height: 100px;
}
.app.mobile .week-view {
  flex-flow: column-reverse;
}
.app.mobile .week-view .week-view-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding: 20px;
}
.app.mobile .day-print-view {
  flex-flow: column-reverse;
}
.app.mobile .day-print-view .day-print-inputs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 10px 20px;
  border-bottom: 1px solid #00205b;
}
.app.mobile .day-print-view .day-print-inputs .date-input {
  max-width: 250px;
}

