*{ border: 0; box-sizing: border-box; }
html {
    font-size: 100%;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
  }
body {
  width: 100%;
  font-size: 0.95em;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--wp--preset--color--gris-foncer);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 0;
  border: 0px solid transparent;
  transition: all 0.3s linear;
}
button {
  margin: 0;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
::placeholder { 
  color:#cccccc;
  font-family: sans-serif;
  font-style: italic;
}
/**
* HOME PAGE
*/
.titre-home {
  font-size: 4.5rem !important;
  font-family: var(--font-curve), sans-serif;
}
/**
* TITRES
*/
.titre_curve_marron, .titre_curve_violet {
  display: block;
  margin: auto;
  padding: 2rem;
  text-align: center;
  font-size: 3rem;
  font-family: var(--font-curve);
}
.titre_curve_marron { color: var(--marron); }
.titre_curve_violet { color: var(--violet); }
/**
* VITRINE
*/
#vitrine {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 2rem;
  padding: 4rem 0;
  max-width: 1250px;
  width: 100%;
  margin: auto;
}
.plus_de_details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 200px;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid var(--violet);
  border-radius: 4px;
  text-decoration: none;
  color: var(--violet);
  transition: background-color 0.3s linear;
}
.plus_de_details:hover,.plus_de_details:active {
  background-color: var(--gris-clair);
}
/**
* FILE D'ARIANE
*/
.file-d-ariane {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 3rem;
  color: #ffffff;
  background-color: var(--violet);
}
.file-d-ariane a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: var(--jaune);
  font-weight: bold;
}
.file-d-ariane a:hover, .file-d-ariane a:active {
  color: var(--wp--preset--color--gris-foncer);
}
/**
* PRODUCT PAGE
*/
#root_product {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 0 3rem 0;
}
#description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#product_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  width: 100%;
}
.hover_gallery {
  cursor: pointer;
  outline: 0 solid var(--violet);
  transition: all 0.2s linear;
}
.img_selected {
  outline: 0.5rem solid var(--violet);
}
/**
* FORMULAIRE
*/
#content_contact {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
  background-color: var(--gris-clair);
}
#envoyer-email {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 100%;
  margin: auto auto 2rem auto;
}
label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
input[type="text"], input[type="email"] {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  transition: all 0.3s linear;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border: 1px solid var(--marron);
  background: rgba(255,201,75,0.15);
}
textarea {
  width: 100%;
  min-height: 250px;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  transition: all 0.3s linear;
}
.g-recaptcha {
  display: flex;
  justify-content: center;
  padding: 0 0 1rem 0;
}
#bt-email {
  font-family: var(--font-curve);
  font-size: 2rem;
  color: var(--jaune);
  background-color: var(--marron);
  transition: all 0.3s linear;
}
#bt-email:hover, #bt-email:active {
  background-color: var(--wp--preset--color--gris-foncer);
}
/**
* FOOTER
*/
#footer {
  padding: 4rem 0 2rem 0;
  color: var(--wp--preset--color--gris-foncer);
  /*background-color: var(--wp--preset--color--gris-foncer);*/
}
#footer > p {
  font-size: 0.75rem;
  text-align: center;
}

/**
* LOADER
*/
/* LOADER */
.form_loading {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
}
.form_loading .coche {
  display: block;
  font-size: 5rem;
  color: green;
}
.form_loading p { text-align: center; }
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--marron);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  }


/**
* MOBILE
*/

@media all and (max-device-width: 750px) {
  #content_contact {
    padding: 0 2rem 3rem 2rem;
  }
  #vitrine {
    padding: 0 0 2rem 0;
    display: block;
  }
  .vitrine_vignette {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  .file-d-ariane {
    margin-bottom: 0;
  }
  #root_product {
    display: flex;
    flex-direction: column;
  }
  #description {
    flex-direction: column-reverse;
    padding: 2rem;
  }
}