/**
* container
*/

.featuredcontent-carousel {
  max-width: 1500px;
  background: #fff;
  margin: auto;
  padding: 0;
  overflow: hidden;
}
ul.featuredcontent.slider {
  position: relative;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  width: 99999px;
}

/**
* slides
*/

ul.featuredcontent.slider li {
  position: relative;
  float: left;
  width: 500px;
  height: 281px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style: none;
}
ul.featuredcontent.slider li img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/**
* shades
*/

ul.featuredcontent.slider li .shade {
  background: #000;
  opacity: 0.4;
  height: 100%;
  width: 100%;
  position: absolute;
  top:0;
  left: 0;
  z-index: 10;
}

ul.featuredcontent.slider li.active .shade,
ul.featuredcontent.slider li:hover .shade {
  opacity: 0;
}

/**
* mobile
*/

@media only screen and (max-width: 500px) and (min-width: 0px) {
  .featuredcontent-carousel {
    width: 350px;
    margin-right: auto;
    margin-left: auto;
  }
  ul.featuredcontent.slider li {
    width: 350px;
    height: 198px;
  }

}
