/**
 * Styles pour les diapos affichées par l'extension flickity
 */
.carousel {
  background: #EEE;
}

.carousel-cell {
  width: 100%; /* full width */
  height: 200px;
  background: #EEE;
  /* center images in cells with flexbox */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel.is-fullscreen .carousel-cell {
  height: 100%;
}

.carousel-cell img {
  display: block;
  max-height: 100%;
}

.flickity-enabled.is-fullscreen {
  z-index: 999;
}

