* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

*::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --nav-height: 60px;
  --nav-bottom: 70px;
  --slider-padding: 2.5rem;
  --handle-size: 2.5rem;
  --handle-size-mobile: .5rem;
  --img-gap: .25rem;
  --mobile-padding: 0 .25rem;
  --mobile-header: 0 .5rem;
  --items-per-screen-featured: 1.5;
  --youtube-container: calc((9 / 16) * 100%);
}

html {
  background-color: black;
  overflow-x: hidden;
}

body {
  padding-top: var(--nav-height);
  padding-bottom: var(--nav-bottom);
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(rgb(16, 23, 34), rgb(11, 15, 20)); */ /* Blue Theme */
  background: linear-gradient(rgb(17 17 17 / 80%), rgba(12, 12, 12, 0.8));
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.modal-anchor {
  cursor: default;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

@supports(padding:max(0px)) {
  body, header, footer {
      padding-left: min(10vmin, env(safe-area-inset-left));
      padding-right: min(10vmin, env(safe-area-inset-right));
  }
}

/* Scroll Bar */

body::-webkit-scrollbar {
  width: 12px;               
}

body::-webkit-scrollbar-track {
  /* background: linear-gradient(rgb(10, 15, 22), rgb(13, 18, 27)); */ /* Blue Theme */
  background: linear-gradient(rgb(17, 17, 17, 0.8), rgb(12, 12, 12, 0.8));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

body::-webkit-scrollbar-thumb {
  /* background-color: rgb(18, 25, 37); */ /* Blue Theme */
  background-color: rgb(25, 25, 25);
  filter: blur(20px);    
  border-radius: 20px;    
}

/* Visible */

.logo:focus-visible,.search-btn:focus-visible,.cancel-btn:focus-visible {
  outline: rgba(228, 228, 228, 0.8) solid 2px;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.default-cursor {
  cursor: default !important;
}

/* Loader */

/* .img-desktop,
.img-mobile,
.featured-img-desktop,
.featured-img-mobile {
  display: none;
} */

/* Default state: hide all images initially */
.img-desktop, .featured-img-desktop, .img-mobile, .featured-img-mobile {
  display: none;
  background: transparent;
}

/* Display desktop images for screens 1024px and above */
@media (min-width: 1024px) {
  .img-desktop, .featured-img-desktop {
      display: block;
      opacity: 1;
      transition: opacity .5s;
  }
  .img-mobile, .featured-img-mobile {
    display: none !important;
  }
  .main-modal {
    top: 0;
  }
}

/* Display mobile images for screens below 1024px */
@media (max-width: 1023px) {
  .img-mobile, .featured-img-mobile {
      display: block;
      opacity: 1;
      transition: opacity .5s;
  }
  .img-desktop, .featured-img-desktop {
    display: none !important;
  }
  .loader {
    display: none !important;
  }
  .main-modal {
    top: 10%;
  }
}

.img-mobile[imageLoaded='false'],
.img-desktop[imageLoaded='false'],
.featured-img-mobile[imageLoaded='false'],
.featured-img-desktop[imageLoaded='false'] 
{
    opacity: 0;
}

.loader {
  display: block;
  position: absolute;
  border-bottom: 8px solid rgb(52, 152, 219, .3);
  filter: blur(8px);
  width: 95%;
  height: 100%;
  background: linear-gradient(transparent, rgba(84, 166, 221, .2));
  animation: load 2s linear infinite;
}

@keyframes load {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  /* background-color: rgba(17, 21, 31, 0.8); */ /* Blue Theme */
  background-color: rgb(17,17,17,.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  z-index: 999;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  height: 70%;
  margin: 10px 0;
  text-align: left;
  width: auto;
}

.primary-nav {
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
}

.secondary-nav {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.drop-nav {
  display: none;
  margin-top: 60px;
  top: 0;
  position: fixed;
  height: 40px;
  width: 100%;
  /* background-color: rgb(16, 20, 29, 0.8); */ /* Blue Theme */
  background-color: rgb(16 16 16 / 80%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 100%;
  box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.links .link {
  min-width: 80px;
  text-align: center;
}

.nav--hidden {
  transform: translateY(calc(-1 * var(--nav-height)));
  transition: 1s ease;
}

.right-header-container {
  display: flex;
  align-items: center;
}

.account-icon,
.guest-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 35px;
  height: 35px;
  /* background: linear-gradient(#d8c078, #b39545); */
  background: linear-gradient(#d8c078, #ba8a48);
  cursor: pointer;
}

.account-dropdown-container .account-list-item {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-items: center;
}

.account-dropdown-container {
  padding: 2rem;
  display: none;
  position: absolute;
  right: 0px;
  margin-top: 4rem;
  margin-right: 1rem;
  width: 400px;
  opacity: 0;
  background: rgba(12, 12, 12, .8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
  box-shadow: 0 4px 25px 5px rgba(0, 0, 0, 0.5);
  transition: all 3ms ease;
}

.account-dropdown-container button,
.account-dropdown-container a,
.account-dropdown-container a:hover {
  color: white;
  font-size: 1rem;
}

.account-dropdown-container button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.account-dropdown-container li {
  display: flex;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: .5rem .8rem;
  cursor: pointer;
  background-color: rgba(21, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(55, 55, 55, 0.1);
  border-radius: 30px;
  /* margin-bottom: .3rem; */
  margin: .5rem;
  opacity: 0;
  aspect-ratio: 1 / 1;
  /* height: 100%; */
  /* width: 150px; */
}

.account-dropdown-container li:hover {
  background-color: rgba(31, 29, 29, 0.5);
}

.account-dropdown-container li.fade-in {
  animation: fadeIn 0.5s forwards;
}

.account-dropdown-container li.fade-out {
  animation: fadeOut 0.5s backwards;
}

.account-dropdown-container li.show {
  opacity: 1 !important;
}

.account-dropdown-container li.fade-in:nth-child(1) {
  animation-delay: 0s;
}

.account-dropdown-container li.fade-in:nth-child(2) {
  animation-delay: 0.1s;
}

.account-dropdown-container li.fade-in:nth-child(3) {
  animation-delay: 0.2s;
}

.account-dropdown-container li.fade-in:nth-child(4) {
  animation-delay: 0.3s;
}

.account-dropdown-container li.fade-in:nth-child(5) {
  animation-delay: 0.4s;
}

.account-dropdown-container li.fade-out:nth-child(1) {
  animation-delay: 0.4s;
}

.account-dropdown-container li.fade-out:nth-child(2) {
  animation-delay: 0.3s;
}

.account-dropdown-container li.fade-out:nth-child(3) {
  animation-delay: 0.2s;
}

.account-dropdown-container li.fade-out:nth-child(4) {
  animation-delay: 0.1s;
}

.account-dropdown-container li.fade-out:nth-child(5) {
  animation-delay: 0s;
}

.account-dropdown-container li:nth-child(1),
.account-dropdown-container li:nth-child(2),
.account-dropdown-container li:nth-child(3) {
  grid-column: 1 / span 2;
  height: 50px !important;
  width: 100% !important;
}

.account-dropdown-container li:nth-child(1) h4,
.account-dropdown-container li:nth-child(2) h4,
.account-dropdown-container li:nth-child(3) h4  {
  margin-bottom: 0;
}

.account-dropdown-container li:nth-child(1) a,
.account-dropdown-container li:nth-child(2) a,
.account-dropdown-container li:nth-child(3) a {
  align-items: center;
}


@media screen and (max-width: 1024px) {
  .account-dropdown-container {
    width: 100%;
    right: 0;
    margin-top: 0;
    margin-right: 0;
    padding: 0;
  }

  .account-dropdown-container li {
    padding: 1rem;
    margin: 0;
    border-radius: 0;
  }

  .account-dropdown-container li:nth-child(1),
  .account-dropdown-container li:nth-child(2),
  .account-dropdown-container li:nth-child(3),
  .account-dropdown-container li:nth-child(4),
  .account-dropdown-container li:nth-child(6),
  .account-dropdown-container li:nth-child(8),
  .account-dropdown-container li:nth-child(10) {
    grid-column: 1 / span 2;
    height: 50px !important;
    width: 100% !important;
  }

  .account-dropdown-container li:nth-child(1) h4,
  .account-dropdown-container li:nth-child(2) h4,
  .account-dropdown-container li:nth-child(3) h4,
  .account-dropdown-container li:nth-child(4) h4,
  .account-dropdown-container li:nth-child(6) h4,
  .account-dropdown-container li:nth-child(8) h4,
  .account-dropdown-container li:nth-child(10) h4{
    margin-bottom: 0;
  }

  .account-dropdown-container li:nth-child(1) a,
  .account-dropdown-container li:nth-child(2) a,
  .account-dropdown-container li:nth-child(3) a,
  .account-dropdown-container li:nth-child(4) a,
  .account-dropdown-container li:nth-child(6) a,
  .account-dropdown-container li:nth-child(8) a,
  .account-dropdown-container li:nth-child(10) a {
    align-items: center;
  }

  li[data-type="desktop"] {
    display: none;
  }

  li[data-type="mobile"] {
    display: block;
  }
}

@media (min-width: 1024px) {
  li[data-type="mobile"] {
      display: none;
  }
  li[data-type="desktop"] {
      display: block;
  }
}

.account-list-items {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
}

.account-list-items a{
  color: white;
  font-size: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.account-list-items .account-icon .fa-user,
.account-list-items .account-icon .fa-home,
.account-list-items .account-icon .fa-heart,
.account-list-items .account-icon .fa-right-from-bracket,
.account-list-items .account-icon .fa-dice {
  font-size: 2.5rem !important;
  color: #d8c078 !important;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.account-list-items .account-icon {
  border-radius: 20%;
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 32, 32, .8);
  /* border: 2px solid #d8c078; */
  /* background: linear-gradient(#d8c078, #b39545); */
  /* background: linear-gradient(#d8c078, #ba8a48); */
  box-shadow: 0px 10px 15px 0px rgba(10, 10, 10, .7);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.account-list-items .account-icon:hover {
  background: linear-gradient(#d8c078, #ba8a48) !important;
}

.account-list-items .account-icon:hover .fa-user,
.account-list-items .account-icon:hover .fa-home,
.account-list-items .account-icon:hover .fa-heart,
.account-list-items .account-icon:hover .fa-right-from-bracket,
.account-list-items .account-icon:hover .fa-dice  {
  color: #151414 !important;
}

.account-list-items h4 {
  margin-bottom: .5rem;
  transition: font-size 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: font-size 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
   -moz-transition: font-size 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition: font-size 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transition: font-size 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.account-list-items a:hover h4 {
  font-size: 1.05rem;
}

.account-icon-container {
  display: flex;
  justify-content: center;
  position: absolute;
  /* top: -10px; */
  top: 8px;
  left: 0;
  width: 100%;
  height: 100px;
  aspect-ratio: 1 / 1;
  align-items: center;
}

.account-list-items a:hover .account-icon-container {
  animation: icon-jump .6s linear;
}

@keyframes icon-jump {
  0% {
    top: 8px;
  }
  10% {
    top: 0;
  }
  50% {
    top: -8px;
  }
  90% {
    top: 8px;
  }
}

.footer-mobile .account-icon-container {
  position: relative;
  height: auto !important;
  aspect-ratio: unset !important;
  top: unset !important;
}

.footer-mobile .account-icon-container .account-icon {
  color: rgb(10, 10, 10);
}
.footer-mobile a {
  display: flex;
  align-items: center;
  flex-direction: column;
}


.account-element .fa-xmark {
  width: 35px !important;
  height: 35px !important;
  transition: all 1s ease;
  opacity: 1 !important;
  color: black;

}

.fa-bars {
  transition: all 1s ease;
  opacity: 1;
}

.menu-icon-transform {
  transform: rotate(360deg);
  opacity: 0;
}

.account-dropdown-container.fade-in {
  opacity: 1;
}

.account-dropdown-container.fade-out {
  opacity: 0;
}

/* Search Bar */

.search-box {
  position: relative;
  height: 35px;
  width: 35px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.search-box.active {
  width: 200px;
}

.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  color:#d8c078;
  /* background:rgb(23, 31, 44); */ /* Blue Theme */
  background:rgb(25, 25, 25);
  font-size: 14px;
  border-radius: 50px;
  padding: 0 35px 0 15px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.search-box input.active {
  opacity: 1;
}

.search-box .search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  /* color: rgb(23, 31, 44); */ /* Blue Theme */
  color: rgb(17,17,17);
  /* background: linear-gradient(#d8c078, #b39545); */
  background: linear-gradient(#d8c078, #ba8a48);
  border: 0px solid rgb(27, 38, 54);
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
}

.search-box .search-btn.active {
  height: 32px;
  width: 32px;
  color: #d8c078;
  /* background: rgb(23, 31, 44); */ /* Blue Theme */
  background:rgb(25, 25, 25);
  /* border: 3px solid rgb(23, 31, 44); */ /* Blue Theme */
  border: 3px solid rgb(25, 25, 25);
  line-height: 32px;
  right: 1px;
  transform: translateY(-50%) rotate(360deg);
}

.search-box .cancel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8c078;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(360deg);
  transition: all 0.5s 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 18px;
  cursor: pointer;
}

.search-box .cancel-btn.active {
  right: -20px;
  transform: translateY(-50%) rotate(360deg);
}

:focus-visible {
  outline: none;
}

::placeholder {
  color: #d8c078;
}

.nav-element {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}

.search-box.active .nav-element {
  padding: 10px 30px 10px 10px !important;
}

/* Tooltips */

.watchlist-btn,
.open {
  position: relative;
  display: inline-block;
}

.watchlist-btn[data-tooltip]::after,
.open[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 150%; 
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  white-space: nowrap;
  z-index: 1;
}

.watchlist-btn[data-tooltip]::before,
.open[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: 100%; 
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.watchlist-btn:hover[data-tooltip]::after,
.watchlist-btn:hover[data-tooltip]::before,
.open:hover[data-tooltip]::after,
.open:hover[data-tooltip]::before {
  opacity: 1;
  visibility: visible;
}

/* Registration/Login */

.login-container,
.registration-container {
  max-width: 400px;
}

.registration-login-container {
  height: 100%;
  width: 80%;
  /* max-width: 400px; */
  padding: 3rem 0;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.registration-login-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #0e0f1077;
  border-radius: 24px;
  padding: 1rem;
  border: 2px solid #d8c078;
}

.login-container .registration-login-card,
.registration-container .registration-login-card {
  padding: 0;
}

.form-card-content {
  padding: 3rem;
}

.login-container .form-card-content,
.registration-container .form-card-content {
  padding: 0 3rem 3rem 3rem;
}

.registration-login-card h1 {
  color: #d8c078;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  text-align: center;
  word-break: break-all;
}

.login-container .registration-login-card h1,
.registration-container .registration-login-card h1 {
  padding: 3rem;
}

.registration-login-card h3 {
  color: #d8c078;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  text-align: center;
}

.registration-login-card .country-selection-container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.registration-login-card .country-selection-container p {
  color: #d8c078;
  margin-bottom: 1rem;
  text-align: center;
}

.registration-login-card #country-selection,
.registration-login-card .country-search {
  margin: 0;
  width: 100% !important;
}

.search-adj {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.registration-login-card .country-dropdown {
  width: 100%;
  margin: 0;
  overflow-y: hidden;
  background: rgba(12, 12, 12, 1);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background: rgba(32, 32, 32, .5);
  backdrop-filter: blur(20px);
}

.guest-country-search {
  backdrop-filter: none !important;
}

.provider-selection-container {
  padding: 1rem 0 0 0;
}

.provider-selection-container p {
  color: #d8c078;
  text-align: center;
  padding: 1rem 0;
}

.provider-search {
  color: white;
  width: 100%;
  padding: .5rem 1rem;
  text-align: center;
  background: rgba(32, 32, 32, .5);
  border-radius: 24px;
  border: none;
  margin-bottom: 1rem;
}

.provider-search::placeholder {
  color: white;
}

.provider-selection {
  display: flex;
  margin-bottom: 1rem;
  justify-content: center;
  gap: 2px;
  margin: 2rem 0 0 0;
}

.providers-list {
  display: flex;
  flex-direction: row;
  height: auto;
  overflow-x: scroll;
}

.providers-list li {
  display: flex;
  height: 100%;
  margin: 0 .2rem;
  cursor: pointer;
  list-style-type: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.provider-list-selected {
    background: #202020;
    border-radius: 12px;
}

.providers-list li img {
  width: 70px;
  margin: 5px;
  padding: 5px;
  border-radius: 20px;
}

.providers-list li p {
  color: white;
  font-size: .8rem;
  text-align: center;
  width: 70px;
}

.provider-selection input {
  position: absolute;
}

.provider-selection label {
  display: inline-flex;
  width: 80px;
  font-size: .8rem;
  padding: .5rem;
  color: rgb(128, 128, 128);
  background: rgba(32, 32, 32, .5);
  border-radius: 4px !important;
  justify-content: center;
  cursor: pointer;
}

.provider-selection label:hover {
  background: rgb(46 45 45 / 50%);
}

.register-login-btn {
  background: linear-gradient(#d8c078, #b39545);
  border: 2px solid #0e0f1077;
  font-size: 18px;
  font-weight: 200;
  width: 100%;
  height: 4rem;
  border: none;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  cursor: pointer;
}

.register-login-form {
  width: 100%;
}

.form-input {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 2rem;
}

.form-input:last-child {
  margin: 0;
}

.registration-container .form-input:nth-child(3) {
  margin-bottom: 3rem;
}

.form-input input {
  color: white;
  max-width: 350px;
  padding: 8px 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #1e2026;
  font-size: 14px;
  font-weight: 300;
  transition: 300ms ease;
}

.form-input input:focus {
  outline: none;
  border-color: #ac9046;
  box-shadow: 0 1px 0 0 #ac9046;
}

.form-input label {
  color: #ceb266;
  font-weight: 500;
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 300ms ease;
}

.form-input input:focus + label,
.form-input input:not(:placeholder-shown) + label {
  transform: translateY(-27px);
}

.registration-login-container .gold-link {
  color: #ceb266;
  text-decoration: none;
  margin-bottom: 1rem;
}

.login-container .gold-link,
.registration-container .gold-link {
  margin-top: 1rem;
  margin-bottom: 0;
}

.gold-link:visited {
  color: #ceb266;
}

.alert {
  text-align: center;
  color: rgb(220 39 39);
  margin-top: 2rem;
}

.alert-success {
  color: rgb(54, 243, 64);
}

.login-icon {
  width: 100px;
}

/* Welcome Modal */

.opening-fade {
  display: block;
  opacity: 1;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100vh;
  transition: all 0.5s ease;
  overflow-y: scroll;
  background-color: black;
}

.welcome.modal {
  display: none;
  opacity: 0;
}

.welcome-modal-container {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(3px);
  transition: all 0.5s ease;
  overflow-y: scroll;
}

.welcome-modal-container .modal {
  height: auto;
}

.welcome-modal-container .registration-login-container {
  padding: 0;
}

.welcome-modal .modal {
  width: 80%;
}

.welcome-modal h3 {
  font-size: 2.5rem;
  text-align: center;
}

.welcome-modal p {
  color: white;
  text-align: center;
}

.country-select-p {
  height: 50%;
  padding: 1rem 2rem;
}

.welcome-modal .close {
  top: 0;
}

.welcome-modal .registration-login-container,
.welcome-modal .registration-login-card {
  width: 100%;
  height: 370px;
}

.welcome-modal .registraion-login-card {
  max-width: 400px;
}

.welcome-modal h1 {
  font-size: 2.5rem;
}

.welcome-modal .registration-login-card p {
  margin: 0;
  padding: 0 2rem 2rem 2rem;
  display: flex;
  align-items: center;
}

.guest-select {
  padding: 0 !important;
}

.welcome-text {
  padding: 0 !important;
}

.icon-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem 3rem 1rem 3rem;
  margin-bottom: 2rem;
}

.login {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-modal .account-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 12px;
  width: 35px;
  /* background: linear-gradient(#d8c078, #b39545); */
  background: linear-gradient(#d8c078, #ba8a48);
  cursor: pointer;
}

.login .account-icon {
  width: 100px;
  height: 100px;
}

.account-icon p {
  padding: .5rem 0 !important;
  color: rgb(23, 31, 44);
}

.login .fa-user {
  font-size: 3rem;
  height: unset;
}

.registration-login-card .fa-user {
    font-size: 3rem !important;
    color:rgb(17, 17, 17) !important; 
}

.right-header-container .fa-user {
  font-size: 1.3rem !important;
  color:rgb(17, 17, 17) !important; 
}

.provider-selection {
  display: flex;
  margin-bottom: 1rem;
}

.provider-selection input {
  appearance: none;
}

.provider-selection label {
  font-size: .8rem;
  min-width: 100px;
  text-align: center;
  padding: .5rem;
  color: rgb(128, 128, 128);
  background: rgba(32, 32, 32, .5);
}

.provider-selection input:checked + label {
  color: white;
  background: rgba(52, 52, 52, .5);
}

.provider-selection label:nth-child(2),
.provider-selection label:nth-child(5) {
  margin-right: 2px;
}

.provider-selection label:nth-child(2) {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.provider-selection label:nth-child(8) {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.welcome-modal .country-selection-container {
  display: flex;
  justify-content: center;
}

.welcome-modal .country-selection-container {
  width: 100% !important;
  max-width: 500px;
  height: 80%;
}

.welcome-modal .country-selection-container .country-selection {
  width: 70% !important;
  max-width: 500px;
  padding: .2rem;
  background: rgba(32, 32, 32, .5);
  border-radius: 24px;
}

.welcome-modal .country-selection-container input {
  width: 100% !important;
  margin: 0;
  text-align: left;
  background: none;
}

.welcome-modal .country-dropdown {
  width: 100%;
}

.welcome-modal .country-option {
  text-align: center;
  cursor: pointer;
}

.welcome-modal .confirm-country {
  justify-content: center;
  right: 5%;
  width: 20%;
  font-size: .8rem;
  color: white;
  border: none;
  padding: .3rem;
  border-radius: 8px;
  background: rgba(12, 12, 12, .2);
  cursor: pointer;
}

.welcome-modal .modal-content {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.show {
  display: block; 
  opacity: 1;
}

.welcome-fade-in {
  animation: welcomeFadeIn 2s forwards;
}

@keyframes welcomeFadeIn {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}

.welcome-fade-out {
  animation: welcomeFadeOut 2s forwards;
}

@keyframes welcomeFadeOut {
  0% {
    opacity: 1;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

.opening-fade-out {
  animation: welcomeFadeOut 10s forwards;
}

@keyframes welcomeFadeOut {
  0% {
    opacity: 1;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

/* Provider Modal */

.provider-container {
  opacity: 1 !important;
  width: 100%;
  height: 100%;
}

.provider-modal-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: auto;
}

/* Main */

.main-content {
  margin-top: 0px;
}

.content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

.centered {
  display: flex;
  justify-content: center;

}

.links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  color: #d8c078;
  font-weight: initial;
  padding: .1rem 0;
}

.links .link {
  cursor: pointer;
  transition: all 300ms ease;
}

.footer .links {
  width: 100%;
  border: 4px solid rgba(10, 10, 10, 0.5);
}

.footer .links:hover {
  background-color: rgba(35, 35, 35, 0.5);
}

.links .link:hover {
  color: #ffecb2;
  font-weight: 600;
}

::-webkit-scrollbar {
  display: none;
}

/* Footer */

.footer-mobile {
  height: 70px;
  /* background: linear-gradient(rgba(11, 14, 20, 0.8), rgba(10, 13, 19, 1)); */ /* Blue Theme */
  background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(10, 10, 10, 1));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: none;
  justify-content: space-evenly;
  position: fixed;
  bottom:-70px;
  width: 100%;
  transition: 1s ease;
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.footer--hidden {
  transform: translateY(calc(-1 * var(--nav-bottom)));
  transition: 1s ease;
}

.footer-desktop {
  color: #d8c078;
  /* background: linear-gradient(rgb(16, 23, 34), rgb(23, 31, 44)); */
  height: 300px;
  padding: 0px 50px;
  border-top: 4px solid #ac9046;
}

.footer-logo {
  display: flex;
  align-items: center;
  height: 60px;
  margin: 10px 0;
  text-align: left;
  width: auto;
}

.footer-desktop h3 {
  padding-bottom: 1rem;
}

.footer-top {
  justify-content: space-between;
  padding: 40px 0 0 0;
}

.socials .links{
  padding: 0 0.5rem;
  font-size: 20px;
}

.footer-newsletter-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.footer-newsletter {
  display: flex;
  justify-content: center;
  height: 60px; 
  background-color: rgb(12 16 23);
  /* background: rgb(23, 31, 44); */
  color: #d8c078;
  font-weight: 600;
  width: 600px;
  position: absolute;
  border-radius: 35px;
  border: 3px solid #b39545;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-newsletter > form {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.footer-newsletter > form > label {
  padding: 0 20px;
  font-weight: bold;
  font-size: 14px;
  
}

.footer-newsletter > form > input {
  border-radius: 14px;
  border: 0;
  height: 30px;
  padding: 0 20px;
  color: #d8c078;
  background-color: rgb(18 24 34);
}

.footer-newsletter > form > button {
  display: flex;
  align-items: center;
  margin: 0 10px;
  flex: 1;
  flex-grow: 0;
  font-size: 14px;
  padding: 10px 20px;
  height: 30px;
  border-radius: 14px;
  border: 3px solid rgba(0,0,0,0);
  background-color: rgb(18 24 34);
  color: #d8c078;
  cursor: pointer;
}

.footer-newsletter > form > button:hover {
  background: linear-gradient(#d8c078, #b39545);
  border: 3px solid black;
  color: black;
}

.footer-newsletter ::placeholder {
  color: #d8c078;
}

.footer-middle {
  display: flex;
  justify-content: center;
}

.footer-item {
  padding: 0 40px;
  text-align: center;
}

.footer-bottom {
  height: 50px;
}

.conditions {
  padding: 20px 0;
  justify-content: space-between;
  align-items: center;
}

.item {
  padding: 5px;
}

/* BASE SLIDER */

.main-slider {
  margin: 1.2rem 0;
}

.slider-header {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding: 0 calc(var(--img-gap) * 2 + var(--handle-size));
  align-items: center;
}

.title {
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  font-weight: 600;
  margin: 0;
  margin-bottom: 1rem;
  letter-spacing: .1rem;
  text-decoration: none;
  text-underline-offset: 5px;
}

/* .title::before {
  content: '';
  background: transparent;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  transition: width .5s ease;
} */

/* .title:hover::before {
  display: inline-block;
  background: #4c4c4c;
  width: 100%;
} */

.title::after {
  content: ' ';
  display: inline-block;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  height: 10px;
  width: 10px;
  transform: translateX(8px) rotate(-45deg);
  transition: all 1s ease;
}

.hovered-slider::after {
  display: inline-block;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: translateX(8px) rotate(-45deg);
  animation: bounceIn 1s ease;
}

.hovered-title::after {
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: translateX(8px) rotate(-45deg);
  animation: bounce 1s ease;
}

.hover-transition::after {
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: translateX(8px) rotate(-45deg);
  animation: bounce-transition 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: translateX(0px) rotate(-45deg);
  }
  100% {
    transform: translateX(8px) rotate(-45deg);
  }
}

@keyframes bounce {
  0% {
    transform: translateX(0px) rotate(-45deg);
  }
  50% {
    transform: translateX(12px) rotate(-45deg);
  }
  100% {
    transform: translateX(8px) rotate(-45deg);
  }
}

@keyframes bounce-transition {
  0% {
    transform: translateX(8px) rotate(-45deg);
  }
  50% {
    transform: translateX(12px) rotate(-45deg);
  }
  100% {
    transform: translateX(8px) rotate(-45deg);
  }
}

.progress-bar {
  gap: .2rem;
}

.main-slider:hover .progress-bar {
  display: flex;
}

.progress-item {
  flex: 0 0 1rem;
  height: .05rem;
  min-width: 1rem;
  background-color: rgb(216, 192, 120, .5);
}

.progress-item.active {
  background-color: rgb(216, 192, 120, 1);
}

.container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  touch-action: pan-y;
}

.slider {
  --items-per-screen: 4;
  --slider-index: 0;
  display: flex;
  flex-grow: 1;
  overflow-y: hidden !important;
  width: calc(100% - 2 * var(--slider-padding));
  transform: translateX(calc(var(--slider-index) * - 100%));
  transition: transform 250ms ease-in-out;
}

.card-mobile {
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: var(--img-gap);
  transform: translateX(0%);
  flex: 0 0 calc(100% / var(--items-per-screen));
  max-width: calc(100% / var(--items-per-screen));
  cursor: pointer;
}

.card-desktop {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: var(--img-gap);
  transform: translateX(-0%);
  flex: 0 0 calc(100% / var(--items-per-screen));
  max-width: calc(100% / var(--items-per-screen));
  cursor: pointer;
  transition: all 300ms ease;
  transform: scale(1.04);
}

.card-actor {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: var(--img-gap);
  transform: translateX(-0%);
  flex: 0 0 calc(100% / var(--items-per-screen));
  max-width: calc(100% / var(--items-per-screen));
  cursor: pointer;
}

.dummy-card {
  visibility: hidden;
  min-width: 4px;
  padding-right: 4px;
}

.card-desktop:hover {
  transform: scale(1.06);
}

.card-mobile > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: .4rem;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.card-desktop > img,
.card-actor img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: .4rem;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  margin: .8rem;
}

/* .card-desktop:hover img {
  margin: .7rem;
} */

.logo-container-cards {
  display: none;
  position: absolute;
  bottom: 5px;
  left: 10px;
  z-index: 999;
}

.logo-container-cards img {
  width: 35%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.card-title {
  display: none !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: var(--img-gap);
  min-height: 20px;
  padding: 10px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 2px 0px 2px rgba(0, 0, 0, 0.5);
  justify-content: left;
  align-items: center;
}

.no-logo {
  display: block !important;
  z-index: 9;
}

.handle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 0;
  flex-shrink: 0;
  width: var(--handle-size);
  color: white;
  z-index: 10;
  margin: .25rem 0;
  font-size: 3rem;
  line-height: 0;
  cursor: pointer;
  text-align: center;
  outline: none;
  border: none;
  transition: font-size 150ms ease-in-out;
}

.handle:hover {
  font-size: 4rem;
}

.container:hover .left-handle::after {
  content: "\2039";
  display: flex;
  align-items: baseline;
  position: relative;
  transform: translateY(5px);
  justify-content: center;
}

.container:hover .right-handle::after {
  content: "\203A";
  display: flex;
  align-items: baseline;
  position: relative;
  transform: translateY(5px);
  justify-content: center;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

.transparent {
  background-color: transparent !important;
}

.transparent {
  background-color: transparent !important;
}

.left-handle {
  /* background: linear-gradient(90deg,  rgba(0,0,0,.8), rgba(0,0,0,.4) 80%, rgba(0,0,0,0)); */
  transition: all 300ms ease;
}

.right-handle {
  /* background: linear-gradient(-90deg,  rgba(0,0,0,.8), rgba(0,0,0,.4) 80%, rgba(0,0,0,0)); */
  transition: all 300ms ease;
}

.left-handle:hover{
  background-color: rgba(17, 17, 17, .3) !important;
}

.right-handle:hover{
  background-color: rgba(17, 17, 17, .3) !important;
}

/* Featured Slider */

.featured-slides {
  overflow-x: auto;
  overflow-y: hidden !important;
  padding: 0 0 10px 0;
  position: relative;
}

.featured-slider {
  margin: 1rem 0;
}

.featured {
  padding: 0 2.5rem;
}

.featured-card-desktop div[class=".no-logo"] {
  display: none !important;
}

.featured-card-desktop .logo-container-cards {
  display: none;
}

.featured-card-desktop > .card-title {
  display: none;
}

.featured-card-mobile > .card-title {
  display: none;
}

.featured-card-mobile {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: var(--img-gap);
  transform: translateX(0%);
}

.featured-card-desktop {
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: var(--img-gap);
  transform: translateX(0%);
  cursor: pointer;
  margin: 0 0.2rem;
}

.featured-img-desktop {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: .4rem;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.featured-img-mobile {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: .4rem;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.featured-card-mobile {
  flex: 0 0 calc(100% / var(--items-per-screen-featured));
  max-width: calc(100% / var(--items-per-screen-featured));
}

.featured-card-desktop {
  flex: 0 0 calc(100% / var(--items-per-screen-featured));
  max-width: calc(100% / var(--items-per-screen-featured));
}

.slider::-webkit-scrollbar {
  width: 100%;
  height: 10px;
  position: absolute;
  padding: 10px 0;
  top: 20px;
}

.slider::-webkit-scrollbar-track {
  /* background: linear-gradient(90deg, rgb(6, 9, 14)0%, rgb(12, 17, 26) 20%,#0b0d11 50%,rgb(12, 17, 26) 70%, rgb(6, 9, 14)100%); */ /* Blue Theme */
  background: linear-gradient(90deg, rgb(10, 10, 10)0%, rgb(13,13,13) 20%, rgb(12, 12, 12) 50%, rgb(13,13,13)70%, rgb(10, 10, 10)100%);
}

.slider::-webkit-scrollbar-thumb {
  /* background-color: rgb(15, 21, 32); */ /* Blue Theme */
  background-color: rgb(18, 18, 18);
  border-radius: 12px;
}

.slider::-webkit-scrollbar-thumb:hover {
  /* background-color: rgb(18, 25, 37); */ /* Blue Theme */
  background-color: rgb(23, 23, 23);
}

/* Banner Slider */


.banner-slider-main-slide {
  position: relative;
  height: 120vw;
  width: 100%;
  overflow: hidden;
}

.banner-slider {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  gap: 1px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.banner-card-desktop img {
  border-radius: 8px;
  transform: scale(.9);
  transition: all 300ms ease-in-out;
}

.banner-card-desktop.active img {
  transform: scale(1);
}

.banner-card-mobile {
  height: 100%;
  display: none;
}

.banner-card-mobile img {
  border-radius: 12px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.4);
}

.banner-card-mobile img {
  transform: scale(0.85);
}

.banner-card-mobile.active {
  display: flex;
  justify-content: center;
}

.banner-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
}

.banner-image img {
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(black 60%, transparent);
}

.banner-image img {
  opacity: 0;
  transition: all .3s ease-in-out;
}

.logo-container-banner img[alt="Banner Card Logo"] {
  transition: all 2s ease-in-out;
}

.banner-image img.loaded {
  display: block;
  opacity: 1;
}

.banner-text-mobile,
.banner-text-desktop {
  display: block;
  position: relative;
  font-size: 2vw;
  top: 0;
  left: 0;
  color: white;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(16, 23, 34, 0)60%, rgba(16, 23, 34, 1));
  pointer-events: none;
}

.banner-card-desktop {
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: var(--img-gap);
  transform: translateX(0%);
  transition: height 0.3s ease-in-out;
  flex: 0 0 calc(100% / var(--items-per-screen));
  max-width: calc(100% / var(--items-per-screen));
  cursor: pointer;
}

.banner-card-desktop .card-title {
  display: none;
}

.hidden {
  display: none;
}

/* Banner Content */

.banner-slider-main-slide.desktop .banner-slider {
  display: flex;
  position: absolute;
  width: 20vw !important;
  padding: 0;
  height: 30%;
  top: 65%;  
  left: 5%;
}

.banner-content-desktop {
  position: absolute;
  width: 20vw;
  bottom: 35%;
  left: 5%;
}

.banner-card-desktop.active {
  display: flex;
}

.banner-card-desktop {
  display: none;
  align-items: start;
  aspect-ratio: unset;
  position: absolute;
  width: 100% !important;
  height: auto;
  top: 0;
  padding: 0;
}

.banner-title {
  text-align: center;
}

.banner-overview-container {
  margin: 1rem 0 0 0 !important;
  padding: 1.5rem 1rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: rgba(12, 12, 12, 0.4);
  backdrop-filter: blur(1px);
}

.banner-overview {
  position: relative;
  color: white;
  opacity: .8;
  font-size: .9vw;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  /* -webkit-line-clamp: 5; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner-card-desktop .banner-content-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.banner-slider .popularity {
  display: none;
}

.banner-card-desktop.active .popularity {
  display: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 60px;
}

.banner-button {
  display: none;
  cursor: pointer;
  width: 100%;
  height: 40px;
  border: 0;
  color: white;
  font-size: 1rem;
  padding: .3rem .5rem;
  background: rgba(12, 12, 12, .3);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  backdrop-filter: blur(1px);
  opacity: 90%;
}

.banner-card-desktop.active .banner-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 480px){
  .banner-card-mobile.active .banner-button {
    display: none;
  }
}

.banner-card-desktop .banner-img {
  display: none;
}

.banner-card-desktop .banner-logo {
  display: none;
}

.banner-card-desktop .overview {
  display: none;
}

@media screen and (min-width: 480px) {

  .banner-card-mobile.active {
    display: block !important;
  }

  .banner-card-mobile.active .banner-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .banner-card-mobile.active .banner-content-bottom {
    display: flex;
  }

  .banner-slider-main-slide.mobile .banner-slider {
    display: flex;
    position: absolute;
    width: 20vw !important;
    padding: 0;
    height: 30%;
    top: 65%;  
    left: 5%;
  }

  .banner-card-mobile .banner-content-bottom {
    display: none;
  }
  
  .banner-content-mobile {
    position: absolute;
    width: 20vw;
    bottom: 35%;
    left: 5%;
  }
  
  .banner-card-mobile {
    aspect-ratio: unset;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
  }

  .banner-card-mobile .banner-img {
    display: none;
  }

  .banner-card-mobile .banner-button {
    width: 70px;
    height: 30px;
    color: white;
    font-size: 12px;
  }

  .banner-content-mobile .banner-overview {
    font-size: .8vw;
  }
}

@media screen and (min-width: 600px) {
  .banner-slider-main-slide.mobile .banner-slider {
    top: 70%;  
  }
  
  .banner-content-mobile {
    bottom: 30%;
  }  

  .banner-content-mobile .banner-overview {
    font-size: .8vw;
  }
}

.banner-card-mobile .banner-logo {
  display: none;
}

.banner-card-mobile .overview {
  display: none;
}

/* Search Banner */

.search-banner-container {
  height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.search-bar-container .search-btn {
  z-index: unset;
}

.search-banner-header {
  font-size: 3rem;
  color: #ad8345;
  text-align: center;
  font-family: "Quicksand", sans-serif;
}

.search-banner-text {
  color: #d5b585;
  text-align: center;
}

.country-selection-container {
  width: 200px;
}

.country-selection-container .country-selection,
.country-selection-container input {
  width: 200px !important;
  display: flex;
  align-items: center;
}

.country-selection-container .selected-country {
  margin: 1rem 0;
  padding: 0;
  color: white;
}

/* Search Modal */

.search-modal-container.show, 
.search-modal-container.show .search-modal {
  display: block; 
  opacity: 1;
}

.search-modal-container {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  transition: all 0.5s ease;
  overflow-y: scroll;
}

.search-modal {
  display: none;
  opacity: 0;
  width: 80%;
  position: relative;
  left: 50%;
  top: 12%;
  transform: translate(-50%, 0%);
}

.search-modal .modal-background {
  position: absolute;
}

.search-modal-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
}

.search-results,
.person-content {
  width: 100%;
  height: 100%;
  display: grid;
  /* grid-template-columns: 16% 16% 16% 16% 16% 16%; */
  grid-template-columns: 33% 33% 33% !important;
  justify-content: center;
}

.card {
  display: flex;
  width: 100%;
  padding: var(--img-gap);
  transform: translateX(0%);
  cursor: pointer;
}

.card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: .4rem;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.search-modal-content-middle .container {
  flex-direction: column;
}

.recommended-title {
  padding-left: .50rem;
  margin-bottom: 1rem;
}

.recommendation-nav {
  padding: 0 1rem;
}

.recommendation-nav button {
  width: 100%;
  height: 2.5rem;
  color: white;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(12, 12, 12, .8);
  border: 0;
  border-radius: 4px;
}

.recommendation-nav button:hover {
  background: rgba(12, 12, 12, .6);
}

/* Actor Cards */

.actor-name-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 15%;
  text-align: center;
}

.actor-name {
  font-family: "Quicksand", sans-serif;
  position: absolute;
  color: white;
  z-index: 3;
  font-size: .6rem;
  transition: font-size 0.3s ease;
}

.actor-name-background {
  position: absolute;
  right: 50%;
  bottom: 0%;
  transform: translate(50%, 0%);
  width: 97%;
  height: 75%;
  border-bottom-left-radius: .4rem;
  border-bottom-right-radius: .4rem;
  background: rgb(54 56 58 / 50%);
  margin: var(--img-gap);
  backdrop-filter: blur(2px);
  z-index: 2;
}

/* Modal */

.modal-container, .modal {
  position: absolute;
  width: 300px;
  height: 270px; 
  border-radius: 10px;
  transform: translate(-50%, -50%)scale(1.1);
  transition: all 3s ease;
}

.modal-container {
  box-shadow: 0 5px 25px 2px rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal-container.show {
  display: block; 
  opacity: 1;
}

.modal {
  top: 50%;
  left: 50%;
  z-index: 1000;
  display: block;
  /* background-color: rgb(16, 23, 34); */
}

.first-card {
  transform-origin: left;
}

.last-card {
  transform-origin: right;
}

.featured-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-img {
  display: block !important;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: absolute;
  top: 0;
}

.modal-logo-position {
  top: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.modal-logo-position 
.modal-logo {
  position: absolute;
  bottom: 40%;
}

.modal-content {
  width: 100%;
  padding: 0.55rem;
  position: absolute;
  bottom: 0;
}

.modal-background {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
  /* background: rgba(16, 23, 34, .7); */ /* Blue Theme */
  background: rgba(17,17,17,.7);
  border-radius: 10px;
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 25px 2px rgba(0, 0, 0, 0.5);
}

.modal-content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
}

.modal-content-middle{
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}

.card-title-modal {
  min-height: 20px;
  width: 85%;
  color: white;
  font-weight: 600;
  font-size: .8rem;
  text-shadow: 2px 0px 2px rgba(0, 0, 0, 0.5);
  justify-content: left;
  align-items: center;
  z-index: 999;
}

.watchlist {
  margin-left: auto;
}

.open,
.watchlist-btn {
  cursor: pointer;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  border: 2px solid #424242;
  background: rgba(255, 255, 255, .05);
  z-index: 999;
}

.open:hover,
.watchlist-btn:hover {
  border: 2px solid #78787c;
}

.open:hover .fa-chevron-down,
.watchlist-btn:hover .fa-plus,
.watchlist-btn:hover .fa-check {
  color: #78787c;
}

.fa-chevron-down,
.fa-plus,
.fa-check {
  color: #444446;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fa-plus {
  height: 100%;
}

.logo-container {
  position: absolute;
  bottom: 0;
  left: 5px;
}

.logo-container img {
  width: 35%;
  height: auto;
}

.genres {
  color: white;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.genre-list {
  display: flex;
  align-items: center;
  height: 25px;
  padding: 0;
}

.genre-list-name {
  margin-left: 15px;
  padding-right: 15px;
}

.popularity {
  display: inline-flex;
  align-items: center;
  height: 25px;
  width: fit-content;
  color: white;
  padding: 0 4px;
  border: 2px solid rgb(27, 38, 56);
  border-radius: 4px;
  background: #121520;
}

.popularity span,
.runtime span,
.release-date span {
  font-size: 14px;
}

.runtime,
.release-date,
.watchlist {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding-left: 10px;
  color: white;
}

/* Main Modal */

.main-modal-container.show, 
.main-modal-container.show .main-modal {
  display: block; 
  opacity: 1;
}

.main-modal-container {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  transition: all 0.5s ease;
  overflow-y: scroll;
  padding-top: 6%;
  padding-bottom: 3%;
}

.main-modal {
  display: none;
  opacity: 0;
  width: 80%;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0%);
}

.main-modal-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--youtube-container) 2rem 2rem 2rem;
}

.main-modal .modal-background {
/* background: linear-gradient(180deg, black 5%,rgba(16, 23, 34, .7)15%); */ /* Blue Theme */ 
background: rgba(17, 17, 17, .7); /* Dark Theme */
position: absolute;
}

.main-modal-content-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin: .5rem 0 .3rem 0;
}

.main-modal-content-top-left {
  flex: 65%;
}

.main-modal-content-top-left div {
  margin: .3rem 0;
}

.main-modal-content-top-right {
  display: none;
  flex: 25%;
}

.main-modal-content-top-right div {
  margin: .3rem 0;
}

.main-modal-content-middle{
  padding-bottom: 1rem;
}

.main-modal-content-bottom .main-slider {
  margin: 1rem 0;
}

.overview {
  color: white;
  font-size: 12px;
  max-width: 90%;
}

.main-modal .genre-list,
.main-modal .actors-list {
  display: inline-flex;
  list-style-type: none;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
}

.main-modal .genre-list-name,
.main-modal .actors-list-name {
  margin: 0;
  padding: 0px 1px 0px 3px;
}

.actors-list a {
  color: unset;
  padding-left: 0.2rem;
  text-decoration: none;
  font-style: italic;
}

.actors-list a:hover {
  text-decoration: underline;
}

.main-modal .genres,
.main-modal .actors {
  white-space: unset;
}

.genres span,
.actors span {
  opacity: .6;
  padding-right: 5px;
}

.actors {
  color: white;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.actors-list {
  display: flex;
  padding: 0;
}

.actors-list-name {
  margin-left: 15px;
  padding-right: 15px;
}

.about-title {
  color: white;
  margin: 1rem 0;
}

.about-title span {
  padding-right: .5rem;
}

.modal-open {
  overflow: hidden;
}

.close {
  display: flex;
  position: absolute;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(80, 83, 89, .5);
  margin: 8px;
  padding: 5px;
  background: rgba(10, 10, 10, .5);
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}

.fa-xmark {
  color: rgba(150, 153, 159, .5);
  display: flex;
  align-items: center;
  font-size: 20px;
  height: 18px;
  width: 18px;
  justify-content: center;
  transition: all 300ms ease;
}

.close:hover {
  border: 2px solid rgba(255, 255, 255, .5);
}

.close:hover .fa-xmark {
  color: rgba(255, 255, 255, .5);
}

.main-modal .logo-container-cards img {
  width: 35%;
  height: auto;
}

.main-modal .logo-container img {
  margin: 2%;
  width: 55%;
  height: auto;
}

.main-modal-logo-position {
  top: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.main-modal-logo-position .modal-logo {
  bottom: 0;
  width: 25% !important;
  position: absolute;
}

#logo-container .modal-logo {
  top: 400px;
  bottom: unset !important;
}

.season-selector-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  align-items: center;
}

.season-title {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  font-size: 1.2rem;
  margin-bottom: .3rem;
}

.season-toggle {
  border: 0;
  border-radius: 4px;
  padding: .5rem 1rem;
  margin-bottom: .3rem;
  min-width: 120px;
  background: rgb(42 42 42 / 50%);
  color: white;
}

.season-dropdown {
  position: relative;
  display: inline-block;
}

.season-options::-webkit-scrollbar,
.country-dropdown::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

.season-options::-webkit-scrollbar-track,
.country-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.season-options::-webkit-scrollbar-thumb,
.country-dropdown::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.season-options::-webkit-scrollbar-thumb:hover,
.country-dropdown::-webkit-scrollbar-thumb:hover {
  background-color: rgb(18, 25, 37);
}

.season-options {
  display: none;
  position: absolute;
  top: 100%; 
  right: 0; 
  min-width: 120px;
  max-height: 150px;
  border: 2px solid #5e5e5e;
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.8);
  overflow: hidden;
  overflow-y: auto;
  z-index: 9;
}

.season-options.show {
  display: flex;
  flex-direction: column;
}

.season-option {
  border: 0;
  backdrop-filter: blur(2px);
  width: 130px;
  border-radius: 4px;
  color: white;
  padding: .5rem 1rem;
}

.season-options button {
  border: 0;
  color: white;
  padding: .5rem 1rem;
  /* background: rgba(16, 23, 34, .5); */
  background: rgba(16, 16, 16, .5);
}

.providers-container {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.country-selector {
  display: flex;
  justify-content: flex-start;
  flex-direction: column-reverse;
  align-items: center;
  min-height: 50px;
  background: rgba(12, 12, 12, 0.68);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: white;
}

.country-selection {
  position: relative;
  display: inline-block;
  padding: .5rem;
}

.country-selection input {
  width: 100%;
  text-align: center;
  height: 30px;
  padding: .5rem 1rem;
  border: 0;
  border-radius: 24px;
  color: white;
  background: rgba(32, 32, 32, .5);
}

.country-selection label {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 2;
}

.country-selection select {
  width: 100%;
  padding: .3rem;
}

.country-dropdown {
  display: none; 
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  max-height: 150px;
  border-radius: 4px;
  margin-top: .5rem;
  background: rgba(12, 12, 12, 0.8);
  overflow: hidden;
  overflow-y: auto;
  z-index: 9;
}

.country-dropdown.show {
  display: block;
}

.country-search::placeholder {
  color: white;
  font-size: 12px;
}

.country-option {
  border: 0;
  min-width: 130px;
  color: white;
  padding: .5rem 1rem;
  /* background: rgba(16, 23, 34, .5); */ /* Blue Theme */
  background: rgba(17,17,17,.8);
  cursor: pointer;
}

.country-option:hover {
  background: rgba(20, 20, 20, .7);
}

.selected-country {
  width: 100%;
  padding: .5rem;
  text-align: center;
  border-bottom: 2px solid rgb(12, 12, 12)
}

.providers {
  display: flex;
}

.provider-toggle-buttons {
  display: flex;
  flex-direction: column;
}

.provider-toggle-buttons button {
  border: 0;
  cursor: pointer;
  color: white;
  background: rgba(12, 12, 12, 0.5);
  flex-grow: 1;
}

.provider-toggle-buttons button.active {
  background: rgba(12, 12, 12, 0.75);
}

.provider-toggle-buttons span {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 12px;
}

.buy-toggle {
  border-bottom-left-radius: 8px;
}

.provider-lists {
  width: 100%;
}

.watch-providers,
.buy-providers {
  min-height: 130px;
  padding: 1rem;
  background-color: rgba(12, 12, 12, .5);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  align-items: center;
  justify-content: center;
}

.watch-providers ul,
.buy-providers ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.watch-providers li,
.buy-providers li {
  display: flex;
  max-width: 25%;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 14px;
}

.watch-providers img,
.buy-providers img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 2s ease;
}

.watch-providers p,
.buy-providers p {
  text-align: center;
  font-size: 8px;
  transition: all 2s ease;
}

.no-providers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  width: 100%;
  color: white;
}

.episode-selector {
  display: flex;
  flex-direction: column;
}

.episode {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #d1d1d1;
}

.episode-number {
  color: #d1d1d1;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  min-width: 50px;
  font-family: 'montserrat', sans-serif;
  font-weight: 500;
}

.episode-image,
.episode img {
  width: 100%;
  height: auto;
}

.episode-overview {
  color: white;
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem 0;
}

.main-modal .main-slider {
  display: block !important;
}

.recommended-slider,
.actor-slider {
  --items-per-screen: 2.5;
  display: flex;
  flex-grow: 1;
}

.main-modal .container {
  flex-direction: column;
}

.recommended-slider .card-desktop,
.recommended-slider .card-mobile,
.recommended-slider .card-desktop img,
.recommended-slider .card-mobile img {
  aspect-ratio: 3 / 4;
}

.actor-slider .card-actor,
.actor-slider .card-actor img {
  aspect-ratio: 2 / 3;
}

.recommended-slider::-webkit-scrollbar,
.actor-slider::-webkit-scrollbar {
  width: 100%;
  height: 15px;
  position: absolute;
  padding: 10px 0;
  top: 20px;
}

.recommended-slider::-webkit-scrollbar-track,
.actor-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.recommended-slider::-webkit-scrollbar-thumb,
.actor-slider::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1); 
  border-radius: 12px; 
}

.recommended-slider::-webkit-scrollbar-thumb:hover,
.actor-slider::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.3); 
}

/* Video */

.mute-container {
  position: absolute;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.mute-button {
  position: absolute;
  right: 0;
  margin-right: 45px !important;
  top: 0;
  z-index: 9999;
  cursor: pointer;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  width: 30px;
  height: 30px;
  margin: 8px;
  padding: 5px;
  background: none;
  transition: all 300ms ease;
}

.youtube-container {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  pointer-events: none;
  position: relative;
  z-index: 999;
  opacity: 0;
} 

.youtube-container iframe {
  width: 100%;
  height: 100%;
  /* scale: 1.08; */
}

.yt-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.fade-out {
  animation: fadeOut 2s forwards;
}

.menuFade-out {
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn 3s forwards;
}

.menuFade-in {
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#video-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  z-index: 9999;
}

/* Media Queries */


@media screen and (max-width: 400px) {

  /* .account-element {
    display: none;
  } */

  .visible-desktop {
    display: none!important;
  }

  .visible-mobile {
    display: block!important;
  }
  
  /* .logo {
    height: 20px;
  } */

  .main-content {
    margin-top: 0px;
  }

  .main-slider:hover .progress-bar,
  .featured-slider .progress-item {
    display: none;
  }

  .slider-header {
    padding: 0 calc(var(--img-gap) * 2 + var(--handle-size-mobile));
  }

  .slider::-webkit-scrollbar,
  .recommended-slider::-webkit-scrollbar,
  .actor-slider::-webkit-scrollbar {
    display: none;
  }

  .title {
    font-size: 1rem;
    font-weight: 800;
  }

  .handle {
    display: none;
  }

  .slider,
  .recommended-slider,
  .actor-slider {
    --items-per-screen: 3.5;
    padding: var(--mobile-padding);
    overflow: scroll;
  }

  .featured-card-mobile .logo-container-cards {
    display: block;
  }

  .featured-card-mobile .logo-container-cards img {
    max-width: 100px;
    height: auto;
  }

  .card-title {
    display: none;
  }

  .featured-card-mobile > .card-title {
    display: block;
  }

  .featured {
    padding: 4px;
  }

  .featured-img-mobile {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .desktop {
    display: none;
  }

  .footer-desktop {
  display: none!important;
  }
}

@media screen and (min-width: 400px) {


  /* .main-content {
    margin-top: 80px;
  } */

  /* .account-element {
    display: none;
  } */

  .welcome-modal .modal {
    width: 80%;
  }

  .banner-slider {
    display: block;
    position: absolute;
    justify-content: center;
    width: 100%;
  }

  /* .banner-card-mobile {
    display: none;
  } */

  .banner-card-mobile.active {
    height: 100%;
  }

  .visible-desktop {
    display: none!important;
  }

  .visible-mobile {
    display: block!important;
  }

  .main-slider:hover .progress-bar,
  .featured-slider .progress-item {
    display: none;
  }

  .slider-header {
    padding: 0 calc(var(--img-gap) * 2 + var(--handle-size-mobile));
  }

  .slider::-webkit-scrollbar,
  .recommended-slider::-webkit-scrollbar,
  .actor-slider::-webkit-scrollbar {
    display: none;
  }

  .title {
    font-size: 1rem;
  }

  .handle {
    display: none;
  }

  .slider {
    --items-per-screen: 3.5;
    padding: var(--mobile-padding);
    overflow: scroll;
  }

  .recommended-slider,
  .actor-slider {
    --items-per-screen: 2.5;
    padding: var(--mobile-padding);
    overflow: scroll;
  }

  .featured-card-mobile .logo-container-cards {
    display: block;
  }

  .featured-card-mobile .logo-container-cards img {
    width: 35%;
    height: auto;
  }

  .card-title {
    display: none;
  }

  .featured-card-mobile > .card-title {
    display: block;
  }

  .featured {
    padding: 4px;
  }

  .featured-img-mobile {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .desktop {
    display: none;
  }

  .footer-desktop {
  display: none!important;
  }
}

@media screen and (min-width: 480px) {

  .main-content {
    margin-top: -80px;
  }

  .welcome-modal .modal {
    width: 70%;
  }

  .banner-card-mobile.active {
    display: block;
  }

  .banner-slider-main-slide {
    height: 100%;
    width: 100%;
  }

  .banner-image {
    opacity: 1;
  }

  .title {
    font-size: 1.2rem;
  }

  .watch-providers img,
  .buy-providers img {
    width: 50%;
  }

  .recommended-slider,
  .actor-slider {
    --items-per-screen: 3.5;
  }
}

@media screen and (min-width: 576px) {
  .welcome-modal .modal {
    width: 55%;
  }
}

@media screen and (min-width: 768px) {

  .logo {
    height: 30px;
  }

  .welcome-modal .modal {
    width: 50%;
  }

  .welcome-modal .country-selection-container input {
    text-align: center;
  }

  .welcome-modal h1 {
    font-size: 3.2rem;
  }

  .banner-slider {
    height: auto;
    width: auto;
    right: 0;
    padding-right: 10px;
    bottom: 100px;
  }

  .banner-card-desktop {
    width: auto;
  }

  /* .main-content {
    margin-top: -128px;
  } */

  .progress-bar {
    display: none;
  }

  .main-slider:hover .progress-bar {
    display: none;
  }

  .slider-header {
    padding: 0 calc(var(--img-gap) * 2 + var(--handle-size-mobile));
  }

  .slider,
  .recommended-slider,
  .actor-slider {
    --items-per-screen: 3.5;
    --items-per-screen-featured: 2.5;
    padding: var(--mobile-padding);
    overflow: scroll;
  }

  .search-modal-content-middle .recommended-slider {
    --items-per-screen: 4.5;
  }

  .actor-name {
    font-size: .8rem;
  }

  .handle {
    display: none;
  }

  .card-title {
    display: none;
  }

  .featured-card-mobile > .card-title {
    display: block;
  }

  .featured {
    padding: 4px;
  }

  .featured-img-mobile {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: .55rem;
    transform: scale(1.05);
  }


  /* .img-desktop, .desktop {
    display: none;
  } */

  .watch-providers img,
  .buy-providers img {
    width: 50%;
  }

  .watch-providers p, .buy-providers p {
    text-align: center;
    font-size: 10px;
  }

  .footer-desktop {
  display: none;
  }

  .search-results,
  .person-content {
    grid-template-columns: 25% 25% 25% 25% !important;
  }
}

@media screen and (min-width: 1024px) {

  body {
    --nav-height: 60px;
  }

  .account-element {
    display: flex;
    padding: 10px;
  }

  .main-content {
    margin-top: -117px;
  }

  .visible-desktop {
    display: block!important;
  }

  .visible-mobile {
    display: none!important;
  }

  .logo {
    height: 40px;
  }

  .drop-nav {
    display: none;
  }

  .welcome-modal .modal {
    width: 40%;
  }

  .banner-card-desktop img {
    width: 100%;
    transform: scale(.9);
  }

  .banner-card-desktop.active img {
    transform: scale(1);
  }

  .banner-overview-container {
    margin: 1rem 0 1rem 0;
  }

  .main-slider:hover .progress-bar {
    display: flex;
  }

  .slider-header {
    padding: 0 calc(var(--img-gap) * 2 + var(--handle-size));
  }

  .slider {
    --items-per-screen: 4;
    /* --items-per-screen-featured: 5; */
    --items-per-screen-featured: 4;
    padding: 0;
    overflow: unset !important;
  }

  .main-modal-content-top-right {
    display: block;
    flex: 25%;
  }  

  .recommended-slider,
  .actor-slider {
    --items-per-screen: 4.5;
  }

  ::-webkit-scrollbar {
    display: block;
  }

  .slider::-webkit-scrollbar,
  .recommended-slider::-webkit-scrollbar,
  .actor-slider::-webkit-scrollbar {
    display: block;
  }

  .logo-container-cards {
    display: block;
  }

  .card-title {
    display: block;
  }

  .desktop {
    display: block;
  }

  /* .mobile, .img-mobile, 
  .featured-img-mobile {
    display: none !important;
  } */

  .featured-slides {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    position: relative;
    padding: 0 0 10px 0;
  }

  .featured {
    padding: 0 2.5rem;
  }

  .overview {
    font-size: 14px;
  }

  .main-modal-content-top-left {
    flex: 75%;
  }

  .providers-container {
    padding: 1rem;
  }

  .country-selector {
    flex-direction: row-reverse;
  }

  .selected-country {
    flex: 80%;
    border: 0;
    margin-bottom: .3rem;
    margin-left: 37px;
    padding: 0 0 0 120px;
  }

  .country-selection {
    padding: 0;
  }
  
  .country-selection input {
    margin-right: 10px;
  }

  .watch-providers,
  .buy-providers {
    min-height: 146px;
  }

  .watch-providers img,
  .buy-providers img {
    width: 40%;
  }

  .watch-providers p,
  .buy-providers p {
    max-width: 60%;
    font-size: 12px;
  }

  .country-selection input {
    width: 120px;
  }

  .country-dropdown {
    min-width: 112px;
  }

  .episode {
    flex-direction: row;
  }

  .episode-text {
    display: none;
  }

  .episode-number {
    flex: 5%;
    padding-bottom: 0;
    padding-right: 1.2rem;
  }

  .episode-image,
  .episode img {
    flex: 30%;
    aspect-ratio: 16 / 9;
  }

  .episode-overview {
    flex: 65%;
    text-align: left;
    padding: 1rem 2rem;
  }

  .search-results,
  .person-content {
    grid-template-columns: 33% 33% 33% !important;
  }

  .handle {
    display: flex;
  }

  .footer-mobile {
    display: none;
  }

  .footer-desktop {
    display: block;
  }
}

@media screen and (min-width: 1200px) {

  .welcome-modal .modal {
    width: 30%;
  }

  .main-content {
    margin-top: -129px;
  }

  .banner-slider {
    bottom: 102px;
  }

  .search-modal-content-middle .recommended-slider {
    --items-per-screen: 5.5;
  }

  .actor-name {
    font-size: .9rem;
  }
}

@media screen and (min-width: 1400px) {

  .slider {
    /* --items-per-screen: 6; */
    /* --items-per-screen: 5; */
    --items-per-screen: 4;
    /* --items-per-screen-featured: 7; */
    --items-per-screen-featured: 5;
  }

  .welcome-modal .modal {
    max-width: 30%;
  }

  .welcome-modal .registration-login-card {
    max-width: 480px;
  }

  .main-content {
    margin-top: -112px;
  }

  .banner-slider {
    bottom: 86px;
  }

  .main-modal {
    width: 50%;
  }

  .search-results,
  .person-content {
    grid-template-columns: 25% 25% 25% 25% !important;
  }
}

@media screen and (min-width: 1600px) {

  .welcome-modal .modal {
    max-width: 25%;
  }

  .slider {
    /* --items-per-screen: 6; */
    --items-per-screen: 5;
    /* --items-per-screen-featured: 7; */
    --items-per-screen-featured: 6;
  }

  .main-content {
    margin-top: -215px;
  }

  .banner-slider {
    bottom: 200px;
  }
}