.tblimg {
  width: 70px;
  height: 70px;
}
.header-img {
  width: 100%;
}
.fstables {
  font-size: 14px;
}
.cardtables {
  display: flex;
}
.specialfont {
  font-family: "Lobster", cursive;
  font-size: xx-large;
  text-shadow: 4px 4px 4px #aaa;
}
.menufonts {
  font-family: "Lobster", cursive;
  font-size: x-large;
  text-shadow: 4px 4px 4px #aaa;
}
.customerspfont {
  font-family: "Babylonica", cursive;
  font-size: 100px;
  text-shadow: 7px 7px 7px #aaa;
}
.pagination {
  user-select: none;
}
.pagination li {
  box-shadow: 0 5px 25px rbg(1 1 1 / 10%);
}
.previous-page,
.next-page {
  background: #0ab1ce;
}
/* The side navigation menu */
.sidebar {
  margin: 0;
  padding: 0;
  width: 350px;
  background-color: #f1f1f1;
  position: fixed;
  z-index: 1;
  height: 100%;
  overflow: auto;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
}

/* Active/current link */
.sidebar a.active {
  background-color: rgb(99, 99, 128);
  color: white;
}

/* Sidebar Item */
.sidebar-bar-item {
  padding: 8px 16px;
  float: left;
  width: auto;
  border: none;
  display: block;
  outline: 0;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 850px;
}

/* Sidebar Button*/
.sidebar-btn,
.sidebar-button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

/* Sidebar Button Hover*/
.sidebar-btn:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Buttons Behavior*/
.sidebar-btn,
.sidebar-button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Sidebar Status*/
.sidebar-disabled,
.sidebar-btn:disabled,
.sidebar-button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.sidebar-disabled *,
:disabled * {
  pointer-events: none;
}

.sidebar-btn,
.sidebar-disabled:hover,
.sidebar-btn:disabled:hover {
  box-shadow: none;
}

.sidebar-tiny {
  font-size: 10px !important;
}

.sidebar-small {
  font-size: 12px !important;
}

.sidebar-medium {
  font-size: 15px !important;
}

.sidebar-large {
  font-size: 18px !important;
}

.sidebar-xlarge {
  font-size: 24px !important;
}

.sidebar-xxlarge {
  font-size: 36px !important;
}

.sidebar-xxxlarge {
  font-size: 48px !important;
}

.sidebar-jumbo {
  font-size: 64px !important;
}

.sidebar-bar-block .sidebar-dropdown-hover,
.sidebar-bar-block .sidebar-dropdown-click {
  width: 100%;
}

.sidebar-bar-block .sidebar-dropdown-hover .sidebar-dropdown-content,
.sidebar-bar-block .sidebar-dropdown-click .sidebar-dropdown-content {
  min-width: 100%;
}

.sidebar-bar-block .sidebar-dropdown-hover .sidebar-button,
.sidebar-bar-block .sidebar-dropdown-click .w3-button {
  width: 100%;
  text-align: left;
  padding: 8px 16px;
}

.sidebar-main,
#main {
  transition: margin-left 0.4s;
}

.sidebar-card,
.sidebar-card-2 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.sidebar-card-4,
.sidebar-hover-shadow:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.sidebar-animate-fading {
  animation: fading 10s infinite;
}
@keyframes fading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.sidebar-animate-opacity {
  animation: opac 0.8s;
}
@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sidebar-animate-top {
  position: relative;
  animation: animatetop 0.4s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.sidebar-animate-left {
  position: relative;
  animation: animateleft 0.4s;
}
@keyframes animateleft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

.sidebar-animate-right {
  position: relative;
  animation: animateright 0.4s;
}
@keyframes animateright {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

.sidebar-animate-bottom {
  position: relative;
  animation: animatebottom 0.4s;
}
@keyframes animatebottom {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

.sidebar-animate-zoom {
  animation: animatezoom 0.6s;
}
@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.sidebar-animate-input {
  transition: width 0.4s ease-in-out;
}
.w3-animate-input:focus {
  width: 100% !important;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
/*@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {
    float: left;
  }
  div.content {
    margin-left: 0;
  }
}*/

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
/*@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
}*/
