.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%); } }

.menu-category h2 {
  margin: 0;
  padding: 1rem 0.8rem;
  background-image: linear-gradient(45deg, #464646, transparent); }

.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; }

footer {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 3rem;
  background-color: #202020; }
  footer a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold; }
  footer:after {
    content: '';
    clear: both; }

.navigation__product-categories {
  width: 100%;
  display: flex;
  gap: 1rem;
  position: fixed;
  top: 8rem;
  background-color: #ff7800;
  padding: 0.3rem 0.8rem; }
  .navigation__product-categories a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    gap: 0.2rem;
    -webkit-tap-highlight-color: transparent; }
    .navigation__product-categories a svg {
      width: 3rem;
      height: 3rem; }
    .navigation__product-categories a.active {
      opacity: 1; }

#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; }

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

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

body {
  margin: 0;
  background-color: #222; }

#background-video-section {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -1000; }

body.no-table .menu-item__button--order {
  display: none; }

body.no-table header .order-button {
  display: none; }
