@font-face {
    font-family: "Exponentiel";
    src: url("fonts/Exponentiel.otf");
}



/* Ce style gère le filet centrale de l’icône menu */
#menuAnim .menuIcone {
    display: inline-block;
    position: absolute;
    left: 28px;
    top: 50%;
    bottom: auto;
    right: auto;
    width: 30px;
    height: 4px;
    transition-timing-function: ease-out;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #ffffff;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    border-radius: 6px;
}

@media only screen and (max-width: 768px) {
    #menuAnim .menuIcone {
        background-color: #0046dd;
    }
}

#menuAnim.menuEnseignantsOuvert .menuIcone::before,
#menuAnim.menuEnseignantsOuvert .menuIcone::after {
    background-color: #0044dd;
}

/* Ce style gère les filets du bas et du haut de l’icône menu */
#menuAnim .menuIcone::before,
#menuAnim .menuIcone::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #ffffff;
    right: 0;
    transition-timing-function: ease-in-out;
    -webkit-transition: -webkit-transform 0.7s, top 0.7s, background-color 0s;
    -moz-transition: -moz-transform 0.7s, top 0.7s, background-color 0s;
    -ms-transition: -ms-transform 0.7s, top 0.7s, background-color 0s;
    -o-transition: -o-transform 0.7s, top 0.7s, background-color 0s;
    transition: transform 0.7s, top 0.7s, background-color 0s;
    border-radius: 6px;
}

@media only screen and (max-width: 768px) {

    #menuAnim .menuIcone::before,
    #menuAnim .menuIcone::after {
        background-color: #0046dd;
    }
}


body {
    margin: 0;
    background-image: url(images/fondprof.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 768px) {
    body {
        background-image: none;
    }

    body:before {
        content: "";
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -10;
        background-image: url(images/fondMobileEnseignants.jpg);
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}


#logotype {
    display: block;
    position: fixed;
    z-index: 4004;
    top: 30px;
    right: 160px;
    background-image: url(images/logoBlanc.png);
    background-repeat: no-repeat;
    background-size: 222px, 92px;
    opacity: 1;
    transition: opacity 0.2s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #logotype {
        display: block;
        width: auto;
        position: fixed;
        top: 5px;
        right: 20px;
        background-image: url(images/logo.png);
        background-repeat: no-repeat;
        background-size: 148px, 63px;
        z-index: 5000;
    }
}

#logotype.logotypeVisible {
    opacity: 0;
}

#logotype img {
    width: 222px;
    height: 92px;
}

@media only screen and (max-width: 768px) {
    #logotype img {
        width: 148px;
        height: 63px;
    }
}



/* Filet tester cercle étudiant actif */
#bandHaut {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    top: 300px;
    z-index: 100;
}

/* Filet tester cercle étudiant actif */
#bandBas {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    top: 600px;
    z-index: 100;
}


/******* MENU *******/

#xcontainer {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 34px;
    z-index: 1000;

}

#fondGrosX {
    position: fixed;
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 68, 221, 0);
    background-image: url(images/x.svg);
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 20px 20px;
    transition: all 0.6s;
    transition-timing-function: ease-in-out;
    z-index: 999;
}

#fondGrosX.grosX {
    height: 100vh;
    background-color: #0044dd;
    background-position: center -1000px;
    background-size: 3000px 3000px;
}

.container {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

.menu-container {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    top: 0;
    transition: all 0.3s;
}

.menu-container.full-menu {
    border-radius: 0;
    padding: 0 !important;
    position: aboslute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.3s;
}

.full-menu .menu {
    top: 0px;
    left: 0px;
}

.menu {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
    transition: all 0.3s;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

#xBlack {
    opacity: 0;
    position: fixed;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 211, 72, 0);
    background-image: url(images/xBlack.svg);
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 20px 20px;
    transition: all 0.6s;
    transition-timing-function: ease-in-out;
}

#xBlack.xBlackShow {
    opacity: 1;
    top: 6px;
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
    transform-origin: 50% 50%;
}

/******* FIN MENU *******/





.portrait {
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 100%;
}









.exponentielle-wrapper {
    position: relative;
    padding-top: 200px;
    padding-left: 100px;
    width: 630px;
    height: 100vh;
    margin-left: 0px;
}

@media only screen and (max-width: 768px) {
    .exponentielle-wrapper {
        padding-left: 0;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

#bandeGauche {
    padding-bottom: 300px;
    padding-top: 300px;
    display: block;
    position: fixed;
    bottom: 0;
    width: 310px;
    transition: bottom 1s;
    transition-timing-function: ease-in-out;
}

#bandeDroite {
    position: relative;
    padding-bottom: 300px;
    padding-top: 300px;
    display: block;
    width: 310px;
    margin-left: 310px;
    transition: top 1s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #bandeDroite {
        margin-left: 0px;
    }
}

#blocInfoFinissant {
    width: 700px;
    height: 180px;
    display: inline;
    position: fixed;
    z-index: 10;
    left: 700px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: opacity linear 0.2s;
    -moz-transition: opacity linear 0.2s;
    -o-transition: opacity linear 0.2s;
    transition: opacity linear 0.2s;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    #blocInfoFinissant {
        width: 100%;
        height: 70px;
        left: 0px;
        top: auto;
        bottom: 0;
        background-color: #00E0FF;
        margin: 0;
        padding: 0;
        transform: translateY(0%);
    }
}

#texteEnseignants {
    display: block;
    position: fixed;
    z-index: 10;
    left: 820px;
    top: 60%;
    width: 500px;
    height: auto;
    font-family: sofia-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.05em;
    line-height: 1.2em;
    color: #ffffff;
    z-index: 300;
}

@media only screen and (max-width: 768px) {
    #texteEnseignants {
        color: #0000E1;
    }
}

@media only screen and (max-width: 768px) {
    #texteEnseignants {
        display: block;
        position: fixed;
        left: 0px;
        top: auto;
        bottom: 0px;
        height: auto;
        width: 90%;
        display: block;
        transition: top 0.5s;
        transition-timing-function: ease-in-out;
        background-color: #ffffff;
        padding: 5%;
        font-size: 14px;
        color: #ffffff;
    }
}

#texteEnseignants h3 {
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #0000E1;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
}

#texteEnseignants p {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    font-family: sofia-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #ffffff;
    line-height: 17px;
}

@media only screen and (max-width: 768px) {
    #texteEnseignants p {
        color: #0000E1;
    }
}

#contenantBlocsNoms {
    position: absolute;
    width: 700px;
    display: block;
    transition: top 0.5s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #contenantBlocsNoms {
        display: none;
    }
}

#contenantNbr {
    position: absolute;
    width: 700px;
    display: block;
    transition: top 0.5s;
    transition-timing-function: ease-in-out;
    padding-top: 4px;
}

#contenantExposant {
    position: absolute;
    display: block;
    transition: top 0.5s;
    transition-timing-function: ease-in-out;
}


#ContenantPrenomNom01,
#ContenantPrenomNom02,
#ContenantPrenomNom03,
#ContenantPrenomNom04,
#ContenantPrenomNom05,
#ContenantPrenomNom06,
#ContenantPrenomNom07,
#ContenantPrenomNom08,
#ContenantPrenomNom09,
#ContenantPrenomNom10,
#ContenantPrenomNom11,
#ContenantPrenomNom12,
#ContenantPrenomNom13,
#ContenantPrenomNom14,
#ContenantPrenomNom15,
#ContenantPrenomNom16,
#ContenantPrenomNom17 {
    display: block;
    width: 700px;
    height: 220px;
    position: relative;
    left: 0;
    top: 0px;
    transition: top 0.2s;
    transition-timing-function: linear;
    opacity: 1;
}

@media only screen and (max-width: 768px) {

    #ContenantPrenomNom01,
    #ContenantPrenomNom02,
    #ContenantPrenomNom03,
    #ContenantPrenomNom04,
    #ContenantPrenomNom05,
    #ContenantPrenomNom06,
    #ContenantPrenomNom07,
    #ContenantPrenomNom08,
    #ContenantPrenomNom09,
    #ContenantPrenomNom10,
    #ContenantPrenomNom11,
    #ContenantPrenomNom12,
    #ContenantPrenomNom13,
    #ContenantPrenomNom14,
    #ContenantPrenomNom15,
    #ContenantPrenomNom16,
    #ContenantPrenomNom17 {
        display: block;
        width: 100%;
        height: 220px;
        position: relative;
        left: 0;
        top: 0px;
        transition: top 0.2s;
        transition-timing-function: linear;
        opacity: 1;
    }
}


.blocPrenomNom {
    width: 850px;
    display: inline;
    text-align: center;
    overflow: visible;
}

.prenomNom {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.prenomNom h3 {
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    color: #ffffff;
    line-height: 60px;
    margin: 0;
    padding: 0;
    padding-top: 8px;
    padding-bottom: 12px;
    text-align: center;
    overflow: visible;
}

@media only screen and (max-width: 768px) {
    .prenomNom h3 {
        font-size: 24px;
        line-height: 24px;
        color: #0000E1;
    }
}

.transparenceIn {
    opacity: 0;
}

.finissants-img-container {
    position: relative;
    display: block;
    width: 300px;
    height: 300px;
}

.portraitCarre {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -100%);
    width: 10px;
    height: 10px;
    background-color: rgba(255, 204, 204, 0.0);
    z-index: 200;
}

#portraitPointer2 {
    /* background-color: #c964ff; */
}

.contenantImage {
    position: relative;
    display: block;
    position: relative;
}

.contenantImageGauche {
    position: relative;
    display: block;
    position: relative;
}

.finissants-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    width: 250px;
    height: 250px;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    opacity: 0.3;
}

.iconeReseaux {
    text-align: center;
    width: 700px;
}

.iconeReseaux a {
    display: inline-block;
}

.iconeReseaux a img {
    margin-right: 10px;
    transition: opacity 0.6s;
    transition-timing-function: ease-in-out;
    opacity: 1;
    text-align: center;
}

.iconeReseaux a:hover img {
    opacity: 0.5;
}

.behance,
.linkedin {
    width: 40px;
}

.instagram {
    width: 30px;
}














/* Contenant global finissants */

.exponentielle-team-wrapper {
    position: relative;
    overflow: hidden;
    -ms-touch-action: pan-up !important;
    touch-action: pan-up !important;
}

.pt {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: calc(var(--vh, 1vh) * 50 - 10px);
    width: 20px;
    height: 20px;
    margin-left: -10px;
    border-radius: 50%;
    background-color: #fff;
    pointer-events: none;
    z-index: 8;
}

.exponentielle-team-imgs-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 520px;
    position: absolute;
    right: calc(50% - 180px);
    width: 680px;
    height: 100%;
}

/* contenant finissants Gauche et Droite */

.exponentielle-team-imgs-left-container,
.exponentielle-team-imgs-right-container {
    position: relative;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.exponentielle-team-imgs-left-container .exponentielle-team-img-container {
    bottom: 0;
}

.img-lazy-container.img-loaded {
    background-color: rgba(136, 136, 136, 0);
}

.exponentielle-team-img-container {
    width: 240px;
    height: 240px;
}

.exponentielle-team-img-container {
    position: absolute;
    left: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
    mask-image: radial-gradient(circle, #fff 100%, #000 100%);
    background-color: rgba(255, 255, 255, .1);
    overflow: hidden;
}

.exponentielle-team-img-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
}

*,
:after,
:before {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.img-lazy-container {
    background-color: rgba(136, 136, 136, .1);
    -webkit-transition: background .5s cubic-bezier(.455, .03, .515, .955) .5s;
    transition: background .5s cubic-bezier(.455, .03, .515, .955) .5s;
}

#exponentielleency img {
    max-width: 100%;
}

.img-lazy-container.img-loaded .img-lazy {
    opacity: 1;
}

.img-lazy {
    opacity: 0;
    -webkit-transition: opacity 1s cubic-bezier(.455, .03, .515, .955);
    transition: opacity 1s cubic-bezier(.455, .03, .515, .955);
}




/* Numéro exponantiel */

#etudiantsNbr {
    width: 100px;
    height: 30px;
    display: block;
    position: fixed;
    z-index: 10;
    right: 50px;
    bottom: 50px;
    overflow: hidden;
}

#contenantNo {
    width: 100px;
    height: 30px;
    display: block;
    position: relative;
}

.list-prog-total {
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 28px;
    line-height: 18px;
    text-align: left;
    color: #ffffff;
    width: 50px;
    height: 30px;
    position: absolute;
    left: 34px;
    top: 0;
    padding-top: 4px;
}

.list-prog-nb {
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 28px;
    line-height: 18px;
    text-align: left;
    color: #ffffff;
    width: 50px;
    height: 30px;
    display: block;
    position: relative;
}

.list-prog-nb {
    left: 0;
    transition: top 0.3s;
    transition-timing-function: ease-in-out;
}

.numeroEntrant {
    top: 10px;
}

.numeroSortantHaut {
    top: -30px;
}

.numeroSortantBas {
    top: 30px;
}


#exposant {
    position: fixed;
    top: 32%;
    left: 600px;
    transform: translateY(-32%);
    width: 120px;
    height: 120px;
    z-index: 20;
    overflow: hidden;
}

.list-prog-nb-exposant {
    display: block;
    position: absolute;
    width: 120px;
    height: 120px;
}

.list-prog-nb-exposant h5 {
    display: inline-block;
    letter-spacing: -3px;
    position: absolute;
    width: 120px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 110px;
    text-align: center;
    background: transparent;
    background: -webkit-linear-gradient(to top, #0000E1 20%, #00E0FF 80%);
    background: -moz-linear-gradient(to top, #0000E1 20%, #00E0FF 80%);
    background: linear-gradient(to top, #0000E1 20%, #00E0FF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#exposant01,
#exposant02,
#exposant03,
#exposant04,
#exposant05,
#exposant06,
#exposant07,
#exposant08,
#exposant09,
#exposant10,
#exposant11,
#exposant12,
#exposant13,
#exposant14,
#exposant15,
#exposant16,
#exposant17 {
    display: block;
    width: 120px;
    height: 120px;
    position: relative;
    transition: top 0.3s;
    transition-timing-function: ease-in-out;
}







/* Section haut icone filtre */

#iconeContainer {
    position: fixed;
    top: 40px;
    right: 50px;
    display: block;
    margin-left: 160px;
    width: 80px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.0);
    border-radius: 22px;
    z-index: 20000;
    cursor: pointer;
}

#iconeContainer.iconeRotationFond {
    background-color: rgba(255, 255, 255, 1.0);
}

#iconeFiltres {
    display: inline-block;
    position: relative;
    z-index: 300;
    width: 24px;
    height: 24px;
    margin-left: 26px;
    margin-top: 8px;
    background-image: url(images/filtresBlanc.png);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    transition: transform 0.5s, background-image 0.5s;
    cursor: pointer;
}

#iconeFiltres.iconeFilterRotation {
    transform: rotate(-90deg);
    transform-origin: center center;
    background-image: url(images/filtresCouleur.png);
}




/* Grand conteneur */

#filtresContainer {
    position: fixed;
    top: 60px;
    right: 50px;
    width: 240px;
    height: 400px;
    overflow: hidden;
    z-index: 10000;
}

#titreEtIcones {
    position: absolute;
    top: -400px;
    transition: top 0.4s;
    transition-timing-function: ease-out;
    z-index: 20;
}

#titreEtIcones.menuDescendre {
    top: 0px;
}





/* Section bas titre filtre */

#blocFiltresTitre {
    width: 240px;
    height: 400px;
    position: relative;
    right: 0px;
    overflow: hidden;
}

#blocMouvementTitre {
    width: 160px;
    position: absolute;
    z-index: 1;
    right: -50px;
    top: 50px;
    transition: right 0.3s;
    transition-timing-function: ease-out;
}

#blocMouvementTitre.titreSortie {
    right: 100px;
}

.filtre_titre h3 {
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 0.05em;
    text-align: right;
    color: #ffffff;
    cursor: pointer;
}




/* Section bas icones filtre */

#blocFiltresIcone {
    padding-top: 20px;
    margin-top: 30px;
    position: absolute;
    right: 0;
    z-index: 10;
    width: 80px;
    height: 340px;
    border-radius: 40px;
    background-color: rgb(255, 255, 255);
}


/* Photo */

#Contenant_filtre_Photo {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Photo {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Photographie.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Photo.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Photo h3.titreCouleur {
    color: transparent;
}

/* Illustration */

#Contenant_filtre_Illustration {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Illustration {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Illustration.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Illustration.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Illustration h3.titreCouleur {
    color: transparent;
}

/* Packaging */

#Contenant_filtre_Packaging {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Packaging {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Packaging.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Packaging.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Packaging h3.titreCouleur {
    color: transparent;
}

/* Edition */

#Contenant_filtre_Edition {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Edition {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Edition.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Edition.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Edition h3.titreCouleur {
    color: transparent;
}

/* Interface */

#Contenant_filtre_Interface {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Interface {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Interface.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Interface.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Interface h3.titreCouleur {
    color: transparent;
}

/* Motion */

#Contenant_filtre_Motion {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Motion {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Motion.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Motion.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Motion h3.titreCouleur {
    color: transparent;
}

/* Matriciel */

#Contenant_filtre_Matriciel {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Matriciel {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Matricielle.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Matriciel.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Matriciel h3.titreCouleur {
    color: transparent;
}

/* IdVisuelle */

#Contenant_filtre_IdVisuelle {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_IdVisuelle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_IdVisuelle.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_IdVisuelle.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_IdVisuelle h3.titreCouleur {
    color: transparent;
}

/* Publicite */

#Contenant_filtre_Publicite {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Publicite {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Publicite.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

#filtre_Publicite.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

#titre_Publicite h3.titreCouleur {
    color: transparent;
}
