.button, .order-confirmation-window a.order-confirmation-window__button {
  display: inline-block;
  padding: 10px;
  border: none;
  background: #e76934;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase; }

.menu-item {
  padding: 0 0.4rem;
  margin: 0.4rem 0;
  border-left: 0.4rem solid;
  text-align: right; }
  .menu-item__image {
    width: 100%;
    height: auto;
    margin-top: 0.3em; }
  .menu-item__button {
    display: inline-block;
    padding: 10px;
    border: none;
    background: #e76934;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase; }
  .menu-item__price {
    display: inline-block;
    font-size: 2.5em;
    line-height: 1em;
    font-family: sans-serif;
    margin: 0;
    float: left; }
  .menu-item h3 {
    margin: 0;
    color: #ffa800;
    text-align: left; }
  .menu-item p {
    text-align: left; }

@-webkit-keyframes slide {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(0%); } }

@keyframes slide {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(0%); } }

.order-button {
  display: block;
  background-color: green;
  border-radius: 4px;
  padding: 0.3em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  align-self: flex-end;
  cursor: pointer; }
  .order-button #order-total {
    font-size: 0.7em; }

#header {
  position: fixed;
  background-color: #222;
  width: calc(100% - 1em);
  top: 0;
  margin: 0;
  font-size: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
  height: 6rem; }
  #header h1 {
    font-size: 1em;
    margin: 0; }

#order-confirmation-window-wrapper {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000d1;
  display: none; }
  #order-confirmation-window-wrapper.visible {
    display: block; }

.order-confirmation-window {
  position: fixed;
  background-color: white;
  color: black;
  border-radius: 0.5em;
  padding: 1em;
  width: calc(100vw - 4em);
  font-size: 1.5em;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid; }
  .order-confirmation-window--visible {
    display: block; }
  .order-confirmation-window__items {
    margin-bottom: 2em; }

#tables-dashboard h1 {
  text-align: center; }

#tables-dashboard .table {
  display: block;
  margin: 1em;
  padding: 1em;
  background-color: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 #000;
  width: calc(100% - 4em);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #343434;
  font-weight: bold;
  font-size: 1.7em; }
  #tables-dashboard .table h3, #tables-dashboard .table p {
    margin: 0; }
  #tables-dashboard .table--status-occupied {
    background-color: #ff7000; }
  #tables-dashboard .table--status-pending_confirmation {
    background-color: #ff0000; }

#table-order-dashboard {
  padding: calc(11rem + 2rem) 0 0; }

html {
  color: #f5f5f5;
  font-family: monospace; }

body {
  margin: 0;
  background-color: black;
  background-image: url("../images/bg.png"); }
