/*---- GLOBAL ----*/
* {
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: #eeeeee;

    --couleur-jaune: #f3c200;
    --color-bleu: #024cb6;
}
body {
    font-family: Blinker, "Libertinus Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
}
body a {
    text-decoration: none;
    color: #010692;
}
body a:hover {
    color: #790101;
}

/* Header */
#header {
    position: fixed;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 10px 20px;
    z-index: 20;

    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    -o-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    -ms-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.logo {float: left;}
.logo img {
    width: 80px;
}
nav {
    float: right;
}
.main-nav {
    padding-top: 25px;
}
.item-nav {
    float: left;
    padding: 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
}
.menu-actif {
    color:#790101;
    position: relative;
}
.menu-actif:before {
    content: "";
    background:#790101;
    height: 3px;
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 20px;
    border-radius: 5px;
}

/* Container */
.container {
    width: 1024px;
    margin: 0 auto;
    padding: 20px;
}
.container-other-page {
    padding-top: 150px;
}
.ctn-document {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
    margin-bottom: 20px;
    background: #ffffff;
}
.option-document {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: solid 1px #b7b7b7;
}
.img-404 {
    text-align: center;
}
.border-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

}
.details-right,
.details-left {
    padding: 10px;
}
.details-right {
    float: right;
    width: 25%;
}
.details-left {
    float: left;
    width: 70%;
    background:#024cb6;
    color: #ffffff;
}
.titre-agenda,
.title-box {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px inset #dcdcdc;
    padding: 15px 0;
    margin-bottom: 15px;
}
.icon-checklist {
    float: left;
    width: 10%;
    text-align: center;
    font-size: 22px;
    color:var(--couleur-jaune);
    padding-top: 6px;
}
.details-checklist {
    float: right;
    width: 90%;
    margin-bottom: 10px;
}

h1 {
    margin: 0;
    padding: 0;
    position: relative;
}
h1:after {
    content:"";
    background: #000000;
    height: 3px;
    width: 150px;
    position: absolute;
    left: 2px;
    bottom: -4px;
}
.box-agenda {
    float: right;
    width: 40%;
    border:#024cb6 1px solid;
    background: #ffffff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.box-titre-agenda {
    padding: 20px;
    font-size: 25px;
    text-transform: uppercase;
    color: #ffffff;
    background:#024cb6;
}
.box-content-agenda {
    padding: 20px;
}
.box-acces-rapide {
    float: left;
    width: 55%;
    background: #ffffff;
    padding: 10px;
}
.item-agenda {
    padding: 5px 0;
}
.box-ctn-acces-rapide {
    margin: 0 -10px;
}
.item-acces-rapide  {
    float: left;
    width: 50%;
    padding: 0 10px 10px 10px;
}
.item-acces-rapide a {
    background:#024cb6;
    color: #ffffff;
    display: block;
    padding: 30px 10px;
    transition: 0.3s;
}
.item-acces-rapide a:hover {
    background:#790101;
    color: #ffffff;
}
.item-acces-rapide  {
    display: block;
}
.btn-validation {
    border: none;
    outline: none;
    padding: 10px;
    background: #4f772d;
    font-size: 12px;
    color: #ffffff;
    cursor: pointer;
}
.btn-validation:hover {
    background: #31572c;
}
.validation {
    cursor: pointer;
    outline: none;
    margin-top: 20px;
}
.validation:hover .validation-option {
    border: 2px solid #449b35;
}
.validation:hover .validation-texte {
    opacity: 1;
    color: #449b35;
}
.validation-option {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid #bd4444;
    top: 2px;
    left: 5px;
}
.validation-texte {
    margin-left: 50px;
    font-weight: 500;
    opacity: 0.5;
    color: #bd4444;
    padding-top: 6px;
}
.option-validee .validation-option  {
    border: 2px solid #449b35;
    background: #449b35 url(../images/icons/checked.png) center center no-repeat;

    box-shadow: 2px 0px 3px #449b35 !important;
    -o-box-shadow: 2px 0px 3px #449b35 !important;
    -ms-box-shadow: 2px 0px 3px #449b35 !important;
    -moz-box-shadow: 2px 0px 3px #449b35 !important;
    -webkit-box-shadow: 2px 0px 3px #449b35 !important;
}
.option-validee .validation-texte {
    color: #449b35;
    font-weight: 500;
    opacity: 1;
}
.content-form-contact {
    margin-top: 20px;
}
.qsn-left,
.qsn-right {
    float: left;
    width: 50%;
    text-align: center;
    margin-top: 20px;
}
.box-qsn {
    display: inline-block;
    width: 300px;
    padding: 20px;
    min-height: 350px;

    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.box-qsn img {
    width: 150px;
}
.ctn-qsn {
    margin-top: 15px;
    font-weight: 300;
    color:#2e2f30;
}
h3 {
    margin-top: 30px;
}
h3::before {
    content: "";
    height: 4px;
    background:#790101;
    position: absolute;
    bottom: -10px;
    left: 45%;
    right: 45%;
}
.box-valeurs {
    float: left;
    width: 25%;
}
.ctn-box-valeur {
    padding: 20px;
    text-align: center;
}
.img-valeur {
    display: inline-block;
    width: 100px;
    height: 100px;
}
.titre-valeur {
    text-transform: uppercase;
    font-weight: 700;
    margin: 10px 0;
}
.img-valeur img {
    width: 100px;
}
.desc-valeur {
    color:#49494a;
    font-size: 15px;
}
.box-formulaire-inscription {
    float: left;
    width: 65%;
}
.box-connexion-espace-personnel {
    float: right;
    width: 30%;
}
.titre-connexion-espace-personnel,
.titre-formulaire-inscription {
    text-transform: uppercase;
    padding: 10px;
    border-bottom: 1px solid var(--color-bleu);
    color: #ffffff;
    background: var(--color-bleu);
}
.ctn-formulaire-inscription {
    background: #ffffff;
    padding: 10px;
}
.field-l,
.field-r {
    width: 46%;
}
.field-l {
    float: left;
}
.field-r {
    float: right;
}
.ctn-date-naissance {
    display: flex;
    justify-content: space-between;
}
.jr-naissance {
    width: 20%;
}
.mois-naissance {
    width: 55%;
}
.annee-naissance {
    width: 20%;
}
.box-msg-activation {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

    width: 350px;
    margin: 30px auto;
    padding: 10px;
    background: #ffffff;
}
.icon-activation {
    text-align: center;
}
.icon-activation img {
    width: 180px;
}
.mention-speciale {
    color: #f34500;
    font-style: italic;
}
.navigation-espace-parents {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.navigation-espace-parents a {
    text-transform: uppercase;
    font-size: 15px;
}
.navigation-lien-actif {
    position: relative;
    color: #ff0000;
}
.navigation-lien-actif::after {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: -10px;
    content: "";
    height: 2px;
    background: #ff0000;
}
.box-connexion-espace-parents {
    width: 350px;
    margin: 20px auto;
}
#login,
#email {
    text-transform: lowercase;
}
.box-list-inscrits {
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    margin-top: 20px;
    padding: 10px;
}
.joyeux-anniversaire {
    color:#790101;
    font-size: 13px;
}
.infos-personnes {
    display: flex;
    align-items:normal;
    justify-content: space-around;
}
.item-info-personne {
    width: 50%;
}
.label-info-personne {
    padding: 10px 0;
}
.item-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}
.item-title::after {
    content: "";
    height: 3px;
    background:#2e2f30;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 10%;
}
.messagerie {
    display: flex;
    align-items: normal;
}
.item-messagerie-left {
    width: 30%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 10px;
}
.item-messagerie-right {
    width: 70%;
    padding: 10px;

    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.item-messagerie-left a {
    display: block;
    padding: 10px 0;
}
.pas-dinscrit {
    padding: 30px 0;
}
.list-inscrit {
    display: flex;
    align-items: normal;
    justify-content: space-between;
}
.person-inscrit {
    width: 300px;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.icon-person-inscrit {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    padding-top: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.identite-person {
    font-size: 500;
}
.classe-person {
    font-size: 14px;
    color:#2e2f30;
    margin-top: 5px;
}
.statut-dossier {
    font-size: 12px;
    display: inline-block;
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
    position: relative;
}
.statut-dossier-en-attente::after,
.statut-dossier-en-cours-de-traitement::after,
.statut-dossier-finalise::after {
    width: 15px;
    height: 15px;
    display: inline;
    vertical-align: middle;
    content: "";
    border-radius: 50%;
    position: absolute;
    left: -15px;
}
.statut-dossier-en-attente {
    color:#bd4444;
    font-weight: 600;
}
.statut-dossier-en-cours-de-traitement {
    color:#fcae54;
    font-weight: 600;
}
.statut-dossier-finalise {
    color:#739932;
    font-weight: 600;
}
.statut-dossier-en-attente::after {
    background: #bd4444;
}
.statut-dossier-en-cours-de-traitement::after {
    background: #fcae54;
}
.statut-dossier-finalise::after {
    background: #739932;
}
.statut-attente::after,
.statut-traitement::after,
.statut-valide::after {
    content: "";
    position: absolute;
    top: -2px;
    height: 4px;
    left: 10px;
    right: 10px;
    border-radius:5px;
}
.statut-attente::after {
    background: #bd4444;
}
.statut-traitement::after {
    background: #fcae54;
}
.statut-valide::after {
    background: #739932;
}
.statut-attente {
    border-left: 3px solid #bd4444;
}
.statut-traitement {
    border-left: 3px solid #fcae54;
}
.statut-valide {
    border-left: 3px solid #739932;
}
.statut-attente,
.statut-traitement,
.statut-valide {
    position: relative;
}
.libelle-identite-inscrit {
    font-weight: 600;
    position: relative;
    margin-bottom: 5px;
}
.libelle-identite-inscrit::after {
    content: "";
    background:#000000;
    height: 2px;
    width: 35px;
    left: 0;
    bottom: -2px;
    position: absolute;
}
.valeur-identite-inscrit {
    color:#2e2f30;
    margin-bottom: 10px;
}
.line-step::before {
    content: "";
    background:#2e2f30;
    width: 4px;
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 5px;
}
.bulle-step {
    background: #626262;
    border: 2px solid #ffffff;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 5px;
    left: -10px;
    border-radius: 50%;
}
.libelle-step {
    color:#626262;
    margin-left: 10px;
}
.details-step {
    margin-bottom: 10px;
}
.libelle-sub-step {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}
.piece-justificative {
    margin-bottom: 10px;
}




/* Footer */
footer {
    border-top: 1px solid #dcdcdc;
}
.section-footer {
    background: #024cb6;
}
.section-footer a {
    color: #ffffff;
}
.section-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-footer {
    width: 33.3333%;
    text-align: center;
    height: 100%;
}
.logo-footer img {
    width: 130px;
}
.nav-footer {
    font-size: inherit;
    width: 50%;
}
.copyright {
    border-top: 1px solid #dcdcdc;
    margin-top: 10px;
    padding-top: 10px;
    text-align: center;
    padding-bottom: 20px;
}
.text-copyright {
    font-size: 13px;
    color: #ffffff;
}
.content-nav-footer {
    width: 50%;
}
.ctn-footer-left {
    float: left;
}
.ctn-footer-right {
    float: right;
}
.titre-nav {
    text-transform: uppercase;
    color:var(--couleur-jaune);
    font-size: 20px;
}
.content-nav {
    padding-top: 25px;
}
.ctn-nav div {
    padding: 10px 0;
    font-size: 14px;
}
.ctn-nav div a:hover {
    color:var(--couleur-jaune);
}



/* Autres styles */
.clear {
    clear: both;
}
.align-center {
    text-align: center;
}
.position-relative {
    position: relative;
}

/* Transition color */
.transition-color {
    transition: color 0.3s;
    -o-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -webkit-transition: color 0.3s;
}
.transition-background {
    transition: background 0.3s;
    -o-transition: background 0.3s;
    -ms-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -webkit-transition: background 0.3s;
}
.transition-border {
    transition: border 0.3s;
    -o-transition: border 0.3s;
    -ms-transition: border 0.3s;
    -moz-transition: border 0.3s;
    -webkit-transition: border 0.3s;
}
.transition-opacity {
    transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
}

/* Border radius */
.border-radius-5 {
    border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.border-radius-10 {
    border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
.border-radius-50 {
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.box-shadow-3 {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -o-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -ms-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -moz-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.no-text-select {
    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
    user-select: none; /* Propriété standard */
}
.fieldset {
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
    background: #ffffff;

    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    -o-box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    -ms-box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    -moz-box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.fieldset-label {
    position: absolute;
    padding: 5px;
    height: 30px;
    top: -15px;
    left: 20px;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid #eeeeee;
    text-transform: uppercase;
    background: #ffffff;
}
.fieldset-content {
    padding: 20px 10px;
    font-size: 14px;
}
.underligne {
    text-decoration: underline;
}
.uppercase {
    text-transform: uppercase;
}
.validation {
    cursor: pointer;
    outline: none;
    margin-top: 20px;
}
.ombre-1 {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -o-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -ms-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.flash-box {
    padding: 10px;
    font-size: 18px;
}
.flash-box-error {
    background: rgba(223, 132, 132, 0.918);
    color:#553030;
}
.flash-box-success {
    background:#31572c;
    color: #ffffff;
}
.box-btn-connexion {
    display: flex;
    justify-content: space-between;
}
.ctn-form-connexion {
    padding: 10px;
    background: #ffffff;
}
.link-password-forget a {
    font-size: 13px;
    color:#790101;
}