.image-cycler {
  width: 100%;
}
.image-cycler .image-cycler__slides {
  background-size: contain;
  transition: background-image 1s ease-in-out;
}
.image-cycler .image-cycler__slides > img {
  width: 100%;
  opacity: 0;
}
.image-cycler .image-cycler__bullets {
  position: absolute;
  width: 100%;
  margin: -30px auto 0;
  text-align: center;
  z-index: 999;
}
.image-cycler .image-cycler__bullet {
  display: inline-block;
  background-color: hsla(0,0%,100%,.5);
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(250,250,250,0.8);
  transition: all .3s ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0,0,0,0.1);
  margin: 0 1em;
}
.image-cycler .image-cycler__bullet.active {
  background-color: rgba(105, 44, 144,0.7);
}