/* ======================= */
/*  LUSANET KINDDOSSIER    */
/*  VERSIE 1.0.00          */
/* ======================= */
/*  (c) 2007-2022 Lusanet  */
/*  www.lusanet.nl         */
/* ======================= */

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;	
}

@keyframes statusMessageShow {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes statusMessageHide {
	from { opacity: 1; }
	to { opacity: 0; }
}

@font-face {
	font-family: 'lusanet_md';
	src: url('fonts/lusanet_md.eot');
	src: local('â˜º'), url('fonts/lusanet_md.woff') format('woff'), url('fonts/lusanet_md.ttf') format('truetype'), url('fonts/lusanet_md.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

html, body {
	height: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	background-color: #FFFFFF;
	background-image: url('../images/login_background.jpg');
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	color: #000000;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12px;
}
body::before {
	display: block;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgb(85, 136, 187, 0.4);
	content: " ";
}

div, .floatBreak {
	clear: both;
	float: none;
}

/* === OVERLAY === */
	#overlay, .inElementOverlay {
		display: none;
		position: fixed;
		z-index: 10;
		bottom: 0px;
		left: 0px;
		right: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden;
		background-color: transparent;
		background-image: url('../images/overlay_background.png');
		background-position: 0px 0px;
		background-repeat: repeat;
	}
	.inElementOverlay {
		display: block;
		bottom: auto;
		left: auto;
		top: auto;
		right: auto;
		top: auto;
		padding-left: 5px;
		font-style: normal;
	}
	
	#overlay #overlayLoadingIcon {
		display: none;
		width: 390px;
		height: 60px;
		padding-left: 48px;
		padding-top: 4px;
		border-radius: 5px;
		background-color: rgba(255, 255, 255, 0.9);
		color: #5588BB;
		font-family: 'lusanet_md', Verdana, Geneva, Tahoma, sans-serif;
		font-size: 22px;
		line-height: 32px;
		box-shadow: 0px 0px 8px #808080;
	}

	#overlay #overlayLoadingIcon i {
		display: inline-block;
		margin-left: -38px;
		margin-right: 10px;
		color: #336699;
		font-size: 24px;
		line-height: 32px;
		vertical-align: middle;
	}

	#overlay #overlayLoadingIcon p {
		display: none;
		margin: 0px;
		color: #808080;
		font-family: Verdana, Geneva, Tahoma, sans-serif;
		font-size: 8pt;
		font-weight: normal;
		line-height: 10pt;
	}

	#overlay #overlayLoadingIcon p a {
		color: #C44444;
		text-decoration: underline;
		cursor: pointer;
	}
	#overlay #overlayLoadingIcon p a:hover {
		color: #000000;
	}

/* === STATUSMESSAGE === */
	#statusMessage {
		display: none;
		position: fixed;
		z-index: 11;
		top: 24px;
		left: 50%;
		width: 600px;
		height: 26px;
		margin-left: -300px;
		background-color: #98bf0e;
		background-image: url('../images/statusmessages_icons.png');
		background-position: 5px 0px;
		background-repeat: no-repeat;
	}
	#statusMessage.good {
		background-color: #98bf0e;
		background-position: 5px 0px;
		box-shadow: 0px 0px 3px 2px #dcf573;
	}
	#statusMessage.warning {
		background-color: #c07b0e;
		background-position: 5px -26px;
		box-shadow: 0px 0px 3px 2px #f5c273;
	}
	#statusMessage.error {
		background-color: #c00e11;
		background-position: 5px -52px;
		box-shadow: 0px 0px 3px 2px #f4747a;
	}
	#statusMessage.show {
		display: block;
		animation: statusMessageShow 0.5s both;
	}
	#statusMessage.hide {
		display: block;
		animation: statusMessageHide 0.5s both;
	}

	#statusMessage p {
		margin: 0px;
		padding: 0px;
		padding-left: 35px;
		color: #FFFFFF;
		font-size: 15px;
		line-height: 26px;
	}

/* === WRAPPER === */
	#wrapper {
		position: absolute;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: column;
	}

	#wrapper .logo {
		position: relative;
		z-index: 1;
		width: 40%;
		max-width: 350px;
		height: 120px;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		background-color: rgba(255, 255, 255, 0.4);
		background-image: url('../images/kinddossier_logo.png');
		background-position: center 20px;
		background-repeat: no-repeat;
		background-size: 70% auto;
		backdrop-filter: blur(6px);
		box-shadow: 0px 0px 20px #000000;
	}
	.exportFilesPage #wrapper .logo, .exportFilesPage #wrapper .footer {
		background-color: rgba(255, 255, 255, 0.6);
	}

	#wrapper .logo span {
		position: absolute;
		right: 35px;
		bottom: 10px;
		display: block;
		padding: 5px 10px;
		border-radius: 10px;
		background-color: #336699;
		color: #FFFFFF;
		font-size: 11px;
		text-transform: uppercase;
	}

	#wrapper .footer {
		z-index: 1;
		width: 40%;
		max-width: 350px;
		height: 90px;
		padding-top: 17px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		background-color: rgba(255, 255, 255, 0.4);
		backdrop-filter: blur(6px);
		box-shadow: 0px 0px 20px #000000;
		font-size: 11px;
		text-align: center;
	}

	#wrapper .footer img {
		width: 45%;
		margin: 7px;
	}
	.exportFilesPage #wrapper .footer img {
		width: 40%;
	}
	
	/* === SYSTEM LOGIN BOX === */
		#systemLoginBox {
			overflow: auto;
			z-index: 2;
			width: 100%;
			height: auto;
			max-width: 700px;
			min-height: 250px;
			max-height: calc(100% - 220px);
			padding: 20px;
			border-radius: 10px;
			background: linear-gradient(rgba(238, 238, 238, 0.95), rgba(255, 255, 255, 0.95));
			box-shadow: 0px 0px 10px #000000;
		}

		#systemLoginBox .column {
			display: inline-block;
			width: 44%;
			padding-left: 20px;
			vertical-align: top;
		}
		#systemLoginBox .column:first-of-type {
			width: 54%;
			border-right: 1px solid #E0E0E0;
			padding-right: 20px;
			padding-left: 0px;
		}

		#systemLoginBox a {
			text-decoration: underline;
			cursor: pointer;
		}

		#systemLoginBox h2, #systemLoginBox h3 {
			margin: 0px;
			margin-bottom: 25px;
			padding: 0px;
			color: #C44444;
			font-family: Verdana, Geneva, Tahoma, sans-serif;
			font-size: 21px;
			font-weight: normal;
			line-height: 24px;
		}
		#systemLoginBox h3 {
			font-size: 17px;
			line-height: 24px;
		}

		#systemLoginBox p {
			margin: 0px;
			margin-bottom: 25px;
			padding: 0px;
			color: #303030;
			line-height: 18px;
		}
				
		#systemLoginBox label {
			display: block;
			width: 100%;
			height: 15px;
			color: #808080;
			font-size: 10px;
			text-transform: uppercase;
		}
		
		#systemLoginBox input:not([type=checkbox]) {
			display: block;
			width: 100%;
			height: 25px;
			margin-bottom: 20px;
			padding-left: 30px;
			border: 1px solid #C0C0C0;
			border-radius: 3px;
			box-shadow: 1px 1px 1px 0px #d7d7d7 inset;
			background-image: url('../images/loginscreen_fieldicons.png');
			background-position: 2px -25px;
			background-repeat: no-repeat;
		}
		#systemLoginBox input[type=text] {
			background-position: 2px 0px;
		}
		#systemLoginBox input.mfaToken {
			background-position: 2px -50px;
		}
		
		#systemLoginBox a {
			display: block;
			clear: none;
			float: left;
			color: #808080;
			font-size: 11px;
			text-decoration: none;
			line-height: 20px;
		}
		#systemLoginBox a:hover {
			color: #000000;
			text-decoration: underline;
		}
		
		#systemLoginBox input[type=button], #systemLoginBox input[type=submit] {
			clear: none;
			float: right;
			width: 100px;
			height: 20px;
			padding: 0px;
			border: 0px;
			border-radius: 3px;
			background-color: #336699;
			background-image: none;
			box-shadow: none;
			color: #FFFFFF;
			text-align: center;
			transition: background-color 0.15s;
		}
		#systemLoginBox input[type=button]:hover, #systemLoginBox input[type=submit]:hover {
			background-color: #5588BB;
		}
		.exportFilesPage #systemLoginBox input[type=submit] {
			width: 100%;
			height: 26px;
		}

		#systemLoginBox .thirdPartyLogin {
			display: block;
			width: 100%;
			height: 27px;
			margin-bottom: 20px;
			padding-left: 30px;
			border: 1px solid #C0C0C0;
			border-radius: 3px;
			line-height: 25px;
			cursor: pointer;
			transition: background-color 0.15s;
		}
		#systemLoginBox .thirdPartyLogin:first-of-type {
			margin-top: 39px;
		}
		#systemLoginBox .thirdPartyLogin:hover {
			background-color: #FFFFFF;
		}
		#systemLoginBox .thirdPartyLogin.microsoft {
			background-image: url('../images/login_thirdpartylogos.png');
			background-size: 16px auto;
			background-position: 7px 5px;
			background-repeat: no-repeat;
		}

		.exportFilesPage #systemLoginBox .errorMessage {
			width: 100%;
			padding: 15px;
			background-color: #C44444;
			border-radius: 3px;
			color: #FFFFFF;
			font-weight: bold;
		}

	/* === CHOOSE ROLE === */
		.systemChooseRoleBox, .systemChooseRoleBox li {
			margin: 0px;
			padding: 0px;
			list-style: none;
		}
		
		.systemChooseRoleBox {
			width: 50%;
			margin-left: auto;
			margin-right: auto;
			margin-top: 30px;
		}
		
		.systemChooseRoleBox li {
			width: 100%;
			height: 35px;
			margin: 20px;
			margin-left: 0px;
			padding-left: 10px;
			border: 1px solid #808080;
			border-radius: 3px;
			background-color: #EEEEEE;
			font-size: 12px;
			line-height: 35px;
			cursor: pointer;
		}
		.systemChooseRoleBox li:hover {
			background-color: #5588BB;
			color: #FFFFFF;	
		}
		
		.systemChooseRoleBox li strong {
			font-size: 13px;
		}