/*----------Modifs CSS - Feuille de style modifiable spécifique au site----------*/
/*Root*/
/*-----------------------Variables Couleurs--------------------*/
:root {
  --teinte: 22;
  --primary-color: hsl(var(--teinte), 50%, 80%);
  --secondary-color: hsl(var(--teinte), 70%, 30%);
  --third-color: hsl(var(--teinte), 90%, 70%);
  --opacity-primary-color: hsla(var(--teinte), 50%, 80%, 0.5);
  --opacity-secondary-color: hsla(var(--teinte), 70%, 30%, 0.5);
  --opacity-third-color: hsla(var(--teinte), 90%, 70%, 0.5);
  --white-color: hsl(var(--teinte), 0%, 100%);
  --black-color: hsl(var(--teinte), 0%, 20%);
  --transition: all 0.3s;
}

@font-face {
  font-family: "aerofoil";
  src: url("../fonts/aerofoil.ttf");
}

/*-----------------------Fin Variables Couleurs--------------------*/
/*----------Balises html de base----------*/
body {
  font-size: 16px;
  color: var(--black-color);
  font-family: "Raleway", sans-serif;
}

body.menu-active {
  overflow: hidden;
}

a {
  color: var(--third-color);
  text-shadow: 0.02em 0.02em 0.1em var(--black-color), 0.02em 0.02em 0.1em var(--black-color), 0.02em 0.02em 0.1em var(--black-color), 0.02em 0.05em 0.25em var(--black-color), 0.02em 0.25em 0.5em var(--black-color);
}

/*----------Fin Balises html de base----------*/
/*----------h1, h2, h3, h4, h5, h6----------*/
.h1 {}

.h2 {}

.h3 {}

.h4 {}

.h5 {}

.h6 {}

/*----------Fin h1, h2, h3, h4, h5, h6----------*/
/*----------Header----------*/
.header {
  position: relative;
  z-index: 1;
  height: 8.3rem;
  background: url("../images/header.jpg") top no-repeat;
  background-size: cover;
}

/*----------Fin Header----------*/
/*----------nav-menu----------*/
.menu {
  width: 50%;
  height: 100vh;
  position: fixed;
  z-index: 101;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  text-align: center;
  line-height: 2em;
  border: 0.2em solid var(--third-color);
  border-right: 0;
  box-shadow: 0 0.8em 20px var(--black-color);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-active .menu {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 0;
  list-style: none;
  opacity: 0.5;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__inner li {
  padding: 10px;
  cursor: pointer;
  width: auto;
  font-family: "aerofoil";
  font-size: 1.5em;
  letter-spacing: 0.08em;
  background: hsla(0, 0%, 0%, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.menu__inner li a {
  color: var(--primary-color);
  width: auto;
  font-weight: bold;
  text-shadow: 0 0 0 transparent;
  transition: all 0.3s;
}

.menu__inner li.active a {
  color: var(--white-color);
  text-decoration: none;
  letter-spacing: 0.12em;
  transform: scale(1.02);
  text-shadow: 0.1em 0.1em 0.1em var(--secondary-color);
}

/*active*/
.menu-active .menu {
  right: 0px;
}

.menu-active .menu>.menu__inner {
  right: 0px;
  opacity: 1;
}

/*Menu__handle*/
.menu__handle {
  position: fixed;
  z-index: 3;
  top: calc((8.3rem / 2) - 1.2em);
  right: 2em;
  width: 2em;
  height: 2em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-active .menu__handle {
  /* right: 12.5%; */
}

.menu__handle::before, .menu__handle::after, .menu__handle span {
  background: var(--secondary-color);
}

.menu__handle.onHeader::before, .menu__handle.onHeader::after, .menu__handle.onHeader span {
  background: var(--white-color);
  filter: drop-shadow(0em 0em 0.1em hsla(0, 0%, 0%, 1)) drop-shadow(0em 0.1em 0.1em hsla(0, 0%, 0%, 1));
}

.menu-active .menu__handle.onHeader::before, .menu-active .menu__handle.onHeader::after, .menu-active .menu__handle.onHeader span {
  filter: drop-shadow(0em 0em 0.1em hsla(0, 0%, 0%, 0)) drop-shadow(0em 0.1em 0.1em hsla(0, 0%, 0%, 0));
}

.menu__handle::before, .menu>.menu__handle::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__handle span {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  overflow: hidden;
  text-indent: 200%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__handle::before {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.menu__handle::after {
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

.menu-active .menu__handle span {
  width: 0;
  left: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-active .menu__handle::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}

.menu-active .menu__handle::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

.menu__handle {
  transform: rotate(0deg);
  transition: 0.3s;
  cursor: pointer;
}

.menu-active .menu__handle {
  transform: rotate(180deg);
  transition: 0.3s;
}

.behind{
  position: fixed;
  z-index: 1;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  backdrop-filter: blur(2px);
  transition: all 0.3s;
}

.menu-active .behind {
  width: 100%;
}

.header, .main, .footer {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*----------Fin nav-menu----------*/
/*----------Main----------*/
.main {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: url("../images/texture_bois_background.png") top repeat-y;
  background-size: contain;
  min-height: 60vh;
}

/*----------Fin Main----------*/
/*----------Content----------*/
.content {
  grid-column: 1/span12;
  position: relative;
  z-index: 4;
  width: 80%;
  max-width: 1600px;
  margin: 2em auto;
  color: var(--secondary-color);
  background-color: hsla(var(--teinte), 30%, 80%, 0.3);
  backdrop-filter: blur(2px);
  border: 0.1em solid var(--third-color);
  text-align: center;
  box-shadow: 0.1em 0.4em 0.5em hsla(0, 0%, 0%, 0.3);
  line-height: 1.6em;
  overflow: hidden;
}

.content-title {
  width: 100%;
  padding: 0.2em 0.5em;
  margin: auto;
  font-family: "aerofoil";
  font-size: 2em;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-shadow: 0.1em 0.1em 0.2em var(--black-color);
  background-color: var(--primary-color);
  text-align: center;
  box-shadow: inset 0 0 2em var(--opacity-third-color);
  -webkit-box-shadow: inset 0 0 2em var(--opacity-third-color);
}

/*----------Fin Content----------*/
/*----------Contain----------*/
.contain {
  position: relative;
  z-index: 5;
  padding: 1em;
}

.flex-row-c.contain {
  padding: 0 0.5em;
}

.contain.p-t5e {
  padding-top: 5em;
}

.contain p {
  font-weight: 900;
  letter-spacing: 0.03em;
  padding: 0.5em;
  width: 100%;
}

.contain p::first-letter, .contain p span {
  font-family: "aerofoil";
  font-size: 1.6em;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 0em 0.05em 0.05em var(--secondary-color), 0.05em 0em 0.05em var(--secondary-color), 0em -0.05em 0.05em var(--secondary-color), -0.05em 0em 0.05em var(--secondary-color), 0em 0.05em 0.05em var(--secondary-color), 0.05em 0em 0.05em var(--secondary-color), 0em -0.05em 0.05em var(--secondary-color), -0.05em 0em 0.05em var(--secondary-color);
}

.contain.contain-ml p::first-letter, .contain.contain-ml p span {
  font-family: "Open Sans";
  font-size: 1em;
  letter-spacing: 0.03em;
  font-weight: bold;
  color: currentColor;
  text-shadow: inherit;
}

.contain.contain-ml p::first-letter a, .contain.contain-ml p a span {
  color: var(--third-color);
  text-shadow: 0.02em 0.02em 0.1em var(--black-color), 0.02em 0.02em 0.1em var(--black-color), 0.02em 0.02em 0.3em var(--black-color), 0.02em 0.02em 0.3em var(--black-color), 0.02em 0.02em 0.6em var(--black-color), 0.02em 0.02em 0.6em var(--black-color), 0.02em 0.02em 0.6em var(--black-color);
}

/*----------Fin Contain----------*/
/*------------Forms------------*/
.form {}

.fieldset {}

.legend {}

.label {}

.input {}

:required {}

.textarea {}

.checkbox {}

.submit {}

/*------------Fin Forms------------*/
/*----------Divers----------*/
.font-spe {
  font-family: "aerofoil";
  font-size: 2em;
  letter-spacing: 0.08em;
}

.cookie {
  box-shadow: 0 -20vh 125vh 25vh hsla(0, 0%, 0%, 0.5);
  height: auto;
}

.cookie p {
  margin-top: 1em;
  color: var(--black-color);
}

.cookie>.flex-row-c {
  height: 100%;
}

.a_more_cookie, .a_accept_cookie {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 1em;
  padding: 1em;
  color: var(--white-color);
  background: var(--opacity-secondary-color);
}

.a_more_cookie {
  background: transparent;
}

.anim-delay-1x {
  animation-delay: 2s;
}

.anim-delay-2x {
  animation-delay: 2s;
}

.anim-delay-3x {
  animation-delay: 3s;
}

.anim-delay-4x {
  animation-delay: 4s;
}

.top-button {
  position: fixed;
  bottom: -4em;
  right: 1em;
  width: 3em;
  padding: 0em;
  z-index: 99;
  border: none;
  outline: none;
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
  font-size: 1.5em;
  opacity: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.top-button.active {
  bottom: 2em;
  opacity: 1;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*contact-phonav*/
.contact-phonav {
  display: none;
  position: fixed;
  z-index: 100;
  bottom: 0;
  height: 4em;
  width: 100%;
  background: hsl(27, 74%, 22%);
  color: var(--white-color);
  box-shadow: 0 0 20px var(--black-color);
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.menu-active .contact-phonav {
  opacity: 0.5;
}

.contact-phonav.opened {
  height: 25em;
}

.contact-phonav ul.btn-phonav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  height: 4em;
  overflow: hidden;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.contact-phonav.opened ul.btn-phonav {
  height: 3em;
}

.contact-phonav ul.btn-phonav::after {
  content: 'X';
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0em;
  width: 0%;
  height: 0%;
  background: hsla(0, 0%, 100%, 0);
  cursor: pointer;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.contact-phonav.opened ul.btn-phonav::after {
  font-size: 1em;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 100%, 0.05);
}

.contact-phonav ul.btn-phonav li {
  height: 100%;
  opacity: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s, opacity 0.15s;
  -moz-transition: all 0.3s, opacity 0.15s;
  -webkit-transition: all 0.3s, opacity 0.15s;
  transition-delay: 0s, 0.3s;
}

.contact-phonav.opened ul.btn-phonav li {
  height: 0%;
  opacity: 0;
  transition-delay: 0s, 0s;
}

.contact-phonav ul.contain-phonav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  padding: 0 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s, opacity 0.15s;
  -moz-transition: all 0.3s, opacity 0.15s;
  -webkit-transition: all 0.3s, opacity 0.15s;
  transition-delay: 0s, 0s;
}

.contact-phonav.opened ul.contain-phonav {
  padding: 2em 0;
  height: calc(100% - 3em);
  opacity: 1;
  transition-delay: 0s, 0.3s;
}

.contact-phonav ul.contain-phonav>li {
  width: auto;
}

.contact-phonav.opened ul.contain-phonav>li {
  padding: 0.5em 2.5em;
}

.contact-phonav li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  z-index: 999999992;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s, height 0s;
}

.loader.hided {
  opacity: 0;
  height: 0;
  transition-delay: 0s, 0.3s;
}

/*----------Lightbox----------*/
.lightbox_carousel_nav {}

.lightbox_carousel_nav a {}

.lightbox_carousel_nav .intro_img.with_legend a {
  height: 100%;
}

.lightbox_carousel_nav a img {}

.lightbox_container {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 500;
  width: 100%;
  height: 0%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox_container.active {
  height: 100%;
  opacity: 1;
}

.lightbox_title{
  position: absolute;
  z-index: 3;
  bottom: 0.5em;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 1.5em;
}

.lightbox_picture {
  position: relative;
  z-index: 2;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s;
}

.lightbox_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s;
}

.lightbox_close {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: hsla(var(--teinte), 80%, 2%, 0.93);
  backdrop-filter: blur(2px);
  transition: all 0.3s;
}
/*----------End Lightbox----------*/

.iframe {
  height: 22rem;
}

.img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.intro_img {
  max-width: 22em;
  max-height: 22em;
  margin: 2em;
  overflow: hidden;
  position: relative;
}

.intro_img.with_legend {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro_img.with_legend .lightbox_title_img {
  width: 100%;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
  position: absolute;
  bottom: 0;
  background: var(--primary-color);
  cursor: pointer;
}

.section_img {
  grid-column: 1/span12;
  position: relative;
  z-index: 4;
  width: 80%;
  max-width: 1600px;
  max-height: 20rem;
  margin-top: -2em;
  margin-bottom: -2em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0.1em 0.4em 0.5em hsla(0, 0%, 0%, 0.3);
}

.section_img.cover {
  max-height: 30rem;
}

.section_img>a {
  width: 100%;
  height: 100%;
}

.section_img.cover>a>img, .section_img>a>img.cover {
  object-fit: cover;
}

.contact-info>em {
  font-weight: bold;
  font-style: normal;
}

.section_img_end {
  margin-bottom: 2em;
}

.table {
  grid-column: span 6;
  border-top: 0.1em solid;
  padding: 1em 0;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.drink-table {
  padding: 0;
  flex-wrap: nowrap;
}

.table:nth-child(4n+1) {
  margin-left: 100%;
}

.table.drink-table:nth-child(4n+1) {
  margin-left: 0;
}

.table+.lightbox_carousel_nav {
  grid-column: span 6;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-top: 0.1em solid;
  padding: 1em 0;
}

.table:nth-child(4n+1)+.lightbox_carousel_nav {
  margin-left: -100%;
  margin-right: 100%;
}

.table:nth-child(1), .table+.lightbox_carousel_nav:nth-child(2) {
  border: 0;
}

.table>header, .table>p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.drink-table.table>header, .drink-table.table>p {
  height: 100%;
  padding: 0.5em !important;
  min-height: inherit;
  font-size: 1.2em;
}

.head-table {
  background: hsla(var(--teinte), 60%, 50%, 0.2);
  height: 50%;
  font-size: 1.2em;
  padding: 1em;
  width: 50%;
  min-height: 7em;
}

.drink-table.table>.head-table {
  width: 100%;
}

.price-table {
  background: hsla(var(--teinte), 80%, 30%, 0.2);
  height: 50%;
  width: 50% !important;
  min-height: 7em;
}

.drink-table.table>.price-table {
  display: none;
}

.desc-table {
  font-size: 0.8em;
  width: 100%;
  height: calc(50%/3);
  opacity: 0.8;
  background: hsla(var(--teinte), 50%, 20%, 0.1);
}

.desc-table>em {
  width: auto;
  padding: 0.5em;
}

.desc-table>span {
  width: auto;
  padding: 0.5em;
  font-family: "Raleway", sans-serif !important;
  text-shadow: 0 0 0 !important;
  color: var(--secondary-color) !important;
  font-weight: 400 !important;
  font-size: 100% !important;
}

.desc-table>span+span {
  border-left: 0.1em solid;
}

.table+.lightbox_carousel_nav>.intro_img {
  display: block;
}

/*----------Fin Divers----------*/
/*----------Footer----------*/
.footer {
  position: relative;
  z-index: 6;
  background: url("../images/texture_bois.jpg") center repeat-x;
  background-size: contain;
  border-top: 0.2em solid var(--third-color);
}

.footer-ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--opacity-third-color);
}

.footer-ul-1-li {
  width: auto;
  padding: 0.5em 2em;
  margin: 1em 0;
  border: 1px solid var(--opacity-secondary-color);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.footer-ul-1-li:last-child {
  border-bottom: 1px solid var(--opacity-secondary-color);
}

.footer-ul-2-li {
  width: auto;
  padding: 0.5em 1em;
  margin: 0.5em 0;
}

.footer-ul>li>a {
  color: var(--primary-color);
  text-shadow: 0.05em 0.05em 0.2em var(--secondary-color), 0.05em 0.05em 0.5em var(--secondary-color), 0.05em 0.05em 0.5em var(--secondary-color), 0.05em 0.05em 0.5em var(--secondary-color);
}

/*----------Fin Footer----------*/
/*--------------------Responsive spécifique au site---------------------*/
/*-----------------------------------------------------------------------
Ce qui sera affiché au dessus de 2550px - Format Desktop Large / Imac
-----------------------------------------------------------------------*/
@media (min-width: 2550px) {
  body {}
}

/*-----------------------------------------------------------------------
Ce qui sera affiché au dessus de 1024px - Format Desktop Large / Imac
-----------------------------------------------------------------------*/
@media (min-width: 1024px) {
  a:hover {
    color: var(--primary-color);
    text-shadow: 0.02em 0.02em 0.1em var(--black-color), 0.02em 0.02em 0.1em var(--black-color), 0.02em 0.02em 0.3em var(--secondary-color), 0.02em 0.02em 0.3em var(--secondary-color), 0.02em 0.02em 0.6em var(--secondary-color);
  }

  .menu__handle {
    display: none;
  }

  .menu {
    position: sticky;
    width: 100%;
    height: 100%;
    border-left: 0;
    background: url("../images/texture_bois.jpg") center repeat-x;
    background-size: contain;
    line-height: 1.2em;
  }

  .menu__inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    opacity: 1;
    background: var(--opacity-third-color);
  }

  .menu__inner li {
    border-left: 0.1em solid var(--third-color);
    min-width: 300px;
  }

  .menu__inner li:last-child {
    border-right: 0.1em solid var(--third-color);
  }

  .menu__inner li.active {
    background: hsla(0, 0%, 70%, 0.3);
  }

  .menu__inner li a:hover {
    color: var(--white-color);
    text-decoration: none;
    letter-spacing: 0.12em;
    transform: scale(1.02);
    text-shadow: 0.1em 0.1em 0.1em var(--secondary-color);
  }

  .behind{
    display: none;
  }

  .top-button:hover {
    filter: brightness(170%);
  }

  .footer-ul-1-li {
    border: 1px solid var(--opacity-secondary-color);
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .footer-ul-1-li:first-child {
    border-left: 0;
    border-bottom: 0;
  }

  .footer-ul-1-li:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .footer-ul>li>a:hover {
    color: var(--white-color);
    text-decoration: none;
    text-shadow: 0.1em 0.1em 0.1em var(--secondary-color);
  }
}

/*-----------------------------------------------------------------------
Ce qui sera affiché entre 0px et 1023px - Format Tablette / Ipad
-----------------------------------------------------------------------*/
@media (max-width: 1023px) {
  body {}

  .header {
    border-bottom: 0.2em solid var(--third-color);
  }

  .cookie>.flex-row-c {
    height: 70%;
  }

  .top-button {
    right: 0.5em;
  }

  .top-button.active {
    right: 0.5em;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -10rem;
    bottom: 0;
    width: 0%;
    max-width: 0%;
    height: 100vh;
    background: var(--secondary-color);
    border: 0;
  }

  .menu-active .menu {
    width: 39%;
    max-width: 39%;
  }

  .menu-active .menu__handle {
    /* right: 33.5%; */
  }

  body.menu-active .header, body.menu-active .main, body.menu-active .footer, body.menu-active .contact-phonav, body.menu-active .top-button {
    transform: translate(-38vw) !important;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .menu__inner {
    align-items: center;
    background: var(--opacity-third-color);
  }

  .menu__inner li {
    margin: 0.5em;
    background: none;
  }

  .intro_img {
    max-width: 15em;
    max-height: 15em;
    grid-column: span 6;
  }

  .table {
    grid-column: span 12;
  }

  .table:nth-child(4n+1) {
    margin-left: 0;
  }

  .table+.lightbox_carousel_nav {
    grid-column: span 12;
  }

  .table:nth-child(4n+1)+.lightbox_carousel_nav {
    margin-left: 0%;
    margin-right: 0%;
  }

  .head-table, .price-table {
    height: 50%;
    font-size: 1em;
  }

  .desc-table {
    height: auto;
  }

  .drink-table.table>header, .drink-table.table>p {
    font-size: 1em;
    width: calc(100% - 5em) !important;
    width: 100% !important;
  }

  .drink-table.table>p {
    width: 5em !important;
  }

  .table+.lightbox_carousel_nav>a {
    max-width: 21em;
    max-height: initial;
    margin: 0.5em;
  }

  .contact-info, .span6.iframe {
    grid-column: 1/span12;
  }

  .iframe {
    height: 20em;
  }

  .footer-ul-1-li {
    border: 1px solid var(--opacity-secondary-color);
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .footer-ul-1-li:first-child {
    border-left: 0;
    border-bottom: 0;
  }

  .footer-ul-1-li:last-child {
    border-right: 0;
    border-bottom: 0;
  }
}

/*-----------------------------------------------------------------------
Ce qui sera affiché 0px et 767px - Format Smartphone / Iphone Large
-----------------------------------------------------------------------*/
@media (max-width: 767px) {
  body {}

  .header {
    height: 15.3rem;
    background: url("../images/header_mobile.jpg") top no-repeat;
    background-size: contain;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -10rem;
    bottom: 0;
    width: 0%;
    max-width: 0%;
    height: 100vh;
  }

  .menu-active .menu {
    width: 60%;
    max-width: 60%;
  }

  .menu__handle {
    top: calc((15.3rem / 2) - 1.2em);
  }

  .menu-active .menu__handle {
    /* right: 53%; */
  }

  body.menu-active .header, body.menu-active .main, body.menu-active .footer, body.menu-active .contact-phonav, body.menu-active .top-button {
    transform: translate(-59vw) !important;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .cookie>.flex-row-c {
    height: 60%;
  }

  .a_more_cookie, .a_accept_cookie {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .top-button {
    right: 0.5em;
  }

  .top-button.active {
    right: 0.5em;
    bottom: 3.5em;
  }

  .contact-phonav {
    display: block;
  }

  .intro_img {
    max-width: calc(80vw - 7em);
    max-height: 17em;
    grid-column: span 12;
  }

  .section_img {
    max-height: 40rem;
  }

  .section_img.cover {
    max-height: 50rem;
  }

  .head-table, .price-table {
    width: 100% !important;
    height: auto;
    min-height: initial;
  }

  .table>header, .table>p {
    flex-direction: column;
  }

  .table + .lightbox_carousel_nav {
    flex-direction: column;
  }

  .table + .lightbox_carousel_nav > a{
    max-height: 15em;
  }

  .footer {
    margin-bottom: 4em;
    background-size: cover;
  }

  .footer-ul {
    flex-direction: column;
  }

  .footer-ul:last-child {
    padding-bottom: 2em;
  }

  #footer-ul-1 {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-ul-1-li {
    border: 0;
  }
}

/*-----------------------------------------------------------------------
Ce qui sera affiché entre 0 et 480px - Format Smartphone / Iphone
-----------------------------------------------------------------------*/
@media (max-width: 480px) {
  body {}

  .header {
    height: 15.5rem;
  }

  .menu-active .menu {
    max-width: 70%;
  }

  .menu__handle {
    width: 7rem;
    height: 7rem;
  }

  .menu-active .menu__handle {
    right: 60%;
  }
}

/*-----------------------------------------------------------------------
Ce qui sera affiché entre 0 et 320px - Format Smartphone / Iphone
-----------------------------------------------------------------------*/
@media (max-width: 320px) {
  body {}
}

/*--------------------Fin Responsive spécifique au site---------------------*/
/*----------Fin Modifs CSS----------*/