@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 375px;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.header {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
}
@media (min-width: 1024px) {
  .header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}
@media (min-width: 768px) {
  .header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}
.header .shadow {
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.21);
}
.header .logo-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 10px;
}
.header .logo-header span a {
  font-family: "Shrikhand", sans-serif;
  font-size: 30px;
}
.header .logo-header a {
  color: black;
}
.header .logo-header .return {
  position: absolute;
  left: 10px;
}
.header .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: #eaeaea;
  gap: 10px;
}
.header .location span,
.header .location h1 {
  font-size: 18px;
}
@media (min-width: 1024px) {
  .header .location {
    position: absolute;
    right: 0px;
    bottom: -5px;
    background-color: transparent;
    width: -webkit-fit-content;
    width: fit-content;
    width: -moz-fit-content;
  }
  .header .location span,
.header .location h1 {
    font-size: 15px;
    color: #2b2b2b;
  }
}
@media (min-width: 768px) {
  .header .location {
    position: absolute;
    right: 0px;
    bottom: -5px;
    background-color: transparent;
    width: -webkit-fit-content;
    width: fit-content;
    width: -moz-fit-content;
  }
  .header .location span,
.header .location h1 {
    font-size: 15px;
    color: #2b2b2b;
  }
}

.how-it-works {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .how-it-works {
    padding: 30px 0;
  }
}
@media (min-width: 882px) {
  .how-it-works {
    padding: 30px 0;
  }
}
.how-it-works h1 {
  margin: 15px 0 30px 0;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}
.how-it-works .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 98%;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  gap: 22px;
  margin-left: 10px;
  margin-bottom: 40px;
}
@media (min-width: 1324px) {
  .how-it-works .cards {
    width: 1500px;
  }
}
.how-it-works .cards .how-it-works-card {
  width: 100%;
  background-color: #f6f6f6;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  padding: 28px 25px;
  gap: 22px;
  -webkit-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.21);
  -webkit-transition: -webkit-box-shadow 250ms ease-in-out;
  transition: -webkit-box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, -webkit-box-shadow 250ms ease-in-out;
}
@media (min-width: 768px) {
  .how-it-works .cards .how-it-works-card {
    width: 31%;
    height: 200px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px 25px;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .how-it-works .cards .how-it-works-card {
    width: 260px;
    height: 200px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px 25px;
    gap: 15px;
  }
  .how-it-works .cards .how-it-works-card:hover {
    -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 882px) {
  .how-it-works .cards .how-it-works-card {
    width: 260px;
    height: 200px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px 25px;
    gap: 15px;
  }
  .how-it-works .cards .how-it-works-card:hover {
    -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.5);
  }
}
.how-it-works .cards .how-it-works-card span {
  position: absolute;
  top: 37.5px;
  left: -15px;
  width: 25px;
  height: 25px;
  background-color: #9356dc;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 200;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .how-it-works .cards .how-it-works-card span {
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .how-it-works .cards .how-it-works-card span {
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.how-it-works .cards .how-it-works-card svg,
.how-it-works .cards .how-it-works-card i {
  font-size: 18px;
  color: #9a9a9a;
}
@media (min-width: 1024px) {
  .how-it-works .cards .how-it-works-card svg,
.how-it-works .cards .how-it-works-card i {
    display: none;
  }
}
@media (min-width: 768px) {
  .how-it-works .cards .how-it-works-card svg,
.how-it-works .cards .how-it-works-card i {
    display: none;
  }
}
.how-it-works .cards .how-it-works-card p {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
@media (min-width: 1024px) {
  .how-it-works .cards .how-it-works-card:nth-child(1) {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .how-it-works .cards .how-it-works-card:nth-child(1)::after {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.397));
            filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.397));
    content: "";
    width: 125px;
    height: 125px;
    background: transparent url("https://raw.githubusercontent.com/matfreitasc/ohmyfood_project_3/master/images/custom-icons/card.svg") no-repeat center;
  }
}
@media (min-width: 768px) {
  .how-it-works .cards .how-it-works-card:nth-child(1) {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .how-it-works .cards .how-it-works-card:nth-child(1)::after {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.397));
            filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.397));
    content: "";
    width: 125px;
    height: 125px;
    background: transparent url("https://raw.githubusercontent.com/matfreitasc/ohmyfood_project_3/master/images/custom-icons/card.svg") no-repeat center;
  }
}
@media (min-width: 1024px) {
  .how-it-works .cards .how-it-works-card:nth-child(2) {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .how-it-works .cards .how-it-works-card:nth-child(2)::after {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(59, 59, 59, 0.1));
            filter: drop-shadow(0px 0px 6px rgba(59, 59, 59, 0.1));
    content: "";
    width: 125px;
    height: 125px;
    background: transparent url("https://raw.githubusercontent.com/matfreitasc/ohmyfood_project_3/master/images/custom-icons/menu.svg") no-repeat center;
  }
}
@media (min-width: 768px) {
  .how-it-works .cards .how-it-works-card:nth-child(2) {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .how-it-works .cards .how-it-works-card:nth-child(2)::after {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(59, 59, 59, 0.1));
            filter: drop-shadow(0px 0px 6px rgba(59, 59, 59, 0.1));
    content: "";
    width: 125px;
    height: 125px;
    background: transparent url("https://raw.githubusercontent.com/matfreitasc/ohmyfood_project_3/master/images/custom-icons/menu.svg") no-repeat center;
  }
}
.how-it-works .cards .how-it-works-card:nth-child(3) {
  background-color: #f5edff;
}
.how-it-works .cards .how-it-works-card:nth-child(3) svg,
.how-it-works .cards .how-it-works-card:nth-child(3) i {
  color: #a877e3;
}
@media (min-width: 1024px) {
  .how-it-works .cards .how-it-works-card:nth-child(3) {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .how-it-works .cards .how-it-works-card:nth-child(3)::after {
    content: "";
    width: 125px;
    height: 125px;
    background: transparent url("https://raw.githubusercontent.com/matfreitasc/ohmyfood_project_3/master/images/custom-icons/restaurant.svg") no-repeat center;
  }
}
@media (min-width: 768px) {
  .how-it-works .cards .how-it-works-card:nth-child(3) {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .how-it-works .cards .how-it-works-card:nth-child(3)::after {
    content: "";
    width: 125px;
    height: 125px;
    background: transparent url("https://raw.githubusercontent.com/matfreitasc/ohmyfood_project_3/master/images/custom-icons/restaurant.svg") no-repeat center;
  }
}

.restaurants {
  width: 100%;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 60px;
}
.restaurants h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin: 52px 0px 0px 20px;
}
@media (min-width: 1024px) {
  .restaurants {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .restaurants h2 {
    font-size: 35px;
    margin: 25px 0px 30px 0px;
  }
}
@media (min-width: 768px) {
  .restaurants {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .restaurants h2 {
    font-size: 35px;
    margin: 25px 0px 30px 0px;
  }
}

.restaurants-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 22px 20px 0px 20px;
  gap: 28px;
}
@media (min-width: 1024px) {
  .restaurants-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) {
  .restaurants-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) {
  .restaurants-cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.restaurants-cards .card {
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
  transition: -webkit-transform 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
  transition: transform 350ms ease-in-out, box-shadow 350ms ease-in-out;
  transition: transform 350ms ease-in-out, box-shadow 350ms ease-in-out, -webkit-transform 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.25);
  position: relative;
}
@media (min-width: 1024px) {
  .restaurants-cards .card {
    width: 300px;
  }
  .restaurants-cards .card:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    z-index: 10;
    -webkit-box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 768px) {
  .restaurants-cards .card {
    width: 300px;
  }
  .restaurants-cards .card:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    z-index: 10;
    -webkit-box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.4);
  }
}
.restaurants-cards .card .card-image {
  width: 100%;
  height: 175px;
  -webkit-transition: height 150ms ease-in-out;
  transition: height 150ms ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  border-radius: 12px 12px 0px 0px;
}
@media (min-width: 375px) {
  .restaurants-cards .card .card-image {
    height: 225px;
  }
}
@media (min-width: 425px) {
  .restaurants-cards .card .card-image {
    height: 225px;
  }
}
.restaurants-cards .card:nth-child(2) .card-image {
  -o-object-position: center -148px;
     object-position: center -148px;
}
@media (min-width: 1024px) {
  .restaurants-cards .card:nth-child(2) .card-image {
    -o-object-position: center -48px;
       object-position: center -48px;
  }
}
@media (min-width: 768px) {
  .restaurants-cards .card:nth-child(2) .card-image {
    -o-object-position: center -48px;
       object-position: center -48px;
  }
}
.restaurants-cards .card-content {
  padding: 10px;
  height: 41px;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
}
.restaurants-cards .card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.restaurants-cards .card-content p {
  font-size: 16px;
  font-weight: 200;
  color: #767676;
}

.main-book {
  background-color: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 40px 30px;
  gap: 40px;
}
.main-book .menu-explore-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#9356dc), to(#ff79da));
  background: linear-gradient(0deg, #9356dc 0%, #ff79da 100%);
  border: none;
  width: 218px;
  height: 50px;
  border-radius: 50px;
  font-size: 16px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 250ms ease-in-out;
  transition: -webkit-box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, -webkit-box-shadow 250ms ease-in-out;
  cursor: pointer;
}
.main-book .menu-explore-button:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.575);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.575);
}
.main-book h1 {
  font-size: 24px;
  font-weight: 700;
}
.main-book p {
  font-size: 18px;
  font-weight: 200;
  text-align: center;
  color: #6a6a6a;
}

.menu-tittle {
  padding: 30px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.menu-tittle h2 {
  font-size: 25px;
  font-family: "Shrikhand", sans-serif;
}
@media (min-width: 425px) {
  .menu-tittle h2 {
    font-size: 30px;
  }
}

.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
}

.menu-container {
  position: relative;
  top: -55px;
  width: 100%;
  margin: auto;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  z-index: 1;
  border-radius: 40px 40px 0px 0px;
  background-color: white;
  padding: 0 15px 15px 15px;
}
@media (min-width: 1024px) {
  .menu-container {
    width: 80%;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .menu-container {
    width: 80%;
    margin: auto;
  }
}

@media (min-width: 1024px) {
  .restaurant-image {
    width: 100%;
    height: 275px;
  }
}
@media (min-width: 768px) {
  .restaurant-image {
    width: 100%;
    height: 275px;
  }
}
.restaurant-image img {
  -webkit-transition: ease-in-out 1s;
  transition: ease-in-out 1s;
  width: 100%;
  height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
@media (min-width: 1024px) {
  .restaurant-image img {
    width: 100%;
    height: 300px;
  }
}
@media (min-width: 768px) {
  .restaurant-image img {
    width: 100%;
    height: 300px;
  }
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 197px;
  background-color: #f6f6f6;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  background-color: #353535;
  padding: 22px 25px;
}
footer .logo {
  font-size: 18px;
  color: white;
  font-family: "Shrikhand", sans-serif;
  margin-bottom: 18px;
}
footer .footer-list li {
  list-style: none;
  margin-bottom: 8px;
}
footer .footer-list li a {
  color: white;
  font-size: 16px;
  text-decoration: none;
}
footer .footer-list li a i,
footer .footer-list li a svg {
  width: 12px;
  height: 12px;
  font-size: 12px;
  margin-right: 12px;
}

.new {
  position: relative;
}
.new::before {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 90px;
  height: 30px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  color: #2b6d5c;
  background-color: #99e2d0;
  content: "New";
}

.card-content-like-button {
  position: relative;
  margin-left: auto;
  margin-right: 20px;
  bottom: 25px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .card-content-like-button {
    bottom: 25px;
  }
}
@media (min-width: 768px) {
  .card-content-like-button {
    bottom: 25px;
  }
}
.card-content-like-button input[type=checkbox] {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
}
.card-content-like-button input[type=checkbox] + label i,
.card-content-like-button input[type=checkbox] + label svg {
  font-size: 24px;
  color: black;
}
.card-content-like-button input[type=checkbox] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: "font awesome 5 free";
  color: black;
  content: "";
  cursor: pointer;
}
.card-content-like-button input[type=checkbox]:checked + label::before, .card-content-like-button input[type=checkbox]:hover + label::before {
  inset: -2px 0 0 0;
  font-size: 24px;
  -webkit-animation: fill-in 1s cubic-bezier(0.54, 0.24, 0, 1.04) forwards;
          animation: fill-in 1s cubic-bezier(0.54, 0.24, 0, 1.04) forwards;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #ff79da 0%, #9356dc 100%);
  background-clip: text;
  background-color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  content: "";
  /* fa-heart */
}

.loading-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  overflow: hidden;
  -webkit-animation: loading-fade 1.8s ease-in-out 4s forwards;
          animation: loading-fade 1.8s ease-in-out 4s forwards;
}
.loading-overlay .loader {
  position: relative;
  border-radius: 50%;
  border: 5px solid #ffffff;
}
.loading-overlay .loader span {
  position: relative;
  display: inline-block;
  font-family: "Shrikhand", sans-serif;
  font-size: 40px;
}
.loading-overlay .loader span:nth-child(1) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.1s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.1s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}
.loading-overlay .loader span:nth-child(2) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.2s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.2s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}
.loading-overlay .loader span:nth-child(3) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.3s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.3s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}
.loading-overlay .loader span:nth-child(4) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.4s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.4s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}
.loading-overlay .loader span:nth-child(5) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.5s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.5s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}
.loading-overlay .loader span:nth-child(6) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.6s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.6s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}
.loading-overlay .loader span:nth-child(7) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.7s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.7s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}
.loading-overlay .loader span:nth-child(8) {
  -webkit-animation: text-jump 1.8s ease-in-out 0.8s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
          animation: text-jump 1.8s ease-in-out 0.8s forwards 3, loading-fade 1.8s ease-in-out 3.5s forwards;
}

.menu-tittle-like-button {
  position: relative;
  width: 26px;
  height: 26px;
  cursor: pointer;
  margin-right: 35px;
}
.menu-tittle-like-button input[type=checkbox] {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.menu-tittle-like-button input[type=checkbox] + label i,
.menu-tittle-like-button input[type=checkbox] + label svg {
  font-size: 24px;
  color: black;
}
.menu-tittle-like-button input[type=checkbox] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: "font awesome 5 free";
  color: black;
  content: "";
  cursor: pointer;
}
.menu-tittle-like-button input[type=checkbox]:checked + label::before, .menu-tittle-like-button input[type=checkbox]:hover + label::before {
  font-size: 24px;
  -webkit-animation: fill-in 1s cubic-bezier(0.54, 0.24, 0, 1.04) forwards;
          animation: fill-in 1s cubic-bezier(0.54, 0.24, 0, 1.04) forwards;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #ff79da 0%, #9356dc 100%);
  background-clip: text;
  background-color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  content: "";
  /* fa-heart */
}

.menu-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 15px;
  margin: 15px 0px 0px 0px;
}
.menu-cards .cards {
  width: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.205);
          box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.205);
  padding: 12px 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
}
.menu-cards .cards:nth-child(1) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(2) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(3) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(4) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(5) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(6) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(7) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(8) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(9) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(10) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(11) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(12) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(13) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards:nth-child(14) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.menu-cards .cards .item-name {
  width: 80%;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}
.menu-cards .cards .item-description {
  width: 75%;
  font-size: 15px;
  font-weight: 200;
  color: #000000;
}
.menu-cards .cards .add-to-cart {
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.menu-cards .cards .add-to-cart input[type=checkbox] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  opacity: 1;
  cursor: pointer;
  border-radius: 0 0 15px;
  overflow: hidden;
}
.menu-cards .cards .add-to-cart input[type=checkbox]::before {
  width: 60px;
  height: 100%;
  position: absolute;
  right: -60px;
  content: "";
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: #99e2d0;
}
.menu-cards .cards .add-to-cart input[type=checkbox]::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  color: white;
  position: absolute;
  right: -30px;
  content: "";
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.menu-cards .cards .add-to-cart label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  right: 0px;
  top: 35px;
  margin-right: 26px;
  padding: 2px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: white;
  overflow: hidden;
}
.menu-cards .cards .add-to-cart label::before {
  content: "...";
  margin-right: 10px;
  opacity: 0;
  display: none;
  position: relative;
  -webkit-transition: opacity 130ms ease-in-out 0.18s;
  transition: opacity 130ms ease-in-out 0.18s;
}
.menu-cards .cards .add-to-cart input[type=checkbox]:checked::after {
  right: 20px;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.menu-cards .cards .add-to-cart input[type=checkbox]:checked::before {
  background-color: #99e2d0;
  right: 0px;
}
@media (min-width: 1024px) {
  .menu-cards .cards .add-to-cart input[type=checkbox]:hover::after {
    right: 20px;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  .menu-cards .cards .add-to-cart input[type=checkbox]:hover::before {
    background-color: #99e2d0;
    right: 0px;
  }
}
@media (min-width: 1024px) {
  .menu-cards .cards .add-to-cart input[type=checkbox]:hover::after {
    -webkit-animation: shake 1s ease-in-out infinite alternate;
            animation: shake 1s ease-in-out infinite alternate;
  }
}
.menu-cards .cards .add-to-cart input[type=checkbox]:checked::after {
  -webkit-animation: shake 0s;
          animation: shake 0s;
}
.menu-cards .cards .add-to-cart input[type=checkbox]:checked + label {
  right: 45px;
}
.menu-cards .cards .add-to-cart input[type=checkbox]:checked + .big-text::before {
  display: inline-block;
  opacity: 1;
}
@media (min-width: 1024px) {
  .menu-cards .cards .add-to-cart input[type=checkbox]:hover + label {
    right: 45px;
  }
}

.order-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0;
  opacity: 0;
  -webkit-animation: cards-loading 1s ease-in-out forwards 5.6s;
          animation: cards-loading 1s ease-in-out forwards 5.6s;
}
.order-button .button {
  padding: 16px 70px;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(#9356dc), to(#ff79da));
  background: linear-gradient(0deg, #9356dc 0%, #ff79da 100%);
  border-radius: 25px;
  color: white;
  font-size: 16px;
  border-style: none;
  -webkit-transition: -webkit-box-shadow 350ms ease-in-out;
  transition: -webkit-box-shadow 350ms ease-in-out;
  transition: box-shadow 350ms ease-in-out;
  transition: box-shadow 350ms ease-in-out, -webkit-box-shadow 350ms ease-in-out;
  -webkit-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.4);
  z-index: 1;
  cursor: pointer;
}
.order-button .button::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 25px;
  -webkit-transform: scale(0);
          transform: scale(0);
  background: white;
  opacity: 0.2;
}
.order-button .button:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.575);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.575);
}
.order-button .button:hover::after {
  -webkit-animation: scale-up 2s ease-in-out infinite 0.1s;
          animation: scale-up 2s ease-in-out infinite 0.1s;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes fill-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes fill-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes text-jump {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translateY(0);
            transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-55px);
            transform: scale(0.9, 1.1) translateY(-55px);
  }
  50% {
    -webkit-transform: scale(1.05, 0.95) translateY(0);
            transform: scale(1.05, 0.95) translateY(0);
  }
  58% {
    -webkit-transform: scale(1, 1) translateY(-7px);
            transform: scale(1, 1) translateY(-7px);
  }
  65% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@keyframes text-jump {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translateY(0);
            transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-55px);
            transform: scale(0.9, 1.1) translateY(-55px);
  }
  50% {
    -webkit-transform: scale(1.05, 0.95) translateY(0);
            transform: scale(1.05, 0.95) translateY(0);
  }
  58% {
    -webkit-transform: scale(1, 1) translateY(-7px);
            transform: scale(1, 1) translateY(-7px);
  }
  65% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@-webkit-keyframes loading-fade {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0%;
    overflow: visible;
    visibility: hidden;
  }
}
@keyframes loading-fade {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0%;
    overflow: visible;
    visibility: hidden;
  }
}
@-webkit-keyframes cards-loading {
  0% {
    -webkit-transform: translatey(10px);
            transform: translatey(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
    opacity: 1;
  }
}
@keyframes cards-loading {
  0% {
    -webkit-transform: translatey(10px);
            transform: translatey(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
    opacity: 1;
  }
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  100% {
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  100% {
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
}
.dish-types {
  font-size: 16px;
  font-weight: 200;
  color: #000000;
  margin: 22px 0px 0px 5px;
  opacity: 0;
}
.dish-types:nth-child(1) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(2) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(3) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(4) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(5) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(6) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(7) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(8) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(9) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(10) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(11) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(12) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(13) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types:nth-child(14) {
  -webkit-animation-name: cards-loading;
          animation-name: cards-loading;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.dish-types::after {
  content: "";
  background-color: #99e2d0;
  display: block;
  position: relative;
  left: -2px;
  width: 40px;
  height: 4px;
}