@font-face {
  font-family: titreFont;
  src: url("../fonts/moon_get-Heavy.otf");
}

@font-face {
  font-family: titreParagraphFont;
  src: url("../fonts/Gecko.ttf");
}

html {
  height: auto;
}

body {
  padding: 0;
  margin: 0;
  background-color: #e6e6e6;
  font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
  font-size: 17px;
}

.page {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  justify-content: space-between;
}

.no-select img {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                   supported by Chrome, Edge, Opera and Firefox */
}

.pointer {
  cursor: pointer;
}

.main-header {
  background-color: #191d35;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-left:hover {
  opacity: 0.85;
}

.header-center {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 14px;
}


.titre-card {
  display: flex;flex-direction: row;align-items: center;
}

.titre-card img {
  width: 35px;
  height: 35px;

  margin-right: 15px;
}


/***********************************/
/***********************************/




/* TOOLTIP */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}
[data-tooltip]:before,
[data-tooltip]:after {
  line-height: 1;
  font-size: .9em;
  pointer-events: none;
  position: absolute;
  box-sizing: border-box;
  display: none;
  opacity: 0;
}
[data-tooltip]:before {
  content: "";
  border: 5px solid transparent;
  z-index: 100;
}
[data-tooltip]:after {
  content: attr(data-tooltip);
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px 15px;
  border-radius: 5px;
  background: #191d35;
  color: #fff;
  font-weight: bold;
  z-index: 99;
  font-size: 14px;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  display: block;
  opacity: 0.8;
}
[data-tooltip]:not([data-flow])::before,
[data-tooltip][data-flow="top"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #191d35;
}
[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::after {
  bottom: calc(100% + 5px);
}
[data-tooltip]:not([data-flow])::before, [tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::before,
[data-tooltip][data-flow="top"]::after {
  left: 50%;
  -webkit-transform: translate(-50%, -4px);
  transform: translate(-50%, -4px);
}
[data-tooltip][data-flow="bottom"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #191d35;
}
[data-tooltip][data-flow="bottom"]::after {
  top: calc(100% + 5px);
}
[data-tooltip][data-flow="bottom"]::before, [data-tooltip][data-flow="bottom"]::after {
  left: 50%;
  -webkit-transform: translate(-50%, 8px);
  transform: translate(-50%, 8px);
}

[data-tooltip][data-flow="bottomDecaleRight"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #191d35;
}
[data-tooltip][data-flow="bottomDecaleRight"]::after {
  top: calc(100% + 5px);
}
[data-tooltip][data-flow="bottomDecaleRight"]::before, [data-tooltip][data-flow="bottomDecaleRight"]::after {
  left: 30%;
  -webkit-transform: translate(-70%, 8px);
  transform: translate(-70%, 8px);
}


[data-tooltip][data-flow="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #191d35;
  left: calc(0em - 5px);
  -webkit-transform: translate(-8px, -50%);
  transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  -webkit-transform: translate(-8px, -50%);
  transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #191d35;
  right: calc(0em - 5px);
  -webkit-transform: translate(8px, -50%);
  transform: translate(8px, -50%);
}
[data-tooltip][data-flow="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translate(8px, -50%);
  transform: translate(8px, -50%);
}
[data-tooltip=""]::after, [data-tooltip=""]::before {
  display: none !important;
}

.avatarBoxClass {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: 1px solid #afb0b9;
  border-radius: 4px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 180px;
  overflow: scroll;
  overflow-x: hidden;
  background: #191d35;
  position: absolute;
  top: 55px;
  margin-left: -60px;
  z-index: 99999;
  -webkit-box-shadow: 5px 5px 4px -3px #000000;
  box-shadow: 5px 5px 4px -3px #000000;
}










/*****************************************/
/*****************************************/





.logo {
  width: 90px;
  height: 90px;
}

.site-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header-right {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.85;
}

.header-right-noHide {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.85;
}

.avatarBarreMenuV2 {
  margin-left: 10px;
  margin-right: 10px;

  background-color: white;

  border: 1px solid #afb0b9;
  border-radius: 40px;
  cursor: pointer;
}

.header-center .itemNavBarV5 img {
  width: 38px;
}

.header-center .itemNavBarV5NoHover {
  padding: 10px;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content: flex-start;
}

.header-center .itemNavBarTexteV5 {
  font-size: 15px;
}


#statsBox img {
  width: 30px;
  height: 30px;
}



.containerBarStatsMini {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  color: #afb0b9;
}

.bar-main-containerMini {

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 0.8em;
  color: #afb0b9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1px;
  margin: 1px;
}



.bar-percentageMini {
  margin-top: 3px;
  font-size: 17px;
  text-align: center;
}


.niveauTextMini {
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  border: 1px solid #fff;

  border-radius: 20px;
  background: #2e91af;
  color: #ffffff;
}


.statsModuleBoxMini img {
  padding-right: 10px;
  margin-top: 5px;
  width: 40px;
}



/* Responsive mobile */
@media (max-width: 550px) {
  .header-right {
    display: none;
  }

  .hide-icone-responsive {
    display: none;
  }
}

.main-footer{
  background-color:#191d35;
  color:#fff;
  padding:14px 30px 8px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.22);
}

.stats-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  overflow:hidden;
  background: rgba(255,255,255,0.03);
}

/* ITEM */
.stat-item{
  display:flex;
  align-items:center;        /* ALIGNEMENT VERTICAL PARFAIT */
  gap:10px;
  padding:10px 14px;         /* PLUS COMPACT */
  position:relative;
  min-height:54px;           /* HAUTEUR RÉDUITE */
}

/* Séparateurs verticaux (6 colonnes) */
.stat-item:not(:nth-child(6n))::after{
  content:"";
  position:absolute;
  right:0;
  top:20%;
  height:60%;
  width:1px;
  background: rgba(255,255,255,0.10);
}

.stat-item img{
  width:24px;
  height:24px;
  opacity:0.95;
  flex-shrink:0;
}

/* NB + TEXTE alignés */
.stat-text{
  display:flex;
  align-items:baseline;   /* nombre et texte alignés proprement */
  gap:6px;
  min-width:0;            /* important pour wrap */
}

.stat-value{
  font-size:18px;
  font-weight:700;
  line-height:1;
}

.stat-label{
  font-size:13px;
  opacity:0.85;
  line-height:1.2;

  /* autorise retour ligne */
  white-space:normal;

  /* max 2 lignes */
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

/* Hover léger */
.stat-item:hover{
  background: rgba(255,255,255,0.05);
}

/* Footer bottom */
.footer-bottom{
  display:flex;
  justify-content:center;
  gap:10px;
  padding:8px 0 2px;
  opacity:0.75;
  font-size:12px;
}

/* ===== RESPONSIVE ===== */

/* 3 colonnes */
@media (max-width:1024px){
  .stats-grid{ grid-template-columns: repeat(3, 1fr); }

  .stat-item::after{ display:none; }
  .stat-item:not(:nth-child(3n))::after{
    display:block;
    content:"";
    position:absolute;
    right:0;
    top:20%;
    height:60%;
    width:1px;
    background: rgba(255,255,255,0.10);
  }

  .stat-item:nth-child(n+4){
    border-top:1px solid rgba(255,255,255,0.10);
  }
}

/* 2 colonnes */
@media (max-width:640px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }

  .stat-item::after{ display:none; }
  .stat-item:not(:nth-child(2n))::after{
    display:block;
    content:"";
    position:absolute;
    right:0;
    top:20%;
    height:60%;
    width:1px;
    background: rgba(255,255,255,0.10);
  }

  .stat-item:nth-child(n+3){
    border-top:1px solid rgba(255,255,255,0.10);
  }

  .stat-item{
    padding:9px 12px;
    min-height:50px;
  }

  .stat-value{ font-size:17px; }
  .stat-label{ font-size:12.5px; }
}



.home-hero{
  padding: 26px 30px 18px;
}

.hero-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 par ligne */
  gap: 18px;
}

.hero-grid.col1 {
  grid-template-columns: 1fr; /* 1 par ligne */
}

/* Carte générique */
.card{
  background: #ffffff;
  border: 1px solid rgba(25,29,53,0.10);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Bandeau “premium” en haut de carte */
.card-head{
  padding: 16px 18px;
  background: linear-gradient(135deg, #093b5f 0%, #3291b6 100%);
  color: #fff;
}

.card-head h2{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.card-head p{
  margin: 0;
  opacity: 0.85;
  font-size: 13.5px;
}

.card-head-link {
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

/* -------- Connexion -------- */
.login-form{
  padding: 16px 18px 18px;
  display: grid;
  gap: 12px;
}

.field{
  display: grid;
  gap: 6px;
}

.field label{
  font-size: 13px;
  opacity: 0.85;
  color: #191d35;
  font-weight: 600;
}

.field input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(25,29,53,0.18);
  padding: 0 12px;
  font-size: 15px;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.field input:focus{
  border-color: rgba(25,29,53,0.55);
  box-shadow: 0 0 0 4px rgba(25,29,53,0.10);
}

.btn-primary{
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: #191d35;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.06s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 18px rgba(25,29,53,0.18);
}

.btn-primary:hover{
  opacity: 0.92;
}

.btn-primary:active{
  transform: translateY(1px);
}

.btn-secondary{

  border: 0;
  border-radius: 2px;
  background: #000000;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.06s ease, opacity 0.2s ease, box-shadow 0.2s ease;

  margin: 12px 0;
}

.btn-secondary:hover{
  opacity: 0.92;
}

.btn-link{
  border: 0;
  border-radius: 12px;
  background: #191d35;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.06s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 18px rgba(25,29,53,0.18);

  padding: 5px 10px;
}

.btn-link:hover{
  opacity: 0.82;
}



.login-help{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  opacity: 0.9;
}

.login-help a{
  color: #191d35;
  font-weight: 700;
  text-decoration: none;
}

.login-help a:hover{
  text-decoration: underline;
}

#connexionErrorMessage {
  font-size: 11px;
  color: red;
  font-style: italic;
  justify-content: center;
}


/* -------- YouTube -------- */
.youtube-grid{
  padding: 16px 18px 18px;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 12px;
  align-items: stretch;
}

.youtube-tile{
  border-radius: 14px;
  border: 1px solid rgba(25,29,53,0.12);
  background: #fbfbfd;
  padding: 14px;
  text-decoration: none;
  color: #191d35;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: transform 0.08s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.youtube-tile:hover{
  border-color: rgba(25,29,53,0.22);
  box-shadow: 0 12px 22px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.yt-top{
  display:flex;
  gap: 12px;
  align-items: center;
}

.yt-icon{
  width: 163px;
  height: 74px;
  flex: 0 0 auto;
}

.yt-title{
  font-weight: 900;
  font-size: 17px;
  line-height: 1.15;
}

.yt-link{
  font-size: 12.5px;
  opacity: 0.75;
  margin-top: 4px;
}

.yt-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 46px;
  padding: 0 18px;
  border-radius: 14px;

  font-weight: 900;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(90deg, #ff0033, #ff2a2a);
  box-shadow: 0 14px 26px rgba(255,0,60,.18);
}

.yt-cta:hover{ filter: brightness(1.05); }
.yt-cta:active{ transform: translateY(1px); }

.yt-cta::before{
  content:"";
  width: 50px;
  height: 50px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M21.8 8.001a2.75 2.75 0 0 0-1.94-1.95C18.13 5.6 12 5.6 12 5.6s-6.13 0-7.86.45A2.75 2.75 0 0 0 2.2 8c-.46 1.73-.46 4-.46 4s0 2.27.46 4a2.75 2.75 0 0 0 1.94 1.95c1.73.45 7.86.45 7.86.45s6.13 0 7.86-.45a2.75 2.75 0 0 0 1.94-1.95c.46-1.73.46-4 .46-4s0-2.27-.46-4ZM10.2 15.2V8.8L15.8 12l-5.6 3.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .95;
}

/* Tuile QR */
.youtube-tile.qr{
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
  background: #ffffff;
}

.yt-qr{
  width: 110px;
  height: 110px;
  border-radius: 12px;
}

.yt-qr-label{
  position:absolute;
  bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.75;
}

/* -------- Responsive -------- */
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr; /* 1 par ligne */
  }

  .youtube-grid{
    grid-template-columns: 1fr; /* QR en dessous */
  }

  .youtube-tile.qr{
    padding: 16px;
  }
}



/* Section 2 (sous connexion/youtube) */
.home-blocks{
  padding: 0 30px 24px;
}

.home-blocks .hero-grid{
  margin-top: 18px;
}

/* Header de card amélioré pour Mathdoku/Mot du jour */
.card-head-split{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;

  flex-wrap: wrap;
}

.card-head-title h2{
  margin:0 0 6px;
}

.card-head-sub{
  display:block;
  font-size: 12.5px;
  opacity: 0.85;
}

.card-head-badge{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0.95;
}

.div-right-word {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 5px;
}

/* Body card */
.card-body{
  padding: 14px 16px 16px;
}

/* === Mathdoku: centrer proprement sans prendre 10 km === */
.mathdoku-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

/* IMPORTANT : si ta grille a un width fixe, elle restera centrée */
#grilleMathdokuID{
  max-width: 100%;
}

/* === Mot du jour: flexible mais pas gigantesque === */
.word-content{
  /* limite la hauteur pour rester “carte” */
  max-height: 380px;
  overflow: auto;

  /* style scroll discret */
  padding-right: 6px;
}

.word-content::-webkit-scrollbar{
  width: 8px;
}
.word-content::-webkit-scrollbar-thumb{
  background: rgba(25,29,53,0.20);
  border-radius: 999px;
}

.word-titre {

  font-size: 24px;
  font-weight: bold;

  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #940e3a;
  color: white;
}

.word-content {
  padding: 0 15px 15px;
}

/* Harmoniser les “exemples” si tu gardes tes classes actuelles */
.lessonBoxExemple{
  border: 1px solid rgba(25,29,53,0.12);
  border-radius: 12px;
  padding: 12px;
  background: #fbfbfd;
  margin-top: 12px;
}
.lessonBoxExempleTitre{
  font-weight: 900;
  margin-bottom: 8px;
  color: #191d35;
}


.fraction {

  display: inline-block;

  position: relative;

  vertical-align: middle;

  letter-spacing: 0.001em;

  text-align: center;

  margin-right: 5px;

  margin-left: 5px;

}

.fraction > span {

  display: block;

  padding: 5px;

}

.fraction span.fdn {border-top: 3px solid black;}

.fraction span.fdnWhite {border-top: 6px solid white;}



.fraction span.bar {display: none;}


/* MENU V5 */

/* V3 */
.menuV3TitreBox {
  display:flex;
  flex-direction:row;
  background-color: #191d35;
  color: white;
  margin-right: 20px;
  padding: 10px;


  position: fixed;
  z-index: 2;
  left: 70px;
  top: 0;
  background: linear-gradient(135deg, #191d35 95%, transparent 95%);
  align-items: center;
}
.menuV3TitreBoxShadow {
  display:flex;
  flex-direction:row;
  background-color: #191d35;
  color: white;
  margin-right: 20px;
  padding: 10px;


  position: fixed;
  z-index: 1;
  left: 70px;
  top: 0;
  background: linear-gradient(135deg, #87d6cf 95%, transparent 95%);
  align-items: center;
}


.titrePageBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  height: 35px;

}

.titrePageBefore {
  color: white;
  background: linear-gradient(45deg, transparent 25%, #191d35 25%);
  width: 15px;
  height: 35px;
}

.titrePage {

  background-color: #191d35;
  color: white;

  font-size: 24px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: bold;
  height: 35px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.titrePage span {
  margin-top:-10px;
}

.titrePageAfter {
  color: white;
  background: linear-gradient(135deg, #191d35 75%, transparent 75%);
  width: 15px;
  height: 35px;
}


.menuV3 {
  display:flex;
  flex-direction:column;
  background-color: #191d35;
  color: white;
  margin-right: 20px;
  padding-right: 5px;
  padding-left: 5px;

  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #191d35 95%, transparent 95%);
}
.menuShadowV3 {
  display:flex;
  flex-direction:column;
  background-color: #191d35;
  color: white;
  margin-right: 20px;
  padding-right: 5px;
  padding-left: 5px;

  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #87d6cf 95%, transparent 95%);
}

.menuV3 .itemNavBarV3 {
  padding: 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content: center;
  cursor: pointer;
  color: #afb0b9;
}

.menuV3 .itemNavBarV3:hover {
  /*border-radius: 10px;
  background: #307048; */
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

.menuV3 .itemNavBarV3.selected {
  /*border-radius: 10px;
  background: #307048; */
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

.menuV3 .itemNavBarV3 img {
  width: 38px;
}

.menuV3 .itemNavBarV3NoHover {
  padding: 10px;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content: flex-start;
}

.menuV3 .itemNavBarTexteV3 {
  font-size: 15px;
}

.menuV3Separator {
  height:4px;
  margin-left:8px;
  margin-right:8px;
  border-top:1px solid #afb0b9;
}

.avatarBarreMenuV3 {
  margin-left: 10px;
  margin-right: 10px;

  background-color: white;

  border: 1px solid #afb0b9;
  border-radius: 40px;
  cursor: pointer;
}

.menuV3 .itemNavBarIconeTitreV3 {
  width:100%;
  display:flex;
  justify-content:center;

}























/* Responsive : sur mobile, badges passent en dessous si besoin */
@media (max-width: 900px){

  .card-head-split{
    /*flex-direction: column;
    align-items:flex-start;*/
  }
  .card-head-badge{
    margin-top: 2px;
  }
  .home-blocks{
    padding: 0 16px 20px;
  }
  .word-content{
    max-height: 240px;
  }
}





.boxLogiciels {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px;
  width: 245px;
  background-color: #e6e6e6;

  border: 1px solid #e0e0e0;

  border-radius: 3px;
  justify-content: space-between;
}
.boxLogiciels > .icon {
  text-align: center;
  position: relative;
}
.boxLogiciels > .icon > .image {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 40px;
  height: 40px;
  border: 4px solid white;
  line-height: 44px;
  border-radius: 50%;
  background: #e0e0e0;
  vertical-align: middle;
  color: black;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);
}
.boxLogiciels > .icon > .info {
  padding: 15px 10px 10px 10px;
  background: #e6e6e6;
}
.boxLogiciels > .icon > .info > h3.title {
  font-size: 28px;
  color: #222;
  font-weight: 500;
  margin-bottom: 10px;
  border-bottom: 2px solid #cc0000;
  text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);
  margin-top:0;
}
.boxLogiciels > .icon > .info > p {
  font-size: 17px;
  color: #000;
  text-align: left;
  margin-bottom: 5px;
  word-break: break-all;
}
.boxLogiciels > .icon > .info > p:before {
  position: relative;
  content:'\27A4';
  left: -5px;
}
.boxLogiciels > .icon > .info > .more a {
  font-size: 12px;
  color: #222;
  line-height: 12px;
  text-transform: uppercase;
  text-decoration: none;
}
.boxLogiciels > .icon:hover > .info > .more > a {
  color: #fff;
  padding: 6px 8px;
  background-color: #63B76C;
}
.boxLogiciels .space {
  height: 3px;
  background-color: #6CB4C4;
}

.boxLogiciels-header {
  background-color: #eee;
  color: black;

  background: -webkit-repeating-linear-gradient(145deg, #0117a5, #0117a5 10px, #2e49f7 10px, #2e49f7 20px);
  background: repeating-linear-gradient(-55deg, #0117a5, #0117a5 10px, #2e49f7 10px, #2e49f7 20px);

  height: 6px;
  width: 210px;
}

.buttonLogiciels {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;

  font-size: 14px;
  font-weight: bold;

  margin-top:10px;
  margin-bottom: 10px;
  padding: 10px;

  background: #2334b2;
  border: 1px solid #99a5ff;
  color: #FFF;
  overflow: hidden;

  transition: all 0.5s;
}

.buttonLogiciels:hover, .buttonLogiciels:active {
  transition: all 0.5s, top 0.5s, right 0.5s;

  text-decoration: none;
  color: #2334b2;
  border-color: #2334b2;
  background: #dde1ff;
}

.containerBarStats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.labelBarStats {
  font-family: simonScoreFont;
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
}


.containerBarStats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.bar-main-container {
  width: 300px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 0.8em;
  color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  margin: 10px;
}

.bar-main-container2 {

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 0.8em;
  color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-items: center;

  padding: 0px;
  margin: 10px;
}


.bar-percentage {
  float: left;
  background: rgba(0,0,0,0.13);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 9px 0px;
  width: 18%;
  font-size: 23px;
  text-align: center;
}

.bar-container {
  float: right;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  height: 10px;
  background: rgba(0,0,0,0.13);
  width: 78%;
  margin: 12px 0px;
  overflow: hidden;
}

.bar {
  float: left;
  background: #FFF;
  height: 100%;
  -webkit-border-radius: 10px 0px 0px 10px;
  -moz-border-radius: 10px 0px 0px 10px;
  border-radius: 10px 0px 0px 10px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.niveauText {
  font-weight: bold;
  text-align: center;
  padding: 5px;
  border: 1px solid white;
  margin-right: 5px;
}

.statsModuleBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 5px 10px;
  font-size: 23px;
}

.statsModuleBox img {
  padding-right: 10px;
  margin-top: 5px;
  width: 40px;
}

/* COLORS */
.azure   { background: #38B1CC; }
.emerald { background: #2CB299; }
.violet  { background: #8E5D9F; }
.yellow  { background: #EFC32F; }
.red     { background: #E44C41; }



.rowDiv {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.colDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.titreParagraph {
  display: flex;
  flex-direction: row;


  font-family: titreParagraphFont;
  font-weight: 900;
  font-size: 30px;

  padding: 10px;
  padding-bottom:0px;

  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;

  color: #000;
  text-shadow: #e0e0e0 1px 1px 0;

  align-items: center;
  justify-content: center;

  border-bottom: 4px solid #000;

}

.selectionnerModuleListBox {
  display: flex;
  flex-direction: column;

  align-items: center;

  position: fixed;
  top:0;
  left:0;

  z-index: 999;


  width: 100%;
  height: 100%;

  overflow: auto;
  background: white;
}