/* 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;
}

.watch {
  background-color: #002A4A;
  --row-height: 18rem;
  --nav-height-mobile: rem(67);
}
.watch__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  padding: 1rem 0;
}
@media screen and (min-width: 0rem) and (max-width: 63.9375rem) {
  .watch__inner {
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 30rem) {
  .watch__inner {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 80rem) {
  .watch__inner {
    padding: 3rem 6rem;
  }
}
.watch__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  color: #fff;
}
@media screen and (min-width: 30rem) {
  .watch__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.watch__header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 64rem) {
  .watch__header-left {
    flex-direction: row;
    align-items: flex-end;
  }
}
.watch__header-right {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (min-width: 30rem) {
  .watch__header-right {
    margin-right: 0;
  }
}
.watch__title {
  width: 100%;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  display: flex;
  align-items: flex-end;
  padding-top: 3.5rem;
}
@media screen and (min-width: 48rem) {
  .watch__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 80rem) {
  .watch__title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 30rem) {
  .watch__title {
    padding-top: 1rem;
  }
}
.watch__subheading {
  padding: 0 0 1rem;
}
@media screen and (min-width: 64rem) {
  .watch__subheading {
    padding: 2rem 3rem;
  }
}
.watch__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! */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 10rem;
  height: 3.625rem;
  margin: auto 0;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  box-shadow: none;
  appearance: none;
  border: none;
}
.watch__button:before, .watch__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;
}
.watch__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%;
}
.watch__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;
}
.watch__button:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.watch__button:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.watch__button:hover:disabled:before, .watch__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;
}
.watch__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%;
}
.watch__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;
}
.watch__button:before, .watch__button:after {
  background: transparent;
}
.watch__button:hover, .watch__button.active {
  color: #0A1012 !important;
}
.watch__button:hover:before, .watch__button:hover:after, .watch__button.active:before, .watch__button.active:after {
  background: #4EFDFB;
}
.watch__button:hover svg path {
  fill: #0A1012;
}
.watch__button-outer-text {
  display: none;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0;
  color: inherit;
}
.watch__button-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.watch__button-x {
  display: none;
  opacity: 0;
  width: 18px;
  margin: 0 auto;
}
.watch__button-x path {
  fill: #fff;
}
.watch__button-icon {
  min-width: 25px;
  margin-right: 0.5rem;
}
.watch__button-icon path {
  fill: #fff;
}
.watch__button-pagination {
  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;
  display: none;
  margin: 2rem 0;
  cursor: pointer;
}
.watch__button-pagination:before, .watch__button-pagination: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;
}
.watch__button-pagination: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%;
}
.watch__button-pagination: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;
}
.watch__button-pagination:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.watch__button-pagination:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.watch__button-pagination:hover:disabled:before, .watch__button-pagination: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;
}
.watch__button-pagination: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%;
}
.watch__button-pagination: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;
}
.watch__button-pagination.visually-hidden {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.watch__button-explore {
  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: 2rem 0;
  cursor: pointer;
}
.watch__button-explore:before, .watch__button-explore: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;
}
.watch__button-explore: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%;
}
.watch__button-explore: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;
}
.watch__button-explore:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.watch__button-explore:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.watch__button-explore:hover:disabled:before, .watch__button-explore: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;
}
.watch__button-explore: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%;
}
.watch__button-explore: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;
}
.watch__button-explore.visually-hidden {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.watch__clear-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem auto;
  width: 100%;
}
.watch__checkbox-label {
  font-family: "Montserrat-Medium", sans-serif;
  color: #fff;
  display: grid;
  grid-template-columns: 1.5rem auto;
  align-items: center;
  gap: 0.25em;
}
.watch__checkbox {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  appearance: none;
  display: grid;
  place-content: center;
}
.watch__checkbox::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  box-shadow: inset 1em 1em #4EFDFB;
}
.watch__checkbox:checked::before {
  transform: scale(1);
}
.watch__checkbox:focus-visible {
  outline: max(2px, 0.15em) solid #4EFDFB;
  outline-offset: max(2px, 0.15em);
}
.watch__checkbox-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Montserrat-Medium", sans-serif;
  text-transform: uppercase;
  color: #fff;
  display: block;
  padding: 0;
}
.watch__clear-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! */
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 1rem 0 0;
  padding: 0.5rem 0.75rem;
  color: #fff;
  background-color: transparent;
  height: 2rem;
  min-width: unset;
  transition: background 250ms ease-in-out, color 250ms ease-in-out, border-color 250ms ease-in-out;
}
.watch__clear-button:before, .watch__clear-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;
}
.watch__clear-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%;
}
.watch__clear-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;
}
.watch__clear-button:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.watch__clear-button:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.watch__clear-button:hover:disabled:before, .watch__clear-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;
}
.watch__clear-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%;
}
.watch__clear-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;
}
.watch__clear-button:before, .watch__clear-button:after {
  background: transparent;
}
.watch__clear-button:hover, .watch__clear-button.active {
  color: #0A1012 !important;
}
.watch__clear-button:hover:before, .watch__clear-button:hover:after, .watch__clear-button.active:before, .watch__clear-button.active:after {
  background: #4EFDFB;
}
.watch__clear-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.watch__clear-button:hover {
  color: #000;
  border-color: #4EFDFB;
  background-color: #4EFDFB;
}
.watch__clear-button:hover:disabled {
  color: #fff !important;
  background-color: transparent !important;
}
.watch__pagination-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.watch__content {
  position: relative;
  min-height: 50vh;
}
.watch__content-outer {
  position: relative;
  min-height: 50vh;
}
.watch__content-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 64rem) {
  .watch__content-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* fr instead of % (minmax prevent blowout) */
    grid-auto-flow: dense;
    gap: 2rem;
    grid-auto-rows: repeat(3, minmax(0, 1fr));
  }
}
.watch__content-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.watch__button-sticky-container {
  position: sticky;
  top: 0;
  transform: translateX(-100%);
  width: 11rem;
  height: 0;
}
.watch__button-sticky-container-inner {
  position: absolute;
  top: 3rem;
  left: 0;
  overflow: hidden;
  width: 11rem;
  height: 4.375rem;
}
@media screen and (min-width: 64rem) {
  .watch__button-sticky-container-inner {
    top: 0;
  }
}
.watch__button-sticky {
  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;
  position: absolute;
  top: -100%;
  left: 2rem;
  padding: 1rem;
  margin: auto 0;
  cursor: pointer;
}
.watch__button-sticky:before, .watch__button-sticky: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;
}
.watch__button-sticky: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%;
}
.watch__button-sticky: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;
}
.watch__button-sticky:hover:before {
  -webkit-transform: skewX(-33.7deg) translateX(5%);
  -ms-transform: skewX(-33.7deg) translateX(5%);
  transform: skewX(-33.7deg) translateX(5%);
}
.watch__button-sticky:hover:after {
  -webkit-transform: skewX(-33.7deg) translateX(-5%);
  -ms-transform: skewX(-33.7deg) translateX(-5%);
  transform: skewX(-33.7deg) translateX(-5%);
}
.watch__button-sticky:hover:disabled:before, .watch__button-sticky: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;
}
.watch__button-sticky: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%;
}
.watch__button-sticky: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;
}
.watch__button-sticky svg path {
  fill: #0A1012;
}
.watch__form-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
}
.watch__form-outer {
  position: sticky;
  top: var(--nav-height-mobile);
  overflow: hidden;
  transform: translateX(-100%);
  width: 360px;
  max-width: 100vw;
  height: 100vh;
  max-height: calc(100% - var(--nav-height-mobile));
  z-index: 10;
}
@media screen and (min-width: 80rem) {
  .watch__form-outer {
    top: 0;
    max-height: 100%;
  }
}
.watch__form-inner {
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  background: #000;
  overflow: scroll;
  padding: 1rem;
}
.watch__search {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.watch__search-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #4EFDFB;
}
.watch__search-input {
  margin-right: 1rem;
  border: none;
  background: transparent;
  color: #fff;
  flex-grow: 1;
  height: 1.875rem;
  color: #fff;
}
.watch__search-input::placeholder, .watch__search-input::-moz-placeholder {
  font-family: "Montserrat-Regular", sans-serif;
}
.watch__search-input:focus-visible {
  outline: 1px solid #fff;
}
.watch__search-icon {
  height: 30px;
}
.watch__search-button {
  display: none;
  justify-content: center;
  align-items: center;
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  opacity: 0;
  border-radius: 0;
  background-color: #4EFDFB;
  box-shadow: none;
  border: 1px solid transparent;
  appearance: none;
  cursor: pointer;
  transition: all 250ms ease;
}
.watch__search-button svg path {
  fill: #0A1012;
}
.watch__search-button:hover {
  background-color: transparent;
  border-color: #4EFDFB;
}
.watch__search-button:hover svg path {
  fill: #fff;
}
.watch__search-button-x {
  width: 1.125rem;
}
.watch__expander {
  border: 1px solid #fff;
  margin-bottom: 1rem;
}
.watch__expander-button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.watch__expander-button.active {
  position: relative;
}
.watch__expander-button.active::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 8px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #4EFDFB;
}
.watch__expander-button-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Montserrat-Medium", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.watch__expander-button-chevron {
  width: 1.125rem;
}
.watch__expander-content {
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
}
.watch__expander-item > input:checked + label > span {
  background-color: #fff;
  color: #000;
}
.watch__expander-item > input:checked + label > span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #4EFDFB;
}
.watch__expander-item-text {
  position: relative;
  display: block;
  text-transform: uppercase;
  color: #fff;
  padding: 1rem 1.5rem;
}
.watch__none {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.watch__none-message {
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
.watch__date-container {
  padding: 1rem;
}
.watch__loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 50%;
  bottom: 100%;
  height: 0;
  z-index: 100;
}
.watch__loader {
  display: block;
  font-size: 0;
  color: #d6ae50;
  position: relative;
  box-sizing: border-box;
  width: 120px;
  height: 96px;
}
.watch__loader > div {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
  width: 12px;
  height: 96px;
  margin: 6px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  animation-name: loader-animation;
  animation-iteration-count: infinite;
}
.watch__loader > div:nth-child(1) {
  animation-duration: 0.43s;
  animation-delay: -0.23s;
}
.watch__loader > div:nth-child(2) {
  animation-duration: 0.62s;
  animation-delay: -0.32s;
}
.watch__loader > div:nth-child(3) {
  animation-duration: 0.43s;
  animation-delay: -0.44s;
}
.watch__loader > div:nth-child(4) {
  animation-duration: 0.8s;
  animation-delay: -0.31s;
}
.watch__loader > div:nth-child(5) {
  animation-duration: 0.74s;
  animation-delay: -0.24s;
}
@keyframes loader-animation {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.3);
  }
  100% {
    transform: scaleY(1);
  }
}

.date-picker {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1rem 1.5rem;
}
.date-picker__heading {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.date-picker__to {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Montserrat-Regular", sans-serif;
  margin: 0.25rem 0;
  padding: 0.5rem 0;
  color: #fff;
}
.date-picker__to-start, .date-picker__to-end {
  color: #D8D8D8;
}
.date-picker__input {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Montserrat-Regular", sans-serif;
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #4EFDFB;
  padding: 1rem 0.5rem;
  text-transform: uppercase;
  color: #fff;
}
.date-picker__input::placeholder, .date-picker__input::-moz-placeholder {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
.date-picker__input:focus-visible {
  outline: 1px solid #4EFDFB;
}
.date-picker__input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.date-picker__input:invalid, .date-picker__input.error {
  border-color: #ff0033;
  border-width: 2px;
}
.date-picker__error-message {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Montserrat-Medium", sans-serif;
  color: #ff0033;
  margin: 0.25rem 0 0;
}
.date-picker .datepicker .datepicker-picker {
  border-radius: 0;
}
.date-picker .datepicker-controls .view-switch {
  font-family: "Montserrat-Bold", sans-serif;
}
.date-picker .datepicker-grid .datepicker-cell,
.date-picker .datepicker-grid .datepicker-cell.range-start:not(.range-end) {
  border-radius: 0;
}
.date-picker .datepicker-grid .datepicker-cell.selected,
.date-picker .datepicker-grid .datepicker-cell.selected:hover {
  font-family: "Montserrat-Medium", sans-serif;
  background-color: #4EFDFB;
  color: #0A1012;
}

.hover-disclosure__header {
  cursor: pointer;
}

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

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