/**********************************************************************************/
/* BANDEAU INFOS */
.bandeau {
    height: 5rem;
    margin-bottom: 2rem;
    overflow: hidden;
    background: rgba(204,51,51,0.8);
}
.format {
    display: inline-block;
    padding-right: 100%;
    padding-left: 100%;
    line-height: 5rem;
    white-space: nowrap;
    color: #FFFFFF;
    overflow: hidden;
}
.format:hover {
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused;
    animation-play-state:paused;
    cursor: pointer;
}
.actu {
    display: inline-block;
    padding: 0 2rem;
    font-family: 'Gotham Narrow';
    font-size: 2rem;
    color: #FFFFFF;
}
.actu a {
    text-decoration: underline;
    color: #FFFFFF;
}
@keyframes bandeauActu {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
                transform: translate3d(-100%, 0, 0);
    }
}
.format#formatActu1 {
    animation-name: bandeauActu;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 30s;
}
.format#formatActu2 {
    animation-name: bandeauActu;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 80s;
}
.format#formatActu3 {
    animation-name: bandeauActu;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 80s;
}
.format#formatActu4 {
    animation-name: bandeauActu;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 80s;
}.format#formatActu5 {
    animation-name: bandeauActu;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 80s;
}
/**********************************************************************************/
/* REGLES GLOBALES DU SITE */
/**********************************************************************************/
html {
    font-size: 62.5%;
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    color: #000033;
}
#divGlobale {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Calibri Light, sans-serif;
}
/* @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #divGlobale {
        height: 100vh;
    }
} */
.flex {
    display: flex;
}
.none {
    display: none !important;
}
.block {
    display: block;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.uppercase {
    text-transform: uppercase;
}
.erreurForm {
    display: block;
    font-size: 1.2rem;
    color: red;
}
header, 
footer {
    color: #FFFFFF;
}
header a, 
footer a {
    display: block;
    color: #FFFFFF;
    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: Calibri;
    font-weight: bold;
    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.1rem;
    content: '■';
    color: #000033;
    line-height: 0.6;
}
@keyframes pulse {
	10% {
        transform: scale(1.1)
    }
    10% {
        transform: scale(0.8)
    }
}
.inputCalendrier {
    border: solid 1px #327AC6
}
.flatpickr-calendar {
    font-family: Calibri;
}
.flatpickr-calendar .flatpickr-day {
    border-radius: 0;
}
.formulaireAdherent .inputCalendrier input {
    height: auto;
    border: none;
}
.inputCalendrier .input-button {
    align-self: center;
    justify-content: center;
    display: inline-block;
    padding: 0.8rem 1.2rem;
    line-height: 1;
    text-decoration: none;
    border-left: solid 1px #327AC6;
    background: #FFFFFF;
    cursor: pointer;
}
.input-button .fa-calendar {
    color: #007F00;
}
.input-button .fa-times {
    color: #CC0000;
}
#boutonRetourTop {
    position: fixed;
    bottom: 6rem;
    right: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-family: Calibri;
    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);
}
/**********************************************************************************/
/* HEADER */
/**********************************************************************************/
header {
    background: #007196;
    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;
}
header #burger,
header #croix {
    display: none;
}
header #panier {
    position: relative;
}
header #nomAdherent {
    text-align: right;
}
header #nav {
    display: flex;
    align-items: center;
    height: 3.5rem;
    margin: 1rem 0;
	padding: 0.5rem;
}
header nav a, 
header nav p {
    margin: 0 1rem;
    font-size: 1.7rem;
    font-family: Calibri;
    letter-spacing: 0;
    text-transform: uppercase;
}
header nav a span {
    font-size: 2.5rem;
}
header nav a#nomAdherent {
    font-size: 1.8rem;
}
header nav svg:hover,
header nav img:hover {
    transform: scale(1.1); 
}
header .labelHeader {
    display: none;
}
header #panier {
    position: relative;
}
header #videoContainer {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    top: 0;
    right: 0;
    z-index: -100;
}
header video {
    display: block;
    width: 100%;
}
#topHeader #itemsPanier {
    position: absolute;
    top: -1rem;
    right: -1rem;
    padding: 0.3rem 0.6rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 1rem;
    background: #FF6633;
}
header #deconnexion {
    display: flex;
}
/************************************************************************************/
/* BARRE DE NAVIGATION */
/************************************************************************************/
#navigationIcones {
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    color: #FFFFFF;
    background: #007196;
    border-bottom: 8px #0095DA solid;
}
#navigationIcones a,
#navigationIcones label {
    width: 100%;
    font-family: Calibri;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
}
#navigationIcones span {
    font-size: 3rem;
    margin-bottom: 1rem;
}
#navigationIcones p {
    margin: 0.5rem 0 1rem 0;
}
#navigationIcones .boutonNavigation {
    position: relative;
    display: flex;
    justify-content: center;
    width: 15%;
    padding-top: 1.5rem;
    min-width: 25rem;
    border-radius: 1rem 1rem 0 0;
}
#navigationIcones .boutonNavigation .contenuMenu {
    position: absolute;
    top: 8rem;
    left: 0;
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 0.5rem;
    background: #0095DA;
    border-radius: 0 0 1rem 1rem;
    z-index: 5;
}
#navigationIcones .boutonNavigation:hover > .contenuMenu {
    display: flex;
}
.contenuMenu a {
    padding: 1.5rem 0;
}
.contenuMenu a:last-of-type {
    border-radius: 0 0 1rem 1rem;
}
.contenuMenu a:hover {
    background: #00618E;
}
/**********************************************************************************/
/* FOOTER */
/**********************************************************************************/
footer {
    display: flex;
    justify-content: center;
    margin: auto 0 0 0;
    padding: 1rem;
    background: #007196;
}
footer a {
    font-family: Calibri;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #FFFFFF;
}
/**********************************************************************************/
/* EN DESSOUS DE 1300PX */
/**********************************************************************************/
@media screen and (max-width: 1300px) {
    header nav a, header nav p {
        font-size: 1.3rem;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 1000PX */
/**********************************************************************************/
@media screen and (max-width: 1000px) {
    #navigationIcones .boutonNavigation {
        min-width: unset;
        width: 25%;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 800PX */
/**********************************************************************************/
@media screen and (max-width: 800px) {
    header #logo img {
        height: 5rem;
    }
    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);
    }
    header #nav {
        flex-direction: column;
        align-items: normal;
        height: auto;
    }
    header #nomAdherent {
        margin: 0 1rem 1rem 1rem;
        text-align: right;
    }
    #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;;
        letter-spacing: 0.5px;
    }
    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;
    }
    #navigationIcones {
        border: none;
    }
    #navigationIcones img {
        height: 1.5rem;
    }
    #navigationIcones hr {
        display: none;
    }
    #navigationIcones,
    #navigationIcones .boutonNavigation {
        flex-direction: column;
    }
    #navigationIcones .boutonNavigation {
        width: 100%;
        padding: 0;
    }
    #navigationIcones .boutonNavigation:hover {
        background: none;
    }
    .boutonNavigation label,
    #navAccueil a {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        border-bottom: 2px #66CC99 solid;
    }
    #navigationIcones .boutonNavigation:hover > .contenuMenu {
        display: none;
    }
    #navigationIcones .inputNav:checked ~ .contenuMenu {
        display: flex !important;
    }
    #navigationIcones .boutonNavigation .contenuMenu {
        width: 100%;
        height: 100% !important;
        border-radius: 0;
    }
    #navigationIcones .boutonNavigation .contenuMenu {
        position: static !important;
    }
}
/**********************************************************************************/
/* 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 {
        height: 4rem;
    }
    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;
    }
}