/* Bleu en dégradé :
Foncé : #243fae
Pale  : #289ee1
*/

body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  background-color: #F8F8F8;
  overflow: scroll;
}
.cadrePleineLargeur {
  padding: 0.01em 16px;
  box-sizing: border-box;
}
.cadrePleineLargeur:after {
  content: "";
  display: table;
  clear:   both
}
.aGauche {
  float: left;
}
.aDroite {
  float: right;
}
.cadrePrincipal {
  margin: auto;
  padding: 20px;
  max-width: 900px;
}
.cadreInterieur {
  margin: auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-color: #000000;
  border-style: solid;
  border-width: 1px;
}
.divCentree {
  margin: auto;
}
.largeurTitre {
  max-width: 900px;
}
.barreTitre {
  margin: 10px 0;
  font-weight: 400;
  font-size: 19px;
}
.iconeBarreTitre {
  margin-top: 4px;
  margin-bottom: -4px;
  margin-right: 2px;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
.iconeBarreTitre:hover {
  opacity: 0.7;
}
.cadreSection {
  border-radius: 5px;
  border: 1px solid #808080;
  padding: 10px 12px 12px;
  background-color: #E8E8E8;
  margin-bottom: 12px;
}
.grillePrincipale {
  margin: auto;
  display: grid;
  grid-template-columns: 325px auto;
  grid-gap: 0px;
  padding: 0px;
}
.grillePrincipale > div {
  text-align: left;
  border: 0px solid #000;
}
.item1 {
  margin-right: 32px;
}
h2 {
  margin-top: 0.4em;
}
h3 {
  margin-top: 1.2em;
  margin-bottom: -0.2em;
}
ol {
  padding-left: 16px;
}

/* Réorganisaton des colonnes sur petits écrans */
@media only screen and (max-width: 950px) {
  .grillePrincipale {
    display: contents;
    grid-template-columns: 100% 100%;
  }
  .item1 {
    margin-right: 0;
  }
  .masquerSurPetitEcran {
    display: none;
  }
}

.titreSection {
  font-weight: bold;
}
input[type=text] {
  font-size: 14px;
  padding: 4px 6px;
  margin-top: 6px;
  margin-bottom: 4px;
  box-sizing: border-box;
  width: 100%;
}
input[type=text]:focus {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
textarea {
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 14px;
  padding: 4px 6px 4px;
  margin-top: 5px;
  margin-bottom: 4px;
  box-sizing: border-box;
  vertical-align: top;
  width: 100%;
  resize: vertical;
}
textarea:focus {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
button {
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  background: linear-gradient(to bottom, #289ee1 5%, #243fae 100%);
  background-color: #33bdef;
  border-radius: 6px;
  border: 1px solid #057fd0;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  margin-top: 6px;
  padding: 6px 18px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
}
button:hover {
  background: linear-gradient(to bottom, #243fae 5%, #289ee1 100%);
  background-color: #243fae;
}
button:active {
  position: relative;
  top: 1px;
}
button:disabled {
  opacity: 0.6;
  pointer-events: none;
}
input[type=checkbox] {
  transform: scale(1.2);
  margin-top: 5px;
}
input[type=checkbox]:focus {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
input[type=radio] {
  transform: scale(1.1);
  margin-top: 5px;
}
input[type=radio]:focus {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
hr {
  margin-top: 1.1em;
  margin-bottom: 1.1em;
}
.fondvert {
  color:#fff;
  background-color: #02874d;
}
.fondRouge {
  color: #fff;
  background-color: #f44336;
}

/* Liste de type accordéon */
.accordeon {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.2s;
}
.accordeon > img {
  height:20px;
  width:20px;
  float: left;
  margin: 0px 5px 0px 0px;
}
.accordeon:hover {
  background-color: #DCDCDC;
}
.accordeon:after {
  content: '\25BC'; /* or 002B for + */
  font-size: 14px;
  float: right;
  margin-left: 5px;
}
.active:after {
  content: "\25B2"; /* or 2212 for - */
}
.cadreResultat {
  max-height: 0;
  overflow: hidden;
}