
/*:root {
		--body-bg: #d3eaf5;
	--body-bg: linear-gradient(170deg, #d3eaf5 0%, #aec7d3 100%);
}
*/
html {
	min-height: 100%;
}

.bg-color {
/*	background: var(--body-bg);*/
/*	background: #d3eaf5; */
	background: linear-gradient(170deg, #d3eaf5 0%, #aec7d3 100%);
}

.bg-white {
	background: #ffffff;
}


a {
	text-decoration: none;
	color: #009EE0;
}

	a:hover {
		text-decoration: underline;
	}


.container {
	padding: 20px 40px 40px 40px;
	box-shadow: 0 0.2rem 1.3rem rgba(0, 0, 0, 0.3);
}
	.container.max-w-sm {
		max-width: 600px;
	}
	.container.max-w-xs {
		max-width: 400px;
	}

	/* Bij kleinere schermen moet de marge 10px worden */
	@media (max-width: 600px) {
		.container {
		padding: 10px 20px 20px 20px;
	}
}

.img-login-holder {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 0;
	margin: 0;
	margin-inline: -10px;
}
	.img-login-holder.columns-3 button {
		flex: 1 1 calc(33.3333% - 20px);
		max-width: calc(33.3333% - 20px);
	}

	.img-login-holder.columns-5 button {
		flex: 1 1 calc(20% - 20px);
		max-width: calc(20% - 20px);
	}

.img-button {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #d3eaf5;
	border-radius: 50%;
	font-weight: bold;
	font-size: 2.6rem;
	line-height: 0;
	color: #2a4c5d;
}
	.img-button.selected {
		outline: 3px solid black !important;
	}

	.img-button div {
		position: absolute;
		inset: 20%;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}

.img-fluid {
	max-height: 100px;
	width: auto; 
}

.logo {
	position: absolute;
	bottom: 20px; 
	right: 20px;
	max-height: 100px; 
}

/* ==============================================
   Button
   ============================================== */

a {
	--bs-link-color-rgb: 3, 135, 197;
	--bs-link-hover-color-rgb: 2, 106, 155;
}
.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: #0387c5;
	--bs-btn-border-color: #0387c5;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #026a9e; /* Donkere variatie */
	--bs-btn-hover-border-color: #025b8b; /* Donkere variatie */
	--bs-btn-focus-shadow-rgb: 3, 135, 197;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #4da9e1; /* Lichtere variatie */
	--bs-btn-active-border-color: #4da9e1; /* Lichtere variatie */
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #0387c5;
	--bs-btn-disabled-border-color: #0387c5;
}

.btn-icon img {
	max-height: 21px;
	margin-right: 8px;
}

.btn-icon.dropdown-toggle {
	padding-right: 32px;
}

.dropdown-menu {
	padding: 8px;
	border-radius: 12px;
}
.dropdown-item {
	padding-block: 8px;
}
.dropdown-item .avatar {
	max-height: 21px;
	margin-right: 8px;
}

.avatar {
	border-radius: 12px;
	overflow: hidden;
}

.btn-fab {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	padding: 0;
	font-size: 2em;
	border-radius: 50%;
}

/* ==============================================
   Divider
   ============================================== */

.divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin-block: 2em;
	color: var(--bs-gray-600);
}

	.divider::before,
	.divider::after {
		content: '';
		flex: 1;
		border-bottom: 1px solid var(--bs-gray-400);
	}

	.divider:not(:empty)::before {
		margin-right: 1em;
	}

	.divider:not(:empty)::after {
		margin-left: 1em;
	}

/* ==============================================
   Modal
   ============================================== */

.modal-header {
	padding-top: 40px;
	padding-inline: 50px;
	border-bottom: 0;
}
.modal-body {
	padding-bottom: 40px;
	padding-inline: 50px;
}

/* ==============================================
   Input display
   ============================================== */

.input-display {
	border: 4px solid #d3eaf5;
	display: flex;
	justify-content: space-between;
	padding: 8px;
	padding-inline: 20px;
	margin-bottom: 20px;
	border-radius: 30px;
	min-height: 50px;
	margin-inline: 20%;
}

.input-display-values {
	display: flex;
	gap: 8px;
}

	.input-display-values .img-holder {
		display: inline-block;
		width: 30px;
		height: 30px;
		margin-block: -2px;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}