@charset "UTF-8";
/* ------------------------------------ */
/* !! Garder dans l'ordre ci-dessous !! */
/* ------------------------------------ */
/* ---------------------- */
/*    Variables Sass      */
/* ---------------------- */
.accueil {
  background-color: #91C34A; }

.color1 {
  background-color: #F4614D; }

.color2 {
  background-color: #273A7F; }

.color3 {
  background-color: #F2A127; }

.color4 {
  background-color: #1e6717; }

.actualite {
  background-color: #ca1524; }

.gateaux {
  background-color: #F4614D; }

.gateaux-base {
  background-color: #F4614D; }

.gateaux-dark {
  background-color: #f1361d; }

.gateaux-light {
  background-color: #f78c7d; }

.plats {
  background-color: #068181; }

.plats-base {
  background-color: #068181; }

.plats-dark {
  background-color: #045050; }

.plats-light {
  background-color: #08b2b2; }

.pates {
  background-color: #F2A127; }

.pates-base {
  background-color: #F2A127; }

.pates-dark {
  background-color: #d9880d; }

.pates-light {
  background-color: #f5b657; }

.dacquoise {
  background-color: #273A7F; }

.manzana {
  background-color: #91C34A; }

.jaune-leger {
  background-color: #f7fabf; }

.text-black {
  color: black; }

.text-red {
  color: red; }

/* ---------------------------- */
/*    Propriétés générales      */
/*      de positionnement       */
/*    (Jean-François Pépin)     */
/* ---------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.container {
  padding: 3rem; }

.w25fl,
.width50 {
  display: block;
  float: left; }

.w25fl {
  width: 25%; }

.width50 {
  width: 50%; }

.h100 {
  height: 100%; }

.img-container img {
  width: 100%; }

.fl, .fr {
  display: block; }

.fl {
  float: left; }

.fr {
  float: right; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1rem; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  max-width: 100%;
  padding: 0 1rem; }

.row-ms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.row,
.row-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1rem; }

.col {
  padding: 1rem; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

/* -------------------- */
/*        Header        */
/* -------------------- */
.logo {
  max-width: 50%; }

/* -------------------- */
/*    GRID - Accueil    */
/* -------------------- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  justify-items: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .grid-container .gateaux {
    background-color: #F4614D; }
  .grid-container .plats {
    background-color: #068181; }
  .grid-container .pates {
    background-color: #F2A127; }

.grid-text-right {
  grid-template-areas: 'col1 col2'; }

.grid-text-left {
  grid-template-areas: 'col2 col1'; }

.col1 {
  grid-area: col1; }

.col2 {
  grid-area: col2; }

/* -------------------- */
/*     GRID - Images    */
/* -------------------- */
.grid-img-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "img-top img-top" "img-gauche img-droite"; }

.pic1 {
  grid-area: img-top; }

.pic2 {
  grid-area: img-gauche; }

.pic3 {
  grid-area: img-droite; }

/* ------------- */
/*     CARDS     */
/* ------------- */
.card {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  padding: 2rem 3rem; }
  .card p {
    margin: 2rem 0; }
  .card .menu {
    text-align: center; }
    .card .menu h3 {
      font-style: normal; }
    .card .menu p {
      margin: .5rem, 0; }
      .card .menu p.italic {
        margin: 1rem 0;
        font-style: italic; }
      .card .menu p.ou {
        margin: .5rem;
        margin-left: -1rem; }
  .card .infos-gen {
    padding: 1rem 3rem;
    border-radius: 2rem;
    background-color: #f7fabf;
    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: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .card .infos-gen h2,
    .card .infos-gen h3,
    .card .infos-gen p {
      color: black; }
  .card .infos-gen-locales {
    margin: 1rem 0; }

/* ------------ */
/*   MAGASINS   */
/* ------------ */
.magasin {
  overflow: hidden; }
  .magasin nav {
    padding: 1rem 0; }
  .magasin p {
    margin-top: 0; }

.horaire,
.menu_table,
.grille_de_prix {
  width: 100%; }
  .horaire table,
  .menu_table table,
  .grille_de_prix table {
    margin: 1.25rem 0;
    /* 20px 0 */
    border-spacing: 0 0.25rem;
    /*0 horizontal 4px vertical */
    overflow: hidden; }
    .horaire table tr,
    .menu_table table tr,
    .grille_de_prix table tr {
      background-color: #068181; }
      .horaire table tr.current-day,
      .menu_table table tr.current-day,
      .grille_de_prix table tr.current-day {
        background-color: white;
        color: #068181; }
      .horaire table tr td,
      .menu_table table tr td,
      .grille_de_prix table tr td {
        padding: 1rem;
        /*16px*/
        width: 33.33%;
        vertical-align: center;
        text-align: center;
        font-family: 'Dosis', sans-serif;
        font-size: 1.5rem;
        /*24px*/
        line-height: 1.875rem;
        /*30px*/ }
        .horaire table tr td.current-day,
        .menu_table table tr td.current-day,
        .grille_de_prix table tr td.current-day {
          background-color: white;
          color: #068181; }
      .horaire table tr td:first-child,
      .menu_table table tr td:first-child,
      .grille_de_prix table tr td:first-child {
        text-align: left; }
      .horaire table tr td.prix,
      .menu_table table tr td.prix,
      .grille_de_prix table tr td.prix {
        text-align: right; }
  .horaire.horaireFetes table tr,
  .menu_table.horaireFetes table tr,
  .grille_de_prix.horaireFetes table tr {
    background-color: #1e6717; }

.grille_de_prix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .grille_de_prix table {
    width: 60%; }
    .grille_de_prix table.w100 {
      width: 100%; }
    .grille_de_prix table tr {
      background-color: #1e6717; }
      .grille_de_prix table tr td {
        padding: .5rem; }
      .grille_de_prix table tr td:first-child {
        width: 66.66%; }
      .grille_de_prix table tr td.prix {
        width: 33.33%; }

.menu_table table {
  width: 80%; }
  .menu_table table.w100 {
    width: 100%; }
  .menu_table table tr {
    background-color: #1e6717; }
    .menu_table table tr td {
      padding: .5rem; }
    .menu_table table tr td:first-child {
      width: 25%; }
    .menu_table table tr td.prix {
      width: 75%; }

.currentDay td {
  background-color: white;
  color: #068181; }

/* SECTION CARTE GOOGLE-MAP */
/* (source du code : https://www.labnol.org/internet/embed-responsive-google-maps/28333/) */
.ratio-container {
  position: relative;
  padding-bottom: 56.25%;
  /* ratio de départ (mobile) */
  height: 0;
  overflow: hidden; }

.ratio-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* -------------------- */
/*        FOOTER        */
/* -------------------- */
footer {
  background-color: #91C34A;
  color: white;
  text-align: left;
  /* ( ?? voir media-query ??) */ }
  footer p {
    font-weight: 300; }
    footer p a {
      text-decoration: none;
      color: white; }
  footer table th {
    font-weight: 600; }

footer h3,
footer h4 {
  color: white; }

footer a {
  line-height: 1.5; }

/* -------------------------------------- */
/* FENÊTRE MODALE du menu mobile (caché en mobile et en tablet1) */
/* ---------- (code: JF Pépin) ---------- */
#modale-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 10; }
  #modale-menu .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); }

.menu-modal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: black;
  padding: 2rem;
  min-width: 50%;
  text-align: left; }
  .menu-modal li {
    text-transform: uppercase;
    border-bottom: solid 1px white; }
    .menu-modal li a {
      display: block;
      padding: 1rem;
      color: white; }
  .menu-modal li:first-child {
    border-top: solid 1px white; }
  .menu-modal li.soc-med-petit img {
    max-width: 2rem;
    /* 32 px (vs. une largeur de base de 48px)*/ }

/* -------------------------------------- */
/*     NAV menu (header et secondaire)    */
/* -------------------------------------- */
nav a {
  margin-top: 0rem; }
nav ul {
  padding: 0;
  margin: 0;
  list-style: none; }
  nav ul li {
    display: block; }
    nav ul li .img-container {
      width: 100%; }
  nav ul.inline-block li, nav ul.inline-block a {
    display: inline-block; }

.main-nav {
  text-align: right; }
  .main-nav .menu-text,
  .main-nav .bouton {
    font-size: 1rem;
    line-height: 1rem; }
  .main-nav .menu-text {
    color: #068181;
    margin-right: .5rem; }

.nav-secondaire ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.nav-secondaire li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%; }
  .nav-secondaire li.width50 {
    width: 50%; }
.nav-secondaire a {
  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;
  width: 100%;
  margin: 0;
  color: white;
  padding: 1rem 0.5rem; }

/* ---------------- */
/*     Boutons      */
/* ---------------- */
.bouton-magasins {
  background-color: #1e6717;
  border: 1px solid #1e6717;
  border-radius: 0;
  padding: 0.7em 1.4em;
  cursor: pointer;
  display: inline-block;
  color: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
  .bouton-magasins:hover {
    background-color: #3B4546;
    border-color: #3B4546;
    color: white;
    opacity: 1; }

.bouton-horaires {
  background-color: #ca1524;
  border: 1px solid #ca1524;
  border-radius: 0;
  padding: 0.7em 1.4em;
  cursor: pointer;
  display: inline-block;
  color: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 0.5rem; }
  .bouton-horaires:hover {
    background-color: #3B4546;
    border-color: #3B4546;
    color: white;
    opacity: 1; }

.bouton {
  background-color: #91C34A;
  border: 1px solid #91C34A;
  border-radius: 0;
  padding: 0.7em 1.4em;
  cursor: pointer;
  display: inline-block;
  color: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
  .bouton:hover {
    background-color: #3B4546;
    border-color: #3B4546;
    color: white;
    opacity: 1; }

.bouton-tel {
  background-color: white;
  border: 1px solid white;
  border-radius: 1rem;
  padding: 0.7em 1.4em;
  cursor: pointer;
  display: inline-block;
  color: #3B4546;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-style: 600; }
  .bouton-tel:hover {
    background-color: #3B4546;
    border-color: #3B4546;
    color: white;
    opacity: 1; }

.bouton-tel-dark {
  background-color: #3B4546;
  border: 1px solid #3B4546;
  border-radius: 1rem;
  padding: 0.7em 1.4em;
  cursor: pointer;
  display: inline-block;
  color: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-style: 600; }
  .bouton-tel-dark:hover {
    background-color: white;
    border-color: white;
    color: #3B4546;
    opacity: 1; }

.bouton-medsoc {
  background-color: #273A7F;
  border: 1px solid white;
  border-radius: 0;
  padding: 0.7em 1.4em;
  cursor: pointer;
  display: inline-block;
  color: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
  .bouton-medsoc:hover {
    background-color: #3B4546;
    border-color: #3B4546;
    color: white;
    opacity: 1; }
  .bouton-medsoc i {
    font-size: 1.5em; }

/* -------------------------------------- */
/*  menu Burger (repris de Slicknav.js)   */
/* -------------------------------------- */
.slicknav_menu {
  *zoom: 1; }
  .slicknav_menu .slicknav_btn {
    position: relative;
    display: block;
    vertical-align: middle;
    float: right;
    padding: 0.438em 0.625em 0.438em 0.625em;
    line-height: 1.125em;
    cursor: pointer; }
    .slicknav_menu .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
      margin-top: 0.188em; }
  .slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left; }
  .slicknav_menu .slicknav_icon {
    float: left;
    width: 1.125em;
    height: 0.875em;
    margin: 0.188em 0 0 0.438em; }
    .slicknav_menu .slicknav_icon:before {
      background: transparent;
      width: 1.125em;
      height: 0.875em;
      display: block;
      content: "";
      position: absolute; }
  .slicknav_menu .slicknav_no-text {
    margin: 0; }
  .slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: 0.125em;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
  .slicknav_menu:before {
    content: " ";
    display: table; }
  .slicknav_menu:after {
    content: " ";
    display: table;
    clear: both; }

.slicknav_menu {
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
  padding: 5px; }
  .slicknav_menu * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .slicknav_menu .slicknav_menutxt {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 3px #000; }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #fff; }

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  background-color: #222; }

.fab {
  font-size: 3rem; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white; }

.bold {
  font-weight: 600; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

h1,
.h1,
h2 {
  font-weight: 300;
  text-transform: uppercase; }

h1,
.h1 {
  font-size: 4rem;
  line-height: 4rem; }

h2 {
  font-size: 3rem; }

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic; }

h4 {
  font-size: 1.5rem;
  font-weight: 300; }

.typo-actualite h3 {
  margin: 1rem 0; }
.typo-actualite p {
  margin-top: 0; }

.produits p {
  margin: 0; }
.produits h3 {
  margin-top: 1rem; }
.produits h4 {
  padding-top: 0.5rem; }

.conseils p {
  margin: 0; }
.conseils p,
.conseils h3,
.conseils h4 {
  padding-bottom: 0.5rem; }
.conseils ul {
  color: black;
  margin: 0; }

a,
a:visited {
  text-decoration: none !important; }
  a:hover,
  a:visited:hover {
    opacity: 0.8 !important; }

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem; }

.badge:empty {
  display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-saison {
  color: #fff;
  background-color: #007bff; }

.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc; }

.badge-secondary {
  color: #fff;
  background-color: #6c757d; }

.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62; }

.badge-sante {
  color: #fff;
  background-color: #28a745; }

.badge-success[href]:hover, .badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34; }

.badge-info {
  color: #fff;
  background-color: #17a2b8; }

.badge-info[href]:hover, .badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b; }

.badge-warning {
  color: #212529;
  background-color: #ffc107; }

.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00; }

.badge-danger {
  color: #fff;
  background-color: #dc3545; }

.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130; }

.badge-light {
  color: #212529;
  background-color: #f8f9fa; }

.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5; }

.badge-dark {
  color: #fff;
  background-color: #343a40; }

.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124; }

/* ---------------------- */
/*     ACCESSIBILITÉ      */
/* ---------------------- */
/* Text meant only for screen readers. */
/* Source: https://make.wordpress.org/accessibility/handbook/markup/the-css-class-screen-reader-text/ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; }

/* ----------------------------------- */
/*     RESPONSIVE - DESKTOP-FIRST      */
/* ----------------------------------- */
.hidden {
  display: none !important; }

/* L'élément est montré JUSQUE (max) la taille indiquée (desktop-first) */
.x-small,
.mobile,
.tablet1,
.tablet2,
.laptop,
.desktop,
.x-large {
  display: none; }

/* ---------------------------------- */
/*  Tailles d'écran - Desktop-first   */
/* ---------------------------------- */
/* -------------------------------- */
/*  Media queries - Desktop-first   */
/* -------------------------------- */
/* 0) Grands écrans: MIN 1600 px (par défaut) */
/* 1) desktop: MAX 1600 px - écrans les + courants */
/* 2) laptop: MAX 1200 px - écrans "laptops" */
@media (max-width: 75rem) {
  /* propriétés générales */
  .laptop {
    display: block; }

  .laptop-hidden {
    display: none; } }
/* 3) tablet-2: MAX 1024 px - tablettes horizontale (couché), certains laptops */
@media (max-width: 64rem) {
  /* propriétés générales */
  .tablet2 {
    display: block; }

  .tablet2-hidden {
    display: none; }

  .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto); }

  .grid-text-right,
  .grid-text-left {
    grid-template-areas: 'col1'  'col2'; }

  .grid-img-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "img-top"; }

  .pic2, .pic3 {
    display: none; }

  .h1 {
    font-size: 3rem; }

  h2 {
    font-size: 2.5rem; }

  .prix {
    font-size: 1.5rem;
    /*24px*/
    line-height: 1.875rem;
    /*30px*/ } }
/* 4) tablet-1: MAX 880 px - tablettes verticales (debout),  grands téléphones3) tablette-2 (max 880 px) */
@media (max-width: 55rem) {
  /* propriétés générales */
  .tablet1 {
    display: block; }

  .tablet1-hidden {
    display: none; }

  /* divers */
  .logo {
    max-width: 60%; }

  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    footer p {
      margin-top: 0;
      margin-bottom: .5rem; }

  header h1,
  header h2,
  header h3 {
    z-index: -1; }

  .h1 {
    font-size: 2.5rem; }

  footer .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%; } }
/* 5) mobile: MAX 768 px - la plupart des téléphones */
@media (max-width: 48rem) {
  /* popriétés générales */
  .mobile {
    display: block; }

  footer .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }

  .logo {
    max-width: 70%; }

  form {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 0; } }
/* 6) Très petits écrans: MAX 480 px */
@media (max-width: 32rem) {
  /* popriétés générales */
  .card {
    padding: 1rem; } }
/* ---------------------------- */
/*   Propriétés particulières   */
/* ---------------------------- */

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