@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 63px;
  background: #fff;
}
header img {
  height: 36px;
  width: 197px;
}
header.header-with-arrow {
  position: relative;
}
header.header-with-arrow a {
  color: inherit;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  left: 24px;
}

footer {
  background: #353535;
  color: #fff;
}
footer > div {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer > div img {
  filter: invert(100%) sepia(100%) hue-rotate(180deg);
  height: 18px;
  width: 130px;
}
footer > div nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer > div nav a {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  color: #fff;
  text-decoration: none;
}
footer > div nav a i {
  font-size: 12px;
  margin-right: 4px;
}

@media (min-width: 1024px) {
  footer > div {
    padding: 24px;
    height: 114px;
    flex-direction: row-reverse;
    gap: 50px;
    align-items: flex-end;
  }
  footer > div nav {
    flex-direction: row;
    align-items: flex-end;
  }
  footer > div nav a:nth-child(2) {
    margin-right: 50px;
  }
}
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlay-fade-out 0.5s ease-out 3.5s forwards;
}

.loading-backdrop {
  position: absolute;
  inset: 0;
  background-color: #fff;
  animation: overlay-fade-out 0.5s ease-out 3.5s forwards;
}

.loading-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: content-fade-out 0.5s ease-out 3.5s forwards;
}

.utensils-container {
  position: relative;
  width: 200px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.utensils-body {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.utensils-icon {
  font-size: 80px;
  color: #353535;
  animation: utensils-bounce 3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s infinite, icon-scale-down 0.5s ease-out 3.5s forwards;
}

.progress-bar-container {
  width: 180px;
  height: 6px;
  background-color: #f6f6f6;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
  animation: progress-fade-out 0.5s ease-out 3s forwards;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #353535;
  border-radius: 3px;
  animation: progress-fill 3s ease-in-out forwards;
}

@keyframes utensils-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
}
@keyframes progress-fill {
  0% {
    width: 0;
  }
  50% {
    width: 90%;
  }
  90% {
    width: 95%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes icon-scale-down {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes content-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes overlay-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -9999;
  }
}
.fav-checkbox {
  display: none;
}

.fav-label {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: relative;
}
.fav-label svg {
  width: 24px;
  height: 24px;
  display: block;
  overflow: visible;
}
.fav-label .heart-outline {
  fill: none;
  stroke: #101010;
  stroke-width: 2;
  transition: stroke 300ms ease-in-out;
}
.fav-label .heart-fill {
  fill: url(#heart-gradient);
  stroke: none;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 400ms ease-in-out;
}

.fav-checkbox:checked + .fav-label .heart-fill {
  clip-path: inset(0 0 0 0);
}

.svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 16px;
  margin: auto;
  height: 50px;
  max-width: fit-content;
  padding: 0 25px;
  border-radius: 25px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2509803922);
  color: #fff;
  text-decoration: none;
  border: none;
}
.button.button-up {
  background: linear-gradient(#ff79da, #9356dc 95%);
  transition: all ease-in-out 200ms;
}
.button.button-up:hover {
  background: linear-gradient(rgb(255, 146.5, 225.0410447761), rgb(160.5, 107.125, 224.375) 95%);
}
.button.button-down {
  background: linear-gradient(#9356dc, #ff79da 95%);
  transition: all ease-in-out 200ms;
}
.button.button-down:hover {
  background: linear-gradient(rgb(160.5, 107.125, 224.375), rgb(255, 146.5, 225.0410447761) 95%);
}
.button:hover {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3490196078);
}

.explanation-item {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.explanation-item::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 100%;
  background-color: #9356dc;
  color: #fff;
}
.explanation-item i {
  font-size: 20px;
  color: #7e7e7e;
}
.explanation-item div {
  background-color: #f6f6f6;
  margin-left: 12px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  height: 72px;
  width: 100%;
}
.explanation-item div p {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
}
.explanation-item:hover i {
  color: #9356dc;
}

.explanations-list li:nth-child(1) .explanation-item::before {
  content: "1";
}
.explanations-list li:nth-child(2) .explanation-item::before {
  content: "2";
}
.explanations-list li:nth-child(3) .explanation-item::before {
  content: "3";
}

@media (min-width: 1024px) {
  .explanations-list li {
    flex: 1;
  }
}
.restaurant-item {
  border-radius: 15px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
}
.restaurant-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.restaurant-item .card-media {
  position: relative;
}
.restaurant-item .card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.restaurant-item .card-media .badge-new {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: normal;
  text-align: center;
  padding: 8px;
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 2px;
  background: #99e2d0;
  color: #008766;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1490196078);
}
.restaurant-item .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.restaurant-item .card-footer h3 {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  font-weight: 700;
}
.restaurant-item .card-footer p {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-weight: 300;
  font-size: 17px;
}

.location {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
}
.location > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.location {
  background-color: #eaeaea;
  color: #353535;
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 16px;
  height: 50px;
  gap: 17px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1490196078) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.location input {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 16px;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 116px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 50px;
  z-index: -1;
}
.hero h1 {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-size: 24px;
  font-weight: 700;
}
.hero p {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-weight: 300;
  font-size: 17px;
  color: #353535;
  font-weight: 300;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 30px;
}

section {
  padding: 50px 0;
}
section h2 {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.explanations-list,
.restaurants-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  width: 100%;
}

.explanations {
  background-color: #fff;
}

.restaurants {
  background-color: #f6f6f6;
}

@media (min-width: 1024px) {
  section {
    padding: 50px 0;
  }
  .explanations-list {
    flex-direction: row;
  }
  .restaurants-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.menu-card {
  position: relative;
  margin: 8px;
}
.menu-card-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  z-index: 1;
}
.menu-card-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.menu-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 1rem;
  padding: 16px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1490196078);
  overflow: hidden;
  transition: transform 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.menu-card-info {
  flex: 1;
  min-width: 0;
}
.menu-card-title {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-card-description {
  font-family: Roboto;
  font-weight: 300;
  font-size: 15.04px;
  line-height: 100%;
  letter-spacing: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-card-price {
  font-family: "Roboto", sans-serif;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  font-weight: 700;
  color: #353535;
  align-self: flex-end;
}
.menu-card-checkmark {
  position: absolute;
  right: -4rem;
  top: 0;
  bottom: 0;
  width: 4rem;
  background: #99e2d0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease;
}
.menu-card-checkmark-icon {
  font-size: 12px;
  color: #99e2d0;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.menu-card-checkbox:checked ~ .menu-card-content {
  padding-right: calc(4rem + 16px);
}
.menu-card-checkbox:checked ~ .menu-card-content .menu-card-checkmark {
  right: 0;
}

@media (min-width: 1024px) {
  .menu-card:hover .menu-card-content {
    padding-right: calc(4rem + 16px);
  }
  .menu-card:hover .menu-card-content .menu-card-checkmark {
    right: 0;
  }
}
@keyframes menu-slide-up {
  0% {
    opacity: 0;
    transform: translateY(-45px) scale(0.95);
  }
  60% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes category-title-entrance {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-media {
  position: relative;
  z-index: 0;
  height: 275px;
  width: 100%;
  object-fit: cover;
}

main {
  margin-top: -10px;
  padding: 0 !important;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-container {
  position: relative;
  z-index: 1;
  margin-top: -32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #eaeaea;
  padding: 50px 24px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.menu-container .restaurant-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-container .restaurant-info h1 {
  font-family: Shrikhand;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: normal;
}
.menu-container .menu-category h2 {
  font-family: Roboto;
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: normal;
  text-transform: uppercase;
  opacity: 0;
  animation: category-title-entrance 0.4s ease-out forwards;
}
.menu-container .menu-category h2:after {
  content: "";
  display: block;
  width: 40px;
  margin: 8px 0;
  border-bottom: 2px solid #99e2d0;
}
.menu-container .menu-category:nth-of-type(1) h2 {
  animation-delay: 0.1s;
}
.menu-container .menu-category:nth-of-type(1) li:nth-of-type(1) {
  animation-delay: 0.6s;
}
.menu-container .menu-category:nth-of-type(1) li:nth-of-type(2) {
  animation-delay: 0.8s;
}
.menu-container .menu-category:nth-of-type(1) li:nth-of-type(3) {
  animation-delay: 1s;
}
.menu-container .menu-category:nth-of-type(1) li:nth-of-type(4) {
  animation-delay: 1.2s;
}
.menu-container .menu-category:nth-of-type(1) li:nth-of-type(5) {
  animation-delay: 1.4s;
}
.menu-container .menu-category:nth-of-type(2) h2 {
  animation-delay: 1.1s;
}
.menu-container .menu-category:nth-of-type(2) li:nth-of-type(1) {
  animation-delay: 1.6s;
}
.menu-container .menu-category:nth-of-type(2) li:nth-of-type(2) {
  animation-delay: 1.8s;
}
.menu-container .menu-category:nth-of-type(2) li:nth-of-type(3) {
  animation-delay: 2s;
}
.menu-container .menu-category:nth-of-type(2) li:nth-of-type(4) {
  animation-delay: 2.2s;
}
.menu-container .menu-category:nth-of-type(2) li:nth-of-type(5) {
  animation-delay: 2.4s;
}
.menu-container .menu-category:nth-of-type(3) h2 {
  animation-delay: 2.1s;
}
.menu-container .menu-category:nth-of-type(3) li:nth-of-type(1) {
  animation-delay: 2.6s;
}
.menu-container .menu-category:nth-of-type(3) li:nth-of-type(2) {
  animation-delay: 2.8s;
}
.menu-container .menu-category:nth-of-type(3) li:nth-of-type(3) {
  animation-delay: 3s;
}
.menu-container .menu-category:nth-of-type(3) li:nth-of-type(4) {
  animation-delay: 3.2s;
}
.menu-container .menu-category:nth-of-type(3) li:nth-of-type(5) {
  animation-delay: 3.4s;
}
.menu-container .menu-category:nth-of-type(4) h2 {
  animation-delay: 3.1s;
}
.menu-container .menu-category:nth-of-type(4) li:nth-of-type(1) {
  animation-delay: 3.6s;
}
.menu-container .menu-category:nth-of-type(4) li:nth-of-type(2) {
  animation-delay: 3.8s;
}
.menu-container .menu-category:nth-of-type(4) li:nth-of-type(3) {
  animation-delay: 4s;
}
.menu-container .menu-category:nth-of-type(4) li:nth-of-type(4) {
  animation-delay: 4.2s;
}
.menu-container .menu-category:nth-of-type(4) li:nth-of-type(5) {
  animation-delay: 4.4s;
}
.menu-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  overflow: hidden;
}
.menu-container ul li {
  padding: 0;
  margin: 0;
  opacity: 0;
  animation: menu-slide-up 0.5s ease-out forwards;
}
.menu-container button.button.button-up {
  max-width: 180px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-media {
    height: 375px;
  }
  .menu-container .restaurant-info {
    justify-content: center;
    gap: 24px;
  }
}
:root {
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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