:root {
    --theme-primaryDark: #253475;
    --theme-secondaryDark: #871c60;
    --theme-backgroundDark: #4D4D4F;
    --theme-backgroundLight: #F0F0F0;
    --theme-appBackground: #FFFFFF;
}



* {
    font-family: 'Roboto', Helvetica, sans-serif;
}

a {
    color:var(--theme-primaryDark);
    font-weight:bold;
}

a:hover {
    text-decoration: underline;
    color:var(--theme-secondaryDark);
}

a:focus
{
    outline:0;
}
html {
    overflow-y: auto;
    overflow-x: hidden; /* I do NOT want hz scroll */
    background-color:var(--theme-appBackground);
}



body {
    background-color:var(--theme-appBackground);
}

header {
    width:100%;
}
header img {
    height:100px;
    width:200px;
    float:left;
}
header img {
    height: 100px;
    width: 200px;
    float: left;
    margin: 15px;
}
header h1 {
    font-size:25px;
    font-weight:bold;
    height:30px;
    margin-top:35px;
    margin-bottom:35px;
    padding:0 25px;
    text-align:center;
    float:left;
    width:calc(100% - 230px);
    color:var(--theme-primaryDark);
}
header::after {
    clear:both;
}

#content {
    border-top:2px solid var(--theme-secondaryDark);
}

p.etape {
    padding:5px 10px 5px 20px;
}

p.etape.hidden {
    display:none;
}

p.etape_niveau_1 {
    font-size: 20px;
    background-color: var(--theme-primaryDark);
    color:var(--theme-appBackground);
    padding:25px 10px 25px 20px;
    text-align: center;
    margin: 0;
}
p.etape_niveau_1 span span {
    font-size: 12px;
    display:block;
    background-color: var(--theme-appBackground);
    color:var(--theme-primaryDark);
    padding:25px 10px 25px 20px;
    text-align: left;
}
p.etape_niveau_2 {
    font-size: 18px;
    /*background-color: var(--theme-appBackground);
    color:var(--theme-secondaryDark);*/
    background-color: var(--theme-secondaryDark);
    color:var(--theme-appBackground);
    border:2px solid var(--theme-secondaryDark);

    border-width:0 0 0px 0;
    padding:15px 10px 15px 30px;
}
p.etape_niveau_3 {
    font-size: 16px;
    padding:5px 10px 5px 35px;
    font-weight:bolder;
    font-style: italic;
    border:2px solid var(--theme-secondaryDark);
    border-width:2px 0 2px 0;
}

p.question {
    padding:5px;
    font-size: 14px;
    padding:5px 10px 5px 50px;
    margin:10px 0 10px 0;
}


p.question_mandatory span.questionLibelle {
    font-weight:bold;
}
p.question_mandatory span.questionLibelle::after {
    content: ' *';
    color:red;
}

input.inca {
    border:1px solid var(--theme-secondaryDark);
    border-radius: 5px;
    height:30px;
    padding:0 5px ;
    font-weight:bold;
    color:var(--theme-secondaryDark);
}
input.inca.integer {
    width:100px;
}
input.inca.string {
    width:100%;
}
input.inca.error {
    border-color:red;
}

select.inca {
    border:1px solid var(--theme-secondaryDark);
    border-radius: 5px;
    height:30px;
    padding:0 5px ;
}
select.inca.error {
    border-color:red;
}

table {
    margin:0 0 15px 60px;
    border:1px solid var(--theme-secondaryDark);
    border-radius: 5px;
}
table tr {
    border-collapse: collapse;
    border-radius: 5px;
}
table tr th, table tr td {
    font-size: 14px;
    border:1px solid var(--theme-secondaryDark);
    border-radius: 5px;
    padding:5px 10px;
    text-align: center;


}
table tr th {
    font-size: 15px;
    font-weight:bolder;

}

table tr td:first-child {
    font-weight:bold;
    text-align:right;
}


td.td_mandatory span::after {
    content: ' *';
    color:red;
}

#nav {
    width:100%;
    height:100px;
    text-align: center;
    position: fixed;
    bottom: 0;
    background-color: var(--theme-appBackground);
    border-top:2px solid var(--theme-secondaryDark);
}
#nav a {
    display:inline-block;
    /*position:absolute;*/
    /*width:150px;*/
    min-width:150px;
    padding:14px 30px 0 30px;
    height:50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top:25px;
}
a#previousScreen {

    margin-right:20px;
    visibility:hidden;
}
a#nextScreen {

    margin-left:20px;
    visibility:visible;
}

a#print {
    float:right;
    margin-right:40px;
}
#contentForm {
    margin-bottom:150px;
}
p#etape_48 {
    display:none;
}
select {
    border:1px solid var(--theme-primaryDark);
    border-radius: 5px;
    height:30px;
    padding:0 5px ;
    font-weight:bold;
    color:var(--theme-secondaryDark);
}
.errorMessage {
    padding: 0;
    color: red;
    font-size: 12px;

    font-weight: bold;
    display:none;
}
.errorTableau {
    padding:5px 10px 5px 50px !important;
}
#etape_0 {
    margin:20px;
}
#etape_fin {
    display:none;
    margin:20px;
}


textarea {
    /* resize: vertical; */
    display: block;
    width: 90%;
    border: 1px solid var(--theme-secondaryDark);
    color:var(--theme-secondaryDark);
    border-radius: 5px;
    min-height: 100px;
    padding: 10px;
     margin: 10px 0;
}
textarea.error {
    border-color:red;
}


#rgpd {
    display:block;
    margin:20px auto;
    width:80%;
    border:1px solid var(--theme-secondaryDark);
    padding:10px;

}
#rgpd label.titrergpd {
    display:block;
    text-align:center;
    padding:10px;
    font-size:16px;
}
#rgpd span {
    display:block;
    text-align:justify;
    font-size:12px;
    padding:10px;
}
#rgpdcheckbox {
    margin-left: calc(50% - 100px);
    width:20px;
}
.rgpdcheck {
    margin:0 auto;
    color:var(--theme-secondaryDark);
    text-decoration: underline;
}
.rgpdcheck:hover {
    cursor:pointer;
}


/*select[multiple] {
    background:none;
    width:auto;
    height:auto;
    padding:0;
    margin:0;
    border-width: 2px;
    border-style: inset;
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
    appearance: menulist;
}*/
.glyphicon-ok::before {
    content: "\2713";
    /*content: "\e013";*/
    font-size: 18px;
    color: var(--theme-secondaryDark);
    margin-top: 4px;
    display: block;
    font-weight:bold;
}
span.questionSousLibelle {
    display:block;
    color: grey;
    font-size: 12px;
}
.dropdown-toggle {
    border: 1px solid var(--theme-secondaryDark);
}
div#alert {
    display:none;
}
p.texteadd {
    font-size: 14px;
    padding: 15px 15px 15px 50px;
}
p#etape_31 span, p#etape_32 span, p#etape_33 span, p#etape_34 span, p#etape_35 span {
    padding-left: 15px;
    display: block;
}
p#etape_31 span::before, p#etape_32 span::before, p#etape_33 span::before, p#etape_34 span::before, p#etape_35 span::before {
    display: block;
    content: '→';
    float: left;
    margin: -2px 5px 5px 5px;

}
#loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
    /* background-color: transparent; */
    /*display: none;*/
    z-index: 255;
}
.loader {
width: 48px;
height: 48px;
border: 5px solid #FFF;
border-bottom-color: var(--theme-secondaryDark);
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
    margin-top: 25%;
}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}


@media(max-width:640px){

    h1 {
        width:100% !important;
        font-size:150% !important;
    }
    header img {
        margin: 10px auto 0 auto !important;
        float:none !important;
        height: 80px !important;
        width: auto !important;
    }
    #nav {
        height: 220px !important;

    }
    #nav a {
        display: block;
        /* position: absolute; */
        width: 150px !important;
        margin-left:auto !important;
        margin-right:auto !important;
        margin-top: 15px !important;
    }
    a#print {
        float:none !important;
    }
    #contentForm {
        margin-bottom: 250px !important;
    }
    p.question {
        padding-left: 10px !important;
    }
    table {
        margin: 0 auto !important;
    }
    .questionspecreferentiel {
        margin-left: 60px !important;
    }
    .questionspecrecommandation {
        margin-left: 60px !important;
    }
    .questionspecformation_universitaire {
        margin-left: 60px !important;
    }
    .questionspecformation_non_universitaire {
        margin-left: 60px !important;
    }
    .questionspecassociation {
        margin-left: 60px !important;
    }
}


#referentiels {
    text-align: center;
    margin-bottom: 50px;
}
#recommandations {
    text-align: center;
    margin-bottom: 50px;
}
#formation_universitaires {
    text-align: center;
    margin-bottom: 50px;
}
#formation_non_universitaires {
    text-align: center;
    margin-bottom: 50px;
}
#associations {
    text-align: center;
    margin-bottom: 50px;
}
#creerReferentiel {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 150px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: 25px;
}
#creerRecommandation {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 150px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: 25px;
}
#creerFormationUniversitaire {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 150px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: 25px;
}
#creerFormationNonUniversitaire {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 150px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: 25px;
}
#creerAssociation {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 150px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: 25px;
}
#referentielformactions {
    text-align: center;
}
#recommandationformactions {
    text-align: center;
}
#formation_universitaireformactions {
    text-align: center;
}
#formation_non_universitaireformactions {
    text-align: center;
}
#associationformactions {
    text-align: center;
}
#referentielformactions a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 100px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin:15px;
}
#recommandationformactions a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 100px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin:15px;
}
#formation_universitaireformactions a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 100px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin:15px;
}
#formation_non_universitaireformactions a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 100px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin:15px;
}
#associationformactions a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 100px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin:15px;
}
#referentielform {
    text-align: left;
    width:800px;
    margin:20px auto;
    border:1px solid black;

}
#recommandationform {
    text-align: left;
    width:800px;
    margin:20px auto;
    border:1px solid black;

}
#formation_universitaireform {
    text-align: left;
    width:800px;
    margin:20px auto;
    border:1px solid black;

}
#formation_non_universitaireform {
    text-align: left;
    width:800px;
    margin:20px auto;
    border:1px solid black;

}
#associationform {
    text-align: left;
    width:800px;
    margin:20px auto;
    border:1px solid black;

}
#referentielform p.question {
    padding:5px 10px;
}
#recommandationform p.question {
    padding:5px 10px;
}
#formation_universitaireform p.question {
    padding:5px 10px;
}
#formation_non_universitaireform p.question {
    padding:5px 10px;
}
#associationform p.question {
    padding:5px 10px;
}
#referentielsdeclarees, #reugeneralesdeclarees, .reulocalesdeclarees {
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    padding-bottom: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
#recommandationsdeclarees, #reugeneralesdeclarees, .reulocalesdeclarees {
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    padding-bottom: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
#formation_universitairesdeclarees {
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    padding-bottom: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
#formation_non_universitairesdeclarees {
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    padding-bottom: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
#associationsdeclarees {
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    padding-bottom: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
.referentielmode, .reugeneralemode, .reulocalemode {
    text-align: center;
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
.recommandationmode, .reugeneralemode, .reulocalemode {
    text-align: center;
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
.formation_universitairemode {
    text-align: center;
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
.formation_non_universitairemode {
    text-align: center;
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
.associationmode {
    text-align: center;
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    color:var(--theme-primaryDark);
    font-weight:bold;
}
#existingreferentiels {

}
#existingrecommandations {

}
#existingformation_universitaires {

}
#existingformation_non_universitaires {

}
#existingassociations {

}
div.referentiel {
    display: inline-block;
    width: auto;
    border: 2px solid var(--theme-primaryDark);
    min-width: 100px;
    min-height: 100px;
    margin: 10px 10px;
    border-radius: 5px;
    width: 400px;
}
div.recommandation {
    display: inline-block;
    width: auto;
    border: 2px solid var(--theme-primaryDark);
    min-width: 100px;
    min-height: 100px;
    margin: 10px 10px;
    border-radius: 5px;
    width: 400px;
}
div.formation_universitaire {
    display: inline-block;
    width: auto;
    border: 2px solid var(--theme-primaryDark);
    min-width: 100px;
    min-height: 100px;
    margin: 10px 10px;
    border-radius: 5px;
    width: 400px;
}
div.formation_non_universitaire {
    display: inline-block;
    width: auto;
    border: 2px solid var(--theme-primaryDark);
    min-width: 100px;
    min-height: 100px;
    margin: 10px 10px;
    border-radius: 5px;
    width: 400px;
}
div.association {
    display: inline-block;
    width: auto;
    border: 2px solid var(--theme-primaryDark);
    min-width: 100px;
    min-height: 100px;
    margin: 10px 10px;
    border-radius: 5px;
    width: 400px;
}
div.referentiel::after {
    /*display:block;
    content:'&nbsp;';*/

}
div.recommandation::after {
    /*display:block;
    content:'&nbsp;';*/

}
div.formation_universitaire::after {
    /*display:block;
    content:'&nbsp;';*/

}
div.formation_non_universitaire::after {
    /*display:block;
    content:'&nbsp;';*/

}
div.association::after {
    /*display:block;
    content:'&nbsp;';*/

}
div.referentiel span.nom {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    margin: 0;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
}
div.recommandation span.nom {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    margin: 0;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
}
div.formation_universitaire span.nom {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    margin: 0;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
}
div.formation_non_universitaire span.nom {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    margin: 0;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
}
div.association span.nom {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    margin: 0;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
}
div.referentiel span.type {
    display:inline-block;

    text-align: center;
    font-size: 14px;
    padding: 10px 15px;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
    margin: 10px;
    border-radius: 5px;
}
div.recommandation span.type {
    display:inline-block;

    text-align: center;
    font-size: 14px;
    padding: 10px 15px;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
    margin: 10px;
    border-radius: 5px;
}
div.referentiel span.ville {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    padding: 10px 15px;
    font-weight: bold;
    color: var(--theme-primaryDark);
}
div.recommandation span.ville {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    padding: 10px 15px;
    font-weight: bold;
    color: var(--theme-primaryDark);
}
div.referentiel a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    color:var(--theme-secondaryDark);
}
div.recommandation a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    color:var(--theme-secondaryDark);
}
div.formation_universitaire a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    color:var(--theme-secondaryDark);
}
div.formation_non_universitaire a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    color:var(--theme-secondaryDark);
}
div.association a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    color:var(--theme-secondaryDark);
}
/*input.frequence::after {
    display:block;
    content:' ';
    clear:both;
}*/

/* reu generale */

#reugenerales {
    text-align: center;
}
#creerReuGenerale {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 150px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: 25px;
}
#reugeneralaformactions {
    text-align: center;
}
#reugeneralaformactions a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 100px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin:15px;
}
#reugeneraleform {
    text-align: left;
    width:800px;
    margin:20px auto;
    border:1px solid black;

}
#reugeneraleform p.question {
    padding:5px 10px;
}
#reugeneralesdeclarees {
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    padding-bottom: 25px;
}
.reugeneralemode {
    text-align: center;
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
}
#existingreugenerales {

}

div.reugenerale {
    display: inline-block;
    width: auto;
    border: 2px solid var(--theme-primaryDark);
    min-width: 100px;
    min-height: 100px;
    margin: 10px 10px;
    border-radius: 5px;
    width: 400px;
}
div.reugenerale span.nom {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    margin: 0;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
}
div.reugenerale span.frequence {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    padding: 10px 15px;
    font-weight: bold;
    color: var(--theme-primaryDark);
}
div.reugenerale a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    color:var(--theme-secondaryDark);
}

/* reu locale */
.ecranreunionslocales {
    text-align: center;
}



.creerReuLocale {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 150px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground) !important;
    background-color: var(--theme-secondaryDark);
    margin-top: 25px;
}
.reulocaleformactions {
    text-align: center;
}
.reulocaleformactions a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    min-width: 100px;
    padding: 14px 30px 0 30px;
    height: 50px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin:15px;
}
.reulocaleform {
    text-align: left;
    width:800px;
    margin:20px auto;
    border:1px solid black;

}
.reulocalemode p.question {
    padding:5px 10px;
}
.reulocalesdeclarees {
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
    padding-bottom: 25px;
}
.existingreulocales {

}
.reulocalemode {
    text-align: center;
    display: block;
    font-size: 1.5em;
    padding-top: 25px;
}


div.reulocale {
    display: inline-block;
    width: auto;
    border: 2px solid var(--theme-primaryDark);
    min-width: 100px;
    min-height: 100px;
    margin: 10px 10px;
    border-radius: 5px;
    width: 400px;
}
div.reulocale span.nom {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    margin: 0;
    background-color:var(--theme-primaryDark);
    color: var(--theme-appBackground);
    font-weight: bold;
}
div.reulocale span.frequence {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    padding: 10px 15px;
    font-weight: bold;
    color: var(--theme-primaryDark);
}
div.reulocale a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    color:var(--theme-secondaryDark);
}

#print {
    /*display:none !important;*/
}



.questionspecreferentiel {
    margin:0;
    margin-left:20px !important;
}
.questionspecrecommandation {
    margin:0;
    margin-left:20px !important;
}
.questionspecformation_universitaire {
    margin:0;
    margin-left:20px !important;
}
.questionspecformation_non_universitaire {
    margin:0;
    margin-left:20px !important;
}
.questionspecassociation {
    margin:0;
    margin-left:20px !important;
}
.preferentiel {
    font-size: 14px;
    padding: 5px 10px 5px 70px;
    font-weight :bold;
}
.precommandation {
    font-size: 14px;
    padding: 5px 10px 5px 70px;
    font-weight :bold;
}
.pformation_universitaire {
    font-size: 14px;
    padding: 5px 10px 5px 70px;
    font-weight :bold;
}
.pformation_non_universitaire {
    font-size: 14px;
    padding: 5px 10px 5px 70px;
    font-weight :bold;
}
.passociation {
    font-size: 14px;
    padding: 5px 10px 5px 70px;
    font-weight :bold;
}
.questionLibelleReferentiel {

}
.questionLibelleRecommandation {

}
.questionLibelleFormationUniversitaire {

}
.questionLibelleFormationNonUniversitaire {

}
.questionLibelleAssociation {

}
@media(max-width:640px){
    .preferentiel {
        padding: 5px 10px 5px 30px;
    }
    .precommandation {
        padding: 5px 10px 5px 30px;
    }
    .pformation_universitaire {
        padding: 5px 10px 5px 30px;
    }
    .pformation_non_universitaire {
        padding: 5px 10px 5px 30px;
    }
    .passociation {
        padding: 5px 10px 5px 30px;
    }
    .questionspecreferentiel {
        margin-left: 30px !important;
    }
    .questionspecrecommandation {
        margin-left: 30px !important;
    }
    .questionspecformation_universitaire {
        margin-left: 30px !important;
    }
    .questionspecformation_non_universitaire {
        margin-left: 30px !important;
    }
    .questionspecassociation {
        margin-left: 30px !important;
    }
}

#question_4, #question_10 {
    font-weight: bold;
}


/* multiline bootstrap select */
.bootstrap-select .btn {
    /* enables multiline on selectpicker */
    white-space: normal !important;
    word-wrap: break-word;
}

#divetps {
    font-size: 14px;
    padding: 5px 10px 5px 50px;
    margin: 10px 0 10px 0;
}
.divetp {
    margin-top:30px;
}
.numetp {
    display:block;
    font-size:16px;
    font-weight:bold;
}
.statutetp {

}
.fonctionetp {

}
.missionetp {

}
#addETP {
    margin:20px 0 20px 0;
}
#addETP {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    /* min-width: 150px; */
    padding: 9px 25px;
    height: 40px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: -5px;
    font-size: 16px;
}
.supprETP {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    /* min-width: 150px; */
    padding: 5px 10px;
    height: 30px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: -5px;
    margin: -26px 0px 0 70px;
    float: left;
}
#addETP:hover, .supprETP:hover {
    color: #fff;
    text-decoration: underline;
    cursor: pointer;

}
.boutonsETP {
    text-align: center;
}
.boutonsETP a {
    display: inline-block;
    /* position: absolute; */
    /* width: 150px; */
    /* min-width: 150px; */
    padding: 5px 10px;
    height: 30px;
    border-radius: 5px;
    color: var(--theme-appBackground);
    background-color: var(--theme-secondaryDark);
    margin-top: -5px;
    margin: -5px 20px 0 20px;
}
#titreaddetp {
    text-align: center;
    font-size:18px;
    background-color:var(--theme-secondaryDark);;
    display:block;
    color:#fff;
    padding:10px;
}

#addETPform {
    max-width: 600px;
    border: 1px solid var(--theme-secondaryDark);;
    margin-left: 50px;
    padding: 0 0px 5px 0px;
    display:none;
}

#addETPform > p {
    margin-right:30px;
}
