body {
  font-family: sans-serif;
  padding: 16px 64px 64px 64px;
}

/* NAV */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background-color: #f3f3f3;
}

li {
  float: left;
}

li a {
  display: block;
  color: #666;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #ddd;
}

li a.active {
  color: white;
  background-color: #4caf50;
}

/* TABLE */
table {
  margin-top: 24px;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4caf50;
  color: white;
  border: 1px solid #ddd;
}
tr:nth-child(even) {
  background-color: #f2f2f2;
}
tr:hover {
  background-color: #ddd;
}

.form-label {
  display: inline-block;
  width: 120px;
}

/* SWITCH */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:focus + .slider {
  box-shadow: 0 0 1px #4caf50;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.button {
  background-color: white;
  color: black;
  border: 2px solid rgb(216, 216, 216);
  padding: 0px 54px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.button:hover {
  background-color: #999;
  border-color: #999;
}

.buttonload {
  background-color: #4caf50; /* Green background */
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 12px 16px; /* Some padding */
  font-size: 16px; /* Set a font size */
}

.clearBasket {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  margin-bottom: 16px;
}

#loader-btn {
  display: none;
}

p#no-data {
  text-align: center;
  font-weight: bold;
  color: red;
  font-size: 24px;
}
#container {
  display: flex;
}

#menuItemContainer {
  background: rgb(255, 255, 255);
  width: 66.66667%;
  display: inline-block;
  padding-right: 32px;
  padding-left: 16px;
}

.menuItem {
  padding: 10px 15px;
  display: inline-flex;
  border: 1px solid #ccc;
  background: #f7f7f7;
  box-shadow: 2px 2px 2px -3px grey;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgb(65, 65, 66);
  font-family: "Red Hat Text", sans-serif;
}
.menuItem:hover {
  background-color: #ed1c24;
  color: #fff;
}

#suggestedBar {
  font-family: "Red Hat Text", sans-serif;
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  padding: 24px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

/* BASKET */
#basketContainer {
  display: none;
  background: rgb(247, 247, 247);
  box-shadow: rgb(237, 28, 36) 1px 1px 9px -5px;
  border-color: rgb(204, 204, 204);
  width: 22%;
  font-family: "Red Hat Text", sans-serif;
}

#basketHeader {
  background-color: rgb(237, 28, 36);
  padding: 10px 20px;
  font-size: 24px;
  color: #fff;
}
#basketDetails {
  padding: 0 20px 20px;
}
#basketDetailsWrapper {
  border-bottom: 1px solid #ed1c24;
}
#basketItem {
  display: inline-block;
  padding-bottom: 20px;
  width: 80%;
  padding-top: 15px;
  font-size: 18px;
}

#removeItemBtn {
  display: inline;
  font-size: 20px;
  border: 0;
  background-color: inherit;
}
#removeItemBtn:focus {
  outline: none;
}
#removeItemBtn:hover {
  color: #ed1c24;
}

#clearBasket {
  padding: 0 20px 20px;
}
#basketClearBtn {
  font-family: "Red Hat Text", sans-serif;
  font-size: 18px;
  margin-top: 16px;
  height: 45px;
  color: #fff;
  width: 100%;
  background-color: rgb(237, 28, 36);
  border: 0;
}

#basketEmpty {
  margin-top: 40px;
  text-align: center;
}
.fa-shopping-cart {
  font-size: 50px !important;
}

.hr {
  margin-bottom: 40px;
  background-color: #ed1c24;
}
