/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/static/sass/style.scss ***!
  \*********************************************************************************************************************/
/* Media query manager */
/* GLOBAL RESET */
:global(html),
:global(body),
:global(div),
:global(span),
:global(applet),
:global(object),
:global(iframe),
:global(h1),
:global(h2),
:global(h3),
:global(h4),
:global(h5),
:global(h6),
:global(p),
:global(blockquote),
:global(pre),
:global(a),
:global(abbr),
:global(acronym),
:global(address),
:global(big),
:global(cite),
:global(code),
:global(del),
:global(dfn),
:global(em),
:global(img),
:global(ins),
:global(kbd),
:global(q),
:global(s),
:global(samp),
:global(small),
:global(strike),
:global(strong),
:global(sub),
:global(sup),
:global(tt),
:global(var),
:global(b),
:global(u),
:global(i),
:global(center),
:global(dl),
:global(dt),
:global(dd),
:global(ol),
:global(ul),
:global(li),
:global(fieldset),
:global(form),
:global(label),
:global(legend),
:global(table),
:global(caption),
:global(tbody),
:global(tfoot),
:global(thead),
:global(tr),
:global(th),
:global(td),
:global(article),
:global(aside),
:global(canvas),
:global(details),
:global(embed),
:global(figure),
:global(figcaption),
:global(footer),
:global(header),
:global(hgroup),
:global(menu),
:global(nav),
:global(output),
:global(ruby),
:global(section),
:global(summary),
:global(time),
:global(mark),
:global(audio),
:global(video) {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: inherit; }

/* HTML5 display-role reset for older browsers */
:global(article),
:global(aside),
:global(details),
:global(figcaption),
:global(figure),
:global(footer),
:global(header),
:global(hgroup),
:global(menu),
:global(nav),
:global(section) {
  display: block; }

:global(body) {
  line-height: 1; }

:global(ol),
:global(ul) {
  list-style: none; }

:global(blockquote),
:global(q) {
  quotes: none; }

:global(blockquote:before),
:global(blockquote:after),
:global(q:before),
:global(q:after) {
  content: '';
  content: none; }

:global(table) {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  font-family: 'Hind', sans-serif;
  box-sizing: border-box;
  background-color: #111111; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 74em) {
    html {
      font-size: 50%; } }

.backdrop {
  width: 120%;
  height: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  background-color: rgba(17, 17, 17, 0.7); }

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.7); } }

.modal {
  position: fixed;
  z-index: 500;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  height: 52rem;
  opacity: 0;
  box-shadow: 0 1.5rem 4rem rgba(23, 24, 24, 0.15);
  transition: all 0.3s; }
  @media only screen and (max-width: 74em) {
    .modal {
      height: 38rem; } }
  @media only screen and (max-width: 37.5em) {
    .modal {
      height: 50rem; } }
  .modal__container {
    background: linear-gradient(90deg, #000 50%, transparent);
    width: 70%;
    padding-top: 3rem;
    height: 100%;
    padding-left: 5rem; }
    @media only screen and (max-width: 74em) {
      .modal__container {
        background: linear-gradient(90deg, black 55%, rgba(0, 0, 0, 0.733), transparent);
        width: 88%; } }
    @media only screen and (max-width: 61.25em) {
      .modal__container {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.966) 65%, transparent);
        width: 100%; } }
    @media only screen and (max-width: 37.5em) {
      .modal__container {
        padding-top: 1rem;
        padding-left: 1rem; } }
  .modal__title {
    font-size: 4rem; }
  .modal__rating {
    font-size: 2rem;
    color: #5cdf5c; }
  .modal__info {
    padding-top: 1.6rem;
    font-size: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .modal__info {
        padding-top: 1.2rem; } }
  .modal__episode {
    padding-top: 0.5rem;
    font-size: 2rem; }
  .modal__overview {
    color: #7a7a7a;
    padding-top: 2rem;
    font-size: 2rem;
    hyphens: auto;
    width: 60%;
    line-height: 1.2; }
    @media only screen and (max-width: 102em) {
      .modal__overview {
        width: 60%;
        font-size: 1.8rem; } }
    @media only screen and (max-width: 74em) {
      .modal__overview {
        width: 80%; } }
    @media only screen and (max-width: 61.25em) {
      .modal__overview {
        width: 95%;
        color: rgba(255, 255, 255, 0.877); } }
    @media only screen and (max-width: 37.5em) {
      .modal__overview {
        padding-top: 1rem;
        font-size: 1.7rem; } }
  .modal__btn {
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border: 0.5px solid #7a7a7a;
    border-radius: 2px;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-right: 1rem;
    padding: 1rem 2rem 1rem 2rem;
    transition: all 0.2s; }
    @media only screen and (max-width: 37.5em) {
      .modal__btn {
        margin-top: 1rem; } }
    .modal__btn:hover {
      transform: scale(1.09); }
    .modal__btn--red {
      background-color: #f80616de;
      border: none; }
    .modal__btn--icon {
      fill: #fff;
      padding-right: 1rem;
      height: 1.4rem;
      width: 1.4rem; }

.show {
  transition: 0.3s 0.3s ease-out;
  top: 25%;
  left: 0;
  visibility: visible;
  opacity: 1; }

.hide {
  visibility: hidden;
  transition: 0.3s ease-out; }

.searchContent {
  height: 100vh;
  background-color: #111111; }

.search-container {
  background-color: #111111;
  height: 150%;
  padding-bottom: 10rem;
  padding-left: 4rem; }

.no-results {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #c5c5c5;
  height: 100%;
  padding-top: 25rem; }
  .no-results__text {
    font-size: 1.6rem; }
    .no-results__text > * {
      padding-bottom: 1.8rem; }
    .no-results__text > ul {
      padding-left: 6.5rem;
      list-style: disc; }
      .no-results__text > ul > * {
        padding-bottom: 0.2rem; }

.movie {
  flex: 1 1 auto;
  display: inline-block;
  padding-right: 0.5rem;
  padding-bottom: 7rem; }
  @media only screen and (max-width: 37.5em) {
    .movie {
      padding-bottom: 4rem; } }
  .movie__column-poster {
    height: 15rem;
    cursor: pointer;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s; }
    .movie__column-poster:hover {
      transform: scale(1.25); }
      @media only screen and (max-width: 74em) {
        .movie__column-poster:hover {
          transform: scale(1.15); } }
  .movie__poster {
    height: 100%;
    border-radius: 5px; }

div.movie:first-child {
  padding-top: 15rem; }

.swiper-pagination {
  top: 0 !important;
  height: 1rem !important;
  text-align: right !important; }

.swiper-pagination-bullet {
  background-color: white !important; }

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 97.5% !important;
  height: 1px !important; }

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0 !important;
  left: 0 !important; }

div.swiper-button-prev,
div.swiper-button-next {
  transition: all 450ms !important;
  color: white; }
  div.swiper-button-prev:hover,
  div.swiper-button-next:hover {
    transform: scale(1.2) !important;
    transition: all 450ms !important; }

.swiper-slide {
  transition: all 450ms !important; }

.swiper-wrapper:hover .swiper-slide {
  z-index: 10000;
  opacity: 0.3 !important; }
  .swiper-wrapper:hover .swiper-slide:hover {
    transform: scale(1.3) !important;
    opacity: 1 !important; }
    @media only screen and (max-width: 74em) {
      .swiper-wrapper:hover .swiper-slide:hover {
        transform: scale(1.2) !important; } }

.movieShowcase {
  background-color: transparent;
  grid-column: 2 / 13;
  color: #fff; }
  .movieShowcase__heading {
    position: relative;
    top: 3rem;
    padding-left: 4rem;
    font-weight: 500; }
  .movieShowcase__container::-webkit-scrollbar {
    display: none; }
  @media only screen and (max-width: 37.5em) {
    .movieShowcase__container {
      width: 98vw; } }
  .movieShowcase__container--movie:hover ~ .movieShowcase__container--movie {
    transform: translate3d(6.5rem, 0, 0); }
    @media only screen and (max-width: 74em) {
      .movieShowcase__container--movie:hover ~ .movieShowcase__container--movie {
        transform: translate3d(3rem, 0, 0); } }
    @media only screen and (max-width: 37.5em) {
      .movieShowcase__container--movie:hover ~ .movieShowcase__container--movie {
        transform: translate3d(2.8rem, 0, 0); } }
  .movieShowcase__container--movie__netflix:hover ~ .movieShowcase__container--movie__netflix {
    transform: translate3d(1rem, 0, 0); }
  .movieShowcase__container:hover .movieShowcase__container--movie__netflix:hover {
    transform: scale(1.1) !important; }
    @media only screen and (max-width: 74em) {
      .movieShowcase__container:hover .movieShowcase__container--movie__netflix:hover {
        transform: scale(1.05) !important; } }
    @media only screen and (max-width: 37.5em) {
      .movieShowcase__container:hover .movieShowcase__container--movie__netflix:hover {
        transform: scale(1.05) !important; } }
  .movieShowcase__container--movie {
    cursor: pointer;
    transition: all 450ms;
    transform: center left;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    min-height: 0;
    object-fit: contain; }
    .movieShowcase__container--movie:not(:last-child) {
      padding-right: 0.5rem; }
    .movieShowcase__container--movie-image {
      height: 100%;
      width: 100%;
      object-fit: contain;
      border-radius: 5px; }
    .movieShowcase__container--movie__netflix {
      min-height: 0;
      padding-top: 3rem;
      padding-bottom: 4rem;
      padding-right: 1rem;
      cursor: pointer;
      transition: all 450ms;
      transform: center left; }

.not-found__message {
  position: absolute;
  top: 50%;
  left: 50%; }

.not-found__message > h1 {
  color: #fff; }

.footer {
  background-color: #111111;
  padding-top: 15rem;
  padding-bottom: 4rem;
  grid-column: 1 / 13;
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    .footer {
      padding-top: 10rem; } }
  .footer__copyright {
    color: #fff;
    font-size: 1.8rem; }
    .footer__copyright--link {
      text-decoration: none;
      color: #f80616de;
      transition: all .3s; }
    .footer__copyright--link:hover {
      color: orange; }

.header {
  background-color: #111111;
  position: relative;
  padding-top: 56.25%; }
  @media only screen and (max-width: 37.5em) {
    .header {
      padding-top: 0;
      height: 32rem; } }
  .header__video {
    position: absolute;
    top: 0;
    left: 0; }
  .header__container {
    color: #fff; }
    @media only screen and (max-width: 37.5em) {
      .header__container {
        padding-left: 1rem; } }
    .header__container-heading {
      font-size: 6rem;
      position: absolute;
      color: #fff;
      top: 12rem;
      left: 3.5rem; }
      @media only screen and (max-width: 37.5em) {
        .header__container-heading {
          top: 7rem;
          font-size: 3rem; } }
    .header__container-btnPlay, .header__container-btnMyList {
      top: 40rem;
      cursor: pointer;
      font-size: 1.6rem;
      color: #fff;
      outline: none;
      border: none;
      font-weight: 700;
      border-radius: 5px;
      padding-left: 3.5rem;
      padding-right: 3.5rem;
      margin-right: 1rem;
      padding-top: 1rem;
      background-color: rgba(112, 111, 111, 0.5);
      padding-bottom: 1rem; }
      @media only screen and (max-width: 37.5em) {
        .header__container-btnPlay, .header__container-btnMyList {
          top: 24rem; } }
      .header__container-btnPlay-add, .header__container-btnMyList-add {
        width: 15px;
        height: 15px;
        fill: #fff;
        margin-right: 1rem; }
      .header__container-btnPlay-play, .header__container-btnMyList-play {
        width: 15px;
        height: 15px;
        fill: #fff;
        margin-right: 1rem; }
    .header__container-btnPlay {
      color: #000;
      background-color: #e6e6e6;
      transition: all 0.2s;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      left: 4rem;
      position: absolute; }
      .header__container-btnPlay > * {
        fill: #000; }
    .header__container-btnMyList {
      left: 18.5rem;
      position: absolute; }
      .header__container-btnMyList:hover {
        background-color: #252525; }
    .header__container-btnVolume {
      position: absolute;
      height: 3rem;
      width: 3rem;
      top: 45rem;
      right: 14rem;
      cursor: pointer;
      border-radius: 50%;
      padding: 1rem;
      border: #fff solid 1px;
      transition: all 0.3s; }
      @media only screen and (max-width: 61.25em) {
        .header__container-btnVolume {
          top: 30rem; } }
      @media only screen and (max-width: 37.5em) {
        .header__container-btnVolume {
          top: 20rem;
          right: 8rem; } }
      .header__container-btnVolume > * {
        stroke: #fff;
        stroke-width: 1; }
      .header__container-btnVolume:hover {
        background-color: rgba(211, 211, 211, 0.178);
        transition: all 0.3s; }
    .header__container-overview {
      top: 28rem;
      left: 4rem;
      position: absolute;
      color: #fff;
      width: 55rem;
      line-height: 1.3;
      padding-top: 2.5rem;
      font-size: 1.8rem; }
      @media only screen and (max-width: 37.5em) {
        .header__container-overview {
          top: 10rem;
          width: 20rem; } }
    .header__container--fadeBottom {
      position: absolute;
      bottom: 0;
      height: 10rem;
      width: 100%;
      background-image: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.61), #111111, #111111); }
      @media only screen and (max-width: 37.5em) {
        .header__container--fadeBottom {
          height: 4rem; } }

.navigation {
  background-color: transparent;
  z-index: 100;
  grid-column: 1 / 13;
  position: fixed;
  width: 100%;
  height: 6.7rem;
  transition-timing-function: ease-in;
  transition: all 1s;
  top: 0;
  padding-bottom: 1.5rem; }
  .navigation.black {
    background-color: #111111; }
  .navigation__container {
    background-color: transparent;
    display: flex;
    height: 6.7rem;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .navigation__container {
        margin-left: 1rem; } }
    .navigation__container a:first-child {
      padding-left: 0.2%;
      color: #e21221;
      font-size: 4rem; }
    .navigation__container--bellLogo {
      cursor: pointer;
      height: 2.2rem;
      fill: red;
      width: 2.2rem;
      padding-right: 2.5rem; }
      @media only screen and (max-width: 37.5em) {
        .navigation__container--bellLogo {
          display: none; } }
    .navigation__container--userLogo {
      margin-top: 2rem;
      border-radius: 5px;
      cursor: pointer;
      background-color: #c9c74e;
      height: 3rem;
      width: 3rem;
      margin-right: 0.5rem; }
      @media only screen and (max-width: 74em) {
        .navigation__container--userLogo {
          margin-right: 3rem; } }
      @media only screen and (max-width: 37.5em) {
        .navigation__container--userLogo {
          display: none; } }
      .navigation__container--userLogo:hover > .dropdownContent {
        transition: all 0.4s;
        opacity: 1;
        visibility: visible; }
    .navigation__container--downArrow {
      cursor: pointer;
      fill: #fff;
      height: 1rem;
      width: 1rem;
      margin-right: 5.8rem; }
      @media only screen and (max-width: 74em) {
        .navigation__container--downArrow {
          display: none; } }
    .navigation__container--downArrow-2 {
      display: none;
      cursor: pointer;
      fill: #fff;
      height: 1rem;
      width: 1rem; }
      @media only screen and (max-width: 74em) {
        .navigation__container--downArrow-2 {
          height: 1.5rem;
          width: 1.5rem;
          display: inline-block; } }
      @media only screen and (max-width: 37.5em) {
        .navigation__container--downArrow-2 {
          display: none; } }
    .navigation__container--logo {
      margin-top: 2rem;
      height: 6rem;
      padding-right: 1rem; }
      @media only screen and (max-width: 74em) {
        .navigation__container--logo {
          padding-right: 0.1rem; } }
    .navigation__container-link {
      font-weight: 500;
      font-size: 1.4rem;
      color: #dddddd;
      text-decoration: none;
      margin-right: 2rem;
      transition: all 0.2s; }
      .navigation__container-link:last-child {
        padding-right: 2.6rem; }
      .navigation__container-link:hover {
        color: #a7a7a7; }
    .navigation__container--left {
      flex-grow: 1;
      color: #fff;
      padding-right: 2rem;
      display: flex;
      justify-content: flex-end; }
      .navigation__container--left__input {
        font-size: 1.4rem;
        border: none;
        color: #fff;
        outline: none;
        width: 0px;
        padding: 10px;
        padding-right: 2rem;
        background: #111111;
        border: 1px solid #fff;
        transition: width 0.5s;
        cursor: pointer;
        opacity: 0; }
        .navigation__container--left__input:focus {
          padding-left: 4rem;
          width: 22rem;
          cursor: text;
          opacity: 1; }
          @media only screen and (max-width: 37.5em) {
            .navigation__container--left__input:focus {
              width: 16rem; } }

.logo {
  width: 1.8rem;
  height: 1.8rem;
  transform: translateX(2.4rem) translateY(1rem);
  cursor: pointer; }

.dropdownContent {
  display: flex;
  flex-direction: column;
  opacity: 0;
  color: #fff;
  transition-delay: 0.5s;
  padding-left: 1rem;
  padding-top: 1.8rem;
  visibility: hidden;
  height: 19rem;
  border: 1px solid #494949;
  width: 15rem;
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(4.6rem) translateX(-11rem); }
  .dropdownContent--2 {
    height: 10rem; }
  .dropdownContent-text {
    width: 60%;
    padding-top: 1.2rem;
    font-size: 1.2rem; }
    .dropdownContent-text:hover {
      border-bottom: 1px solid #fff; }
  .dropdownContent-textOutside {
    font-size: 1.2rem;
    padding-bottom: 1rem; }
  .dropdownContent--user {
    height: 3rem;
    width: 3rem;
    border-radius: 5px;
    background-color: #40a8e4; }
    .dropdownContent--user-2 {
      background-color: #e69130; }
    .dropdownContent--user-3 {
      background-color: #7be660; }
    .dropdownContent--user-text {
      width: 3rem;
      font-size: 1.2rem;
      transform: translateX(4rem) translateY(-2rem); }
      .dropdownContent--user-text:hover {
        border-bottom: 1px solid #fff;
        border-width: 100%; }

.dropdownContainer {
  height: 100%;
  justify-content: center;
  align-content: center; }
  .dropdownContainer:hover .dropdownContent {
    transition: all 0.4s;
    opacity: 1;
    visibility: visible; }

.pseudo-link {
  cursor: pointer; }
  @media only screen and (max-width: 74em) {
    .pseudo-link {
      display: none; } }

