.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8352941176);
  z-index: 100000;
}
.modal .closeModal {
  position: fixed;
  z-index: 10000;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url("/ressources/images/icons/cross.svg");
  cursor: pointer;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1000px) {
  .previous {
    background-image: url("/ressources/images/icons/previous.svg");
    background-position: center;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    position: fixed;
    top: 50%;
    left: 5%;
    height: 50%;
    width: 10%;
    transform: translateY(-50%);
  }
  .previous:hover {
    background-size: 80px 80px;
    cursor: pointer;
  }
  .next {
    background-image: url("/ressources/images/icons/next.svg");
    background-position: center;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    position: fixed;
    top: 50%;
    right: 5%;
    width: 10%;
    height: 50%;
    transform: translateY(-50%);
  }
  .next:hover {
    background-size: 80px 80px;
    cursor: pointer;
  }
  .zonePhoto {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 12/9;
    overflow: hidden;
  }
  .zonePhoto .photoDiaporama {
    height: 100%;
    display: none;
    aspect-ratio: 12/9;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .zonePhoto .photoDiaporama img {
    height: 100%;
    border-radius: 20px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 999px) {
  .previous {
    background-image: url("/ressources/images/icons/previous.svg");
    background-position: center;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    position: fixed;
    top: 95%;
    left: 5%;
    height: 10%;
    width: 10%;
    transform: translateY(-50%);
  }
  .previous:hover {
    background-size: 80px 80px;
    cursor: pointer;
  }
  .next {
    background-image: url("/ressources/images/icons/next.svg");
    background-position: center;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    position: fixed;
    top: 95%;
    right: 5%;
    width: 10%;
    height: 10%;
    transform: translateY(-50%);
  }
  .next:hover {
    background-size: 80px 80px;
    cursor: pointer;
  }
  .zonePhoto {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 85%;
    aspect-ratio: 12/9;
    overflow: hidden;
  }
  .zonePhoto .photoDiaporama {
    display: none;
    width: 90%;
    height: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .zonePhoto .photoDiaporama img {
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 20px;
    width: 100%;
    height: 100%;
  }
}/*# sourceMappingURL=styleDiapo.css.map */