#homepage .selected-film-backdrop {
  top: -20px;
}
#homepage #homepage-header {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0px 100px 0px;
  z-index: 1;
}
#homepage #homepage-header .current-film-container {
  display: flex;
  align-self: flex-start;
  margin-left: 11vw;
}
#homepage #homepage-header .current-film-container .loading-placeholder-empty {
  height: 70px;
}
#homepage #homepage-header .current-film-container #current-film-title {
  padding: 10px 15px;
  backdrop-filter: blur(2px);
  border-radius: 4px;
}
#homepage #homepage-header .current-film-container #current-film-title .film-title {
  font-size: 22px;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.25s ease-in-out;
}
#homepage #homepage-header .current-film-container #current-film-title .film-title:hover {
  opacity: 0.7;
  transition: opacity 0.25s ease-in-out;
}
#homepage #homepage-header h1 {
  font-size: 80px;
  margin-bottom: 20px;
  font-weight: bolder;
}
#homepage #homepage-header h3 {
  margin: 0;
}
@media (max-width: 820px) {
  #homepage #homepage-header {
    margin: 0px 0px 30px 0px;
  }
  #homepage #homepage-header h1 {
    font-size: 60px;
    margin-top: 40px;
  }
  #homepage #homepage-header .current-film-container #current-film-title {
    padding: 15px 5px;
    backdrop-filter: blur(2px);
    border-radius: 4px;
    font-size: 14px;
    max-width: 50vw;
  }
  #homepage #homepage-header .current-film-container #current-film-title .film-title {
    font-size: 16px;
  }
}
@media (max-width: 820px) {
  #homepage .selected-film-backdrop .disable-video {
    top: 20px;
    padding: 5px;
    font-size: 12px;
  }
}

.search-bar {
  color: white;
  border: 1px solid #3e3e42;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  font-size: 14px;
  padding: 8px 35px 8px 35px;
  width: 300px;
  letter-spacing: 1px;
  backdrop-filter: blur(3px);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.search-bar:focus {
  outline: none;
}

.search-bar::placeholder {
  font-weight: bold;
  font-family: Hanken Grotesk, sans-serif;
  font-size: 16px;
}

.search-input-wrapper {
  position: relative;
  display: inline-block;
}
.search-input-wrapper .fa-magnifying-glass {
  color: gray;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.search-input-wrapper .clear-search {
  color: #b3b3b3;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: color ease-in-out 0.2s;
}
.search-input-wrapper .clear-search:hover {
  color: gray;
  transition: color ease-in-out 0.2s;
}

@media only screen and (max-width: 600px) {
  .search-bar {
    width: 75vw;
  }
}
.film-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  border-radius: 5px;
  height: 10vw;
  width: 16.5vw;
  flex: 0 0 auto;
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: filter 0.35s ease-in-out;
}
.film-tile:hover, .film-tile:focus-within {
  filter: brightness(1.3);
  transition: filter 0.25s ease-in-out;
}
.film-tile:hover .film-tile-actions, .film-tile:focus-within .film-tile-actions {
  opacity: 1;
}
.film-tile:hover .tile-trailer-wrapper, .film-tile:focus-within .tile-trailer-wrapper {
  opacity: 1;
}
.film-tile .image-wrapper .tile-overlay {
  z-index: 2;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.25s ease-in-out;
}
.film-tile .film-tile-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.film-tile .tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: transparent;
  pointer-events: none;
  transition: background 0.25s ease-in-out;
  z-index: 1;
}
.film-tile .image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  transition: width 0.35s ease-in-out;
}
.film-tile .image-wrapper .film-tile-img {
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 5px;
  transition: border 0.3s;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: filter 0.3s ease-out;
  display: block;
}
.film-tile .image-wrapper .film-tile-img.active {
  opacity: 1;
  transition: opacity 0.25s ease-out, filter 0.3s ease-out;
}
.film-tile .image-wrapper .tile-trailer-wrapper {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}
.film-tile .image-wrapper .tile-trailer-wrapper.ready.playing {
  opacity: 1;
}
.film-tile .image-wrapper .tile-trailer-wrapper.playing {
  opacity: 1;
}
.film-tile .image-wrapper .tile-trailer-wrapper .tile-trailer-iframe,
.film-tile .image-wrapper .tile-trailer-wrapper .tile-trailer-slot,
.film-tile .image-wrapper .tile-trailer-wrapper .tile-trailer-iframe iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 140%;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
}
.film-tile .image-wrapper .film-tile-img.poster {
  max-width: 125px;
  z-index: 1;
  transition: opacity 0.15s ease-out;
}
.film-tile .image-wrapper .film-tile-img.poster.no-backdrop {
  display: block;
  max-width: 100%;
  opacity: 1;
  object-fit: cover;
  object-position: 0px -30px;
}
.film-tile .image-wrapper .film-tile-img.backdrop {
  width: 19vw;
  height: 105%;
  z-index: 0;
  transition: opacity 0.35s ease-out;
}
.film-tile .image-wrapper .loading-placeholder {
  position: absolute;
  top: 0;
  left: -10%;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #3e3e42;
  display: flex;
  justify-content: center;
  align-items: center;
}
.film-tile .image-wrapper .tile-details {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}
.film-tile .image-wrapper .tile-details .title {
  display: flex;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  min-width: 97%;
  width: 97%;
  pointer-events: none;
}
.film-tile .image-wrapper .tile-details .year-ratings {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  gap: 8px;
}
.film-tile .image-wrapper .tile-details .year-ratings .release-year {
  margin-top: 7px;
  color: #cccccc;
  font-weight: normal;
  pointer-events: none;
}
.film-tile .image-wrapper .tile-details .year-ratings .fa-circle {
  font-size: 4px;
  margin-top: 13px;
}
.film-tile .image-wrapper .tile-details .year-ratings .film-tile-ratings {
  display: flex;
  flex-direction: row;
  border-radius: 5px;
  color: white;
  gap: 5px;
}
.film-tile .image-wrapper .tile-details .year-ratings .film-tile-ratings .film-tile-rating#imdbRating img {
  width: 25px;
}
.film-tile .image-wrapper .tile-details .year-ratings .film-tile-ratings .film-tile-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  margin: 0px 2.5px;
  padding: 5px 0px;
}
.film-tile .image-wrapper .tile-details .year-ratings .film-tile-ratings .film-tile-rating .loader {
  width: 20px;
  height: 20px;
}
.film-tile .image-wrapper .tile-details .year-ratings .film-tile-ratings .film-tile-rating .loader::after,
.film-tile .image-wrapper .tile-details .year-ratings .film-tile-ratings .film-tile-rating .loader::before {
  width: 20px;
  height: 20px;
}
.film-tile .image-wrapper .tile-details .year-ratings .film-tile-ratings img {
  display: flex;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.film-tile-actions {
  position: absolute;
  opacity: 0;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: row;
  gap: 3px;
}
.film-tile-actions .film-tile-action {
  display: flex;
  border-radius: 3px;
  padding: 8px 8px;
  z-index: 3;
  background: rgba(62, 62, 66, 0.8);
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: 0.25s ease-in-out;
}
.film-tile-actions .film-tile-action i {
  vertical-align: middle;
}
.film-tile-actions .film-tile-action:hover {
  background: #2f2f33;
  transition: 0.25s ease-in-out;
}

@media (max-width: 1250px) {
  .film-tile {
    width: 19vw;
    height: 12vw;
  }
  .film-tile .image-wrapper .tile-details .title {
    font-size: 14px;
  }
  .film-tile .image-wrapper .film-tile-img.poster.no-backdrop {
    object-fit: cover;
    object-position: top center;
  }
  .film-tile .image-wrapper .film-tile-img.backdrop {
    width: 21vw;
  }
  .film-tile .image-wrapper .tile-background-trailer {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .film-tile {
    width: 85px;
    height: 130px;
    transition: none;
  }
  .film-tile:hover .image-wrapper .tile-background-trailer, .film-tile:focus-within .image-wrapper .tile-background-trailer {
    display: none;
  }
  .film-tile:hover .image-wrapper .tile-details, .film-tile:focus-within .image-wrapper .tile-details {
    display: none;
  }
  .film-tile:hover .film-tile-actions, .film-tile:focus-within .film-tile-actions {
    display: none;
  }
  .film-tile .image-wrapper .tile-background-trailer {
    display: none;
  }
  .film-tile .image-wrapper .tile-details {
    display: none;
  }
  .film-tile .image-wrapper .film-tile-actions {
    display: none;
  }
  .film-tile .image-wrapper .film-tile-img.poster {
    opacity: 1;
  }
  .film-tile .image-wrapper .film-tile-img.backdrop {
    display: none;
  }
  .film-tile .image-wrapper .tile-overlay {
    display: none;
  }
}
#navDesktop {
  position: fixed;
  padding: 0px 10%;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0) 100%);
  z-index: 99999;
}
#navDesktop #navLogo {
  width: 120px;
}
#navDesktop ul.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
#navDesktop ul.nav-left li {
  list-style: none;
  margin: 0;
}
#navDesktop ul.nav-left li #cineSpinLogo h1 {
  margin: 10px 0px;
  font-weight: 900;
  font-size: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#navDesktop ul.nav-left li #cineSpinLogo h1 span {
  line-height: 1;
}
#navDesktop ul.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#navDesktop ul li {
  list-style: none;
  margin: 0;
}
#navDesktop ul li a {
  padding: 10px 18px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
#navDesktop ul li a:hover {
  color: #cccccc;
  transition: color 0.2s ease-in-out;
}

#navMobile {
  height: 60px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3e3e42;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.4);
}
#navMobile ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
  padding: 0;
  gap: 10vw;
}
#navMobile ul li {
  font-size: 22px;
}
#navMobile ul li a {
  padding: 20px;
  font-size: 22px;
}
#navMobile ul .nav-search {
  padding: 15px;
}

@media (max-width: 820px) {
  #navDesktop {
    display: none;
  }
  #navMobile {
    display: flex;
  }
}
.film-list-container:not(:first-of-type) {
  margin-top: 40px;
}

.film-list-container {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  margin-top: 20px;
  width: 97vw;
  margin-left: 3vw;
  padding-right: 20px;
  z-index: 6;
}
.film-list-container .row-header h2 {
  align-self: flex-start;
  font-size: 35px;
  margin-bottom: 0px;
  margin-top: 0px;
  color: white;
}
.film-list-container .row-header h2 .loading-placeholder-filler {
  width: 30vw;
  height: 35px;
}
.film-list-container .film-list::-webkit-scrollbar {
  display: none;
}
.film-list-container .film-list {
  display: flex;
  list-style: none;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  gap: 0px 10px;
  padding-left: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.film-list-container .film-list.small {
  gap: 10px 10px;
}
.film-list-container .film-list.small .film-tile {
  width: 105px;
  height: 175px;
  border-radius: 5px;
}
.film-list-container .film-list.small .film-tile .title {
  font-size: 12px;
}
.film-list-container .film-list.small .film-tile .image-wrapper:before {
  border-radius: 8.7px;
}
.film-list-container .film-list.small .film-tile .image-wrapper {
  width: 105px;
  height: 175px;
}
.film-list-container .film-list.small .film-tile .image-wrapper .film-tile-img {
  border-radius: 5px;
}
.film-list-container .film-list.small .film-tile .film-tile-action {
  right: 5px;
}
.film-list-container .film-list.small .film-tile .film-tile-ratings .film-tile-rating {
  margin: 0px 1px;
  padding: 3px 0px;
}
.film-list-container .film-list.small .film-tile .film-tile-ratings img {
  display: flex;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.film-list-container .loading-placeholder {
  width: 100%;
  height: 520px;
  border-radius: 8px;
  display: flex;
  margin-left: 10%;
  margin-right: 10%;
  align-items: center;
  justify-content: center;
  background: #3e3e42;
}

.carousel-row {
  position: relative;
  /* Remove previous absolute button rules */
  /* Make the scroll area flex-grow */
}
.carousel-row .scroller-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 6px;
}
.carousel-row:hover .carousel-btn {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.carousel-row .carousel-btn {
  position: absolute;
  top: auto;
  bottom: auto;
  height: 100%;
  width: 45px;
  align-self: stretch;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  padding: 0;
  font-size: 18px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.carousel-row .carousel-btn.next {
  right: 0;
}
.carousel-row .carousel-btn.prev {
  left: 0;
}
.carousel-row .carousel-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.18);
}
.carousel-row .carousel-btn:disabled {
  opacity: 0;
  cursor: default;
}
.carousel-row .film-list.scroller {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 0 4px;
  margin: 0;
  scroll-snap-type: x mandatory;
}
.carousel-row .film-list.scroller::-webkit-scrollbar {
  display: none;
}
.carousel-row .film-list.scroller > li {
  list-style: none;
  scroll-snap-align: start;
}
.carousel-row .film-list.scroller > li:last-child {
  margin-right: 16px;
}

.row-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.carousel-page-indicator {
  display: flex;
  justify-self: flex-end;
  justify-content: center;
  gap: 5px;
  margin-right: 20px;
  padding: 4px 0 0;
}

.carousel-page-indicator .dot {
  width: 10px;
  height: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
  position: relative;
  border-radius: 1px;
  transition: background 0.25s, transform 0.25s;
}

.carousel-page-indicator .dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.carousel-page-indicator .dot.active {
  background: #fff;
  transform: scale(1.1);
}

@media (max-width: 820px) {
  .film-list-container:not(:first-of-type) {
    margin-top: 20px;
  }
  .film-list-container {
    width: 95vw;
    margin-left: 5vw;
    margin-bottom: 0;
  }
  .film-list-container .film-list {
    width: 100%;
  }
  .film-list-container .row-header h2 {
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .film-list-container .row-header h2 .loading-placeholder-filler {
    width: 40vw;
    height: 25px;
  }
  .carousel-row .carousel-btn {
    display: none;
  }
  .carousel-row .film-list.scroller > li:last-child {
    margin-right: 8px;
  }
  .carousel-page-indicator {
    margin-top: 10px;
    margin-right: 15px;
  }
}
.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  z-index: 99999;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}

.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
body,
html,
.modal-content {
  scrollbar-color: #3e3e42 #1a1a1a;
  scrollbar-width: thin;
}

.metacritic-rating-red {
  color: #ff6874;
}
.metacritic-rating-yellow {
  color: #ffbd3f;
}
.metacritic-rating-green {
  color: #00ce7a;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a1a1a;
  width: 700px;
  height: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.modal.large {
  width: 80vw;
  height: 90vh;
}
.modal.large .modal-content {
  overflow-y: scroll;
}
.modal.medium {
  width: 60vw;
  height: 70vh;
}
.modal.medium .modal-content {
  overflow-y: scroll;
}
.modal .modal-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 22px;
  padding: 15px 0px;
  font-weight: bold;
  color: white;
  border-bottom: 1px solid #0d0d0d;
}
.modal .modal-title .back-button {
  position: absolute;
  left: 20px;
  padding: 10px 15px;
}
.modal .modal-title .back-button:hover {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease-in-out;
}
.modal .modal-title .close-button {
  position: absolute;
  top: 6px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: color 0.25s ease-in-out;
}
.modal .modal-title .close-button:hover {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.25s ease-in-out;
}
.modal .modal-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 5px;
  overflow-x: hidden;
  box-sizing: border-box;
}

#modalContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}
#modalContainer.front {
  z-index: 99999;
}

@media (max-width: 820px) {
  .modal {
    width: 90vw;
  }
  .modal .modal-title {
    font-size: 18px;
  }
  .modal .modal-content {
    padding: 10px;
  }
}
.google-login {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.google-login .google-login-btn img {
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
  vertical-align: middle;
  display: inline-block;
}

.back-to-lists-button {
  position: absolute;
  top: 13px;
  left: 15px;
  padding: 10px;
  font-size: 12px;
}

.lists-container {
  display: flex;
  width: 75%;
  max-width: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lists-container h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.lists-container .input-buttons {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 10px;
}

.lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
  width: 100%;
  max-width: 1400px;
  gap: clamp(20px, 4vw, 30px);
  margin: 30px auto 0;
  margin-left: -10px;
  align-items: start;
}
.lists #listsSearch {
  padding: 2px;
}
.lists .loading-placeholder {
  height: 600px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3e3e42;
  grid-column: 1/-1;
}
.lists .list-item {
  display: flex;
  flex-direction: row;
  border-radius: 8px;
  gap: 80px;
  max-width: 300px;
  transition: background 0.25s ease-in-out;
  flex: 0 0 auto;
  padding: 10px;
  text-decoration: none;
}
.lists .list-item .loader {
  left: 60px;
  top: 30%;
}
.lists .list-item .list-details {
  display: flex;
  margin-left: -30px;
  flex-direction: column;
}
.lists .list-item .list-details.loading-list-details {
  margin-left: 0px;
  min-width: 180px;
}
.lists .list-item .list-details .list-name {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.lists .list-item .list-details .list-description {
  font-size: 13px;
}
.lists .list-item .list-details .list-privacy {
  font-size: 12px;
  color: rgb(165.75, 165.75, 165.75);
}
.lists .list-item .films-preview {
  display: grid;
  grid-template-columns: repeat(5, 20px);
  width: fit-content;
}
.lists .list-item .films-preview.empty .films-preview-item {
  background: #3e3e42;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px;
}
.lists .list-item .films-preview .films-preview-item {
  position: relative;
  width: 80px;
  height: 125px;
  overflow: hidden;
  border-radius: 4px;
  grid-row: 1;
}
.lists .list-item .films-preview .films-preview-item:nth-child(1) {
  grid-column: 1;
  z-index: 5;
}
.lists .list-item .films-preview .films-preview-item:nth-child(2) {
  grid-column: 2;
  z-index: 4;
}
.lists .list-item .films-preview .films-preview-item:nth-child(3) {
  grid-column: 3;
  z-index: 3;
}
.lists .list-item .films-preview .films-preview-item:nth-child(4) {
  grid-column: 4;
  z-index: 2;
}
.lists .list-item .films-preview .films-preview-item:nth-child(5) {
  grid-column: 5;
  z-index: 1;
}
.lists .list-item .films-preview .films-preview-item .fa-circle-plus {
  font-size: 45px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: color 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.lists .list-item .films-preview .films-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lists .list-item:hover {
  background: #3e3e42;
  cursor: pointer;
  color: white;
  transition: background 0.25s ease-in-out;
}
.lists .list-item:hover .films-preview-item .fa-circle-plus {
  color: #cccccc;
  transform: translate(-50%, -50%) scale(1.15);
  transition: color 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.lists .list-item.loading-list-item {
  opacity: 0.7;
  pointer-events: none;
}
.lists .loading-preview,
.lists .loading-bar {
  background: #3e3e42;
  border-radius: 4px;
  min-height: 24px;
}
.lists .loading-preview {
  width: 100%;
  height: 80px;
  margin-bottom: 8px;
}
.lists .loading-bar {
  width: 80%;
  height: 18px;
  margin: 6px 0;
}
.lists .loading-bar.list-description {
  height: 108px;
  width: 100%;
}

.form-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
}
.form-container.create-list-form .film-tile {
  position: relative;
  top: -85px;
  left: 50px;
}
.form-container.create-list-form .film-tile .title {
  display: none;
}
.form-container.create-list-form .film-tile .add-to-list {
  display: none;
}
.form-container .loading-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  margin-left: 10%;
  margin-right: 10%;
  align-items: center;
  justify-content: center;
  background: #3e3e42;
}
.form-container form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  margin-top: 15px;
  width: 100%;
}
.form-container form .form-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 80%;
}
.form-container form .form-input .error {
  display: flex;
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 5px;
  align-self: flex-start;
}
.form-container form .form-input label {
  display: flex;
  align-self: flex-start;
}
.form-container form .form-input input[type=text],
.form-container form .form-input input[type=email],
.form-container form .form-input input[type=password],
.form-container form .form-input textarea {
  margin-top: 5px;
  font-size: 14px;
  padding: 8px;
  letter-spacing: 1.5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.form-container form .form-input input[type=text],
.form-container form .form-input select {
  width: 100%;
  height: 25px;
  background: #3e3e42;
  border-radius: 5px;
  border-style: none;
  color: white;
}
.form-container form .form-input input[type=text]:focus,
.form-container form .form-input select:focus {
  outline: none;
}
.form-container form .form-input textarea {
  width: 100%;
  height: 80px;
  padding: 5px;
  background: #3e3e42;
  border-radius: 5px;
  border-style: none;
  color: white;
  resize: none;
}
.form-container form .form-input textarea:focus {
  outline: none;
}
.form-container form .form-input select {
  cursor: pointer;
  height: 40px;
  font-size: 16px;
  padding: 5px;
  background: #3e3e42;
  border-radius: 5px;
  border-style: none;
  color: white;
  box-sizing: border-box;
  line-height: 1.5;
  width: 101%;
}
.form-container form .form-input select option {
  cursor: pointer;
}

.selected-film-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100vw;
  max-height: 85vh;
  overflow: hidden;
  z-index: -1;
}
.selected-film-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.6);
  pointer-events: none;
}
.selected-film-backdrop .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to top, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
  pointer-events: none;
}
.selected-film-backdrop .yt-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.selected-film-backdrop .yt-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  opacity: 0;
  filter: brightness(0.6);
  transition: opacity 0.3s ease;
}
.selected-film-backdrop img.visible,
.selected-film-backdrop .yt-iframe.visible {
  opacity: 1;
}
.selected-film-backdrop img.hidden,
.selected-film-backdrop .yt-iframe.hidden {
  opacity: 0;
}
.selected-film-backdrop img {
  position: relative;
  z-index: -2;
}
.selected-film-backdrop .overlay {
  z-index: 0;
}

.selected-film-container {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  min-width: 70vw;
  margin: 50px 10vw 20px 15vw;
  height: auto;
  width: auto;
}
.selected-film-container.placeholder {
  margin-left: 8.5vw;
}
.selected-film-container .image-container {
  font-size: 18px;
  perspective: 1000px;
  max-width: 240px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
.selected-film-container .image-container .flip-card {
  position: relative;
  display: inline-block;
  width: 240px;
  height: 360px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.selected-film-container .image-container .flip-card .loading-placeholder-filler {
  -webkit-animation-name: spinner;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
  -webkit-animation-direction: normal;
  -webkit-animation-fill-mode: both;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-direction: normal;
  animation-fill-mode: both;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  will-change: transform;
  transform-origin: 50% 50%;
}
.selected-film-container .image-container .flip-card img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  height: 360px;
  max-width: 240px;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.selected-film-container .image-container .flip-card .back {
  transform: rotateY(180deg);
}
.selected-film-container .image-container .spinning-film {
  -webkit-animation-name: spinner;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  will-change: transform;
  transform-origin: 50% 50%;
}
.selected-film-container .image-container .spin-once {
  -webkit-animation-name: spinner;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: none;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-fill-mode: none;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  will-change: transform;
  transform-origin: 50% 50%;
}
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
  }
}
@keyframes spinner {
  from {
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
.selected-film-container .image-container img {
  border-radius: 8px;
  height: 360px;
  max-width: 240px;
}
.selected-film-container .details {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  justify-content: flex-start;
}
.selected-film-container .details .details-secondary .buttons {
  display: none;
}
.selected-film-container .details .details-secondary .genres {
  display: none;
}
.selected-film-container .details .title {
  font-size: 45px;
  font-weight: bold;
  line-height: 45px;
  margin: 0;
}
.selected-film-container .details .title .loading-placeholder-filler {
  height: 65px;
  width: 45vw;
}
.selected-film-container .details .title .runtime {
  font-size: 12px;
  font-weight: normal;
  opacity: 0.9;
}
.selected-film-container .details .credits {
  font-size: 14px;
}
.selected-film-container .details .credits ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.selected-film-container .details .credits ul li:first-of-type .loading-placeholder-filler {
  width: 25%;
}
.selected-film-container .details .credits ul li .loading-placeholder-filler {
  margin-top: 5px;
  line-height: 20px;
  height: 20px;
  width: 75%;
}
.selected-film-container .details .tagline {
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 20px;
  line-height: 25px;
  max-width: 75%;
  text-transform: uppercase;
}
.selected-film-container .details .overview {
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 20px;
  line-height: 25px;
  max-width: 75%;
}
.selected-film-container .details .overview .loading-placeholder-filler {
  height: 200px;
  width: 110%;
}
.selected-film-container .details .providers-title {
  font-size: 14px;
  margin-top: 20px;
}
.selected-film-container .details .providers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 12px;
  padding-top: 10px;
}
.selected-film-container .details .providers .provider {
  height: 40px;
  width: auto;
  border-radius: 5px;
}
.selected-film-container .details .providers .provider.amazon-prime {
  background: white;
}
.selected-film-container .details .genres {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.selected-film-container .details .genres .genre {
  background: #1a1a1a;
  padding: 4px 6px;
  border-radius: 5px;
  color: white;
  cursor: default;
  transition: background 0.25s ease-in-out;
}
.selected-film-container .details .genres .genre:hover {
  background: #2f2f33;
  transition: background 0.25s ease-in-out;
}
.selected-film-container .details .genres .loading-placeholder-filler {
  width: 50px;
  height: 15px;
}
.selected-film-container .details .year-ratings {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: -5px;
}
.selected-film-container .details .year-ratings .release-year {
  font-size: 25px;
}
.selected-film-container .details .year-ratings .fa-circle {
  margin-top: 14px;
  font-size: 5px;
}
.selected-film-container .details .year-ratings .ratings {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.selected-film-container .details .year-ratings .ratings a {
  color: white;
  text-decoration: none;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.25s ease-in-out;
}
.selected-film-container .details .year-ratings .ratings a:hover {
  background: rgba(26, 26, 26, 0.75);
  transition: background 0.25s ease-in-out;
}
.selected-film-container .details .year-ratings .ratings #imdb-rating,
.selected-film-container .details .year-ratings .ratings #tmdb-rating,
.selected-film-container .details .year-ratings .ratings #metacritic-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}
.selected-film-container .details .year-ratings .ratings #imdb-rating .rating-row,
.selected-film-container .details .year-ratings .ratings #tmdb-rating .rating-row,
.selected-film-container .details .year-ratings .ratings #metacritic-rating .rating-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.selected-film-container .details .year-ratings .ratings #imdb-rating .rating-row img,
.selected-film-container .details .year-ratings .ratings #tmdb-rating .rating-row img,
.selected-film-container .details .year-ratings .ratings #metacritic-rating .rating-row img {
  width: 20px;
  height: auto;
}
.selected-film-container .details .year-ratings .ratings #tmdb-rating .rating-row img {
  width: 20px;
  height: auto;
}
.selected-film-container .details .year-ratings .ratings #imdb-rating .rating-row img {
  width: 30px;
  height: auto;
}

@media (max-width: 1024px) {
  .selected-film-container {
    margin: 30px 8vw 0 8vw;
  }
}
@media (max-width: 820px) {
  #selectedFilmDisplaySection .disable-video {
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 1;
  }
  .selected-film-backdrop img {
    filter: brightness(0.75);
  }
  .selected-film-backdrop .yt-iframe {
    width: 100%;
    filter: brightness(0.6);
  }
  .selected-film-backdrop .overlay {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, #1a1a1a 0%, #1a1a1a 5%, rgba(26, 26, 26, 0.8) 20%, rgba(26, 26, 26, 0) 100%);
  }
  .selected-film-container.no-backdrop {
    margin-top: -80px;
  }
  .selected-film-container {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-areas: "image primary" "image primary" "secondary secondary";
    column-gap: 14px;
    align-items: start;
    margin: 25vw 5vw 0 5vw;
    min-height: auto;
    height: auto;
    width: auto;
    max-width: 100vw;
  }
  .selected-film-container .image-container {
    grid-area: image;
    max-width: 100px;
    font-size: 12px;
  }
  .selected-film-container .image-container .flip-card {
    width: 100px;
    height: 150px;
  }
  .selected-film-container .image-container .flip-card img {
    height: 150px;
    border-radius: 4px;
  }
  .selected-film-container .image-container .buttons {
    display: none;
  }
  .selected-film-container .details {
    display: contents;
    margin-left: 0;
  }
  .selected-film-container .details .details-primary {
    grid-area: primary;
    margin-left: -15px;
  }
  .selected-film-container .details .details-primary .release-year {
    font-size: 14px;
  }
  .selected-film-container .details .details-primary .year-ratings .fa-circle {
    margin-top: 7px;
    font-size: 5px;
  }
  .selected-film-container .details .details-primary .year-ratings .ratings {
    margin-left: -5px;
    gap: 2px;
  }
  .selected-film-container .details .details-primary .year-ratings .ratings #imdb-rating,
  .selected-film-container .details .details-primary .year-ratings .ratings #tmdb-rating,
  .selected-film-container .details .details-primary .year-ratings .ratings #metacritic-rating {
    margin-top: -4.5px;
    font-size: 12px;
  }
  .selected-film-container .details .details-primary .year-ratings .ratings #imdb-rating .rating-row,
  .selected-film-container .details .details-primary .year-ratings .ratings #tmdb-rating .rating-row,
  .selected-film-container .details .details-primary .year-ratings .ratings #metacritic-rating .rating-row {
    gap: 4px;
  }
  .selected-film-container .details .details-primary .year-ratings .ratings #imdb-rating .rating-row img,
  .selected-film-container .details .details-primary .year-ratings .ratings #tmdb-rating .rating-row img,
  .selected-film-container .details .details-primary .year-ratings .ratings #metacritic-rating .rating-row img {
    width: 20px;
    height: auto;
  }
  .selected-film-container .details .details-primary .year-ratings .ratings #imdb-rating img {
    width: 25px !important;
  }
  .selected-film-container .details .details-primary .credits {
    font-size: 12px;
  }
  .selected-film-container .details .details-primary .credits ul li {
    margin-top: 5px;
  }
  .selected-film-container .details .details-primary .genres {
    display: none;
  }
  .selected-film-container .details .details-secondary {
    grid-area: secondary;
    margin-top: 10px;
  }
  .selected-film-container .details .details-secondary .overview,
  .selected-film-container .details .details-secondary .tagline {
    font-size: 13px;
    line-height: 16px;
    min-width: 100%;
  }
  .selected-film-container .details .details-secondary .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
  }
  .selected-film-container .details .details-secondary .buttons button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 27vw;
    height: 35px;
    font-size: 12px;
    padding: 0;
    border-radius: 4px;
  }
  .selected-film-container .details .details-secondary .buttons button span {
    font-size: 10px;
    margin-left: 4px;
  }
  .selected-film-container .details .details-secondary .genres {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .selected-film-container .details .details-secondary .genres .genre {
    background: #3e3e42;
    border-radius: 3px;
  }
  .selected-film-container .details .title {
    font-size: 24px;
    line-height: 28px;
    max-width: 100%;
  }
  .selected-film-container .details .title span {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .yt-bg,
  .yt-iframe {
    display: none;
  }
}
.bottom-sheet-root {
  position: fixed;
  inset: 0;
  z-index: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.bottom-sheet-root.open {
  pointer-events: auto;
  opacity: 1;
}

.bottom-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.bottom-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--sheet-height, 55%);
  background: #121214;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  /* Use variable for vertical translation */
  --sheet-y: 100%;
  transform: translateY(var(--sheet-y));
  transition: transform 0.32s cubic-bezier(0.33, 0.9, 0.42, 1);
  will-change: transform;
  touch-action: none;
  user-select: none;
}

.bottom-sheet-root.open .bottom-sheet-panel {
  --sheet-y: 0%;
}

/* While dragging: no transition */
.bottom-sheet-panel.dragging {
  transition: none;
}

.bottom-sheet-grabber {
  width: 46px;
  height: 5px;
  border-radius: 3px;
  background: #2e2e33;
  margin: 10px auto 12px;
}

.bottom-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 28px;
  color: #fff;
  font-size: 14px;
}

/* Film sheet content (unchanged) */
.film-sheet-content .sheet-large-actions {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  gap: 8px;
}
.film-sheet-content .sheet-large-actions .sheet-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(62, 62, 66, 0.8);
  border-radius: 3px;
  border: none;
  font-size: 18px;
  color: white;
  width: 100%;
  height: 65px;
  padding: 5px 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.25s ease-in-out;
}
.film-sheet-content .sheet-large-actions .sheet-btn:hover {
  background: #2f2f33;
  transition: 0.25s ease-in-out;
}
.film-sheet-content .sheet-large-actions .sheet-btn span {
  display: block;
  margin-left: 10px;
  font-size: 18px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}
.film-sheet-content .film-sheet-header-row {
  display: flex;
  gap: 16px;
}
.film-sheet-content .film-sheet-poster img {
  width: 110px;
  border-radius: 8px;
  object-fit: cover;
}
.film-sheet-content .film-sheet-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.film-sheet-content .film-sheet-meta h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.film-sheet-content .film-sheet-meta .ratings-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.film-sheet-content .film-sheet-meta .ratings-row .rating {
  background: #1f1f24;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.film-sheet-content .film-sheet-meta .ratings-row .rating.mc.mc-green {
  background: #184f24;
}
.film-sheet-content .film-sheet-meta .ratings-row .rating.mc.mc-yellow {
  background: #5a4b14;
}
.film-sheet-content .film-sheet-meta .ratings-row .rating.mc.mc-red {
  background: #5a1a1a;
}
.film-sheet-content .film-sheet-meta .sheet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.film-sheet-content .film-sheet-meta .sheet-actions .sheet-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(62, 62, 66, 0.8);
  border-radius: 3px;
  border: none;
  font-size: 18px;
  color: white;
  width: 45%;
  height: 65px;
  padding: 5px 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.25s ease-in-out;
}
.film-sheet-content .film-sheet-meta .sheet-actions .sheet-btn:hover {
  background: #2f2f33;
  transition: 0.25s ease-in-out;
}
.film-sheet-content .film-sheet-meta .sheet-actions .sheet-btn span {
  display: block;
  width: 100%;
  margin-top: 4px;
  font-size: 10px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}
.film-sheet-content .overview {
  margin-top: 14px;
  line-height: 1.35;
}

@media (min-width: 860px) {
  .bottom-sheet-panel {
    left: 50%;
    width: 520px;
    transform: translate(-50%, var(--sheet-y));
  }
  .bottom-sheet-root.open .bottom-sheet-panel {
    /* still --sheet-y:0%, transform updates automatically */
  }
}
.background-trailer .disable-video {
  position: absolute;
  top: 150px;
  right: 8vw;
  z-index: 4;
}

.dropdown {
  position: absolute;
  z-index: 1000;
  bottom: 105%;
  background: #3e3e42;
  border-radius: 4px;
  opacity: 0.85;
  max-height: 300px;
  overflow-y: hidden;
}
.dropdown .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background: #2f2f33;
}

.user-list-container {
  display: flex;
  flex-direction: column;
  width: 75%;
  max-width: auto;
  margin: 0 auto;
}
.user-list-container h1 {
  margin-bottom: 0px;
}
.user-list-container .user-info {
  margin-bottom: 15px;
}
.user-list-container .user-info i {
  font-size: 12px;
}
.user-list-container .list-films {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
  width: 100%;
  gap: 10px;
  margin-top: 20px;
}
.user-list-container .list-films .user-list-film-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 5px;
  overflow: hidden;
  transition: filter 0.25s ease-in-out;
}
.user-list-container .list-films .user-list-film-tile:hover, .user-list-container .list-films .user-list-film-tile:focus-within {
  filter: brightness(1.2);
  transition: filter 0.25s ease-in-out;
}
.user-list-container .list-films .user-list-film-tile:hover .film-tile-actions, .user-list-container .list-films .user-list-film-tile:focus-within .film-tile-actions {
  opacity: 1;
}
.user-list-container .list-films .user-list-film-tile a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.user-list-container .list-films .user-list-film-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .user-list-container {
    width: 95%;
  }
  .user-list-container .list-films {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 3px;
  }
}
@media (max-width: 480px) {
  .user-list-container {
    width: 100%;
    padding: 0 10px;
  }
  .user-list-container .list-films {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
  }
}

body,
html {
  overflow-x: hidden;
}

body {
  background: #1a1a1a;
  color: white;
  font-family: "Hanken Grotesk", sans-serif;
  overflow-x: hidden;
  margin: 0;
}
body.gradient-background {
  background: linear-gradient(to bottom, #000f1a 0%, #002035 50%, #002e4d 100%);
  background-attachment: fixed;
}

a {
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  text-decoration: underline;
}

a:hover {
  color: #cccccc;
  transition: color 0.2s ease-in-out;
}

.mt-2 {
  margin-top: 10px;
}

button {
  background: #3e3e42;
  border-radius: 8px;
  padding: 11px 20px;
  border: none;
  color: white;
  width: auto;
  font-size: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.25s ease-in-out;
}
button:hover {
  background: #2f2f33;
  transition: background 0.25s ease-in-out;
}

.red {
  color: #ff4d4d;
}

.green {
  color: #79d279;
}

.fa-fire {
  color: #ffad33;
}

.fa-calendar-days {
  color: #66c2ff;
}

.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
  position: relative;
  padding-bottom: 50px;
  max-width: 100vw;
  min-height: 100vh;
}

section {
  display: flex;
  flex-direction: column;
  max-width: 100vw;
}

.container {
  display: flex;
  flex-direction: column;
}

#homeSplash {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}
#homeSplash h1 {
  font-size: 60px;
}

.buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.buttons .loading-placeholder-filler {
  height: 70px;
}
.buttons .spin-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(62, 62, 66, 0.8);
  border-radius: 5px;
  border: none;
  font-size: 20px;
  color: white;
  width: 73px;
  height: 73px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.25s ease-in-out;
}
.buttons .spin-button:hover {
  background: #2f2f33;
  transition: 0.25s ease-in-out;
}
.buttons .spin-button span {
  display: block;
  width: 100%;
  margin-top: 4px;
  font-size: 10px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.disable-video {
  display: flex;
  height: 20px;
  width: 20px;
  padding: 10px;
  margin-left: 10px;
  background: #3e3e42;
  opacity: 0.8;
  border-radius: 4px;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease-in-out;
  margin-top: 15px;
}
.disable-video:hover {
  opacity: 0.9;
  transition: opacity 0.25s ease-in-out;
}

#films {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.loading-placeholder-filler {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  min-height: 20px;
  background-color: #3e3e42;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.06) 65%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  background-size: 300% 100%;
  background-position: -150% 0;
  animation: pulsate 1.8s linear infinite;
  animation-direction: normal;
  animation-fill-mode: both;
}

.loading-placeholder-empty {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  min-height: 20px;
}

@media (max-width: 820px) {
  .main {
    margin-bottom: 75px;
    padding: 0;
  }
}
.fa-thumbs-down {
  transform: scale(-1, 1);
}

@keyframes pulsate {
  from {
    background-position: 150% 0;
  }
  to {
    background-position: -150% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loading-placeholder-filler {
    animation: none !important;
    background-image: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1 !important;
  }
}
.fade-in {
  will-change: opacity;
  backface-visibility: hidden;
  animation: fadeIn 0.3s ease-out forwards;
}

.fade-in-slow {
  will-change: opacity;
  backface-visibility: hidden;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    margin-top: 20px;
    opacity: 0;
  }
  to {
    opacity: 1 !important;
    margin-top: 0px;
  }
}
.slide-in {
  animation: slideIn 0.25s ease-out forwards;
}

@keyframes slideOut {
  from {
    opacity: 1;
    margin-top: 0px;
  }
  to {
    margin-top: -20px;
    opacity: 0;
  }
}
.slide-out {
  animation: slideOut 0.25s ease-out forwards;
}

.router-content {
  transition: opacity 0.18s ease, filter 0.18s ease;
}

.main.search-active .router-content {
  opacity: 0.15;
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

.search-overlay {
  position: relative;
  z-index: 5;
  animation: fade-in 0.18s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}