.image_slider_pro {
  position: relative;
  display: none;
}
.image_slider_pro.showing {
  display: block;
}
.image_slider_pro .slides {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.image_slider_pro .slides .slide {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-size: cover;
  color: #fff;
  font-size: 40px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.image_slider_pro .slides .slide.showing {
  opacity: 1;
  z-index: 2;
}
.image_slider_pro .slides .slide img {
  display: block;
  width: 100%;
  margin: 0px auto;
}
.image_slider_pro .buttons {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.image_slider_pro .buttons .control {
  position: absolute;
  width: 10%;
  min-width: 4.2em;
  height: 100%;
  z-index: 3;
}
.image_slider_pro .buttons .control.previous {
  left: 0;
  top: 0;
}
.image_slider_pro .buttons .control.previous button:after {
  background-position: -5% 0;
}
.image_slider_pro .buttons .control.next {
  right: 0;
  top: 0;
}
.image_slider_pro .buttons .control.next button:after {
  background-position: 105% 0;
}
.image_slider_pro .buttons .control.pause {
  left: 43%;
  top: 0;
}
.image_slider_pro .buttons .control.pause button:after {
  background-position: 50% 0;
}
.image_slider_pro .buttons .control button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-color: transparent;
  opacity: 0;
  cursor: pointer;
}
.image_slider_pro .buttons .control button:after {
  position: absolute;
  width: 2.8em;
  height: 2.8em;
  left: 50%;
  top: 50%;
  margin-top: -1.4em;
  margin-left: -1.4em;
  background-color: #fff;
  background-image: url("img/arrows.svg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  content: "";
  color: #111;
  font-weight: 800;
  text-align: center;
  text-indent: 0;
  line-height: 2.8em;
  border-radius: 50%;
  box-shadow: 0 3px 5px #959595;
}
.image_slider_pro .buttons .control button:hover {
  opacity: 0.8;
}
