:root {
	--basiskleur:#075081;
	--huisstijlkleur1: #FF781C;
	--huisstijlkleur2: #54B1CC;
}

@font-face {
    font-family: 'doctor_glitchregular';
    src: url('fonts/doctor-glitch-webfont.woff2') format('woff2'),
         url('fonts/doctor-glitch-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html, body {
	font-family: 'Poppins', Arial;
	overflow-x:hidden;
	position:relative;
	min-height:100vh;
	margin:0;
	padding:0;
}

a {
	color:#0056B3;
	text-decoration:underline;
}

a:hover {
	text-decoration:none;
}

body a:focus {
  outline: 2px solid var(--basiskleur);
}

body button:focus, body .btn:focus, body .form input:focus, #gdprc_settings .gdprc_button:focus {
  outline: 3px solid var(--basiskleur);
  outline-offset: 3px;
  box-shadow:none;
}

p, ul, li {
	font-weight:300;
	color:#242424;
	line-height:200%;
}

b {
	font-weight:600;
}

label {
	color:var(--basiskleur);
}

nav {
	height:80px;
	box-shadow: 0 3px 6px rgba(7, 80, 129, 0.35);
	z-index:999;
	width:100%;
	top:0;
	padding-top:8px;
	position:fixed;
}

nav span {
	color:var(--basiskleur);
	font-family:"doctor_glitchregular";
	font-weight:500;
	font-size:44px;
}

nav a {
	text-decoration:none;
	height:65px;
	display:inline-block;
}

nav .btn {
	color:var(--huisstijlkleur1);
	border:1px solid var(--huisstijlkleur1);
	border-radius:20px;
	text-decoration:none;
}

@media (max-width: 575.99px) {

	p {
		margin-bottom:50px;
	}

	nav {
		height:40px;
		padding-top:0;
	}

	nav span {
		font-size:16px;

	}

	nav a {
		margin-top:8px;
		height:30px;
	}
}

@media (min-width: 576px) and (max-width: 767.99px) {

	p {
		margin-bottom:50px;
	}

	nav {
		height:40px;
		padding-top:0;
	}

	nav span {
		font-size:16px;

	}

	nav a {
		margin-top:8px;
		height:30px;
	}
}


@media (min-width: 768px) and (max-width: 991.99px) {

	nav {
		height:65px;
	}

	nav a {
			height:50px;
	}

	nav span {
		font-size:34px;
	}

}


@media (min-width: 992px) and (max-width: 1199.99px) {

	nav {
		height:65px;
	}

	nav a {
			height:50px;
	}

	nav span {
		font-size:34px;
	}

}

.banner {
	top:80px;
	position:absolute;
	z-index:2;
	background-color:#ffffff;
	padding:30px 20px;
	box-shadow:0px 10px 20px -6px rgba(0,0,0,.3);
	max-width:calc(100% - 25px);
}
	.banner img {
		height:60px;
		width:auto;
		max-width:100%;
		object-fit:contain;
		object-position:center;
	}
@media (max-width:1199px) {
	.banner { top: 65px; padding: 15px 10px; }
	.banner img { height:40px; }
	.home .banner img { height:60px; }
}
@media (max-width:767px) {
	.banner { top: 40px; }
}


@media (max-width: 575.99px) {

	#dashboard-video .v-center {
		position:relative;
		transform:none;
		top:0;
	}
}

@media (min-width: 576px) and (max-width: 767.99px) {

	#dashboard-video .v-center {
		position:relative;
		transform:none;
		top:0;
	}
}





.hamburger-wrapper {
  display: flex;
  align-items: center;
  justify-content: right;
  height: 100%;
  width: 60px;
  position:absolute;
  top:0;
  right:15px;
}

.hamburger {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 999;
}

/* Hamburger lines */
.hamburger .line {
  width: 100%;
  height: 3px;
  background-color: var(--basiskleur);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}

.hamburger.is-active .l1 {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.is-active .l2 {
  opacity: 0;
}

.hamburger.is-active .l3 {
  transform: translateY(-7.5px) rotate(-45deg);
}

.submenu {
	width:360px;
	max-width:100%;
	position:fixed;
	top:0;
	right:-360px;

	height:100vh;
	padding-top:100px;
	border-left:1px solid var(--basiskleur);
	background-color:#ffffff;
	z-index:50;
	transition: right 0.3s ease-in-out;
}
.submenu.active {
	right:0;
}

.submenu a {
	display:block;
	padding:10px 25px;
	text-decoration: none;
	margin:10px;
	color:var(--basiskleur);
}

.submenu a.active {
	color:#ffffff;
	background-color:var(--basiskleur);
	opacity:1;
}

.submenu a:hover {
	color:#ffffff;
	background-color:var(--basiskleur);
}
.submenu a i {
	text-decoration:none;
	padding:10px;
	vertical-align: middle;
}

.submenu a span {
	/*text-decoration: underline;*/
}

@media (max-width: 575.99px) {
	.submenu {
		right:-100%;
		width:100%;
	}
}

.row-eq-height {
  display: flex;
}

.full-height {
	flex:1;
}

.blue {
	color: var(--basiskleur);
}

.bg-blue {
	background-color: var(--basiskleur);
}



.bg-white {
	background-color: #ffffff;
}

.no-padding {
	padding-left:0;
	padding-right:0;
}

.no-padding-left {
	padding-left:0;
}

.no-padding-right {
	padding-right:0;
}

.fill-image {
	object-fit: cover;
	max-width:100%;

}

.btn, #gdprc_bar .gdprc_button {
	border-radius:0;
	font-weight:600;
	padding:10px 30px;
	background-color: var(--basiskleur);
	color:#ffffff;
	border:2px solid var(--basiskleur);
	border-radius:0;
}

.btn:hover {
	position: relative;
	background-color:#ffffff;
	color:var(--basiskleur);
	border:2px solid var(--basiskleur);
}

.gradient-blok {
  width: 100%;
  height: auto;

  background: linear-gradient(
    to bottom,
    #075081,
    #54B1CC
  );

  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 85%
  );
  padding-bottom:60px;
  color:#fff;
}



.gradient-blok.blauw {
  position: relative;
  width: 100%;
  background: linear-gradient(
    to bottom,
    #075081,
    #54B1CC
  );
  padding-bottom: 60px;
  color: #fff;
  overflow: hidden;
  clip-path:none;
}

.gradient-blok.blauw::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;              /* ≈ jouw 85% snede */
  background: white;        /* kleur van de volgende sectie */
  transform-origin: left top;
  transform: skewY(-2deg);
}


.gradient-blok.end {
	background: linear-gradient(
		to top,
		#BC5006,
		#FF781C
	  );
	clip-path: polygon(
	  0 0,
	  100% 15%,
	  100% 100%,
	  0 100%
	);
	height:360px;
	margin-top:-180px;
	position:relative;
	z-index:0;
}

.gradient-blok p {
	color:#ffffff;
}

.gradient-blok a {
	color:#ffffff;
}

.gradient-blok h1 {
	font-size: 50px;
	font-weight:bold;
	color:#ffffff;
}

.gradient-blok h2 {
	font-size: 32px;
	font-weight:bold;
	color:#ffffff;
	margin:20px auto;
}


.gradient-blok h3 {
	font-size: 32px;
	font-weight:bold;
	color:#ffffff;
}

@media (max-width: 575.99px) {

	.mobile-reset-padding {
		padding-left: calc(var(--bs-gutter-x) * .5);
		padding-right: calc(var(--bs-gutter-x) * .5);
	}


	.gradient-blok.blauw::after {
		height: 5%;
	}
}

@media (min-width: 576px) and (max-width: 991.99px) {
	.mobile-reset-padding {
		padding-left: calc(var(--bs-gutter-x) * .5);
		padding-right: calc(var(--bs-gutter-x) * .5);
	}


	.gradient-blok.blauw::after {
		height: 5%;
	}
}

h1 {
	color:var(--basiskleur);
	font-weight:700;
}



h2 {
	color:var(--basiskleur);
	margin-bottom:40px;
	font-size:32px;
	font-weight:700;
}



h3 {
	color:var(--basiskleur);
	text-align:left;
	font-size:20px;
	margin-top:50px;
}


.logobar {
	margin-top: 0;
}

.logos {
	margin:10px 0;
}

.logobar img {
	margin:10px;
}

.skiplink {
	position:absolute;
	left:20px;
	top:20px;
	color: #fff;
  	background-color: var(--basiskleur);
  	border-color: var(--basiskleur);
  	padding:0;
  	text-decoration:none;
  	display:inline-block;
  	border-radius:0.25rem;
  	width:0;
	height:0;
	clip: rect(1px,1px,1px,1px);
	z-index:1000;
}

.skiplink:hover {
	color:#ffffff;
	text-decoration:none;
}

.skiplink:focus {
	width:auto;
	height:auto;
	clip:auto;
	padding:5px 15px;

}

section {
	padding:50px 0;
	position:relative;
	z-index:1;
}

section#intro,
section#login,
section#register,
section#forgot-password {
	padding:0;
}

section#breadcrumb {
	padding:50px 0 25px 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	section#login,
	section#register {
		padding:0;
	}
}

section#login .fill-image,
section#register .fill-image,
section#forgot-password .fill-image {
	background-color: #001620;
}

section#overzicht {
	padding-bottom:0;
	z-index:10;
}


.v-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}


.page-template-tpl-custom-login h1,
.page-template-tpl-custom-registratie h1 {
	color:var(--basiskleur);
	font-family:"doctor_glitchregular";
	margin-bottom:0;

}

.page-template-tpl-custom-login h2,
.page-template-tpl-custom-registratie h2 {
	margin-top:10px;
	color:var(--basiskleur);
}

.page-template-default h3 {
	margin-bottom:10px;
	color:var(--huisstijlkleur2);
}




section#dashboard-video {
	padding-top:0px;
	margin-bottom:70px;
}

section#lesson-video {
	padding-top:0px;
}

.playvlak {
  padding: 0;
  border: 0;
  background: none;
  width: 100%;
  cursor: pointer;
  line-height:0;


}



.poster {
  position: relative;
  display: block;
  width: 100%;
}

.poster-image {
  display: block;
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;              /* pas aan naar wens */
  height: auto;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.playvlak:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 575.99px) {
	.play-button {
		width: 80px;
	}
}

.tabs {
	background-color:#ffffff;
	margin-top:20px;
	box-shadow:  0 3px 6px rgba(7, 80, 129, 0.35);
	box-sizing: border-box;
	white-space:nowrap;
	display:flex;
	flex-direction:row;
}

.tabs .tab {
	width:calc(50% - 2px);
	padding:10px 0 10px 20px;
	text-align:left;
	 box-sizing: border-box;
	 display:inline-block;
	 border:2px solid var(--basiskleur);
	flex:1;
	text-decoration:none;
	outline-offset:2px;
	color: var(--basiskleur);
}

.tabs .tab.activetab {

	background-color:var(--basiskleur);
	color:#ffffff;
	font-weight:bold;
	border:2px solid var(--basiskleur);
}

#passwordless-login {
	margin:35px;
}

.form {
	padding:20px 0;
	background-color:#ffffff;
	box-shadow:  0 3px 6px rgba(7, 80, 129, 0.35);
	border: 0px;
}


@media (min-width: 768px) and (max-width: 991.98px) {

	.form {
		padding:15px 0;
	}
}

.form input, .modal-body input {
	display:block;
	padding:10px;
	width:100%;
	margin-top:15px;
	margin-bottom:35px;
	border:1px solid var(--basiskleur);
	box-shadow: 0 3px 6px rgba(7, 80, 129, 0.35);
	border-radius:0;
}


.form input[type="submit"]{
	width:50%;
	margin-left:25%;
	margin-top:20px;
	color:#ffffff;
	text-transform:uppercase;
	background-color:var(--huisstijlkleur1);
	font-weight:bold;
}

.form input[type="checkbox"]{
	display:inline;
	width:auto;
	margin-left:0;
}



#feedback.active {
	color:#AD1616;
	border:2px solid #AD1616;
	padding:10px;
	text-align:center;
	width: 74%;
  	margin-left: 13%;
  	margin-top:20px;
  	margin-bottom:20px;
}

.register-message, .login-message {
	padding:10px;
	text-align:center;
	width: 100%;
  	margin-top:20px;
  	margin-bottom:20px;
	display:none;
}

.register-message.error, .login-message.error {
	color:#AD1616;
	border:2px solid #AD1616;
	display:block;
}

.login-message.success {
	color:#155724;
	border:2px solid #155724;
	display:block;
}


#overzicht .afbeelding {
	margin-top: -90px;
	position:relative;
	z-index:76;
}

@media (max-width: 575.99px) {
	#overzicht .afbeelding {
		margin-top: 50px;
	}
}

@media (min-width: 576px) and (max-width: 991.99px) {
	#overzicht .afbeelding {
		margin-top: 50px;
	}
}

@media (min-width: 992px) and (max-width: 1199.99px) {
	#overzicht .afbeelding {
		margin-top: 90px;
	}
}


.btn-basis {
	text-align:center;
	color: var(--basiskleur);
	font-weight:500;
	padding:8px 16px;
	display:inline-block;
	width:220px;
	border:2px solid var(--basiskleur);
	background-color:#ffffff;
	cursor:pointer;
}

.btn-lesson {
	text-align:center;
	color:#ffffff;
	font-weight:500;
	padding:12px 16px;
	display:inline-block;
	text-decoration:none;
	font-size:16px;
	width:100%;
	border: 2px solid var(--basiskleur);
}

.btn-niveau {
	text-align:center;
	color: var(--basiskleur);
	font-weight:500;
	padding:8px 16px;
	display:inline-block;
	width:220px;
	border:2px solid var(--basiskleur);
	background-color:#ffffff;
	cursor:pointer;
}

.btn-niveau.actief, .btn-niveau:hover, .btn-basis:hover {
	position: relative;
	color:#ffffff;
	background-color:var(--basiskleur);
}

.btn-niveau.actief:before {
	content:"";
	position:absolute;
	top:calc(50% - 5px);
	left:15px;
	width:10px;
	height:10px;
	background-color:#ffffff;
	border-radius:50%;
}

.alert-info {
	color:#ffffff;
	background-color:var(--basiskleur);
	border-radius:0;
}

@media (max-width: 575.99px) {
	.btn-niveau, .btn-basis {
		width:100%;
		margin-bottom:20px;
		margin-left:0 !important;
	}
}

@media (min-width: 576px) and (max-width: 767.99px) {
	.btn-niveau, .btn-basis {
		width:100%;
		margin-bottom:20px;
		margin-left:0 !important;
	}
}


.gevorderd-waarschuwing {
	display:none;
}

#gevorderd {
	display:none;
}


.poweredby img {
	margin-top:50px;
	max-width:100%;
}



.gefeliciteerd .btn {
	background-color:white;
	color:var(--basiskleur);
	border:2px solid white;
}

.gefeliciteerd .btn:hover {
	color:white;
	background-color:var(--basiskleur);
	border:2px solid white;
}

.btn-start {
	background-color:var(--basiskleur);
}

.btn-continue {
	background-color:var(--basiskleur);
	color:#ffffff;
}


.btn-completed {
	background-color:var(--basiskleur);
}

.btn-opnieuw {
	background-color:var(--basiskleur);
}

.card {
	margin-top:40px;
	border-radius:0px;
	border:0px;
	box-shadow: 2px 3px 6px rgba(7, 80, 129, 0.35);
	min-height: calc(100% - 40px);
	z-index:10;
}

.niveau .card-header {
	border-radius:0;
	padding:0;
	position:relative;
}

.card-header .overlay {
	color:white;
	background-color:#075081;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	display:flex;
	align-items:center;
	mix-blend-mode: multiply;
}

.niveau .card-header h3 {
	text-align:center;
	color:white;
	width:100%;
	font-size:40px;
	font-family: 'doctor_glitchregular';
	margin-bottom:0;
	margin-top:0;
	isolation: isolate;
	z-index:10;
	position:absolute;
	top:50%;
	transform: translateY(-50%);
}

.niveau .card-header h3 span {
	font-size:20px;
}

.card .card-text {
	min-height:130px;
}

.card-body {
	padding:35px 35px;
}


#header-image {
	width:100%;
	margin-top:80px;
	aspect-ratio:3/0.7;
	padding:0;
	position:relative;
	height:500px;
}

#header-image img {
	object-fit: cover;
	width:100%;
	height:100%;
}

#header-image .overlay {
	color:white;
	background-color:#075081;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	display:flex;
	align-items:center;
	mix-blend-mode: multiply;

}

#header-image h1 {
	text-align:center;
	color:white;
	width:100%;
	font-size:80px;
	font-family: 'doctor_glitchregular';
	isolation: isolate;
	position:absolute;
	top:60%;
	transform: translateY(-50%);
	z-index:10;
	line-height: 70%;
}


#header-image h1 span {
	font-size:40px;
}

@media (max-width: 576.99px) {

	#header-image h1 {
			font-size:40px;
	}

	#header-image h1 span {
		font-size:20px;
	}

	#header-image .overlay h1 {
		font-size:30px;
	}

	.card-header .overlay h3 {
		font-size:30px;
	}
}

@media (min-width: 768px) and (max-width: 1199.99px) {

	.card-header .overlay h3 {
		font-size:30px;
	}
}

.quiz-card {
	display:none;
	padding-bottom:0;
}

.quiz-card:first-of-type {
	display:block;
}

.quiz-card .card-header {
	background-color:var(--basiskleur);
	color:#ffffff;
	border-radius:0;
	min-height:100px;
	padding:30px;
	float:none;
}

.quiz-card h3 { /* wcag */
	font-size:20px;
	font-weight:600;
	color:#ffffff;
	text-align:left;
	margin-bottom:0;
	margin-top:0;
}

.quiz-card ul {
	list-style:none;
	padding-left:0;
	margin-left:20px;
	margin-right:20px;
	margin-bottom:20px;
}

.quiz-card ul li {
	padding:20px;
	font-size:16px;
	margin-bottom:10px;
	box-shadow: 2px 3px 5px 0px rgba(7, 80, 129, 0.35);
	cursor:pointer;
}

.quiz-card ul li:focus {
	outline: 2px solid #042841;
	outline-offset: 2px;
}

.quiz-card ul li.selected {
	background-color:var(--basiskleur);
	color:#ffffff;
}

.quiz-card ul li label {
	margin:0;
	pointer-events:none;
}


.quiz-card ul li.selected label {
	color:#ffffff;
}

.quiz-card ul li input {
	visibility:hidden;
	height: 0;
	float:left;
}

.quiz-card .card-img {
	object-fit: cover;
    height: 100%;
	border-radius:0;
}

.quiz-afgerond {
	display:none;
}

.quiz-afgerond.show, .quiz-card:first-of-type.show {
	display:block !important;
}

.progression {
	background-color:var(--basiskleur);
  width: 275px;
  height: 46px;
  margin-right:20px;
  position:relative;
}

.progress-number {
	  position:relative;
	display:inline-block;
	height:30px;
	width:100%;
	vertical-align: bottom;
	margin-right:20px;
	padding-top:10px;
	z-index:3;
	text-align:left;
	margin-left:10px;
}


.progress-number span { /* wcag */
	font-weight:500;
	color:#ffffff;
}



.progress-bar {
	position:absolute;
	left:55px;
	top:8px;
  height: 30px;
  background-color:var(--huisstijlkleur2);
}

.progress-bg {
	position:absolute;
	background-color:white;
	width:calc(100% - 75px);
	left:55px;
	top:8px;
  height: 30px;
}

.tryagain, .nextquestion, .revideo {
	margin-top:20px;
	cursor:pointer;
}

.btn-submit {
	margin-top:20px;
	background-color:#2CCDE6;
	color:#ffffff;
}

.btn.answer {
	margin-left:20px;
	border:2px solid var(--basiskleur);
}

.btn.answer:hover {
	position: relative;
	background-color:#ffffff;
	color:var(--basiskleur);
	border:2px solid var(--basiskleur);
}

.btn.answer.inactive {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none; /* extra zekerheid */
}




.score-card {
	border-radius:10px;
}

.score-card .card-header {
	background-color:var(--huisstijlkleur2);
	color:#ffffff;
	font-size:18px;
	font-weight:500;
}

.card-body-correct-answer, .card-body-wrong-answer {
	display:none;
	margin-bottom: 50px;
	padding:35px;
}
.card-body-question .justify-content-between {
	gap:10px;
}

#profiel {
	margin-top:58px;
	margin-bottom:180px;
}

.account-shortcuts {
	padding:35px;
	box-shadow: 0 3px 6px rgba(7, 80, 129, 0.35);
}

.list-group p {
	margin:0;
}

.status {
	display:inline-block;
	width:10px;
	height:10px;
	border-radius:5px;
	background-color:red;
}

.status.afgerond {
	background-color:green;
}

.btn-profiel {
	width:150px;
	color:#ffffff;

}

@media (max-width: 575.98px) {

	#profiel p {
		margin-bottom:10px;
	}

}

#privacy {  /* wcag */
	margin-top:58px;
	margin-bottom:180px;
}

#privacy section { /* wcag */
	padding:0;
}

#videoModal {
	padding:30px;
}

#videoModal .modal-dialog {
	max-width:800px;
	width:auto;
	margin: 1.5rem auto;
}

.modal h3 {
	margin-top:0;
}

 .modal-content {
	border:0;
	border-radius:0;
}



 .modal-footer {
	border-radius:0;
	justify-content:flex-start;
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.footer {
	background-color:var(--basiskleur);
	color:#ffffff;
	padding:10px;
	text-align:center;
	width: 100%;
	bottom: 0;
	position:absolute;
}

.footer a, .footer button {
	color:var(--white);
	font-size:12px;
	text-decoration:underline;
	cursor:pointer;
	background:none;
	border:0px;
}

.noconsent {
	display:block;
	text-align:center;
	margin-top:28%;
	color:#000000;
}

#cookieconsent {
	position: fixed;
	font-size:14px;
	width:500px;
	height:250px;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	z-index:9999;
	border-top:1px solid #eee;
	background-color:#ffffff;
	text-align:center;
	padding:25px;
	max-width:100%;
}

#cookieconsent button {
	background-color:#007500;
	color:#ffffff;
	border-radius:5px;
	border:0;
	padding: 5px 15px;
}

#cookieconsent .close {
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
}

#cookieconsent .close:after{
  display: inline-block;
  content: "\00d7";
}

@media (max-width: 575.98px) {

	h1 {
		font-size:28px;
	}

	#header-video {
		height:250px;
	}

	#header-video .header-image {
		height:250px;
		margin-top:40px;
	}

	#header-image {
	   height:300px;
	   margin-top:40px;
  	}

	.card {
	    margin-top: 15px;
   	}

	.card-body {
	  padding: 15px;
	}

   	.quiz-card ul {
	    margin-left: 0;
		margin-right: 0;
	}

	.quiz-card .card-header {
		padding:15px;
		height:auto;

	}

	.quiz-card h3 {
		font-size:16px;
		line-height:170%;
	}

	section {
	    padding: 50px 0 20px 0;
	}

	.playvlak {
		background-size:100px;
		background-position: center 20px;
		padding-left:0px;
		padding-top:0px;
	}

	.playvlak h3 {
		font-size:20px;
		text-align:center;
	}

	.justify-content-center {
		display:block !important;
	}

	.justify-content-center .btn {
		width:calc(100% - 10px);
		margin-bottom:10px;
	}

	.btn.answer {
		margin-left: 0px;
	}
	.progression {
		margin-right:0;
	}

	.progress-number {
		margin-right:0;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {



	.card {
	    margin-top: 15px;
   	}

	.card-text {
		min-height:200px;
	}
	.quiz-card ul {
	    margin-left: 0;
		margin-right: 0;
	}

	.quiz-card .card-header {
		padding:15px;
		height:auto;

	}

	.quiz-card h3 {
		font-size:16px;
		line-height:170%;
	}

	.btn.answer {
		margin-left: 0px;
	}
	.progression {
		margin-right:0;
	}

	.progress-number {
		margin-right:0;
	}

	#header-image {
		margin-top: 40px;
		height:300px;
	}


}

@media (min-width: 768px) and (max-width: 991.98px) {


	.card-text {
		min-height:200px;
	}

	#header-image {
		margin-top: 60px;
		height:300px;
	}

}

@media (min-width: 992px) and (max-width: 1199.98px) {

	.card .card-text {
		min-height:120px;
	}

	#header-image {
		margin-top: 60px;
	}

}

@media (min-width: 1200px){
	#header-image {
		margin-top: 80px;
	}
}



#preview {
	image-rendering: crisp-edges;
	width:100%;
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .2);
}

#preview canvas {
	width:100%;
	height:100%;
}

#htmldata {
	position: relative;
}

#htmldata p {
	margin-top:1em;
	margin-bottom:1em;
}

.sheet {
  margin: 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  page-break-after: always;
  box-shadow: 0 3px 6px rgba(7, 80, 129, 0.35);
}

.A4 {
	box-sizing: border-box;
	width: 300mm;
	height: 210mm;
	top: -10000px;
  left: -10000px;
  position:absolute;
}

.A4.landscape .sheet {

  width: 300mm;
  height: 210mm;
}

.A4 .regel1 {
	position:absolute;
	width:100%;
	top:70mm;
	text-align:center;
	font-size:20px;
	z-index:10;
}

.A4 .regel2 {
	position:absolute;
	width:100%;
	top:90mm;
	text-align:center;
	font-size:50px;
	font-weight:bold;
	z-index:10;
	color:var(--basiskleur);
}

.A4 .regel3 {
	position:absolute;
	width:100%;
	top:125mm;
	text-align:center;
	font-size:18px;
	z-index:10;
}


.A4 .img-background {
	position:relative;
	top:0;
	bottom:0mm;
	left:0mm;
	right:0;
	width:100%;
	height:auto;
}

.A4 .logo-certificaat {
	position:absolute;
	width:360px;
	top:150mm;
	left: 50%;
    transform: translate(-50%, 0);
	z-index:10;
}

.A4 .logo-certificaat-breed {
	position:absolute;
	width:500px;
	top:150mm;
	left: 50%;
    transform: translate(-50%, 0);
	z-index:10;
}

.preview .regel1 {
	position:absolute;
	width:100%;
	top:80mm;
	text-align:center;
	font-size:20px;
	z-index:10;
}

.preview .regel2 {
	position:absolute;
	width:100%;
	top:100mm;
	text-align:center;
	font-size:50px;
	font-weight:bold;
	z-index:10;
	color:var(--basiskleur);
}

.preview .regel3 {
	position:absolute;
	width:100%;
	top:135mm;
	text-align:center;
	font-size:18px;
	z-index:10;
}


.preview .img-background {
	position:relative;
	top:0;
	bottom:0mm;
	left:0mm;
	right:0;
	width:100%;
	height:auto;
}

.preview .logo-certificaat {
	position:absolute;
	width:360px;
	top:170mm;
	left: 50%;
    transform: translate(-50%, 0);
	z-index:10;
}

.preview .logo-certificaat-breed {
	position:absolute;
	width:500px;
	top:170mm;
	left: 50%;
    transform: translate(-50%, 0);
	z-index:10;
}

#certificaat-share img {
	width:100%;
}

#certificaat-download {
	margin-bottom:180px;
}


#certificaat-download img {
	width:172px;
	height:172px;
}



#download i {
	font-size:24px;
	vertical-align:bottom;
}

.social-share-icons {
    display: flex;
    gap: 12px;
}

.share-btn {
    padding: 8px;
    cursor: pointer;
	width:52px;
}

.share-btn i {
    font-size: 28px;
}

.share-btn:hover i {
    opacity: 0.7;
}


.btn-danger {
	background-color: var(--huisstijlkleur2);
    border-color: var(--huisstijlkleur2);
}

@media (max-width: 575.98px) {

	.preview .regel1 {
		position:absolute;
		width:100%;
		top:35%;
		text-align:center;
		font-size:10px;
		z-index:10;
	}

	.preview .regel2 {
		position:absolute;
		width:100%;
		top:45%;
		text-align:center;
		font-size:16px;
		font-weight:bold;
		z-index:10;
		color:var(--basiskleur);
	}

	.preview .regel3 {
		position:absolute;
		width:100%;
		top:60%;
		text-align:center;
		font-size:8px;
		z-index:10;
	}

	.preview .logo-certificaat {
		position:absolute;
		width:25%;
		top:70%;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}

	.preview .logo-certificaat-breed {
		position:absolute;
		width:50%;
		top:70%;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}
}

@media (min-width: 576px) and (max-width: 767.99px) {
	.preview .regel1 {
		position:absolute;
		width:100%;
		top:35%;
		text-align:center;
		font-size:13px;
		z-index:10;
	}

	.preview .regel2 {
		position:absolute;
		width:100%;
		top:45%;
		text-align:center;
		font-size:16px;
		font-weight:bold;
		z-index:10;
		color:var(--basiskleur);
	}

	.preview .regel3 {
		position:absolute;
		width:100%;
		top:60%;
		text-align:center;
		font-size:11px;
		z-index:10;
	}

	.preview .logo-certificaat {
		position:absolute;
		width:25%;
		top:70%;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}

	.preview .logo-certificaat-breed {
		position:absolute;
		width:240px;
		top:67mm;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}

}

@media (min-width: 768px) and (max-width: 991.98px) {
	.preview .regel1 {
		position:absolute;
		width:100%;
		top:35%;
		text-align:center;
		font-size:15px;
		z-index:10;
	}

	.preview .regel2 {
		position:absolute;
		width:100%;
		top:45%;
		text-align:center;
		font-size:22px;
		font-weight:bold;
		z-index:10;
		color:var(--basiskleur);
	}

	.preview .regel3 {
		position:absolute;
		width:100%;
		top:60%;
		text-align:center;
		font-size:13px;
		z-index:10;
	}

	.preview .logo-certificaat {
		position:absolute;
		width:25%;
		top:70%;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}
	.preview .logo-certificaat-breed {
		position:absolute;
		width:350px;
		top:90mm;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.preview .regel1 {
		position:absolute;
		width:100%;
		top:35%;
		text-align:center;
		font-size:17px;
		z-index:10;
	}

	.preview .regel2 {
		position:absolute;
		width:100%;
		top:45%;
		text-align:center;
		font-size:24px;
		font-weight:bold;
		z-index:10;
		color:var(--basiskleur);
	}

	.preview .regel3 {
		position:absolute;
		width:100%;
		top:60%;
		text-align:center;
		font-size:16px;
		z-index:10;
	}

	.preview .logo-certificaat {
		position:absolute;
		width:25%;
		top:70%;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}

	.preview .logo-certificaat-breed {
		position:absolute;
		width:450px;
		top:120mm;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}

}

@media (min-width: 1199.98px) and (max-width: 1399.98px) {
	.preview .logo-certificaat-breed {
		position:absolute;
		width:400px;
		top:125mm;
		left: 50%;
		transform: translate(-50%, 0);
		z-index:10;
	}

}

#gdprc_settings .gdprc_button {
	border:0;
	outline-color:var(--basiskleur);
}

#gdprc_bar, #gdprc_bar p  {
	font-size:12px;
	line-height:16px !important;
}

.gdprc_item__icon, .container_gdprc_bar .gdprc_actions{
	display:none;
}

#gdprc_settings .gdprc_item__toggle__wrapper label {
	width: 49px;
  height: 23px;
}

#gdprc_settings .gdprc_item__toggle__wrapper label::after {
	width: 14px;
  height: 14px;
}

.audiodescriptie {
	padding:20px;
	font-size:14px;
}

/* ===============================
   Cyberstand – custom bars
   =============================== */

   .card-header h2 {
	   margin-bottom:5px;
   }

.cs-bar {
  position: relative;
  width: 100%;
  height: 12px;
  background-color: #e9ecef; /* neutrale achtergrond */
  border-radius: 6px;
  overflow: hidden;
}

.cs-bar--sm {
  height: 10px;
}

.cs-bar--lg {
  height: 14px;
}

.cs-bar__fill {
  height: 100%;
  width: 0;
  background-color: #0d6efd; /* default blauw */
  border-radius: 6px;
  transition: width 0.4s ease;
}

.cs-bar__fill--success {
  background-color: #198754;
}

.cs-bar__fill--muted {
  background-color: #adb5bd;
}

/* Label onder bars (optioneel) */
.cs-bar-label {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 4px;
}

.cs-bar {
  position: relative;
}

.cs-bar__label {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
}

/* Voor lichte/grijze bars indien nodig */
.cs-bar__label--dark {
  color: #212529;
}

.cs-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cs-stats span::after {
  content: "·";
  margin: 0 0.25rem;
  color: #adb5bd;
}

.cs-stats span:last-child::after {
  content: "";
}

/* Stacked bar variant (meerdere segmenten) */
.cs-bar--stack {
  display: flex;
  gap: 0; /* geen ruimte tussen segmenten */
}

.cs-bar__seg {
  height: 100%;
}

.cs-bar__seg--yes {
  background-color: #198754; /* groen */
}

.cs-bar__seg--no {
  background-color: #dc3545; /* rood */
}

.loopcontainer {
	padding:15px;
}

.accordion-button, .accordion-button:not(.collapsed) {
	display:block;
	background-color:white;
	color:inherit
}

.accordion-button .h3 {
	font-size:24px;
	color:#444;
}

.accordion-item {
	padding:0;
	margin:0;
	border-radius:0;
}

.list-group-item:first-child {
	border-radius:0;
}
