@charset "utf-8";

/* --------------- Variables universelles --------------- */

:root {
  --red-color: #c00017;
  --dark-red-color: #840212;
  --light-red-color: #ea475c;
  --verylight-red-color: #fdddde;
  --black-color: #141414;
  --not-black-color: #1e0002;
}

.col-10 {
  float: left;
  width: 10%;
}

.col-15 {
  float: left;
  width: 15%;
}

.col-20 {
  float: left;
  width: 20%;
}

.col-25 {
  float: left;
  width: 25%;
}

.col-30 {
  float: left;
  width: 30%;
}

.col-33 {
  float: left;
  width: 33%;
}

.col-40 {
  float: left;
  width: 40%;
}

.col-50 {
  float: left;
  width: 50%;
}

.col-70 {
  float: left;
  width: 70%;
}

.col-75 {
  float: left;
  width: 75%;
}

.col-80 {
  float: left;
  width: 80%;
}

.col-90 {
  float: left;
  width: 90%;
}

.col-100 {
  float: left;
  width: 100%;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.plr-2 {
  padding-left: 2%;
  padding-right: 2%;
}

.plr-5 {
  padding-left: 5%;
  padding-right: 5%;
}

.bold {
  font-weight: bold;
}

.stars {
  width: 1.5rem;
}

.stat {
  font-size: 1.75rem;
  margin-left: 2rem;
}

h1.bold {
  font-size: 2.5rem;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 18px;
}

.text-center {
  text-align: center;
}

.vertical-center {
  display: flex;
  align-items: center;
}

.fade-anim {
  transition: all 0.2s ease-in-out;
}

.content-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* disallow highlighting text */
.noselect {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* --------------- /Variables universelles --------------- */

a,
.link,
.lienrouge,
.lienbleu,
.link a,
.lienrouge a,
.lienbleu a {
  font-weight: bold;
  color: var(--dark-red-color);
  text-decoration: underline;
}

a:hover,
.link:hover,
.lienrouge:hover,
.lienbleu:hover {
  opacity: 0.75;
  color: var(--light-red-color);
  transition: all 0.2s ease-in-out;
}
.button-container a {
  text-decoration: none;
}

/* --------------- HEADER --------------- */
body {
  padding-top: 125px;
}

/* ? */
#header {
  color: #f00;
  background-color: #ccc;
  width: 100%;
  height: 100px;
  font-size: 1em;
}

.navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  z-index: 20;
  top: 0;
  background-color: var(--red-color);
  height: 90px;
  min-height: 90px;
  padding: 0 30px 0 30px;
}

.navbar-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-mid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 45%;
  list-style-type: none;
}

.navbar-right {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 25%;
}

.logo-header {
  max-width: 180px;
  width: 180px;
}

.navbar-mid .btn-nav {
  border-bottom: 3px solid transparent;
}

.navbar-mid .btn-nav:hover {
  border-color: var(--light-red-color);
  transition: all 0.2s ease-in-out;
}

.btn-eshop {
  border: 1px;
  border-radius: 10px;
  background-color: var(--dark-red-color);
  padding: 2% 10%;
  vertical-align: text-bottom;
  transition: all 0.2s ease-in-out;
  display: flex;
}

.btn-eshop:hover {
  background-color: white;
  color: var(--dark-red-color) !important;
}

.btn-eshop span.btn-nav {
  color: white;
  font-weight: bold;
}
.btn-eshop:hover span.btn-nav {
  color: var(--dark-red-color) !important;
}

.btn-eshop img {
  margin-left: 5px;
  width: 30px;
}

.btn-eshop img:nth-of-type(2) {
  display: none;
}

.btn-contact {
  border: 1px white solid;
  border-radius: 10px;
  padding: 2% 10%;
  vertical-align: text-bottom;
  transition: all 0s ease-in-out !important;
}

.btn-contact:hover {
  background-color: white;
  color: var(--dark-red-color) !important;
}

.navbar a {
  color: white !important;
  font-weight: 300;
  font-size: 18px !important;
  text-decoration: none;
  opacity: 1 !important;
}

/* ------ Menu déroulant ------ */

.has-menu-deroulant {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  width: 200px;
  padding: 0;
  box-sizing: border-box;
}

.has-menu-deroulant:hover {
  background: var(--dark-red-color);
}

.menu-deroulant {
  z-index: -1;
  position: absolute;
  top: 90px;
  width: max-content;
  padding-inline-start: 0;
  background-color: var(--dark-red-color);
  transition: all 0.2s ease-in-out;
}
.menu-deroulant li {
  display: none;
  list-style: none;
  text-align: left;
  padding-bottom: 0.5rem;
  text-align: center;
}

.menu-deroulant a {
  display: block;
  width: 200px;
  border-bottom: 3px solid transparent;
}

.menu-deroulant a span {
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease-in-out;
}
.menu-deroulant a:hover span {
  border-color: var(--light-red-color);
}

.has-menu-deroulant:hover .menu-deroulant li {
  display: block;
}

/* ------ Sous-menu déroulant ------ */

.menu-deroulant li ul {
  margin: -31px 0 0 200px;
  position: absolute;
  padding-inline-start: 0;
  left: auto;
  background-color: var(--dark-red-color);
  display: none;
}

.menu-deroulant > li:hover > ul {
  display: block;
}

/* ------ Sous-sous-menu déroulant ------ */

.menu-deroulant li ul li ul {
  margin: -30px 0 0 200px;
  position: absolute;
  padding-inline-start: 0;
  left: auto;
  background-color: var(--dark-red-color);
  display: none;
}

.menu-deroulant > li > ul > li:hover > ul {
  display: block;
}

/* ------ /Sous-sous-menu déroulant ------ */

/* ------ /Sous-menu déroulant ------ */

/* ------ Menu déroulant ------ */

/* Mobile nav menu */

.mobile-navbar {
  width: 100vw;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  height: 52px;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  background-color: white;
}

.logo-header-mobile {
  max-width: 100%;
  height: auto;
  margin-top: 6px;
}

/* Sidenav menu */
.sidenav {
  height: 100%;
  width: 250px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: -250px;
  background-color: white;
  padding-top: 60px;
  transition: left 0.5s ease;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.sidenav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Sidenav menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: black;
  display: block;
  transition: 0.3s;
}

.sidenav li {
  border-top: 1px solid;
  border-top-color: rgba(0, 0, 0, 0.13);
}

.sidenav li .btn-nav {
  font-size: 18px;
}
.sidenav a:hover {
  color: #111;
}

/* Active class */
.sidenav.active {
  left: 0;
}

/* Close btn */
.sidenav .close {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}

.burger-icon {
  position: absolute;
  top: 6px;
  left: 6px;
}

.burger-icon span {
  display: block;
  width: 35px;
  height: 5px;
  border-radius: 8px;
  background-color: var(--black-color);
  margin: 6px 6px;
}

@media only screen and (max-device-width: 480px) {
  .subcontainer img {
    max-height: 20vh;
  }
}

@media screen and (max-width: 1200px) {
  .mainpagecontent {
    flex-direction: column;
  }
  .maincontainer {
    width: 100% !important;
  }
  .maincontainer a {
    display: flex;
    justify-content: center;
  }
  .subcontainer {
    gap: 2rem !important;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: unset !important;
  }
  .subcontainer img {
    max-width: 10rem !important;
  }
  .subcontainer_border {
    max-width: 70%;
  }
  .navbar {
    display: none;
  }
  .sidenav {
    display: block;
  }
  .mobile-navbar {
    display: block;
  }
  .btn-eshop {
    border-radius: 0;
  }
  .footer-sitemap {
    display: flex;
    flex-direction: column;
  }
}

/* --------------- /HEADER --------------- */

#result_sent_mail {
  position: fixed;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
}
#result_sent_mail > div {
  margin: 0 auto;
  width: 50%;
  min-width: 200px;
  background: var(--verylight-red-color);
  font-weight: bold;
  padding: 15px;
}

#popup_giraud {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  opacity: 1;
  animation: 0.5s linear 2.5s 1 normal popup_gr_goaway forwards;
  top: 0;
  z-index: 10003;
}
@keyframes popup_gr_goaway {
  0% {
    /*opacity: 0.97;*/
    /*z-index: 100;*/
  }
  90% {
    /*opacity: 0.97;*/
    z-index: 10003;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
#popup_giraud .loading_webp {
  margin: auto;
  width: 33%;
  display: block;
  padding-top: 100px;
}
#popup_giraud p {
  text-align: center;
  padding-top: 20px;
}
#popup_giraud p strong {
  color: var(--red-color);
}
#popup_giraud .loading_gif {
  margin: auto;
  width: 50px;
  display: block;
  padding-top: 10px;
}

/* ---------------index.html --------------- */
.content {
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1.4em;
}

.mainpagecontent {
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  justify-content: space-between;
}

.maincontainer {
  width: 100%;
}
.maincontainer p,
.maincontainer li {
  font-size: 18px;
}

.subcontainer {
  display: grid;
  flex-direction: row; /* Organise les éléments horizontalement */
  justify-content: center;
  flex-wrap: wrap; /* Permet aux éléments de passer à la ligne suivante si nécessaire */
  gap: 4.5rem;
  width: 100%;
  margin-top: 20px;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
}

.subcontainer_border {
  border: 1px solid #c00017;
  border-radius: 15px;
  display: flex;
  width: -webkit-fill-available;
  transition: all 0.2s ease-in-out;
  justify-content: center;
  margin: 1rem 0;
}
.subcontainer p {
  font-size: 12px;
  color: #c00017 !important;
  font-weight: bold;
  display: inline-block;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
}

/* .products_page.subcontainer{
     grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
     width: 100%;
} */

.subcontainer div,
.subcontainer a {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
  text-decoration: none !important;
}
.subcontainer a img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini_giraud_text {
  font-size: 13px !important;
  font-weight: normal !important;
  border: 1px;
  border-radius: 30px;
  background-color: var(--verylight-red-color);
  padding: 5px 10px;
  color: var(--red-color);
}

.info-stat {
  font-size: 1.5rem;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.red-button,
.white-layer {
  min-width: 200px;
  box-sizing: border-box;
}

.red-button {
  margin: 1% 1% 1% 0%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background-color: var(--red-color);
  color: white !important;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  border: 0px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.red-button a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  color: white !important;
}

.red-button:hover {
  background-color: var(--light-red-color);
}

.red-button:hover a {
  color: white;
}

.white-layer {
  background-color: white !important;
  color: var(--red-color) !important;
  border: 1px solid var(--red-color) !important;
}

.white-layer:hover {
  background-color: var(--light-red-color) !important;
  border: 1px solid var(--light-red-color) !important;
  color: white !important;
}

.cooltools {
  width: 220px;
  position: relative;
  top: 75px;
  left: 75px;
  z-index: -50;
}
@media screen and (max-width: 1790px) {
  .cooltools {
    display: none;
  }
}

.white-button {
  margin: 1%;
  padding: 0.97%;
  border-radius: 5px;
  background-color: white;
  color: var(--red-color);
  border-width: 1px;
  border-color: var(--red-color);
}

/* --------------------------------------------------- */

/* ------------------- Contact.html ------------------- */

/* Contenu du formulaire */
.form-field {
  width: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group h1 {
  text-align: center;
  width: 100%;
  font-size: 2rem !important;
}
.form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* labels sur la gauche précédent les inputs */
.form-group label {
  flex: 1;
  text-align: right;
  margin-right: 5rem;
  align-self: flex-start;
  font-size: 1.4rem;
}

/* Style d'es input en forme de cases grises Gfix */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  background: #f1f1f1;
  color: #7a7a7a;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

/* Bonton choisir un fichier */
.custom-file-upload {
  background: var(--not-black-color);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  display: inline-block;
  max-width: 150px;
  cursor: pointer;
  text-align: center;
  margin-right: 0 !important;
  text-align: center !important;
  font-size: 1rem !important;
}
.file-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
label[for="file"] {
  margin-right: 1rem;
}
.form-group input,
.form-group textarea {
  flex: 2;
}

/* bouton envoyer le formulaire */
.form-group:last-child {
  margin-top: auto;
  align-self: flex-end;
}
.form-group:last-child input[type="submit"] {
  background: var(--red-color);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  margin-bottom: 3rem;
}

/* pour le input file zone de texte affichaint le fichier selectionné */
.file-display {
  background: #f1f1f1;
  color: #7a7a7a;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  height: auto;
  display: flex;
  align-items: center;
}

/* Hauteur du input message */
.form-group textarea {
  height: 150px;
}

/* Adaptation en format mobile et tablet */
@media (max-width: 768px) {
  .form-field {
    width: 90%;
    align-items: center;
  }
  .form-group:last-child {
    align-self: center;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .form-group label {
    margin-right: 0;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .form-group h1 {
    margin-top: 70px !important;
  }
  .form-group input[type="submit"] {
    margin-top: 1rem;
    margin-bottom: 3rem !important;
    padding: 1rem 2rem !important;
    font-size: 1.5rem !important;
  }
  #result_sent_mail > div {
    width: 75%;
  }
  #popup_giraud .loading_webp {
    width: 75%;
  }
}
@media (max-width: 1200px) {
  body {
    padding-top: 75px;
  }
  .mobile-center {
    text-align: center;
    margin: auto;
  }
  h1.bold {
    font-size: 2rem;
  }
  .products_page.subcontainer {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/* ------------------ /Contact.html ------------------- */

/* CSS Document */

html {
  font-size: 14px;
}

body {
  color: #000;
  margin: auto;
  font-family: "Poppins", sans-serif;
}

#site {
  margin-left: auto;
  margin-right: auto;
  /*padding-top: 20px;*/
  /* overflow: hidden; */
}

#hlogo {
  width: 200px;
  height: 100px;
  display: inline-block;
  vertical-align: bottom;
}

#hkiwi {
  border: 1px solid black;
  color: black;
  display: inline-block;
  float: right;
  height: 60px;
  margin-right: 10px;
  margin-top: 10px;
  padding: 2px;
  text-align: center;
  vertical-align: bottom;
  width: 203px;
}

#hkiwi a {
  color: black;
}

#hphrase {
  width: 300px;
  height: 50px;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 2em;
  display: inline-block;
  vertical-align: bottom;
}

.inline {
  display: inline-block;
}

#navigationtop {
  clear: both;
  margin-left: 2px;
  margin-right: auto;
  height: 29px;
  margin-top: 2px;
  margin-bottom: 20px;
  padding-top: 2px;
  color: #333;
  font-size: 1.4em;
  text-align: center;
}

#contenu {
  margin-top: 5px;
  font-size: 1.4em;
  min-height: 500px;
  width: 95%;
  margin: auto;
}

#contenu .item {
  display: flex;
  align-items: start;
  margin: 0 auto 30px;
  max-width: 90%;
}

#contenu .item .image-container {
  flex: 0 0 auto;
  min-width: 150px;
}

#contenu .item .text-container {
  flex: 1;
}

#piedpage {
  font-size: 1.2em;
  color: white !important;
  clear: both;
  margin-top: 4rem;
  padding-top: 4rem;
  padding-bottom: 5px;
  background-color: #373a3c;
}

.contact-page #piedpage {
  margin-top: -10px !important;
}

.footer-sitemap {
  display: inline-block;
  margin: auto;
  width: 66%;
  vertical-align: top;
}

.footer-contact {
  display: inline-block;
  margin: auto;
  width: 33%;
  text-align: center;
}

.footer-contact .contact {
}

.footercolumn {
  display: inline-block;
  margin: auto;
  width: 32%;
  vertical-align: top;
}

#resocial {
  height: 29px;
}

.menuhor {
  clear: both;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.suitedecale {
  clear: both;
  padding-left: 7%;
  padding-top: 50px;
  margin-top: 30px;
}

.decale {
  clear: both;
  padding-left: 7%;
}

.decale-divers {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
}

.decale20 {
  clear: both;
  padding-left: 20%;
}

.suitecentre {
  clear: both;
  padding-top: 50px;
  margin-top: 30px;
  text-align: center;
}

.centreimage {
  margin-left: 15%;
}

.contenutext {
  padding-right: 5px;
  margin-top: 30px;
  /* margin-left: 1%; */
}
.productcontainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 30px;
  max-width: 90%;
}
.imganimpage {
  width: 270px;
  height: 160px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.topmarge {
  margin-top: 10px;
}

.topmargebig {
  margin-top: 40px;
}

.paddinleft {
  padding-left: 10px;
}

.menuimage {
  display: inline-block;
  display: inline;
  zoom: 1;
  vertical-align: top;
  text-align: center;
  margin-right: 20px;
  margin-top: 10px;
  width: 120px;
  font-size: 0.9em;
}

.imagecote {
  float: left;
  margin-top: 10px;
  margin-right: 2px;
}

.imagetxt {
  margin-top: 10px;
  margin-left: 50px;
}

.clear {
  clear: both;
}

.contenusuite {
  clear: both;
  margin-top: 10px;
}

.petitablo tr,
.petitablo td,
.petitablo th {
  height: 40px;
}

.toupetitablo tr,
.petitablo td,
.toupetitablo th {
  height: 20px;
  width: 20px;
}

.paddingtop {
  padding-top: 20px;
}

.paddingtopbig {
  padding-top: 50px;
}

.margeleft {
  margin-left: 40px;
}

.smaller {
  font-size: 0.8em;
}

.h1-like {
  font-size: 1.87571em;
  font-weight: bold;
  margin: 0.8077em 0 0 0;
}

.h2-like {
  font-size: 1.7143em;
  font-weight: normal;
  margin: 0.875em 0 0 0;
}

.h3-like {
  font-size: 1.5714em;
  font-weight: normal;
  margin: 0.9545em 0 0 0;
}

h4,
.h4-like {
  font-size: 1.4714em;
  font-weight: normal;
  margin: 0.9545em 0 0 0;
}

h5,
.h5-like {
  font-size: 1.3714em;
  font-weight: normal;
  margin: 0.9545em 0 0 0;
}

.lerivet {
  font-size: 1.2em;
  font-weight: bold;
}

.lerivet1 {
  font-size: 1.4em;
}

/* soft reset */

ul,
ol {
  padding-left: 2em;
}

ul.unstyled {
  list-style: none;
}

em {
  font-style: italic;
}

/* avoid top margins on first content element */

p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
blockquote:first-child,
pre:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
  margin-bottom: 0;
}

/* avoid margins on nested elements */

li p,
li ul,
li ol {
  margin-top: 0;
  margin-bottom: 0;
}

/* max values */

img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
video {
  max-width: 100%;
}

/* pictures */

img {
  height: auto;
  vertical-align: middle;
}

a img {
  border: 0;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.txtleft {
  text-align: left;
}

.txtright {
  text-align: right;
}

.txtcenter {
  text-align: center;
}

.fleft {
  float: left;
  margin-left: 5px;
}

.fright {
  float: right;
  margin-left: 5px;
}

/*a:link {
    color: #000;
    text-decoration: none;
}*/

#piedpage a {
  color: white !important;
  text-decoration: none;
  font-weight: lighter;
}

/*a:visited {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--red-color);
    text-decoration: none;
}

#piedpage a:hover {
    color: #FFF;
    text-decoration: none;
}*/

/*.lienrouge a:link {
    color: #F00;
    text-decoration: none;
}

.lienrouge a:visited {
    color: #F00;
    text-decoration: none;
}

.lienrouge a:hover {
    color: var(--light-red-color);
    text-decoration: none;
}*/

.strong {
  font-weight: bold;
}

#acheter {
  max-width: 600px;
  padding-left: 5px;
  border: 2px solid #ef291f;
  margin: auto;
  text-align: center;
  clear: both;
}

#acheter a:link {
  text-decoration: underline;
  color: #ef291f;
  font-weight: bold;
}

#acheter a:visited {
  text-decoration: underline;
  color: #ef291f;
  font-weight: bold;
}

#acheter a:hover {
  text-decoration: underline;
  color: black;
  font-weight: bold;
}

/* les tableaux */

table {
  border-color: #000;
  margin-top: 10px;
  border: 1px solid black;
  border-collapse: collapse;
  vertical-align: middle;
  text-align: center;
}

table td,
table th {
  padding: 3px;
  vertical-align: middle;
  border: 1px solid black;
}

/* menu deroulant menu deroulant menu deroulant menu deroulant menu deroulant */

#menu,
#menu ul,
#piedpage ul
/* Liste */ {
  list-style: none;
  line-height: 21px;
}

#menu,
#menu ul {
  padding: 0;
  margin: 0;
  text-align: center;
}

#menu
/* Ensemble du menu */ {
  font-weight: light;
  /* on met le texte en gras */
  font-family: "Poppins", sans-serif;
  font-size: 180px;
  /* hauteur du texte : 12 pixels */
}

#menu a
/* Contenu des listes */ {
  display: block;
  /* on change le type d'élément, les liens deviennent des balises de type block */
  padding: 0;
  /* aucune marge intérieure */
  background: #b4b4b4;
  /* couleur de fond */
  color: #000;
  /* couleur du texte */
  text-decoration: none;
  /* on supprime le style par défaut des liens (la plupart du temps = souligné) */
  width: 125px;
  /* largeur */
}

#menu li
/* Elements des listes */ {
  float: left;
  /* pour IE qui ne reconnaît pas "transparent" */
  border-left: 1px solid #b4b4b4;
  /* on met une bordure blanche à droite de chaque élément */
}

/* IE ne reconnaissant pas le sélecteur ">" */

html > body #menu li {
  border-right: 1px solid transparent;
  /* on met une bordure transparente à droite de chaque élément */
}

#menu li ul
/* Sous-listes */ {
  position: absolute;
  /* Position absolue */
  width: 125px;
  /* Largeur des sous-listes */
  left: -999em;
  /* Hop, on envoie loin du champ de vision */
}

#menu li ul li
/* Éléments de sous-listes */ {
  /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
  border-top: 1px solid #b4b4b4;
  /* on met une bordure blanche en haut de chaque élément d'une sous liste */
}

#menu li ul ul
/* Sous-listes */ {
  position: absolute;
  /* Position absolue */
  width: 125px;
  /* Largeur des sous-listes */
  left: -999em;
  /* Hop, on envoie loin du champ de vision */
}

#menu li ul li ul li
/* Éléments de sous-sous-listes */ {
  /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
  border-top: 1px solid #b4b4b4;
  /* on met une bordure blanche en haut de chaque élément d'une sous liste */
}

/* IE ne reconnaissant pas le sélecteur ">" */

html > body #menu li ul li {
  border-top: 1px solid #b4b4b4;
  /* on met une bordure transparente en haut de chaque élément */
}

html > body #menu li ul li ul li {
  border-top: 1px solid #b4b4b4;
  /* on met une bordure transparente en haut de chaque élément */
}

#menu li ul ul {
  margin: -18px 0 0 120px;
  /* LOLO rajoute des posibilite */
  border-left: 1px solid #b4b4b4;
  /* Petite bordure à gauche pour ne pas coller ... */
}

#menu li ul ul ul {
  margin: -18px 0 0 120px;
  /* On décale les sous-sous-listes pour qu'elles ne soient pas au dessus des sous-listes */
  /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
  border-left: 1px solid #b4b4b4;
  /* Petite bordure à gauche pour ne pas coller ... */
}

/* IE ne reconnaissant pas le sélecteur ">" ... je me répète ;-) */

html > body #menu li ul ul {
  border-left: 1px solid transparent;
}

/* on met une bordure transparente sur la gauche de chaque élément */

html > body #menu li ul ul ul {
  border-left: 1px solid transparent;
}

#menu a:hover
/* Lorsque la souris passe sur un des liens */ {
  color: #fff;
  /* On passe le texte en noir... */
  background: #000;
  /* ... et au contraire, le fond en blanc */
}

#menu li:hover ul ul,
#menu li.sfhover ul ul
/* Sous-sous-listes lorsque la souris passe sur un élément de liste */ {
  left: -999em;
  /* On expédie les sous-sous-listes hors du champ de vision */
}

#menu li:hover ul ul ul,
#menu li.sfhover ul ul ul
/* Sous-sous-listes lorsque la souris passe sur un élément de liste */ {
  left: -999em;
  /* On expédie les sous-sous-listes hors du champ de vision */
}

#menu li:hover ul,
#menu li li:hover ul,
#menu li.sfhover ul,
#menu li li.sfhover ul,
#menu li li li:hover ul,
#menu li li li.sfhover ul,
#menu li li li li:hover ul,
#menu li li li li.sfhover ul
/* Sous-listes lorsque la souris passe sur un élément de liste ET sous-sous-lites lorsque la souris passe sur un élément de sous-liste */ {
  left: auto;
  /* Repositionnement normal */
  min-height: 0;
  /* Corrige un bug sous IE */
}

.DisplayInf768 {
  display: none;
}

#CadreBtnNavAlter {
  display: none;
  height: 39px;
  width: 35px;
  overflow: hidden;
  margin-right: 2px;
}

#CadreNavAlter {
  background-color: #333;
  border-radius: 10px 0px 10px 0px;
  margin-left: 40px;
  margin-top: -35px;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  transition: max-height 1s ease 0s;
  z-index: 5000;
}

#CadreNavAlter ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

#CadreNavAlter li {
  border-bottom: 1px solid #fff;
  list-style: none outside none;
  color: #fff;
}

#CadreNavAlter a {
  text-decoration: none;
  color: #fff;
}

#CadreNavAlter a:link {
  color: #fff;
}

#CadreNavAlter a:visited {
  color: #fff;
}

#CadreNavAlter a:hover {
  color: #fff;
}

#CadreNavAlter a:active {
  color: #fff;
}

.civilite {
  width: 15%;
}

.Civ {
  padding-right: 25%;
}

.CadreLi {
  width: 100%;
  padding: 0.8em;
}

.NavAlterActif {
  width: 100%;
  padding: 0.8em;
  background-color: #000;
  position: relative;
  right: 3px;
}

.NavContent {
  display: none;
}

table {
  margin: auto;
}

.table-rivet {
  width: 95%;
}

.detail-caract table {
  border: 1px solid black;
  width: 95%;
  padding: 5px 1px;
  table-layout: fixed;
}

.detail-caract-vis-encoche table {
  border: 1px solid black;
  width: auto;
  padding: 5px 1px;
  table-layout: fixed;
}

.detail-caract th,
.detail-caract-vis-encoche th {
  overflow-wrap: break-word;
  border: 1px solid black;
}

.detail-caract td,
.detail-caract-vis-encoche td {
  width: 20px;
  border: 1px solid black;
  overflow-wrap: break-word;
}

.detail-caract .headTable,
.detail-caract-vis-encoche .headTable {
  text-align: left;
}

.detail-caract img,
.detail-caract-vis-encoche img {
  max-height: 150px;
  width: auto;
  clear: both;
  padding-bottom: 1em;
}

.detail-caract .catalogue-pdf,
.detail-caract-vis-encoche .catalogue-pdf {
  font-weight: normal;
  float: right;
}

.catalogue-pdf img {
  width: 4em;
  height: 4em;
}

#pub_sites {
  /* display: none; */
  position: fixed;
  bottom: 5%;
  right: calc(50% - 586px);
  z-index: 99;
  border: none;
  outline: none;
  color: #910 !important;
  cursor: default;
  font-size: 14px;
  width: 14em;
  text-align: justify;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.5);
  text-shadow: 1px 1px 2px white;
  padding: 10px 0px 16px 5px;
}

@media all and (max-width: 1200px) {
  #pub_sites {
    right: 1%;
  }
  #piedpage {
    font-size: 0.7rem;
    padding-top: 2rem;
  }
  #piedpage ul {
    padding-left: 10px;
  }
}

@media all and (max-width: 768px) {
  #pub_sites {
    display: none;
  }
  .products_page.subcontainer {
    grid-template-columns: 1fr 1fr;
  }
}

.pub_sites_new {
  position: absolute;
  color: red;
  margin-left: 130px;
  font-style: italic;
  text-shadow: 1px 1px 2px yellow;
  margin-top: -3px;
}

#pub_sites u {
  margin-bottom: 5px;
  display: inline-block;
}

/* Go Top Button */

#goTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 50%;
  right: calc(50% - 470px);
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 5px;
  /* Some padding */
  border-radius: 10px;
  font-size: 18px;
  width: 4em;
  height: 4em;
}

#goTopBtn:hover {
  background-color: #555;
  /* Add a dark-grey background on hover */
}

.flotte {
  float: left;
  padding-right: 1em;
}

#menu .bat_boutique {
  background: #ee291f;
  color: white;
}

#menu .bat_boutique:hover {
  background: var(--light-red-color);
}

@media only screen and (max-width: 768px) {
  /* Go Top Button */
  #goTopBtn {
    right: 3em;
  }
  .DisplayInf768 {
    display: block;
  }
  .DisplaySup768 {
    display: none;
  }
  #CadreBtnNavAlter {
    display: block;
  }
  .NavContent {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -moz-justify-content: justify;
    -ms-justify-content: justify;
    justify-content: space-between;
  }
  .productcontainer {
    flex-direction: column-reverse;
    align-items: center;
  }
  .Tampon {
    width: 35px;
  }
  #hlogo {
    float: none;
    height: 60px;
    width: 127px;
  }
  #header {
    height: 60px;
    position: fixed;
    z-index: 10000;
  }
  table td,
  table th {
    font-size: 10px;
    vertical-align: middle;
    padding: 1px;
  }
  table img {
    max-width: 40px;
  }
  /*#contenu {
        width: 95%;
    }*/
  /*#contenu,
    #piedpage {
        position: relative;
        top: 60px;
    }*/
  h1,
  .h1-like {
    font-size: 1.6em;
  }
  h2,
  .h2-like {
    font-size: 1.5em;
  }
  h3,
  .h3-like {
    font-size: 1.4em;
  }
  h4,
  .h4-like {
    font-size: 1.3em;
  }
  h5,
  .h5-like {
    font-size: 1.2em;
  }
  #piedpage {
    /*height: 220px;*/
  }
  .footercolumn {
    display: inline-block;
    width: 48%;
  }
  .menuhor {
    max-width: 250px;
    margin: auto;
  }
  .detail-caract table {
    table-layout: fixed;
    width: 99%;
  }
  .table-rivet {
    width: 99%;
  }
  /* Go Top Button */
  #goTopBtn {
    bottom: 10px;
    right: 20px;
    width: 3em;
    height: 3em;
  }
  .detail-caract img {
    max-height: 100px;
    max-width: 100%;
  }
  .detail-caract .catalogue-pdf img {
    width: 3em;
    height: 3em;
  }
  .detail-caract .catalogue-pdf span {
    display: none;
  }
  .footer-sitemap,
  .footer-contact {
    width: 100%;
  }
  #petitconteneur,
  #conteneur1123,
  #petitconteneurinverse {
    display: unset !important;
  }
}

@media screen and (max-width: 440px) {
  .mini_giraud_text {
    font-size: 10px !important;
  }
  .button-container {
    flex-direction: column;
    gap: 1rem;
  }
  /*.products_page.subcontainer{
        grid-template-columns: 1fr;
    }*/
}

/* --------------------------------------------------------------------- */
