/* OmniBase Created by CalvinW */

/* Global elements */
:root {
  --lightgray: #3f3f3f;
  --background: #f2f4ff;
  --primary-color: #9050cf;
  --background-auth: #f2f4ff;
  --background-auth-dark: #d6d8e0;
  --text-color: #60229f;
  --primary-color-dark: #531e8c;
  --info: #0d6efd;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --border-color: #e1e1e1;
  --tr: all 0.5s ease 0s;
	--ch1: #05478a;
	--ch2: #0070e0;
	--cs1: #005e38;
	--cs2: #03a65a;
	--cw1: #c24914;
	--cw2: #fc8621;
	--ce1: #851d41;
	--ce2: #db3056;
}

code {
  background-color: var(--border-color);
  padding: 3px;
}

html {
  font-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
	font-size: 67px;
	color: #60229f;
	letter-spacing: -2px;
	font-weight: 600;
	line-height: 60px;
	margin-top: 0px;
}

a {
  text-decoration: none !important;
  color: var(--primary-color-dark) !important;
}

body {
  font-family: "Montserrat", sans-serif !important;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: var(--background-auth) !important;
  margin: 0;
  padding: 0;
	background-image: url(../images/knight_bg.svg);
  background-position: bottom;
  background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.no-bg {
	background: none !important;
}

/* Auth elements */
.login-input {
	border-radius: 15px;
	display: inline-flex;
	padding-bottom: 15px;
}

.login-input-wrapper {
	background-image: url('../images/form-input.svg');
	background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  max-width: 45px;
  min-height: 45px;
  min-width: 45px;
	align-items: center;
	border-radius: 7px;
}

.login-input-wrapper img {
	max-width: 45px;
}

.auth.form-input {
	height: 30px;
  padding: 10px;
  border: 0px;
	width: 100%;
}

.auth.form-input:focus {
	outline: none;
	border: none;
}

.dash.form-input {
	height: 45px;
  padding: 10px;
  border: 0px;
	width: 100%;
}

.dash.form-input:focus {
	outline: none;
	border: none;
}

.auth.formsubmit {
  background-color: #521d87;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  color: white;
  margin-top: 15px !important;
}

.auth.formsubmit:hover {
  background-color: var(--primary-color-dark);
}

.auth.container {
  display: flex;
  z-index: 1;
  display: flex;
  height: 100vh;
  width: 100vw;
}

.auth-left {
  z-index: 2;
  width: 50%;
  height: 100%;
	display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.auth-right {
  z-index: 2;
  width: 50%;
  height: 100%;
  background-image: url('../images/achtergrond.png');
  background-size: cover; /* Ensure the background image covers the entire element */
	display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
}

.auth-right img {
	float: left;
	max-width: 55%;
}

.login-box {
	background-color: white;
	border-radius: 20px;
	padding: 1.78rem;
	width: 100%;
	text-align: center;
}

.login-container {
	width: 50%;
}

.sub-title {
	font-size: 16px;
	color: #60229f;
}

.auth.body {
  background-color: var(--background) !important;
}

.logo {
  max-height: 100%;
  max-width: 60%;
}

.auth.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

small {
  margin-top: 15px;
  color: var(--text-color);
  font-size: 9px;
}

small a {
  color: var(--info);
}

.home-container {
  padding: 40px 25px 20px 20px;
  overflow-x: hidden;
	background-color: transparent !important;
}

.text-dark {
  color: #521d87;
}

small .text-dark {
	float: center;
}

.col-md-5 {
  padding-bottom: 10px;
}

/* Toast announcements */
@property --bg-help {
	syntax: '<percentage>';
	inherits: false;
	initial-value: -10%;
}

@property --bg-success {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 145%;
}

@property --bg-warning {
	syntax: '<percentage>';
	inherits: false;
	initial-value: -55%;
}

@property --bg-error {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 112%;
}

@property --bsc {
	syntax: '<color>';
	inherits: false;
	initial-value: red;
}

.custom-toast-panel {
	position: fixed;
  bottom: 20px;
  right: 20px;
  margin: 10px 0;
	z-index: 9999;
}

.custom-toast-item {
	max-height: 25rem;
	transition: var(--tr);
	position: fixed;
	right: 20px;
	bottom: 20px;
	margin: 10px 0;
	z-index: 9999;
	animation: show-toast 5s ease;
}

@keyframes show-toast {
    10%, 25% { max-height: 15rem; opacity: 1; }
}

.custom-toast {
	background: #fff;
	color: #f5f5f5;
	padding: 1rem 2rem 1rem 3rem;
	text-align: center;
	border-radius: 1rem;
	position: relative;
	font-weight: 300;
	margin: 1rem 0;
	text-align: left;
	max-width: 16rem;
	transition: var(--tr);
	opacity: 1;
	border: 0.15rem solid #fff2;
	box-shadow: 0 0 1.5rem 0 #1a1f4360;
}

.custom-toast:before {
	content: "";
	position: absolute;
	width: 0.5rem;
	height: calc(100% - 1.5rem);
	top: 0.75rem;
	left: 0.5rem;
	z-index: 0;
	border-radius: 1rem;
	background: var(--clr);
}

.custom-toast h3 {
	font-size: 1.2rem;
	margin: 0;
	line-height: 1.35rem;
	font-weight: 600;
	position: relative;
	color: var(--clr);
}

.custom-toast p {
	position: relative;
	font-size: 0.95rem;
	z-index: 1;
	margin: 0.25rem 0 0;
	color: #595959;
	line-height: 1.3rem;
}

.custom-toast-close {
	position: absolute;
	width: 1.35rem;
	height: 1.35rem;
	text-align: center;
	right: 1rem;
	cursor: pointer;
	border-radius: 100%;
}

.custom-toast-close:after {
	position: absolute;
	font-family: 'Varela Round', san-serif;
	width: 100%;
	height: 100%;
	left: 0;
	font-size: 1.8rem;
	content: "+";
	transform: rotate(-45deg);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #595959;
	text-indent: 1px;
}

.custom-toast-close:hover:after {
	background: var(--clr);
	color: #fff;
}

.custom-toast-item.success {
	animation-delay: 2s;
}

.custom-toast-item.warning {
	animation-delay: 1s;
}

.custom-toast-item.error {
	animation-delay: 0s;
}

.custom-toast.help {
	--bg: var(--ch1);
	--clr: var(--ch2);
	--brd: var(--ch3);
}
.icon-help:after {
	content: "?";
}

.custom-toast.success {
	--bg: var(--cs1);
	--clr: var(--cs2);
	--brd: var(--cs3);
}

.icon-success:after {
	content: "L";
	font-size: 1.5rem;
	font-weight: bold;
	padding-bottom: 0.35rem;
	transform: rotateY(180deg) rotate(-38deg);
	text-indent: 0.1rem;
}

.custom-toast.warning {
	--bg: var(--cw1);
	--clr: var(--cw2);
	--brd: var(--cw3);
}

.icon-warning:after {
	content: "!";
	font-weight: bold;
}

.custom-toast.error {
	--bg: var(--ce1);
	--clr: var(--ce2);
	--brd: var(--ce3);
}

.icon-error:after {
	content: "+";
	font-size: 2.85rem;
	line-height: 1.2rem;
	transform: rotate(45deg);
}

.custom-toast a {
	color: var(--clr);
}

.custom-toast a:hover {
	color: var(--bg);
}

.custom-toast-icons {
	background: #fff;
	padding: 1rem 1rem 1.25rem 1rem;
	display: flex;
	justify-content: space-around;
	border-radius: 1rem;
	gap: 1.5rem;
	width: 100%;
	box-sizing: border-box;
	margin-top: 1rem;
	margin-bottom: 1rem;
	position: relative;
	border: 0.15rem solid #fff1;
	box-shadow: 0 0 1.5rem 0 #1a1f4340;
}

.custom-toast-icons:before {
	position: absolute;
	width: calc(100% + 0.3rem);
	height: calc(100% + 0.25rem);
	--bg-help: 45%;
	--bg-success: 45%;
	--bg-warning: 45%;
	--bg-error: 45%;
	--bsc: #fff0;
	background: 
		radial-gradient(circle at 14% var(--bg-help), var(--ch1), #fff0 1.5rem), radial-gradient(circle at 38% var(--bg-success), var(--cs1), #fff0 1.5rem), radial-gradient(circle at 62% var(--bg-warning), var(--cw1), #fff0 1.5rem), radial-gradient(circle at 86% var(--bg-error), var(--ce1), #fff0 1.5rem);
	content: "";
	bottom: -0.15rem;
	border-radius: 1rem;
	z-index: 0;
	transition: --bg-help 0.5s ease 0s, --bg-success 0.5s ease 0s, --bg-warning 0.5s ease 0s, --bg-error 0.5s ease 0s, --bsc 0.5s ease 0s;
	box-shadow: 0 0 1.5rem 0 #1a1f4320;
}

.custom-toast-icons:has(label[for=t-help]:hover):before {
	--bg-help: 53%;
	--bsc: var(--ch2);
}
.custom-toast-icons:has(label[for=t-success]:hover):before {
	--bg-success: 53%;
	--bsc: var(--cs2);
}
.custom-toast-icons:has(label[for=t-warning]:hover):before {
	--bg-warning: 53%;
	--bsc: var(--cw2);
}
.custom-toast-icons:has(label[for=t-error]:hover):before {
	--bg-error: 53%;
	--bsc: var(--ce2);
}

.custom-toast-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	position: relative;
	background: radial-gradient(circle at 50% 50%, var(--clr) 1.25rem, var(--brd) calc(1.25rem + 1px) 100%);
}

.custom-toast-icon:after {
	font-size: 1.75rem;
}
.icon-success:after {
	font-size: 1.5rem;
	padding-bottom: 0.25rem;
}
.icon-error:after {
	font-size: 2.85rem;
	line-height: 2rem;
	font-weight: 500;
	padding-top: 0.25rem;
	max-height: 2rem;
}

.icon-help,
.custom-toast-item.help {
	--clr: #0070e0;
	--brd: #0070e040;
}

.icon-success,
.custom-toast-item.success {
	--clr: #03a65a;
	--brd: #03a65a40;
}

.icon-warning,
.custom-toast-item.warning {
	--clr: #fc8621;
	--brd: #fc862140;
}
.icon-error,
.custom-toast-item.error {
	--clr: #db3056;
	--brd: #db305640;
}
#t-help:checked ~ .custom-toast-panel .custom-toast-item.help,
#t-success:checked ~ .custom-toast-panel .custom-toast-item.success,
#t-warning:checked ~ .custom-toast-panel .custom-toast-item.warning,
#t-error:checked ~ .custom-toast-panel .custom-toast-item.error {
	max-height: 0;
	opacity: 0;
}

input[type=checkbox] {
	display: none;
}

/* Navigatie */
.menu-mobile {
  background-color: white;
  padding: 15px 25px;
  height: 65px;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  color: black;
  position: relative;
}

.menu-mobile-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 15px 25px;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: hidden;
}

.menu-mobile-content span.menu-item {
  color: black !important;
  text-decoration: none;
}

.menu-mobile-content a {
  text-decoration: none;
}

.menu-item-mobile {
  color: black !important;
  font-size: 17px;
  padding: 10px 0;
}

.menu-item-mobile:hover {
  color: gray;
  cursor: pointer;
}

.menu-icon {
  font-size: 27px;
}

.menu-mobile-content.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.navigation {
	display: flex;
	justify-content: space-between;
  background-color: white;
  padding: 15px 25px;
  height: 65px;
}

.menu a {
  text-decoration: none;
}

.menu-left {
  display: flex;
	align-items: center;
}

.menu-right {
  display: flex;
	align-items: center;
	justify-content: flex-end;
}

.logo {
  padding-right: 10px;
}

.logo img {
	height: 25px;
	display: flex;
}

.menu-item {
  display: flex;
  color: black;
  font-size: 14px;
  padding: 10px;
}

.menu-item i {
  font-size: 18px;
  padding-right: 5px;
}

.menu-item:hover, .menu-item i:hover {
  color: gray;
  cursor: pointer;
}

.dropdown-content {
    position: absolute;
    right: 0; /* Align dropdown to the right of the parent */
    top: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    visibility: hidden;
    overflow: hidden; /* Ensure contents don't overflow */
}

.menu-item-dropdown {
  display: flex;
  color: black;
  font-size: 14px;
  padding: 10px;
}

.menu-item-dropdown i {
  font-size: 18px;
  padding-right: 5px;
}

.menu-item-dropdown:hover, .menu-item-dropdown i:hover {
  color: gray;
  cursor: pointer;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Home sectie */
.home-section{
  position: relative;
	height: 100% !important;
  width: 100%;
  transition: all 0.5s ease;
}

.home-section .home-content{
  height: 60px;
  display: flex;
  align-items: center;
  background-color: var(--background-auth);
}

.home-section .home-content .right {
  margin-left: auto;
  padding-right: 40px;
}

.home-section .home-content .bx-menu,
.home-section .home-content .text{
  color: #11101d;
  font-size: 35px;
}

.home-section .home-content .bx-menu{
  margin: 0 15px;
  cursor: pointer;
}

.home-section .home-content .text{
  font-size: 26px;
  font-weight: 600;
}

.search.form-input {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  margin-top: 15px;
  margin-top: 0px;
}

.right {
  float: right;
}

.navigation-reclamaties {
  width: 99%;
  text-align: right;
}

.card {
  border-radius: 15px !important;
  box-shadow: 0 3px 6px rgba(0,0,0,.2);
}

.card-title {
  color: var(--primary-color-dark);
  font-weight: 600;
  font-size: 1.6rem;
}

.card-title-light {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.6rem;
}

.button-leads {
  color: white !important;
  border-radius: 50px;
  background-color: #ff9601;
  padding: 3px 7px;
  align-content: center;
  align-items: center;
  border: none;
}

.profile-form {
  display: grid;
}

.filter-submit {
  background-color: #ff9601;
  border-radius: 50%;
  padding: 5px;
  border: none;
  width: 40px;
  height: 40px;
}

.progress-bar.paars {
  background-color: var(--primary-color);
}

.progress-bar.oranje {
  background-color: #ff9601;
}

.news-title {
  color: var(--primary-color-dark);
  font-size: 23px;
  font-weight: 600;
}

#wallboard {
  padding: 10px;
}

#wallboard-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Full height of the viewport */
}

#api tr td, #api tr th {
  padding: 15px 15px 15px 0px;
}

#api tr:not(:last-child) {
  border-bottom: 1px solid black;
}

.code {
  background-color: rgb(51, 51, 51);
  color: white;
  padding: 15px;
}

#wrapper {
	background-image: url('../images/form-input.svg');
	background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
	border-radius: 15px;
}

.diff-line { 
		padding: 5px;
}
       
.diff-added {
		background-color: #d4f4dd; /* light green */
}

.diff-removed {
		background-color: #f4d4d4; /* light red */
}

#dateFilterForm {
	display: flex;
}

/* Container for the input and label */
.floating-label-group {
  position: relative;
  margin-bottom: 1.5rem;
}

/* The label floats above the input */
.floating-label-group label {
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 12px;
  transition: 0.2s ease all;
  font-size: 16px;
  color: #aaa;
}

/* Input styles */
.floating-label-group input {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  transition: border-color 0.2s;
}

/* When the input is focused, or has text, move the label */
.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label {
  top: 3px;
  left: 15px;
  font-size: 12px;
  color: #333;
}

/* Optional: Add a focus effect */
.floating-label-group input:focus {
  border-color: #007bff;
  outline: none;
}

.badge {
  padding: 5px 10px;
}

.badge.danger {
  background-color: #fc0303;
  color: white;
}

.badge.warning {
  background-color: #fcba03;
  color: black;
}

.badge.success {
  background-color: #04ba34;
  color: white;
}

.badge.bg-tag {
  background-color: #baffc9;
  color: black;
  font-weight: 400;
}

.badge.bg-focusarea {
  background-color: #bdbbed;
  color: black;
  font-weight: 400;
}

.pagination {
  float: right;
}

.filters {
  max-width: 33% !important;
    display: flex;
    justify-content: space-between;
  align-items: center;
}

/* Custom modal style */
.custom-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 1050; /* Ensure it's above other elements */
  justify-content: center;
  align-items: center;
}

/* Modal dialog */
.custom-modal-dialog {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  max-width: 100%;
}

/* Modal header */
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom close button */
.custom-close-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Custom modal body */
.custom-modal-body {
  margin: 20px 0;
}

/* Custom modal footer */
.custom-modal-footer {
  display: flex;
  justify-content: flex-end;
}

/* Buttons */
.btn-open-modal, .btn-close-modal, .btn-save-changes {
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.btn-close-modal {
  background: #6c757d;
}
/* Custom button styling */
.custom-upload-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-upload-button {
  background: transparent; /* Transparent background */
  border: 1px solid gray; /* Gray border */
  color: gray; /* Text and icon color */
  padding: 15px 30px; /* Padding for a bigger button */
  font-size: 16px; /* Text size */
  border-radius: 10px; /* Rounded corners */
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-upload-button:hover {
  background-color: rgba(0, 0, 0, 0.1); /* Light hover effect */
  border-color: black; /* Darker border on hover */
  color: black; /* Darker text and icon color on hover */
}

.custom-upload-button i {
  font-size: 20px;
  margin-right: 10px; /* Space between icon and text */
}

#fileUpload {
  display: none; /* Hide the actual file input */
}

/* Backdrop (optional) */
.custom-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1049;
}

.card-title.supplier {
  font-size: 1.6rem !important;
}

.card-title.rating {
  font-size: 1.2rem !important;
}

/* Mobile CSS */
@media only screen and (max-width: 768px) {

  .navigation {
    display: none;
  }
  
  .menu-account {
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
  }
  
  .menu-mobile {
    display: flex;
  }
  
  .menu-item-account {
    display: flex;
    border-radius: 15px;
    width: 40%;
    text-align: center;
    color: white !important;
    font-size: 17px;
    padding: 10px;
    background-color: black;
  }

  .menu-item-account i {
    font-size: 22px;
    padding-right: 5px;
  }

  .menu-item-account:hover, .menu-item-account i:hover {
    color: gray;
    cursor: pointer;
  }
  
  .home-container {
    max-width: 100%;
    margin: 0 auto;
  }
	
	.wallboard-image {
		display: none !important;
	}
	
	.auth.container {
    display: flex;
    flex-direction: column;
  }
  
  .auth-left {
    z-index: 2;
    height: 30%;
    background-image: url('../images/background.png');
    background-size: inherit; /* Ensure the background image covers the entire element */
    background-position: bottom; /* Center the background image */
  }
  
  .auth-left,
  .auth-right {
    width: 100%;
  }
	
	.login-container h1 {
		padding-bottom: 50px;
		font-size: 43px;
	}
  
  .auth-right {
    justify-content: start;
    padding-top: 75px;
		background-image: none;
  }
	
	.auth-right img {
		display: none;
	}
	
	.auth-right {
		display: none;
	}
	
	.login-box {
		width: unset !important;
	}
	
	.login-container {
    width: 80%;
    margin-top: 430px;
	}
  
  .home-section {
    overflow-x: hidden;
    overflow-y: auto;
  }
	
	#wrapper {
		display: none !important;
	}
	
	#dateFilterForm {
		display: flex;
		flex-direction: row;
	}
	
	.mobile-left {
		display: grid;
	}
	
	.mobile-right {
		display: gird;
	}
	
	.card-body {
		overflow-x: scroll !important;
	}
	
	.table {
		overflow-x: scroll !important;
	}
	
	.mobile-right {
		display: flex;
		align-items: center;
	}
	
	#dagelijksetaken {
		padding-top: 15px;
		padding-bottom: 30px;
	}
	
	#fullscreen-button {
		display: none;
	}
	
	#dash-icon {
		display: none !important;
	}
  
  .filters {
    flex-direction: column;
    align-items: unset !important;
  }
}

@media (max-width: 420px) {
	.sidebar.close .nav-links li .sub-menu{
    display: none;
  }
	
	.wallboard-image {
		display: none !important;
	}
	
	.card-body {
		overflow-x: scroll !important;
	}
	
	.table {
		overflow-x: scroll !important;
	}
}

/* Nieuw dashboard */
.wallboard-container {
    padding: 5px 15px 15px 15px;
    text-align: center;
}

.wallboard-container *, ::after, ::before {
    box-sizing: unset !important;
}

.wallboard-row {
    padding-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.wallboard-column {
    border-radius: 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.inner-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.twelve {
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 14%;
    border-top: 2px #531e8c solid;
    background-color: #ffffff;
}

.twelve:nth-child(2) {
    background-color: #f8f8f8;
}

.hundered {
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-top: 2px #531e8c solid;
    background-color: #ffffff;
}

.hundered:nth-child(2) {
    background-color: #f8f8f8;
}

.sixty {
    padding: 20px;
    width: 22%;
    background-color: #ffffff;
    border-top: 2px #531e8c solid;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fourty {
    padding: 20px;
    width: 40%;
    background-color: #ffffff;
    border-top: 2px #531e8c solid;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thirty {
    padding: 20px;
    width: 22%;
    background-color: #ffffff;
    border-top: 2px #531e8c solid;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.two-third {
    padding: 20px;
    width: 47%;
    background-color: #ffffff;
    border-top: 2px #531e8c solid;
    box-shadow: 0 4px 8px rgba(248, 119, 119, 0.1);
}

.special-item {
    background-color: #ffffff;
    padding: 20px;
    border-top: 2px #531e8c solid;
    border-radius: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 40%;
}

.sixty-right {
    width: 22%;
}

.item-title {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.title-name {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

.title-name::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #531e8c;
    top: 25px;
    left: 3px;
}

.special-item-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

.special-item-title::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #531e8c;
    top: 25px;
    left: 3px;
}

.special-item-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 20px;
}

.converion {
    padding: 8px 0px;
    width: 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

canvas {
    overflow-clip-margin: unset !important;
  overflow: visible;"
}

.converion-left {
    padding: 8px 0px;
    width: 40%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.converion-right {
    padding: 8px 0px;
    width: 60%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.special-item-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.item {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.title {
    font-size: 36px;
    font-weight: 600;
    color: #531e8c;
}

.context {
    font-size: 18px;
    color: #000;
}

.devider {
    height: 1px;
    width: 100%;
    background-color: #A3A6B2;
    opacity: 0.4;
}

.news-slider {
    width: 100%;
    margin: 0 auto;
}

.news-counter {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.news-item {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    padding-bottom: 2px;
}

.news-title {
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    color: #531e8c;
}

.amount {
    bottom: 0;
    text-align: right;
}

.wallboard-row:last-child {
    margin-top: 20px;
}

.dailytasks td {
    padding: 5px 5px 5px 0px;
    font-size: 16px;
}

.dailytasks th {
    text-align: left;
    padding: 5px 5px 5px 0px;
    font-size: 16px;
}

.news-slider.slick-initialized.slick-slider {
    height: 100%;
}

.dynamic-tooltip {
    position: absolute;
    background-color: #531e8c;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.dynamic-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.row {
  display: flex;
  flex-direction: row;
}

/* Adviesdesken */
.desk {
  background-color: white;
  border-radius: 15px !important;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desk-thumbnail {
  max-width: 80px;
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.desk-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.desk-information {
  display: flex;
  flex-direction: column;
}

.desk-title {
  font-size: 22px;
  font-weight: 500 !important;
  color: #8483c4;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 5px;
  color: #444;
}

.accordion-item.active .accordion-content {
  padding: 10px 5px;
}

.ts-wrapper.plugin-remove_button .item {
  display: flex;
  flex-direction: row !important;
}