:root, button {
  font-family: 'Roboto', sans-serif;
}

.bold {
  font-weight: bold;
}

h2 {
  margin-top: 0;
}

body {
  margin: 0;
}

header {
  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;
  height: 63px;
}

header img {
  height: 30px;
}

.loader {
  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;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: white;
  -webkit-animation: loader 1000ms forwards;
          animation: loader 1000ms forwards;
}

@-webkit-keyframes loader {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes loader {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

.loader .spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #9356dc;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 1000ms linear infinite;
          animation: spin 1000ms linear infinite;
  margin: 0 auto;
}

@-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);
  }
}

#location {
  background-color: #eaeaea;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: bold;
  -webkit-box-shadow: inset 0px 5px 7px -5px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0px 5px 7px -5px rgba(0, 0, 0, 0.2);
}

#location i {
  margin: 0 18px 0 -18px;
}

#top_text {
  background-color: #f6f6f6;
  text-align: center;
  padding: 44px 5% 57px 5%;
}

#top_text h2 {
  margin: 0 10% 0 10%;
}

#top_text button {
  height: 50px;
  width: 58%;
  color: white;
  background: linear-gradient(178deg, #ff79da 20%, #9356dc 100%);
  border: none;
  border-radius: 50px;
  -webkit-box-shadow: 0px 4px 3px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 3px 2px rgba(0, 0, 0, 0.2);
}

#top_text button:hover {
  background: linear-gradient(178deg, #ff88de 20%, #9b63df 100%);
  -webkit-box-shadow: 0px 4px 5px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 5px 3px rgba(0, 0, 0, 0.2);
}

#fonctionnement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 52px 5% 48px 5%;
}

#fonctionnement .buttons_container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4%;
}

#fonctionnement .buttons_container button {
  background-color: #f6f6f6;
  height: 74px;
  width: 100%;
  margin: 12px 0;
  border: none;
  border-radius: 25px;
  -webkit-box-shadow: 1px 3px 7px 1px rgba(0, 0, 0, 0.24);
          box-shadow: 1px 3px 7px 1px rgba(0, 0, 0, 0.24);
  font-size: 100%;
  font-weight: bold;
  position: relative;
}

#fonctionnement .buttons_container button:hover {
  background: #f9f9f9;
  -webkit-box-shadow: 1px 3px 9px 1px rgba(0, 0, 0, 0.24);
          box-shadow: 1px 3px 9px 1px rgba(0, 0, 0, 0.24);
}

#fonctionnement .buttons_container button span {
  position: absolute;
  left: -12px;
  width: 23px;
  height: 23px;
  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;
  color: white;
  font-size: 90%;
  background-color: #9356dc;
  border-radius: 50%;
  font-weight: normal;
}

#fonctionnement .buttons_container button i {
  color: grey;
  font-size: 110%;
  margin: 0 25px 0 -25px;
}

#fonctionnement .buttons_container .btn--selected {
  background-color: #f5edff;
}

#fonctionnement .buttons_container .btn--selected:hover {
  background: #f8f2ff;
  -webkit-box-shadow: 1px 3px 9px 1px rgba(0, 0, 0, 0.24);
          box-shadow: 1px 3px 9px 1px rgba(0, 0, 0, 0.24);
}

#fonctionnement .buttons_container .btn--selected i {
  color: #9356dc;
}

#restaurants {
  background-color: #f6f6f6;
  padding: 42px 0;
}

#restaurants h2 {
  margin-left: 5%;
}

#restaurants .cards_container {
  width: 90%;
  margin: 0 auto;
}

#restaurants .cards_container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-color: white;
  border-radius: 20px;
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: black;
  margin-bottom: 18px;
}

#restaurants .cards_container a .new_tag {
  position: absolute;
  top: 13px;
  right: 12px;
  width: 24%;
  height: 29px;
  background-color: #99E2D0;
  color: #008766;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
}

#restaurants .cards_container a img {
  height: 174px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

#restaurants .cards_container a .card_descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 8% 18px 4%;
}

#restaurants .cards_container a .card_descr p {
  margin: 0 0 2px 0;
}

#restaurants .cards_container a .card_descr i {
  font-size: 150%;
}

#restaurants .cards_container a .card_descr .heart_full {
  display: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #9356dc), to(#ff79da));
  background: linear-gradient(#9356dc 20%, #ff79da 100%);
  -webkit-background-clip: text;
  color: transparent;
  background-repeat: no-repeat;
}

#restaurants .cards_container a .card_descr .hearts_container:hover .heart_empty {
  display: none;
}

#restaurants .cards_container a .card_descr .hearts_container:hover .heart_full {
  display: block;
  -webkit-animation: fillup 1250ms;
          animation: fillup 1250ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-size: 200% 200%;
}

@-webkit-keyframes fillup {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0% 40%;
  }
}

@keyframes fillup {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0% 40%;
  }
}

footer {
  background-color: #353535;
  color: white;
  padding: 26px 5% 36px 5%;
}

footer img {
  width: 98px;
  margin-bottom: 5px;
}

footer i {
  margin-right: 10px;
}

footer a {
  text-decoration: none;
  color: white;
}

@media (min-width: 320px) and (max-width: 374px) {
  #fonctionnement .buttons_container button i {
    margin: 0 12px 0 -12px;
  }
}

@media (min-width: 641px) {
  #fonctionnement .buttons_container {
    padding-left: 1%;
  }
  #fonctionnement .buttons_container button {
    margin: 12px 5% 12px 7%;
  }
  #restaurants .cards_container {
    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;
  }
  #restaurants .cards_container .home_card {
    width: 48%;
  }
}

@media (min-width: 1024px) {
  #fonctionnement .buttons_container {
    padding-left: .5%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 1.25%;
  }
  #fonctionnement .buttons_container button {
    width: 30%;
    margin: 0;
  }
  #fonctionnement .buttons_container button i {
    margin: 0 12px 0 -12px;
  }
  #restaurants .cards_container .home_card {
    margin-bottom: 25px;
  }
}

@media (min-width: 1281px) {
  #top_text button {
    width: 25%;
  }
  #fonctionnement .buttons_container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: .7%;
  }
  #fonctionnement .buttons_container button {
    width: 30%;
    margin: 0;
  }
  #restaurants .cards_container .home_card {
    width: 30%;
    margin-bottom: 25px;
  }
}
/*# sourceMappingURL=index.css.map */