.mslider > * {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

body {
  background-color: black;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.slider {
  display: flex;
}

.slider.is-animating {
  transition: transform 400ms cubic-bezier(0.5, 0, 0.5, 1);
}

.slider-pagination {
  bottom: 6.25%;
  left: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  width: 100%;
}
.slider-pagination > * {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
  display: inline-block;
  height: 6px;
  margin-left: 4px;
  margin-right: 4px;
  transition: background-color 250ms;
  width: 6px;
}
.slider-pagination > *.is-active {
  background-color: rgba(255, 255, 255, 0.75);
}

.slider-panel {
  transition: ease all 0.3s;
  opacity: 0;
  width: 100%;
}
.slider-panel:not(:first-child) {
  display: none;
}
.slider-panel img,
.slider-panel a {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  max-width: 100%;
  width: 100%;
}

.has-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
