
.slider .wrapper {
  overflow: hidden;
  position: relative;
  width: 750px;
  height: auto;
//   live:  height: auto;
  z-index: 1;
}

.slides {
  display: flex;
  position: relative;
  top: 0;
  left: -750px;
  width: 10000px;
}

.slides.shifting {
  -webkit-transition: left .2s ease-out;
  transition: left .2s ease-out;
}

.slide {
  width: 750px;
  height: auto;
//   live: height: auto;
  display: flex;
  flex-direction: column;
  transition: all 1s;
  position: relative;
}


.control {
  position: relative;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50px;
   margin-top: 50px;
  // box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
  user-select: none;
  
}

.prev,
.next {
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.prev {
  background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronRight-512.png);
/*   content: url(//cdn2.hubspot.net/hubfs/6008059/Corporate_Lifeline_February2020/Image/left-arrow_1left-arrow.png); */
/*    left: -20px; */
  transform: rotate(180deg);
}

.next {
  background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronRight-512.png);
/*   content: url(https://www.widewail.com/hubfs/arrow-button.png); */
/*   right: -20px; */
}

.prev:active,
.next:active {
  transform: scale(.8);
}