@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Sharp');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@48,400,0,0');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');

:root {
    --fond-page: white;
    --fond-accueil: white;
    --texte : #18306a;
    --texte-identifiant: #333;
    --fond-div: white;
    --focus: #e8eaed;
    --input-shadow: 5px;
    --input-text-color: black;
    --input-placeholder: darkgray;
    --tab-titre: #001f62;
    --tab-background: white;
    --tab-background-inactive: #e7e7e7;
    --tab-border-color: white;
    --tab-font-weight: bold;
    --button-fill: white;
    --button-fill-active: #024193;
    --bases-info: black;
    --eye-color: 0%;
    --theme-boutons: #3f3f3f;
    --theme-boutons-actif: #e8eaed;
    --theme-boutons-fond: #e8eaed;
    --input-scheme-color: light;
    --height-formulaire: 25px;
    --border-bottom: gray;
    --titre-accueil: #0d2f67;
    --fond-profil: #001f62;
    --boutonLogin: #f15f4b;
    --boutonLoginHover: white;
    --borderLogin: darkgray;
    --borderLoginHover: #265df2;
    --hoverColor: #f15f4b;
    --filtreFond: #f15f4b;
    --texteFiltre: #f15f4b;
    --form-control-color: rebeccapurple;
}

html {
	height: 100%;
}
body {
  background-color: var(--fond-page);
  color: var(--texte);
  position: relative;
  text-align: center;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  background: var(--fond-page);
  color: var(--texte);
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #18306a; 
}

.divGlobal {
    display: grid;
    grid-template-columns: 3fr 1fr;
}

.spanTitre {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  margin: auto;
  font-weight: bold;
  color: var(--texte);
  width: 100%;
  text-align: left;
  border-bottom: 2px solid; 
  padding-bottom: 10px; 
  line-height: 40px;
}

.divIndex {
  margin: auto;
  margin-top: 40px;
  max-width: 1520px;
  width: 80%; 
  min-width: 800px;
}

.divLigneProduits {
    text-align: left;
}

.divAccBoiteIntegration {
    display:inline-block;
    border: 1px solid;
    border-color: #bac1d3;
    border-radius: 8px;
    /* padding: 20px; */
    /* cursor: pointer;  */
    grid-row-start: 1;
    grid-row-end: 4;
    padding-left: 20px;
    padding-bottom: 20px;
  }

/* Style pour l'élément mis en avant */
.highlight > .fa-li i {
    color: gold;
    font-size: 1.2em; /* Légèrement plus grand */
  }

.highlight {
    font-weight: bold; /* Texte en gras */
    color: #333; /* Couleur de texte plus foncée */
  }
  
/******************************************/
/* Comportement des div pour les produits */
/******************************************/
.divAccBoite {
  display:inline-block;
  border: 1px solid;
  border-color: #bac1d3;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;  
}

.divAccBoite:hover {
  background-color: #f0eff0;
  opacity: 1;
  height: auto;
}

/********************************************/
/* #logo signifie juste le logo dans la div */
/********************************************/
.divAccBoite #logo {
  transition: all .4s ease-in-out;
  transform: scale(1);
  -webkit-transform: scale(1);
  -webkit-transition: all 0.4 ease-in-out;
}

.divAccBoite:hover #logo {
  transform: scaleX(-1);
  transition: all .4s ease-in-out;
}

.send {
  font-size: 10px;
  margin-right: 8px;
}

.case {
  display: grid; 
  column-gap: 10px;
}