/* ****** Compass */
/* ****** Variables */
/* ****** Colors */
/* ****** Color Variables */
/* ****** Sizes */
/* ****** Fonts */
/* ****** Partials */
/* ****** Variables */
.VideoItem {
  position: relative;
  display: block;
  max-width: 1200px;
  margin: 0 auto 35px auto;
}
.VideoItem::before {
  content: "";
  position: absolute;
  height: 125px;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
}
.VideoItem-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}
.VideoItem-info {
  position: absolute;
  padding: 0 36px 32px;
  left: 0;
  bottom: 0;
}
.VideoItem:hover .VideoItem-icon > svg {
  transform: scale(1.25);
}
.VideoItem-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.VideoItem-icon > svg {
  transition: transform 250ms;
}
.VideoItem-title, .VideoItem-desc {
  color: white;
}
.VideoItem-title {
  font-size: 1.875em;
}
.VideoItem-desc {
  font-size: 17px;
  margin: 0;
  width: 940px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/** Latest Episode Override **/
.LatestEpisode .VideoItem {
  margin-bottom: 0;
}
.LatestEpisode .VideoItem-icon {
  margin: 0;
}
.LatestEpisode .VideoItem-icon svg {
  width: 75px;
}

/* ****** Functions */
/* ****** Local Variables */
.ContentCarousel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  width: 1200px;
  margin: 0 auto 20px;
  padding: 0 0 20px 0;
  position: relative;
}
.ContentCarousel-container {
  margin: 0 auto;
  position: relative;
  width: 1049px;
}
.ContentCarousel-logo {
  margin-top: 40px;
  margin-bottom: 25px;
  max-width: 334px;
}
.ContentCarousel-items {
  position: absolute;
  top: 0;
  left: 0;
}
.ContentCarousel-pane {
  height: 185px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 1049px;
}
.ContentCarousel-item {
  float: left;
  padding-right: 34px;
  position: relative;
}
.ContentCarousel .VideoItem {
  width: 361px;
}
.ContentCarousel .VideoItem::before {
  width: 327px;
}
.ContentCarousel .VideoItem-info {
  padding: 0 20px 20px;
}
.ContentCarousel .VideoItem-title {
  margin: 0;
  font-size: 1.125rem;
  width: 285px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.ContentCarousel .VideoItem-thumbnail {
  border-radius: 0;
}
.ContentCarousel .VideoItem-icon > svg {
  transform: scale(0.4);
}
.ContentCarousel .VideoItem:hover .VideoItem-icon > svg {
  transform: scale(0.5);
}

.ContentCarousel-control {
  display: block;
  width: 34px;
  height: 140px;
  left: -34px;
  position: absolute;
  top: 22.5px;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  outline: 0;
  text-indent: -999em;
  z-index: 20;
}
.ContentCarousel-control::before {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  content: ' ';
  left: 34px;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  top: -22.5px;
  width: 100px;
  height: 185px;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.ContentCarousel-control.disabled, .ContentCarousel-control.disabled::before, .ContentCarousel-control.disabled::after {
  display: none;
  opacity: 0;
  visibility: hidden;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.ContentCarousel-next {
  left: auto;
  right: -34px;
}
.ContentCarousel-next::before {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  left: auto;
  right: 34px;
}

.ContentCarousel--firstPage .ContentCarousel-previous,
.ContentCarousel--lastPage .ContentCarousel-next {
  opacity: 0;
}

.ContentCarousel--firstAndOnlyPage .ContentCarousel-control {
  opacity: 0;
}

.ContentCarousel:hover .ContentCarousel-control::before {
  opacity: 0;
  width: 0;
}
.ContentCarousel:hover .ContentCarousel-control::after {
  opacity: 1;
  z-index: 30;
}
.ContentCarousel:hover .ContentCarousel-control:disabled {
  opacity: 0;
}
