.strips {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
}

.strips a:hover {
  text-decoration: none;
}

.strips .scroller {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  width: 50px;
  background: black;
  z-index: 50;
  align-self: stretch;
  height: 168px;
  color: white;
  font-size: 2rem;
  opacity: 0;
}

.strips .scroller:hover {
  opacity: 1;
}

.strips .scrollerLeft {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 37%, transparent 71%);
}

.strips .scrollerRight {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 37%, transparent 71%);
}

.strips .strips-strip {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-bottom: 1rem;
}

.strips .strips-strip .strips-strip-tobBar {
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: .2rem;
}

.strips .strips-strip .strips-strip-tobBar .strips-strip-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
  text-decoration: none;
  cursor: default;
}

.strips .strips-strip .strips-strip-tobBar .strips-strip-title[href] {
  cursor: pointer;
}

.strips .strips-strip .strips-strip-tobBar .strips-strip-viewAllBtn {
  font-size: .6rem;
  padding: 3px;
  text-align: center;
  display: inline-block;
}

.strips .strips-strip .strips-strip-videos {
  display: -webkit-box;
  display: flex;
  overflow: hidden;
}

.strips .strips-strip .strips-strip-videos .video {
  display: -webkit-box;
  display: flex;
  width: 300px;
  flex-shrink: 0;
  margin-right: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-size: .7rem;
  background-size: cover;
}

.strips .strips-strip .strips-strip-videos .video a:focus {
  text-decoration: none;
}

.strips .strips-strip .strips-strip-videos .video .video-image {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  height: 168px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.strips .strips-strip .strips-strip-videos .video .video-image .watched {
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 3px;
  font-size: .5rem;
}

.strips .strips-strip .strips-strip-videos .video .video-image.shadow:after {
  position: absolute;
  content: '\f078';
  font-family: FontAwesome;
  line-height: 2em;
  z-index: 1;
  bottom: 0;
  width: 100%;
  background: transparent;
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(transparent, black);
  /* Standard syntax (must be last) */
  color: white;
  text-align: center;
  padding: 0 0.5em;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  color: white;
  -webkit-box-flex: 1;
  flex-grow: 1;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  top: auto;
  right: 0;
  width: 100%;
  height: auto;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info h2, .strips .strips-strip .strips-strip-videos .video .video-image .info h3, .strips .strips-strip .strips-strip-videos .video .video-image .info h4 {
  font-size: inherit;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info h3.title, .strips .strips-strip .strips-strip-videos .video .video-image .info h2.title {
  height: 1.6em;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info .title {
  background: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0.3rem 0.5rem 0 0.5rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info .details {
  height: 1.6em;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0 0.5rem 0.3rem 0.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info .details .channel {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info .details .yearsSubjects {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-flex: 1;
  flex-grow: 1;
  margin: 0 .4rem 0 0;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info .details .yearsSubjects.col-10 {
  max-width: 80%;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info .details .duration {
  flex-shrink: 0;
}

.strips .strips-strip .strips-strip-videos .video .video-image .info .details .inline-separator {
  margin: 0 .4rem;
}

.strips .strips-strip .strips-strip-videos .video .video-image .synopsis-overlay {
  line-height: 1.2em;
  transition: all 1s ease;
  height: auto;
  padding: 0 0.5rem 0.3rem 0.5rem;
  display: none;
  color: #dedede;
  font-size: 1em;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  background: rgba(0, 0, 0, 0.7);
}

.strips .strips-strip .strips-strip-videos .video .video-image .synopsis-overlay.show {
  display: block;
}

.strips .strips-strip .strips-strip-videos .video .favorite {
  padding: .2rem;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: flex;
}

.strips .strips-strip .strips-strip-videos .video .favorite .count {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.stripPage .stripPage-links {
  margin-bottom: 1.5rem;
  display: block;
}

.stripPage .stripPage-header {
  margin: 0 0 1rem;
  padding: 1rem;
  background: white;
  margin-bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.stripPage .stripPage-header .stripPage-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.stripPage .stripPage-videos {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.stripPage .stripPage-videos .video {
  display: -webkit-box;
  display: flex;
  width: 300px;
  flex-shrink: 0;
  margin-right: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-size: .7rem;
  background-size: cover;
  width: 256px;
  overflow: hidden;
  margin-right: 0;
  margin-bottom: 2rem;
}

.stripPage .stripPage-videos .video a:focus {
  text-decoration: none;
}

.stripPage .stripPage-videos .video .video-image {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  height: 168px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.stripPage .stripPage-videos .video .video-image .watched {
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 3px;
  font-size: .5rem;
}

.stripPage .stripPage-videos .video .video-image.shadow:after {
  position: absolute;
  content: '\f078';
  font-family: FontAwesome;
  line-height: 2em;
  z-index: 1;
  bottom: 0;
  width: 100%;
  background: transparent;
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(transparent, black);
  /* Standard syntax (must be last) */
  color: white;
  text-align: center;
  padding: 0 0.5em;
}

.stripPage .stripPage-videos .video .video-image .info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  color: white;
  -webkit-box-flex: 1;
  flex-grow: 1;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  top: auto;
  right: 0;
  width: 100%;
  height: auto;
}

.stripPage .stripPage-videos .video .video-image .info h2, .stripPage .stripPage-videos .video .video-image .info h3, .stripPage .stripPage-videos .video .video-image .info h4 {
  font-size: inherit;
}

.stripPage .stripPage-videos .video .video-image .info h3.title, .stripPage .stripPage-videos .video .video-image .info h2.title {
  height: 1.6em;
}

.stripPage .stripPage-videos .video .video-image .info .title {
  background: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0.3rem 0.5rem 0 0.5rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stripPage .stripPage-videos .video .video-image .info .details {
  height: 1.6em;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0 0.5rem 0.3rem 0.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stripPage .stripPage-videos .video .video-image .info .details .channel {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stripPage .stripPage-videos .video .video-image .info .details .yearsSubjects {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-flex: 1;
  flex-grow: 1;
  margin: 0 .4rem 0 0;
}

.stripPage .stripPage-videos .video .video-image .info .details .yearsSubjects.col-10 {
  max-width: 80%;
}

.stripPage .stripPage-videos .video .video-image .info .details .duration {
  flex-shrink: 0;
}

.stripPage .stripPage-videos .video .video-image .info .details .inline-separator {
  margin: 0 .4rem;
}

.stripPage .stripPage-videos .video .video-image .synopsis-overlay {
  line-height: 1.2em;
  transition: all 1s ease;
  height: auto;
  padding: 0 0.5rem 0.3rem 0.5rem;
  display: none;
  color: #dedede;
  font-size: 1em;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  background: rgba(0, 0, 0, 0.7);
}

.stripPage .stripPage-videos .video .video-image .synopsis-overlay.show {
  display: block;
}

.stripPage .stripPage-videos .video .favorite {
  padding: .2rem;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: flex;
}

.stripPage .stripPage-videos .video .favorite .count {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.stripPage .stripPage-videos .video .video-image {
  height: 143.359px;
}

.stripPage .stripPage-videos .video .video-image img {
  height: 143.359px;
}

@media (max-width: 575px) {
  .fa.add-to-playlist-btn {
    font-size: 4em;
  }
}
