/**
 * @file.
 * Provided basic styling for the Splide fullscreen.
 */

.splide.is-mounted.is-fs,
.splide.is-mounted.is-fs .splide__slider {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.splide.is-mounted.is-fs {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  height: 100vh;
  background: #000;
}

.splide.is-mounted.is-fs .splide__slider {
  position: absolute;
  overflow: hidden;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto;
}
