@keyframes card-arrival {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes disappear {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes grow-shrink {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
.header__meal {
  font-family: "Shrikhand", sans-serif;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  padding: 30px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__meal i {
  font-size: 20px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.header__meal--title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  width: calc(100% - 120px);
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__meal--title h1 {
  margin: 0;
}
.header__meal--logo {
  display: none;
}

.small-padding .header__meal {
  padding: 30px 20px;
}

@media (min-width: 1024px) {
  .header__meal {
    padding: 20px 0;
  }
  .header__meal--title {
    display: none;
  }
  .header__meal--logo {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
  .header__meal i {
    left: 40px;
  }
  .small-padding .header__meal {
    padding: 15px 20px;
  }
}
.city_location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #F3F3F3;
  text-align: center;
  padding: 0.5rem;
  height: 50px;
}
.city_location i {
  margin-left: -7px;
}
.city_location h2 {
  font-size: 1rem;
}
.city_location input {
  border: none;
  background-color: #F3F3F3;
  height: 40px;
  width: 115px;
}
.city_location input::placeholder {
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: black;
  text-align: center;
}

.explorer {
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 39px 45px 57px 45px;
}
.explorer__text {
  text-align: center;
  margin-bottom: 25px;
}
.explorer__text p {
  margin-bottom: 0;
}
.explorer button {
  background: linear-gradient(360deg, rgb(147, 86, 220) -11%, rgb(255, 121, 218) 123%);
  color: white;
  border-radius: 25px;
  height: 50px;
  width: 218px;
  font-size: 16px;
  border: none;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.explorer button:hover {
  background: linear-gradient(356deg, rgb(167.6865671642, 110.0597014925, 224.4402985075) 0%, rgb(180.4371257485, 146.5449101796, 221.9550898204) 33%, rgb(255, 146.5, 225.0410447761) 100%);
}

.functioning {
  margin: 48px 20px 68px 20px;
}
.functioning__card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}
.functioning__card--content {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  background-color: #f6f6f6;
  height: 72px;
  margin-left: 12px;
}
.functioning__card--content p {
  border: 1px solid #9356DC;
  border-radius: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9356DC;
  color: white;
  position: relative;
  right: 13px;
}
.functioning__card--content i {
  margin-right: 27px;
  margin-left: 10px;
  font-size: 20px;
  display: flex;
  color: #7e7e7e;
}
.functioning__card--content .fa-store {
  color: #9356DC;
}
.functioning__card--content h3 {
  font-size: 16px;
}

@media (min-width: 1024px) {
  .functioning {
    display: flex;
  }
  .functioning__section {
    margin-left: auto;
    margin-right: auto;
  }
  .functioning__card {
    flex-direction: row;
    justify-content: center;
  }
  .functioning__card--content {
    width: 300px;
  }
  .functioning__card--content h3 {
    margin-top: 25px;
  }
}
.restaurant {
  padding: 54px 20px 66px 20px;
  background-color: #f6f6f6;
}
.restaurant h2 {
  margin-bottom: 20px;
}
.restaurant .card {
  height: 251px;
  background-color: white;
  border-radius: 20px;
  margin-top: 18px;
  position: relative;
}
.restaurant .card i {
  position: absolute;
  right: 7%;
  bottom: 12%;
}
.restaurant .card img {
  position: relative;
}
.restaurant .card img {
  height: 174px;
  object-position: 50% 60%;
  border-radius: 20px 20px 0 0;
  display: flex;
  margin: 0;
}
.restaurant .card__img--sticker {
  position: absolute;
  right: 5%;
  top: 10%;
  color: #008766;
  border: 1px solid none;
  background-color: #99E2D0;
  padding: 7px 9px;
  margin: 0;
  border-radius: 2px;
}
.restaurant .card__content {
  height: 77px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.restaurant .card__content--txt {
  padding: 15px 0 12px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.restaurant .card__content--title {
  font-size: 18px;
  margin: 0;
  padding-bottom: 5px;
}
.restaurant .card__content--place {
  font-size: 17px;
  margin: 0;
}
.restaurant .card__content--heart {
  display: flex;
  align-items: center;
  font-size: 25px;
  padding-right: 25px;
  cursor: pointer;
}
.restaurant .card__content--heart .fa-regular {
  color: grey;
  transition: opacity 800ms;
}
.restaurant .card__content--heart .fa-full {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(180deg, rgb(147, 86, 220) -11%, rgb(255, 121, 218) 123%);
  opacity: 0;
  transition: opacity 800ms;
  cursor: pointer;
}
.restaurant .card__content--heart .fa-full:active {
  opacity: 1;
}
.restaurant .card__content--heart input.heart-toggle:checked ~ .fa-regular {
  display: none;
}
.restaurant .card__content--heart input.heart-toggle:checked ~ .fa-full {
  opacity: 1;
}

@media (min-width: 1024px) {
  .restaurant {
    display: flex;
  }
  .restaurant__section {
    margin-left: auto;
    margin-right: auto;
  }
  .restaurant__section h2 {
    margin-left: 160px;
    margin-top: -20px;
    margin-bottom: 5px;
  }
  .restaurant__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
  }
  .restaurant .card {
    width: 450px;
    height: 251px;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 40px;
  }
}
.footer {
  padding: 22px 25px;
  background-color: #363636;
}
.footer__logo img {
  width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
  height: auto;
  filter: invert(100%);
}
.footer__list--content {
  list-style: none;
  color: white;
  margin-bottom: 0;
  margin-top: 5px;
  padding: 0;
}
.footer__list-li {
  margin-top: 7px;
}
.footer__list-li i {
  margin-right: 11px;
}
.footer__list i {
  margin-right: 10px;
  font-size: 11px;
}

@media (min-width: 1024px) {
  .footer {
    display: flex;
    flex-direction: row-reverse;
  }
  .footer__logo img {
    margin-left: 60px;
    margin-top: 30px;
  }
  .footer__list {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .footer__list--content {
    padding: 5px;
    margin-left: 5px;
  }
}
.meal {
  position: relative;
}
.meal img {
  width: 100%;
  height: auto;
  max-height: 281px;
}
.meal__section {
  width: 83%;
  max-width: 400px;
  margin: -50px auto 0;
  border-radius: 40px 40px 0 0;
  background: #f6f6f6;
  padding: 2rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.meal__section h2 {
  font-style: italic;
  font-family: "Shrikhand", sans-serif;
  font-weight: 400;
  font-size: 22px;
  margin-top: -1px;
}
.meal__section--title-mobile h2 {
  display: block;
  margin-top: -5px;
  margin-left: 10%;
}
.meal__section--title-desktop h1 {
  display: none;
}
.meal__section--title i {
  position: absolute;
  right: 7%;
  top: 36px;
  margin-right: 25px;
}
.meal__section--heart {
  display: flex;
  align-items: center;
  font-size: 25px;
  padding-right: 25px;
  cursor: pointer;
}
.meal__section--heart .fa-regular {
  color: grey;
  transition: opacity 800ms;
  font-size: 22px;
}
.meal__section--heart .fa-full {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(180deg, rgb(147, 86, 220) -11%, rgb(255, 121, 218) 123%);
  opacity: 0;
  transition: opacity 800ms;
  cursor: pointer;
}
.meal__section--heart .fa-full:active {
  opacity: 1;
}
.meal__section--heart input.heart-toggle:checked ~ .fa-regular {
  display: none;
}
.meal__section--heart input.heart-toggle:checked ~ .fa-full {
  opacity: 1;
}
.meal__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.meal__card--animation1 {
  animation: card-arrival 1000ms ease-in-out backwards;
}
.meal__card--animation2 {
  animation: card-arrival 1000ms ease-in-out backwards;
  animation-delay: 500ms;
}
.meal__card--animation3 {
  animation: card-arrival 1000ms ease-in-out backwards;
  animation-delay: 800ms;
}
.meal__card--text {
  margin-top: 35px;
}
.meal__card--text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  border-bottom: 3px solid #99E2D0;
  width: 40px;
}
.meal__card--wrapper {
  position: relative;
  width: 100%;
}
.meal__card--wrapper .check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  z-index: -1;
}
.meal__card--wrapper .meal__card--clickzone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.meal__card--wrapper .meal__card--content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 10px 0 10px 0;
  width: 340px;
  box-shadow: 1px 1px 1px grey;
  animation: appear 1s;
}
.meal__card--wrapper .meal__card--content-description {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
  flex: 1;
  overflow: hidden;
}
.meal__card--wrapper .meal__card--content-description h3,
.meal__card--wrapper .meal__card--content-description p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meal__card--wrapper .meal__card--content-description h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.meal__card--wrapper .meal__card--content-description p {
  font-size: 15px;
}
.meal__card--wrapper .meal__card--content-price {
  display: flex;
  padding: 15px;
  margin-right: -50px;
  transition: margin-right 0.4s ease;
}
.meal__card--wrapper .meal__card--content-price p {
  display: flex;
  align-items: flex-end;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.meal__card--wrapper .meal__card--content-check {
  background-color: #99E2D0;
  height: 75px;
  width: 60px;
  border-radius: 0 20px 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease, margin-right 0.4s ease, margin-left 0.4s ease;
  margin: 0;
  margin-bottom: 0;
}
.meal__card--wrapper .meal__card--content-check i {
  font-size: 20px;
  color: white;
  margin-left: auto;
  margin-right: auto;
}
.meal__card--wrapper .check:checked ~ .meal__card--content .meal__card--content-check {
  opacity: 1;
  transform: translateX(0);
  margin-right: -1px;
  margin-bottom: 0;
}
.meal__card--wrapper .check:checked ~ .meal__card--content .meal__card--content-price {
  margin-right: 5px;
}
.meal .order {
  margin-left: 40px;
  margin-top: 30px;
}
.meal .order button {
  background: linear-gradient(360deg, rgb(147, 86, 220) -11%, rgb(255, 121, 218) 123%);
  color: white;
  border-radius: 25px;
  height: 50px;
  width: 218px;
  font-size: 16px;
  border: none;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.meal .order button:hover {
  background: linear-gradient(356deg, rgb(167.6865671642, 110.0597014925, 224.4402985075) 0%, rgb(180.4371257485, 146.5449101796, 221.9550898204) 33%, rgb(255, 146.5, 225.0410447761) 100%);
}
@media (min-width: 1024px) {
  .meal img {
    max-height: 383px;
  }
  .meal__section {
    max-width: 1055px;
  }
  .meal__section--heart {
    margin-left: 35%;
  }
  .meal__section i {
    margin-right: 33%;
    margin-top: -3px;
  }
  .meal__section--title {
    margin-left: 37%;
  }
  .meal__section--title-mobile h2 {
    display: none;
  }
  .meal__section--title-desktop h1 {
    display: block;
    font-style: italic;
    font-family: "Shrikhand", sans-serif;
    font-weight: 400;
    font-size: 22px;
    margin-top: -5px;
    margin-left: -40px;
  }
  .meal__card .meal__card--content {
    flex-direction: row;
    width: 634px;
  }
  .meal__card .meal__card--content-description {
    width: 50%;
    padding: 15px;
  }
  .meal__card .meal__card--content-price {
    padding: 15px;
    margin-right: -50px;
    font-size: 15px;
  }
  .meal__card .meal__card--content-check {
    opacity: 0;
    transform: translateX(100%);
    height: 75px;
    width: 60px;
    margin-right: 0;
    margin-left: 0;
  }
  .meal .order {
    margin-left: 35%;
    margin-top: 10px;
  }
}

body {
  font-family: "Roboto", sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-container {
  min-width: 320px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  object-fit: cover;
  width: 100%;
}

.loader__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: #ffffff;
  inset: 0;
  z-index: 1;
  opacity: 0.9;
  transform-origin: top;
  animation: disappear 200ms 3s forwards;
}
.loader__container .loader {
  display: flex;
  gap: 20px;
}
.loader__container .loader div:nth-child(1) i {
  animation-delay: 0s;
}
.loader__container .loader div:nth-child(2) i {
  animation-delay: 0.3s;
}
.loader__container .loader div:nth-child(3) i {
  animation-delay: 0.6s;
}
.loader__container .loader i {
  animation: grow-shrink 1.5s infinite ease-in-out;
  color: #9356DC;
}

/*# sourceMappingURL=style.css.map */
