
.demo-1 { max-width:600px; height:auto;margin:0px auto; }
.demo-2 { max-width:960px; height:auto;margin:0px auto;}

.core-slider {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;  border-radius:20px;

}

.core-slider_viewport {
  position: relative;
  overflow: hidden;  border-radius:20px;

}

.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);
}

.core-slider_item { float: left; }

.core-slider_item img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius:30px;
  border: 2px solid #F0F0F0; margin-right:20px; padding: 4px;
}

.core-slider_nav.is-disabled { display: none; }

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

.core-slider_control-nav-item {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  background: #bdbaba;
  margin-bottom: 10px;
  /*editing able it to run again*/
}

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

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

.core-slider_arrow {
  position: absolute;
  top: 85%;
  margin-top: -25px;
  width: 10px;
  height:39px;
  z-index: 999;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
  
}

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

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

.core-slider_arrow__right {
  right: 10px;
  background: url(../images/arrow_right.png) no-repeat 2px 2px;
  width: 27px;
  height: 32px;
  

}

.core-slider_arrow__left {
  left: 10px;
 background: url(../images/arrow_left.png) no-repeat 2px 2px;
 width: 27px;
  height: 32px;
}

.core-slider__fullwidth .core-slider_viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  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: 100px;
  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: 350px;
  margin: 0 auto;
}

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

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