/* Global
----------------------------------------------------*/
*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bubble-unknown: #d9d08c;
	--bubble-approved: #A8E27A;
	--bubble-denied: #FF8484;
	--buble-pending: #D8D8D8;
	--bubble-delayed: #F5FF84;
	--bubble-border-unknown: #E4DEAE;
	--bubble-border-approved: green;
	--bubble-border-denied: red;
	--bubble-border-pending: gray;
	--bubble-border-delayed: yellow;
	/*color*/
	--color-primary: #d1f951;
	--color-secondary: #133416;
	/* background color */
	--color-bg-light: #F4F5EE;
	--color-bg-secondary: #F4F5EE;
	/*border radius*/
	--radius: 1em;
	--radius-xxs: calc(0.25 * var(--radius-unit));
	--radius-xs: calc(0.5 * var(--radius-unit));
	--radius-s: calc(0.75 * var(--radius-unit));
	--radius-m: calc(1.25 * var(--radius-unit));
	--radius-l: calc(2 * var(--radius-unit));
	--radius-xl: calc(3.25 * var(--radius-unit));
	--radius-xxl: calc(5.25 * var(--radius-unit));
	/*border*/
	--border-size: 1px;
	--border-color: var(--color-gray-200);
	--border-type: solid;
	--border: var(--border-size) var(--border-type) var(--border-color);
	/*shadow*/
	--x: 0px;
	--y: 4px;
	--blur: 6px;
	--spread: 1px;
	--opacity-s: .25;
	--opacity-m: .50;
	--opacity-l: .75;
	--color-shadow: 0,0,0;
	--shadow: var(--x) var(--y) var(--blur) rgba(var(--color-shadow), var(--opacity-s));
	--shadow-border: var(--x) var(--y) var(--blur) rgba(var(--color-shadow), var(--opacity)), 0px 0px 0px var(--spread) rgba(var(--color-shadow), var(--opacity-M));
	/*space system*/
	--space-unit: 1em;
	--space-xxs: calc(0.25 * var(--space-unit));
	--space-xs: calc(0.5 * var(--space-unit));
	--space-s: calc(0.75 * var(--space-unit));
	--space-m: calc(1.25 * var(--space-unit));
	--space-l: calc(2 * var(--space-unit));
	--space-xl: calc(3.25 * var(--space-unit));
	--space-xxl: calc(5.25 * var(--space-unit));
}

html {
	height: 100%;
}

html, body {
	height: auto;
	min-height: 100%;
}

body {
	height: 100vh;
}

body {
	position: relative;
	background: #efefef;
	color: #093050;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	-webkit-font-smoothing: antialiased;
}

.primary-layout {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto 1fr;
	grid-template-areas: "components-reconnect-modal"
		"nav"
		"content";
	overflow: hidden;
}

a {
	color: #829CBC;
}

a, .button, .menu-icon {
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: black;
}

.container img {
	display: block;
	height: auto;
	width: 100%;
}

.box ul {
	list-style: none;
	padding: 10px;
}

/* Layout
----------------------------------------------------*/

#components-reconnect-modal {
	grid-area: components-reconnect-modal;
}

.nav-layout {
	grid-area: nav;
	container: nav / inline-size;
	z-index: 2;
}

.content-layout {
	grid-area: content;
	container: content / inline-size;
	display: grid;
	grid-template-rows: 1fr auto;
	overflow-y: auto;
	scrollbar-color: #888 #efefef;
}

	.content-layout.has-header {
		grid-template-rows: auto 1fr auto;
	}

/* nav
----------------------------------------------------*/
	.nav-layout {
		background-color: white;
		display: grid;
		grid-template-rows: auto 1fr;
	}

.site-itendity {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	height: 12.5rem;
}

.site-itendity a {
	margin: 0 auto;
}

	.site-itendity img {
		height: fit-content;
		width: 100%;
		object-fit: contain;
		display: block;
		height: 100%;
		object-position: left;
	}

.burger-menu {
	all: revert;
	border: none;
	background-color: unset;
	border-radius: 500rem;
	display: grid;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	height: fit-content;
	cursor: pointer;
	transition: background-color .1s ease-in-out;
}

	.burger-menu:hover,
	.burger-menu:focus {
		background-color: #f5f5f5;
	}

.nav-list-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: .5rem;
	height: 100%;
}

.nav-list {
	display: none;
	flex-direction: column;
	padding: 1rem;
	overflow: hidden;
	position: fixed;
	background: white;
	height: 0;
	width: 100%;
	gap: .5rem;
}

.nav-list-open {
	display: flex;
	height: fit-content;
	padding: 1rem;
}

.nav-list li {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	border-radius: 50rem;
	transition: background-color .1s ease-in-out;
}

	.nav-list li:hover,
	.nav-list li:focus-within,
	.nav-list li.active {
		background-color: #f5f5f5;
	}

	.nav-list li a {
		color: inherit;
		grid-column: 1 / 3;
		grid-row: 1 / 2;
		z-index: 2;
		text-decoration: none;
		padding: .5rem 1.5rem;
		border-radius: 5000rem;
	}

	.nav-list li i {
		color: inherit;
		width: 55px;
		text-align: center;
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		padding: .5rem 1.5rem;
	}

.nav-list .logout-btn {
	--Logout-Debtor-Color: white;
	--Logout-Toggle-Color: black;
	--Logout-Toggle-Color-hover: #A1D104;
	background: var(--Logout-Debtor-Color);
	color: var(--Logout-Toggle-Color);
}

	.nav-list .logout-btn:hover,
	.nav-list .logout-btn:focus,
	.nav-list .logout-btn.active {
		background: var(--Logout-Toggle-Color-hover);
	}

@media only screen and (min-width: 700px) {
	.primary-layout {
		grid-template-columns: 300px 1fr;
		grid-template-rows: auto 1fr;
		grid-template-areas: "components-reconnect-modal components-reconnect-modal"
			"nav content";
	}

	.nav-layout {
		filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
	}

	.nav-list {
		display: flex;
	}

	.burger-menu {
		display: none;
	}

	.nav-list {
		position: unset;
		height: fit-content;
	}

	.contact-footer {
		padding: .5rem 5vw;
	}
}

/* heading
----------------------------------------------------*/

.welcom-header {
	--Header-Debtor-Color: var(--color-primary);
	--Header-Toggle-Color: black;
	background: var(--Header-Debtor-Color);
	color: var(--Header-Toggle-Color);
	padding: 2rem 5vw;
	filter: drop-shadow(0 0 9px rgba(0, 0, 0, 0.25));
}

	.welcom-header h1 {
		margin: 0;
		font-size: 2.5rem;
		color: inherit;
	}

		.welcom-header h1 span {
			font-weight: normal;
			overflow-wrap: anywhere;
			hyphens: auto;
			display: inline-block;
		}


/* main
----------------------------------------------------*/

main {
	padding: 4rem 5vw;
}

/* footer
----------------------------------------------------*/

.contact-footer {
	--Footer-Debtor-Color: gray;
	--Footer-Toggle-Color: black;
	background: var(--Footer-Debtor-Color);
	color: var(--Footer-Toggle-Color);
	display: flex;
	flex-direction: column;
	padding: 1rem 5vw;
	flex-wrap: wrap;
	flex-direction: unset;
	row-gap: .5rem;
	column-gap: 1.5rem;
}

	.contact-footer p {
		color: inherit;
		margin: unset;
		overflow-wrap: anywhere;
		hyphens: auto;
		display: inline-block;
		line-height: 1.75;
	}

	.contact-footer a {
		color: inherit;
		line-height: 1.75;
	}

@container content (min-width: 600px) {
	.contact-footer {
		justify-content: space-between;
	}
}

/* Login
----------------------------------------------------*/
.login-main {
	display: grid;
	grid-template-columns: unset;
	grid-template-rows: unset;
	grid-template-areas: unset;
}

.login-panel.box {
	max-width: 460px;
	display: block;
	margin: 40px auto 0;
	float: none;
	padding: 20px 15px 0 15px;
	width: 90%;
	height: fit-content;
}

img.login-logo {
	margin: 0 auto;
	height: auto;
	padding: 10px;
	width: 100%;
}

#loginForm{
	color: black;
}

.toggle-login-container {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.toggle-login-container p{
	padding: 0 !important;
	margin: 0;
}

button.toggle-Login {
	all: revert;
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 0 1.2rem;
	height: 2.5lh;
	background-color: transparent;
	border-radius: .5rem;
	border: 1px solid #ccc;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	cursor: pointer;
}

	button.toggle-Login:is(:hover, :focus) {
		background-color: inherit;
		color: inherit;
		border-color: var(--color-primary, #d1f951);
		transition-property: all;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		transition-duration: 150ms;
	}

button.toggle-Login svg{
	height: 1lh;
	width: auto;
	line-height: normal;
}

.login-title {
	padding: 1.2rem;
	border-radius: .5rem;
	border: 1px solid #ccc;
	margin-bottom: 1.5rem;
}

	.login-title h2 {
		font-size: 1.7rem;
		line-height: 1.5;
		margin: 0;
	}

	.login-title p {
		padding: 0 !important;
		margin: 0;
	}

.login-container strong {
	font-weight: 500;
	color: rgba(107, 114, 128, 1);
	font-size: 12px;
}

/* Tables
----------------------------------------------------*/

table {
	margin: 0 !important;
}

	table.dataTable thead th,
	table.dataTable.no-footer {
		border-bottom: none;
	}

	table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
	table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before,
	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: #F58036;
		border: none;
		box-shadow: none;
		top: 10px;
	}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
	border: 1px solid #eee;
}



table.dataTable thead th {
	padding: 10px;
}

table.dataTable tbody th, table.dataTable tbody td {
	padding: 5px 10px;
	vertical-align: middle;
}

tfoot {
	background: var(--primary, #133416);
	color: var(--primary-toggle, #ffffff);
	text-align: right;
}

/* Forms
----------------------------------------------------*/

textarea {
	resize: vertical;
}

form {
	line-height: 1.42857143;
}

.form-horizontal .checkbox, .form-horizontal .radio {
	min-height: 33px;
}

td input[type=checkbox], th input[type=checkbox] {
	margin: 0 !important;
}

.form-box {
	padding: 20px 10px;
}

	.form-box:nth-of-type(1) {
		padding-top: 0;
	}

.pac-container {
	font-family: 'Lato', sans-serif !important;
}

.pac-item, .pac-item span {
	font-size: 13px !important;
}

.pac-container::after {
	display: none !important;
}


/* DBO
----------------------------------------------------*/

.dbo-select {
	background-image: url('/images/select.svg');
	background-position: right center;
	background-repeat: no-repeat;
	-moz-appearance: none;
	padding-right: 25px;
	-webkit-appearance: none;
}

	.dbo-select::-ms-expand {
		display: none;
	}


.dbo-currency,
.dbo-decimal {
	text-align: right;
	text-wrap: nowrap;
	width: 80px;
}

.dbo-time {
	width: 64px;
}

.dbo-date {
	width: 100px;
}

input.dbo-date {
	width: 100%;
}

.dbo-datetime {
	width: 140px;
}

.dbo-integer {
	width: 70px;
	text-align: right;
}

.dbo-title {
	color: black;
	border-bottom: none;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: normal;
	padding: 2rem;
	text-transform: uppercase;
}

.dbo-weight {
	font-weight: bold;
}

.dbo-ideal {
	display: block;
	height: auto;
	width: 20px;
}

.dbo-btn, button {
	background-color: var(--primary, #133416);
	border-color: var(--primary, #133416);
	color: var(--primary-toggle, #ffffff);
	margin-right: 5px;
	box-shadow: none;
}

	button:hover,
	button:focus,
	.dbo-btn:hover,
	.dbo-btn:focus,
	.dbo-btn:active,
	.dbo-btn.active {
		background-color: var(--primary-hover, #071308);
		border-color: var(--primary-hover, #071308);
		color: var(--primary-toggle, #ffffff);
	}

.dbo-btn-wrap {
	text-align: left;
}

	.dbo-btn-wrap .dbo-btn {
		display: inline-block;
		margin: 0 10px 10px 0;
		width: auto;
	}

.dbo-center {
	text-align: center;
}

.btn-file {
	position: relative;
	overflow: hidden;
}

	.btn-file input[type=file] {
		background: white;
		cursor: inherit;
		display: block;
		font-size: 100px;
		min-height: 100%;
		min-width: 100%;
		opacity: 0;
		outline: none;
		position: absolute;
		right: 0;
		text-align: right;
		top: 0;
	}


ul, ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#result {
	background-color: rgba(0, 0, 0, .5);
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 9999;
}

	#result img {
		height: 42px;
		left: 50%;
		-o-transform: translate(-50%, -50%);
		position: absolute;
		text-align: center;
		top: 50%;
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 42px;
	}

/* Modal
----------------------------------------------------*/

.modal {
	margin-top: 10%;
}

.modal-header {
	border: 1px solid #fff;
	padding: 0;
}

.modal-body {
	border-bottom: 1px solid #eee;
	margin: 15px;
	padding: 0;
}

	.modal-body ul {
		list-style-type: disc;
		padding-bottom: 20px;
		padding-left: 15px;
	}

.modal-footer {
	border: 0;
	padding: 15px;
	text-align: right;
}

button.close {
	color: white;
	opacity: 1;
	padding: 10px;
	text-shadow: none;
}

	button.close:hover {
		color: white;
	}

.input-group .form-control {
	z-index: auto !important;
}

span .fa-phone,
span .fa-envelope-o {
	color: #093050;
	cursor: pointer;
}

/* Content
----------------------------------------------------*/

.box {
	background: #fff;
	border-radius: 10px;
	float: left;
	margin: 10px auto;
	width: 100%;
}

.table-responsive {
	border-radius: 0 0 10px 10px;
}

.box.orange {
	background: #F58036;
	color: #fff;
	padding: 0;
}

.box p, .box form {
	padding: 10px 10px 0px 10px;
}

	.box form#HoursForm {
		padding: 0;
	}

.box.no-padding form {
	padding: 0;
}

.logo-center {
	padding: 40px 0 20px 0;
}

.tile {
	text-align: center;
}

	.tile img {
		padding: 10px 20px;
	}

.tile_button {
	background: #093050;
	color: white;
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 8px 10px;
	text-transform: uppercase;
}

.debplaceholder {
	display: block;
	height: 142px;
	max-height: 142px;
	padding: 20px;
	position: relative;
	text-align: center;
}

img.deblogo,
.deblogo_alt {
	bottom: 0;
	margin: auto;
	max-width: 316px;
	max-height: 142px;
	position: absolute;
	top: 0;
}

.deblogo_alt {
	text-align: center;
}

.title {
	font-weight: 700;
}

.dbo-big-form h3 {
	text-align: center;
}

.dbo-big-form .box {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.deleted-row {
	visibility: hidden;
	display: none;
}

table#hourrows {
	margin-bottom: 14px !important;
}

form#HoursForm .dbo-btn {
	margin-left: 10px;
}

.del-record,
#add-record {
	cursor: pointer;
}

.table > tbody > tr > td.del-record {
	vertical-align: middle !important;
}

dl {
	margin-bottom: 0;
}

/* Zorg */


/*

.module-care .dbo-title,
.module-care .tile_button,
.module-care .site-footer {
	background: #558b2f !important; 
}

.module-care .box.orange {
	background: #8bc34a;
}


.module-care .dbo-btn, button {
	background-color: #558b2f;
	border-color: #558b2f;
}


	.module-care button:hover,
	.module-care button:focus,
	.module-care .dbo-btn:hover,
	.module-care .dbo-btn:focus,
	.module-care .dbo-btn:active,
	.module-care .dbo-btn.active {
		background-color: #8bc34a;
		border-color: #8bc34a;
	}

.module-care span .fa-phone,
.module-care span .fa-envelope-o {
	color: #8bc34a;
}




.module-care .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover,
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover,
.module-care .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.module-care .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.module-care .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
	background: #558b2f !important;
	box-shadow: none !important;
}
*/


/*  New page design */

td.dbo-icon a {
	color: black;
}

.dbo-icon a, .dbo-icon i {
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.table-responsive {
		margin-bottom: 0;
	}
}

.table-underlined > tbody > tr > td {
	border-top: 1px solid black;
	padding-bottom: 5px;
	padding-top: 12px;
}

.table-underlined > thead > tr > th {
	border-bottom: 1px solid black;
}

.table-low-padding > thead > tr > th, .table-low-padding > tbody > tr > td {
	padding-bottom: 5px;
	padding-top: 12px;
}


.side-box {
	padding: 10px;
}

	.side-box .dbo-title {
		padding: 0;
	}

/* Styles for the burger icon */
.burger-checkbox {
	display: none;
}

.burger-icon {
	width: 30px;
	height: 20px;
	position: relative;
	cursor: pointer;
}

	.burger-icon div {
		width: 100%;
		height: 4px;
		background-color: #333;
		margin: 6px 0;
		transition: 0.4s;
	}

/* Styles for the animation */
.burger-checkbox:checked + .burger-icon div:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-checkbox:checked + .burger-icon div:nth-child(2) {
	opacity: 0;
}

.burger-checkbox:checked + .burger-icon div:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

.burger-checkbox:checked ~ #bs-example-navbar-collapse-1 {
	display: block !important;
}
