/*
 * WallopSlide has been built by Pedro Duarte.
 *
 * WallopSlide is free software released under the MIT licence.
 *
 * See the `COPYING.MIT` file or <http://opensource.org/licenses/MIT>
 * for more details.
 */
.wallop-slider {
  width: 100%;
}

.wallop-slider__list {
  list-style: none;
  position: relative;
  overflow: hidden;
}

.wallop-slider__item {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.wallop-slider__item img {
  display: block;
  width: 100%;
}

.wallop-slider__item--current {
  display: block;
  position: static;
}
