.core-slider {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color:#000;
}

.core-slider_viewport {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.core-slider_list {
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  list-style:none;
}
.core-slider_list li{
  list-style:none;
  overflow: hidden;
  display: flex;
   justify-content: center;
   align-items: center;
}

.core-slider_list li img{
	transition: all .2s;
  	opacity:.9;
	display: block;
  	width: auto;
  	height: 400px;
  	transition: all .2s;
}
.core-slider_item {
	float: left; 
	position: relative;
	
}
.core-slider_item a:hover img {
  	transition: all .2s;
	opacity:1;
}

.core-slider_list li a span{
	display: block;
	width:50%;
	position:absolute;
	z-index:10;
	color: #662482;
	bottom:30px;
	/*text-shadow: 2px 2px 2px #000000;*/
	left: 30px;
	font-size:1.3em;
	opacity:1;
	border-left: solid 5px #f09;
	padding-left:15px;
	cursor:pointer;
}
.core-slider_nav.is-disabled { display: none; }

.core-slider_control-nav {
  position: absolute;
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 15px;
  text-align: center;
}

.core-slider_control-nav-item {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  background: #f09;
}

.core-slider_control-nav-item:hover { opacity: 0.9; }

.core-slider_control-nav-item.is-active {
  opacity: 0.3;
  cursor: default;
}

.core-slider_arrow {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 26px;
  height: 49px;
  z-index: 999;
  cursor: pointer;
}

.core-slider_arrow.is-disabled {
  cursor: default;
  opacity: 0.5;
}

.core-slider_arrow:hover { opacity: 0.5; }

.core-slider_arrow__right {
  right: 20px;
  background: url(images/next.png) no-repeat 0 0;
}

.core-slider_arrow__left {
  left: 20px;
  background: url(images/next.png) no-repeat 0 0;
}

.core-slider__fullwidth .core-slider_viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0px;
  left: 0;
  background: url(images/dot.png) repeat 0 0;
}

.core-slider__carousel { overflow: hidden; }

.core-slider__carousel::before, .core-slider__carousel::after {
  content: "";
  width: 150px;
  position: absolute;
  top: -5px;
  bottom: -5px;
  z-index: 200;
}

.core-slider__carousel::before {
  left: -5px;
  background: -webkit-linear-gradient(left, #fff 10%, transparent);
  background: linear-gradient(to right, #fff 10%, transparent);
}

.core-slider__carousel::after {
  right: -5px;
  background: -webkit-linear-gradient(right, #fff 10%, transparent);
  background: linear-gradient(to left, #fff 10%, transparent);
}

.core-slider__carousel .core-slider_viewport {
  overflow: visible;
  width: 250px;
  margin: 0 auto;
}

.core-slider__carousel .core-slider_arrow__left { left: 70px; }

.core-slider__carousel .core-slider_arrow__right { right: 70px; }
