<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*----------------------------*/
/*---- HIGHLIGHTS STYLES -----*/
/*----------------------------*/
#highlights-lightbox {
  display: none;
  position: fixed;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 0;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#highlights-container,
#non-exclusive-container,
#extras-container,
#picks-container {
  position: relative;
  max-width: 1240px;
  padding: 0px 40px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.player-container {
  max-width: 100%;
  width: 800px;
}
.player-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
iframe#player {
  height: 100% !important;
  width: 100% !important;
}
#highlights-left,
#highlights-right,
#non-exclusive-left,
#non-exclusive-right,
#extras-left,
#extras-right,
#picks-left,
#picks-right {
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: 30px;
  background-color: #0000;
  width: 30px;
  text-align: center;
  line-height: 24px;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38%;
  cursor: pointer;
}
#highlights-left:hover,
#highlights-right:hover,
#non-exclusive-left:hover,
#non-exclusive-right:hover,
#extras-left:hover,
#extras-right:hover,
#picks-left:hover,
#picks-right:hover {
  background-color: #e6e8e8 !important;
}
#highlights-left,
#non-exclusive-left,
#extras-left,
#picks-left {
  left: 10px;
  background-image: url(https://tln.ca/wp-content/fontawesome/svgs/solid/chevron-left.svg);
}
#highlights-right,
#non-exclusive-right,
#extras-right,
#picks-right {
  right: 10px;
  background-image: url(https://tln.ca/wp-content/fontawesome/svgs/solid/chevron-right.svg);
}

.highlight-box,
.non-exclusive-box,
.extras-box,
.picks-box {
  background-color: #102d4d;
  margin: 10px;
  width: calc(33.33% - 20px);
  float: left;
  height: auto;
  flex-shrink: 0;
}
.highlight-thumbnail img,
.non-exclusive-thumbnail img,
.extras-thumbnail img,
.picks-thumbnail img {
  height: auto;
  width: 100%;
}
.highlight-box h3,
.non-exclusive-box h3,
.extras-box h3,
.picks-box h3 {
  font-family: sans-serif;
  font-size: 16px;
  padding: 0;
  margin: 10px;
  color: #fff;
  height: 60px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.highlight-box:hover,
.non-exclusive-box:hover,
.extras-box:hover,
.picks-box:hover {
  cursor: pointer;
  filter: saturate(1.1);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(1.01);
}

@media only screen and (max-width: 768px) {
#highlights-left,
#non-exclusive-left,
#extras-left,
#picks-left {
  left: 5px;
}
#highlights-right,
#non-exclusive-right,
#extras-right,
#picks-right {
  right: 5px;
}

  #highlights-container,
  #non-exclusive-container,
  #extras-container,
  #picks-container {
    position: unset;
    overflow-y: hidden;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: both mandatory;
    flex-wrap: nowrap;
    justify-content: start;
    gap: 40px;
  }
  .highlight-box,
  .non-exclusive-box,
  .extras-box,
  .picks-box {
    min-width: 100%;
    scroll-snap-align: center;
    margin: auto;
  }
  .highlight-title, .non-exclusive-title {
    display: none !important;
  }
}</pre></body></html>