/** Tailles des titres **/

h2{
  font-size: 1.5rem;
}

.mb-3, .my-3{
  font-size: 1.5rem;
}

/** Pop-up pour afficher la grille de taille des marques **/

/* The Modal (background) */
.modal-grille-taille {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Pop-up Modal Content */
.modal-content-grille-taille {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 60%;
  margin-top:150px;
  z-index: 10;
}

/* Pop-up The Close Button */
.close-grille-taille {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-grille-taille:hover,
.close-grille-taille:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


.caracteristiques.grille-taille{
  margin:auto;
  text-align: center;
}

.texte-grille-taille{
  text-align: center;
}


.surligner-grille-taille{
    background: #ffb308;
    color: #000000;
    border-radius: 5px;
    padding: 2px 5px;
}

/* BOUTON CSS "En savoir plus" */
.bouton-en-savoir-plus {
  background-color: #ffb308;
  border-radius: 8px;
  border:2px solid #ffb308;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin-right: 6px;
  outline: none;
  padding: 8px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.bouton-en-savoir-plus a{color:#ffffff;padding: 10px 0px;}

.bouton-en-savoir-plus:hover,
.bouton-en-savoir-plus:focus {
  background-color: #ffffff;
  border:2px solid #ffb308;
}

.bouton-en-savoir-plus a:hover,
.bouton-en-savoir-plus a:focus{
  color: #0065ea;
}


/* Design tableau des caractéristiques dans les fiches produits */

.caracteristiques table, .caracteristiques caption, .caracteristiques th, .caracteristiques td{border: 6px solid #fff; background-color: #f6f6f6; padding:5px 10px;font-size: 15px;}


/** Alignement et couleur des icones Google Icons **/

.material-symbols-outlined{
  display: inline-flex;
  vertical-align: middle;
  line-height: 1.6rem;
}



 i.material-symbols-outlined.icone-aligne-texte{
  color:#ffb308;
  font-size: 30px;
 }

i.accessoires-running{
  color:#ffb308;
}



/** Points clés **/

.points-cles {
    margin: 0 auto;
    border-left: 5px solid #ffb308;
    padding: 15px 10px 2px 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #f1f3f4;
    border-radius: 10px;
    text-align: left;
    box-shadow: 1px 3px 5px 0 #999;
    }


/* Hover effect liens bleus sur fond blanc */

.lien-bleu{
   --mainColor: #ffb308;
  padding:0px 3px 0px 3px;
  background:
     linear-gradient(
       to bottom, var(--mainColor) 0%,
       var(--mainColor) 100%
     );
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 2px 2px;
  text-decoration: none;
  transition: background-size .3s;
    font-weight: 700;
}

.lien-bleu:hover {
  background-size: 4px 50px;
  color:#000000 !important;
  font-weight: 700;
}





    /** Media Queries **/

@media screen and (max-width: 760px){
.modal-content-grille-taille{
  margin-top: 100px !important;
  width: 90% !important;
}
}