/*Google $font-stack*/
/* @import url(http://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap)*/
/* @import url(http://fonts.googleapis.com/css2?family=Shrikhand&display=swap)*/
/* Styles*/
@media (min-width: 760px) {
  .meal-class {
    width: 30%;
  }
}
@media (max-width: 760px) {
  .meal-class {
    width: 90%;
  }
}
html,
body {
  font-family: roboto;
  font-weight: normal;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0px;
}

.header-link {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px;
}

.loading-page {
  max-height: 100%;
  background-color: white;
  -webkit-animation: full-load 1s linear 2s 1 normal backwards;
          animation: full-load 1s linear 2s 1 normal backwards;
  max-width: 100%;
  overflow-x: hidden;
  margin: none;
  padding: none;
}

.menu-wrapper {
  background-color: #f2f2f2;
  margin-top: -15px;
  padding: 5px;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.menu-wrapper h2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: shrikhand;
  font-size: 22px;
  width: 100%;
  padding: 0px 15px;
}
.menu-wrapper h2 .heart {
  position: absolute;
  top: 25px;
  right: 30px;
}
.menu-wrapper h2 .solid-heart {
  position: absolute;
  top: 25px;
  right: 30px;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  transition: opacity;
}
.menu-wrapper h2 .solid-heart:hover, .menu-wrapper h2 .solid-heart:active, .menu-wrapper h2 .solid-heart:focus {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 100%;
  transition: background-image;
  transition-duration: 2s;
  background-image: linear-gradient(#9356DC, #FF79DA);
}

.menu-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: none;
  border-radius: 20px;
  height: 75px;
  box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.1);
  background-color: white;
  gap: 10px;
  margin: 10px -10px;
  position: relative;
  -webkit-animation: food-card;
          animation: food-card;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.menu-item .food-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.menu-item .food-wrapper .description {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: -15px 10px;
  font-size: 13px;
  padding: 5px;
}
.menu-item .check {
  visibility: hidden;
  color: white;
  width: 0px;
  position: relative;
  right: 0px;
  padding: 20px 14px;
  border-radius: 0px 20px 20px 0px;
  z-index: 1;
}

.menu-item:nth-child(1n) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.menu-item:nth-child(2n) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.menu-item:nth-child(3n) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.menu-item:nth-child(4n) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.menu-item:nth-child(5n) {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.menu-item:nth-child(6n) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.menu-item:nth-child(7n) {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.menu-item:nth-child(8n) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.menu-item:nth-child(9n) {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

@-webkit-keyframes full-load {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes full-load {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3298db;
  -webkit-animation: spin 2s linear forwards;
  animation: spin 2s linear forwards;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    opacity: 1;
    transform: rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: rotate(360deg);
  }
}
.page-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  -webkit-animation: loaded 1s linear 2s 1 normal backwards;
          animation: loaded 1s linear 2s 1 normal backwards;
  max-width: 100%;
  overflow-x: hidden;
}

@-webkit-keyframes loaded {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loaded {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.logo {
  width: 70%;
  padding-left: 17%;
  height: 30%;
  border-radius: 0px;
  margin: 0px;
  -o-object-fit: contain;
     object-fit: contain;
}

.image {
  display: flex;
  justify-content: center;
  width: 100%;
}

img {
  width: 99%;
  height: minmax(190px, 300px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

h4 {
  font-weight: 400;
  font-family: roboto;
}

.line {
  height: 5px;
  width: 40px;
  background-color: #99E2D0;
  margin: -15px 0px 20px;
}

.price {
  font-weight: 700;
}

h5 {
  margin: 3px;
  font-weight: 900;
  font-family: roboto;
  font-size: 16px;
  padding: 8px 10px 0px;
}

@-webkit-keyframes food-card {
  0% {
    bottom: -100px;
  }
  100% {
    bottom: 0;
  }
}

@keyframes food-card {
  0% {
    bottom: -100px;
  }
  100% {
    bottom: 0;
  }
}
.menu-item:hover .check {
  width: 30px;
  background-color: #99E2D0;
  color: white;
  visibility: visible;
  z-index: 1;
  transform: translateX(-30px);
  transition: 2s;
  padding: 22px 14px;
  border-radius: 0px 20px 20px 0px;
  margin-right: -30px;
  margin-left: 6px;
}

.order {
  border-radius: 18px;
  background: linear-gradient(#FF79DA, #9356DC);
  width: 135px;
  height: 35px;
  color: white;
  padding: 10px 26px;
  font-size: 12px;
  align-self: center;
  border: none;
  box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.1);
  margin: 50px;
  position: relative;
  bottom: 10px;
}

h3 {
  font-family: shrikhand;
  color: white;
  margin-top: 0px;
  font-size: 15px;
  font-weight: unset;
}

.suggest {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 180px;
}

.become {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 159px;
}

i.fa-utensils {
  color: white;
  margin-right: 15px;
}

i.fa-hands-helping {
  color: white;
  margin-right: 15px;
}

.footer {
  display: flex;
  flex-direction: column;
  background-color: #292929;
  gap: 10px;
  padding: 30px;
}

a:link {
  text-decoration: none;
  color: white;
}/*# sourceMappingURL=bastille.css.map */