.product-slider {
  /* Hide the given container which contains the products data */
  display: none;
}

.slider-container {
  width: 100%;
  height: 400px;  /* options.previewHeight */
  position: relative;
}

.slider-container .slider-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;  /* Replace by a option */
  background-image: none;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.slider-container .slider {
  display: table;
  width: 300px;  /* options.slideWidth */
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 11;  /* options.zIndex + 1 */
}

.slider-container .slide {
  width: 100%;
  max-height: 100%;
  display: none;
  vertical-align: middle;
  padding: 0;
}

/* Set to table-cell after fading in by adding this class */
.slider-container .slide.active {
  display: table-cell !important;
  padding: 0 1rem;
}

.slider-container .description {
  position: absolute;
  color: #EEE;
  bottom: 10px;
  left: 10px;
  padding: 10px;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11;  /* options.zIndex + 1 */
}

.slider-container .description a {
  color: #EEE;
  text-decoration: none;
}

.slider-container .description a:hover {
  color: white;
  text-shadow: white 0px 0px 8px;
}

.slider-container .slide img {
  max-height: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.4) 5px 5px 8px;
  border: rgba(0, 0, 0, 0.3) 1px solid;
}

.slider-bar {
  margin: 20px 0;
  height: 200px;  /* options.navbarHeight */
}

.slider-bar .slide-info {
  height: 100%;
}

.slider-bar .slide-info a {
  opacity: 0.5;
  height: 100%;
  display: block;
}

.slider-bar .slide-info a.active {
  opacity: 1;
}

.slider-bar .slide-info img {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
