﻿:root {
  /* Colors */
  --primary: #2484B8;
  --success: #A0CFAC;
  --danger: #a4262c;
  --lightgray: #edebe9;
  --gray: #605E5C;
  --basetext: #333333;
  --fluentprimary: #0078d4;
  --bordergray: #DBD9D8;
  --inputborder: #7E7E7E;
  /* Measurements */
  --navmenuheight: 48px;
  --halfnavmenuheight: 24px;
  --sidemenuwidth: 200px;
  --halfsidemenuwidth: 100px;
  --topmenuheight: 44px;
  --halftopmenuheight: 22px;
  --dropdownheight: 40px;
  /* Font */
  --font-family: var(--kendo-font-family);
}

app {
  display: flex;
  flex-direction: column;
}

body, html {
  margin: 0;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

a:hover {
  text-decoration: none;
}

/* General */

.d-telerik-window-selectie-popup {
  border: none;
}

.d-telerik-window-selectie-popup .d-popup-bottom {
  padding-bottom: 15px;
}

.d-telerik-window-selectie-popup .k-window-content {
  display: flex;
  flex-direction: column;
  padding: 15px;
  padding-bottom: 0px;
}

.d-telerik-window-override {
  transform: none;
  display: initial;
  position: static;
  text-align: start;
  vertical-align: initial;
  margin: 0;
  background: none;
  border: none;
}

  .d-telerik-window-override.d-no-box-shadow {
    box-shadow: none;
  }

.d-hidden {
  visibility: hidden;
}

.d-relative-empty {
  position: relative;
  width: 0;
  height: 0;
}

.d-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.d-display-none {
  display: none;
}

.d-content {
  margin: 20px;
}

/* Problem Notification Bar */

.validation-summary {
  display: flex;
  gap: 5px;
  background-color: white;
  padding: 10px;
  color: black;
  text-align: left;
  border: 1px solid #991212;
  position: sticky;
  top: -15px;
  z-index: 5;
}

.validation-summary-heading {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.blue-circle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2484B8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}

/* Popup */

.d-popup {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 440px;
  height: 330px;
  box-shadow: 0 0 5px 1px #a1a1a1;
  background: white;
  overflow-y: auto;
  padding: 10px;
  position: fixed;
  right: 50vw;
  top: 50vh;
  z-index: 10;
  margin-top: -165px; /* Half Height */
  margin-right: -220px; /* Half Width */
}

.d-popup-title {
  color: var(--basetext) !important;
  font-family: var(--font-family) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.d-popup-text {
  color: var(--basetext);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  margin-top: 12px;
}

.d-popup-text-container {
  width: 100%;
  height: 15rem;
}

.d-popup-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}

  .d-popup-bottom button {
    margin-left: 10px;
  }

.d-popup-button {
  width: 150px;
  height: 30px;
  padding: 0 8px !important;
}

  .d-popup-button .ms-Button-flexContainer .ms-Button-textContainer .ms-Button-label {
    font-family: var(--font-family);
    font-weight: bold;
    font-size: 11px;
  }

/* LoadingPopup */

.d-loading-popup-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.d-loading-popup-text {
  color: var(--basetext);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
}

/* ButtonStrip */

.d-buttonstrip * {
  margin-right: 10px;
}

/* Inputs */

.d-input-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid var(--bordergray);
  margin-top: 5px;
  padding: 0 10px 2px 0px;
}

.d-input-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
}

.d-input-title {
  display: flex;
  color: var(--basetext);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  margin: 6px 0 6px 0;
  width: 140px;
  overflow-wrap: anywhere;
  display: inline-block
}

.d-input-required {
  width: 5px;
  margin-left: 0px;
  color: red;
  display: inline-block
}

.d-input-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
}

.d-input-content-switch {
  margin-top: 6px;
  align-items: center;
}

.d-input-switch {
  display: flex;
  flex-direction: row;
}

.d-input-toggle-state {
  color: var(--basetext);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  margin-left: 5px;
}

/* Style for custom-file-inpu */
.custom-inputfile-input {
  display: none;
}

.custom-inputfile-label {
  background-color: var(--kendo-button-solid-primary-bg, var(--kendo-primary-100, inherit));
  padding: 10px;
  border-radius: 3px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  margin-right: 20px;
  margin-bottom: 0px;
}

.uploaded-file-container {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}

.d-static-value {
  width: 100%;
  font-size: 12px;
  margin-top: 9px;
  margin-left: 9px;
  font-weight: 500;
}

  .d-static-value.align-right {
    display: inline-block;
    text-align: right;
  }

  .d-static-value.align-center {
    display: inline-block;
    text-align: center;
  }


/* Error Popup */
.d-error {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 440px;
  height: 330px;
  box-shadow: 0 0 5px 1px #a1a1a1;
  background: white;
  overflow-y: auto;
  padding: 10px;
  position: fixed;
  right: 50vw;
  top: 50vh;
  z-index: 10;
  margin-top: -165px; /* Half Height */
  margin-right: -220px; /* Half Width */
}

  .d-error.wide {
    width: 800px;
    height: 400px;
    margin-top: -200px; /* Half Height */
    margin-right: -400px; /* Half Width */
  }

.d-error-header {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.d-error-icon {
  color: var(--danger);
  font-size: 1.3rem;
  margin: 2px 10px 0 10px;
}

.d-error-title {
  color: var(--basetext);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.3rem;
  flex-grow: 1;
}

.d-error-header-buttons {
  align-self: flex-end;
  height: 100%;
}

.d-error-messages {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 100%;
  padding: 0 10px 0 10px;
  margin-bottom: 10px;
  overflow-y: auto;
}

.d-error-text {
  color: var(--basetext);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  margin-top: 5px;
}

.d-error-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

/* Blazor Error */

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

  #blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
  }

/* Grid */

.d-grid-empty {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.d-grid-empty-content {
  display: flex;
  flex-direction: column;
  align-items: center
}

.d-grid-empty-icon {
  font-size: 30px;
  opacity: 75%;
  color: var(--basetext);
}

.d-grid-empty-text {
  color: var(--basetext);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
}

.d-toggle-div {
  display: flex;
  flex-direction: row;
  margin-top: 1px;
}

.d-toggle-text {
  margin-left: 5px;
}

/*Grid Span*/
.grid-column-span {
  border-radius: 5px;
  display: inline-block;
  padding: 0 4px;
  width: 100%;
}

.grid-column-span-yellow {
  background-color: #f9e904;
}

.grid-column-span-red {
  background-color: #ed7680;
}

.grid-column-span-green {
  background-color: #00cc6a;
}

.grid-column-span-orange {
  background-color: #ffb900;
}

.grid-column-span-blue {
  background-color: #deecf9;
}

.grid-column-span-light-blue {
  background-color: #8ec2eb;
}

/* Dropdown */

.d-dropdown-row {
  width: 100%;
  background: white;
  top: calc(var(--navmenuheight) + var(--topmenuheight));
  border-bottom: 1px solid var(--bordergray);
}

.d-page-title {
  height: 36px;
  font-weight: 700;
  font-size: 16px;
  padding-top: 8px;
  margin-left: 10px;
}

.d-dropdown-custom-icon-img {
  width: 33px;
  height: 18px;
}

/* NavMenu */
.d-navmenu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: var(--navmenuheight);
  width: 100%;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 3px #00000029;
  border-bottom: 3px solid #006098;
}


.d-navmenu-brand {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 8px;
}

.d-navmenu-brand-item-divider {
    border-left: 1px solid #676767;
    height: 20px;
    padding-right: 12px;
}

.d-navmenu-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 48px;
}

.d-navmenu-icon {
  font-size: 14px;
  color: #3A3A3A;
}

  .d-navmenu-icon:hover {
      color: #1c527f;
  }

.d-navmenu-link-help {
  font-size: 25px;
  margin-bottom: 3px;
}

.d-navmenu-name {
  color: #676767;
  font-family: var(--font-family);
  font-weight: 650;
  font-size: 12px;
  padding-right: 13px
}

.d-navmenu-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.d-navmenu-organisatielogo {
  width: 100px;
}

.d-navmenu-griplogo {
    width: 30px;
}

.d-navmenu-icons-wrapper {
  display: flex;
  gap: 5px;
  margin-right: 15px;
  padding: 0 5px;
  height: 48px;
  align-items: center;
  cursor: pointer;
}

.d-sidemenu-main-wrapper {
  margin-top: var(--navmenuheight);
  height: calc(100vh - var(--navmenuheight));
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

/* SideMenu */
.d-sidemenu-wrapper {
  background-color: var(--kendo-neutral-20);
  border-right: 1px solid var(--kendo-neutral-40);
  overflow-y: auto;
  flex-shrink: 0;
  padding-bottom: 1.5rem;
}

.d-sidemenu-versie-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  position: fixed;
  bottom: -15px;
  background-color: var(--kendo-neutral-20);
  width: inherit;
  padding: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-sidemenu {
  width: var(--sidemenuwidth);
}

  .d-sidemenu.collapsed {
    width: 44px;
    overflow-x: hidden;
  }

    .d-sidemenu.collapsed .d-sidemenu-group-header {
      display: none;
    }

    .d-sidemenu.collapsed .d-sidemenu-group {
      margin: 0;
    }

      .d-sidemenu.collapsed .d-sidemenu-group.collapsed .d-sidemenu-link {
        display: flex;
      }

    .d-sidemenu.collapsed .d-sidemenu-link-text {
      display: none;
    }


.d-sidemenu-margin-top-20px {
  width: 100%;
  height: 20px;
}

.d-sidemenu-collapse {
  cursor: pointer;
  margin: 8px 0 0 8px;
}

.d-sidemenu-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0 20px 0;
}

.d-sidemenu-group-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.d-sidemenu-group-title {
  color: #006098;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 0 16px;
  flex-grow: 1;
}

.d-sidemenu-group-icon {
  font-size: 10px;
  margin-right: 20px;
  color: #006098;
  user-select: none;
}

.d-sidemenu-group.collapsed .d-sidemenu-link {
  display: none;
}

.d-sidemenu-link {
  width: 99%;
  height: 35px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

  .d-sidemenu-link.active {
    background-color: #FFFFFF;
  }

  .d-sidemenu-link:hover {
    background-color: #FFFFFF;
  }

.d-sidemenu-link-select-bar {
  height: 21px;
  border: 2px solid #2592C6;
  border-radius: 24%;
  background: #2592C6;
  background: #2592C6;
  margin-left: 4px;
  visibility: hidden;
  user-select: none;
}

.d-sidemenu-link.active .d-sidemenu-link-select-bar {
  visibility: visible;
}

.d-sidemenu-link-icon {
  font-size: 14px;
  margin-left: 6px;
  color: #323130;
  user-select: none;
}

.d-sidemenu-link-text {
  color: #323130;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  margin: 0 0 0 10px;
  user-select: none;
}

.d-sidemenu-dropdown {
  min-width: var(--sidemenuwidth);
  width: 300px;
  position: absolute;
  display: none;
  background: var(--kendo-neutral-20);
  z-index: 1000;
  overflow-y: auto;
}

.d-hover-menu-item {
  background: var(--kendo-neutral-20);
  width: var(--sidemenuwidth);
  position: absolute;
  display: none;
  z-index: 1000;
}

/* Side menu search */

.d-sidemenusearch-input {
  margin-right: 10px;
}

  .d-sidemenusearch-input .k-textbox {
    font-size: 12px;
  }

.d-sidemenusearch-popup {
  max-height: 400px;
  width: 300px;
  background: var(--kendo-neutral-20);
  display: none;
  position: absolute;
  z-index: 1000;
  overflow-y: auto;
}

/* General content */
.d-datacontent {
  padding: 15px;
  margin: 0px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-top: 1px solid var(--kendo-neutral-40);
}

  .d-datacontent.nopadding {
    padding: 0px;
  }

  .d-datacontent:has(> .d-datacontent) {
    padding: 0px;
  }

/* Tab control */
.d-tabstrip {
  background: var(--kendo-body-bg);
  padding: 0 0.25rem 0 1rem;
  font-family: var(--kendo-font-family);
  font-size: 1rem;
}

.d-tab-item-disabled {
  opacity: 0.7;
}

.d-tab-dropdown {
  left: 5%;
  position: absolute;
  top: 0;
  white-space: nowrap;
  z-index: 1000;
  max-width: 20rem;
}

.d-tab-dropdown-visible {
  display: flex;
  flex-direction: column;
}

.d-tab-dropdown-hidden {
  display: none;
}

.d-tab-dropdown-title {
  padding: 8px 10px 0px 10px;
}

  .d-tab-dropdown-title hr {
    margin: 10px 5px 10px 5px;
  }

.d-tab-dropdown .d-nav-link {
  padding: 0px 10px 8px 10px;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  width: 100%;
}

  .d-tab-dropdown .d-nav-link span {
    padding-top: 2px;
  }

.d-tab-dropdown .d-nav-link-text {
  font-size: 12px;
}

/* MAIN start */
.d-main-wrapper {
  flex-grow: 1;
  overflow: hidden;
  background: 
    linear-gradient(120deg, rgba(241, 251, 254, 0.7) 0%, rgba(203, 235, 245, 0.7) 100%, rgba(0, 0, 0, 0.7) 100%);
  background-size: contain;
  background-position: center; 
  background-repeat: no-repeat; 
  min-height: 90vh;
}

.d-main {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.d-main-bg-image {
  background-image: var(--background-image);
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: bottom right;
}
/* MAIN end */

/* ADDFORM start*/

/* Menu bar */
.d-menu-bar {
  display: flex;
  flex-direction: row;
  width: 100%;
}

/* Top Menu */

.d-top-row {
  border-bottom: 1px solid var(--kendo-neutral-40);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--kendo-body-bg);
}

.d-top-row:has(+ .d-datacontent) {
  border-bottom: none;
}

.dropdown-icon {
  font-size: 12px;
}

.d-topmenu-button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 10px;
  user-select: none;
  cursor: pointer;
}

  .d-topmenu-button:hover {
    background-color: #EFEFEF;
  }

  .d-topmenu-button:active {
    background-color: #E4E7EB;
  }

.d-topmenu-button-icon {
  font-size: 16px;
}

.d-topmenu-button-text {
  color: #201f1e;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  margin-left: 10px;
}

.d-topmenu-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  z-index: 1000;
}

  .d-topmenu-dropdown.d-expanded {
    display: flex;
  }

.d-add-form {
  background-color: white;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  box-shadow: 10px 10px 10px 10px #777777;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  transition: transform 0.1s linear;
  padding: 20px 20px 10px 20px;
  z-index: 1;
  overflow-y: auto
}

.d-fast-edit-form-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}

  .d-fast-edit-form-buttons button {
    margin-left: 10px;
  }


@media (min-width: 769px) {
  .d-add-form {
    width: 590px;
  }

    .d-add-form.wide {
      width: 900px;
    }
}

@media (max-width: 768px) {
  .d-add-form {
    width: 340px;
  }

    .d-add-form.wide {
      width: 100%;
    }
}

@media (max-width: 576px) {
  .d-add-form {
    width: 100%;
  }
}

.d-add-form.open {
  transform: translateX(0);
}

.d-add-form-input-data {
  display: flex;
  flex-direction: column;
  margin: 0 0 25px 0;
}

/* AddForm Text */

.d-add-form-title-primary {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 28px;
}

.d-add-form-title-secondary {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 14px;
}

/* AddForm Main */

.d-add-form-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.d-add-form-close {
  font-size: 10px;
  color: black;
}


/* Override FluentValidation validatie melding */
.validation-message {
  color: red;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 2px;
  margin-top: 5px;
}


.k-dropdown.dropdownStyle {
  border-radius: 150px;
}

.back {
  border-style: none solid none none;
  border-color: var(--kendo-neutral-40);
  border-width: 1px;
}

  .back .d-topmenu-button-text {
    margin-left: 0px;
  }

.nav-profile-photo {
  width: 36px;
}

.ms-Dropdown .customBorder {
  border-width: 0px !important;
  border-style: none !important;
  border-color: #FFFFFF !important;
}

.dropdownLink {
  color: #000;
}

/**/

.d-item-identification {
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: .5rem 0 .5rem .5rem;
  background: var(--kendo-body-bg);
  font-family: var(--kendo-font-family);
}

.d-item-identification + .d-tabstrip {
  margin-top: -.5rem;
}

.d-item-identification-icon {
  font-size: 20px;
  margin: 5px 5px 5px 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #2484B8;
  color: white;
  border-radius: 20px;
  text-align: center;
}

.d-item-identification-titles {
  display: flex;
  flex-direction: column;
  position: relative;
}

  .d-item-identification-titles h4 {
    font-size: 20px;
    margin-bottom: 2px;
    white-space: nowrap;
  }

  .d-item-identification-titles h6 {
    font-size: 14px;
    white-space: nowrap;
  }


/*Pivot Styling*/
/* Style the links inside the navigation bar */
.d-nav-link {
  border-style: none none solid none;
  border-bottom-color: #fff;
  border-bottom-width: 3px;
  font-weight: 400;
  cursor: pointer;
  color: #000;
}

.selectbar {
  background-color: #FFFFFF;
  border-style: none none solid none;
  border-bottom-color: var(--kendo-primary-110);
  border-bottom-width: 2px;
  border-radius: 2px;
  padding-top: 6px;
}

.noselectbar {
}

.d-nav-link-text {
  color: #323130;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  margin: 0 0 0 15px;
}


.d-input-dateinput-textbox .k-dateinput-wrap {
  width: 220px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
}

.d-input-dateinput-textbox .k-focus.k-dateinput-wrap {
  border: 1px solid var(--inputborder);
  border-width: 1px;
  box-shadow: none;
}

.d-input-dateinput-textbox .k-dateinput-wrap .k-input {
  width: 220px;
  height: 35px;
  text-align: right;
  padding-bottom: 8px;
}

.d-offset {
  margin-left: 0.5%;
}

.d-offset-top {
  margin-top: 3%;
}

.d-pivot-drop-down {
  position: relative;
}

.menu > ul > li > ul {
  position: absolute;
  /* top: 140px;
    left: 450px;*/
  z-index: 9999;
  background-color: #fff;
}

.d-menu-height {
  height: 10px;
}

/* Workflow control */

.d-workflowcontrol {
  display: flex;
  flex-direction: row;
  height: 55px;
}

.d-workflow-header {
  min-width: 200px;
  margin-top: 15px;
  height: 40px;
  background-color: rgb(219, 57, 35);
}

.d-workflow-header-text {
  font-weight: 600;
  font-size: 14px;
  color: rgb(255,255,255);
  padding: 0 14px 0 14px;
}

.d-workflow-steps-bar {
  display: flex;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
}

.d-workflow-step {
  margin-top: 15px;
  height: 40px;
  background-color: rgb(239,239,239);
  flex-grow: 1;
  position: relative;
}

.d-workflow-step-link {
  position: absolute;
  bottom: 0%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, 0);
  display: flex;
}

  .d-workflow-step-link.active {
    background-color: rgb(216,216,216);
  }

    .d-workflow-step-link.active .d-workflow-step-text {
      font-weight: 600;
    }

.d-workflow-step-text {
  align-self: flex-end;
  padding: 0 14px 0 14px;
}

.d-workflow-line-left {
  left: 0%;
  height: 4px;
  width: 50%;
  position: absolute;
  z-index: 1;
}

.d-workflow-line-right {
  left: 50%;
  height: 4px;
  width: 50%;
  position: absolute;
  z-index: 1;
}

.d-workflow-line-light {
  background-color: rgb(226,226,226);
}

.d-workflow-line-dark {
  background-color: rgb(179,179,179);
}

.d-workflow-line-progress {
  background-color: rgb(219,57,35);
}

.d-workflow-circle {
  width: 28px;
  height: 28px;
  border-style: solid;
  border-width: 4px;
  border-color: rgb(179,179,179);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-14px, 0);
  top: -12px;
  background-color: rgb(255,255,255);
  z-index: 1;
}

  .d-workflow-circle.active {
    border-color: rgb(219,57,35);
  }

    .d-workflow-circle.active:after {
      position: absolute;
      content: "";
      border-style: solid;
      border-color: rgb(219, 57, 35);
      border-radius: 50%;
      background-color: rgb(219, 57, 35);
      width: 10px;
      height: 10px;
      top: 5px;
      left: 5px;
    }

    .d-workflow-circle.optional:hover,
    .d-workflow-circle.active:hover,
    .d-workflow-circle.completed:hover {
      cursor: pointer;
    }

  .d-workflow-circle.optional {
    border-color: rgb(219,57,35);
  }

  .d-workflow-circle.completed {
    border-color: rgb(219,57,35);
    background-color: rgb(219,57,35)
  }

    .d-workflow-circle.completed:after {
      content: "\E73E";
      color: rgb(255,255,255);
      font-family: "FabricMDL2Icons";
      position: absolute;
      left: 3px;
    }

.d-workflow-popup {
  position: absolute;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 4px 0px;
  background-color: rgb(255,255,255);
  z-index: 1;
}

.d-workflow-popup-header {
  border: none;
  border-bottom: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgb(219,217,216);
  display: flex;
  flex-direction: row;
  height: 36px;
  padding: 0 14px 0 14px;
}

.d-workflow-popup-header-title {
  flex-grow: 1;
}

.d-workflow-popup-header-buttons {
  align-self: flex-end;
  height: 100%;
  padding-top: 9px;
}

.d-workflow-navigation-button {
  background-color: rgb(234, 138, 125);
  border: 0;
  border-radius: 0;
  margin-top: 15px;
  height: 40px;
  padding-top: 8px;
}

/* List page */

.d-list-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Search textbox */

.d-search-textbox {
  position: relative;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  border-color: transparent;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 35px;
}

  .d-search-textbox input,
  .d-search-textbox input:focus {
    border: none;
    outline: none;
    flex-grow: 1;
  }

  .d-search-textbox,
  .d-search-textbox.active {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    padding: 5px;
    border-color: rgb(219, 217, 216);
    background-color: rgb(255,255,255);
  }

    .d-search-textbox:after,
    .d-search-textbox.active:after {
      content: "\E721";
      font-family: "FabricMDL2Icons";
      color: black;
      font-size: 14px;
      margin-right: 4px;
      align-self: flex-start;
      background-color: rgb(255,255,255);
    }

.d-search-textbox-value {
  position: absolute;
  bottom: 4px;
  background-color: lightgray;
  width: 190px;
  height: 26px;
  display: flex;
  flex-direction: row;
}

  .d-search-textbox-value label {
    flex-grow: 1;
    margin: auto;
    padding-left: 4px;
  }

.d-search-textbox-value-buttons {
  align-self: flex-end;
  margin: auto 4px auto 0;
}

.d-search-textbox.active .d-search-textbox-value {
  display: none;
}

.d-search-popup {
  background-color: rgb(255,255,255);
  font-size: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(219,217,216);
  width: 300px;
  height: 300px;
  overflow-y: auto;
}

.d-search-details {
  display: flex;
  width: 100%;
}

  .d-search-details:hover {
    background-color: lightgray;
  }

.d-search-details-icon {
  margin: auto 14px auto 6px;
}

.d-search-details-toggle {
  margin: auto 6px auto 14px;
}

  .d-search-details-toggle button {
    border: none;
    background-color: transparent;
  }

/* ClientNotification */

.d-client-notification-popup {
  background-color: #EFEFEF;
  box-shadow: 0 0 5px 1px #a1a1a1;
  display: flex;
  flex-direction: column;
  position: absolute;
  padding-bottom: 5px;
  right: 0px;
  z-index: 2000;
}

.d-client-notification-header {
  display: flex;
  justify-content: right;
  margin-top: 5px;
  margin-right: 5px;
}

.d-client-notification-content-holder {
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 100vh;
}

.d-client-notification-close {
  font-size: 14px;
  color: black;
}

.d-client-notification {
  display: flex;
  flex-direction: row;
  padding: 5px 15px 10px 15px;
  max-width: 400px;
  background: white;
  margin: 8px 8px 0 8px;
  border-radius: 4px;
}

.d-client-notification.nopopup {
  flex-grow: 0;
  background: var(--kendo-body-bg);
  margin-bottom: .5rem;
  position: relative;
}

.d-client-notification-title {
  font-size: 14px;
  padding-bottom: 8px;
}

.d-client-notification-description {
  font-size: 12px;
  margin-bottom: 5px;
}

.d-client-notification-completion-message {
  font-size: 12px;
}

.d-client-notification-error-message {
  color: red;
}

.d-client-notification-icon {
  font-size: 14px;
  align-self: center;
  padding-right: 10px;
}

.d-client-notification-dismiss {
  font-size: 14px;
  color: black;
  align-self: center;
  padding-left: 10px;
}

.d-client-notification-content {
  flex-grow: 1;
  font-size: 11px;
}

.d-client-notification-message-indicator {
  pointer-events: none;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: red;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 8px;
  right: 14px;
}

.d-client-notification-downloaded {
  color: green;
  font-weight: normal;
}

.d-client-notification-content-not-download {
  font-weight: bold;
}

.d-client-notification-timestamp {
  font-size: 11px;
  position: absolute;
  bottom: 12px
}


.d-client-notification-message-indicator span {
  color: white;
  font-size: 8px;
  font-weight: 500;
}

.d-client-notification-progressbar {
  margin-top:8px;
  
  /* Overrides voor ProgressBar */
  .k-progress-status {
    padding-inline: var(--kendo-spacing-2, 0.5rem);
  }

  .k-progressbar-horizontal {
    height: unset;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .k-progressbar-horizontal .k-progress-status-wrap {
    margin-block-start: unset;
  }

  .k-progressbar:not(.k-progressbar-indeterminate) .k-selected {
    color: var(--kendo-progressbar-value-text, var(--kendo-neutral-30, initial));
  }
  
}


/* Clickable content voor Telerik Tile Layout */
.d-clickablecontent {
  cursor: pointer;
  display: flex;
  height: calc(100% + 32px);
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-top: -16px;
  padding: 16px;
  background: #ffffff5c 0% 0% no-repeat padding-box;
  backdrop-filter: blur(5px);
}

/* Tile met gecenteerd aantal*/

.d-tile-number {
  align-content: center;
  font-size: 60px;
  font-weight: 500;
  margin: auto;
  line-height: 0px
}

/* KPI met Gauge */
.d-kpi-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.d-kpi-tile-content {
  flex-grow: 1;
}

.d-kpi-tile-footer {
  font-size: 12px;
}

  .d-kpi-tile-footer .d-title {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
  }

  .d-kpi-tile-footer .d-value {
    text-align: center;
  }

d-grip-welcome-text {
  font-size: 40px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 35px 0px 10px;
}

  
.gridsearchbox {
  background-color: transparent !important;
}

.gridsearchbox > .k-input-icon{
  color: black;
  rotate: 90deg;
  font-size: 20px;
  margin-left: 10px;
}

.d-warning {
  color: var(--kendo-warning-text);
  background-color: var(--kendo-warning-bg);
}