/* BUTTON HIGHLIGHT */
@keyframes anim1 {
  0%, 99% {
    opacity: 1;
    z-index: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes anim2 {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(0);
  }
}
/* FILLING HEART */
.checkbox:checked + label svg .heart {
  transform: scale(0.2);
  fill: url(#heartGradient);
  stroke: none;
  animation: animateHeart 0.3s linear forwards 0.25s;
}

@keyframes animateHeart {
  0% {
    transform: scale(0.2);
  }
  40% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animateHeartOut {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
/* DELAYED MENU */
.menu__container {
  opacity: 0;
  animation: slideUp 0.5s ease-out forwards;
}
.menu__container:nth-child(1) {
  animation-delay: 0.3s;
}
.menu__container:nth-child(2) {
  animation-delay: 0.6s;
}
.menu__container:nth-child(3) {
  animation-delay: 0.9s;
}
.menu__container:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* GREEN SELECT */
.meal {
  position: relative;
}
.meal:hover .meal__select,
.meal:hover .iconCheck, .meal:focus .meal__select,
.meal:focus .iconCheck {
  height: 100%;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.meal:hover .meal__price, .meal:focus .meal__price {
  margin-right: 65px;
  padding: 15px 15px 10px 15px;
}

/* UNROLLING HEADER ANIMATION */
@keyframes unrollFromBottom {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}
@keyframes unrollHeaderMobile {
  0% {
    height: 96px;
  }
  100% {
    height: 146px;
  }
}
@keyframes unrollHeader {
  0% {
    height: 63px;
  }
  100% {
    height: 113px;
  }
}
/* EXPLORE AND ORDER BUTTONS */
.intro__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  width: 218px;
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(360deg, #9356dc -11.44%, #ff79da 123.93%);
  color: white;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.5s;
}
.intro__btn:hover {
  opacity: 0.8;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.55);
}

.order__btn {
  width: 186px;
  height: 50px;
  align-self: center;
  justify-self: center;
  flex-shrink: 0;
}

/* HEART */
.svg__gradient svg {
  width: 0;
  height: 0;
  position: absolute;
}

.heart-svg {
  cursor: pointer;
  overflow: visible;
  width: 45px;
}

svg .heart {
  transform-origin: center;
  animation: animateHeartOut 0.3s linear forwards;
}

.checkbox {
  display: none;
}

/* "NEW" GREEN BADGE */
.restaurant__new-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 29px;
  flex-shrink: 0;
  border-radius: 2px;
  background-color: #99e2d0;
  color: #008766;
  font-weight: 500;
  position: absolute;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  top: 13px;
  right: 12px;
}

.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.726);
  z-index: 1000;
  opacity: 1;
  animation: fadeOut 0.3s 2s forwards;
}

.loader__rings {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #9356dc #9356dc transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader__rings::after {
  content: "";
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent #ff79da #ff79da;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0px;
  font-family: "Roboto", sans-serif;
}

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

.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
  background: #f6f6f6;
  gap: 30px;
  width: 100%;
}
@media (min-width: 1024px) {
  .intro {
    height: 240px;
    gap: 30px;
    padding: 0;
  }
}
.intro__title {
  font-size: 24px;
}
@media (min-width: 1024px) {
  .intro__title {
    font-size: 40px;
  }
}
.intro__title__text {
  font-size: 18px;
  font-weight: 300;
  color: #353535;
  line-height: normal;
}

.tutorial {
  padding: 48px 20px;
}
@media (min-width: 1024px) {
  .tutorial {
    padding: 50px 180px;
    min-width: 1024px;
    width: 100%;
  }
}
.tutorial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  padding: 25px 0;
}
@media (min-width: 1024px) {
  .tutorial__container {
    flex-direction: row;
    gap: 35px;
  }
}
.tutorial__container__step {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  width: 320px;
  height: 72px;
  border-radius: 20px;
  background: #f6f6f6;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  justify-content: stretch;
  gap: 30px;
}
.tutorial__container__step__nb {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  border-radius: 50%;
  background-color: #9356dc;
  margin-left: -12px;
}
.tutorial__container__step__icon {
  font-size: 20px;
  color: grey;
}
.tutorial__container__step__icon.purple {
  color: #9356dc;
}
.tutorial__container__step__icon.phone {
  font-size: 24px;
}

.restaurants {
  padding: 54px 20px;
  background-color: #f6f6f6;
  width: 100%;
}
@media (min-width: 1024px) {
  .restaurants {
    padding: 30px 180px;
  }
}
.restaurants__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .restaurants__container {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.restaurants__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  position: relative;
}
@media (min-width: 768px) {
  .restaurants__card {
    flex: 1 1 calc(49% - 18px);
  }
}
.restaurants__photo {
  height: 180px;
}
.restaurants__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.restaurants__description {
  display: flex;
  height: 70px;
  justify-content: space-between;
  align-items: center;
  padding: 0px 13px;
}
.restaurants__description__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 113px;
  flex-direction: column;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  animation: unrollHeader 1s ease-out forwards;
}
@media (min-width: 1024px) {
  .header {
    box-shadow: none;
    height: 146px;
    animation: unrollHeaderMobile 1s ease-out forwards;
  }
}
.header__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 63px;
  padding: 12px 0px 4px 0px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media (min-width: 1024px) {
  .header__banner {
    box-shadow: none;
    height: 96px;
  }
}
.header__banner__logo {
  width: 162px;
  height: 44px;
}
@media (min-width: 1024px) {
  .header__banner__logo {
    width: 200px;
    height: 54px;
  }
}
.header__location {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  gap: 17px;
  top: calc(100% - 50px);
  background-color: #eaeaea;
  overflow: hidden;
  animation: 0.5s unrollFromBottom ease-out;
}
.header.homepage .header__arrowback {
  display: none;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #353535;
  padding: 22px 25px;
  color: white;
  width: 100%;
}
@media (min-width: 1024px) {
  .footer {
    flex-direction: row-reverse;
    height: 114px;
    gap: 90px;
    padding: 30px 70px;
    align-items: flex-end;
  }
}
.footer__title {
  font-family: "Shrikhand", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .footer__title {
    font-style: normal;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media (min-width: 1024px) {
  .footer__list {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 16px;
    gap: 13px;
  }
}
.footer__list li {
  list-style-type: none;
}
@media (min-width: 1024px) {
  .footer__list li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .footer__list li:nth-child(-n+2) {
    font-weight: 500;
  }
}
@media (min-width: 1024px) {
  .footer__list li:nth-child(3) {
    margin-left: 30px;
  }
}
.footer__icon {
  width: 13px;
  fill: white;
}
.footer__icon.fa {
  font-size: 13px;
}

.header__menuPage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 63px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .header__menuPage {
    height: 96px;
  }
}
.header__menuPage__back {
  position: absolute;
  left: 20px;
}
.header__menuPage__banner img {
  height: 44px;
  width: 162px;
}

.heroBanner__img {
  width: 100%;
  object-fit: cover;
  height: 275px;
}
@media (min-width: 1024px) {
  .heroBanner__img {
    height: 384px;
  }
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f6f6f6;
  border-radius: 50px 50px 0px 0px;
  position: relative;
  gap: 40px;
  padding: 35px 0px 40px 0px;
  margin-top: -65px;
  width: 100%;
  max-width: 1055px;
}
@media (min-width: 1024px) {
  .menu {
    padding: 35px 0px 40px 0px;
  }
}
.menu__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0px 17px;
  margin-bottom: -13px;
}
@media (min-width: 1024px) {
  .menu__title {
    gap: 20px;
  }
}
.menu__title h1 {
  font-family: "Shrikhand", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #101010;
}
.menu__title svg {
  height: 45px;
  width: 45px;
}
.menu__container {
  opacity: 0;
  animation: slideUp 0.5s ease-out forwards;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px 13px;
  width: 100%;
  max-width: 634px;
}
.menu__container__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.menu__container__underline {
  background-color: #99e2d0;
  width: 40px;
  height: 3px;
}

.meal {
  display: flex;
  width: 100%;
  height: 69px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  overflow: hidden;
}
.meal__price {
  font-weight: 700;
  align-self: flex-end;
  padding: 15px 15px 10px 5px;
  transition: margin-right 0.4s ease-in-out;
}
.meal__select {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0px;
  height: 0px;
  padding: 0px;
  background-color: #99e2d0;
  color: white;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  transition: width 0.4s ease-in-out;
}
.meal__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  font-weight: 300;
  padding: 15px 0px 0px 15px;
  flex: 1;
  overflow: hidden;
}
.meal__info__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meal__info__side {
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.iconCheck {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  background-color: #99e2d0;
  color: white;
}

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