.mySlides {
  display: none;
}
img {
  vertical-align: middle;
}

.image_actualite {
  width: 180px;
}

/* Slideshow container */
.slideshow-container {
  width: 180px;
  position: relative;
  top: 32px;
  margin: auto;
  height: 300px;
  opacity: 1;
}

/* Caption text */
.text {
  color: #000000;
  font-size: 11px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 11px;
  width: 11px;
  margin: 0 1px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

/* Très petit écran */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

/* === Patch Responsive propre === */
@media only screen and (max-width: 600px) {
  .slideshow-container {
     width: 25%;
    height: auto;
    position: fixed;         /* reste en place au scroll */
    top: 10px;               /* espace avec le haut de la page */
    right: 10px;             /* collé à droite */
    z-index: 9999;           /* au-dessus des autres éléments */
    margin: 0;
  }

  .image_actualite {
    width: 100%;
    height: auto;
  }

  .text {
    font-size: 11px;
  }

  .dot {
    height: 8px;
    width: 8px;
  }
}
