/* -------------------------------- 

Primary style

-------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.threecolumn{
	width:31%;
}

body {
  font-family: "Open Sans";
  color: #1f2437;
  background-color: #ffffff;
}


img {
  max-width: 100%;
  height: auto;
}
.mlinks, .mrechts {
    width: 50%;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.cd-container-game {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

.has-top-margin {
  /* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}
@media only screen and (min-width: 1170px) {
  .has-top-margin {
    -webkit-animation: animate-margin-top 0.3s;
    -moz-animation: animate-margin-top 0.3s;
    animation: animate-margin-top 0.3s;
    margin-top: 70px;
  }
}

@-webkit-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@-moz-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
/* -------------------------------- 

Navigation

-------------------------------- */
.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #030d18;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
    box-shadow: none;
  }
}

#cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
#cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 23px 0 0 5%;
  }
}
@media only screen and (min-width: 1170px) {
  #cd-logo.is-hidden {
    /* assign a position fixed and move outside the viewport (on the left) */
    opacity: 0;
    position: fixed;
    left: -20%;
    margin-left: 0;
    -webkit-transition: left 0.3s, opacity 0.3s;
    -moz-transition: left 0.3s, opacity 0.3s;
    transition: left 0.3s, opacity 0.3s;
  }
  #cd-logo.is-hidden.slide-in {
    /* slide in when the secondary navigation gets fixed */
    left: 5%;
    opacity: 1;
  }
}

.cd-primary-nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
}
.cd-primary-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-primary-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-primary-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #000101;
  border-top: 1px solid #051426;
  color: #f0eee1;
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
  }
  .cd-primary-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-primary-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-primary-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-primary-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #030d18;
  }
}

/* -------------------------------- 

Intro

-------------------------------- */
#cd-intro {
  position: relative;
  height: 300px;
  background: url(../img/header-image2.jpg) no-repeat center center;
  background-size: cover;
  z-index: 2;
}
#cd-intro-2 {
  position: relative;
  height: 250px;
  background: url(../img/header-image2.jpg) no-repeat center center;
  z-index: 2;
  text-align:center;
  padding-top:22px;
}
#cd-intro #cd-intro-tagline {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
}
#cd-intro-2 #cd-intro-tagline {
  text-align: center;
}
#cd-intro h1 {
  font-size: 24px;
  font-weight: 400;
  color: #1f2437;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


@media only screen and (min-width: 768px) {
  #cd-intro {
    height: 400px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 160px;
  }
  #cd-intro h1 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1170px) {
  #cd-intro {
    height: 600px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 60px;
  }
}

.cd-btn {
  display: inline-block;
  padding: 1em 1.8em;
  background-color: rgba(243, 146, 0, 0.9);
  margin-top: 1em;
  border-radius: 0.5em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  text-decoration: none;
}
.no-touch .cd-btn:hover {
  background-color: #f39200;
  color: white;
  text-decoration: none;
}
@media only screen and (min-width: 1170px) {
  .cd-btn.is-hidden {
    /* assign a position fixed and move outside the viewport (on the right) */
    opacity: 0;
    position: fixed;
    right: -20%;
    top: 0;
    padding: .8em 1.2em;
    margin: 14px 0 0;
    -webkit-transition: right 0.3s, opacity 0.3s;
    -moz-transition: right 0.3s, opacity 0.3s;
    transition: right 0.3s, opacity 0.3s;
  }
  .cd-btn.is-hidden.slide-in {
    /* slide in when the secondary nav gets fixed */
    right: 5%;
    opacity: 1;
  }
}

/* -------------------------------- 

Secondary Fixed Navigation

-------------------------------- */
.cd-secondary-nav {
  position: relative;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-secondary-nav ul {
  /* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
  position: fixed;
  width: 90%;
  max-width: 400px;
  right: 5%;
  bottom: 20px;
  border-radius: 0;
  background: rgba(243, 146, 0, 0.96);
  visibility: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}
.cd-secondary-nav ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}
.cd-secondary-nav li a {
  display: block;
  padding: 1.6em;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}

.cd-secondary-nav li:last-child a {
  border-bottom: none;
}
@media only screen and (min-width: 770px) {
  .cd-secondary-nav {
    z-index: 1;
    height: 100px;
    background-color: rgba(3, 13, 24, 0.96);
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
  }
  .cd-secondary-nav nav, .cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
    height: 100%;
  }
  .cd-secondary-nav ul {
    /* reset navigation values */
    position: static;
    width: auto;
    max-width: 100%;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    text-align: center;
    background-color: #1f2437;
  }
  .cd-secondary-nav li {
    display: inline-block;
    margin-left: -4px;
  }
  .cd-secondary-nav li a {
    position: relative;
    text-align: center;
    display: block;
    padding: 40px 0 40px 40px;
    border-bottom: none;
    -webkit-transition: padding 0.2s;
    -moz-transition: padding 0.2s;
    transition: padding 0.2s;
    text-decoration: none;
  }
  .cd-secondary-nav li a b {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: rgba(240, 238, 225, 0.3);
  }
  .cd-secondary-nav li a span {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 18px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/help.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
      transition: opacity 0.2s;}
      
.cd-secondary-nav li a span1 {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 18px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/kalender.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
    
.cd-secondary-nav li a span2 {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 18px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/prijzen.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
    
.cd-secondary-nav li a span3 {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 18px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/leaderboard.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
    
.cd-secondary-nav li a span4 {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 18px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/contact.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cd-secondary-nav li a:hover b, .cd-secondary-nav li a.active b {
    color: #f49300;
  }
	
  .cd-secondary-nav li:nth-child(1) a span {
    background-position: 0 0;
  }
  .cd-secondary-nav li:nth-child(2) a span {
    background-position: -40px 0;
  }
  .cd-secondary-nav li:nth-child(3) a span {
    background-position: -80px 0;
  }
  .cd-secondary-nav li:nth-child(4) a span {
    background-position: -120px 0;
  }
  .cd-secondary-nav li:nth-child(5) a span {
    background-position: -160px 0;
  }
  .cd-secondary-nav.is-fixed {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    position: fixed;
    left: 0;
    top: 0;
    height: 70px;
    width: 100%;
  }
  .cd-secondary-nav.animate-children {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .cd-secondary-nav.animate-children li a {
    padding: 26px 30px 0 30px;
  }
  .cd-secondary-nav.animate-children li a span, .cd-secondary-nav.animate-children li a span1, .cd-secondary-nav.animate-children li a span2, .cd-secondary-nav.animate-children li a span3, .cd-secondary-nav.animate-children li a span4 {
    opacity: 0;
  }
}

.cd-secondary-nav-trigger {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 45px;
  background: rgba(243, 146, 0, 0.96);
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  text-align: center;
  color: #FFF !important;
  text-decoration: none;
}
.cd-secondary-nav-trigger span {
  /* the span element is used to create the menu icon */
  position: absolute;
  display: block;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.cd-secondary-nav-trigger span::before, .cd-secondary-nav-trigger span::after {
  content: '';
  position: absolute;
  background: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cd-secondary-nav-trigger span::before {
  right: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-secondary-nav-trigger span::after {
  left: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.cd-secondary-nav-trigger.menu-is-open span {
  background: rgba(240, 238, 225, 0);
  width: 20px;
  height: 2px;
}
.cd-secondary-nav-trigger.menu-is-open span::before, .cd-secondary-nav-trigger.menu-is-open span::after {
  background: #f0eee1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
}
.cd-secondary-nav-trigger.menu-is-open span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-secondary-nav-trigger.menu-is-open span::after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 1170px) {
  .cd-secondary-nav-trigger {
    display: none;
  }
}

/* -------------------------------- 

Placeholder Sections

-------------------------------- */
.cd-section {
  margin: 0 auto;
  padding: 20px;
}
.cd-section h2 {
  font-size: 20px;
  margin-bottom: 1.6em;
  font-weight: 700;
  text-align: center;
}
.cd-section p.text-center{
    text-align: center;
	padding-bottom: 20px;
  }
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 1170px) {
  .cd-section {
	margin: 0 auto;
	padding: 20px;
	padding-bottom: 75px;
	padding-top: 50px;
	text-align: left;
  }
  .cd-section h2 {
    font-size: 30px;
  }
  .cd-section p {
    font-size: 17px;
  }
	
}

/* -------------------------------- 

Links tekst

-------------------------------- */

.links a{
    color: rgba(243, 146, 0, 1);
    text-decoration: none;
}

.links a:hover, .links a:active .links a:focus, .links a:visited{
    color: rgba(243, 146, 0, 1);
    text-decoration: none;
}

/*    --------------------------------------------------
	:: Login Section
	-------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.login-page h1{
	color: white;
	text-align: left;
	font-size: 37px;
	margin-bottom: 50px;
	margin-top: 20px;
}
.loginschermregister h1 {
	color: white;
	text-align: left;
	font-size: 42px;
	margin-bottom: 50px;
}
.form-group {
    margin-bottom: 0px !important;
}
.row {
	background: #052453;
}
.form-inloggen {
	margin-left: 20%;
	margin-right: 15%;
	margin-top: 5%;
	text-align: left;
	}
.form-register {
	margin-left: 10%;
	margin-right: 10%;
	text-align: left;
	}
.form-inloggen img {
	margin-bottom: 40px;
}
    .afbeeldingright {
      width: 100%;
      height: auto;
    }

    .image-container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 100vh;
    }
    .image-container-register {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 100vh;
    }
	@media (max-width: 768px) { /* Media query voor schermen tot 768px */
	  .image-container {
		height: 50vh;
		justify-content: center;
		margin-right: 10px;
		margin-left: 10px;
	  }
	  .message {
        display: flex;
        flex-direction: column; /* Zet elementen onder elkaar */
      }
	  p {
        margin: 4px 0px 0px !important;
      }
	  .mlinks, .mrechts {
    	width: 100%;
		 float: left;
	  }
	  .form-inloggen input[type=submit] {
		float: left !important;
		margin-top: 15px;
	  }
	}
	@media (max-width: 768px) { /* Media query voor schermen tot 768px */
	  .image-container-register {
		height: 50vh;
		justify-content: center;
		margin-right: 10px;
		margin-left: 10px;
	  }
		.form-register .message {
    		padding-top: 10px;
			padding-right: 16px;
		}
		.form-register img {
			margin-bottom: 40px;
			margin-top: 40px;
			
}
	  .message {
        display: flex;
        flex-direction: column; /* Zet elementen onder elkaar */
      }
	  p {
        margin: 4px 0px 0px !important;
      }
	  .form-register input[type=submit] {
		float: left !important;
		margin-top: 15px;
	  }
	}

	 .col-md-6 {
	  padding-right: 0px !important;
	  padding-left: 0px !important;
	}

.container-fluid {
     padding-left: 0 !important; 
}
.form-register {
    text-align: left;
}
.form-register img {
	margin-bottom: 40px;
} 
.form-row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}
.row {
     margin-left: 0 !important;
}


.form {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
}
.form input, .form-inloggen input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
#email, #wachtwoord {
    width: 95% !important;
	margin-bottom: 20px;
}
.form-register input{
	font-family: "Roboto", sans-serif;
    outline: 0;
    background: #f2f2f2;
/*    width: 100%;
    border: 0;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}
.form-register input[type=checkbox] {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #f2f2f2;
/*    width: 15%;*/
    border: 0;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}
  .checkbox-container {
    display: flex;
    flex-wrap: wrap; /* Laat de checkboxen overschakelen naar een nieuwe regel als het scherm te klein is */
  }
  .checkbox-container .form-check {
    display: flex;
  }
#teamnaam {
	width: 100% !important;
}
.form-inloggen input[type=submit]{
    background: #faaf00;
    color: white;
    font-weight: 500;
    max-width: 80%;
    float: right;
}
.form-register input[type=submit] {
    background: black;
    color: white;
    font-weight: 500;
    max-width: 100%;
    float: right;
}
.form button {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: black;
  width: 100%;
  border: 0;
  border-radius: 0.5em;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: #e08200;
}
.form-inloggen .message {
  margin: 15px 0 0;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
	 margin-right: 10px; /* Wat ruimte tussen de tekst en de knop */
	  text-decoration: none;
}
.form-register .message {
  margin: 15px 0 0;
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 10px;
  margin-right: 10px; /* Wat ruimte tussen de tekst en de knop */
  text-decoration: none;
}
.form-inloggen .message a {
  color: #faaf00;
}
.form-register a {
  color: #faaf00;
  padding-left: 5px;
}
.form .register-form {
  display: none;
}

.form-check {
    display: flex;
    margin-right: 14px;   /* Ruimte tussen de opties */
    position: relative;   /* Zorg dat er geen overlap is */
    padding-left: 0 !important;
}

.form-input-check {
    margin-right: 2px;
    width: 18px;
    height: 21px;
}

.form-check-label {
    margin-bottom: 0;
    white-space: nowrap;  /* Zorg ervoor dat lange labels niet afbreken en door elkaar lopen */
	font-size: 15px;
	color: white;
}







.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}
.loginscherm{
    background: #ff4d02;
    position: relative;
    background-size: cover;
    z-index: 2;
}
.loginschermregister {
    background: #ff4d02;
    position: relative;
    background-size: cover;
    z-index: 2;
}
section#divisie h1 {
    color: #FFF;
}
.checkboxp{
    margin-top: -28px;
    margin-bottom: 20px;
    color: #b3b3b3;
    font-size: 12px;
}

.checkboxp a {
    color: #f39200;
    text-decoration: none;
}

#myFooter {
	background-color: #ff4d02;
	color: white;
	padding-bottom: 50px;
	padding-top: 50px;
}

#myFooter .footer-copyright{
	background-color: #ff4d02;
	padding-top:3px;
	padding-bottom:3px;
	text-align: center;
}

#myFooter .footer-copyright p{
	margin-top: 60px;
	color: #ffffff;
}

#myFooter ul{
	list-style-type: none;
    padding-left: 0;
    line-height: 1.7;

}

#myFooter h5{
	font-size: 18px;
    color: white;
    font-weight: bold;
}

#myFooter a{
	color:#ffffff;
	text-decoration: none;
}

#myFooter a:hover, #myFooter a:focus{
	text-decoration: none;
	color: #f39200;;
}

#myFooter .myCols{
	text-align: left;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
section#divisie-sections a {
    color: #000;
}
@media screen and (max-width: 768px){
	.form-inloggen {
    margin-left: 5% !important;
    margin-right: 5% !important;
    margin-top: 9%;
    text-align: left;
}
	.btn-divisie {

    padding: 6px 6px !important;
	}
	
	section#divisie h1 {
    color: #FFF;
    font-size: 20pt;
}
	.header {
		background-color: #ff4d02;
		width: 100vw;
		padding: 20px 0px!important;
	}
	.navbar-toggler-icon {
		display: inline-block;
		width: 1.5em;
		height: 1.2em !important;
		vertical-align: middle;
		content: "";
		background: no-repeat center center;
		background-size: 100% 100%;
	}
	#myFooter {
		text-align: center;
		margin-top: 40px;
	}
	.footer-copyright p {
		margin-top: 60px !important;
		margin-left: 50px !important;
		margin-right: 50px !important;
	}
	#myFooter h5 {
    	margin-top: 17px;
	}
	section#textcontainer p {
		margin-bottom: 30px !important;
	}
	.cd-section p {
		font-size: 13pt;
		margin-top: 40px !important;
	}


	
	.threecolumn{
		width:100%;
		padding:0px !important;
}
p {
    margin: 0 0 0px !important;
}
.cd-section {
    margin: 0 auto;
    padding: 0px;
}
table {
    font-size: 11pt;
}
.login-page {
      width: 100%;
    }
td.responivetable.team {
    display: none;
}
td.responivetable.kaart {
    display: none;
}
main.cd-main-content {
    margin-top: 0px;
    margin-bottom: 0px;
}
	div#rb {
		padding: 23px !important;
		position: relative !important;

		float: none !important; 
		margin-bottom: 30px!important;
	}
	a.buttonUitloggen {
    display: inline-block;
    margin: 11px;
}
	.sections-container {
       gap: 10px !important;
}
	.section-item {
    width: 100% !important;
    height: fit-content !important;
    background-color: #FFF;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
}



/* CSS used for positioning the footers at the bottom of the page. */
/* You can remove this. */


html{
	height: 100% !important;
}


.portfolio-modal .modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  min-height: 100%;
  padding: 100px 0;
  text-align: center;
}
.portfolio-modal .modal-content h2 {
  margin: 0;
  font-size: 3em;
}
.portfolio-modal .modal-content img {
  margin-bottom: 30px;
}
.portfolio-modal .modal-content .item-details {
  margin: 30px 0;
}
.portfolio-modal .close-modal {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: transparent;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
  height: 75px;
  width: 1px;
  margin-left: 35px;
  background-color: #2C3E50;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 1051;
}
.portfolio-modal .close-modal .lr .rl {
  height: 75px;
  width: 1px;
  background-color: #2C3E50;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 1052;
}
.portfolio-modal .modal-backdrop {
  opacity: 0;
  display: none;
}

.glyphicon{
    margin-bottom: 25px;
    margin-top: 25px;
}
.fout {
    border: 1px solid red !important;
}
td, th {
    padding: 5px;
}

.header {
    background-color: #ff4d02; /* Orange background */
    width: 100vw; /* Full width */
    padding: 30px; /* 50px padding inside the header */
}
.buttonUitloggen {
    color: #ff4d02;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    border-radius: 0px !important;
    font-weight: 600!important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    text-decoration: none;
    transition: all .2s linear;
    margin-top: 10px;
	margin-left: 20px;
}
.buttonUitloggen:hover {
    color: #FFFFFF;
    background-color: black;
    border-color: black;
	text-decoration: none;
}
section#textcontainer {
    background: #ff4d02;
}
section#textcontainer p {
    font-size: 15pt;
}
div#rb {
    background: #ff4d02;
    border: 3px solid #ff4d02;
    float: right;
    padding: 22px !important;
    margin-top: 5px;
    border-radius: 15px;
}
ul.nav {
    font-size: 1.0625rem; 
	font-weight: 600;
}
.nav-link:focus, .nav-link:hover, a.active {
    text-decoration: none;
    color: black !important;
	transition: all .2s linear;
}

    .navbar-toggler {
        font-size: 30px;
        color: white;
        border: none;
        background: none;
    }

    /* Optional: You can style the navbar-toggler-icon to make it more visible */
    .navbar-toggler-icon {
        font-size: 30px;
        color: white;
    }

    /* Mobile Menu Styling */
    .collapse {
        padding: 0px;
    }

    .menu-mobile .nav-link {
        font-size: 20px;
        color: white;
        padding: 5px;
        text-transform: uppercase;
    }

    /* For larger screens, hide the collapse */
    @media (min-width: 768px) {
        .collapse {
            display: none !important;
        }
    }


input#toevoegen {
    background: #000000;
    border: 0px;
    padding: 10px;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10pt;
	transition: all 0.2s ease-in-out;
}
input#toevoegen:hover {
    background: #ff4d02;
}
input#verwijderen {
    background: #ff0303;
    border: 0px;
    padding: 10px;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10pt;
	transition: all 0.2s ease-in-out;
}
input#verwijderen:hover {
    background: #ff4d02;
}
section#divisie {
    top: 0px;
    width: 100%;
    text-align: center;
    background: #d64000;
    padding: 11px;
    color: #FFF !important;
}
#divisie-sections {
    background-color: #ff4d02;
}

.sections-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.section-item {
    width: 16%; /* Vaste breedte van de rechthoeken */
    height: 90px; /* Vaste hoogte van de rechthoeken */
    background-color: #FFF; /* Maak elk vak wit */
    padding: 28px;
    text-align: center;
    display: flex; /* Gebruik Flexbox om de tekst verticaal en horizontaal te centreren */
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 16px; /* Pas het lettertype aan om binnen de rechthoeken te passen */
    color: #000; /* Zorg ervoor dat de tekst zichtbaar is op de witte achtergrond */
}
.niet-actief {
    background: #d64000;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.niet-actief a {
    color: white; /* Zorgt ervoor dat de tekst wit is als je niet hovert */
    text-decoration: none;
    display: block; /* Maakt de hele div klikbaar */
    height: 100%; /* Zorgt ervoor dat de link de volledige hoogte van de div inneemt */
}

.niet-actief:hover {
    background: white;
}

.niet-actief:hover a {
    color: black; /* Verandert de tekstkleur naar zwart bij hover */
    text-decoration: none; /* Verwijdert onderstreping bij hover */
}

.divisie-buttons {
    display: flex;
    justify-content: space-between; /* Verdeel de knoppen gelijkmatig */
    gap: 20px; /* Ruimte tussen de knoppen */
    margin-bottom: 20px; /* Ruimte onder de knoppen */
}

.btn-divisie {
    flex: 1; /* Zorgt ervoor dat de knoppen dezelfde breedte hebben */
    padding: 10px 20px;
    background-color: #faaf00; /* Button achtergrondkleur */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 16px; /* Pas het lettertype aan naar wens */
}

.btn-divisie:hover {
    background-color: #2891e1; /* Verander de kleur bij hover */
    text-decoration: none;
    color: white;
}