.jSlider-wrapper{
    width:100%;
    height: 100%;
    position:relative;
    margin:0 auto;
}

.jSlider-carousel{
    width: 100%;
    height: 100%;
	position: relative;
	overflow: hidden;
}

.jSlider-inner{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
}

 /*
  * [?] START Slider
  * *******************************************/

._slider {
  position: relative;
  overflow: hidden;
  margin-left: 15px;
}

._slider:hover 
  	._slider_next,
  	._slider_prev {
  		display: block;
  	}

._slider _next,
  _prev {
    position: absolute;
    top: 35%;
    z-index: 999;
    display: none;
    width: auto;
    height: auto;
    padding: 2% 4%;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 2em;
    opacity: 0.8;
    cursor: pointer;
  }

  .slider _next:hover, _prev:hover{
    opacity: 1;
    -webkit-transition: all 0.2s ease;
  }

  ._slider _next {
    right: 0;
  }
  
  ._slider ul {
    position: relative;
    height: 500px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  ._slider ul li {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    background: #ccc;
    display: block;
    width: 500px;
    line-height: 200px;
    text-align: center;
  }  


 /* *******************************************
  * END Slider
  * */


  /**
 * ==========================
 * Animation styles
 * 
 * Notes:
 * 1. We use z-index to position active slides in-front 
 * of non-active slides
 * 2. We set right:0 and left:0 on .slide to provide us with
 * a default positioning on both sides of the slide. This allows 
 * us to trigger JS and CSS3 animations easily
 *
 */
.jSlider-slide{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	right:0;
	left:0;
	z-index: 1;
	opacity: 0;
}

.jSlider-slide.active,
.jSlider-slide.left,
.jSlider-slide.right{
	z-index: 2;
	opacity: 1;
}


  /**
 * ==========================
 * JS animation styles
 * 
 * We use jQuery.animate to control the sliding animations
 * when CSS3 animations are not available. In order for
 * the next slide to slide in from the right, we need
 * to change the left:0 property of the slide to left:auto
 *
 */

.js-reset-left{left:auto}

/**
 * ==========================
 * CSS animation styles
 * 
 * .slide.left and .slide.right set-up
 * the to-be-animated slide so that it can slide
 * into view. For example, a slide that is about 
 * to slide in from the right will:
 * 1. Be positioned to the right of the viewport (right:-100%)
 * 2. Slide in when the style is superseded with a more specific style (right:0%)
 *
 */
.jSlider-slide.left{
	left:-100%;
	right:0;
}

.jSlider-slide.right{
	right:-100%;
	left: auto;
}

.transition .jSlider-slide.left{left:0%}
.transition .jSlider-slide.right{right:0%}

/**
 * The following classes slide the previously active
 * slide out of view before positioning behind the 
 * currently active slide
 *
 */
.transition .jSlider-slide.shift-right{right: 100%;left:auto}
.transition .jSlider-slide.shift-left{left: 100%;right:auto}

/**
 * This sets the CSS properties that will animate. We set the
 * transition-duration property dynamically via JS.
 * We use the browser's default transition-timing-function
 * for simplicity's sake
 * 
 * It is important to note that we are using CodePen's inbuilt
 * CSS3 property prefixer. For your own projects, you will need
 * to prefix the transition and transform properties here to ensure
 * reliable support across browsers
 *
 */
.transition .jSlider-slide{
	transition-property: right, left, margin;
}

/**
 * ==========================
 * Indicators
 *
 */
.indicators{
  /*width:fit-content;*/
  position: absolute;
  bottom:-10px;
  z-index: 4;
  margin:20px 60px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  left:0;
  right:0;  
  padding:0;
}

.indicators li{
	width: 25px;
	height: 5px;
	display: inline-block;
	margin: 5px;
	list-style-type: none;
    border-radius: 5px;
    cursor:pointer;
    transition:background 0.3s ease-out;
}

.ind_white li{
    border:1px solid #FFF;
}
.ind_white li.active{
    background:#FFFFFF;
    box-shadow: 0 0 14px 0 rgba(255,255,255,0.60);
}
.ind_white li:hover{background-color:#FEFEFE}

.ind_blue li{
    background-color:rgba(178, 186, 181, 0.8);
}
.ind_blue li.active{
    background:rgba(44,184,233,1);
    /*box-shadow: 0 0 4px 0 rgba(44,184,233,0.50);*/
}
.ind_blue li:hover{background-color:rgba(0,0,0,0.60)}

/**
 * ==========================
 * Arrows 
 *
 */
.arrow{
  width: 32px;
  height: 32px;
  position:absolute;
  top:45%;
  z-index:5;
  /*border-top:3px solid #fff;
  border-right:3px solid #fff;*/
  cursor:pointer;
  transition:border-color 0.3s ease-out;
  background-image: url('../images/left_arrow.svg');
}

.arrow:hover{border-color:#93278f}

.arrow-left{
  left:5px;
}

.arrow-right{
  right:5px;
  transform:rotate(180deg);
}



