/* Basic variables */
/* Global styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Header styling */
header {
  display: flex;
  height: 100px;
  padding: 1.25rem 2rem;
  justify-content: space-between;
  align-items: center;
}
header figure#logo, header figure#logo img {
  height: 100%;
}
.logo-img-small {
  display: none;
}
header nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#searchWrap {
  display: flex;
  width: 15rem;
  padding: 0.5rem;
  border-radius: 100vw;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(91, 155, 213, 0.25);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}
#searchWrap *:focus {
  outline: none;
}
#searchWrap:hover {
  background-color: rgba(91, 155, 213, 0.5);
}
#searchWrap input {
  width: 100%;
}
#searchWrap * {
  font-family: "Montserrat", sans-serif;
  border: none;
  background: none;
  outline: none;
}
#searchWrap #searchText {
  width: 75%;
  font-weight: 600;
  font-size: 1.25rem;
}
#searchWrap button {
  width: 36px;
  height: 36px;
  border-radius: 100vw;
  background-color: white;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#searchWrap button:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.serieInfoTitle {
  font-family: "neutra_textbold_alt";
  font-size: 2.5rem;
  max-width: 70%;
}
/* Background styling */
#blurBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: unset !important;
  height: 100%;
  z-index: -1;
  background-repeat: round;
  background-attachment: fixed;
  opacity: 0.4;
  background-size: contain;
  filter: blur(40px);
  transition: all 0.5s ease;
}
/* Main styling */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 3rem;
  position: relative;
}
main > * {
  width: 90%;
  margin: 0 auto;
  max-width: 1350px;
}
/* Basic elements */
h1 {
  font-size: 3.5rem;
  font-weight: 600;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
.blueBox {
  background-color: rgba(91, 155, 213, 0.25);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.fit-content {
  width: fit-content;
}
img {
  border-radius: 0.5rem;
  object-fit: contain;
}
.button {
  font-size: 20px;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 50vw;
  border-width: 0;
  background-color: rgba(146, 208, 81, 0.35);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(146, 208, 81, 0);
  transition: all 0.1s ease;
  color: black;
}
.button:hover {
  cursor: pointer;
  background-color: rgba(146, 208, 81, 0.5);
  outline: 1px solid rgba(146, 208, 81, 0.7);
}
.button.active {
  background-color: rgba(91, 155, 213, 0.5);
}
.button:active {
  transform: scale(0.9);
}
.buttonred {
  background-color: rgba(231, 76, 60, 0.35);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(231, 76, 60, 0);
}
.buttonred:hover {
  background-color: rgba(231, 76, 60, 0.5);
  outline: 1px solid rgba(231, 76, 60, 0.7);
}
/* Serie card styling */
.serieCard {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 18px;
  gap: 1rem;
  position: relative;
}
.serieCard .cardHeading {
  display: flex;
  flex: 1;
  gap: 2rem;
  flex-direction: column;
}
.serieCard .cardHeading p {
  max-width: 30vw;
}
.serieCard > a {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.serieCard .moreinfoWrap {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 18px;
}
.serieCard .serieImg {
  width: 100%;
  min-height: 250px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
.serieCard .rating {
  align-self: flex-start;
  justify-self: flex-end;
  position: absolute;
  top: 0;
  right: 0;
}
.serieCard .titleWrap {
  display: flex;
}
.serieCard .titleWrap .title {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.serieCard .titleWrap .undertitleinfoWrap {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.25rem;
}
.serieCard .titleWrap .likeButton {
  width: 40px;
  height: 40px;
  margin: 5px;
  background-color: transparent;
  border: none;
}
.serieCard .titleWrap .seriesTitle {
  font-size: 1.75rem;
  font-weight: 600;
}
.rating {
  background-color: rgba(91, 155, 213, 0.4);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  padding: 0.65rem;
  border-radius: 1.5rem;
}
.rating p.rating-score {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
.serieInfoImg {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.35);
  max-width: 33vw;
  max-height: calc(33vw * 1.5);
  width: 400px;
  height: 600px;
}
/* Scrollable styling */
.scrollableWrap {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.seriesList {
  margin-top: 0.25rem;
  position: relative;
  transition: all 0.3s ease;
}
.seriesList img {
  width: 200px;
}
.seriesList .arrow {
  color: black;
  border: none;
  background-color: transparent;
  font-size: 2rem;
  position: absolute;
  bottom: 50%;
  transform: translateY(25%);
  background-color: rgba(146, 208, 81, 0.9);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  font-size: 38px;
  width: 60px;
  height: 60px;
}
.seriesList .leftArrow {
  left: 0px;
}
.seriesList .rightArrow {
  right: 0px;
}
.heading {
  margin-bottom: 0.25rem;
}
.mini {
  height: 25px !important;
}
.searchResults {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.searchResults a {
  width: fit-content;
  justify-self: center;
}
.searchResults img {
  width: 200px;
  height: 300px;
  object-fit: contain;
  border-radius: 0.5rem;
  object-fit: cover;
}
.serieCardWrap {
  width: calc(200px + 1rem);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  background-color: rgba(91, 155, 213, 0.25);
  padding: 0.5rem;
}
.serieCardWrap p {
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.25);
  text-align: center;
  height: 40px;
  overflow: hidden;
}
.serieCardWrap:hover {
  cursor: pointer;
  transform: scale(1.05);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
a {
  text-decoration: none;
  color: black;
}
/* Fake player */
.fakePlayer {
  display: flex;
  height: calc(1000px * 9 / 16);
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
  margin-bottom: 300px;
  margin-top: 20px;
}
.fakePlayer iframe {
  height: 100%;
  width: calc(100% - 300px);
}
.fakePlayer .afleveringen {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 100%;
}
select#seizoen {
  width: 100%;
  height: 35px;
}
.afleveringenWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  overflow: auto;
}
.afleveringenWrap a {
  color: white;
  text-decoration: none;
  padding: 5px;
  background-color: #333;
  text-align: center;
}
.afleveringenWrap a:hover {
  background-color: #555;
}
/* Register / Login */
.hover:hover {
  border-bottom: 1px solid #555;
}
.register {
  display: flex;
  width: 90vw;
  justify-content: center;
  flex-direction: row;
  margin: auto;
  gap: 50px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.registerForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 40vw;
}
.registerForm .brand {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  background-color: white;
  border: 1px solid #999999;
  border-radius: 3px;
  padding: 5px;
  max-width: calc(20vw - 2rem);
}
.registerForm form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.registerForm form article {
  min-width: calc(20vw - 2rem);
}
.registerForm form article .ghost {
  color: #999999;
}
.registerForm form input {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #999999;
  transition: all 0.3s ease;
  width: 100%;
}
.registerForm form input:focus {
  outline: none;
  border: 1px solid #5B9BD5;
}
.registerForm form .checkbox-terms {
  width: 1rem;
}
.registerForm form .submitbutton {
  background-color: #3e43fb;
  color: #fff;
  width: calc(40vw - 2rem);
}
.registerForm form .submitbutton:hover {
  background-color: #21259f;
  cursor: pointer;
}
.registerForm form button {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #999999;
  background-color: #5B9BD5;
  color: white;
  transition: all 0.3s ease;
  border: none;
  border-bottom: 2px solid #555;
  outline: none;
}
.registerForm form button:hover {
  cursor: pointer;
  background-color: white;
  color: #5B9BD5;
}
.registerForm form .passwordform {
  display: flex;
  gap: 2rem;
}
.registerForm form .emailform {
  width: calc(40vw - 2rem);
}
.infologin {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-image: url("/img/bg/achtergrondlogin.jpg");
  background-size: cover;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid #999999;
  background-position: 75% 25%;
  max-width: 40vw;
}
.infologin .ghost {
  color: #999999;
  position: absolute;
  top: 90%;
  bottom: 100%;
}
.passwordform-login {
  width: calc(40vw - 2rem);
}
/* Footer */
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(auto-fill, minmax(calc(30vw - 64px), 1fr));
  max-width: 100vw;
  gap: 5rem;
  padding: 16px 32px;
  background-color: rgba(91, 155, 213, 0.25);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
footer a, footer p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scrollableCard {
  position: relative;
  width: 200px;
}
.scrollableCard p {
  font-weight: 600;
  text-align: center;
  font-size: 1.25rem;
  height: 30px;
  overflow: hidden;
}
#profile {
  transition: all 0.3s ease;
}
#profile:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.Error {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  left: 0;
  margin-top: 15%;
}
.flexWrap {
  display: flex;
  justify-content: space-between;
}
.d-none {
  display: none !important;
}
.profilePage {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  background-color: rgba(91, 155, 213, 0.25);
  max-width: fit-content;
  font-weight: 600;
  font-size: 1.75rem;
  border-radius: 3rem;
}
.profilePage form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}
.profilePage table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0.5rem;
  margin: 0 auto;
}
.profilePage table th, .profilePage table td {
  padding: 0.5rem;
}
.profilePage input[type="submit"] {
  font-size: 2rem;
  border-radius: 1.5rem;
}
.profilePage input[type="checkbox"] {
  width: 2.5rem;
  height: 2.5rem;
}
.flex {
  display: flex;
  gap: 1rem;
}
form.form {
  font-size: 1.5rem;
}
form.form input, form.form select, form.form .button {
  margin: 0.25rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #999999;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  font-size: 1.5rem;
}
form.form input:focus, form.form select:focus, form.form .button:focus {
  outline: none;
  border: 1px solid #5B9BD5;
}
form.form input[type="checkbox"] {
  width: 2.5rem;
  height: 2.5rem;
}
form > .afleveringenEdit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
label.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
label.center p:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #E74C3C;
}
#reset {
  margin: 1.5rem auto 0 auto;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.center {
  text-align: center;
}
#kijkgeschiedenis {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  text-align: center;
  top: 50px;
  right: 50px;
  width: 150px;
  background-color: rgba(91, 155, 213, 0.25);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  border-radius: 2rem;
  transition: all 0.3s ease;
  padding: 1rem;
}
#kijkgeschiedenis:hover {
  cursor: pointer;
  transform: scale(1.02);
  background-color: rgba(91, 155, 213, 0.35);
}
#kijkgeschiedenis img {
  width: 100%;
  height: 100%;
}
.toolbox {
  position: fixed;
  right: 50px;
  top: 150px;
  display: flex;
  flex-direction: column;
}
.serieBeheer, .klantenBeheer {
  font-size: 1.5rem;
}
.serieBeheer tr, .klantenBeheer tr {
  display: grid;
  grid-template-columns: 50px 1fr 75px;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid #999999;
}
.klantenBeheer tr {
  grid-template-columns: 100px 1fr 150px 75px;
}
.maxWidth {
  width: 100%;
}
.maxWidth input {
  width: 100%;
}
.privacy {
  max-width: 1000px;
}
.genresSelect input, .seizoenenSelect input {
  display: none;
}
.genresSelect input:checked + label, .seizoenenSelect input:checked + label {
  background-color: rgba(91, 155, 213, 0.5) !important;
}
.genresSelect label, .seizoenenSelect label, .genresSelect a, .seizoenenSelect a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #999999;
  margin: 0.5rem;
}
.genresSelect section, .seizoenenSelect section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.highlight {
  background-color: rgba(255, 0, 0, 0.25) !important;
}
.formWrap {
  min-width: fit-content;
  width: 700px;
  max-width: 99vw;
}
/* Responsive */
@media screen and (max-width: 768px) {
  form {
    font-size: unset;
  }
  h1 {
    font-size: 7vw;
  }
  h2 {
    font-size: 1.5rem;
  }
  header {
    padding: 1.25rem 1vw;
    gap: 1vw;
  }
  .logo-img-small {
    display: block;
  }
  .logo-img {
    display: none;
  }
  .serieCard {
    font-size: 3vw;
  }
  .serieCard .serieInfoTitle {
    font-size: 5vw;
  }
  .serieCard {
    gap: 1vw;
  }
  .serieCard .moreinfoWrap {
    font-size: 3vw;
  }
  .serieCard .cardHeading {
    gap: 1vw;
  }
  .serieCard .cardHeading p {
    max-width: 100%;
  }
  main > * {
    width: 96%;
  }
  .rating {
    font-size: 2vw;
  }
  .rating p.rating-score {
    font-size: 6vw;
  }
  .seriesList img {
    width: 150px;
  }
  .scrollableCard {
    width: 150px;
  }
  .infologin {
    display: none;
  }
  .registerForm {
    max-width: 70vw;
  }
  .registerForm .brand {
    min-width: 35vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .registerForm form {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profilePage {
    font-size: 3.5vw !important;
    border-radius: 7vw;
  }
  .profilePage form {
    gap: 2vw;
    padding: 2vw;
  }
  .profilePage input, .profilePage select, .profilePage .button {
    font-size: 3vw;
  }
  .profilePage input[type="submit"] {
    font-size: 5vw;
  }
  #kijkgeschiedenis {
    position: unset;
  }
  form.form {
    font-size: 3vw;
  }
  form.form input, form.form select, form.form .button {
    font-size: 3vw;
  }
  form.form input[type="checkbox"] {
    width: 6vw;
    height: 6vw;
  }
}
@media screen and (max-width: 480px) {
  header #searchWrap {
    max-width: 15rem;
    width: unset;
  }
  .registerForm {
    max-width: 90vw;
  }
  .registerForm .brand {
    max-width: 90vw;
    align-items: center;
  }
  .registerForm .form {
    width: 90vw;
  }
  .registerForm form .passwordform-login {
    width: auto;
  }
  .registerForm form .emailform {
    width: auto;
  }
  .infologin {
    max-width: 90vw;
    height: 50vh;
  }
  .seriesList img {
    width: 100px;
  }
  .seriesList .arrow {
    display: none;
  }
  .scrollableCard {
    width: 100px;
  }
  .scrollableCard p {
    font-size: 0.75rem;
  }
  .serieCardWrap {
    width: unset;
  }
  .searchResults {
    grid-template-columns: 1fr;
  }
  .searchResults img {
    width: calc(100vw - 2rem);
    height: unset;
  }
  .searchResults .serieCardWrap p {
    font-size: 1.5rem;
  }
}
