/*��������������������������������������������������������������������
       COMMUNS
��������������������������������������������������������������������*/	

:root {
    --main-bg-color: #EAECEF;
    --main-color: #2D928C;

}

/* https://fontawesome.com/v4.7.0/icon/plus-circle */
.add_formation{
    cursor: pointer;
}

body{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--main-bg-color);
    padding: 1rem;
    font-family: system-ui,  sans-serif, "Helvetica Neue", Helvetica, Arial;
}

a{
    color: var(--main-color);
    decoration: none;
}
.bg_disk{
    background: var(--main-color);
    border-radius:50%;
    width:60px;
    height:60px;
    /*border:2px solid #679403;*/ 
}

.center_v{
    position: relative;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center_h{
    text-align: center; 
    margin-left: auto; 
    margin-right: auto; 
    left:0; 
    right:0;
}

h1{
    color: var(--main-color);
}

.title_number{
    color: white; 
    display: inline-block;
}

.big{
    font-size: 150%; 
}

.black{
    color:black;
}
button,
input[type=submit]{
    /* display: inline-block; */
    padding: 6px 12px;
    /*margin-bottom: 0;*/
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 1em;


    color: white;
    background-color: var(--main-color);
    border-color: var(--main-color);


    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cursor, .cursor *{
    cursor: pointer;
}

.error{
    width:90%;
    border: thin solid red;
    color: red;
    padding: 0.4em;
    text-align: center;
    margin: 0.5em;
}
.blue{
    color: var(--main-color);
}
.small{
    font-size: small;
}

.bold{
    font-weight: bold;
}


fieldset{
     border-radius: 5px;
}
/*��������������������������������������������������������������������
       1.FORM
��������������������������������������������������������������������*/	
.debut fieldset{
    margin: 0.4em;
}
.div_form1{
    /*width:50%;*/
    height: 200px;
}

#div_msg{
    width:100%;
    height: 50px;
    color: royalblue
}

/*��������������������������������������������������������������������
       2.SELECTION FORMATIONS
��������������������������������������������������������������������*/
.formation_row{
    padding: 0.3em;
    color: var(--main-color);
}
.formation_row:nth-child(even) {background: var(--main-bg-color)}
.formation_row:nth-child(odd) {background: #FFF}



/*[type="checkbox"]:not(:checked),*/ 
.formation_bloc [type="checkbox"]:checked {
font-size: 120%;
color: black;
}

/* Preparer le label */
/*[type="checkbox"]:not(:checked) + label,*/
.formation_bloc [type="checkbox"]:checked + label {

	font-size: 120%;
color: black;
	
}

.div_recherche{
    margin: 0.5em;
}

.div_recherche #filtre_formations{
    margin-left: 30px;
    margin-right: 30px;
}


.cellule{
    display: inline-block;
    margin-right: 2em;
}
/*��������������������������������������������������������������������
       3.INTERFACE
��������������������������������������������������������������������*/

.interface_fields{
    position: relative;
}

.interface_fields input[type=text],
.interface_fields input[type=number],
.interface_fields input[type=email]
{
    border: 2px solid #aaa;
    border-radius: 4px;
    outline: none;
    padding: 4px;
    box-sizing: border-box;
    transition: .3s;
}
.interface_fields input[type=text],
.interface_fields input[type=number]
{
     width:100px;
}

.interface_row{
    padding: 0.3em;
}

.keep{
    font-size: small;
}

.normal{
    color: var(--main-color);
    position: relative;
    top:-0.6em;
}
.interface_row{
    margin-bottom: 1em;
}
.interface_fields{
    border:2px solid white;
    padding: 0.2em;
    margin-bottom: 1em;
    border-radius: 5px;
}

.date,
.code-nature-voie,
.numero-voie,
.codepostal{
    width:70px !important;
}

.telfixe,
.ville{
    width:100px;
}


.adresse{
    width:400px !important;  
}


.interface_btn_close{
    position: absolute;
    top:0px;
    right:0px;
    cursor: pointer;
}

/*Hide Arrows From Input Number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


/* SWITCH BOX */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.title_fieldset{
   font-weight: bold;
   padding: 10px 0 10px 0;
   vertical-align: top;
  
}

.contacts_list_div{
   position: absolute;
   position: absolute;
   top: 0px;
   right: 10px;
   padding: 0.2em;
   text-align: center;

}

h3{
   margin: 0;
}

hr{

    width: 30%;
    height: 2px;
    color: #2D928C;
    /*background-color: #2D928C;*/
    border: 3px dotted;
    opacity: 0.7;
}

progress{
   width:80%;
   color: green;
   height: 20px;
   border-radius: 5%;
}
/* IE10 */
progress {color: #2D928C;}
/* Firefox */
progress::-moz-progress-bar {background: #2D928C;}
/* Chrome */
progress::-webkit-progress-value {background: #2D928C;}
/* Polyfill */
progress[aria-valuenow]:before  {background: #2D928C;}

/* IE10 */
.progress2 {color: #cBcBcB;}
/* Firefox */
.progress2::-moz-progress-bar {background: #cBcBcB;}
/* Chrome */
.progress2::-webkit-progress-value {background: #cBcBcB;}
/* Polyfill */
.progress2[aria-valuenow]:before  {background: #cBcBcB;}

.div_info_progress{
   border-color: #2D928C;
   border: thin solid;
   padding: 1em;
   color: var(--main-color);
}

.select_all3{
   position: absolute;
   right: 0;
   width: 200px;
}
