* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  overflow: hidden;
}

.loading-screen {
  display: flex;
  z-index: 999999;
}
/* NAV-BAR */
.side-nav {
  width: 250px;
  z-index: 9999;
}

.side-nav .right {
  height: 100vh;
  width: 50px;
  left: 0;
}

.side-nav .hidden {
  right: 100%;
  height: 100vh;
  width: 100%;
  background-color: black;
}

.right i,
.social i {
  cursor: pointer;
}

/* main */
.meal-layer {
  background-color: #f9f6f6ca;
  width: 100%;
  height: 100%;
  transition: top 0.5s;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -ms-transition: top 0.5s;
  -o-transition: top 0.5s;
}

.meal:hover,
.cursor-pointer:hover {
  cursor: pointer;
}

.meal:hover .meal-layer {
  top: 0 !important;
}

.row input::placeholder {
  color: gray;
}

@media screen and (max-width: 600px) {
  .side-nav {
    width: 80%;
  }
}
