body {
	font-family: 'Open Sans';
	background: #f2f5fb;
}
ul.dropdown-menu.show {
	 width: 250px !important;
}
	.blurred-amount {
	position: relative;
}
.blur-text {
	filter: blur(5px);
	transition: filter 0.3s ease;
}
.clear-text {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.blurred-amount:hover .blur-text {
	filter: blur(0);
}
.blurred-amount:hover .clear-text {
	opacity: 1;
}

.nav-link:focus, .nav-link:hover {
	color: white !important;
}
.color-red {
	color: red;
}
.timer-sticky {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: 1000;
}
.sidebar-search {
	padding: 15px;
}

.sidebar-search .form-control {
	background-color: rgba(255,255,255,0.1);
	border: none;
	color: #fff;
}

.sidebar-search .form-control::placeholder {
	color: rgba(255,255,255,0.5);
}

.sidebar-search .btn-outline-success {
	color: #fff;
	border-color: #fff;
}

.sidebar-search .btn-outline-success:hover {
	background-color: #fff;
	color: #343a40;
}
.timer-icon {
	margin-right: 5px;
}
.label-status {
	 padding: 5px 10px;
	 color: #fff;
	 border-radius: 5px;
	 font-size: 14px;
	 background-color: #6c757d; /* Grijs */

}
.status-vragenlijst-verstuurd {
	background-color: #28a745; /* Groen */
}
.status-afgerond {
	 background-color: #28a745; /* Groen */
}
.status-wachten-feedback {
	 background-color: #17a2b8; /* Blauw */
}
.status-gepauzeerd {
	 background-color: #ffc107; /* Geel */
}
.status-open {
	 background-color: #dc3545; /* Rood */
}
.status-started {
	 background-color: #86000c; /* Rood */
}
.project_detail h3 {
	border-left: 3px solid #ed6f85;
	padding-left: 10px;
	font-size: 21px;
	font-weight: bold;
}
.btn-primary {
	background: #002942;
	border: 1px solid #002942;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 600;
	padding: 3px 7.5px !important;
}
 .label-onderhoud {
	  color: white;
	  background-color: blue;
	  padding: 2px 8px;
	  border-radius: 5px;
	  font-size: 0.9em;
 }
 .label-nieuw {
	  color: white;
	  background-color: green;
	  padding: 2px 8px;
	  border-radius: 5px;
	  font-size: 0.9em;
 }
/* Stijl voor de custom checkbox */
.checkbox-container {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	user-select: none;
}

/* Verberg de standaard checkbox */
.checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Creëer een custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 5px;
}

/* Wanneer de checkbox is gecheckt */
.checkbox-container input:checked ~ .checkmark {
	background-color: #04AA6D;
}

/* Creëer het checkmark/afvink icoon */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Toon het checkmark icoon wanneer de checkbox is gecheckt */
.checkbox-container input:checked ~ .checkmark:after {
	display: block;
}

/* Stijl het checkmark icoon */
.checkbox-container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		 max-width: 1500px !important;
	}
}
.center-nav-items {
	display: flex;
	justify-content: center;
	width: 100%;
}
.dashboard-user-column {
	padding: 5px;
	background-color: white;
	/* border: 1px solid lightgrey; */
	border-radius: 20px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.dashboard-item-column {
	padding: 25px;
	background-color: white;
	/* border: 1px solid lightgrey; */
	border-radius: 20px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.dashboard-item-column h2 {
	font-size: 40px;
	font-weight: bold;
	color: #002942;
}
.dashboard-item-column small {
	font-size: 13px;
	color: grey;
}
.dashboard {
	display: flex;
	justify-content: space-around;
	margin-bottom: 20px;
}
.dashboard-item {
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.dashboard h3 {
	font-size: 18px;
	
}

// layout v2
.navbar {
	background-color: #fff; /* Assuming a white background */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adding some shadow for depth */
  }

  .navbar-brand img {
	height: 40px; /* Adjust the size as needed */
  }

  .nav-link {
	color: #fff; /* Dark grey color for the text */
  }
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
	color: #fff;
	border-bottom: 3px solid #80d0c7;
	border-radius: 3px;
}
  .nav-link:hover {
	color: #fff; /* Slightly darker color on hover */
  }

  .bi {
	font-size: 1.25rem; /* Icon size */
	color: white; /* Icon color */
	fill: white; /* Icon fill color */
	filter: brightness(0) invert(1) brightness(2);
  }
  .bi-black {
	  font-size: 1.25rem; /* Icon size */
	  color: black; /* Icon color */
	  fill: black; /* Icon fill color */
	  
	}

  .dropdown-toggle::after {
	display: none; /* Hide the default caret icon */
  }

  .navbar-nav .dropdown-menu {
	right: 0; /* Align dropdown to the right */
	left: auto;
  }

  .rounded-circle {
	width: 32px; /* Profile image size */
	height: 32px;
  }
// einde layout v2


// LOGIN CSS
.content {
  padding: 7rem 0; }

h2 {
  font-size: 20px; }

.half, .half .container > .row {
  height: 100vh;
  min-height: 700px; }

@media (max-width: 991.98px) {
  .half .bg {
	height: 200px; } }

.half .contents {
  background: #f6f7fc; }

.half .contents, .half .bg {
  width: 50%; }
  @media (max-width: 1199.98px) {
	.half .contents, .half .bg {
	  width: 100%; } }
  .half .contents .form-control, .half .bg .form-control {
	border: none;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	height: 54px;
	background: #fff; }
	.half .contents .form-control:active, .half .contents .form-control:focus, .half .bg .form-control:active, .half .bg .form-control:focus {
	  outline: none;
	  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); }

.half .bg {
  background-size: cover;
  background-position: center; }

.half a {
  color: #888;
  text-decoration: underline; }

.half .btn {
  height: 54px;
  padding-left: 30px;
  padding-right: 30px; }

.half .forgot-pass {
  position: relative;
  top: 2px;
  font-size: 14px; }

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px; }
  .control .caption {
	position: relative;
	top: .2rem;
	color: #888; }

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px; }

.control--radio .control__indicator {
  border-radius: 50%; }

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc; }

.control input:checked ~ .control__indicator {
  background: #fb771a; }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #fb8633; }

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none; }

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }

.control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff; }

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b; }

.control--checkbox input:disabled:checked ~ .control__indicator {
  background-color: #7e0cf5;
  opacity: .2; }

// END LOGIN CSS

.status-started {
	 background-color: #8bc34a; /* Lichtgroen */
	 color: white;
}
.label-status {
	padding: 3px 7px;
	border-radius: 3px;
	font-size: 14px;
}

.status-in-behandeling {
	 background-color: #2196f3; /* Blauw */
	 color: white;
}

.status-vragenlijst-niet-ingevuld {
	 background-color: #f44336; /* Rood */
	 color: white;
}

.status-actie-video-afspraak {
	 background-color: #ff9800; /* Oranje */
	 color: white;
}

.status-videogesprek-ingepland {
	 background-color: #03a9f4; /* Lichtblauw */
	 color: white;
}

.status-videolink-verstuurd {
	 background-color: #9c27b0; /* Paars */
	 color: white;
}

.status-spoed-concept {
	 background-color: #d32f2f; /* Felrood */
	 color: white;
}

.status-feedback-verwerken {
	 background-color: #ffeb3b; /* Geel */
	 color: black;
}

.status-wachten-feedback {
	 background-color: #9e9e9e; /* Grijs */
	 color: white;
}

.status-afgerond {
	 background-color: #4caf50; /* Groen */
	 color: white;
}

.status-default {
	 background-color: #e0e0e0; /* Standaard grijs */
	 color: black;
}
.requester-info, .ticket-comments {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
}
.requester-info h2, .ticket-comments h2 {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.comment {
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}
.ticket-comments, .requester-info {
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
}
.ticket-comments .comment {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e1e1e1;
}

.ticket-comments .comment:last-child {
	border-bottom: none;
}
.ticket-comments h2, .requester-info h2 {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.ticket-comments p, .requester-info p {
	color: #666;
	font-size: 14px;
	line-height: 1.4;
}
.dashboard {
	display: flex;
	justify-content: space-around;
	margin-bottom: 20px;
}
.dashboard-item {
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.label {
  padding: 5px;
  border-radius: 5px;
  color: white;
  display: inline-block;
}

.label-open {
  background-color: #f39c12; /* orange */
}

.label-pending {
  background-color: #f1c40f; /* yellow */
}

.label-solved {
  background-color: #2ecc71; /* green */
}

.label-closed {
  background-color: #34495e; /* navy */
}

.dashboard h3 {
	font-size: 18px;
}
.alert-blue {
	color: #004085;
	background-color: #cce5ff;
	border-color: #b8daff;
}
.sidebar {
	background: #2a3042;
	bottom: 0;
	box-shadow: 0 0.75rem 1.5rem rgba(18,38,63,.03);
	margin-top: 0;
	padding-top: 20px;
	position: fixed;
	top: 0;
	width: 250px;
	z-index: 1001;
}
li.nav-item {
	display: block;
	font-size: 13px;
	padding: 0.325rem 0.5rem;
	position: relative;
	transition: all .4s;
}
.dropdown-menu  li.nav-item a {
	color: #002942;
}
.dropdown-menu .navbar .bi {
	color: #002942 !important;
}
.card {
	box-shadow: 0 0.75rem 1.5rem rgba(18,38,63,.03);
	margin-bottom: 24px;
	border: 1px solid transparent;
}
.card-title {
	color: #343a40;
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 7px;
}
button.btn-sm.btn-rounded.btn.btn-primary.resendInvoice {
	border-radius: 30px;
	padding: 0px 2px;
	font-size: 14px !important;
}
.btn-sm {
	 margin-right: 5px;
}
.btn-green {
	background: green;
	color: white;
	width: 10px;
	height: 10px;
}
.readMoreButton {
	background: transparent;
	border-color: transparent;
	padding: 0;
	margin: 0;
}
  .task-completed {
	text-decoration: line-through; /* Dit zal een doorstreping toepassen */
	opacity: 0.6; /* Maakt de tekst lichter om aan te geven dat het afgerond is */
}