html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Verdana, Arial, Sans-Serif;
}

main {
  background-color: #fff;
  min-height: 635px;
}

/* Dialog Box */
.modal.fade .modal-dialog {
  top: 50%;
  transform: translateY(-50%) !important;
}

.modal-content {
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
  box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
  border-radius: 0;
  border: 2px solid #f0f0f0;
}

.bootbox-body {
  font-family: 'Mulish', sans-serif;

  line-height: 150%;
  font-size: 18px;
  letter-spacing: 0;
  color: #1C1B1B;
  width: 100%;
}

.modal-footer .btn {
  padding: 10px 30px;
  background-color: #063651;
  color: white;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #063651;
  transition: all .3s;
  font-family: 'Playfair Display', sans-serif;
  margin: 1% !important;
  border-radius: 4px !important;
}

.modal-footer .btn.danger {
  background-color: #EB3C2B;
  border: 1px solid #EB3C2B;
}

.modal-title {
  font-size: 20px;
  color: #03344f;
  font-weight: 700;
}

.modal-footer .btn.danger:hover {
  background-color: #D32D24;
  color: #ffffff;
}

.modal-footer .btn.annuleren {
  border: #E5E5E5 2px solid !important;
  background-color: transparent !important;
  color: #252525;
}

.modal-footer .btn:hover,
.modal-footer .btn:focus {
  background-color: #063651;
  border: 1px solid #063651;
  box-shadow: none;
}

/* Einde Dialog Box */

/* Cookie Melding */
.plenso_cookies {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: white;
  border-radius: 5px;
  z-index: 500;
  max-width: 400px;
  -webkit-box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
  -moz-box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
  box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px;
  transition: all .5s;
}

.plenso_cookies>img {
  width: 50px;
}

.plenso_cookies>div {
  color: #10182F;
  padding: 25px 0px;
  line-height: 25px;
}

.plenso_cookies>div a {
  color: #10182F;
  text-decoration: underline;
}

.plenso_cookies>a {
  background-color: #063651;
  color: white;
  font-weight: 700;
  white-space: nowrap;
  padding: 18px 30px;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Playfair Display', serif;
}

.plenso_cookies>a:hover {
  transform: scale(1.1);
}

/* Einde Cookie Melding */

/* Navigatie */
.topper {
  width: fit-content;
  position: absolute;
  top: 0;
  right: 7.5%;
  background-color: #03344f;
  border-bottom-left-radius: 20px;
  z-index: 3;
}

.topper>div {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
}

.topper>div a {
  margin: 0 15px;
  padding: 10px 0;
  color: #ffffff;
  font-size: 17px;
  font-family: 'Playfair Display', serif;
}

.menubtn, .res-nav, .nav-right-res a {
  display: none;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }

  70% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(25deg);
  }

  80% {
    transform: rotate(-25deg);
  }

  85% {
    transform: rotate(20deg);
  }

  95% {
    transform: rotate(-15deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.navigatie {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-end;
  align-items: flex-end;
  padding: 20px 10px;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  border-bottom: 2px solid #f6f6f6;
  height: 120px;
  position: relative;
}

.navigatie nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigatie nav ul li {
  padding: 10px 20px;
}

.navigatie nav a {
  color: #30487e;
  font-size: 18px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  position: relative;
}

.navigatie nav a,
.navigatie nav a:after,
.navigatie nav a:before {
  transition: all .5s;
}

.navigatie nav a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #30487e;
  height: 1px;
}

.navigatie nav a:hover:after {
  width: 100%;
}

.navigatie nav a:hover {
  color: #30487e;
}

.navigatie nav .active a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  content: '.';
  color: transparent;
  background: #30487e;
  height: 1px;
}

.navigatie nav .active a {
  color: #30487e;
  font-weight: 700;
}

.logo {
  width: 120px;
  position: absolute;
  left: 20px;
  bottom: 0;
  transform: translateY(25%);
}

/* EINDE NAVIGATIE DESKTOP */

/* RESPONSIVE NAVIGATIE */
.menubtn {
  width: 35px;
  cursor: pointer;
  display: none;
  transition: all .3s;
}

.menubtn:hover {
  transform: scale(1.05);
}

.menuoverlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, .5);
}

.res-nav {
  display: block;
  width: 100%;
  max-width: 50vw;
  height: 100%;
  position: fixed;
  right: -50vw;
  top: 0;
  z-index: 1000;
  overflow: auto;
  transition: all .6s;
  background-color: #fff;
  padding-bottom: 100px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 60%;
}

.res-nav .res-logo {
  width: 200px;
  position: absolute;
  right: 30px;
  top: 30px;
}

.menuoverlay {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0, 0, 0, .4);
}

.overvisible {
  display: block;
}

.nav_top {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  right: 30px;
}

.closebtn {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.menu-block {
  overflow: hidden;
}

.menu-is-open {
  right: 0;
}

.res-nav nav {
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
  overflow: auto;
  padding-bottom: 50px;
  height: 100%;
  position: relative;
}

.navitem {
  width: 100%;
  padding: 20px 50px;
  font-family: 'Playfair Display', serif;
}

.navitem div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.navitem div img {
  width: 20px;
  transition: all .5s;
  transform: rotate(0deg);
}

.rotateImg {
  transform: rotate(-180deg) !important;
}

.navitem a {
  text-align: left;
  display: inline-block;
  color: rgba(0, 0, 0, 0.74);
  font-size: 30px;
  font-weight: 600;
  position: relative;
}

.navitem a,
.navitem a:after,
.navitem a:before {
  transition: all .5s;
}

.navitem a:hover {
  color: #30487e;
}

.navitem a:after {
  position: absolute;
  bottom: -5px;
  left: 2px;
  right: 2px;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #30487e;
  height: 2px;
}

.navitem a:hover:after {
  width: 100%;
}

.navitem i {
  font-size: 25px;
  transition: all .3s;
}

.navitem .rotate {
  transform: rotate(90deg);
}

.activelink {
  color: #30487e !important;
}

.navitem ul {
  display: none;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding-top: 10px;
}

.navitem ul li {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  padding-left: 15px;
  border-left: 2px solid #eeeeee;
}

.navitem ul li i {
  margin-left: -7px;
  color: #c8c8c8;
  font-size: .7em;
  margin-right: 20px;

}

.navitem ul a {
  font-size: 1.2em;
  color: #949494;
  padding: 7px 0;
  padding-left: 0;
}


.navi_footer>div {
  color: #30487e;
  font-family: 'Playfair Display', serif;
}

.navi_footer img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.navi_footer img.logo {
  position: absolute;
  top: 30px;
  width: 100px;
  right: 30px;
}

.navi_footer i {
  color: #30487e;
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% {
    color: #30487e;
  }

  5% {
    color: #8BCF97
  }

  10% {
    color: #30487e;
  }

  20% {
    color: #8BCF97
  }

  21% {
    color: #30487e;
  }

  50% {
    color: #30487e;
  }

  100% {
    color: #30487e;
  }
}

@keyframes pulse2 {
  0% {
    color: #4b4b4b;
  }

  5% {
    color: #8BCF97
  }

  10% {
    color: #4b4b4b;
  }

  20% {
    color: #8BCF97
  }

  21% {
    color: #4b4b4b;
  }

  50% {
    color: #4b4b4b;
  }

  100% {
    color: #4b4b4b;
  }
}

.navi_footer>div {
  position: absolute;
  bottom: 10px;
  font-size: .9em;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.navi_footer>div div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -ms-align-items: center;
}

.navi_footer>div p {
  width: 100%;
  text-align: center;
  padding: 5px;
  margin-bottom: 7px;
  color: black;
  font-weight: 500;
  font-size: 17px;
  font-style: italic;
  z-index: 100;
}

.navi_footer span {
  margin: 0 10px;
}

.navi_footer a {
  color: black;
  font-size: .9em;
}
/* EINDE RESPONSIVE NAVIGATIE */

/* Tickertape */
.tickertape h1,
.footer ul li,
.footercolcol p,
.footercolcol h1,
.footercolcol a,
#tickertape span {
  font-family: 'Poppins', sans-serif;
}

#tickertape {
  width: 100%;
  height: 10em;
  background-position: center 40%;
  background-size: cover;
  background-image: url(/images/ticker.png);
  background-repeat: no-repeat;
  position: relative;
}

#tickertapeholder {
  text-align: center;
  color: #fff;
  font-size: 1.4em;
  font-weight: 700;
  text-transform: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.logoimg {
  height: 160px;
}

.tickertapeimg {
  position: absolute;
  top: 50%;
  margin-top: -25px;
}

.tickertext {
  width: 50%;
  float: left;
  margin-top: 4em;
}

.tickertape h1 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #0b354d;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 2em;
  position: relative;
}

.footer .maps {
  width: 50%;
  min-height: 150px;
  float: left;
  margin-right: 5%;
}

.footer .maps img {
  width: 100%;
  border: 2px solid #7bb9c7;
}

.footer ul li {
  list-style-type: none;
  color: #fff;
  line-height: 2em;
  font-size: 1em;
}

.footercol p,
.footer a {
  color: #fff;
}

.footercol .footerlogo {
  width: 100%;
  margin-top: -4em;
  text-align: center;
  margin-bottom: 2.5em;
}

.footercol .footerlogo img {
  z-index: 5;
}

.fblogo {
  margin-right: 1em;
  vertical-align: middle;
}

.footercolcol {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
  float: left;
  line-height: 2em;
}

.footer h1 {
  line-height: 2em;
  color: #7bb9c7;
}

.footercol h2 {
  font-weight: 700;
  font-size: 1.4em;
  color: white;
}

.footercolcol p {
  font-size: 1em;
}

.footercolcol a {
  text-align: center;
  display: block;
  width: 100%;
  padding: 8px;
  background-color: #7bb9c7;
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.footercol.uren a {
  text-align: center;
  display: block;
  width: 100%;
  background-color: #7bb9c7;
  margin-top: 1em;
  font-size: 1.1em;
  font-family: 'Poppins', sans-serif;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.lesboek {
  font-size: 1.2em;
  font-weight: 700;
  color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.PL_Wrapper {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  z-index: 100;
  padding: 25px;
  transition: all .8s;
  -webkit-box-shadow: 0px 2px 22px 0px rgba(61, 61, 61, 0.41);
  -moz-box-shadow: 0px 2px 22px 0px rgba(61, 61, 61, 0.41);
  box-shadow: 0px 2px 22px 0px rgba(61, 61, 61, 0.41);
}

.PL_Wrapper h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #353535;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.PL_Wrapper p {
  max-width: 500px;
  color: #979797;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 150%;
}

.PL_Buttons {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
}

.PL_Buttons a {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px;
  background-color: #0B2134;
  border: 1px solid #0B2134;
  color: #fff;
  width: 48%;
  cursor: pointer;
  text-align: center;
  transition: all .3s;
}

.PL_Buttons a:hover {
  background-color: transparent;
  color: #0B2134;
  border: 1px solid #0B2134;
}

.madeby {
  background-color: #000;
  padding: 5px;
  color: #0B354D;
  text-align: center;
  line-height: 30px;
}

.madeby a {
  color: #0B354D;
}

.mobilemenu {
  display: none;
}

.youtubecontainer iframe {
  min-width: 600px;
  min-height: 600px;
}
/* Footer End */

/* Login */
.login {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100vh;
}

.loginpart {
  width: 100%;
  max-width: 500px;
  background-color: white;
  border-right: 2px solid #F5F5F5;
  z-index: 1;
  height: 70%;
  margin: auto;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.loginpart h2:not(form h2) {
  margin-top: 100px;
  color: #063651;
  font-size: 25px;
  font-weight: 700;
}

.loginpart img {
  width: 100%;
  max-width: 250px;
}

.loginpart form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 90%;
}

.loginpart form h2 {
  font-size: 25px;
  color: #063651;
  width: 100%;
  text-align: left;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.loginpart form p {
  width: 100%;
}

.loginpart form h3 {
  color: #8f8f8f;
  line-height: 150%;
  font-weight: 200;
  font-size: 18px;
  margin-bottom: 20px;
}

.spcc {
  color: #8f8f8f;
  line-height: 150%;
  font-weight: 200;
  font-size: 18px;
  margin-bottom: 20px;
}

.loginpart form input[type=email], .loginpart form input[type=password] {
  width: 100%;
  background-color: white;
  color: #333333;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  letter-spacing: 0;
  padding: 13px 11px;
  font-size: 17px;
  height: initial;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.loginpart form input[type=submit] {
  background-color: transparent;
  border-radius: 4px;
  border: 2px solid #063651;
  font-family: 'Playfair Display', serif;
  font-weight: 200;
  padding: 10px 30px;
  color: #000;
  font-size: 18px;
  transition: all .3s;
  margin: 0 !important;
  height: initial !important;
  display: inline-block;
  line-height: initial !important;
}

.loginpart form input[type=submit]:hover {
  background-color: #063651;
  color: white;
}

.loginpart form div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
}

.loginpart form div a {
  font-size: 15px;
  font-weight: 700;
  color: #535353;
}

.loginpart form div.link-options {
  display: block;
}

.loginpart form div.link-options a:not(:last-child) {
  display: block;
  margin-bottom: 10px;
}

.logincontent {
  width: 100%;
  background-color: white;
  background-image: url(/images/login.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.forgot_pass {
  color: #7d7d7d;
  font-weight: 700;
  font-size: .9em;
  cursor: pointer;
}

.logincontent {
  position: relative;
}

.loginBackBtn {
  position: absolute;
  left: 510px;
  top: 10px;
  background-color: #063651;
  color: white;
  padding: 10px 30px;
  border-radius: 400px;
}
/* Einde Login */

/* Registreren */
.register_page {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.register_page::after {
  width: calc(100% - 600px);
  background-image: url('/images/login.jpg');
  background-position: center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  z-index: 0;
}

.register_holder {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.register_form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-left: #E1E1E1 1px solid;
  background-color: #fff;
}

.register_form_uitleg {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.register_form_uitleg h1 {
  font-size: 25px;
  text-align-last: left;
  font-family: 'Playfair Display', serif;
  color: #063651;
  margin-bottom: 15px;
  width: 100%;
}

.register_form_devid {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}

.register_form_devid a {
  color: #9f9f9f;
  font-size: 17px;
  font-weight: 200;
}

.register_form_devid input[type=submit] {
  padding: 8px 40px;
  height: initial !important;
  margin: 0 !important;
  background-color: #063651;
  border-radius: 4px;
  color: white;
  font-family: 'Playfair Display', serif;
  border: none;
  font-size: 18px;
  font-weight: 200;
  width: 200px;
}

.register_form_uitleg p {
  text-align: center;
  max-width: 200px;
  font-size: 16px;
  color: #252525;
  line-height: 150%;
  margin-bottom: 25px;
}

.register_form .field {
  position: relative;
  margin-bottom: 15px;
}

.register_form input[type=number],
.register_form input[type=text],
.register_form input[type=email],
.register_form input[type=password],
.register_form select {
  width: 100%;
  background-color: white;
  color: #333333;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  letter-spacing: 0;
  padding: 13px 11px;
  font-size: 16px;
  height: initial;
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

.register_form select {
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  background-image: url(/images/select.png);
  padding-right: 40px;
}

.register_form .field label {
  position: absolute;
  left: 13px;
  top: 16px;
  font-size: 16px;
  font-weight: 200;
  transition: all .2s;
  font-family: 'Playfair Display', serif;
}

.register_form .floatlabel input,
.register_form .floatlabel select,
.register_form .floatlabel textarea,
.register_form .floatlabel select {
  padding-top: 20px;
  padding-bottom: 6px;
}

.register_form .floatlabel label {
  top: 5px;
  font-size: 12px;
  color: #737373;
  font-weight: 700;
}

.register_form input[type=number]:focus,
.register_form input[type=text]:focus,
.register_form input[type=email]:focus,
.register_form input[type=password]:focus,
.register_form select:focus {
  border: #063651 1px solid;
}

.full_width_input {
  width: 100%;
}

.half_width_input {
  width: 49%;
}

.third_width_input {
  width: 32.33%;
}

.two_thirds_width_input {
  width: 65.66%;
}
/* Einde Registreren */

/* Pw-vergeten */
.change_password {
  width: 96%;
  max-width: 600px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
/* Einde Pw-vergeten */

/* Dashboard */
.dashboardholder {
  background-color: #F9F9F9;
}

.dashboard {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.lessinfo,
.moreinfo {
  cursor: pointer;
}


.dashboard_bestellingen > h2 {
  font-size: 25px;
  font-weight: 700;
  color: #063651;
  margin-bottom: 20px;
}


.members_holder,
.dashboard_bestellingen  {
  width: calc(100% - 410px);
  margin-left: 10px;
} 

.lessen {
  width: 100%;
  padding: 30px;
  background-color: white;
  border-radius: 4px;
  border: 2px solid #f6f6f6;
}

.members_holder > h2,
.lessen > h2 {
  font-size: 25px;
  font-weight: 700;
  color: #063651;
  margin-bottom: 20px;
}

.show_bedrag {
  margin-top: 15px;
}

.lessen > a {
  color: #fff;
  background-color: #063651;
  padding:10px 30px;
  border-radius: 4px;
  font-size: 18px;
}
.page_header > a {
  background-color: #063651;
  color: white;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 18px;
  margin-top: 10px;
  display: inline-block;
}

.logincontent {
  position: relative;
}

.loginBackBtn {
  position: absolute;
  left: 510px;
  top: 10px;
  background-color: #063651;
  color: white;
  padding: 10px 30px;
  border-radius: 400px;
}

.noggeenbestellingen p {
  text-align: center;
  line-height: 150%;
}

.member_toevoegen {
  display: none;
}

.member_toevoegen > div {
  display: flex;
  margin-top: 20px;
  padding: 30px;
  background-color: white;
  border-radius: 4px;
  border: 2px solid #f6f6f6;
  justify-content: space-between;
  flex-wrap: wrap;
}

.member_toevoegen div h2 {
  font-size: 24px;
  color: #063651;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.member_toevoegen div h3 {
  font-size: 20px;
  color: #616161;
  width: 100%;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 10px;
}

.member_toevoegen .field {
  position: relative;
  margin-bottom: 15px;
}


.member_toevoegen input[type=submit] {
  padding: 10px 30px;
  background-color: #063651;
  color: white;
  font-family: 'Playfair Display', serif;
  border-radius: 4px;
  transition: all .3s;
  font-size: 16px;
  border: 2px solid #063651;
}

.member_toevoegen input[type=submit]:hover {
  background-color: transparent;
  color: #063651;
}

.member_toevoegen input[type=text],
.member_toevoegen input[type=number],
.member_toevoegen input[type=email],
.member_toevoegen input[type=password],
.member_toevoegen select {
  width: 100%;
  background-color: white;
  color: #333333;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  letter-spacing: 0;
  padding: 13px 11px;
  font-size: 18px;
  height: initial;
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

.member_toevoegen select {
  background-image: url(/images/select.png);
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.member_toevoegen .field label {
  position: absolute;
  left: 13px;
  top: 16px;
  font-size: 16px;
  font-weight: 200;
  transition: all .2s;
}

.member_toevoegen .floatlabel input,
.member_toevoegen .floatlabel select,
.member_toevoegen .floatlabel textarea {
  padding-top: 20px;
  padding-bottom: 6px;
}

.member_toevoegen .floatlabel label {
  top: 5px;
  font-size: 12px;
  color: #999999;
  font-weight: 400;
}

.member_toevoegen input[type=text]:focus,
.member_toevoegen input[type=email]:focus,
.member_toevoegen input[type=password]:focus,
.member_toevoegen input[type=number]:focus {
  border: #063651 1px solid;
}

.members {
  margin-bottom: 30px;
  width: 100%;
}

.members th,
.members td {
  text-align: left;
  font-size: 15px;
  font-weight: 200;
  padding: 10px;
  font-family: 'Mulish';
}

.members tr {
  min-height: 60px;
}

.members th {
  font-weight: 700;
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  color: #063651;
}

.members td {
  border: 1px solid #F7F7F7;
}

.uitleg_voordelen ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.uitleg_voordelen ul li {
  line-height: 150%;
  font-size: 18px;
  color: #252525;
  padding: 5px 0;

}

.uitleg_voordelen ul li i {
  color: #063651;
  margin-right: 8px;
  font-size: 22px;
}

.radio-holder {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 5px 0 15px 0;
  border-radius: 5px;
  border: 1px solid #d4d2d2;
}

.radio-option {
  cursor: pointer;
  padding: 15px;  
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #d4d2d2;
  position: relative;
  font-size: 16px;
  font-family: 'Mulish';
}

.hiddenafhaalpunten {
  display: none;
  width: 100%;
}

.radio-option .afhaal_location {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.radio-option .afhaal_location p:first-of-type {
  font-weight: 700;
  font-size: 17px;
}

.radio-option .afhaal_location p:last-of-type {
  font-weight: 200;

}

.radio-option input {
  position: absolute;
  left: 18px;
  opacity: 0;
}

.radio-holder .radio-option:last-of-type {
  border-bottom: none;
}
.hiddenafhaalpunten .radio-option:first-of-type {
  border-top: 1px solid #d4d2d2;
}

.meerAfhaalpunten {
  text-align: center;
  width: 100%;
  font-size: 14px;
  font-weight: 200;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A6CE38;
  margin-bottom: 10px;
}

.radio-option label {
  cursor: pointer;
}

.radio-option input:checked+div {
  background-color: #063651;
}

.radio-option > div:first-of-type {
  width: 20px;
  height: 20px;
  border: 1px solid #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  margin-right: 10px;
}

.radio-option > div:first-of-type div {
  width: 6px;
  height: 6px;
  border-radius: 200px;
  background-color: white;
}

.dashboard aside {
  width: 400px;
  padding: 15px;
  padding-bottom: 25px;
  border-radius: 4px;
  border: 2px solid #f6f6f6;
  background-color: white;
}

.dashboard aside h2 {
  font-size: 25px;
  font-weight: 700;
  color: #063651;
  padding: 20px 20px;
  padding-bottom: 5px;
}

.dashboard aside h3 {
  font-size: 14px;
  font-weight: 200;
  color: #252525;
  padding: 0;
  padding-bottom: 10px;
  margin: 0 20px;
  margin-bottom: 20px;
  border-bottom: #e8e8e8 1px solid;
}

.dashboard .menuitem {
  border-left: 3px solid white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 7px 15px;
  margin: 5px 0;
  width: 100%;
  font-size: 18px;
  color: #252525;
  cursor: pointer;
}

.dashboard .menuitem i {
  width: 40px;
  font-size: 20px;
  color: #063651;
}

.dashboard .menuitem.active {
  border-left: 3px solid #063651;
}

.form_holder_edit,
.password_holder,
.tegoeden_holder {
  width: calc(100% - 450px);
  margin-left: 50px;
}

.form_holder_edit > h2,
.password_holder > h2,
.tegoeden_holder > h2 {
  font-size: 25px;
  font-weight: 700;
  color: #063651;
  margin-bottom: 20px;
}

.dashboard aside div > a {
  width: 100%;
  text-align: center;
  display: inline-block;
  background-color: #f1f8fd;
  padding: 15px;
  color: #252525;
  border-radius: 4px;
}

.dashboard aside .full_width_input label,
.dashboard aside .half_width_input label,
.dashboard aside .two_thirds_width_input label,
.dashboard aside .third_width_input label {
  margin-bottom: 5px;
  font-weight: 200;
  display: inline-block;
  color: #717171;
}

.tegoeden {
  width: 100%;
  padding: 30px;
  background-color: white;
  border-radius: 4px;
  border: 2px solid #f6f6f6;
  font-size: 15px;
}

.noggeenbestellingen {
  width: 100%;
  padding: 30px;
  background-color: white;
  border-radius: 4px;
  border: 2px solid #f6f6f6;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.noggeenbestellingen p {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 10px;
}

.noggeenbestellingen a {
  padding: 8px 30px;
  display: inline-block;
  background-color: #063651;
  color: white;
  font-size: 18px;
  font-weight: 200;
  border-radius: 4px;
}
/* Einde Dashboard */

/*Lessen registreren*/
.lesform {
  padding: 20px;
  border-radius: 4px;
  border: #E1E1E1 1px solid;
  width: 100%;
  max-width: 100%;
}
.register_form .step {
  width: 100%;
}
.step p {
  line-height: 150%;
}
.lesform h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 22px;
  color: #23396A;
  font-weight: 700;
}
.lesform .full_width_input {
  margin-bottom: 15px;
}
.lesform .full_width_input > label,.lesform .full_width_input > .label {
  margin-bottom: 10px;  
  display: block;
  font-size: 1.2em;
}
.lesform select,.lesform #Datum {
  font-size: 1.1em;
}
#Seizoen {
  margin-bottom: 8px;
}

.radio_option {
  margin-bottom: 20px;
}
.radio_input_label {
  margin-bottom: 8px;
  font-size: 1.1em;
}
.radio_info {
  margin-left: 20px;
}

.show_bedrag {
  font-size: 18px;
  line-height: 150%;
}

.stillwaiting {
  margin-top: 10px;
  line-height: 150%;
  color: #252525;
  padding: 10px;
  border: 2px solid #d86060;
}

.addDate.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.lesform input[type="submit"] {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: #30487e;
  color: #fff;
  border: 2px solid #30487e;
  font-family: 'Playfair Display',serif;
  border-radius: 4px;
}
.lesform input[type="submit"]:disabled {
  opacity: 0.4;
}

/* Datepicker */
.datum_toevoegen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 0;
}

.datum_toevoegen input,
.datum_toevoegen select {
  width: 32.33% !important;
  cursor: pointer;
}

.datum_toevoegen>div {
  width: 32.33%;
  background-color: #063651;
  color: white;
  padding: 14px 15px;
  border: #063651 2px solid;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}

.datum_toevoegen>div:hover {
  background-color: #fff;
  color: #063651;
}

.datum_toevoegen .warning {
  position: absolute;
  background-color: #EB3C2B;
  padding: 10px 20px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
  box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
  border-radius: 4px;
  left: 6px;
  top: 16px;
  color: #fff;
}

.showDates {
  width: 100%;
}

.showDates h4 {
  font-family: 'Mulish';
  padding: 5px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.showDates table i {
  font-size: 18px;
  width: 25px;
  height: 25px;
  border-radius: 200px;
  border: 1px solid #EB3C2B;
  color: #EB3C2B;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 10px;
}

.ui-datepicker th {
  font-family: effra, sans-serif;
  font-weight: 200;
}


.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 48% !important;
  margin: 1% !important;
}

.ui-datepicker .ui-datepicker-title select {
  background-image: url(/images/select.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  font-family: effra, sans-serif;
  padding: 5px;
  cursor: pointer;
  color: #252525;
}

.ui-datepicker td {
  width: 14.28%;
}

.ui-datepicker th {
  font-family: effra, sans-serif;
  font-weight: 200;
}

.ui-widget-header {
  background-color: #F5F5F5 !important;
  border: none !important;
  border-radius: 0 !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  color: #252525 !important;
  font-family: effra, sans-serif;
  background-color: #fff !important;
  text-align: center;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  color: #252525 !important;
  font-family: effra, sans-serif;
  background-color: #fff !important;
  text-align: center;
  border: 1px solid #063651 !important;
}
/*Einde lessen registreren*/

@media screen and (max-width: 1300px) {
  .dashboard {
    padding: 10px;
  }

  .dashboard aside {
    width: 100%;
    margin-bottom: 20px;
  }

  .members_holder,
  .dashboard_bestellingen,
  .form_holder_edit, 
  .password_holder, 
  .tegoeden_holder {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 1200px) {
  .navigatie {
    width: 95%;
  }

  .topper {
    right: 2.5%;
  }

  .nav-right-res {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -ms-align-items: center;
  }

  .menubtn {
    margin-left: 15px;
  }

  .nav-right-res a {
    display: block;
    background-color: #30487e;
    color: white !important;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    padding: 10px 20px !important;
    border-radius: 200px;
  }

  .nav-right-res a i {
    font-size: 16px;
    color: #ffffff;
  }

  .nav-right-res a i.fa-newspaper {
    margin-right: 20px;
  }

  .nav-right-res a i.fa-bullhorn {
    animation: wiggle 3s;
  }

  .navigatie {
    padding-top: 30px;
  }

  .menubtn {
    display: block;
  }

  .tohide {
    display: none;
  }

  .footer {
    float: none;
  }

  .footer .footercol .maps,
  #footerles {
    display: none;
  }

  .footer .footercol ul {
    list-style-position: inside;
    margin-top: 1em;
  }
}

@media screen and (max-width: 1050px) {
  .logo {
    width: 115px;
  }
}

@media screen and (max-width: 920px) {
  .disclaimer {
    padding-left: 0;
    margin-top: 10px;
  }
}

@media screen and (max-width: 750px) {
  .loginpart {
    max-width: 100vw;
  }

  .logincontent {
    display: none;
  }

  .loginBackBtn {
    left: 10px;
  }

  .gegevens_holder {
    flex-direction: column;
  }
  .noggeenbestellingen {
    flex-direction: column !important;
  }

  .noggeenbestellingen a {
    margin-bottom: 15px;
  }

  .noggeenbestellingen>div {
    flex-direction: column !important;
    align-items: center !important;
    -ms-align-items: center !important;
    justify-content: center !important;
  }
}

@media screen and (max-width: 700px) {
  .half_width_input {
    width: 100%;
  }

  .noggeenbestellingen {
    padding: 10px;
  }

  .member_toevoegen > div {
    padding: 10px;
  }

  .members th, .members td {
    font-size: 12px;
    white-space: nowrap;
  }

  .noggeenbestellingen, .lessen {
    overflow-x: scroll;

  }

  .members td a {
    font-size: 12px !important;
  }

  .datum_toevoegen {
    flex-direction: column;
  }

  .datum_toevoegen input,
  .datum_toevoegen select,
  .datum_toevoegen > div {
    width: 100% !important;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 650px) {
  .topper>div a {
    font-size: 15px;
  }

  .navitem a {
    font-size: 25px;
  }

  .logo {
    width: 110px;
    margin-left: 0;
  }

  .menubtn {
    margin-left: 15px;
  }
  .slick-dots li {
    margin: 0 5px;
    margin-bottom: 2.5em;
  }

  .slick-dots li button {
    font-size: 16px;
    width: 10px;
    height: 10px;
  }

  .slick-dots li button:before {
    font-size: 16px;
    line-height: 16px;
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 550px) {
  .logo {
    width: 100px;
  }

  .topper>div {
    justify-content: center;
  }

  .topper>div a {
    font-size: 15px;
  }

  .nav-right-res a {
    font-size: 15px !important;
    padding: 10px 20px !important;
  }

  .nav-right-res a i {
    font-size: 15px !important;
  }

  .topper {
    width: 95%;
    border-bottom-right-radius: 20px;
  }

  .loginpart form input[type=submit] {
    background-color: #FCB205;
  }
}

@media screen and (max-width: 500px) {
  .navitem a {
    font-size: 23px;
  }

  .navitem {
    padding: 15px 50px;
  }

  .navi_footer>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    line-height: 160%;
  }

  .navi_footer>div span {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .plenso_cookies {
    right: 10px;
  }

  .plenso_cookies>div {
    font-size: 15px;
  }

  .plenso_cookies>a {
    padding: 17px 30px;
    font-size: 15px;
  }
}

@media screen and (max-width: 420px) {
  .logo {
    width: 95px;
  }
}

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

}