/* Basic styling for the slider */
        .slider {
            width: 60%;
            margin: 0 auto;
        }

        .slider-item img {
            width: 100%;
            height: 300px;
        }
		
		.slider {
  overflow: visible;
  position: relative;
  padding: 0 !important;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-animation: ism-fadein 3s;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
@-webkit-keyframes slider-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
@-webkit-keyframes slider-loading {
  50% { left: 120px; }
}