/* Loader */
@import url("loader.css");

#conteneurGalerie {
    width:99vw;
    margin:0 auto;
}
#galerie {
    /* min-height: 100vw; */
    min-width: 99vw;
    position:relative; 
    overflow:hidden;
    user-drag: none; 
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}	
#galerie .overlayGalerieSlides {
    background-color: rgba(0, 0, 0, 0);
    /* opacity: 0; */          
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%; 
    /*z-index: 1; */
}	
#galerie .galerieSlides {
    height: 100%;
    position: absolute;
}
#galerie .slideGalerie {
    height:100%; 
    float:left;
}	
#galerie .slideGalerie h3 {
	display:none;
}
#galerie .slideGalerie img {
    pointer-events: none;
    width: 99vw;
}
#galerie .slideGalerie img::selection {
    background: transparent;
}
#galerie .slideGalerie span, #galerie .imageCacheGalerie {
	display: none;
}

.navigation-galerie {
    margin-top: 10px;
}	
.navigation-galerie .precedent, .navigation-galerie .suivant, .navigation-galerie .description {
	display:inline-block;
	font-size: 25px;
}
.navigation-galerie .precedent, .navigation-galerie .suivant {
	width:6%;
	cursor:pointer;
}
.navigation-galerie .suivant {
	float:right;
	text-align: right;
}
.navigation-galerie .description {
    font-size: 20px;
    line-height: 25px;
    padding-top: 5px;
    text-align: center;
    vertical-align: top;
    width: 87%;
}
.navigation-galerie i {
	color:#000000;
    font-size: 1.2em;
}

.specialTopGalerie {
    position: absolute;
    top: 30px;
}

/* Responsive */
@media only screen and (min-width:1200px){
    /* Grand ecrans */
    #conteneurGalerie {
        max-width: 970px;
        margin: 0 auto 15px;
    }
    #galerie {
        /* min-height: 900px; */
        min-height: 700px;
        min-width: 970px;
    }
    #galerie .slideGalerie img {
        width: 970px;
    }
} 
@media only screen and (min-width:960px) and (max-width:1199px){
    /* Web */
    #conteneurGalerie {
        max-width: 720px;
    }
    #galerie {
        /* min-height: 720px; */
        min-width: 720px;
    }
    #galerie .slideGalerie img {
        max-width: 720px;
        width: auto;
    }
}
@media screen and (min-width:720px) and (max-width:959px) {
    /* Tablette */
    #conteneurGalerie {
        max-width: 490px;
    }
    #galerie {
        /* min-height: 540px; */
        min-width: 490px;
        width: 490px;
    }
    #galerie .slideGalerie {
        /* width: 90vw; */
    }
    #galerie .slideGalerie img {
        max-width: 490px;
        width: 100%;
    }
    .navigation-galerie {
        max-width: 490px;
    }
}
@media screen and (max-width:719px) {
    /* Mobile */
    #conteneurGalerie {
        width: auto;
    }
    #galerie {
        min-width: 100vw;
        /*min-height: 40vh;*/
    }
    #galerie .slideGalerie img {
        width: 100vw;
    }
    .navigation-galerie .description {
        width: 78vw;
    }
}