* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

:root {
  --primaire: #9356dc;
  --secondaire: #ff79da;
  --tertiaire: #99e2d0;
  --blanc: #ffffff;
  --noir: #000000;
  --background: #f6f6f6;
}

body {
  font-family: "Roboto";
  font-size: 1.2rem;
}

#chargement {
  background-color: #9356dc;
  position: fixed;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ffffffb8;
  z-index: 10;
  animation: finChargement 3s both;
  -moz-animation: finChargement 3s both;
  -webkit-animation: finChargement 3s both;
  -o-animation: finChargement 3s both;
}

@keyframes finChargement {
  80% {
    opacity: 1;
  }
  99% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@-webkit-keyframes finChargement {
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

#chargement #chargementSpinner {
  position: relative;
  margin: auto;
  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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid var(--primaire);
  border-top: 10px solid var(--secondaire);
  border-bottom: 10px solid var(--tertiaire);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  opacity: 0.7;
  animation: spin .5s linear infinite;
  -webkit-animation: spin 0.5s linear infinite;
  -o-animation: spin 0.5s linear infinite;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-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);
  }
}

h3 {
  font-family: "Roboto";
  font-weight: 100;
  padding-bottom: 0.2rem;
}

h2,
h4 {
  font-family: "Roboto";
  font-weight: normal;
}

.header {
  background-color: var(--background);
  margin: 0 auto;
  max-width: 1500px;
  padding: 1.5rem 0 0.5rem 0;
}

.header h1 {
  text-align: center;
}

.header h1 .logo {
  width: 25vh;
  text-align: center;
}

main {
  margin: 0 auto;
  max-width: 1500px;
}

.section_location {
  margin: 0 auto;
  max-width: 1500px;
  padding: 1rem;
  background-color: #e6e6e6;
  text-align: center;
  -webkit-box-shadow: 0px 0px 2px 3px rgba(148, 143, 143, 0.2);
          box-shadow: 0px 0px 2px 3px rgba(148, 143, 143, 0.2);
}

.section_location h4 {
  font-size: 1.5rem;
}

.section_location .fas {
  padding: 0 1rem;
}

.section_presentation {
  background-color: var(--background);
  margin: 0 auto;
  max-width: 1500px;
  padding: 2rem 1rem;
  text-align: center;
}

.section_presentation h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

.section_presentation h4 {
  font-family: "Roboto";
  font-size: 1.3rem;
  font-weight: 100;
  margin: 1.5rem 0;
}

.section_presentation .btn {
  padding: 1rem 2rem;
  margin: 0.5rem 0 1rem 0;
  font-family: "Roboto";
  font-size: 1.2rem;
  font-weight: normal;
  border-radius: 45px;
  border: none;
  background-color: var(--primaire);
  color: white;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
  -webkit-box-shadow: 1px 12px 9px -8px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 12px 9px -8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(340deg, #9356dc, #ff79da);
}

.section_presentation .btn:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 1px 13px 8px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 13px 8px -6px rgba(0, 0, 0, 0.3);
  color: white;
}

.section_fonctionnement {
  /*	background-color: brown;*/
  margin: 0 auto;
  max-width: 1500px;
  padding: 1rem;
}

.section_fonctionnement h2 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding: 1rem;
  font-family: "Roboto";
  font-weight: bold;
}

.section_fonctionnement .fonctionnement_etapes {
  font-family: "Roboto";
  font-weight: normal;
  /*   .section_fonctionnement_btn*/
}

.section_fonctionnement .fonctionnement_etapes .fonctionnement_etape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #faf7f7;
  margin: 1rem 1rem 1rem 1.5rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  /* .section_fonctionnement_btn_etapes*/
}

.section_fonctionnement .fonctionnement_etapes .fonctionnement_etape .section_fonctionnement_etape_1 {
  background-color: var(--primaire);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  padding: 0.5rem 0.8rem 0.3rem 0.8rem;
  margin-left: -2.5rem;
}

.section_fonctionnement .fonctionnement_etapes .fonctionnement_etape .fas {
  margin: 0 1rem;
  font-size: 1.8rem;
}

.section_fonctionnement .fonctionnement_etapes .fonctionnement_etape .fa-store {
  color: var(--primaire);
}

.section_fonctionnement .fonctionnement_etapes .fonctionnement_etape .section_fonctionnement_action {
  font-size: 1.3rem;
  font-family: "Roboto";
  font-weight: bold;
}

.section_fonctionnement .fonctionnement_etapes .etapeDegustation {
  background-color: #f7e4f7;
}

@media screen and (min-width: 800px) {
  .section_fonctionnement {
    background-color: var(--background);
  }
  .section_fonctionnement .fonctionnement_etapes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section_fonctionnement .fonctionnement_etapes .fonctionnement_etape {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: #f7e4f7;
  }
}

.section_restaurants {
  background-color: #a1e912;
  background-color: var(--background);
  margin: 0 auto;
  max-width: 1500px;
  padding: 1rem;
  font-family: "Roboto";
}

.section_restaurants .carte_description_1 {
  font-family: "Roboto";
  color: black;
  padding-bottom: 1rem;
}

.section_restaurants .carte_description_1 h4 {
  font-weight: bold;
  font-size: 1.3rem;
}

.section_restaurants h2 {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 1.5rem;
  padding: 1rem;
}

.section_restaurants .section_restaurant_cartes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section_restaurants .section_restaurants_carte {
  background-color: white;
  width: 19rem;
  height: 17rem;
  border-radius: 1.5rem;
  margin: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

.section_restaurants .section_restaurants_carte img {
  width: 100%;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
}

.section_restaurants .section_restaurants_carte .nouveau {
  background-color: var(--tertiaire);
  color: #1aa94e;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Roboto";
  width: 4.5rem;
  padding: 0.3rem;
  text-align: center;
  position: absolute;
  -ms-flex-item-align: end;
      align-self: flex-end;
  z-index: 100;
  bottom: 83%;
  left: 68%;
}

.section_restaurants_carte_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
}

.fa-heart {
  font-size: 1.35rem;
  cursor: pointer;
}

.fa-heart-1 {
  color: black;
  z-index: -10;
  margin-right: -1.6rem;
}

.heartHover {
  background-color: white;
  opacity: 0;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.heartHover:hover {
  color: var(--primaire);
  background-color: white;
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 1050px) {
  .carte_4 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .carte_1,
  .carte_2,
  .carte_3 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

footer {
  background-color: #303030;
}

footer .footer {
  font-family: "Roboto";
  margin: 0 auto;
  max-width: 1500px;
  padding: 2rem 1rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .fas {
  padding: 0.5rem 1rem 0.5rem 0;
}

footer .mentionsLegales {
  padding: 0.5rem 0.5rem 0.5rem 0;
}

footer .footer_header {
  font-family: "Shrikhand";
  font-weight: normal;
  margin: 0 1rem 1rem 0;
  font-size: 1.5rem;
  width: 100%;
}

footer .footerInfos {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  cursor: pointer;
}

a {
  color: white;
}

@media screen and (max-width: 600px) {
  .footerInfos {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

/*pages html------------------------------------------------*/
.header_paletteDuGout {
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  padding: 1.5rem 0 0.5rem 0;
}

.header_paletteDuGout .logo {
  width: 35%;
  margin: 0 auto;
}

.header_paletteDuGout .fa-arrow-left {
  width: 30%;
  padding-left: 2rem;
  font-size: 2.5vh;
  color: black;
}

.restaurant {
  padding: 0 0.031rem;
}

.restaurant .paletteDuGout_img {
  width: 1500px;
  max-width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -4;
  margin: 0 auto;
}

.restaurant .restaurantEntresPlats {
  background-color: #f2f2f2;
  margin-top: -4rem;
  padding: 1rem;
  border-radius: 2.5rem 2.5rem 0 0;
}

.restaurant .restaurantEntresPlats .nomDuRestaurant_titre {
  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;
  padding: 1rem;
  max-width: 900px;
  margin: 1rem auto;
}

.restaurant .restaurantEntresPlats .nomDuRestaurant_titre h2 {
  font-family: "Shrikhand";
  font-size: 1.3rem;
  font-weight: 500;
}

.restaurant .restaurantEntresPlats .menu {
  margin: 2rem auto;
}

.restaurant .restaurantEntresPlats .menu .carteHeader::after {
  content: "";
  position: absolute;
  width: 3rem;
  border: 2px solid var(--tertiaire);
  background-color: var(--tertiaire);
}

.restaurant .restaurantEntresPlats .menu .menuEntree {
  margin-top: 2rem;
}

.restaurant .restaurantEntresPlats .menu .menuEntree li p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: calc(65%);
}

.restaurant .restaurantEntresPlats .menu .menuEntree li {
  background-color: white;
  position: relative;
  border-radius: 1rem;
  margin: 1rem 0;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0.3rem 0.05rem #dadada;
          box-shadow: 0 0 0.3rem 0.05rem #dadada;
  width: 100%;
  overflow: hidden;
}

.restaurant .restaurantEntresPlats .menu .menuEntree li .menuTitre {
  padding: 1rem 1rem 0 1rem;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.restaurant .restaurantEntresPlats .menu .menuEntree li .menuSousTitre {
  padding: 0.5rem 1rem 1rem 1rem;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}

.restaurant .restaurantEntresPlats .menu .menuEntree li .menuConfirmation {
  position: absolute;
  top: 0px;
  right: -4.5rem;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border-right: 4.5rem solid #8fdeca;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.restaurant .restaurantEntresPlats .menu .menuEntree li .menuConfirmation .menuPrix {
  position: absolute;
  right: 1.3rem;
  bottom: 1rem;
  font-weight: bold;
  font-size: 1.3rem;
}

.restaurant .restaurantEntresPlats .menu .menuEntree li .menuConfirmation::after {
  content: "";
  position: absolute;
  right: -45px;
  top: 30px;
  width: 30px;
  height: 30px;
  background: url(../img/logo/confirm_logo.png);
  background-size: 100%;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
}

.restaurant .restaurantEntresPlats .menu .menuEntree li .menuConfirmation:hover::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.restaurant .restaurantEntresPlats .menu .menuEntree li .menuConfirmation:hover {
  right: 0px;
}

/*Animation apparitionMenu----------------------------------------------------------------------*/
.menu {
  animation: apparitionMenu 1s both;
  -moz-animation: apparitionMenu 1s both;
  -webkit-animation: apparitionMenu 1s both;
  -o-animation: apparitionMenu 1s both;
  opacity: 0;
}

.menu-1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.menu-2 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.menu-3 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes apparitionMenu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes apparitionMenu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*fin animation apparitionMenu---------------------------------------------------------------------------------*/
.commander {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background-color: #f2f2f2;
}

.commander .btn_commander {
  padding: 1rem 3rem;
  border: none;
  font-size: 1.5rem;
  border-radius: 2.5rem;
  color: white;
  background-color: violet;
  cursor: pointer;
  margin: 0 auto 2rem;
  -webkit-box-shadow: 1px 12px 9px -8px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 12px 9px -8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(340deg, #9356dc, #ff79da);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.commander .btn_commander:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 1px 13px 8px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 13px 8px -6px rgba(0, 0, 0, 0.3);
  color: white;
}

@media screen and (min-width: 800px) {
  .header_paletteDuGout {
    margin: auto;
  }
  .restaurant {
    margin: auto;
  }
  .menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .menus .menu {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
  .menu-2,
  .menu-3 {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
  .menu-3 {
    padding-left: 2rem;
  }
  .menu-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .nomDuRestaurant_titre {
    background-color: #f0b2f0;
    border-radius: 1.5rem;
    margin: 2rem auto 0;
  }
  .nomDuRestaurant_titre .heartHover {
    background-color: #f0b2f0;
  }
  .commander {
    background-color: #f2f2f2;
    text-align: center;
    margin: auto;
  }
  .commander .btn_commander {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1100px) {
  .menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .menus .menu {
    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;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 1rem;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  #commander {
    margin: -9rem auto 0 auto;
  }
  #commander .btn_commander {
    padding: 1rem 4rem;
    font-size: 1.5rem;
    margin-left: 30%;
  }
}
/*# sourceMappingURL=default.css.map */