@keyframes sliding_items {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
* {
  font-family: Roboto, sans-serif;
}

h1 {
  font-family: Shrikhand, cursive;
  font-size: 28px;
  font-weight: 400;
}

header {
  position: relative;
}
header .retour {
  color: #353535;
  position: absolute;
  left: 1em;
  bottom: 50%;
}

.photo-restaurant img {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

body {
  background-color: white;
}

@media (min-width: 1024px) {
  .restaurant-title {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 25px;
    padding-top: 25px;
  }
}
.restaurant-title h1 {
  margin-left: 30px;
  padding-top: 25px;
}
@media (min-width: 1024px) {
  .restaurant-title h1 {
    padding-top: 0;
  }
}
.restaurant-title #like {
  display: flex;
  justify-self: center;
}
.restaurant-title #like svg {
  width: 30px;
  position: absolute;
  right: 1em;
  top: 2em;
  margin-right: 30px;
}
@media (min-width: 1024px) {
  .restaurant-title #like svg {
    position: static;
    width: 25px;
  }
}
.restaurant-title #like svg .heart-fill {
  opacity: 0;
  fill: url(#heart-gradient);
}
.restaurant-title #like svg .heart-outline {
  opacity: 1;
  fill: #000000;
}
.restaurant-title #like svg .heart-outline, .restaurant-title #like svg .heart-fill {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.restaurant-title #like:hover {
  cursor: pointer;
}
.restaurant-title #like:hover .heart-fill {
  opacity: 1;
}
.restaurant-title #like:hover .heart-outline {
  opacity: 0;
}

.menu {
  background-color: #F6F6F6;
  position: relative;
  top: -63px;
  border-radius: 45px 45px 0 0;
  margin-bottom: -63px;
}
@media (min-width: 1024px) {
  .menu {
    margin: 0 130px -63px 130px;
    padding: 0 15% 0 15%;
  }
}
.menu section, .menu h3, .menu .divider {
  margin-left: 15px;
  margin-right: 15px;
}
.menu .divider {
  position: relative;
  top: -20px;
  margin-bottom: 0;
}
.menu section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu .animated-section1 .menu-item_container:nth-of-type(1) {
  animation: sliding_items 1s;
}
.menu .animated-section1 .menu-item_container:nth-of-type(2) {
  animation: sliding_items 1.25s;
}
.menu .animated-section1 .menu-item_container:nth-of-type(3) {
  animation: sliding_items 1.5s;
}
.menu .animated-section1 .menu-item_container:nth-of-type(4) {
  animation: sliding_items 1.75s;
}
.menu .animated-section2 .menu-item_container:nth-of-type(1) {
  animation: sliding_items 2s;
}
.menu .animated-section2 .menu-item_container:nth-of-type(2) {
  animation: sliding_items 2.25s;
}
.menu .animated-section2 .menu-item_container:nth-of-type(3) {
  animation: sliding_items 2.5s;
}
.menu .animated-section3 .menu-item_container:nth-of-type(1) {
  animation: sliding_items 2.75s;
}
.menu .animated-section3 .menu-item_container:nth-of-type(2) {
  animation: sliding_items 3s;
}
.menu .animated-section3 .menu-item_container:nth-of-type(3) {
  animation: sliding_items 3.25s;
}
.menu h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
}
.menu h2::after {
  display: block;
  content: "";
  background-color: #99e2d0;
  margin-top: 8px;
  width: 40px;
  height: 3px;
}
.menu h2:not(:first-of-type) {
  margin-top: 50px;
}
.menu-item {
  background-color: white;
  border-radius: 25px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 10px 0 10px 15px;
  width: 98%;
  transition: all 300ms;
}
.menu-item div {
  position: absolute;
  top: 2em;
  right: 1em;
}
.menu-item_name, .menu-item_desc {
  line-height: 5px;
  text-overflow: ellipsis;
}
.menu-item_name {
  font-size: 18px;
  font-weight: 500;
}
.menu-item_desc {
  font-size: 15px;
  font-weight: 300;
}
.menu-item_price {
  color: #353535;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}

.menu-item_container {
  background-color: rgba(153, 226, 208, 0);
  border-radius: 25px;
  width: 100%;
  height: 100%;
  transition: all 300ms;
  position: relative;
  cursor: pointer;
}
.menu-item_container:hover {
  background-color: #99e2d0;
}
.menu-item_container:hover .menu-item {
  border-radius: 25px 0 0 25px;
  width: calc(98% - 70px);
}
.menu-item_container:hover .check span {
  transform: translateX(50%) rotate(360deg);
  opacity: 1;
}
.menu-item_container .check span {
  font-size: 40px;
  color: white;
  position: absolute;
  right: 1em;
  top: 0.5em;
  opacity: 0;
  transition: all 300ms;
  transform: translateX(100%) rotate(180deg);
  user-select: none;
}

.commander-div {
  display: flex;
  justify-content: center;
  margin: 15px 0 40px 0;
}
.commander-div .commander {
  padding: 15px 40px 15px 40px;
}

/*# sourceMappingURL=page-restaurant.css.map */
