@charset "UTF-8";
/* Defines common breakpoint targets. */
.hover-disclosure__header {
  cursor: pointer;
}

.hover-disclosure__body[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
}
.hover-disclosure__body[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.filter-icon__circle1, .filter-icon__circle2, .filter-icon__circle3 {
  transition: transform 200ms ease-in-out;
}
.filter-icon__circle2 {
  transition-delay: 50ms;
}
.filter-icon__circle3 {
  transition-delay: 100ms;
}
.filter-icon.active .filter-icon__circle1 {
  transform: translateX(40%);
}
.filter-icon.active .filter-icon__circle2 {
  transform: translateX(-30%);
}
.filter-icon.active .filter-icon__circle3 {
  transform: translateX(30%);
}

.watch-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.watch-feature__video-container {
  width: 100%;
  transition: grid-template-columns 300ms ease-in-out;
}
@media screen and (min-width: 64rem) {
  .watch-feature__video-container {
    display: grid;
    grid-template-columns: minmax(0, calc(100% - 45px)) minmax(0, 45px);
  }
}
@media screen and (min-width: 64rem) {
  .watch-feature__video-container.sidebar-open {
    grid-template-columns: minmax(0, 67.5%) minmax(0, 32.5%);
  }
}
.watch-feature__video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 0;
  aspect-ratio: 16/9;
  transition: all 300ms ease-in-out;
}
@supports not (aspect-ratio: 16/9) {
  .watch-feature__video-wrapper {
    padding-top: 56.25%;
  }
}
.watch-feature__video-wrapper.boxcast {
  padding-top: 0;
}
.watch-feature__video-wrapper iframe,
.watch-feature__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.watch-feature__video,
.watch-feature .ark-video-embed {
  width: 100%;
}
@media screen and (min-width: 64rem) {
  .watch-feature__sidebar {
    overflow: hidden;
    position: relative;
    margin-left: 5px;
    width: 100%;
  }
}
.watch-feature__transcript-section {
  border-bottom: 1px solid #002A4A;
  width: 100%;
}
.watch-feature__transcript-row {
  width: 100%;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 64rem) {
  .watch-feature__transcript-row {
    width: 70%;
  }
}
@media screen and (min-width: 80rem) {
  .watch-feature__transcript-row {
    width: 800px;
  }
}
@media screen and (min-width: 30rem) {
  .watch-feature__transcript-row {
    display: flex;
    justify-content: space-between;
  }
}
.watch-feature__podcast-icon, .watch-feature__transcript-icon {
  width: 50px;
  margin-right: 0.75rem;
}
.watch-feature__podcast, .watch-feature__transcript {
  color: #002A4A;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-in;
  transform: translate3d(0, 0, 0);
  font-family: "Montserrat-Medium", sans-serif;
  text-transform: uppercase;
}
.watch-feature__podcast:visited, .watch-feature__transcript:visited {
  color: #002A4A;
}
.watch-feature__podcast:hover, .watch-feature__transcript:hover {
  transform: translate3d(0, -0.25rem, 0);
}
@media screen and (min-width: 0rem) and (max-width: 29.9375rem) {
  .watch-feature__transcript {
    margin-top: 1rem;
  }
}
.watch-feature__sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0 0.5rem;
}
@media screen and (min-width: 0rem) and (max-width: 63.9375rem) {
  .watch-feature__sidebar-header.is-expanded::after {
    width: 3.125rem;
    transform: translateX(26px);
  }
  .watch-feature__sidebar-header.is-expanded + .watch-feature__sidebar-wrapper {
    visibility: visible;
    max-height: 20rem;
    transition: max-height 300ms ease;
  }
  .watch-feature__sidebar-header + .watch-feature__sidebar-wrapper {
    visibility: hidden;
    max-height: 0;
    transition: max-height 300ms ease;
  }
}
@media screen and (min-width: 64rem) {
  .watch-feature__sidebar-header {
    display: none;
  }
}
.watch-feature__sidebar-content {
  background-color: #FFFFFF;
}
@media screen and (min-width: 0rem) and (max-width: 63.9375rem) {
  .watch-feature__sidebar-content {
    height: 20rem;
  }
}
@media screen and (min-width: 64rem) {
  .watch-feature__sidebar-content {
    visibility: hidden;
    width: calc(100% - 45px);
  }
}
.watch-feature__sidebar-content--comments {
  overflow: auto;
  padding-top: 0.5rem;
}
@media screen and (min-width: 64rem) {
  .watch-feature__sidebar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translate3d(calc(100% - 45px), 0, 0);
    transition: transform 0.2s linear;
    display: flex;
    align-items: stretch;
  }
  .watch-feature__sidebar-wrapper.active {
    transform: translate3d(0, 0, 0);
  }
  .watch-feature__sidebar-wrapper.active .watch-feature__sidebar-content {
    visibility: visible;
  }
}
.watch-feature__breadcrumb {
  margin: 0 0 1.5rem;
}
.watch-feature__breadcrumb-link {
  font-family: "Montserrat-Medium", sans-serif;
  position: relative;
}
.watch-feature__breadcrumb-link::before {
  content: "‹‹‹";
  position: absolute;
  left: 0;
  top: -3px;
}
.watch-feature__header {
  width: 100%;
  display: block;
}
@media screen and (min-width: 64rem) {
  .watch-feature__header {
    display: grid;
    grid-template-columns: 68% 32%;
  }
}
@media screen and (min-width: 80rem) {
  .watch-feature__header {
    grid-template-columns: 70% 30%;
  }
}
.watch-feature__interaction-title {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #0A1012;
  margin: auto 0 0.75rem;
  text-align: right;
  text-transform: uppercase;
}
@media screen and (min-width: 64rem) {
  .watch-feature__interaction-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.watch-feature__interaction-title:not(.-mobile) {
  display: none;
}
@media screen and (min-width: 64rem) {
  .watch-feature__interaction-title:not(.-mobile) {
    display: block;
  }
}
.watch-feature.watch-feature--otr .sidebar-toggle__content::before,
.watch-feature.watch-feature--otr .sidebar-toggle__decoration {
  background-color: #0a0b47;
}
.watch-feature.watch-feature--otr #comments button#submit {
  color: #FFFFFF;
}
.watch-feature.watch-feature--otr #comments button#submit::before, .watch-feature.watch-feature--otr #comments button#submit::after {
  background-color: #ca20b3;
  border-color: #ca20b3;
}

.video-download-buttons__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64rem) {
  .video-download-buttons__container {
    flex-direction: row;
    align-items: center;
    row-gap: 0;
  }
}
.video-download-buttons__button {
  transform-origin: top left;
  cursor: pointer;
  background: transparent !important;
  border: 0 !important;
  color: #0A1012;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Montserrat-Bold", sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  z-index: 0;
  margin-left: 1rem;
  color: #0A1012 !important;
  font-size: 13.33px !important;
  text-decoration: underline solid 2px !important;
  width: auto;
}
.video-download-buttons__button:before, .video-download-buttons__button:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background-color: #4EFDFB;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-download-buttons__button:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-download-buttons__button:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-download-buttons__button:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.video-download-buttons__button:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.video-download-buttons__button:hover:disabled:before, .video-download-buttons__button:hover:disabled:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background: transparent;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-download-buttons__button:hover:disabled:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-download-buttons__button:hover:disabled:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-download-buttons__button:before, .video-download-buttons__button:after {
  background: transparent;
  border: 2px solid #002A4A;
}
.video-download-buttons__button:before {
  border-bottom-width: 0px;
}
.video-download-buttons__button:after {
  border-top-width: 0px;
}
.video-download-buttons__button:hover, .video-download-buttons__button.active {
  color: #FFFFFF !important;
}
.video-download-buttons__button:hover:before, .video-download-buttons__button:hover:after, .video-download-buttons__button.active:before, .video-download-buttons__button.active:after {
  background: #002A4A;
}
.video-download-buttons__button--button {
  transform-origin: top left;
  cursor: pointer;
  background: transparent !important;
  border: 0 !important;
  color: #0A1012;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Montserrat-Bold", sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  z-index: 0;
  margin-left: 1rem;
  color: #0A1012 !important;
  font-size: 13.33px !important;
  text-decoration: underline solid 2px !important;
  width: auto;
}
.video-download-buttons__button--button:before, .video-download-buttons__button--button:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background-color: #4EFDFB;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-download-buttons__button--button:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-download-buttons__button--button:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-download-buttons__button--button:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.video-download-buttons__button--button:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.video-download-buttons__button--button:hover:disabled:before, .video-download-buttons__button--button:hover:disabled:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background: transparent;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-download-buttons__button--button:hover:disabled:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-download-buttons__button--button:hover:disabled:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-download-buttons__button--button:before, .video-download-buttons__button--button:after {
  background: transparent;
  border: 2px solid #002A4A;
}
.video-download-buttons__button--button:before {
  border-bottom-width: 0px;
}
.video-download-buttons__button--button:after {
  border-top-width: 0px;
}
.video-download-buttons__button--button:hover, .video-download-buttons__button--button.active {
  color: #FFFFFF !important;
}
.video-download-buttons__button--button:hover:before, .video-download-buttons__button--button:hover:after, .video-download-buttons__button--button.active:before, .video-download-buttons__button--button.active:after {
  background: #002A4A;
}
.video-download-buttons__button--button:hover:before {
  -webkit-transform: skewX(-33.7deg) !important;
  -ms-transform: skewX(-33.7deg) !important;
  transform: skewX(-33.7deg) !important;
}
.video-download-buttons__button--button:hover:after {
  -webkit-transform: skewX(-33.7deg) !important;
  -ms-transform: skewX(-33.7deg) !important;
  transform: skewX(-33.7deg) !important;
}
.video-download-buttons__transcript-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 35rem) {
  .video-download-buttons__transcript-container {
    flex-direction: row;
    align-items: center;
    row-gap: 0;
  }
}
.video-download-buttons__transcript-language-container {
  display: flex;
  align-items: center;
  margin-left: 3px;
  height: 0;
}
@media screen and (min-width: 35rem) {
  .video-download-buttons__transcript-language-container {
    height: 50px;
  }
}
.video-download-buttons__language-button-container {
  position: relative;
  opacity: 0;
  width: 0;
  height: 50px;
  overflow: hidden;
  margin-left: -2px;
  border: 2px solid #002A4A;
  -webkit-transform: skewX(-33.7deg) !important;
  -ms-transform: skewX(-33.7deg) !important;
  transform: skewX(-33.7deg) !important;
}
.video-download-buttons__language-button {
  transform-origin: top left;
  cursor: pointer;
  background: transparent !important;
  border: 0 !important;
  color: #0A1012;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Montserrat-Bold", sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  z-index: 0;
  margin-left: 1rem;
  font-size: 13.33px !important;
  color: #0A1012 !important;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 1.3rem;
  margin-left: 2px;
}
.video-download-buttons__language-button:before, .video-download-buttons__language-button:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background-color: #4EFDFB;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-download-buttons__language-button:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-download-buttons__language-button:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-download-buttons__language-button:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.video-download-buttons__language-button:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.video-download-buttons__language-button:hover:disabled:before, .video-download-buttons__language-button:hover:disabled:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background: transparent;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-download-buttons__language-button:hover:disabled:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-download-buttons__language-button:hover:disabled:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-download-buttons__language-button:before, .video-download-buttons__language-button:after {
  background: transparent;
  border: transparent;
}
.video-download-buttons__language-button:before {
  border-bottom-width: 0px;
}
.video-download-buttons__language-button:after {
  border-top-width: 0px;
}
.video-download-buttons__language-button:hover, .video-download-buttons__language-button.active {
  color: #0A1012 !important;
}
.video-download-buttons__language-button:hover:before, .video-download-buttons__language-button:hover:after, .video-download-buttons__language-button.active:before, .video-download-buttons__language-button.active:after {
  background: #4EFDFB;
}
.video-download-buttons__language-button:before {
  -webkit-transform: skewX(0deg) !important;
  -ms-transform: skewX(0deg) !important;
  transform: skewX(0deg) !important;
}
.video-download-buttons__language-button:after {
  -webkit-transform: skewX(0deg) !important;
  -ms-transform: skewX(0deg) !important;
  transform: skewX(0deg) !important;
}
.video-download-buttons__language-button:hover:before {
  -webkit-transform: skewX(0deg) !important;
  -ms-transform: skewX(0deg) !important;
  transform: skewX(0deg) !important;
}
.video-download-buttons__language-button:hover:after {
  -webkit-transform: skewX(0deg) !important;
  -ms-transform: skewX(0deg) !important;
  transform: skewX(0deg) !important;
}
.video-download-buttons__language-button img {
  min-width: 14px;
  min-height: 14px;
  -webkit-transform: skewX(33.7deg) !important;
  -ms-transform: skewX(33.7deg) !important;
  transform: skewX(33.7deg) !important;
}

.sidebar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  text-decoration: none;
  display: inline-block;
  display: flex;
  flex-direction: column;
  height: calc(100% - 25px);
  width: 45px;
}
@media screen and (min-width: 0rem) and (max-width: 63.9375rem) {
  .sidebar-toggle {
    display: none;
  }
}
.sidebar-toggle__content {
  display: flex;
  align-items: center;
  position: relative;
  height: 80%;
  width: 100%;
  color: #FFFFFF;
}
.sidebar-toggle__content:before {
  content: "";
  position: absolute;
  transform-origin: top left;
  display: block;
  transform: skewY(28.18deg);
  background-color: #002A4A;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.sidebar-toggle .sidebar-toggle__expander {
  width: 45px;
  height: 45px;
  transform: rotate3d(0, 0, 1, 0deg);
  transition: transform 0.3s linear;
}
.sidebar-toggle__decoration {
  position: relative;
  transform-origin: top left;
  transform: skewY(28.18deg);
  background-color: #002A4A;
  margin-top: 5px;
  height: 20%;
  width: 100%;
}
.sidebar-toggle__decoration:before, .sidebar-toggle__decoration:after {
  position: absolute;
  content: "";
  display: block;
  height: 5px;
  background-color: #FFFFFF;
  width: 100%;
  left: 0;
}
.sidebar-toggle__decoration:before {
  top: 40%;
}
.sidebar-toggle__decoration:after {
  top: 75%;
}
@media screen and (min-width: 64rem) {
  .sidebar-toggle[aria-expanded=true] .sidebar-toggle__expander {
    transform: rotate3d(0, 0, 1, 180deg);
  }
}
.sidebar-toggle[aria-expanded=true] + .watch-feature__sidebar-wrapper {
  visibility: visible;
  width: 100%;
}

.mobile-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  text-decoration: none;
  display: inline-block;
  width: 6.875rem;
  height: 2.75rem;
  border: 2px solid #002A4A;
  background-color: #FFFFFF;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  border-radius: 25px;
  margin: 0;
  padding: 0;
  position: relative;
}
.mobile-toggle::after {
  content: "";
  position: absolute;
  z-index: 2;
  height: 2.25rem;
  background-color: #002A4A;
  width: 3.125rem;
  border-radius: 25px;
  transform: translateX(26px);
  transition: all 300ms ease;
}
@media screen and (min-width: 0rem) and (max-width: 63.9375rem) {
  .mobile-toggle[aria-expanded=true]::after {
    width: 3.25rem;
    transform: translateX(-25px);
  }
}
.mobile-toggle__text {
  font-family: "Montserrat-Bold", sans-serif;
  text-transform: uppercase;
  color: #002A4A;
  padding: 0 0.25rem;
  grid-row: 1/1;
}
.mobile-toggle__text:first-of-type {
  grid-column: 1/2;
}
.mobile-toggle__text:last-of-type {
  grid-column: 2/3;
}
.mobile-toggle__headline {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (min-width: 48rem) {
  .mobile-toggle__headline {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 80rem) {
  .mobile-toggle__headline {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.episode-segments {
  margin-top: 1.5rem;
}

.carousel {
  margin-top: 1rem;
}
@media screen and (min-width: 64rem) {
  .carousel {
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
}
.carousel__image {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 56.25%;
  background-size: cover;
  width: 100%;
}
.carousel__item {
  padding: 0 1rem;
  transform: scale3d(1, 1, 1);
  transition: transform 0.2s ease-in;
}
.carousel__title {
  padding: 1rem 0;
}
.carousel__link {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  text-align: left;
  text-decoration: underline solid 2px;
}
.carousel__link:hover {
  text-decoration-color: #4EFDFB;
}
.carousel .slick-track {
  padding: 20px 0 0;
}

.episode-description {
  margin-top: 1rem;
}
.episode-description__copy {
  padding-bottom: 1rem;
}

.explore {
  background-color: #002A4A;
}
.explore__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.explore__filter-button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  text-decoration: none;
  display: inline-block;
}
.explore__filter-image {
  width: 3.125rem;
}
.explore.watch-explore--otr {
  position: relative;
  background-image: linear-gradient(-129deg, #ca20b3, #0a0b47);
}
.explore.watch-explore--otr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-129deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5));
  z-index: 1;
}
.explore.watch-explore--otr > .watch__inner {
  position: relative;
  z-index: 2;
}
.explore.watch-explore--otr .watch__header-right,
.explore.watch-explore--otr #watch-form-top-button,
.explore.watch-explore--otr .watch__pagination-container,
.explore.watch-explore--otr #watch-form-sticky-button {
  display: none;
}
@media screen and (min-width: 0rem) and (max-width: 63.9375rem) {
  .explore.watch-explore--otr .watch__header {
    margin-bottom: 0;
  }
  .explore.watch-explore--otr .watch__subheading {
    display: none;
  }
}

.video-filter {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.2s ease-in, opacity 0.2s ease-in;
  overflow: hidden;
}
.video-filter.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 0rem) and (max-width: 29.9375rem) {
  .video-filter.active {
    max-height: 968px;
  }
}
@media screen and (min-width: 30rem) {
  .video-filter.active {
    max-height: 600px;
  }
}
@media screen and (min-width: 48rem) {
  .video-filter__filters {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }
}
.video-filter__button {
  transform-origin: top left;
  cursor: pointer;
  background: transparent !important;
  border: 0 !important;
  color: #0A1012;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Montserrat-Bold", sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  z-index: 0;
  margin-left: 1rem;
  color: #FFFFFF !important;
  /* IDK why I have to !important this, it comes after! */
  margin: 1rem 0 0 1rem;
  width: calc(100% - 2.5rem);
}
.video-filter__button:before, .video-filter__button:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background-color: #4EFDFB;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-filter__button:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-filter__button:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-filter__button:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.video-filter__button:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.video-filter__button:hover:disabled:before, .video-filter__button:hover:disabled:after {
  content: "";
  display: block;
  -webkit-transform: skewX(-33.7deg);
  -ms-transform: skewX(-33.7deg);
  transform: skewX(-33.7deg);
  border: 2px solid #4EFDFB;
  background: transparent;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-filter__button:hover:disabled:before {
  top: 0;
  right: 0;
  bottom: 49%;
  border-bottom-width: 0px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.video-filter__button:hover:disabled:after {
  top: 50%;
  left: 0;
  bottom: 0;
  border-top-width: 0px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.video-filter__button:before, .video-filter__button:after {
  background: transparent;
}
.video-filter__button:hover, .video-filter__button.active {
  color: #0A1012 !important;
}
.video-filter__button:hover:before, .video-filter__button:hover:after, .video-filter__button.active:before, .video-filter__button.active:after {
  background: #4EFDFB;
}
@media screen and (min-width: 30rem) {
  .video-filter__button {
    margin: 1rem 0 0 1.5rem;
    width: calc(33.33% - 2.25rem);
  }
}
@media screen and (min-width: 48rem) {
  .video-filter__button {
    margin: 1rem 0 0 1rem;
  }
}
@media screen and (min-width: 64rem) {
  .video-filter__button {
    margin: 1rem 0 0 1.5rem;
    width: calc(20% - 1rem);
  }
}
.video-filter__search {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.video-filter__search.active {
  display: flex;
}
.video-filter__input-group {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  height: 50px;
}
@media screen and (min-width: 30rem) {
  .video-filter__input-group {
    padding: 0 3rem 0 1rem;
  }
}
.video-filter__search-icon {
  display: none;
}
@media screen and (min-width: 30rem) {
  .video-filter__search-icon {
    width: 40px;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
  }
  .video-filter__search-icon svg .st0 {
    fill: #002A4A;
  }
}
.video-filter__search-field {
  border: none;
  padding: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 0rem) and (max-width: 29.9375rem) {
  .video-filter__search-submit {
    background-color: #4EFDFB;
    border: none;
    font-size: 16px;
    font-size: 1rem;
    font-family: "Montserrat-Bold", sans-serif;
    text-transform: uppercase;
    padding: 0.5rem;
    height: 50px;
  }
}
@media screen and (min-width: 30rem) {
  .video-filter__search-submit {
    transform-origin: top left;
    cursor: pointer;
    background: transparent !important;
    border: 0 !important;
    color: #0A1012;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Montserrat-Bold", sans-serif;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    z-index: 0;
    margin-left: 1rem;
    margin-left: -1.5rem;
  }
  .video-filter__search-submit:before, .video-filter__search-submit:after {
    content: "";
    display: block;
    -webkit-transform: skewX(-33.7deg);
    -ms-transform: skewX(-33.7deg);
    transform: skewX(-33.7deg);
    border: 2px solid #4EFDFB;
    background-color: #4EFDFB;
    width: 100%;
    position: absolute;
    transition: all 0.3s ease;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .video-filter__search-submit:before {
    top: 0;
    right: 0;
    bottom: 49%;
    border-bottom-width: 0px;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
  .video-filter__search-submit:after {
    top: 50%;
    left: 0;
    bottom: 0;
    border-top-width: 0px;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
  }
  .video-filter__search-submit:hover:before {
    -webkit-transform: skewX(-33.7deg) translateX(5%);
    -ms-transform: skewX(-33.7deg) translateX(5%);
    transform: skewX(-33.7deg) translateX(5%);
  }
  .video-filter__search-submit:hover:after {
    -webkit-transform: skewX(-33.7deg) translateX(-5%);
    -ms-transform: skewX(-33.7deg) translateX(-5%);
    transform: skewX(-33.7deg) translateX(-5%);
  }
  .video-filter__search-submit:hover:disabled:before, .video-filter__search-submit:hover:disabled:after {
    content: "";
    display: block;
    -webkit-transform: skewX(-33.7deg);
    -ms-transform: skewX(-33.7deg);
    transform: skewX(-33.7deg);
    border: 2px solid #4EFDFB;
    background: transparent;
    width: 100%;
    position: absolute;
    transition: all 0.3s ease;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .video-filter__search-submit:hover:disabled:before {
    top: 0;
    right: 0;
    bottom: 49%;
    border-bottom-width: 0px;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
  .video-filter__search-submit:hover:disabled:after {
    top: 50%;
    left: 0;
    bottom: 0;
    border-top-width: 0px;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
  }
}

.videos__page-display {
  color: #FFFFFF;
  font-family: "Montserrat-Medium", sans-serif;
}
.videos__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 1rem;
}
@media screen and (min-width: 48rem) {
  .videos__list {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.videos__list-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 48rem) {
  .videos__list-item {
    width: 33.33%;
    padding: 1rem 0.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .videos__list-item {
    padding: 1rem;
  }
}
.videos__pagination a {
  color: #FFFFFF !important;
}
.videos__pagination a:visited {
  color: #FFFFFF !important;
}
.videos__pagination a.current {
  border-bottom-color: #FFFFFF !important;
}

.episode {
  transform: scale(1, 1);
  transition: transform 0.2s ease-in;
}
.episode__background {
  background-color: #002A4A;
  border: none;
  padding-bottom: 56.25%;
  background-size: cover;
  display: block;
}
@media screen and (min-width: 0rem) and (max-width: 47.9375rem) {
  .episode {
    margin: 1rem 0;
  }
}
.episode__title {
  display: block;
  color: #FFFFFF;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Montserrat-Medium", sans-serif;
  margin: 1.5rem 0;
}
@media screen and (min-width: 48rem) {
  .episode__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 64rem) {
  .episode__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.episode__title:visited {
  color: #FFFFFF;
}
.episode__blurb-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s linear;
}
.episode__blurb {
  color: #FFFFFF;
}
@media screen and (min-width: 48rem) {
  .episode__blurb p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.episode__blurb.active .episode__blurb-content {
  max-height: 20rem;
}
.episode__blurb.active .episode__expander-icon {
  transform: rotate(180deg);
}
.episode__blurb-expander {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 30rem) {
  .episode__blurb-expander {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.episode__expander-icon {
  width: 25px;
  margin-right: 0.5rem;
  transition: transform 0.2s linear;
}

/* ------------------ */
/* Minnit CSS */
html {
  --stone: #666;
  --almost-white: #f5f5f5;
  --rich-blue-light: #004070;
  --dove: #fafafa;
  --lightest-grey: #e3e3e3;
  /*  Less bright & more gray  */
  --light-gold: #efece4;
  --light-electric-blue: #E9F6F5;
  --rich-black: #0A1012;
  --grey-black: #191919;
  --white: #fff;
  --electric-blue: #4EFDFB;
  --light-grey: #D8D8D8;
  --error-red: #ff0033;
  --rich-blue: #002A4A;
  --gold: #d6ae50;
  --lighter-grey: #C6C6C6;
  --grey: #8c8c8c;
  --dark-grey: #262626;
  --light-font: "Montserrat-Light", sans-serif;
  --medium-font: "Montserrat-Medium", sans-serif;
  --semibold-font: "Montserrat-SemiBold", sans-serif;
  --bold-font: "Montserrat-Bold", sans-serif;
}

#chat-comment-sidebar {
  background-color: var(--almost-white);
  scrollbar-color: #0a1012 #e5e5e5;
  scrollbar-width: thin;
}

#chat-comment-sidebar::-webkit-scrollbar {
  width: 8px;
}

#chat-comment-sidebar::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 10px;
}

#chat-comment-sidebar::-webkit-scrollbar-thumb {
  background: #0a1012;
  border-radius: 10px;
}

/* Comment Bubbles */
#comments,
.comment:nth-child(2n) {
  background-color: transparent;
}

.comment-author img {
  width: 20px;
}

.comment-author > b {
  font-size: 14px;
  font-family: var(--medium-font);
}

.comment-author {
  margin-bottom: 0.25rem;
}

.comment-metadata {
  position: relative;
}

.comment-content {
  margin-bottom: 1rem;
}

.edit-link {
  position: absolute;
  top: -1.25rem;
  right: 0;
}

.edit-link a,
.reply a {
  display: flex;
  align-items: center;
  font-family: var(--semibold-font);
  font-size: 12px;
  color: var(--stone) !important;
  text-decoration: none;
}

.edit-link a::before,
.reply a::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 4px;
  width: 12px;
  height: 12px;
  background-size: cover;
  opacity: 0.5;
}

.edit-link a::before {
  background-image: url("/wp-content/themes/thehighwire/assets/img/icon_pencil.svg");
}

.reply a::before {
  background-image: url("/wp-content/themes/thehighwire/assets/img/icon_reply.svg");
}

.comment-metadata a {
  color: #5d5d5d;
}

.comment-metadata > a,
.comment-metadata time {
  font-size: 12px !important;
  text-decoration: none;
}

.comment {
  padding-left: 0.5rem;
}

.comment-list > .comment {
  padding-right: 0.5rem;
}

.comment article p {
  font-size: 15px;
  letter-spacing: -0.15px;
}

.comment article {
  padding: 8px;
  border-radius: 3px;
  border: 1px solid var(--lighter-grey);
  position: relative;
}

.comment .children article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid var(--lighter-grey);
}

.comment .children article::after {
  content: "";
  position: absolute;
  top: 0px;
  left: -8px;
  border: 10px solid transparent;
  border-top: 10px solid var(--light-electric-blue);
}

.comment article {
  background-color: var(--light-electric-blue);
}

.comment:nth-child(2n) article {
  background-color: var(--light-gold);
}

.comment:nth-child(2n) article::after {
  border-top-color: var(--light-gold);
}

.comment-body:not(:last-child) {
  border-bottom: 1px solid var(--lighter-grey);
  padding-bottom: 8px;
}

/* Comment Children */
.children {
  margin-top: 0.375rem;
}

.children .comment {
  padding-left: 0.625rem;
  padding-bottom: 0.75rem;
}

.children .comment:last-of-type {
  padding-bottom: 0;
}

/* Comment Form */
.comment-reply-title {
  text-transform: uppercase;
}

.comment-form textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  border: 1px solid #C6C6C6;
  border-radius: 0;
  font-family: var(--light-font) !important;
  line-height: 1.2;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  font-family: var(--light-font);
  font-weight: 700;
}

/* ------------------ */

/*# sourceMappingURL=watch.css.map */
