/* ==========================================================================
Slider core styles
===========================================================================*/

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slider-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background-color: #444;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slider {
  position: relative;
  width: 9999px;
}
.slider:before,
.slider:after {
  display: table;
  content: ' ';
}
.slider:after {
  clear: both;
}
.slider__item {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slider__item img {
  display: block;
  /*max-width: 100%;*/
  height: auto;
}
.slider__caption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  display: block;
  max-width: 660px;
  font-size: 22px;
  color: #fff;
}
.slider__caption[disabled] {
  opacity: 0;
  visibility: hidden;
}
.slider-nav {
  position: absolute;
  bottom: 20px;
  right: 24px;
  margin: 0;
  padding: 0;
  text-align: right;
  z-index: 9;
}
.slider-nav__control {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 3px;
  -webkit-transition: background .5s ease;
  -moz-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
  border-radius: 50%;
  background: #C8D7DE;
  cursor: pointer;
}

.slider-nav__control.is-active {
  width: 17px;
  height: 5px;
  background: #fff;
  border-radius: 15px;
}