@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.hamburger {
  background: #000;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .ham {
    width: 40px;
  }
}
.ham .line {
  fill: none;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
}
.ham.ham7 .top {
  stroke-dasharray: 40 82;
}
.ham.ham7 .middle {
  stroke-dasharray: 40 111;
}
.ham.ham7 .bottom {
  stroke-dasharray: 40 161;
}
.ham.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.ham.ham7.active .middle {
  stroke-dashoffset: 23px;
}
.ham.ham7.active .bottom {
  stroke-dashoffset: -83px;
}
.ham.hamRotate.active {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin: 0 0;
  color: #000;
}

.noscriptmsg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.parallax-window {
  min-height: 600px;
  background: transparent;
}

.lang {
  color: #fff;
  padding: 0 0 0 15px;
}
.lang a {
  color: #fff;
  text-decoration: none;
}

.anchor {
  position: relative;
}

.anchor a {
  position: absolute;
  left: 0px;
  top: -120px;
}

a {
  text-decoration: none;
  color: #90a7c8;
}
a.anchor {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}
a.underline {
  text-decoration: underline;
}

strong {
  font-weight: 500;
}

.added-class {
  border-color: yellow;
}

.nowrap {
  white-space: nowrap;
}

h1 {
  color: #03539E;
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 900;
}
@media screen and (max-width : 576px) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-weight: 400;
  font-size: 1.2rem;
  color: #90a7c8;
  line-height: 110%;
}
@media screen and (max-width : 576px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #90a7c8;
  line-height: 110%;
}
@media screen and (max-width : 576px) {
  h3 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.btn {
  border-radius: 0;
}

.text-secondary {
  color: #90a7c8 !important;
}

.text-warning {
  color: #cc7e47 !important;
}

.bg-warning {
  color: #fff;
  background: rgb(204, 126, 71);
  background: linear-gradient(145deg, rgb(204, 126, 71) 0%, rgb(188, 78, 17) 100%);
}

.bg-primary {
  background: #000 !important;
}

.header__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__img--small {
  display: none;
}
@media screen and (max-width : 576px) {
  .header__img {
    display: none;
  }
  .header__img--small {
    display: inline;
  }
}
.header__title {
  text-align: center;
  line-height: 100%;
  color: #fff;
  font-size: 6rem;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .header__title {
    font-size: 4rem;
  }
}
.header__date {
  line-height: 90%;
  padding-bottom: 10px;
  font-family: serif;
  text-align: center;
  color: #d77603;
  font-size: 4rem;
  font-weight: 100;
  color: #F5C21B;
  background: -webkit-linear-gradient(left, #cc7e47, #bc4e11);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .header__date {
    font-size: 2rem;
  }
}
.header__division {
  margin: 30px 0;
}
.header__division :first-child {
  border-right: 1px solid #bc4e11;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .header__division :first-child {
    height: 60px;
  }
}
.header__buttons {
  margin: 80px 0 50px;
}
@media screen and (max-width : 576px) {
  .header__buttons {
    margin: 20px 0 20px;
  }
}
.header__button {
  color: #000;
  margin: 0 10px;
}
@media screen and (max-width : 576px) {
  .header__button {
    display: block;
  }
}

.hamburger {
  position: fixed;
  top: 0;
  left: 0px;
  z-index: 9999;
}

.nav {
  background-color: #000;
  color: #fff;
  padding: 50px;
  top: 0px;
  position: fixed;
  width: 100%;
  display: none;
  z-index: 8888;
  font-size: 2rem;
}
@media screen and (max-width : 576px) {
  .nav {
    font-size: 1.2rem;
  }
}
.nav__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav a {
  color: #fff;
}

.not-active {
  background: -webkit-linear-gradient(left, #cccccc, #a5a5a5);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro {
  margin-top: 20px;
}
@media screen and (max-width : 576px) {
  .intro {
    margin-top: 10px;
  }
}
.intro__text {
  padding-top: 250px;
}
@media screen and (max-width: 768px) {
  .intro__text {
    padding-top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .intro__button {
    text-align: center;
  }
}

.info {
  background-color: #dbe8f7;
  margin-top: 6rem;
  color: #000;
}

.register {
  text-align: center;
  margin: 4rem auto;
}

.button {
  padding: 10px 30px;
  background: #90a7c8;
  border: 1px solid #90a7c8;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
}
.button-small {
  font-size: 1rem;
  padding: 5px 20px;
}
@media screen and (max-width : 576px) {
  .button {
    font-size: 1.2rem;
  }
}
.button:hover {
  color: #fff;
  border: 1px solid #90a7c8;
  background: rgb(63.2831325301, 89.7469879518, 127.7168674699);
}

.roadshows {
  border-left: 2px solid #000;
}

.praktisch {
  margin-top: 40px;
  background: #dbe8f7;
}
.praktisch h1 {
  padding-top: 25px;
}

.deelnameformulier {
  padding: 25px 30px;
  background: #eff8fc;
}

input[type=hidden] {
  display: none;
}

input::-webkit-input-placeholder {
  color: #a5a5a5;
  font-size: 1rem;
}

input::-moz-placeholder {
  color: #a5a5a5;
  font-size: 1rem;
}

input:-ms-input-placeholder {
  color: #a5a5a5;
  font-size: 1rem;
}

input::-ms-input-placeholder {
  color: #a5a5a5;
  font-size: 1rem;
}

input::placeholder {
  color: #a5a5a5;
  font-size: 1rem;
}

section {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
section p {
  margin: 2rem 0;
  line-height: 180%;
}

.programma-table td {
  padding-bottom: 5px;
  vertical-align: top;
}
.programma-table td:first-child {
  white-space: nowrap;
}
.programma-table td ul {
  padding-left: 15px;
}
.programma-table td li {
  padding: 5px 0;
}
.programma-table {
  margin-top: 20px;
}
.programma-table td:first-child {
  color: #000;
  padding-right: 15px;
}

.fabrikanten {
  font-size: 0.9rem;
}
.fabrikanten .row {
  margin-bottom: 50px;
}
@media screen and (max-width : 576px) {
  .fabrikanten .row {
    margin-bottom: 35px;
  }
}
.fabrikanten .row:nth-child(odd) .fabrikant__logo {
  padding-right: 30px;
}
.fabrikanten .row:nth-child(odd) > div:nth-child(2) {
  border-left: 3px solid #000;
}
@media screen and (max-width : 576px) {
  .fabrikanten .row:nth-child(odd) > div:nth-child(2) {
    border-left: 0;
  }
}
.fabrikanten .row:nth-child(odd) > div:nth-child(2) .fabrikant__text {
  padding-left: 30px;
}
@media screen and (max-width : 576px) {
  .fabrikanten .row:nth-child(odd) > div:nth-child(2) .fabrikant__text {
    border-bottom: 3px solid #000;
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 25px;
  }
}
.fabrikanten .row:nth-child(even) > div:first-child {
  border-right: 3px solid #000;
}
@media screen and (max-width : 576px) {
  .fabrikanten .row:nth-child(even) > div:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border-right: 0;
  }
}
.fabrikanten .row:nth-child(even) > div:first-child .fabrikant__text {
  padding-right: 30px;
  text-align: right;
}
@media screen and (max-width : 576px) {
  .fabrikanten .row:nth-child(even) > div:first-child .fabrikant__text {
    border-bottom: 3px solid #000;
    text-align: left;
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 30px;
    padding-bottom: 25px;
  }
}
.fabrikanten .row:nth-child(even) > div:nth-child(2) .fabrikant__logo {
  padding-left: 30px;
}
@media screen and (max-width : 576px) {
  .fabrikanten .row:nth-child(even) > div:nth-child(2) .fabrikant__logo {
    padding-left: 0;
  }
}
@media screen and (max-width : 576px) {
  .fabrikanten .row:nth-child(even) > div:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width : 576px) {
  .fabrikanten img {
    max-height: 70px;
    max-width: 200px;
    margin-bottom: 10px;
  }
}

.register-header {
  background-color: #000;
  padding: 3rem;
}
.register-header__title {
  text-align: center;
  color: #d77603;
  font-size: 4rem;
  font-weight: 100;
  color: #F5C21B;
  background: -webkit-linear-gradient(left, #cc7e47, #bc4e11);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.register-header__info {
  padding-top: 20px;
  font-family: serif;
  text-align: center;
  color: #d77603;
  font-size: 2rem;
  font-weight: 100;
  color: #F5C21B;
  background: -webkit-linear-gradient(left, #cc7e47, #bc4e11);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register-form__input {
  border: 1px dashed #000;
  color: #000;
}
.register-form__input:focus {
  background: rgb(246.3072289157, 248.1084337349, 250.6927710843);
}

#agree {
  display: none;
}

label {
  margin-bottom: 0;
}

.register-patience {
  display: block;
}

.register-now {
  display: none;
}

.mood-image-entrance {
  background: url("../img/filmfest-entrance.png") no-repeat center;
  background-size: cover;
  height: 700px;
}
.mood-image-reception {
  background: url("../img/filmfest-reception.png") no-repeat center;
  background-size: cover;
  height: 700px;
}
.mood-image-the-walk {
  background: url("../img/filmfest-thewalk.png") no-repeat center;
  background-size: cover;
  height: 700px;
}

.footer {
  border-top: 1px solid #000;
  background-color: #fff;
  padding: 3rem 0;
}
@media screen and (max-width : 576px) {
  .footer {
    padding: 1rem 0;
  }
}
.footer-logos {
  padding-right: 5px;
}
.footer-logos img {
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-logos #ctc {
  max-height: 70px;
}
.footer-logos #climatrix {
  max-height: 80px;
}
.footer-logos #spirotech {
  max-height: 80px;
}
.footer-logos #oventrop {
  max-height: 80px;
}
.footer-contact {
  padding-left: 35px;
  font-size: 0.9rem;
}
@media screen and (max-width : 576px) {
  .footer-contact {
    padding-left: 0;
    padding-top: 25px;
    margin-top: 20px;
    border-left: 0;
  }
}

.is-invalid-label {
  color: red;
}

.invalid-feedback-email {
  display: block;
  color: red;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
  font-weight: bold;
}

#fillRegisterForm {
  display: block;
}

#registrationComplete {
  display: none;
}

.registrationComplete__title {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.5;
}
.registrationComplete__content {
  text-align: center;
  padding-top: 50px;
}
.registrationComplete__message {
  line-height: 200%;
}
.registrationComplete__email {
  font-weight: bold;
}

.invalid-feedback {
  font-size: 1rem;
  font-weight: 300;
}

.livestream-body {
  background-color: #000;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.livestream-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.livestream-footer {
  background-color: #000;
  text-align: center;
  padding: 3rem 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.livestream-header {
  background-color: #000;
  text-align: center;
  padding: 15px;
  font-size: 2rem;
}
.livestream-header__title {
  background: -webkit-linear-gradient(left, #cc7e47, #bc4e11);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.livestream-header__live {
  font-family: serif;
}

.livestream-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.livestream-login__form {
  -webkit-box-shadow: 10px 10px 5px -6px rgba(0, 0, 0, 0.75);
          box-shadow: 10px 10px 5px -6px rgba(0, 0, 0, 0.75);
  margin: 20px;
  max-width: 500px;
  background: #fff;
  padding: 50px;
  text-align: center;
}
.livestream-login__input {
  text-align: center;
}
.livestream-login__label {
  padding-bottom: 15px;
}
.livestream-login__err {
  padding: 10px 0;
  font-weight: bold;
  color: #dc3545;
  font-size: 0.8rem;
}

.livestream-video {
  margin: 0 15px;
  position: relative;
  height: 70vh;
  z-index: 5000;
}

.livestream-trouble {
  text-align: center;
  padding: 20px;
  color: rgb(140, 159, 160);
}
.livestream-trouble a {
  color: inherit;
  text-decoration: underline;
}

.partners__video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.partners__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #DDDDDD;
  background-color: #EFEFEF;
}

.disabled {
  color: rgb(164, 164, 164);
}

/* CHECKBOX */
.form-check {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.form-check-label.enabled {
  cursor: pointer;
}
.form-check {
  /* On mouse-over, add a grey background color */
}
.form-check label {
  cursor: pointer;
}
.form-check {
  /* Hide the browser's default checkbox */
}
.form-check input[type=radio], .form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  /* When the checkbox is checked, add a blue background */
}
.form-check input[type=radio]:checked ~ .checkmark, .form-check input[type=checkbox]:checked ~ .checkmark {
  background-color: #000;
  border-color: #000;
  /* Show the checkmark when checked */
}
.form-check input[type=radio]:checked ~ .checkmark:after, .form-check input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}
.form-check input[type=radio]:checked ~ .label, .form-check input[type=radio]:checked ~ .fa-arrow-down, .form-check input[type=checkbox]:checked ~ .label, .form-check input[type=checkbox]:checked ~ .fa-arrow-down {
  color: #90a7c8;
}
.form-check input[type=radio]:disabled ~ .checkmark, .form-check input[type=checkbox]:disabled ~ .checkmark {
  border: 1px solid #d2dee9;
}
.form-check input[type=radio]:disabled ~ .label, .form-check input[type=radio]:disabled ~ .fa-arrow-down, .form-check input[type=checkbox]:disabled ~ .label, .form-check input[type=checkbox]:disabled ~ .fa-arrow-down {
  color: #969696;
}
.form-check {
  /* Create a custom checkbox */
}
.form-check .checkmark {
  position: absolute;
  margin-top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #000;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form-check .checkmark-box:after {
  /* Style the checkmark/indicator */
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.form-check .checkmark-radio {
  border-radius: 50%;
  /* Create the indicator (the dot/circle - hidden when not checked) */
}

.cost {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 5px;
  display: none;
}

#provinces {
  display: none;
  margin-top: 5px;
}

input::-webkit-input-placeholder {
  font-size: 0.9rem;
}

input::-moz-placeholder {
  font-size: 0.9rem;
}

input:-ms-input-placeholder {
  font-size: 0.9rem;
}

input::-ms-input-placeholder {
  font-size: 0.9rem;
}

input::placeholder {
  font-size: 0.9rem;
}

.wait {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wait__content {
  margin-top: 15vh;
  text-align: center;
  font-size: 20px;
  background: #F2F5F9;
  padding: 3rem 3.5rem;
  line-height: 1.8;
}
.wait__content #alia {
  margin-bottom: 20px;
}
@media screen and (max-width : 576px) {
  .wait__content {
    margin-top: 5vh;
    font-size: 17px;
  }
  .wait__content #alia {
    max-width: 200px;
  }
}
