/* poppins-regular - latin */
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v20-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/poppins-v20-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/poppins-v20-latin-regular.woff2")
      format("woff2"),
    /* Super Modern Browsers */ url("../fonts/poppins-v20-latin-regular.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/poppins-v20-latin-regular.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/poppins-v20-latin-regular.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
  font-family: "Open-Sans-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v34-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/open-sans-v34-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/open-sans-v34-latin-regular.woff2")
      format("woff2"),
    /* Super Modern Browsers */ url("../fonts/open-sans-v34-latin-regular.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/open-sans-v34-latin-regular.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/open-sans-v34-latin-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

@font-face {
  font-family: "Libre-Baskerville-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/libre-baskerville-v14-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/libre-baskerville-v14-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/libre-baskerville-v14-latin-regular.woff2")
      format("woff2"),
    /* Super Modern Browsers */
      url("../fonts/libre-baskerville-v14-latin-regular.woff") format("woff"),
    /* Modern Browsers */
      url("../fonts/libre-baskerville-v14-latin-regular.ttf") format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/libre-baskerville-v14-latin-regular.svg#LibreBaskerville")
      format("svg");
  /* Legacy iOS */
}

* {
  font-family: "Poppins-Regular", "Open-Sans-Regular", "Arial", sans-serif;
}

:root {
  /* Couleur */
  --fondBanFoot: #dbd8d2;
  --fondHead: #ffffff;
  --fondBeige: #cec7b7;
  --blanc: white;
  --noir: black;
  --fondMarron: #7e6d5c;
  --fondGrisF: #6e6e6e;
  --fondGrisC: #f2f2f2;
  /* Police */
  --policePop: "Poppins-Regular";
  --policeOp: "Open-Sans-Regular";
  --policeBas: "Libre-Baskerville-Regular";
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* return top */

#returnOnTop {
  background: url("../img/footer/return_on_top.png") no-repeat;
  bottom: 1%;
  cursor: pointer;
  display: none;
  filter: alpha(opacity=50);
  /* IE < 8 */
  height: 48px;
  opacity: 0.5;
  position: fixed;
  right: 1%;
  width: 48px;
}

#returnOnTop:hover {
  filter: alpha(opacity=100);
  /* IE < 8 */
  opacity: 1;
}

/* menu */

.FadeMenu {
  width: 100%;
  height: 100%;
  background-color: rgba(223, 215, 203, 0.8);
  position: fixed;
  z-index: 1000;
  display: none;
}

/* loader */

#FondFade {
  width: 100%;
  height: 100%;
  background-color: rgba(223, 215, 203, 0.9);
  position: fixed;
  z-index: 1000;
  display: none;
}

.FondFade {
  display: block;
}

#loader {
  position: fixed;
  z-index: 1002;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#loader span {
  display: inline-block;
  width: 5px;
  height: 30px;
  background-color: var(--fondBeige);
}

#loader span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}

#loader span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}

#loader span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}

#loader span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow {
  0%,
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }

  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}

/* divers */
/* boutique */

#SplashBoutique {
  position: fixed;
  height: 458px;
  width: 800px;
  z-index: 1002;
  background-color: var(--blanc);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.FicheProduit {
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
}

.ContenantImage {
  width: 306px;
  display: flex;
  align-items: center;
  position: relative;
}
.ContenantImage > .notInStockInfo {
  position: absolute;
  background-color: #6e6e6e38;
  color: black;
  font-size: 20px;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  margin: 0;
  text-align: center;
  padding: 40% 0;
  box-sizing: border-box;
  z-index: 5;
}
.motcles_contenant_image {
  position: absolute;
  font-size: 1.2em;
  width: 306px;
  text-align: center;
  bottom: 0;
  left: 0;
  margin-left: 19%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ContenantImage > .motcles_contenant_image {
  margin-left: 0;
  transform: none;
  margin-bottom: 10px;
}
.JaimeFiche {
  position: absolute;
  margin-top: 20px;
  margin-left: 250px;
}

.FermerPanierBoutique {
  float: right;
  margin-right: 20px;
  margin-top: 15px;
}

.Close {
  font-size: 30px;
}

.FicheProduit > div > img {
  width: 100%;
  max-height: 458px;
}

.FicheDetailProduit {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.FicheNomProduit {
  width: 100%;
  /* margin-top: 30px; */
  margin-bottom: 15px;
  /* font-weight: 700; */
}

.motcles_contenant_image_mob {
  display: none;
}

.FicheEtoile {
  margin-top: 15px;
  margin-bottom: 15px;
}

.infos_produit {
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 1em;
  font-style: oblique;
  letter-spacing: 0.18px;
  text-align: left;
}

.FicheDescriptifProduit {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: justify;
}

.ContenantInfoPlus {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.ContenantBoutonPlusMoins {
  border: ridge 1px var(--noir);
  padding-top: 3px;
  padding-bottom: 3px;
  width: 30%;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.ContenantBoutonPlusMoins > span {
  vertical-align: middle;
  cursor: pointer;
}

.ContenantBoutonPlusPanier {
  padding-top: 3px;
  padding-bottom: 3px;
  border: ridge 1px var(--noir);
  width: 60%;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
}

.ContenantBoutonPlusPanier > span {
  vertical-align: middle;
}

.ContenantBoutonDetail {
  padding: 5px;
  border: ridge 1px var(--noir);
  width: 100%;
  text-align: center;
  font-size: 16px;
  background-color: var(--noir);
  color: var(--blanc);
  margin-top: 20px;
}

.FicheDetailProduit > a {
  height: 100%;
  width: 100%;
}

.Cursor {
  cursor: pointer;
}

.boutonajouteraupanier2,
.boutonajouteraupanier2_mob {
  display: flex;
  justify-content: center;
  align-items: center;
}

.boutonajouteraupanier2.change_couleur_btn,
.boutonajouteraupanier2_mob.change_couleur_btn {
  background-color: var(--fondMarron);
  height: 34px;
}

#ajout_panier,
#ajout_panier_mob {
  display: none;
  opacity: 0;
  height: 19px;
  width: 9.5px;
  border-right: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  border-radius: 2.5px;
}

#ajout_panier.dessine_fleche,
#ajout_panier_mob.dessine_fleche {
  opacity: 0;
  animation-delay: 500ms;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-name: validPanier;
  transform: scaleX(-1) rotate(135deg);
  animation-fill-mode: forwards;
}

@keyframes validPanier {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 9.5px;
    opacity: 1;
  }
  40% {
    height: 19px;
    width: 9.5px;
    opacity: 1;
  }
  100% {
    height: 19px;
    width: 9.5px;
    opacity: 1;
  }
}

.ajoute_panier,
.ajoute_panier_mob {
  display: flex;
  align-content: center;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  #SplashBoutique {
    height: auto;
    width: 96%;
  }

  .FicheProduit {
    width: 100%;
  }

  .ContenantImage {
    display: none;
  }

  .FicheDetailProduit {
    width: 94%;
  }

  .FicheNomProduit {
    margin-bottom: 0;
    font-size: 0.9em;
  }

  .motcles_contenant_image_mob {
    display: block;
    font-weight: 900;
    font-size: 0.9em;
    margin-bottom: 0;
    text-transform: uppercase;
  }

  .infos_produit {
    margin-top: 0;
    font-size: 0.85em;
  }

  .FicheDescriptifProduit {
    font-size: 0.8em;
  }

  .ContenantBoutonPlusMoins {
    width: 40%;
  }

  .ContenantBoutonPlusPanier {
    width: 50%;
  }

  .FicheDetailProduit > a {
    width: 97%;
    margin-bottom: 15px;
  }
}

/* Material */
.material-middle {
  vertical-align: middle;
}

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

.material-font-25 {
  font-size: 2.5rem;
}

.material-fill-0 {
  font-variation-settings: "FILL" 0;
}

.material-fill-1 {
  font-variation-settings: "FILL" 1;
}
