/* Common to ALL designs */
.socs-features,
.socs-features * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.socs-features .img-responsive {
  display: block;
  height: auto;
  max-height: 400px;
  max-width: 100%;
}

/* Headline */
.socs-features .socs-feature > h3,
.socs-features .item > h3 {
  font-size: 24px;
  margin: 0;
}

/* Tagline */
.socs-features .socs-feature > h4,
.socs-features .item > h4 {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}

.socs-features .socs-feature > p {
  margin-top: 1em;
}

.socs-features .socs-feature-read-more {
  margin-bottom: 0;
  text-align: center;
}

/* Stacked -------------------------------------------------------------------- */
.socs-features-stacked > .socs-feature {
  margin-bottom: 2em;
  padding: .5em;
}
.socs-features-stacked.socs-features-fp > .socs-feature {
  padding: 0;
}

.socs-features-stacked.socs-features-sp > .socs-feature:nth-child(even) {
  background-color: #f7f7f7;
}

.socs-features-stacked .socs-feature-img {
  float: right;
  margin: .5em 0 1em 1em;
  max-width: 50%;
}

.socs-features-stacked.socs-features-sp .socs-feature-img.even {
  float: left;
  margin: .5em 1em 1em 0;
}

.socs-features-stacked.socs-features-fp .socs-feature-img img,
.socs-features-stacked.socs-features-fp video {
  border: 1px solid #111;
}

/* Split - 1 = 100%, 2 & 3 = 50% ---------------------------------------------- */
.socs-features-split > .socs-feature {
  margin-bottom: 2em;
}

.socs-features-split > .socs-feature.one {
  background-color: #f7f7f7;
  clear: left;
  padding: .5em;
  width: 100%;
}

.socs-features-split > .socs-feature.two,
.socs-features-split > .socs-feature.three {
  float: left;
  width: 50%;
}

.socs-features-split > .socs-feature.two {
  padding-right: 1em;
}

.socs-features-split > .socs-feature.two.bordered {
  border-right: 1px solid #ccc;
}

.socs-features-split > .socs-feature.three {
  padding-left: 1em;
}

.socs-features-split > .socs-feature.three.bordered {
  border-left: 1px solid #ccc;
}

.socs-features-split > .socs-feature.one .socs-feature-img {
  float: left;
  margin: 0 1em 1em 0;
  max-width: 50%;
}

.socs-features-split > .socs-feature.two .socs-feature-img,
.socs-features-split > .socs-feature.three .socs-feature-img {
  display: block;
  margin-bottom: 1em;
}

/* Carousel ------------------------------------------------------------------- */
#socs-feature-carousel {
  margin-bottom: 2em;
  padding-top: 35px; /* Make room for controls at top */
}

/* If carousel has a single item or not showing controls, remove top padding that made room for controls */
#socs-feature-carousel.carousel-single {
  padding-top: 0;
}

#socs-feature-carousel .carousel-indicators {
  margin: 0;
  position: static;
  width: 100%;
}

#socs-feature-carousel .carousel-indicators li {
  border-color: #999;
  text-indent: -99999em;
}

#socs-feature-carousel .carousel-indicators .active {
  background-color: #999;
  border-color: #666;
}

#socs-feature-carousel .carousel-control {
  background: transparent;
  bottom: auto;
  color: #333;
  top: 8px;
  width: 5%;
  -webkit-transition: .5s all ease;
      -ms-transition: .5s all ease;
          transition: .5s all ease;
}

#socs-feature-carousel .carousel-control:hover,
#socs-feature-carousel .carousel-control:focus {
  opacity: 1;
}

#socs-feature-carousel .carousel-inner {
  margin-bottom: 1em;
}

#socs-feature-carousel .carousel-inner .item {
  height: 450px;
  overflow: hidden;
}

@media print {
  #socs-feature-carousel .carousel-inner .item {
    height: auto !important;
  }
}

#socs-feature-carousel .item .socs-feature-img {
  float: right;
  margin: 0 0 1em 1em;
  max-width: 50%;
}

#socs-feature-carousel .socs-feature-text {
  margin-top: 1em;
}

#socs-feature-carousel .socs-feature-text-fade {
  background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, #fff 80%, #fff 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 80%, #fff 100%); /* W3C */
  height: 100px;
  position: absolute;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

#socs-feature-carousel .socs-feature-read-more {
  position: absolute;
  bottom: 0;
  width: 100px;
  left: 50%; 
  margin-left: -50px;
}

/* Vertical Scroll ------------------------------------------------------------ */
#socs-feature-scroll.als-container {
  position: relative;
  width: 100%;
}

#socs-feature-scroll .als-viewport {
  overflow: hidden;
  position: relative;
  width: 95% !important;
}

#socs-feature-scroll .als-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100% !important;
}

#socs-feature-scroll .als-item {
  border-bottom: 1px solid #ccc;
  display: block;
  float: left;
  height: 450px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media print {
  #socs-feature-scroll .als-item {
    height: auto !important;
  }
}

#socs-feature-scroll .als-item .socs-feature-img {
  float: right;
  margin: 0 0 1em 1em;
  max-width: 50%;
}

#socs-feature-scroll .socs-feature-text {
  margin-top: 1em;
}

#socs-feature-scroll .socs-feature-text-fade {
  background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, #fff 80%, #fff 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 80%, #fff 100%); /* W3C */
  height: 100px;
  position: absolute;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

#socs-feature-scroll .socs-feature-read-more {
  margin: 0 0 5px -50px;
  position: absolute;
  bottom: 0;
  width: 100px;
  left: 50%;
}

#socs-feature-scroll .als-prev,
#socs-feature-scroll .als-next {
  color: #888;
  font-size: 20px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 5%;
  -webkit-transition: .5s all ease;
      -ms-transition: .5s all ease;
          transition: .5s all ease;
}

#socs-feature-scroll .als-prev {
  top: 39%;
}

#socs-feature-scroll .als-next {
  bottom: 47%;
}

#socs-feature-scroll .als-prev:hover,
#socs-feature-scroll .als-prev:focus,
#socs-feature-scroll .als-next:hover,
#socs-feature-scroll .als-next:focus {
  color: #333;
}
