/*Balises HTML*/
$custom-file-text: (
  en: "Browse",
  es: "Elegir",
  fr:"Parcourir"
)
body {
  padding-top: 10px;
}
}
p
{
}
#titre{
    text-align: center;
    padding: 10px; margin: 20px;
    outline: 1px solid black;
    border-radius: 3px;
    box-shadow: 3px 3px 0px black;
    list-style:none;
    display: flex;
    flex-wrap: wrap;
}
li
{
     padding: 10px;
}
header
{
     width: 800px;
}
section
{ 
     width: 800px;
}
footer
{
     border: 1px black solid ;
     width: 800px;
}

/* CSS partagés sur toutes les pages */
.c_prenom /*TEST*/
{
     color:green;
}
#id_nom /*TEST*/
{
     color:red;
}
.c_contact
{
     display: flex;
     justify-content: space-between;
}
.c_blockprincipal
{
     /*width: 800px;*/
     margin: 20px;
     padding: 10px;
     border: 1px black solid ;
     border-radius: 3px;
     box-shadow: 3px 3px 0px black;
}

#id_conteneurindex, #id_conteneurinscription, #id_conteneurchargement, #id_conteneurchargement02
{
     display: flex;
     flex-direction: column;
}

/*CSS pour index.html*/

/*CSS pour inscription.html*/

/*CSS pour chargement.html*/
.c_liste
{
     padding: 10px; margin: 20px;
     outline: 1px solid black;
     border-radius: 3px;
     box-shadow: 3px 3px 0px black;
     list-style:none;
     display: flex;
     flex-wrap: wrap;
}
.c_listecouleur
{
     padding: 10px; margin: 20px;
    /* width: 400px;*/
     outline: 1px solid black;
     /*border-radius: 3px;
     box-shadow: 3px 3px 0px black;*/
     list-style:none;
     margin: auto;
     display: flex;
     flex-wrap: wrap;
     /*flex-direction: column;*/
}
.c_couleur
{
     height: 10px;
     width: 20px;
     border: 1px white solid ; 
}
.c_infosuser
{
     /*border: 1px black solid ;*/
}
.c_infosuser:nth-child(4)
{
     flex: 1;
}
#id_couleur9 /* bold blue */
{
  background-color: #5484ed;
}
#id_couleur1 /* blue */
{
  background-color: #a4bdfc;
}
#id_couleur7 /* turquoise */
{
  background-color: #46d6db;
}
#id_couleur2 /* green */
{
  background-color: #7ae7bf;
}
#id_couleur10 /* bold green */
{
  background-color: #51b749;
}
#id_couleur5 /* yellow */
{
  background-color: #fbd75b;
}
#id_couleur6 /* orange */
{
  background-color: #ffb878;
}
#id_couleur4 /* red */
{
  background-color: #ff887c;
}
#id_couleur11 /* bold red */
{
  background-color: #dc2127;
}
#id_couleur3 /* purple */
{
  background-color: #dbadff;
}
#id_couleur8 /* gray */
{
  background-color: #e1e1e1;
}
#id_couleursel
{
  background-color: #5484ed;
  z-index: -1;
}
#loading-div-background{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 100;
}

#loading-div{
    width: 300px;
    height: 150px;
    background-color: #fff;
    border: 5px solid #1468b3;
    text-align: center;
    color: #202020;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -100px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    behavior: url("/css/pie/PIE.htc"); /* HANDLES IE */
}