/* ----- SLIDER ----- */

.slider {
  display: block;
  border: 1px solid rgba(225, 225, 225, .7) !important;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .3);
  overflow: hidden;
  position: relative;
  margin: 20px auto;
  max-height: 300px;
  width: 100%;
  min-width: 200px;
  height: 100%;
  min-height: 200px;
}

.slide {
  background-size: cover;
  background-position: center center;
  width: 100%;
  min-width: 200px;
  min-height: 200px;
  height: 100%;
  max-height: 300px;
  position: absolute;
}

.slide.active {
  z-index: 100;
  display: block;
}

.slide.next {
  z-index: 50;
  display: block;
}

.dots {
  position: absolute;
  z-index: 200;
  width: 100%;
  text-align: center;
  bottom: 10px;
  height: 15px;
}

.dots span {
  background: rgba(0, 0, 0, .2);
  display: inline-block;
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, .3);
  width: 9px;
  height: 9px;
  border-radius: 9px;
  margin: 3px;
}

.dots span.active {
  background: rgba(0, 0, 0, .8);
}