@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);	

.slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;

}
.slider {
  position: relative;
  overflow: hidden;
   margin: 0 auto;
  border-radius: 4px;
  width: 100%;
  max-width: 100vw;
  height: auto;
  object-fit: cover;
}
/* 
.slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: auto;
  list-style: none;
}

.slider ul li {
  max-width: 1600px;
  float: left;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
  text-align: center;
  line-height: 300px;
  object-fit: cover;
  
}

.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
} */






.slider__image {
  max-width: 1600px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}





a.control_prev {
  box-sizing: border-box;
  border: 1px solid #fff;
  bottom: 0;
  z-index: 999;
  display: block;
  width: 66px;
  height: 66px;
  background: url('./images/arrow_left.png');
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
  border-top-left-radius: 3px;
}

a.control_next {
  box-sizing: border-box;
  z-index: 999;
  display: block;
  width: 66px;
  height: 66px;
  background-color: #FCB427;
  background-image: url('./images/arrow_right.png');
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
  border-top-right-radius: 3px;
}

a.control_prev:hover {
  background-color: #FCB427;
  border-color: #FCB427;
  transition: 0.5s;
  background-image: url('images/arrow_left.png');
}

a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;

}

a.control_prev {
  border-radius: 0 2px 2px 0;
}

a.control_next {
  /* right: 0; */
  border-radius: 2px 0 0 2px;
}


.slider__control-wrapper {
  display: flex;
  max-width: 132px;
  flex-direction: row-reverse;
  position: absolute;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: -66px;
  bottom: 0;

}