
* {
	box-sizing: border-box;
	margin: 0;
}

html {
    /* overflow kills position sticky or layout, please use overflow-wrap on specific children (like H1) */
	/* overflow-x: hidden; */
    /* overflow-wrap: break-word; */
}

body {
	margin: 0;
	max-width: 100%;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

img {
	image-orientation: from-image;
}

/* ===== SITE ===== */
.skip_nav_link {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.8em;
    text-align: center;
    border-radius: 0 0 0.5em 0.5em;
    padding: 0.25em 0.5em;
    color: rgb(29,29,29);
    background-color: rgb(209,209,209);
    z-index: 9;

    opacity: 0;
    height: 0;
    transition: all 0.15s ease-in!important;
}

.skip_nav_link:focus {
    opacity: 1;
    height: auto;
    outline: none;
}

.skip_nav_link_right {
    width: 180px;
    transform-origin: right top;
    transform: translate(-180px, 3px) rotate(-90deg);
}

.skip_nav_link_top {
    width: 50%;
    transform: translateX(50%);
}

.site {
	position: relative;
	bottom: 100%;
	left: 0;
	top: 0;

	height: 100%;
	min-height: 100vh;
	min-width: 100%;

	z-index: 1;
}

.site_foldout {
	box-shadow: 0 0 5px 3px rgba(0,0,0,0.4);
	transition: left 0.25s ease-in;
}

.body_disabled,
.body_foldout {
	overflow: hidden !important;
	position: inherit;
}

.body_disabled {
	width: 100%;
	height: 100%;
}

.site_content {
	margin: auto;
    min-height: 2.5em;
}

.forced_fullwidth,
.main_content section.forced_fullwidth {
	max-width: 100%;
	width: 100%;
}

.forced_maxwidth,
.main_content section {
    max-width: 1560px;
    width: 100%;
    margin: auto;
}

/* ===== FOOTER ===== */
.site_footer {
    margin-top: 0;
    height: auto;
}

.site_footer section {
	margin: auto;
	width: 100%;
}

/* ===== NAVIGATION ===== */
.logo_container img {
    display: block;
}

.headernav ul {
    list-style: none;
}

.headernav li {
    display: inline-block;
}

.headernav li a {
    display: block;
    text-decoration: none;
}

/* ===== HEADERNAV SUBMENU ===== */
.headernav li ul {
    display: none;
    position: absolute;
    text-align: left;
}

.headernav li ul li {
    display: block;
}

.headernav li li {
    border-right: 0;
    height: auto;
}

.headernav li:hover ul {
    z-index: 99;
    display: block;
}

/* ===== SUBMENU ===== */
.site_submenu_vertical li {
    display: inline-block;
    font-weight: normal;
}

.site_submenu_vertical li a {
    display: block;
    text-decoration: none;
}

.site_submenu_vertical li a.active {
    cursor: default;
}

/*noinspection CssOverwrittenProperties */
.mobile_nav {
	display: none;
	
	height: 100%;
	width: 100%;

	position: fixed;
	bottom: 0;
	left: 50px;
	right: 0;
	top: 0;
	list-style: none;
	overflow-y: scroll;
	z-index: 0;
}

.mobile_nav .h2 {
    margin: 0;
    padding: var(--default_spacing_small);
}

.mobile_nav ul {
	list-style: none;
	padding: 0;
}

.mobile_nav li {
	font-weight: normal;
    line-height: var(--body_line_height);
}

.mobile_nav li a {
	display: block;
	padding: var(--default_spacing_small) var(--default_spacing);
}

.mobile_nav li a.active {
	cursor: default;
}

.mobile_nav ul li ul {
	margin: 0;
}

.mobile_nav ul li ul li a {
	padding-left: calc(2 * var(--default_spacing));
}

/* ===== UI DATEPICKER ===== */
.ui-datepicker {
    background-color: rgb(255,255,255);
    padding: 0.4em;
    margin-left: 0.2em;
    display: none;
}

.ui-datepicker select {
    margin-bottom: 0.2em;
}

.ui-datepicker a.ui-state-default {
    color: rgb(225,52,41);
}

.ui-datepicker a.ui-state-active,
.ui-datepicker a.ui-state-default:hover {
    text-decoration: underline;
}

.ui-datepicker-prev {
    float: left;
    background-position: center -30px;
}

.ui-datepicker-next {
    float: right;
    background-position: center 0;
}

/* ===== BOOTBOX ===== */
.modal-footer .button {
    margin: 0;
}

.bootbox-close-button {
    --button_padding: 0.3em;
    --button_font_size: 1em;
    border-radius: 50%;
    padding: var(--button_padding) 0;
    width: calc((var(--button_font_size) + (2 * var(--button_padding))) + 0.125em);
    height: calc((var(--button_font_size) + (2 * var(--button_padding))) + 0.125em);
    margin: 0;
    color: rgb(29,29,29);
    border: 1px solid rgb(209,209,209);
    background-color: rgb(209,209,209);
}

.bootbox-close-button:hover {
    color: rgb(255,255,255);
    border: 1px solid rgb(226,226,226);
    background-color: rgb(226,226,226);
}

.btn-primary {
    color: rgb(255,255,255);
    border: 1px solid rgb(225,52,41);
    background-color: rgb(225,52,41);
}

.btn-primary:hover {
    color: rgb(255,255,255);
    border: 1px solid rgb(226,226,226);
    background-color: rgb(226,226,226);
}

.close {
    float: right;
}

h4.modal-title {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    font-weight: normal;
}

.bootbox-body a {
    text-decoration: underline;
}

/* ===== OTHER ===== */
.blur {
    -webkit-filter: blur(1.25rem) grayscale(50%);
    filter: blur(1.25rem) grayscale(50%);
}

.breadcrumb {
    font-weight: normal;
}

.chapter_img {
    margin-bottom: 0.3em;
}

.clear_both {
    clear: both;
}

.cursor_pointer {
    cursor: pointer;
}

.default_line_height {
    line-height: var(--body_line_height);
}

.collapsable {
    width: 100%;
    float: none;
}

.collapsable[collapsable_data_bodyclick="true"] .collapsable_body,
.collapsable_header {
    cursor: pointer;
}

.collapsable_header > span {
    margin-right: var(--default_spacing_small);
}

.collapsable .inputrow_label {
    width: 100%;
}

.direction_rtl {
    direction: rtl;
}

.direction_ltr {
    direction: ltr;
}

dl {
    display: -webkit-box;	/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;	/* TWEEN - IE 10 */
    display: -webkit-flex;	/* NEW - Chrome */
    display: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */

    -webkit-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

dt,
dd {
    flex: none;
}

.error404 {
    background-image: url("https://www.dedigitaleschoolpas.nl/resources_shared/img/error-404.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;

    font-size: 2em;
    font-weight: normal;
    text-align: center;
    margin: var(--default_spacing);
    padding: var(--default_spacing);
}

.float_right {
    float: right;
}

.float_left {
    float: left;
}

.font_header {
	font-family: 'rubikbold','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
}

.font_text {
	font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-weight: normal;
}

.fontsize_10 { font-size: 0.6rem !important; }
.fontsize_15 { font-size: 0.9rem !important; }
.fontsize_20 { font-size: 1.25rem !important; }
.fontsize_25 { font-size: 1.5rem !important; }
.fontsize_30 { font-size: 1.9rem !important; }
.fontsize_40 { font-size: 2.5rem !important; }
.fontsize_50 { font-size: 3rem !important; }
.fontsize_60 { font-size: 3.75rem !important; }
.fontsize_70 { font-size: 4.4rem !important; }
.fontsize_80 { font-size: 5rem !important; }
.fontsize_90 { font-size: 5.6rem !important; }
.fontsize_100 { font-size: 6.25rem !important; }

H1, H2, H3,
.h1, .h2, .h3 {
	font-weight: normal;
	padding: 0;
	margin: 0 0 0.3em 0;
}

H4, .h4 {
	padding: 0;
	margin: 0;
}

.img_align_left,
.img_align_right {
    width: 50%;
}

.img_align_small {
    width: 25%;
}

.img_align_right,
.img_align_left,
.img_align_top,
.img_align_bot {
    margin: 0;
}

.img_align_right {
    float: right;
    padding-left: var(--default_spacing);
}

.img_align_left {
    float: left;
    padding-right: var(--default_spacing);
}

.img_align_top {
    padding-bottom: var(--default_spacing_small);
}

.img_align_bot {
    padding-top: var(--default_spacing_small);
}

.list_style_none {
    list-style: none;
    padding-inline-start: 0;
}

.mobile_visible {
    display: none;
}

.nofilter {
	-webkit-filter: none;
	-ms-filter: none;
	filter: none;
}

.noscroll {
    overflow: hidden;
}

P, P P {
	padding: 0;
	margin: 0 0 var(--default_spacing_small) 0;
}

P:empty:first-of-type { display: none; }


.pointer_events_none {
    pointer-events: none;
}

.position_absolute {
    position: absolute;
}

.position_relative {
    position: relative;
}

.rounded {
    overflow: hidden;
}

strong,
.bold {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-weight: bold;
}

.text_center,
.center {
    text-align: center;
}

.text_left,
.left {
    text-align: left;
}

.text_right,
.right {
    text-align: right;
}

.text_justify {
    text-align: justify;
}

.text_underline {
    cursor: pointer;
    text-decoration: underline;
}

.toggle_element {
	display: none;
}

.toggle_element_button {
	cursor: pointer;
}

.top_0 {
    top: 0;
}

.user_select_none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.uppercase 		{ text-transform: uppercase; }
.lowercase 		{ text-transform: lowercase; }
.capitalize 	{ text-transform: capitalize; }

.width_auto     { width: auto; }
.width_50       { width: 50%; }
.width_75       { width: 75%; }
.width_100,
.fullwidth      { width: 100%; }

.whitespace_nowrap {
	white-space: nowrap;
}

/* ===== FLEX ===== */
section {
    display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;		/* TWEEN - IE 10 */
    display: -webkit-flex;		/* NEW - Chrome */
    display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

    margin-bottom: 1.25em;
    padding: 0;

    -webkit-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: space-between;
    justify-content: space-between;

    -webkit-align-items: stretch;
    align-items: stretch;
}

section div {
    margin-bottom: 0;
}

/* REWRITTEN FOR V2.5 */

/* div12_12 (100 - 2 = 98) --> div1_12 (98 / (12/1) - 2 = 6.16)
.div1_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 6%;	        /* IE 10
    -webkit-flex: 1 0 6%;	    /* NEW - Chrome
    flex: 1 0 6%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div2_12 (98 / (12/2) - 2 = 14.33)
.div2_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 14%;	        /* IE 10
    -webkit-flex: 1 0 14%;	    /* NEW - Chrome
    flex: 1 0 14%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div3_12 (98 / (12/3) - 2 = 22.5)
.div3_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 21%;	        /* IE 10
    -webkit-flex: 1 0 21%;	    /* NEW - Chrome
    flex: 1 0 21%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div4_12 (98 / (12/4) - 2 = 30.67)
.div4_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 31%;	        /* IE 10
    -webkit-flex: 1 0 31%;	    /* NEW - Chrome
    flex: 1 0 31%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div5_12 (98 / (12/5) - 2 = 38.83)
.div5_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 38%;	        /* IE 10
    -webkit-flex: 1 0 38%;	    /* NEW - Chrome
    flex: 1 0 38%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div6_12 (98 / (12/6) - 2 = 47)
.div6_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 47%;	        /* IE 10
    -webkit-flex: 1 0 47%;	    /* NEW - Chrome
    flex: 1 0 47%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div7_12 (98 / (12/7) - 2 = 55.16)
.div7_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 55%;	        /* IE 10
    -webkit-flex: 1 0 55%;	    /* NEW - Chrome
    flex: 1 0 55%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div8_12 (98 / (12/8) - 2 = 63.33)
.div8_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 63%;	        /* IE 10
    -webkit-flex: 1 0 63%;	    /* NEW - Chrome
    flex: 1 0 63%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div9_12 (98 / (12/9) - 2 = 71.50)
.div9_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 71%;	        /* IE 10
    -webkit-flex: 1 0 71%;	    /* NEW - Chrome
    flex: 1 0 71%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div10_12 (98 / (12/10) - 2 = 79.67)
.div10_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 79%;	        /* IE 10
    -webkit-flex: 1 0 79%;	    /* NEW - Chrome
    flex: 1 0 79%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98) --> div11_12 (98 / (12/11) - 2 = 87.8)
.div11_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 87%;	        /* IE 10
    -webkit-flex: 1 0 87%;	    /* NEW - Chrome
    flex: 1 0 87%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}

/* div12_12 (100 - 2 = 98)
.div12_12 {
    margin: var(--default_spacing_small)rem var(--spacing_unit_percentage);

    -ms-flex: 1 0 98%;	        /* IE 10
    -webkit-flex: 1 0 98%;	    /* NEW - Chrome
    flex: 1 0 98%;	            /* NEW, Spec - Opera 12.1, Firefox 20+
}
*/

.div1_12,
.div2_12,
.div3_12,
.div4_12,
.div5_12,
.div6_12,
.div7_12,
.div8_12,
.div9_12,
.div10_12,
.div11_12,
.div12_12 {
    --flex_width: 100%;
    margin: var(--default_spacing_small) var(--spacing_unit_percentage);

    -ms-flex: 1 0 calc(var(--flex_width) - calc(4 * var(--spacing_unit_percentage)));        /* IE 10 */
    -webkit-flex: 1 0 calc(var(--flex_width) - calc(4 * var(--spacing_unit_percentage)));    /* NEW - Chrome */
    flex: 1 0 calc(var(--flex_width) - calc(4 * var(--spacing_unit_percentage)));	        /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div1_12,
.div2_12 {
    --flex_width: 33%;
}

/* 100/12 x aantal kolommen, afronden naar beneden
.div1_12 {
    --flex_width: 8%;
}

.div2_12 {
    --flex_width: 16%;
}

.div3_12 {
    --flex_width: 25%;
}

.div4_12 {
    --flex_width: 33%;
}

.div5_12 {
    --flex_width: 41%;
}

.div6_12 {
    --flex_width: 50%;
}

.div7_12 {
    --flex_width: 58%;
}

.div8_12 {
    --flex_width: 66%;
}

.div9_12 {
    --flex_width: 75%;
}

.div10_12 {
    --flex_width: 83%;
}

.div11_12 {
    --flex_width: 91%;
}

.div12_12 {
    --flex_width: 100%;
}
*/
.display_flex {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEEN - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.display_flex_row,
.display_flex_row_wrap {
    display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;		/* TWEEN - IE 10 */
    display: -webkit-flex;		/* NEW - Chrome */
    display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

    -webkit-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.display_flex_row_nowrap {
    display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;		/* TWEEN - IE 10 */
    display: -webkit-flex;		/* NEW - Chrome */
    display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

    -webkit-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.display_flex_column,
.display_flex_column_wrap {
    display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;		/* TWEEN - IE 10 */
    display: -webkit-flex;		/* NEW - Chrome */
    display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

    -webkit-flex-direction: column;
    flex-direction: column;

    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.display_flex_column_nowrap {
    display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;		/* TWEEN - IE 10 */
    display: -webkit-flex;		/* NEW - Chrome */
    display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

    -webkit-flex-direction: column;
    flex-direction: column;

    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex_0 {
    -webkit-box-flex: 0;	/* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 0;	    /* OLD - Firefox 19- */
    -ms-flex: 0;	        /* IE 10 */
    -webkit-flex: 0;	    /* NEW - Chrome */
    flex: 0;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_1 {
    -webkit-box-flex: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;	    /* OLD - Firefox 19- */
    -ms-flex: 1;	        /* IE 10 */
    -webkit-flex: 1;	    /* NEW - Chrome */
    flex: 1;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_2 {
    -webkit-box-flex: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 2;	    /* OLD - Firefox 19- */
    -ms-flex: 2;	        /* IE 10 */
    -webkit-flex: 2;	    /* NEW - Chrome */
    flex: 2;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_3 {
    -webkit-box-flex: 3;	/* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 3;	    /* OLD - Firefox 19- */
    -ms-flex: 3;	        /* IE 10 */
    -webkit-flex: 3;	    /* NEW - Chrome */
    flex: 3;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_4 {
    -webkit-box-flex: 4;	/* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 4;	    /* OLD - Firefox 19- */
    -ms-flex: 4;	        /* IE 10 */
    -webkit-flex: 4;	    /* NEW - Chrome */
    flex: 4;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_1_0_0 {
    -ms-flex: 1 0 0;	        /* IE 10 */
    -webkit-flex: 1 0 0;	    /* NEW - Chrome */
    flex: 1 0 0;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_2_0_0 {
    -ms-flex: 2 0 0;	        /* IE 10 */
    -webkit-flex: 2 0 0;	    /* NEW - Chrome */
    flex: 2 0 0;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_1_0_auto {
    -ms-flex: 1 0 auto;		    /* IE 10 */
    -webkit-flex: 1 0 auto;		/* NEW - Chrome */
    flex: 1 0 auto;		        /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_basis_100 {
    flex-basis: 100%;
}

.flex_grow {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.flex_nogrow {
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
}

.flex_wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_nowrap {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.space_between,
.justify_space_between {
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
}

.space_around,
.justify_space_around {
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
}

.justify_center {
    -webkit-justify-content: center !important;
    justify-content: center !important;
}

.justify_items_center {
    justify-items: center !important;
}

.flex_start,
.justify_flex_start {
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
}

.flex_end,
.justify_flex_end {
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important;
}

.align_center {
    -webkit-align-items: center !important;
    align-items: center !important;
}

.align_content_center {
    -webkit-align-content: center !important;
    align-content: center !important;
}

.align_flex_start {
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
}

.align_flex_end {
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
}

.align_self_start {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}

.align_self_center {
    -webkit-align-self: center;
    align-self: center;
}

.align_self_end {
    -webkit-align-self: flex-end;
    align-self: flex-end;
}

.align_stretch {
    -webkit-align-items: stretch;
    align-items: stretch;
}

.place_center {
    place-content: center;
}


/* ===== DISPLAY ===== */
.display_grid {
    display: -ms-grid;
    display: grid;
}

.display_block {
    display: block;
}

.display_inline_block {
    display: inline-block;
}

.display_inline {
    display: inline;
}

.display_none {
    display: none;
}

/* ===== GRID ===== */
.grid_auto_columns {
    grid-auto-columns: minmax(0, 1fr);
}

.grid_1column {
    grid-template-columns: 100%;
}

.grid_2columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid_3columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid_4columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid_auto_rows {
    grid-auto-rows: minmax(0, 1fr);
}

.grid_1row {
    grid-template-rows: 100%;
}

.grid_2rows {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid_3rows {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid_4rows {
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid_span1 {
    grid-column: span 1;
    grid-row: span 1;
}

.grid_span2rows {
    grid-row: auto / span 2;
}

.grid_span3rows {
    grid-row: auto / span 3;
}

.grid_span4rows {
    grid-row: auto / span 4;
}

.grid_span2columns {
    grid-column: auto / span 2;
}

.grid_span3columns {
    grid-column: auto / span 3;
}

.grid_span4columns {
    grid-column: auto / span 4;
}

/* ===== TABLE MOCK CLASSES ===== */
.table    { display: table }
.tr       { display: table-row }
.thead    { display: table-header-group }
.tbody    { display: table-row-group }
.tfoot    { display: table-footer-group }
.col      { display: table-column }
.colgroup { display: table-column-group }
.td, .th  { display: table-cell }
.caption  { display: table-caption }

table,
.table {
    border-collapse: collapse;
    margin-bottom: 1.25em;
}

table[border="0"] td,
table[border="0"] th {
    border: 0;
}

th, td,
.th, .td {
    padding: var(--default_spacing_small);
    margin: 0;
}


td.borderless,
.borderless {
    border: none;
}

/* ===== PADDINGS & MARGINS ===== */
.default_padding {
    padding: var(--default_spacing);
}

.default_padding_small {
    padding: var(--default_spacing_small);
}

.default_padding_large {
    padding: calc(2 * var(--default_spacing));
}

.default_padding_ver {
    padding: var(--default_spacing) 0;
}

.default_padding_hor {
    padding: 0 var(--default_spacing);
}

.margin_0	{ margin: 0 !important; }
.margin_5	{ margin: 0.3rem !important; }
.margin_10	{ margin: 0.625rem !important; }
.margin_15	{ margin: 0.9rem !important; }
.margin_20	{ margin: 1.25rem !important; }
.margin_25	{ margin: 1.5rem !important; }

.margin_ver_5	{ margin: 0.3rem 0 !important; }
.margin_ver_10	{ margin: 0.625rem 0 !important; }
.margin_ver_15	{ margin: 0.9rem 0 !important; }
.margin_ver_20	{ margin: 1.25rem 0 !important; }
.margin_ver_25	{ margin: 1.5rem 0 !important; }
.margin_ver_30	{ margin: 1.8rem 0 !important; }
.margin_ver_35	{ margin: 2.2rem 0 !important; }
.margin_ver_40	{ margin: 2.5rem 0 !important; }

.margin_top_0	{ margin-top: 0 !important; }
.margin_top_5	{ margin-top: 0.3rem !important; }
.margin_top_10	{ margin-top: 0.625rem !important; }
.margin_top_15	{ margin-top: 0.9rem !important; }
.margin_top_20	{ margin-top: 1.25rem !important; }
.margin_top_25	{ margin-top: 1.5rem !important; }
.margin_top_30	{ margin-top: 1.8rem !important; }
.margin_top_35	{ margin-top: 2.2rem !important; }
.margin_top_40	{ margin-top: 2.5rem !important; }

.margin_bot_0	{ margin-bottom: 0 !important; }
.margin_bot_5	{ margin-bottom: 0.3rem !important; }
.margin_bot_10	{ margin-bottom: 0.625rem !important; }
.margin_bot_15	{ margin-bottom: 0.9rem !important; }
.margin_bot_20	{ margin-bottom: 1.25rem !important; }
.margin_bot_25	{ margin-bottom: 1.5rem !important; }
.margin_bot_30	{ margin-bottom: 1.8rem !important; }
.margin_bot_35	{ margin-bottom: 2.2rem !important; }
.margin_bot_40	{ margin-bottom: 2.5rem !important; }

.margin_hor_5	{ margin: 0 0.3rem !important; }
.margin_hor_10	{ margin: 0 0.625rem !important; }
.margin_hor_15	{ margin: 0 0.9rem !important; }
.margin_hor_20	{ margin: 0 1.25rem !important; }
.margin_hor_25	{ margin: 0 1.5rem !important; }
.margin_hor_30	{ margin: 0 1.8rem !important; }
.margin_hor_35	{ margin: 0 2.2rem !important; }
.margin_hor_40	{ margin: 0 2.5rem !important; }

.margin_right_5     { margin-right: 0.3rem !important; }
.margin_right_10    { margin-right: 0.625rem !important; }
.margin_right_15	{ margin-right: 0.9rem !important; }
.margin_right_20	{ margin-right: 1.25rem !important; }
.margin_right_25	{ margin-right: 1.5rem !important; }
.margin_right_30	{ margin-right: 1.8rem !important; }
.margin_right_35	{ margin-right: 2.2rem !important; }
.margin_right_40    { margin-right: 2.5rem !important; }

.margin_left_5     { margin-left: 0.3rem !important; }
.margin_left_10    { margin-left: 0.625rem !important; }
.margin_left_15	   { margin-left: 0.9rem !important; }
.margin_left_20    { margin-left: 1.25rem !important; }
.margin_left_25    { margin-left: 1.5rem !important; }
.margin_left_30    { margin-left: 1.8rem !important; }
.margin_left_35    { margin-left: 2.2rem !important; }
.margin_left_40    { margin-left: 2.5rem !important; }


.padding_0	{ padding: 0 !important; }
.padding_5	{ padding: 0.3em !important; }
.padding_10	{ padding: 0.625em !important; }
.padding_15	{ padding: 0.9em !important; }
.padding_20	{ padding: 1.25em !important; }
.padding_25	{ padding: 1.5em !important; }
.padding_30	{ padding: 1.8em !important; }
.padding_40	{ padding: 2.5em !important; }
.padding_50	{ padding: 3em !important; }

.padding_40_20	{ padding: 2.5em 1.25em !important; }

.padding_ver_5	{ padding: 0.3em 0 !important; }
.padding_ver_10	{ padding: 0.625em 0 !important; }
.padding_ver_15	{ padding: 0.9em 0 !important; }
.padding_ver_20	{ padding: 1.25em 0 !important; }
.padding_ver_25	{ padding: 1.5em 0 !important; }
.padding_ver_30	{ padding: 1.8em 0 !important; }
.padding_ver_40	{ padding: 2.5em 0 !important; }
.padding_ver_50	{ padding: 3em 0 !important; }

.padding_hor_5	{ padding: 0 0.3em !important; }
.padding_hor_10	{ padding: 0 0.625em !important; }
.padding_hor_15	{ padding: 0 0.9em !important; }
.padding_hor_20	{ padding: 0 1.25em !important; }
.padding_hor_25	{ padding: 0 1.5em !important; }
.padding_hor_30	{ padding: 0 1.8em !important; }
.padding_hor_40	{ padding: 0 2.5em !important; }
.padding_hor_50	{ padding: 0 3em !important; }

.padding_bot_0	{ padding-bottom: 0 !important; }
.padding_bot_5	{ padding: 0 0 0.3em 0 !important; }
.padding_bot_10	{ padding: 0 0 0.625em 0 !important; }
.padding_bot_15	{ padding: 0 0 0.9em 0 !important; }
.padding_bot_20	{ padding: 0 0 1.25em 0 !important; }
.padding_bot_25	{ padding: 0 0 1.5em 0 !important; }
.padding_bot_30	{ padding: 0 0 1.8em 0 !important; }
.padding_bot_40	{ padding: 0 0 2.5em 0 !important; }
.padding_bot_50	{ padding: 0 0 3em 0 !important; }
.padding_bot_80	{ padding: 0 0 5em 0 !important; }

.padding_top_0	{ padding-top: 0 !important; }
.padding_top_5	{ padding: 0.3em 0 0 0 !important; }
.padding_top_10	{ padding: 0.625em 0 0 0 !important; }
.padding_top_15	{ padding: 0.9em 0 0 0 !important; }
.padding_top_20	{ padding: 1.25em 0 0 0 !important; }
.padding_top_25	{ padding: 1.5em 0 0 0 !important; }
.padding_top_30	{ padding: 1.8em 0 0 0 !important; }
.padding_top_40	{ padding: 2.5em 0 0 0 !important; }
.padding_top_50	{ padding: 3em 0 0 0 !important; }
.padding_top_80	{ padding: 5em 0 0 0 !important; }

/* ===== COLORS ===== */
.text_hover_body:hover,
.text_body,
a.text_body {
	color: rgb(29,29,29);
}

.text_hover_a:hover,
.text_a,
a.text_a {
	color: rgb(225,52,41);
}

.text_hover_b:hover,
.text_b,
a.text_b {
	color: rgb(84,207,242);
}

.text_hover_c:hover,
.text_c,
a.text_c {
	color: rgb(245,185,0);
}

.text_hover_d:hover,
.text_d,
a.text_d {
	color: rgb(226,226,226);
}

.text_hover_e:hover,
.text_e,
a.text_e {
	color: rgb(245,156,0);
}

.text_hover_gray:hover,
.text_gray,
a.text_gray {
	color: rgb(209,209,209);
}

.text_hover_white:hover,
.text_white,
a.text_white {
	color: rgb(255,255,255);
}

.text_hover_black:hover,
.text_black,
a.text_black {
	color: rgb(60,60,60);
}

.bg_red {
    background-color: #ff0000;
}

.bg_hover_a:hover,
.bg_a {
	background-color: rgb(225,52,41);
}

.bg_hover_b:hover,
.bg_b {
	background-color: rgb(84,207,242);
}

.bg_hover_c:hover,
.bg_c {
	background-color: rgb(245,185,0);
}

.bg_hover_d:hover,
.bg_d {
	background-color: rgb(226,226,226);
}

.bg_hover_e:hover,
.bg_e {
	background-color: rgb(245,156,0);
}

.bg_hover_gray:hover,
.bg_gray {
	background-color: rgb(209,209,209);
}

.bg_hover_white:hover,
.bg_white {
	background-color: rgb(255,255,255);
}

.bg_hover_black:hover,
.bg_black {
	background-color: rgb(60,60,60);
}

.bg_hover_body:hover,
.bg_body {
	background-color: rgb(29,29,29);
}

.checkbox_border_a input[type="checkbox"] + span:before,
.checkbox_border_a input[type="radio"] + span:before {
    border: 2px solid rgb(225,52,41);
}

.checkbox_border_b input[type="checkbox"] + span:before,
.checkbox_border_b input[type="radio"] + span:before {
    border: 2px solid rgb(84,207,242);
}

.checkbox_border_c input[type="checkbox"] + span:before,
.checkbox_border_c input[type="radio"] + span:before {
    border: 2px solid rgb(245,185,0);
}

.checkbox_border_d input[type="checkbox"] + span:before,
.checkbox_border_d input[type="radio"] + span:before {
    border: 2px solid rgb(226,226,226);
}

.checkbox_border_e input[type="checkbox"] + span:before,
.checkbox_border_e input[type="radio"] + span:before {
    border: 2px solid rgb(245,156,0);
}
.checkbox_border_gray input[type="checkbox"] + span:before,
.checkbox_border_gray input[type="radio"] + span:before {
    border: 2px solid rgb(209,209,209);
}

.checkbox_border_white input[type="checkbox"] + span:before,
.checkbox_border_white input[type="radio"] + span:before {
    border: 2px solid rgb(255,255,255);
}

.checkbox_border_black input[type="checkbox"] + span:before,
.checkbox_border_black input[type="radio"] + span:before {
    border: 2px solid rgb(60,60,60);
}

.checkbox_border_body input[type="checkbox"] + span:before,
.checkbox_border_body input[type="radio"] + span:before {
    border: 2px solid rgb(29,29,29);
}

.checkbox_border_a input[type="radio"]:checked + span:before {
    background-color: rgb(225,52,41);
}

.checkbox_border_b input[type="radio"]:checked + span:before {
    background-color: rgb(84,207,242);
}

.checkbox_border_c input[type="radio"]:checked + span:before {
    background-color: rgb(245,185,0);
}

.checkbox_border_d input[type="radio"]:checked + span:before {
    background-color: rgb(226,226,226);
}

.checkbox_border_e input[type="radio"]:checked + span:before {
    background-color: rgb(245,156,0);
}

.checkbox_border_gray input[type="radio"]:checked + span:before {
    background-color: rgb(209,209,209);
}

.checkbox_border_white input[type="radio"]:checked + span:before {
    background-color: rgb(255,255,255);
}

.checkbox_border_black input[type="radio"]:checked + span:before {
    background-color: rgb(60,60,60);
}

.checkbox_border_body input[type="radio"]:checked + span:before {
    background-color: rgb(29,29,29);
}

.input_background_a {
    background-color: rgba(225,52,41,0.5);
}

.input_background_b {
    background-color: rgba(84,207,242,0.5);
}

.input_background_c {
    background-color: rgba(245,185,0,0.5);
}

.input_background_d {
    background-color: rgba(226,226,226,0.5);
}

.input_background_e {
    background-color: rgba(245,156,0,0.5);
}

.input_background_gray {
    background-color: rgba(209,209,209,0.5);
}

.input_background_white {
    background-color: rgba(255,255,255,0.8);
}

.input_background_black {
    background-color: rgba(60,60,60,0.5);
}

.input_background_body {
    background-color: rgba(29,29,29,0.5);
}

.input_border_a {
    border: 1px solid rgb(225,52,41, 0.8);
}

.input_border_b {
    border: 1px solid rgb(84,207,242);
}

.input_border_c {
    border: 1px solid rgb(245,185,0);
}

.input_border_d {
    border: 1px solid rgb(226,226,226);
}

.input_border_e {
    border: 1px solid rgb(245,156,0);
}

.input_border_gray {
    border: 1px solid rgb(209,209,209);
}

.input_border_white {
    border: 1px solid rgb(255,255,255);
}

.input_border_black {
    border: 1px solid rgb(60,60,60);
}

.input_border_body {
    border: 1px solid rgb(29,29,29);
}

.input_border_transparent {
    border: 1px solid transparent;
}

.input_color_a {
    color: rgba(225,52,41,0.8);
}

.input_color_b {
    color: rgba(84,207,242,0.8);
}

.input_color_c {
    color: rgba(245,185,0,0.8);
}

.input_color_d {
    color: rgba(226,226,226,0.8);
}

.input_color_e {
    color: rgba(245,156,0,0.8);
}

.input_color_gray {
    color: rgba(209,209,209,0.8);
}

.input_color_white {
    color: rgba(255,255,255,0.8);
}

.input_color_black {
    color: rgba(60,60,60,0.8);
}

.input_color_body {
    color: rgba(29,29,29,0.8);
}

.input_background_focused_a:focus {
    background-color: rgba(225,52,41,0.5);
}

.input_background_focused_b:focus {
    background-color: rgba(84,207,242,0.5);
}

.input_background_focused_c:focus {
    background-color: rgba(245,185,0,0.5);
}

.input_background_focused_d:focus {
    background-color: rgba(226,226,226,0.5);
}

.input_background_focused_e:focus {
    background-color: rgba(245,156,0,0.5);
}

.input_background_focused_gray:focus {
    background-color: rgba(209,209,209,0.5);
}

.input_background_focused_white:focus {
    background-color: rgba(255,255,255,1);
}

.input_background_focused_black:focus {
    background-color: rgba(60,60,60,0.5);
}

.input_background_focused_body:focus {
    background-color: rgba(29,29,29,0.5);
}

.input_border_focused_a:focus {
    border: 1px solid rgb(225,52,41);
}

.input_border_focused_b:focus {
    border: 1px solid rgb(84,207,242);
}

.input_border_focused_c:focus {
    border: 1px solid rgb(245,185,0);
}

.input_border_focused_d:focus {
    border: 1px solid rgb(226,226,226);
}

.input_border_focused_e:focus {
    border: 1px solid rgb(245,156,0);
}

.input_border_focused_gray:focus {
    border: 1px solid rgb(209,209,209);
}

.input_border_focused_white:focus {
    border: 1px solid rgb(255,255,255);
}

.input_border_focused_black:focus {
    border: 1px solid rgb(60,60,60);
}

.input_border_focused_body:focus {
    border: 1px solid rgb(29,29,29);
}

.input_color_focused_a:focus {
    color: rgba(225,52,41);
}

.input_color_focused_b:focus {
    color: rgba(84,207,242);
}

.input_color_focused_c:focus {
    color: rgba(245,185,0);
}

.input_color_focused_d:focus {
    color: rgba(226,226,226);
}

.input_color_focused_e:focus {
    color: rgba(245,156,0);
}

.input_color_focused_gray:focus {
    color: rgba(209,209,209);
}

.input_color_focused_white:focus {
    color: rgba(255,255,255);
}

.input_color_focused_black:focus {
    color: rgba(60,60,60);
}

.input_color_focused_body:focus {
    color: rgba(29,29,29);
}

.button_border_a {
    border: 1px solid rgb(225,52,41);
}

.button_border_b {
    border: 1px solid rgb(84,207,242);
}

.button_border_c {
    border: 1px solid rgb(245,185,0);
}

.button_border_d {
    border: 1px solid rgb(226,226,226);
}

.button_border_e {
    border: 1px solid rgb(245,156,0);
}

.button_border_gray {
    border: 1px solid rgb(209,209,209);
}

.button_border_white {
    border: 1px solid rgb(255,255,255);
}

.button_border_black {
    border: 1px solid rgb(60,60,60);
}

.button_border_body {
    border: 1px solid rgb(29,29,29);
}

.button_border_transparent {
    border: 1px solid transparent;
}

.button_border_hover_a:hover {
    border: 1px solid rgb(225,52,41);
}

.button_border_hover_b:hover {
    border: 1px solid rgb(84,207,242);
}

.button_border_hover_c:hover {
    border: 1px solid rgb(245,185,0);
}

.button_border_hover_d:hover {
    border: 1px solid rgb(226,226,226);
}

.button_border_hover_e:hover {
    border: 1px solid rgb(245,156,0);
}

.button_border_hover_gray:hover {
    border: 1px solid rgb(209,209,209);
}

.button_border_hover_white:hover {
    border: 1px solid rgb(255,255,255);
}

.button_border_hover_black:hover {
    border: 1px solid rgb(60,60,60);
}

.button_border_hover_body:hover {
    border: 1px solid rgb(29,29,29);
}

.button_border_hover_transparent:hover {
    border: 1px solid transparent;
}

[class*='text_hover_']:not(.text_hover_transparent) {
    -webkit-transition: color var(--animate_duration) ease;
    transition: color var(--animate_duration) ease;
}

[class*='bg_hover_']:not(.bg_hover_transparent) {
    -webkit-transition: background-color var(--animate_duration) ease, border var(--animate_duration) ease;
    transition: background-color var(--animate_duration) ease, border var(--animate_duration) ease;
}

/* ===== IE11 FIX ===== */
.internet_explorer_trident .default_padding {
	box-sizing: border-box;
	padding: 1.75em;
}

.internet_explorer_trident .default_padding_small {
	box-sizing: border-box;
	padding: 0.625em;
}

.internet_explorer_trident .default_padding_large {
	box-sizing: border-box;
	padding: 3.5em;
}

.internet_explorer_trident .default_padding_ver {
	box-sizing: border-box;
	padding: 1.25em 0;
}

.internet_explorer_trident .default_padding_hor {
	box-sizing: border-box;
	padding: 0 1.25em;
}

.internet_explorer_trident .news_item_overview {
	display: inline-block;
}

.nosupport_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: auto;
    height: 100%;
    background-color: rgba(255,255,255, 0.95);
    z-index: 9999;
}

.nosupport_overlay .nosupport_overlay_content {
    position: relative;
    top: 30%;
    margin: 0 auto;
    max-width: 50vw;
    text-align: center;
    transform: translateY(-50%);
}

.grecaptcha-badge { visibility: hidden; }
:root {
    --body_line_height: 1.6;
    --flex_width: 100%;
    --animate_duration: 0.35s;
    --default_spacing: 1.75em;
    --default_spacing_small: 0.625em;
    --spacing_unit_percentage: 2%;
}

/* ANIMATIONS */
.animate__animated {
    -webkit-animation-duration: var(--animate_duration);
    animation-duration: var(--animate_duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@media (prefers-reduced-motion: reduce) {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }

    .animate__animated[class*='Out'] {
        opacity: 0;
    }
}

/* SITE */
body {
    color: rgb(29,29,29);
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

section img {
    margin: 0 var(--default_spacing_small) var(--default_spacing_small) 0;
    display: block;
    height: auto;
    max-width: inherit;
    width: 100%;
}

section * li  {
    margin: 0.3em 0;
}
/*
.site_content section * ul,
.site_content section * ol {
    margin: 1.25em 0;
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size: 0.9em;
}
*/
.ul_in_content {
    padding-inline-start: 30px;
    padding-bottom: 0.3em;
    line-height: var(--body_line_height);
    overflow-wrap: initial;
}

.ul_in_content li::marker {
    font-family: 'standaard';
    content: '\e800' ' ';
    color: rgb(225,52,41);
}

/* ===== HEADER NAVIGATION ===== */
.headernav li a.active {
    color: rgb(225,52,41);
}

.headernav li a.active:hover {
    color: rgb(29,29,29);
}

.headernav li a {
    padding: 0.3em 1.25em;
}

/*======= FOOTER =======*/
/* margin-top standaard op 0, indien gewenst hier aanpassen */
.site_footer { }

.site_footer section {
    max-width: 1560px;
}

.footer_copyright {
	font-size: 0.9em;
    line-height: var(--body_line_height);
}

/* ===== HEADER NAVIGATION ===== */
.headernav ul {
    margin: 0;
    padding: 0 1.25em;
    text-align: center;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile_nav .h2 {
    font-family: 'rubikbold','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
}

.mobile_nav li {
    border-top: 1px solid rgba(255,255,255,0.25);
}

.mobile_nav {
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.mobile_nav li a:hover {
    background-color: rgba(255,255,255,0.15);
}

.mobile_nav li a.active {
    background-color: rgba(255,255,255,0.15);
}

.mobile_nav li li a.active {
    background-color: rgba(255,255,255,0.25);
}

/* ===== LANGUAGE PICKER ===== */
.language_picker_menu {
    position: relative;
    margin: 0 1.15em;
    -webkit-align-self: flex-start;
    align-self: flex-start;
    z-index: 9;
}

/* dropdown */
.language_picker_menu div:before {
    position: absolute;
    right: -15px;
    top: 5px;
    font-size: 13px;
}

.language-picker-dropdown {
    position: absolute;
    left: -20px;
    top: 30px;

    list-style-type: none;
    padding: 13px;
    text-align: right;
}

.language_picker_menu li {
    padding-bottom: 13px;
}

.language_picker_menu li:last-of-type {
    padding-bottom: 0;
}

.language_picker_menu li a {
    display: block;
    padding: 5px;
    border: 2px solid transparent;
}

.language_picker_menu li a:hover {
    padding: 5px;
    border-radius: 7px;
}

.language_picker_menu li a img {
    display: block;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size: 0.85em;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* ===== OTHER ===== */
.rounded {
    border-radius: 0.9em;
}

.box_shadow {
    -webkit-box-shadow: 0 0 10px 0 rgba(60,60,60,0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(60,60,60,0.3);
    box-shadow: 0 0 10px 0 rgba(60,60,60,0.3);
}

dt {
    width: 30%;
    font-weight: bold;
}

dd {
    width: 70%;
}

.icon:before {
    vertical-align: middle;
}

.h1, .h2, .h3, .h4, .h5 {
    display: block;
}

H1, H2,
.h1, .h2 {
    font-family	: 'rubikbold','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
    line-height: 1.2;
}

H3,
.h3 {
    font-family	: 'rubikmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    line-height: 1.2;
}

H4, H5,
.h4, .h5 {
    font-family	: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    line-height: var(--body_line_height);
}

P, P P,
.visual_subtitle {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size: 1em;
    line-height: var(--body_line_height);
}

.fontsize_smaller {
    font-size: 90%;
}

.img_align_left,
.img_align_right {
    min-width: 220px;
}

/* ===== STANDARD FORM ===== */
form {
    padding: var(--default_spacing_small) 0;
    text-align: left;
}

form > div {
    margin: 0 0 0.3em 0;
    overflow: hidden;
}

form > div > fieldset > div > div {
    margin: 0 0 0.3em 0;
}

.inputrow_label,
legend {
    width: 25%;
    float: left;
    padding-right: 1.25em;
    padding-top: var(--default_spacing_small);
}

.inputrow_input {
    width: 75%;
    float: right;
}

fieldset {
    border: 0;
    padding: 0;
}

label {
    margin: var(--default_spacing_small) 0;
    padding: 0;
}

.datatable-noclick {
    pointer-events: none;
    cursor: default;
}

.datatable-noclick input[type=checkbox],
.datatable-noclick a,
.datatable-noclick span {
    pointer-events: all;
    cursor: pointer;
    display: inline-block;
}

/* ===== STANDARD INPUTS ===== */
/* Removes all browser styles */
input[type=text]:not(:focus-visible),
input[type=search]:not(:focus-visible),
input[type=number]:not(:focus-visible),
input[type=email]:not(:focus-visible),
input[type=tel]:not(:focus-visible),
input[type=url]:not(:focus-visible),
input[type=file]:not(:focus-visible),
input[type=password]:not(:focus-visible),
input[type=reset]:not(:focus-visible),
input[type=submit]:not(:focus-visible),
input[type=button]:not(:focus-visible),
textarea:not(:focus-visible),
select,
button:not(:focus-visible),
.button:not(:focus-visible) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

/* Removes IE select arrows */
select::-ms-expand {
    display: none;
}

input[type=text],
input[type=search],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea {
    padding: var(--default_spacing_small);
}

textarea,
input[type=file] {
    padding-top: var(--default_spacing_small);
}

textarea {
    padding-top: var(--default_spacing_small);
    height: 7.5em;
}

input[type=text],
input[type=search],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
    width: 100%;
}

input[type=submit],
input[type=reset],
.button,
button,
input[type=button] {
    cursor: pointer;
    text-decoration: none;
}

input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
    outline: 0;
}

.inputrow {
    display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;		/* TWEEN - IE 10 */
    display: -webkit-flex;		/* NEW - Chrome */
    display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

    -webkit-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: flex-start;
    justify-content: flex-start;

    -webkit-align-items: stretch;
    align-items: stretch;
}

.inputrow_unit {
    width: auto;
    margin-left: 0.9em;
}

.inputrow_input {
    position: relative;
    -webkit-box-flex: 2;    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 2;	    /* OLD - Firefox 19- */
    -ms-flex: 2;	        /* IE 10 */
    -webkit-flex: 2;	    /* NEW - Chrome */
    flex: 2;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.input_decimal .inputrow,
.input_date .inputrow,
.input_time .inputrow {
    display: inline-block;
    margin-bottom: 0;
}

.input_decimal input[type=number],
.input_date select,
.input_time select {
    width: auto;
}

input::-ms-clear {
    display: none;
}

/* FANCY CHECKBOXES AND RADIO */
div.fancy_input_container {
    margin: var(--default_spacing_small) 0;
    position: relative;
    line-height: var(--body_line_height);
}

/* hides the original input, but keeps the functionality */
.fancy_input_container input[type="checkbox"],
.fancy_input_container input[type="radio"] {
    position: absolute;
    visibility: hidden;
}
/* creates space for new input, moves label text to the right */
.fancy_input_container label {
    display: block;
    position: relative;

    padding-left: 25px;
    font-size: 0.9rem;
    margin: 0;

    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
/* draws new input type */
.fancy_input_container input[type="checkbox"] + span:before,
.fancy_input_container input[type="radio"] + span:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 0;
}

.fancy_input_container input[type="checkbox"] + span:before {
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.fancy_input_container input[type="radio"] + span:before {
    background-color: rgb(255,255,255);
    border-radius: 50%;
}
/* animates new input types on :checked state */
.fancy_input_container input[type="checkbox"]:checked + span:before {
    width: 7px;
    top: -4px;
    left: 4px;
    border-radius: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fancy_input_container input[type="radio"]:checked + span:before {
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

/* ===== ICONS & ERROR MESSAGES ===== */
.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
    position: absolute;
    right: var(--default_spacing_small);
    top: calc(25% + 0.5em);
    font-size: 0.5em;
}

textarea ~ .icon-input-ok,
textarea ~ .icon-input-nok,
textarea ~ .icon-input-verplicht {
    top: 1.5em;
}

.icon-input-ok {
    color: green;
}

.icon-input-nok {
    color: red;
}

.icon-input-verplicht {
    color: rgb(225,52,41);
}

.icon-input-nok.button_with_icon,
.icon-input-verplicht.button_with_icon,
.icon-input-ok.button_with_icon {
    position: initial;
    top: initial;
    right: initial;
    font-size: initial;
}

/* IE11 FIX, if flex-direction: column, then we need flex-basis auto! */
.internet_explorer_trident .inputrow_input {
    -ms-flex: 2 0 auto;	    /* IE 10 */
    -webkit-flex: 2 0 auto;	/* NEW - Chrome */
    flex: 2 0 auto;	        /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-basis: auto;
}

.internet_explorer_trident [class*=flex_] {
    flex-basis: auto;
}

/* ===== FORM SPECIFIC MEDIA QUERIES ===== */
@media (min-width: 1200px) {

    form > div > label,
    legend {
        text-align: right;
    }

}

@media (max-width: 600px) {
    form > div,
    .inputrow_label,
    legend {
        margin: 0 0 0.3em 0;
    }

    .inputrow_input,
    .inputrow_label,
    legend {
        float: none;
        width: 100%;
    }

    .inputrow {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
    textarea,
    select {
        font-size: 1em;
    }

}
/* ===== STANDARD FORM ===== */
form > div > label,
legend {
    font-size: 0.9em;
}

form > div > fieldset label {
    font-size: 0.8em;
}

/* ===== STANDARD INPUTS ===== */
input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]):not([type=reset]):not([type=search]),
textarea,
select {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    min-height: 42px;
    min-width: 80px;
    margin: 0.15em 0;
}

.placeholder,
::placeholder {
    color: rgba(60,60,60,0.5);
}

/* For future reference
input:focus:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
textarea:focus,
select:focus { }*/

input[readonly]:disabled,
input[readonly]:focus,
input[readonly] {
    color: rgba(60,60,60,0.5);
    border: 1px solid rgb(209,209,209);
}

input[readonly]:hover {
    cursor: default;
}

.inputrow_unit {
    font-size: inherit;
}

.inputrow_label {
    font-size: inherit;
    max-width: 250px;
}

label {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size: 0.9rem;
}

/* ===== INPUTS ===== */
/* Chrome autofill - Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 2rem rgb(255,255,255) inset !important;
}

/* FANCY CHECKBOXES AND RADIO */
.inputrow_input input[type="checkbox"] + label {
    padding-left: 25px;
    font-size: 0.9rem;
}

.inputrow_input input[type="checkbox"] + label:before {
    width: 14px;
    height: 14px;
    border: 2px solid rgb(225,52,41);

    position: absolute;
    left: 0;
    top: 0;
}

/* rotate border */
.inputrow_input input[type="checkbox"]:checked + label:before {
    width: 7px;
    top: -4px;
    left: 4px;
}

.inputrow_input input[type="radio"] + label {
    padding-left: 25px;
    font-size: 0.9rem;
}

.inputrow_input input[type="radio"] + label:before {
    width: 14px;
    height: 14px;
    border: 2px solid rgb(225,52,41);
    background-color: rgb(255,255,255);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.inputrow_input input[type="radio"]:checked + label:before {
    background-color: rgb(225,52,41);
}

/* CUSTOM BUTTONS */
:root {
    --button_padding: 0.5em;
    --button_font_size: 1em;
}

.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
    padding: var(--button_padding) calc(1.5 * var(--button_padding));
    border-radius: 2.5em;

    font-family: 'rubikmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size: var(--button_font_size);
    text-align: center;

    -webkit-transition: background-color var(--animate_duration) ease, border var(--animate_duration) ease;
    transition: background-color var(--animate_duration) ease, border var(--animate_duration) ease;
}

.button.smaller,
button.smaller,
input[type=button].smaller,
input[type=reset].smaller,
input[type=submit].smaller {
    --button_padding: 0.25em;
    --button_font_size: 0.85em;
}

.button {
    display: inline-block;
}

.button.display_block {
    display: block;
}

/* Change --button_padding to same size (horizontal only) as custom button above */
.button.button_round,
button.button_round,
input[type=button].button_round,
input[type=reset].button_round,
input[type=submit].button_round {
    --button_font_size: 1em;
    border-radius: 50%;
    padding: var(--button_padding) 0;
    width: calc((var(--button_font_size) + (2 * var(--button_padding))) + 0.125em);
    height: calc((var(--button_font_size) + (2 * var(--button_padding))) + 0.125em);
}

.button_with_icon:before {
    margin-right: 0.3em;
}

.extra_margin_button {
    margin: 1em 0 0.3em 0;
}

/* CUSTOM SELECT */
select {
    height: 42px;
    padding: 0.2em 1.5em 0.2em 0.75em !important;
    border-radius: 0.5em;
    font-size: 1em;
    background-image: url("https://www.dedigitaleschoolpas.nl/resources_shared/img/custom-select-icon.png");
    background-position-x: 99%;
    background-position-y: 50%;
    background-repeat: no-repeat;
}

/* ICONS & ERROR MESSAGES */
.error_message ul {
    padding: var(--default_spacing) calc(var(--default_spacing) * 2);
}

/*
 * This combined file was created by the DataTables downloader builder:
 *   https://datatables.net/download
 *
 * To rebuild or modify this file with the latest versions of the included
 * software please visit:
 *   https://datatables.net/download/#dt/dt-1.10.18/r-2.2.2
 *
 * Included libraries:
 *   DataTables 1.10.18, Responsive 2.2.2
 */

table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("DataTables-1.10.18/images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("DataTables-1.10.18/images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("DataTables-1.10.18/images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("DataTables-1.10.18/images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("DataTables-1.10.18/images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty{cursor:default !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before{display:none !important}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:'-';background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:'-';background-color:#d33333}table.dataTable>tbody>tr.child{padding:0.5em 1em}table.dataTable>tbody>tr.child:hover{background:transparent !important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:0.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:bold}div.dtr-modal{position:fixed;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;background-color:#f5f5f7;border:1px solid black;border-radius:0.5em;box-shadow:0 12px 30px rgba(0,0,0,0.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,0.6)}@media screen and (max-width: 767px){div.dtr-modal div.dtr-modal-display{width:95%}}
/* ===== OVERRULE DEFAULT HERE ===== */
/* See https://datatables.net/download/ */

.dataTables_wrapper {
	/*font-size: 15px;*/
}

/* Header and footer styles */
.new-record {
	font-size: 1.8em;
}

.new-record span:last-child {
	font-size: 0.625em;
	font-weight: normal;
	position: relative;
	top: -0.4em;
}

[class*="generalOption_"] {
	margin: 0 5px;
}

.dataTable tr[role="row"] td:last-child {
	text-align: right;
}

.inputrow_unit .button {
	padding: 0 1.25em;
}

.button.button-klein.datatable-remove-filter,
.button.button-klein {
	text-transform: inherit;
	font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';

	font-size: 1rem;
	padding: 0 0.75em;
	border-radius: 0.5em;
}

.button.button-klein.datatable-remove-filter {
	padding: 0.3em 0.75em;
}

.dataTables_wrapper input,
.dataTables_wrapper select {
	width: auto;
	padding: 0.5em;
	background-color: rgb(255,255,255);
	border: 1px solid rgba(29,29,29,0.2);
	color: rgb(29,29,29);
}

.dt-buttons {
	display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;		/* TWEENER - IE 10 */
	display: -webkit-flex;		/* NEW - Chrome */
	display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-align-items: center;
	align-items: center;

	-webkit-justify-content: flex-end;
	justify-content: flex-end;

	margin-bottom: 0.625em;
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .dt-button {
	padding: 0.625em;
	margin: 0.3em;
    background-color: rgb(84,207,242);
    color: rgb(255,255,255);
    border: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .dt-button:hover {
	background-color: rgb(245,156,0);
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-excel:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-pdf:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-print:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-csv:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-copy:before
{
	font-family: 'standaard';
	text-transform: none;
	font-weight: normal;
	margin-right: 0.3em;
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-excel:before {
	content: "\31";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-pdf:before {
	content: "\33";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-print:before {
	content: "\32";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-csv:before {
	content: "\30";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-copy:before {
	content: "\63";
}

.datatable_header {
	display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;		/* TWEEN - IE 10 */
	display: -webkit-flex;		/* NEW - Chrome */
	display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction: row;
	flex-direction: row;
	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-align-items: center;
	align-items: center;

	-webkit-justify-content: space-between;
	justify-content: space-between;

	background-color: rgb(226,226,226);
	padding: var(--default_spacing);
	margin-bottom: 2.5em;
    border-radius: 0.9em;
}

.datatable_header select {
	width: auto;
}

.datatable_footer {
	padding: var(--default_spacing);
	display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;		/* TWEEN - IE 10 */
	display: -webkit-flex;		/* NEW - Chrome */
	display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-align-items: center;
	align-items: center;
}

.datatable_footer div {
	-webkit-box-flex: 1;    /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;	    /* OLD - Firefox 19- */
	-ms-flex: 1;	        /* IE 10 */
	-webkit-flex: 1;	    /* NEW - Chrome */
	flex: 1;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

table.dataTable thead th,
table.dataTable thead td {
	padding: var(--default_spacing_small) var(--default_spacing);
	border-bottom: 1px solid rgb(225,52,41);
}

table.dataTable thead th:active,
table.dataTable thead td:active {
	outline: none;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
	padding: 0.625em 1.1em 0.3em 1.1em;
	border-top: 1px solid rgb(225,52,41);
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
	cursor: pointer;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
	background-repeat: no-repeat;
	background-position: center right;
}

table.dataTable thead .sorting {
	background-image: url("https://www.dedigitaleschoolpas.nl/resources_shared/img/sort_both.png");
}

table.dataTable thead .sorting_asc {
	background-image: url("https://www.dedigitaleschoolpas.nl/resources_shared/img/sort_asc.png");
}

table.dataTable thead .sorting_desc {
	background-image: url("https://www.dedigitaleschoolpas.nl/resources_shared/img/sort_desc.png");
}

table.dataTable thead .sorting_asc_disabled {
	background-image: url("https://www.dedigitaleschoolpas.nl/resources_shared/img/sort_asc_disabled.png");
}

table.dataTable thead .sorting_desc_disabled {
	background-image: url("https://www.dedigitaleschoolpas.nl/resources_shared/img/sort_desc_disabled.png");
}

table.dataTable tbody tr {
	background-color: rgb(255,255,255);
}

table.dataTable tbody tr.selected {
	background-color: rgb(255,255,255);
}

table.dataTable tbody th,
table.dataTable tbody td {
	padding: 0.5em 0.625em;
	cursor: pointer;
}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
	border-top: 1px solid rgb(209,209,209);
}

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
	border-top: none;
}

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
	border-top: 1px solid rgb(209,209,209);
	border-right: 1px solid rgb(209,209,209);
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
	border-left: 1px solid rgb(209,209,209);
}

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
	border-top: none;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
	background-color: #f9f9f9;
}

table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
	background-color: #acbad4;
}

table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
	background-color: #f6f6f6;
}

table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
	background-color: #aab7d1;
}

table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
	background-color: #fafafa;
}

table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
	background-color: #acbad5;
}

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
	background-color: #f1f1f1;
}

table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
	background-color: #f3f3f3;
}

table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
	background-color: whitesmoke;
}

table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
	background-color: #a6b4cd;
}

table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
	background-color: #a8b5cf;
}

table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
	background-color: #a9b7d1;
}

table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
	background-color: #fafafa;
}

table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
	background-color: #fcfcfc;
}

table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
	background-color: #fefefe;
}

table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
	background-color: #acbad5;
}

table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
	background-color: #aebcd6;
}

table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
	background-color: #afbdd8;
}

table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
	background-color: #eaeaea;
}

table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
	background-color: #ececec;
}

table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
	background-color: #efefef;
}

table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
	background-color: #a2aec7;
}

table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
	background-color: #a3b0c9;
}

table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
	background-color: #a5b2cb;
}

table.dataTable.no-footer {
	border-bottom: 1px solid #111;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
	white-space: nowrap;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	color: #333 !important;
	border: 1px solid transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #333 !important;
	border: 1px solid rgb(225,52,41);
	background: rgb(255,255,255);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: rgb(209,209,209) !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: rgb(255,255,255) !important;
  border: 1px solid rgb(225,52,41);
  background: rgb(225,52,41);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: rgb(60,60,60);
  box-shadow: inset 0 0 3px #111;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
	color: rgb(29,29,29);
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-bottom: 1px solid #111;
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
	border-bottom: none;
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
	color: white;
	border: 2px solid white;
	box-shadow: 0 0 3px #444;
	background-color: #31b131;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
	background-color: #d33333;
}

table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
	color: white;
	border: 2px solid white;
	box-shadow: 0 0 3px #444;
	background-color: #31b131;
}

table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
	background-color: #d33333;
}

table.dataTable > tbody > tr.child:hover {
	background: transparent !important;
}

table.dataTable > tbody > tr.child ul.dtr-details > li {
	border-bottom: 1px solid #efefef;
}

table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
	border-bottom: none;
}

div.dtr-modal div.dtr-modal-display {
	background-color: #f5f5f7;
	border: 1px solid black;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

div.dtr-modal div.dtr-modal-close {
	border: 1px solid #eaeaea;
	background-color: #f9f9f9;
}

div.dtr-modal div.dtr-modal-close:hover {
	background-color: #eaeaea;
}

div.dtr-modal div.dtr-modal-background {
	background: rgba(0, 0, 0, 0.6);
}

.datatable-onclick {
	cursor: pointer;
}

/* Faciliteiten */
.facility_example {
    width:35px;
    height:35px;
    border-radius:25px;
    text-align: center;
    vertical-align: middle;
    line-height: 35px;
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
}

.file-input-info {
    max-width: 10em;
}

.appstore-badge {
    display: inline-block;
    max-width: 10em;
}
@media only screen and (min-device-width : 320px)
and (max-device-width : 480px)
and (orientation : landscape) {

    /* Prevent font scaling in landscape while allowing user zoom */
    html {
        -webkit-text-size-adjust: 100%;
    }
   
}


@media (min-width:900px) and (max-width:1200px){
    .div3_12,
    .div4_12,
    .div5_12,
    .div6_12,
    .div7_12,
    .div8_12,
    .div9_12 {
        --flex_width: 50%;
    }
}


@media (min-width:1200px){
    .div1_12 {
        --flex_width: 8%;
    }

    .div2_12 {
        --flex_width: 16%;
    }

    .div3_12 {
        --flex_width: 25%;
    }

    .div4_12 {
        --flex_width: 33%;
    }

    .div5_12 {
        --flex_width: 41%;
    }

    .div6_12 {
        --flex_width: 50%;
    }

    .div7_12 {
        --flex_width: 58%;
    }

    .div8_12 {
        --flex_width: 66%;
    }

    .div9_12 {
        --flex_width: 75%;
    }

    .div10_12 {
        --flex_width: 83%;
    }

    .div11_12 {
        --flex_width: 91%;
    }

    .div12_12 {
        --flex_width: 100%;
    }

}

@media (max-width:1200px) {
    .news_item {
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

}

@media (max-width:600px) {
/*
    .div1_12,
    .div2_12,
    .div3_12,
    .div4_12,
    .div5_12,
    .div6_12,
    .div7_12,
    .div8_12,
    .div9_12,
    .div10_12,
    .div11_12,
    .div12_12 {
        --spacing_unit_percentage: 3%;
        --flex_width: 100%;
    }
*/
    .topbar {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .footer_copyright {
        height: auto;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

}

/* ===== HOMEPAGE ===== */
.homepage_block_container .homepage_block {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/* ===== SITE SUBMENU ===== */
.site_submenu_vertical ul {
    --default_spacing: 1.25em;
    padding: var(--default_spacing) var(--default_spacing_small);
}

.site_submenu_vertical li {
    width: 100%;
    padding-bottom: var(--default_spacing_small);
}

.site_submenu_vertical li:last-child {
    padding-bottom: 0;
}

/* ===== SITE ===== */
.forced_fullwidth section,
.site_content.content_with_submenu_vertical {
	max-width: 1560px;
    margin: auto;
}

.site_content section .menu_services ul,
.site_content section .menu_services ol,
.site_content section .submenu_block ul,
.site_content section .submenu_block ol {
    padding: var(--default_spacing_small);
    margin: var(--default_spacing_small) 0;
	display: inline-block;
}

.site_content.content_with_submenu_vertical,
.menu_services_container {
	margin-top: var(--default_spacing_small);
}

/* ===== NEWS / ARCHIVE ===== */
.news_item_text,
.archive_item_text {
	height: 100%;
}

.div12_12.news_item_overview > div a.button {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}

/* ===== COOKIE WARNING ===== */
.cookiewarning_container {
	z-index: 999;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.9;
}

.cookiewarning_text_container {
	min-width: 50%;
}

.cookiewarning_button_accept {
	width: fit-content;
}

/* ===== FOOTER ===== */
.site_footer a {
    -webkit-transition: color var(--animate_duration) ease;
    transition: color var(--animate_duration) ease;
}

.site_footer_mysocialmedia a {
    padding: var(--default_spacing_small);
}

.footer_copyright div {
    margin: 0 var(--default_spacing_small);
}

/* ===== HEADER VISUAL ===== */
.visual_slide_container {
	height: 100%;
}

.visual {
	position: relative;
	height: inherit;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.visual_loader {
    background-size: 50px;
    background-repeat: no-repeat;
}

.header_visual,
.header_visual_home {
	position: relative;
    width: 100%;
    overflow: hidden;
	
	-webkit-transition: height var(--animate_duration) ease-in;
    transition: height var(--animate_duration) ease-in;
}

.header_visual,
.header_visual .payoff_header {
	height: 250px;
}

.header_visual_home,
.header_visual_home .payoff_header {
	height: 750px;
}

.payoff_header {
	margin: 0 auto;
	overflow: hidden;

	width: 100%;
	width: -moz-fit-content;
	width: fit-content;
	
	max-width: calc(1560px - 1.25em);
}

.payoff_header h2 {
	width: 100%;
}

.highlight_white {
    background-color: rgba(255,255,255,0.6);
}

.highlight_gray {
    background-color: rgba(209,209,209,0.6);
}

.highlight_black {
    background-color: rgba(60,60,60,0.6);
}

.highlight_a {
    background-color: rgba(225,52,41,0.6);
}

.highlight_b {
    background-color: rgba(84,207,242,0.6);
}

.highlight_c {
    background-color: rgba(245,185,0,0.6);
}

.highlight_d {
    background-color: rgba(226,226,226,0.6);
}

.highlight_e {
    background-color: rgba(245,156,0,0.6);
}

/* ===== OTHER ===== */
section img {
    max-width: 100%;
}

table[border="0"] td,
table[border="0"] th {
	border: 0;
}

/* ===== SERVICES ===== */

/* ===== PORTFOLIO ===== */
.portfolio_details_visual,
.portfolio_overview_item_img {
    height: 100%;
    object-fit: cover;
}

.portfolio_overview_item_img {
    margin: 0;
}

/* ===== TEAM ===== */
.team_members {
    width: 100%;
}

.team_member {
    text-align: center;
    margin-bottom: var(--spacing_unit_percentage);
}

.team_member_contactinfo a:before {
    --default_spacing_small: 0.3em;
    padding: 0 var(--default_spacing_small);
}

.team_member_img {
    display: block;
    margin: 0 auto;
}

.team_member_details {
    margin: 0 auto;
}

/* ===== TEAM IN HOMEPAGE ROW ===== */
.homepage_row_container .team_member {
    --default_spacing: 1.25em;
    padding: var(--default_spacing);
    margin-bottom: 0;
}

/* ===== TEAM IN HOMEPAGE BLOCK ===== */
.homepage_block .team_member {
    flex: none;
    max-width: 100%;
    text-align: left;
    margin-bottom: var(--default_spacing_small);
    padding: 0;
}

.homepage_block .team_member_img {
    margin-right: var(--default_spacing_small);
}

.homepage_block .team_member_text {
    flex: 1;
}

/* (set fontsize in media queries!) */

/* ===== EXTRA CSS CLASSES (MANAGE IN WEBMAN - HOMEPAGE ROWS & BLOCKS) ===== */
section.bg_fullwidthcolor {
    max-width: 100%;
}

.bg_fullwidthcolor > div {
    max-width: 1560px;
    width: 100%;
    margin: var(--default_spacing_small) auto!important;
}

/*
.bg_fullwidthcolor.bg_fullwidthimage  > div {
    margin			: auto!important;
}

.bg_fullwidthimage > div {
    max-width: 100%;
}

.bg_fullwidthimage div.homepage_block_content,
.bg_fullwidthimage div.homepage_block_button_container {
    max-width		: 1560px;
    width			: 100%;
    margin			: auto!important;
}

.bg_fullwidthimage img {
    padding: 0;
}

.bg_fullwidthimage {
    margin: 0;
    border-radius: 0;
}
*/

/* ===== FOOTER ===== */
.site_footer p {
	line-height: 175%;
}

.site_footer_menus_submenus ul {
    line-height: calc(175% - 0.3em);
}

/* ===== HEADER FIXED NAVIGATION ===== */
.site {
    position: relative;
}

.site_header {
    position: -ms-device-fixed;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

.site_content {
    margin-top: 6em;
}

.horizontal_submenu_active {
    margin-top: 3em;
}

.topbar {
    --default_spacing: 1.25em;
    padding: var(--default_spacing_small) var(--default_spacing);
}

.logo_container img,
.logo_container svg  {
	width: 5em;
	height: auto;
    float: left;
    position: relative;
    margin-bottom: -50%;
    z-index: 9;
}

.site_submenu_horizontal ul {
    list-style-type: none;
    text-align: center;
}

.site_submenu_horizontal li {
    display: inline-block;
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    line-height: 1.25;
    padding: var(--default_spacing_small);
}


.site_submenu_horizontal li a.active {
    color: rgb(225,52,41);
}

/* ===== HEADER NAVIGATION ===== */
.headernav li {
	font-family: 'rubikbold','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
	line-height: 1.25;
}

/* ===== HEADER SUB NAVIGATION ===== */
.headernav li li {
	font-size: 0.85em;
	border-top: 1px solid rgb(209,209,209);
}

.headernav li li:first-child {
	border-top: 1px transparent;
}

/* ===== VISUAL ===== */
.nav-bol-uit,
div#visual-nav ul li {
	background-color: rgb(84,207,242);
}

div#visual-nav ul li:hover,
.nav-bol-aan {
	background-color: rgb(225,52,41);
}

/* ===== VISUAL PAYOFF ===== */
.payoff_header {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

/* ===== SITE SUBMENU ===== */
.site_submenu_vertical ul {
    background-color: rgba(255,255,255,0.75);
    border-radius: 0.9em;
    text-align: center;
}

.site_submenu_vertical li a {
    color: rgb(60,60,60);
}

.site_submenu_vertical li a:hover {
    color: rgb(245,156,0);
}

.site_submenu_vertical li a.active {
    color: rgb(225,52,41);
}

/* ===== SHARE ON SOCIAL MEDIA ===== */
.socialmedia {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size: 0.8em;
    font-weight: normal;
    line-height: 1.5;
    padding: 0.9em;
    margin-top: var(--default_spacing);
}

.socialmedia span:before {
    color: rgb(225,52,41);
    font-size: 1.25em;
    line-height: 1.25;
}

.socialmedia span:hover:before {
    filter: brightness(0.9);
}

/* ===== LANGUAGE PICKER ===== */

/* change to same background color as topbar */
/*.language_picker_menu div,
.language-picker-dropdown {}*/

.language_picker_menu div:before {
    color: rgba(60,60,60,0.8);
}

.language_picker_menu li a:hover {
    border: 2px solid rgb(84,207,242);
}

/* ===== SERVICES ===== */
.services_grid,
.menu_services_container {
    grid-template-columns: repeat(auto-fit, minmax(250px ,1fr));
    column-gap: 1%;
}

/* kan weg?
.services_link {
    margin-top: var(--default_spacing);
} */

.services_icon,
.menu_services_icon {
    width: 7em;
    height: 7em;
    border-radius: 50%;
    border: 2px solid rgb(225,52,41);

    margin-bottom: var(--default_spacing_small);
    -webkit-transition: all var(--animate_duration) ease;
    transition: all var(--animate_duration) ease;
}

.services_icon:before,
.menu_services_icon:before {
    font-size: 2em;
}

.services:hover .services_icon,
.menu_services:hover .menu_services_icon {
    color: rgb(255,255,255);
    border-color: rgb(245,156,0);
}

.services:hover .services_icon,
.services:hover .button,
.menu_services:hover .menu_services_icon,
.menu_services:hover .button {
    background-color: rgb(245,156,0);
}

.services_image img {
    width: auto;
    height: 7em;
    margin-right: 0;
}

.services .button {
    min-width: 75%;
}

.services h2 {
    font-size: 1.25em;
    max-width: 15ch;
}

/* ===== NEWS / ARCHIVE ===== */
/* width img next to news item */
.archief-item-afbeelding-container.img_align_right,
.archief-item-afbeelding-container.img_align_left,
.news_item_img_container.img_align_right,
.news_item_img_container.img_align_left {
	width: 25%;
}

/* if 1 column, border (divider) between items + button left */
.div12_12.news_item_overview,
.div12_12.archief-item-overzicht {
    margin-top: 0;
	border-top: 1px solid rgba(209,209,209,0.5);
}

/* fallback-color border, change this if you change border color above */
.div12_12.news_item_overview.bg_gray,
.div12_12.archief-item-overzicht.bg_gray {
	border-top: 1px solid rgba(255,255,255,0.5);
}

.div12_12.news_item_overview:first-child,
.div12_12.bg_gray.news_item_overview:first-child,
.div12_12.archief-item-overzicht:first-child,
.div12_12.bg_gray.archief-item-overzicht:first-child {
	border-top: none;
}

/* ===== HOMEPAGE BLOCKS ===== */
.homepage_block_button_container a {
    max-width: calc(100% - (2 * var(--default_spacing)));
}

/* ===== NEWS IN HOMEPAGE BLOCK ===== */
.homepage_block .news_item {
	text-align: left;
	margin-bottom: var(--default_spacing_small);
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.homepage_block.bg_wit .news_item {
	border-bottom: 1px solid rgba(209,209,209,0.5);
}

.homepage_block .news_item:last-child,
.homepage_block.bg_wit .news_item:last-child {
	border-bottom: none;
}

.homepage_block .news_item_img {
	width: 150px;
	margin-right: var(--default_spacing_small);
	min-width: 10%;
}

/* ===== PHOTO ALBUMS ===== */
img.photo_item_img,
img.movie_item_img {
    min-height: 100px;
    margin-bottom: 0.3em;
}

/* ===== PORTFOLIO ===== */
.portfolio_overview_item_img {
    max-height: 10em;
}

/* ===== TEAM OVERVIEW ===== */
.team_overview_grid {
    grid-template-columns: repeat(auto-fit, minmax(300px ,1fr));
    column-gap: 1%;
}

.team_member_img {
	width: 75%;
}

.team_member_img img {
	border-radius: 50%;
}

.team_member_overview:hover img,
.homepage_row_container .team_member:hover img {
	filter: brightness(1.025);
}

/* ===== TEAM DETAIL ===== */
.team_member_details .team_member_img {
	width: 25%;
}

.team_member_details .team_member_job_title {
	font-weight: bold;
}

/* ===== TEAM IN HOMEPAGE ROW ===== */
.homepage_row_container .team_member_img,
.submenu_layout_container .team_member_img {
	max-width: 15em;
}

/* ===== TEAM IN HOMEPAGE BLOCK ===== */
.homepage_block .team_member_img {
	min-width: 6em;
	width: 6em;
}

/* ===== OTHER ===== */
.chapters:not(.bg_fullwidthcolor),
.chapter_overview:not(.bg_fullwidthcolor),
.chapter_details div,
.form_with_bg_color,
.services_container:not(.bg_fullwidthcolor),
.submenu_layout_container:not(.bg_fullwidthcolor),
.submenu_block div,
.team_members:not(.bg_fullwidthcolor),
.quote:not(.bg_fullwidthcolor) {
    border-radius: 0.9em;
}

.downloads {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    margin-bottom: var(--default_spacing_small);
}

.downloads a {
    font-family: 'rubikregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.bestand-link:before {
    padding-right: var(--default_spacing_small);
}

.grid-table {
    padding: 0.3em 0;
}

.grid-th {
    opacity: 0.8;
    font-weight: bold;
    padding-right: 0.3em;
}

.grid-td {
    padding-left: 0.3em;
}

td, .td {
    border: 1px solid rgba(209,209,209,0.75);
}

.bold,
strong {
    font-family: 'rubikbold','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
    font-weight: normal;
}

.keyvalue_row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(13em,1fr) 1fr;
    grid-template-columns:  repeat(auto-fill, minmax(13em, 1fr));
    -webkit-align-items: center;
    align-items: center;
}

.keyvalue_row.col_2 {
    -ms-grid-columns: minmax(50%,1fr) 1fr;
    grid-template-columns:  repeat(auto-fill, minmax(50%, 1fr));
}

.keyvalue_row.col_2_withcolon {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 12px 1fr;
}

.keyvalue_row.col_3 {
    -ms-grid-columns: minmax(33%,1fr) 1fr;
    grid-template-columns:  repeat(auto-fill, minmax(33%, 1fr));
}

.keyvalue_row.col_4 {
    -ms-grid-columns: minmax(25%,1fr) 1fr;
    grid-template-columns:  repeat(auto-fill, minmax(25%, 1fr));
}

.keyvalue_colon {
    text-align: center;
}

.keyvalue_row.col_downloads {
    -ms-grid-columns: 1fr 200px;
    grid-template-columns: 1fr 200px;
}

.keyvalue_row:nth-child(odd) {
    background-color: rgba(245,156,0,0.6);
}

.keyvalue_key {
    font-weight: bold;
}

.bootbox-close-button {
    --bootbox-close-icon: "\34";
}

q {
    font-family: 'rubikbold','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
    font-size: 1.3em;
    line-height: 1.8;
    text-align: center;
}
/* ===== STANDARD FORM ===== */

/* SOCIAL MEDIA EMAIL FORM */
	.socialmedia-emailform-melding,
	.socialmedia-emailform-container {
		position: relative;
		margin: 0 auto;
		max-width: 500px;
	}
	.socialmedia-emailform-melding {
		margin: 20px auto;
	}

/* ===== FORM SPECIFIC MEDIA QUERIES ===== */
@media (max-width: 600px) {

	.socialmedia-emailform-melding,
	.socialmedia-emailform-container {
		max-width: 320px;
	}
}

/* ===== STANDARD INPUTS ===== */
.inputrow {
	font-size	: 0.9em;
}

label {
    line-height: 1.25;
}

/* ===== OVERRIDE STANDARD BUTTONS ===== */
.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {

}

/* ===== CUSTOM BUTTONS ===== */


/* SOCIAL MEDIA EMAIL FORM */
.socialmedia-emailform-melding {
	background-color: rgba(225,52,41, 0.1);
}

/* ===== FORM SPECIFIC MEDIA QUERIES ===== */

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

}

@media (max-width: 600px) {

}

/* FANCY HOVERS - WITH FIX FOR TOUCH DEVICES */
.headernav ul,
.headernav li a:not(.button) {
    padding						: 0.5em 0;
}

.headernav ul li > ul li a:not(.button) {
    padding						: 0.4em 0.8em;
}

.headernav ul li > ul li:last-of-type {
    padding-bottom				: 0.6em;
}

.headernav > ul > li {
    padding						: 0.5em 1.25em;
}

.headernav > ul > li > a:not(.button) {
    display						: inline;
    position					: relative;
}

.headernav > ul > li > a:not(.button):after,
.headernav > ul > li > a.active:not(.button):after {
    position					: absolute;
    bottom						: 0.25em;
    left						: 0;

    content						: '';
    width						: 100%;
    height						: 2px;
    background-color			: rgb(225,52,41);
}

.headernav > ul > li > a:not(.button):after {
    position					: absolute;
    bottom						: 0.25em;
    left						: 0;

    content						: '';
    width						: 0;
    height						: 2px;

    -webkit-transition			: all var(--animate_duration) ease;
    transition					: all var(--animate_duration) ease;
    background-color			: rgb(225,52,41);
}

/* moves the submenu down to show fancy hover, change this if you change position of fancy hover */
.headernav li ul {
    padding-top					: 0.4em;
}

.hover-allowed .headernav > ul > li > a:hover:after {
    width						: 100%;
}

/* FIXED NAVIGATION */

header nav.site_submenu_horizontal + div.site_content {
    margin-top: 60em;
}

/* COMPARISON CUSTOM TABLE */
.homepage_row_container_table .homepage_block_container .homepage_block {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.table-img {
    position: relative;
    left: -80%;
    z-index: -1;
    margin: 0;
}

.table-comparison {
    min-width: 550px;
    border: none;
    overflow: initial;
    line-height: var(--body_line_height);
}

.table-comparison th,
.table-comparison td,
.table-comparison .th,
.table-comparison .td {
    padding: 1em;
    overflow-wrap: anywhere;
}

.table-comparison-header.rounded {
    font-size: 1.2em;
    border-radius: 0.9em 0.9em 0 0;
    overflow: initial;
}

.table-comparison-body.rounded {
    border-radius: 0 0 0.9em 0.9em;
}

.table-comparison-body tr {
    border-radius: inherit;
}

.table-comparison-content td {
    border: none;
    position: relative;
}

.table-comparison-content td:after {
    content: '';
    height: 1px;
    background-color: rgb(226,226,226);
    position: absolute;
    bottom: 0;
    left: 1em;
    right: 1em;
}

td.borderless {
    min-width: 120px;
}

.green {
    color: green;
}

/* OTHER CSS */
.phone_numbers_container {
    text-align: right;
}

.phone_numbers_container a {
    font-size: 0.8em;
    padding: 0.5em 1.25em;
}

@media (max-width:1000px) {

}

@media (min-width:1000px) and (max-width:1560px) {

}

@media (max-width:900px) {

}

@media (max-width:800px) {

}

@media (max-width: 600px) {

}

/*=== min-max font-size for min-max viewports, scales everything in between: https://css-tricks.com/snippets/css/fluid-typography/ ===*/
/* SET MIN FONT_SIZES HERE   */

html 				{	font-size: 16px	}

.payoff_header h2	{	font-size: 32px;	}

H1, .h1 			{	font-size: 32px;	}

.h1-to-h2			{	font-size: 36px;	}

H2, .h2 			{	font-size: 28px;	}

H3, .h3 			{	font-size: 22px;	}

H4, .h4 			{	font-size: 20px;	}

H5, .h5				{	font-size: 18px;	}


@media screen and (min-width: 320px) {

/* CALCULATE (MIN_FONT + (MAX_FONT - MIN_FONT) X ((VIEWPORT_WIDTH - MIN_SCREEN) / (MAX_SCREEN - MIN_SCREEN))) */

	html 				{	font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));	}

	.payoff_header h2	{	font-size: calc(32px + (42 - 32) * ((100vw - 320px) / (1920 - 320)));	}

    H1, .h1  			{	font-size: calc(32px + (68 - 32) * ((100vw - 320px) / (1920 - 320)));	}

    .h1-to-h2			{	font-size: calc(36px + (68 - 36) * ((100vw - 320px) / (1920 - 320)));	}

    H2, .h2 			{	font-size: calc(28px + (32 - 28) * ((100vw - 320px) / (1920 - 320)));	}

    H3, .h3  			{	font-size: calc(22px + (26 - 22) * ((100vw - 320px) / (1920 - 320)));	}

    H4, .h4  			{	font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));	}

    H5, .h5 			{	font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));	}
	
}

@media screen and (min-width: 1920px) {

/* SET MAX FONT_SIZES HERE (CHANGE MAX SCREEN SIZE IF YOU NEED) */

	html 				{	font-size: 18px;	}

	.payoff_header h2	{	font-size: 42px;	}

    H1, .h1  			{	font-size: 68px;	}
	
	.h1-to-h2			{	font-size: 68px;	}

    H2, .h2 			{	font-size: 32px;	}

    H3, .h3  			{	font-size: 26px;	}

    H4, .h4  			{	font-size: 24px;	}

    H5, .h5 			{	font-size: 22px;	}

}

/* ====== OTHER MEDIA QUERIES ===== */
/* To-do Robin: max_width variabele uit project vars pakken, nu komt hij uit frontoffice vars */
@media (max-width:1560px) {
/* Default */

/* Project */
    .table-img {
        display: none;
    }

}

@media (min-width:1560px) {
    :root {
        --default_spacing: 1.25em;
    }
}

@media (min-width:1000px) {
/* Default */
    .site_content.content_with_submenu_vertical {
        padding-right: var(--default_spacing);
    }

/* Project */
    form {
        max-width: 1000px;
    }

    P, P P,
    .visual_subtitle {
        max-width: 100ch;
    }

}

@media (max-width:1000px) {
/* Default */
    .header_visual_home,
    .header_visual_home .payoff_header,
    .header_visual_home .visual-overlay {
        height: calc(0.75 * 750px);
    }

    .content_with_submenu_vertical {
        -webkit-flex-direction: column;
        flex-direction: column;
        margin-top: var(--default_spacing_small);
    }

/* Project */
    .headernav li a {
        padding: 0.2em 0.6em;
    }

    .site_submenu_vertical {
        border: 0;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .site_submenu_vertical ul {
        padding: 0.3em;
        text-align: center;
    }

    .site_submenu_vertical li {
        margin-right: var(--default_spacing_small);
        padding: 0.3em;
        width: inherit;
    }

    .site_submenu_vertical li:last-child {
        padding-bottom: 0.3em;
    }

    .site_submenu_vertical a {
        margin: 0;
        padding: 0;
    }

}

@media (max-width:900px) {
/* Default */

/* Project */
    .mobile_invisible {
        display: none;
        -webkit-transition: all var(--animate_duration) ease-in;
        transition: all var(--animate_duration) ease-in;
    }

    .mobile_visible {
        display: inherit;
        -webkit-transition: all var(--animate_duration) ease-in;
        transition: all var(--animate_duration) ease-in;
    }

    .logo_container img,
    .logo_container svg {
        width: 4em;
    }

    .site_content {
        margin-top: 3em;
    }

    .horizontal_submenu_active {
        margin-top: 0;
    }

}

@media (max-width: 800px) {
/* Default */
    .header_visual_home,
    .header_visual_home .payoff_header,
    .header_visual_home .visual-overlay {
        height: calc(0.5 * 750px);
    }

    .payoff_header span {
        display: none;
    }

/* Project */
    .div12_12.table-comparison {
        min-width: initial;
    }

    .table-comparison-header.rounded {
        font-size: 1em;
        line-height: initial;
    }
}

@media (max-width: 600px) {
/* Default */
    .header_visual_home,
    .header_visual_home .payoff_header,
    .header_visual_home .visual-overlay {
        height: calc(0.3 * 750px);
    }

    .header_visual,
    .header_visual .payoff_header,
    .header_visual .visual-overlay {
        height: calc(0.75 * 250px);
    }

    .cookiewarning_container {
        -webkit-justify-content: center!important;
        justify-content: center!important;
    }

    .services_grid,
    .menu_services_container {
        grid-template-columns: repeat(auto-fit, minmax(98% ,1fr));
    }

/* Project */
    .table-comparison {
        min-width: initial;
    }

}
