/**********************************************************************************/
/* REGLES GLOBALES DU SITE */
/**********************************************************************************/
html {
    font-size: 62.5%;
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    color: #000033;
}
body.loadAjax * {
    cursor: wait !important;
}
.noScroll {
    overflow: hidden;
}
#divGlobale {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Calibri Light, sans-serif;
}
.flex {
    display: flex;
}
.none {
    display: none !important;
}
.block {
    display: block;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.backgroundAdmin {
    background: #66CC99;
}
.backgroundPresta {
    background: #9999CC;
}
.backgroundDeleg {
    background: #FFBF00;
}
.backgroundDirecteur {
    background: #F16141;
}
.backgroundMinistere {
    background: #FE9C9C;
}
.erreurForm {
    display: block;
    font-size: 1.2rem;
    color: red;
}
.rotate90 {
    transform: rotate(-90deg);
}
header, 
footer {
    color: #FFFFFF;
}
header a, 
footer a {
    display: block;
    color: #FFFFFF;
    font-weight: lighter;
    text-decoration: none;
}
a:hover, 
label:hover,
input[type="submit"]:hover {
    cursor: pointer;
}
footer a:hover {
    text-decoration: underline;
}
.datepicker-here {
    background-repeat: no-repeat; 
    background-position: 95%;
    background-size: 10%;
}
.boutonSubmit {
    padding: 0.7rem;
    border: none;
    font-family: 'Gotham Book';
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #66CC99;
    border-radius: 0.2rem;
}
.boutonSubmit:hover {
    background: #9FDFBF;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background: #FFFFFF;
    border: 1px solid #000000;
    vertical-align: bottom;
}
input[type="checkbox"]:checked:before {
    display: block;
    margin-left: 0.2rem;
    content: '■';
    color: #000033;
    line-height: 0.6;
}
input:disabled {
    background: #DDDDDD;
    color: grey;
}
.flatpickr-calendar {
    font-family: Calibri;
}
.flatpickr-calendar .flatpickr-day {
    border-radius: 0;
}
.inputCalendrier {
    display: flex;
    width: 30%;
    margin: 0;
}
.inputCalendrier input[type="text"] {
    height: auto;
    border: none !important;
}
.inputCalendrier .input-button {
    align-self: center;
    justify-content: center;
    display: inline-block;
    padding: 0.8rem 1.2rem;
    line-height: 1;
    text-decoration: none;
    background: #FFFFFF;
    cursor: pointer;
}
.input-button .fa-calendar {
    color: #007F00;
}
.input-button .fa-times {
    color: #CC0000;
}
.messageErreur {
    margin: 0.5rem 0;
    font-size: 1.4rem;
    color: red;
}
@keyframes pulse {
	10% {
        transform: scale(1.1)
    }
    10% {
        transform: scale(0.8)
    }
}
#boutonRetourTop {
    position: fixed;
    bottom: 6rem;
    right: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-family: 'Gotham Narrow Medium';
    font-size: 2rem;
    line-height: 1;
    border: none;
    background: #FF6633;
    color: #FFFFFF;
    border-radius: 2rem;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    animation:pulse 2s infinite;
}
#boutonRetourTop.show {
    opacity: 1;
    visibility: visible;
  }
#boutonRetourTop:hover {
    cursor: pointer;
    transform: scale(0.9);
    background: #FF9933;
}
#boutonRetourTop span {
    transform: rotate(-90deg);
}
select {
    /* position: relative; */
    display: block;
    width: 100%;
    height: 2.5rem;
    margin: 0;
    padding: 0.3rem 2rem 0.3rem 0.3rem;
    border:none;
    outline:none;
    display: inline-block;
    /* -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none; */
    cursor:pointer;
    background: #FFFFFF;
    text-overflow: ellipsis;
}
select::-ms-expand {
    display: none;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        padding-right: 1.8rem;
    }
}
.select {
    position: relative;
    display: block;
    margin: 0.5rem 0;
}
/**********************************************************************************/
/* HEADER */
/**********************************************************************************/
header {
    overflow: hidden;
    height: 100px;
}
header .header {
    position: absolute;
    top: 0;
    left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	z-index: 3;
}
#topHeader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}
header #logo,
header #burger {
    margin: 2rem;
}
header #logo span {
    font-size: 10rem;
    line-height: 0.3;
}
header #logo img {
    margin-right: 3rem;
}
header #logoEPAF {
    height: 5rem;
}
header #logoASFV {
    height: 6rem;
}
.titreEspace {
    font-family: 'Gotham';
    font-size: 1.6rem;
    text-transform: uppercase;
}
header #burger,
header #croix {
    display: none;
}
header #panier {
    position: relative;
}
header nav a, 
header nav p {
    /* display: inline-block; */
    margin: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
header nav a:hover {
    font-weight: 900;
}
header #nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	height: 3.5rem;
    margin: 1rem 0;
	padding: 0.5rem;
}
header nav svg,
header nav img {
    fill: #FFFFFF;
    width: 2rem;
    height: 2rem;
}
header nav svg:hover,
header nav img:hover {
    transform: scale(1.1); 
}
header .labelHeader {
    display: none;
}
header #videoContainer {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    top: 0;
    right: 0;
    z-index: -100;
}
header video {
    display: block;
    width: 100%;
}
header #deconnexion {
    display: flex;
}
.boutonNav {
    display: flex;
    width: 50%;
    margin: 1.5rem auto;
}
.menuLateral {
    width: 22%;
}
.menuLateral .boutonPrincipal {
    font-family: 'Gotham';
    font-weight: bold;
}
.menuLateral .sousMenuPrincipal,
.menuLateral .sousMenu {
    display: none;
    padding-left: 3rem;
}
.espaceDelegation .espaceDeleg h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Gotham';
    font-size: 1.8rem;
    font-weight: 400;
}
.espaceDelegation .espaceDeleg h2 img {
    height: 3.5rem;
    margin-right: 1rem;
}
.espaceDelegation .lienInscription:not(.boutonPrincipal){
    background: #E7E3E2;
    color: #000000;
}
h1 {
    font-family: Calibri;
}
/**********************************************************************************/
/* EN DESSOUS DE 1300PX */
/**********************************************************************************/
@media screen and (max-width: 1300px) {
    header nav a, header nav p {
        font-size: 1.3rem;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 800PX */
/**********************************************************************************/
@media screen and (max-width: 800px) {
    header #logo img {
        width: 100%;
    }
    header #menu600 {
        position: relative;
        margin: 0;
    }
    #topHeader {
        background: none;
    }
    header #menu600 #burger {
        display: flex;
        justify-content: flex-end;
    }
    #displayMenu600:checked ~ #menu600 nav #croix {
        display: block;
    }
    header nav {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        justify-content: right;
        height: auto;
        margin: 0;
        padding-left: 2rem;
        background: rgba(0,0,0,0.6);
    }
    #displayMenu600:checked ~ #menu600 nav {
        display: flex;
    }
    #displayMenu600:checked ~ #menu600 #burger,
    header #hrHeader {
        display: none;
    }
    header nav a {
        margin: 1.5rem 0.5rem 1.5rem auto;
        font-family: Calibri;
        font-weight: bold;
    }
    header nav #croix {
        font-size: 3.5rem;
        text-align: right;
    }
    /* header nav p {
        display: none;
    } */
    header nav span.labelHeader {
        display: inline-block;
    }
    header nav img {
        width: 2.4rem;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 500PX */
/**********************************************************************************/
@media screen and (max-width:500px) {
    header nav a, header nav p {
        font-size: 1.7rem;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 400PX */
/**********************************************************************************/
@media screen and (max-width: 400px) {
    header #logo img {
        width: 8rem;
    }
    header #menu600, header nav {
        width: 100%;
    }
    header nav {
        flex-direction: column;
        justify-content: right;
        margin: 0;
        padding: 1.5rem 0;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 350PX */
/**********************************************************************************/
@media screen and (max-width: 350px) {
    header nav a, header nav p {
        font-size: 1.3rem;
    }
}