.Slider {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.Slider__list {
  display: -webkit-box!important;
  display: -webkit-flex!important;
  display: -moz-box!important;
  display: -ms-flexbox!important;
  display: flex!important;
  margin: 0!important;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  list-style: none;
  padding: 0!important;
}
.Slider__list.__ani {
  transition: -webkit-transform ease 0.25s;
  -webkit-transition: -webkit-transform ease 0.25s;
  -o-transition: -o-transform ease 0.25s;
  -moz-transition: transform ease 0.25s, -moz-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s, -moz-transform ease 0.25s, -o-transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
}
.Slider__list > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.Slider__list.__possible_swipe {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.Slider__pagination {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0!important;
  z-index: 2;
}
.Slider__pagination li {
  height: 0.75em;
  width: 0.75em;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background-color: #fff;
  margin: 0 0.5em;
  cursor: pointer;
  border: 1px solid #d7d7d7;
}
.Slider__pagination li.__active {
  background-color: #3ba6d2;
}
.Slider_parent {
  overflow: hidden;
  max-width: 100%;
}
