/* Position the image container (needed to position the left and right arrows) */


/* Hide the images by default */
.mySlides2 {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 175px;
  width: auto;
  padding: 10px;
  color: rgb(220,220,220);
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  z-index:1;   
}

/* Position the "prev button" to the left */
.prev {
  left: 0;
  border-radius: 2px 0 0 2px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #6633FF;
  padding: 8px 8px;
  margin-top:-5px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 12.5%;  
  text-align:center;  
  margin-bottom:2px;   
}

/* Add a transparency effect for thumnbail images */
.demo2 {
  opacity: 0.6;
}

.active, .demo2:hover {
  opacity: 1;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}







/* Affichage de la loupe */
.laloupe {
  position: relative;	
  color: #f2f2f2;
  padding: 2px 2px;
  right: 1px;

}