@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");
@import url(https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css);
* {
  box-sizing: border-box;
}

:root {
  --app-container: #141C28;
  --main-color: #fff;
  --secondary-color: rgba(255, 255, 255, 0.8);
  --projects-section: #1F2634;
  --admin-box-border: rgba(255, 255, 255, 0.1);
  --link-color: rgb(255, 255, 255);
  --link-color-hover: #ffffffb2;
  --link-color-active: #1f2837;
  --link-color-active-bg: rgb(255, 255, 255);
  --button-bg: #1F2634;
  --search-area-bg: #fff;
  --message-box-hover: #243244;
  --message-box-border: rgba(255, 255, 255, 0.1);
  --star: #ffd92c;
  --light-font: rgba(255, 255, 255, 0.8);
  --more-list-bg: #2f3142;
  --more-list-bg-hover: rgba(195, 207, 244, 0.1);
  --more-list-shadow: rgba(195, 207, 244, 0.1);
  --message-btn: rgba(195, 207, 244, 0.1);
  --logo-color: #fff;
  --tekst-in-button: #1f2837;
  --modaltekst: #ffffffaf;

  --select-border: #393939;
  --select-focus: #101484;
  --select-arrow: var(--select-border);
}

.dark:root {
  --app-container: #f3f6fd;
  --main-color: #1f1c2e;
  --secondary-color: #4a4a4a;
  --link-color: #1f1c2e;
  --link-color-hover: #fda83e;
  --link-color-active: #fff;
  --link-color-active-bg: #1f1c2e;
  --projects-section: #fff;
  --admin-box-border: #e9ebf0;
  --message-box-hover: #fafcff;
  --message-box-border: #e9ebf0;
  --light-font: rgba(17, 17, 17, 0.8);
  --more-list-bg: #fff;
  --more-list-bg-hover: #f6fbff;
  --more-list-shadow: rgba(209, 209, 209, 0.4);
  --button-bg: #1f1c24;
  --search-area-bg: #1F2634;
  --star: #1ff1c2e;
  --message-btn: #fff;
  --logo-color: #fda83e;
  --tekst-in-button: #fff;
  --modaltekst: #0000009d;
}

html,
body {
  width: 100%;
  height: 100vh;
  margin: 0;
}

body {
  /* font-family: "DM Sans", sans-serif; */
  /* font-family: "Sora", sans-serif; */
  font-family: 'Sen', sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background-color: var(--app-container);
}

button,
a {
  cursor: pointer;
  font-family: 'Sen', sans-serif;
}

button {
  font-family: 'Sen', sans-serif;
}

.buttonmodal {
  color: #1F2634;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  width: auto;
  border-radius: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Sen', sans-serif;
}

.buttonmodal2 {
  font: inherit;
  font-weight: 600;
  padding: 0.6rem 2rem;
  background: transparent;
  color: currentColor;
  border: 1px solid;
  transition: background 100ms ease;
  position: static;
  border-radius: 14px;
  width: auto;
  margin-top: 32px;
}

.buttonmodal2:hover {
  font: inherit;
  font-weight: 600;
  padding: 0.6rem 2rem;
  background: white;
  color: #FF8902;
  border: 1px solid;
  transition: background 100ms ease;
  position: static;
  border-radius: 14px;
  width: auto;
  margin-top: 32px;
}

.buttonmodal i {
  float: right;
  margin-right: 10px;
}

.buttonmodal-presentie {
  color: #1F2634;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  width: 50%;
  border-radius: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Sen', sans-serif;
}

.buttonmodal-presentie i {
  float: right;
  margin-right: 10px;
}

.details-modal {
  background: #1F2634;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: white;
  left: 50%;
  max-width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: left;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  transition:all 5s ease-in-out;
}

.details-modal .details-modal-close {
  align-items: center;
  color: white;
  display: flex;
  height: 4.5em;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.5em;
}

.details-modal .details-modal-close svg {
  display: block;
}

.details-modal-title form {
  margin-bottom: 15px;
}

.details-modal .details-modal-title {
  color: white;
  padding: 0.5em 1.5em;
  pointer-events: all;
  position: relative;
  width: calc(100% - 4.5em);
  margin-left: 7px;
  padding-bottom: 0px;
}
.details-modal .details-modal-title h1 {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: normal;
  width: 50%;
  margin-bottom: 0px;
  margin-top: 12px;
}
.details-modal .details-modal-title p {
  margin-top: 0px;
}
.details-modal .details-modal-content {
  padding: 15px;
  pointer-events: all;
  overflow: auto;
  margin-top: 0px;
  padding-top: 0px;
}

.details-modal-bewerkt-door {
  float: right;
  text-align: right;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: -55px;
}

.details-modal-bewerkt-door p {
  margin: 0px;
  color: rgba(255, 255, 255, 0.651);
  float: right;
  text-align: right;
}

.details-modal-overlay {
  transition: opacity 0.7s cubic-bezier(0.66, 0.16, 0.36, 0.91);
  pointer-events: none;
  background: rgba(0, 0, 0, 0.63);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 1;
  opacity: 0;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
details[open] .details-modal-overlay {
  position: fixed;
  pointer-events: all;
  opacity: 2;
}

details summary {
  list-style: none;
}
details summary:focus {
  outline: none;
}
details summary::-webkit-details-marker {
  display: none;
}

.app-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--app-container);
  transition: 0.2s;
  max-width: 1800px;
}

.app-content {
  display: flex;
  height: 100%;
  overflow: hidden;
  padding: 0px 15px 15px 0;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  position: relative;
  padding-bottom: 10px;
  padding-top: 10px;
}
.app-header-left,
.app-header-right {
  display: flex;
  align-items: center;
}
.app-header-left {
  flex-grow: 1;
}
.app-header-right button {
  margin-left: 10px;
  font-family: 'Sen', sans-serif;
}
.app-icon {
  width: 26px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--main-color);
  position: relative;
}
.app-icon:before,
.app-icon:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--main-color);
  left: 50%;
  transform: translatex(-50%);
}

.app-header-left .logo path {
  fill: var(--logo-color);
}

.projects-section-header .logo path {
  fill: var(--logo-color);
}

svg.logo {
  height: 50px;
  width: auto;
  margin-right: 20px;
  margin-left: -10px;
  margin-top: -10px;
}

.mode-switch {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
}

.profile-icon {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
}

.search-input {
  border: none;
  flex: 1;
  outline: none;
  height: 100%;
  font-size: 16px;
  margin-top: 7px;
  background-color: var(--search-area-bg);
  color: var(--main-color);
  font-family: 'Sen', sans-serif;
}
.search-input:placeholder {
  color: var(--main-color);
  opacity: 0.6;
}

span.bezig {
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: var(--projects-section);
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 2px;
  text-align: center;
  width: auto;
  padding-left: 8px;
  padding-right: 8px;
  font-family: 'Sen', sans-serif;
}

span.bezig2 {
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: var(--projects-section);
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 2px;
  text-align: center;
  width: 1.6em;
  font-family: 'Sen', sans-serif;
}

.days-left a {
  text-decoration: none;
  color: #00a319;
}

.days-left a:hover {
  text-decoration: underline;
  color: #00a319;
}

.add-btn {
  color: #fff;
  background-color: var(--button-bg);
  padding: 0;
  border: 0;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-btn {
  color: var(--main-color);
  padding: 0;
  border: 0;
  background-color: transparent;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-btn {
  padding: 0;
  border: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding-left: 12px;
  border-left: 1px solid #d2d2d4;
  text-decoration: none;
}
.profile-btn2 {
  padding: 0;
  border: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-left: 2px;
}

.profile-btn2 span {
  color: var(--main-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.profile-btn img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 4px;
}
.profile-btn span {
  color: var(--main-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.page-content  {
  flex: 1;
  width: 100%;
}

.app-sidebar {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--projects-section);
  border-radius: 25px;
  margin-right: 15px;
  margin-left: 15px;
}

.app-sidebar-link {
  color: var(--main-color);
  margin: 10px 0;
  transition: 0.2s;
  border-radius: 15px;
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-sidebar-link:hover {
  background-color: var(--link-color-hover);
  color: var(--link-color-active);
}
.app-sidebar-link.active {
  background-color: var(--link-color-active-bg);
  color: var(--link-color-active);
}

.app-sidebar-link1 {
  color: var(--main-color);
  margin: 10px 0;
  transition: 0.2s;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-sidebar-link1:hover {
  background-color: var(--link-color-hover);
  color: var(--link-color-active);
}
.app-sidebar-link1.active {
  background-color: rgba(224, 224, 224, 0.781);
  color: var(--link-color-active);
}

.app-sidebar-link2 {
  color: var(--link-color-active);
  background-color: white;
  margin: 0px;
  margin-bottom: -10px;
  margin-right: -8px;
  margin-left: 15px;
  transition: 0.2s;
  border-radius: 15px;
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  text-decoration: none;
}
.app-sidebar-link2:hover {
  background-color: rgba(224, 224, 224, 0.623);
  color: var(--link-color-active);
}
.app-sidebar-link2.active {
  background-color: rgba(224, 224, 224, 0.781);
  color: var(--link-color-active);
}

.app-sidebar-link3 {
  color: var(--link-color-active);
  background-color: white;
  margin: 0px;
  margin-top: -10px;
  margin-right: -12px;
  margin-left: 15px;
  transition: 0.2s;
  border-radius: 15px;
  flex-shrink: 0;
  width: auto;
  height: auto;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  text-decoration: none;
  font-size: small;
}
.app-sidebar-link3:hover {
  background-color: rgba(224, 224, 224, 0.623);
  color: var(--link-color-active);
}
.app-sidebar-link3.active {
  background-color: rgba(224, 224, 224, 0.781);
  color: var(--link-color-active);
}

.projects-section {
  flex: 2;
  background-color: var(--projects-section);
  border-radius: 32px;
  padding: 32px 32px 0 32px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.projects-section-links {
  flex: 2;
  background-color: var(--projects-section);
  padding: 32px 16px 0 32px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 32px 0px 0px 32px;
}

.projects-section-rechts {
  flex: 2;
  background-color: var(--projects-section);
  padding: 32px 32px 0 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0px 32px 32px 0px;
}

.projects-section-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
}
.projects-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: -4px;
  color: var(--main-color);
}

.projects-section-header p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  opacity: 0.9;
  margin: 0;
  margin-top: -5px;
  color: var(--main-color);
}

.projects-section-header .time {
  font-size: 20px;
}

.projects-section-header-accounts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--main-color);
}
.projects-section-header-accounts h1 {
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  opacity: 0.9;
  margin: 0;
  margin-top: -5px;
  color: var(--main-color);
}
.projects-section-header-accounts .time {
  font-size: 20px;
}
.projects-section-header-accounts button {
  margin-top: -2px;
}

.projects-section-header-home {
  justify-content: space-between;
  align-items: left;
  margin-left: 20px;
  color: var(--main-color);
}

.projects-section-header-home h2 {
  margin-bottom: 0px;
  margin-top: 10px;
}

.projects-section-header-home p {
  margin-top: -15px;
  margin-bottom: 0px;
  color: #ffffffb2;
}

.projects-section-header-home-algemeen {
  justify-content: space-between;
  align-items: left;
  margin-left: 10px;
  margin-top: -5px;
  color: var(--main-color);
}

.projects-section-header-home-algemeen h2 {
  margin-bottom: 0px;
  margin-top: 0px;
}

.projects-section-header-home-algemeen p {
  margin-top: -15px;
  margin-bottom: 0px;
}

.projects-section-line-accounts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0px;
  border-bottom: 2px solid var(--main-color);
}

.modalboxes {
  display: flex;
  margin: -8px;
  margin-top: -25px;
}

.modalbox {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0px;
  padding-bottom: 20px;
  width: 100%;
}

.modalbox p {
  background-color: #151d27;
  padding: 10px;
  padding-left: 12px;
  border-radius: 12px;
  height: 56px;
  max-width: 534px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

.modalbox-r {
  display: inline-block;
  padding-left: 0px;
  padding-right: 20px;
  padding-top: 0px;
  padding-bottom: 20px;
  width: 100%;
}

.modalbox-r p {
  background-color: #151d27;
  padding: 8px;
  padding-left: 10px;
  border-radius: 12px;
}

.opmerkingenveld {
  height: 278px;
  overflow-y: scroll;
  margin-bottom: 10px;
  margin-top: 0px;
}

.projects-status {
  display: flex;
}

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

.item-status2 {
  float: left;
  margin-left: -240px;
}

.item-status p {
  color: var(--main-color);
}

.status-number {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--main-color);
}

.statusformulier {
  display: flex;
  flex-direction: row;
  margin-bottom: 0px;
  background-color: var(--app-container);
  border-radius: 50px;
}

.status-type {
  position: relative;
  margin-top: 0px;
  margin-right: 0px;
  padding: 7px;
  color: var(--secondary-color);
  background-color: var(--app-container);
  border-radius: 50px;
}

.status-type:hover {
  transition: all 0.4s ease;
}

.status-type:hover .filterbutton {
  text-decoration: none;
  border: none;
  color: var(--projects-section-alt);
  display: inline-block;
  text-align: center;
  padding-left: 5px;
  margin-right: none;
  background-color: transparent;
  transition: all 0.4s ease;
  font-family: 'Sen', sans-serif;
}

.status-type2 {
  position: relative;
  margin-top: 2px;
  padding-right: 24px;
  color: var(--secondary-color);
}

.status-type3 {
  position: relative;
  margin-top: -3px;
  padding-right: 24px;
  color: var(--secondary-color);
}

.view-actions {
  display: flex;
  align-items: center;
}

.view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border-radius: 4px;
  background-color: transparent;
  border: none;
  color: var(--main-color);
  margin-left: 8px;
  transition: 0.2s;
}

.view-btn.active {
  background-color: var(--link-color-active-bg);
  color: var(--link-color-active);
}
.view-btn:not(.active):hover {
  background-color: var(--link-color-hover);
  color: var(--link-color-active);
}

.betabutton {
  background-color: #fd5f57;
  border: none;
  border-radius: 7px;
  padding-top: 4px;
  color: white;
  text-align: center;
  text-decoration: none;
  cursor: default;
}

.project-boxes {
  margin: 0 -8px;
  overflow-y: auto;
}

.projectstatusbutton {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  font-family: 'Sen', sans-serif;
}

.projectstatusbutton:hover {
  border-color: var(--logo-color);
  background-color: transparent;
  color: var(--logo-color);
}

.adminprojectstatusbutton {
  outline: none;
  padding: 6px 14px;
  border-radius: 9px;
  height: 100%;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  font-family: 'Sen', sans-serif;
  margin-right: 1px;
}

.adminprojectstatusbutton:hover {
  border-color: var(--logo-color);
  background-color: transparent;
  color: var(--logo-color);
}

.newprojectbutton {
  margin-top: 0px;
  margin-right: 9px;
  float: right;
  right: 0;
  top: 0;
  display: inline;
}

.newprojectbutton button {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  font-family: 'Sen', sans-serif;
  float: right;
  margin-left: 5px;
}
.newprojectbutton button:hover {
  border-color: var(--logo-color);
  background-color: var(--projects-section);
  color: var(--logo-color);
  font-family: 'Sen', sans-serif;
}

.divbutton {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  font-family: 'Sen', sans-serif;
}
.divbutton:hover {
  border-color: var(--logo-color);
  background-color: var(--projects-section);
  color: var(--logo-color);
  font-family: 'Sen', sans-serif;
}

.supportbutton button {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: #1a34e0;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  width: 100%;
  font-family: 'Sen', sans-serif;
}
.supportbutton button:hover {
  border-color: #1a34e0;
  background-color: #fff;
  color: #1a34e0;
  font-family: 'Sen', sans-serif;
}

.message-content-footer input[type="text"] {
  margin-left: 0px;
  padding: 3px;
  padding-left: 5px;
  color: black;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid black;
  font-family: 'Sen', sans-serif;
}

.message-content-footer input[type="text"]::placeholder {
  color: rgba(0, 0, 0, 0.527);
}

.view-btn.list-view {
  cursor: not-allowed;
}

.project-boxes.jsGridView {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.project-boxes.jsGridView .project-box-wrapper {
  width: 33.3%;
}
.project-boxes.jsListView .project-box {
  display: flex;
  border-radius: 10px;
  position: relative;
}
.project-boxes.jsListView .project-box > * {
  margin-right: 24px;
}
.project-boxes.jsListView .more-wrapper {
  position: absolute;
  right: 16px;
  top: 16px;
}
.project-boxes.jsListView .project-box-content-header {
  order: 1;
  max-width: 120px;
}
.project-boxes.jsListView .project-box-header {
  order: 2;
}
.project-boxes.jsListView .project-box-footer {
  order: 3;
  padding-top: 0;
  flex-direction: column;
  justify-content: flex-start;
}
.project-boxes.jsListView .project-box-footer:after {
  display: none;
}
.project-boxes.jsListView .participants {
  margin-bottom: 8px;
}
.project-boxes.jsListView .project-box-content-header p {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.project-boxes.jsListView .project-box-header > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
}
.project-boxes.jsListView .box-progress-wrapper {
  order: 3;
  flex: 1;
}

.box-progress-wrapper h1 {
  text-align: center;
  font-size: 500%;
}

.box-progress-wrapper {
  margin-left: 3px;
}

.project-box {
  --main-color-card: #dbf6fd;
  border-radius: 25px;
  padding: 18px;
  background-color: var(--main-color-card);
  animation: bounce-in 0.7s ease;
  box-shadow: 0px 0px 25.5px rgba(0, 0, 0, 0.04),
    0px 0px 80px rgba(0, 0, 0, 0.08);
  color: var(--projects-section);
}

.project-box p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-box {
  border-radius: 25px;
  padding: 16px;
  height: 303px;
  background-color: var(--app-container);
  animation: bounce-in 0.7s ease;
  color: var(--main-color);
  position: relative;
}

.news-box a {
  text-decoration: none;
}

.news-box .box-content-header {
  margin-bottom: 8px;
}

.news-box-text {
  font-size: 13px;
  font-weight: 0;
  line-height: 16px;
  max-height: 192px;
  margin: 0;
  height: auto;
  overflow: hidden;
  display: inherit;
}

p.news-box-text {
  height: auto;
  overflow-y: scroll;
  display: inherit;
  height: 120px;
}

.vakantie-box-text {
  font-size: 13px;
  font-weight: 0;
  line-height: 16px;
  max-height: 240px;
  margin: 0;
  height: auto;
  overflow: hidden;
  display: inherit;
}

p.vakantie-box-text {
  height: auto;
  overflow-y: scroll;
  display: inherit;
  height: 200px;
}

.news-box-footer {
  bottom: 0;
  position: absolute;
  margin: 15px;
  margin-left: 5px;
  width: 90%;
}

.news-box-text-footer {
  font-size: 13px;
  font-weight: 0;
  line-height: 16px;
  width: auto;
  margin: 0;
  height: auto;
  overflow: hidden;
  display: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

p.news-box-text-footer {
  height: auto;
  overflow: hidden;
  display: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ivs-logo-news {
  margin-top: -32px;
  margin-right: 0px;
  position:absolute;
  right: 0;
}

.inside-nav-box-wrapper {
  padding-left: 8px;
  transition: 0.2s;
  margin-right: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
}

.inside-nav-box-tekst {
  margin-bottom: 0px;
  margin-top: 5px;
}

.inside-nav-box {
  border-radius: 17px;
  padding: 16px;
  margin-left: -8px;
  margin-bottom: 10px;
  height: 50px;
  background-color: #141C28;
  animation: bounce-in 0.5s ease;
  color: var(--main-color);
}

.inside-nav-box:hover {
  border-radius: 17px;
  padding: 16px;
  margin-left: -8px;
  margin-bottom: 10px;
  height: 50px;
  background-color: white;
  color: #FF8902;
  border: 20px green;
  transition: 0.4s;
}

.inside-nav-box2 {
  border-radius: 17px;
  padding: 16px;
  margin-left: -8px;
  margin-bottom: 0px;
  background-color: var(--app-container);
  animation: bounce-in 0.5s ease;
  color: var(--main-color);
}

.titelbijsnelnav {
  margin-top: -26px;
  margin-left: 35px;
}

.navigatie-box-wrapper {
  padding: 8px;
  transition: 0.2s;
  width: 20%;
}

.news-box-wrapper {
  padding: 8px;
  transition: 0.2s;
  width: 26.5%;
}

.snel-navigeren {
  color: var(--main-color);
  margin: 0px;
  transition: 0.2s;
  border-radius: 15px;
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.snel-navigeren:hover {
  background-color: var(--link-color-hover);
  color: var(--link-color-active);
}
.snel-navigeren.active {
  background-color: var(--link-color-active-bg);
  color: var(--link-color-active);
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
  }
}

.portal-box {
  --main-color-card: #dbf6fd;
  border-radius: 30px;
  padding: 16px;
  padding-bottom: 4px;
  background-color: var(--main-color-card);
}

.project-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--main-color);
}
.project-box-header span {
  color: #4a4a4a;
  opacity: 0.7;
  font-size: 14px;
  line-height: 16px;
}
.project-box-content-header {
  text-align: left;
  margin-bottom: 16px;
}
.project-box-wrapper {
  padding: 8px;
  transition: 0.2s;
}

.project-btn-more {
  padding: 0;
  height: 14px;
  width: 24px;
  position: relative;
  background-color: transparent;
  border: none;
  flex-shrink: 0;
  /*&:after, &:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--main-color);
    opacity: .8;
    left: 50%;
    transform: translatex(-50%);
  }

  &:before { top: 0;}
  &:after { bottom: 0; }*/
}

.more-wrapper {
  position: relative;
}

.box-content-header {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-top: -1px;
  margin-bottom: 0px;
  margin-left: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

.box-content-header2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-top: 2px;
  margin-bottom: 14px;
  margin-left: 7px;
  font-size: 12px;
  line-height: auto;
  color: var(--main-color);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

.box-content-subheader {
  font-size: 14px;
  line-height: 24px;
  margin-top: -1px;
  margin-bottom: 0px;
  margin-left: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

.box-progress {
  display: block;
  height: 4px;
  border-radius: 6px;
}
.box-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  margin: 8px 0;
}
.box-progress-header {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 0;
}
.box-progress-text {
  font-size: 13px;
  font-weight: 0;
  line-height: 16px;
  margin: 0;
  height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

p.box-progress-text {
  height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

.project-box-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  position: relative;
  padding-bottom: 5px;
}

.support-box-footer {
  display: flex;
  justify-content: center;
  padding-top: 16px;
  position: relative;
}

/* 
.project-box-footer:after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  width: calc(100% + 32px);
  top: 0;
  left: -16px;
  height: 1px;
} */

.participants {
  display: flex;
  align-items: center;
}
.participants img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}
.participants img:not(:first-child) {
  margin-left: -8px;
}

.add-participant {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.6);
  margin-left: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.statustag {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  border-radius: 20px;
  flex-shrink: 0;
  padding: 6px 16px;
  font-weight: 700;
}

.statustag-modal {
  font-size: 16px;
  font-weight: 700;
  cursor: not-allowed;
}

.homepaginatext {
  color: var(--main-color);
}

.priotag-modal {
  font-size: 12px;
  font-weight: 700;
}

.modalboxinput {
  padding: 0px;
  padding-left: 0px;
  color: #ffffffaf;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  resize: none;
  font-family: 'Sen', sans-serif;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

.modalboxinputtitle {
  padding: 3px;
  margin-top: -3px;
  margin-bottom: -5px;
  padding-left: 0px;
  color: var(--modaltekst);
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  resize: none;
  width: 200%;
  font-family: 'Sen', sans-serif;
  font-weight: bold;
}

.filterbutton {
  text-decoration: none;
  border: none;
  color: var(--projects-section-alt);
  display: inline-block;
  text-align: center;
  padding-left: 5px;
  margin-right: none;
  background-color: transparent;
  font-family: 'Sen', sans-serif;
  text-overflow: ellipsis;
}

.filterbutton:hover {
  text-decoration: none;
  border: none;
  display: inline-block;
  text-align: center;
  padding-left: 5px;
  opacity: 50%;
  font-family: 'Sen', sans-serif;
  text-overflow: ellipsis;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.modalboxinputtxtarea {
  padding: 8px;
  padding-left: 10px;
  color: var(--modaltekst);
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  resize: none;
  height: 278px;
  width: 100%;
  margin-bottom: 6px;
  font-family: 'Sen', sans-serif;
}

.mode-switch.active .moon {
  fill: var(--main-color);
}

.messages-btn {
  border-radius: 4px 0 0 4px;
  position: absolute;
  right: 0;
  top: 58px;
  background-color: var(--message-btn);
  border: none;
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
}

.schermfoutoverlay {
  height: 100%;
  width: 100%;
  position:absolute;
  align-items: center;
  text-align: center;
  z-index: 2;
  background-color: var(--app-container);
  color: white;
  padding: 50px;
  display: none;
}

@media screen and (max-width: 1170px) {
  .schermfoutoverlay {
    height: 100%;
    width: 100%;
    position: absolute;
    align-items: center;
    text-align: center;
    z-index: 2;
    background-color: var(--app-container);
    color: white;
    padding: 50px;
    display: inline;
  }
}

@media screen and (max-width: 980px) {
  .schermfoutoverlay {
    height: 100%;
    width: 100%;
    position:absolute;
    align-items: center;
    text-align: center;
    z-index: 2;
    background-color: var(--app-container);
    color: white;
    padding: 50px;
    display: inline;
  }
  
  .project-boxes.jsGridView .project-box-wrapper {
    width: 50%;
  }

  .project-boxes.jsGridView .project-box-wrapper2 {
    width: 100%;
  }

  .project-boxes.jsGridView .project-box-wrapper1 {
    width: 100%;
  }

  .status-number,
  .status-type {
    font-size: 14px;
  }

  .status-type:after {
    width: 4px;
    height: 4px;
  }

  .item-status {
    margin-right: 0;
  }
}

@media screen and (max-width: 880px) {
  .schermfoutoverlay {
    height: 100%;
    width: 100%;
    position:absolute;
    align-items: center;
    text-align: center;
    z-index: 2;
    background-color: var(--app-container);
    color: white;
    padding: 50px;
    display: inline;
  }

  .messages-section {
    transform: translateX(100%);
    position: absolute;
    opacity: 0;
    top: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
  }
  .messages-section .messages-close {
    display: block;
  }

  .messages-btn {
    display: flex;
  }

  .status-type2 {
    display: none;
  }

  .search-wrapper input[type="text"] {
    width: auto;
  }
}
@media screen and (max-width: 720px) {
  .schermfoutoverlay {
    height: 100%;
    width: 100%;
    position:absolute;
    align-items: center;
    text-align: center;
    z-index: 2;
    background-color: var(--app-container);
    color: white;
    padding: 50px;
    display: inline;
  }

  .app-name,
  .profile-btn span {
    display: none;
  }

  .add-btn,
  .notification-btn,
  .mode-switch {
    width: 20px;
    height: 20px;
  }
  .add-btn svg,
  .notification-btn svg,
  .mode-switch svg {
    width: 16px;
    height: 16px;
  }

  .app-header-right button {
    margin-left: 4px;
  }
}
@media screen and (max-width: 575px) {
  .schermfoutoverlay {
    height: 100%;
    width: 100%;
    position:absolute;
    align-items: center;
    text-align: center;
    z-index: 2;
    background-color: var(--app-container);
    color: white;
    padding: 50px;
    display: inline;
  }

  .projects-section {
    overflow: auto;
  }

  .project-boxes {
    overflow-y: visible;
  }

  /* .app-sidebar,
  .app-icon {
    display: none;
  } */

  .app-sidebar {
    display: flex;
    flex-direction: row;
    align-items: center;
    float: inline-end;
    height: auto;
    z-index: 1;
    margin-top: 100%;
    margin-right: -55%;
    margin-bottom: -50px;
    justify-content: center;
  }

  .projects-section {
    height: 90%;
  }

  .app-sidebar-link {
    margin: 5px;
  }

  .app-sidebar-link1 {
    margin: 5px;
  }

  .mode-switch {
    display: none;
  }

  .app-content {
    padding: 16px 12px 24px 12px;
  }

  .status-number,
  .status-type {
    font-size: 10px;
  }

  .view-btn {
    width: 24px;
    height: 24px;
  }

  .app-header {
    padding: 16px 10px;
  }

  .search-input {
    max-width: 120px;
    font-family: 'Sen', sans-serif;
  }

  .project-boxes.jsGridView .project-box-wrapper {
    width: 100%;
  }

  .projects-section {
    padding: 24px 16px 0 16px;
  }

  .profile-btn img {
    width: 24px;
    height: 24px;
  }

  .app-header {
    padding: 10px;
  }

  .projects-section-header p,
  .projects-section-header .time {
    font-size: 18px;
  }

  .search-input {
    font-size: 14px;
    font-family: 'Sen', sans-serif;
  }

  .messages-btn {
    top: 48px;
  }

  .box-content-header {
    font-size: 12px;
    line-height: 16px;
    color: var(--main-color);
  }

  .box-content-subheader {
    font-size: 12px;
    line-height: 16px;
  }

  .project-boxes.jsListView .project-box-header > span {
    font-size: 10px;
  }

  .box-progress-header {
    font-size: 12px;
  }

  .box-progress-percentage {
    font-size: 10px;
  }

  .days-left {
    font-size: 8px;
    padding: 6px 6px;
    text-align: center;
  }

  .project-boxes.jsListView .project-box > * {
    margin-right: 10px;
  }

  .project-boxes.jsListView .more-wrapper {
    right: 2px;
    top: 10px;
  }
}

/* Form for new Project */

.radiovragen {
  font-size: small;
}

.vragen {
  color: var(--main-color);
}

.vraag {
  color: var(--main-color);
}

.valuetekst,
.begintekst {
  font-size: small;
}

.vraag input[type="text"] {
  margin-left: 0px;
  margin-top: 10px;
  padding: 3px;
  padding-left: 5px;
  color: var(--main-color);
  box-sizing: border-box;
  background-color: var(--projects-section);
  border: none;
  border-bottom: 2px solid var(--main-color);
  font-family: 'Sen', sans-serif;
}

.vraag input[type="email"] {
  margin-left: 0px;
  margin-top: 10px;
  padding: 3px;
  padding-left: 5px;
  color: var(--main-color);
  box-sizing: border-box;
  background-color: var(--projects-section);
  border: none;
  border-bottom: 2px solid var(--main-color);
  font-family: 'Sen', sans-serif;
}

.vraag input[type="number"] {
  margin-left: 0px;
  color: var(--main-color);
  margin-top: 10px;
  padding: 3px;
  padding-left: 5px;
  background-color: var(--projects-section);
  border: none;
  border-bottom: 2px solid var(--main-color);
  font-family: 'Sen', sans-serif;
}

.process-bar-risk {
  width: 100%;
  height: 20px;
  margin-top: 5px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}

.process-bar-risk:after {
  content: "";
  position: absolute;
  width: var(--risk-bar-var);
  height: 20px;
  border-radius: 10px;
  background-color: #1a34e0;
  animation: processbar-risk 10s linear;
}

.process-bar-value {
  width: 100%;
  height: 20px;
  margin-top: 5px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}

.process-bar-value:after {
  content: "";
  position: absolute;
  width: var(--value-bar-var);
  height: 20px;
  border-radius: 10px;
  background-color: #1a34e0;
  animation: processbar-value 10s linear;
}

.result {
  width: 300px;
  padding-top: -20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  margin: 20px;
  margin-left: 0px;
  border-radius: 25px;
  background-color: #f3f6fd;
  float: left;
  display: flex;
  flex-direction: column;
}

.login-box {
  color: var(--logo-color);
}

.login-box h1 {
  float: left;
  font-size: 40px;
  border-bottom: 4px solid var(--logo-color);
  margin-bottom: 50px;
  padding: 13px;
}

.infobijlogin {
  float: left;
  font-size: small;
  margin-top: -15px;
  opacity: 70%;
  width: 100%;
  margin-bottom: 20px;
}

.wachtwoordvergeten {
  float: left;
  font-size: small;
  margin-top: -30px;
  opacity: 70%;
  width: 100%;
  margin-left: 110px;
}

.boveninlogp {
  float: left;
  font-size: small;
  opacity: 70%;
  width: 100%;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-top: 5px;
}

.boveninlogp_reg {
  float: left;
  font-size: small;
  opacity: 70%;
  width: 100%;
  margin-bottom: 0px;
  margin-left: 5px;
  margin-top: 7px;
}

.onderwwcontrole_reg {
  float: left;
  font-size: small;
  opacity: 70%;
  width: 130%;
  margin-bottom: 0px;
  margin-left: -115px;
  margin-top: 22px;
}

.regbox {
  margin: 0px;
  width: 270px;
  float: left;
  margin-right: 20px;
}

.projectstatusbutton_reg {
  float: right;
  margin-top: 137px;
}

.textbox_login_reg {
  width: 270px;
  float: left;
  overflow: hidden;
  font-size: 20px;
  padding: 10px 0;
  margin: 8px 0;
  background-color: var(--app-container);
  border-radius: 14px;
  font-family: 'Sen', sans-serif;
}

.textbox_login_reg input {
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  float: left;
  margin: 0 10px;
  width: 220px;
  font-family: 'Sen', sans-serif;
}

.textbox_login_reg i {
  font-size: small;
  margin-top: 5px;
}

.fa {
  float: left;
  text-align: center;
}

.textbox {
  width: 105%;
  overflow: hidden;
  font-size: 20px;
  padding: 8px 0;
  margin: 8px 0;
  border-bottom: 1px solid var(--logo-color);
}

.textbox input {
  border: none;
  outline: none;
  background: none;
  font-size: 18px;
  float: left;
  margin: 0 10px;
  font-family: 'Sen', sans-serif;
}

.textbox_login {
  width: 270px;
  overflow: hidden;
  font-size: 20px;
  padding: 10px 0;
  margin: 8px 0;
  background-color: var(--app-container);
  border-radius: 14px;
  font-family: 'Sen', sans-serif;
}

.textbox_login input {
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  float: left;
  margin: 0 10px;
  width: 220px;
  font-family: 'Sen', sans-serif;
}

.textbox_login i {
  font-size: small;
  margin-top: 5px;
}

.login-box {
  color: var(--logo-color);
}

.login-box h1 {
  float: left;
  font-size: 40px;
  border-bottom: 4px solid var(--logo-color);
  margin-bottom: 50px;
  padding: 13px;
}

.button {
  width: auto;
  padding: 8px;
  color: #ffffff;
  background: none;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  margin: 12px;
}

.login-box {
  color: var(--logo-color);
}

.container_reg {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.box_reg {
  width: 280px;
  margin-right: 50px;
}

.login-box h1 {
  float: left;
  font-size: 40px;
  border-bottom: 4px solid var(--logo-color);
  margin-bottom: 50px;
  padding: 13px;
}

.authbutton {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.4s ease;
  font-family: 'Sen', sans-serif;
}
.authbutton:hover {
  border-color: var(--logo-color);
  background-color: var(--projects-section);
  color: var(--logo-color);
}

.authbutton_login {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.4s ease;
  font-family: 'Sen', sans-serif;
  margin-top: 18px;
}
.authbutton_login:hover {
  border-color: var(--logo-color);
  background-color: var(--projects-section);
  color: var(--logo-color);
}

.projectstatusbuttondelete {
  outline: none;
  padding: 6px 14px;
  border-radius: 9px;
  height: 100%;
  font-size: small;
  font-weight: 400;
  background-color: #fd5f57;
  color: white;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}
.projectstatusbuttondelete:hover {
  border-color: #fd5f57;
  background-color: transparent;
  color: #fd5f57;
}

input[type="text"] {
  color: #ffffffaf;
  font-family: 'Sen', sans-serif;
}

input[type="email"] {
  color: var(--main-color);
  font-family: 'Sen', sans-serif;
}

input[type="password"] {
  color: var(--main-color);
  font-family: 'Sen', sans-serif;
}

select {
  color: var(--main-color);
  font-family: 'Sen', sans-serif;
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  font-family: 'Sen', sans-serif;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
}

.svgdone {
  width: 30px;
  height: auto;
  float: right;
  animation: bounce-in 1s ease;
  animation-delay: 0.05s;
}

.svgonhold {
  width: 30px;
  height: auto;
  float: right;
  animation: bounce-in 1s ease;
  animation-delay: 0.05s;
}

.svghogeprio {
  width: 30px;
  height: auto;
  float: right;
  animation: bounce-in 1s ease;
  animation-delay: 0.05s;
}

.form-control-number {
  margin-left: 0px;
  color: var(--main-color);
  margin-top: 10px;
  padding: 3px;
  padding-left: 5px;
  background-color: var(--projects-section);
  border: none;
  border-bottom: 2px solid var(--main-color);
  width: 30%;
}

.admin-section {
  flex-shrink: 0;
  padding-bottom: 32px;
  background-color: var(--projects-section);
  margin-left: 24px;
  flex: 1;
  width: 100%;
  border-radius: 30px;
  position: relative;
  overflow: auto;
  transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
}
.admin-section .admin-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  border: none;
  background-color: transparent;
  color: var(--main-color);
  display: none;
}
.admin-section.show {
  transform: translateX(0);
  opacity: 1;
  margin-left: 0;
}
.admin-section .projects-section-header {
  top: 0;
  z-index: 1;
  padding: 32px 24px 0 24px;
  background-color: var(--projects-section);
}

.admin-box {
  border-top: 1px solid var(--admin-box-border);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.admin-header .name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--main-color);
  margin: 0;
}

.admin-content {
  padding-left: 16px;
  width: 100%;
}

.admin-content-footer input[type="text"] {
  margin-left: 0px;
  padding: 3px;
  padding-left: 5px;
  color: var(--main-color);
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--main-color);
  font-family: 'Sen', sans-serif;
}

.admin-content-footer h3 {
  color: var(--main-color);
}

.project-box-wrapper h3 {
  color: var(--main-color);
  margin-top: 0px;
}

.admin-content-footer {
  color: var(--main-color);
}

.admin-content-footer input[type="text"]::placeholder {
  color: rgba(0, 0, 0, 0.527);
  font-family: 'Sen', sans-serif;
}

.search-wrapper {
  border-radius: 14px;
  background-color: var(--projects-section);
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  color: var(--light-font);
  overflow: hidden;
  /* border-color: var(--light-font);
  border-style: solid;
  border-width: 2px; */
}

.search-wrapper form {
  margin-bottom: 2px;
  margin-top: 2px;
}

.search-wrapper input[type="text"] {
  color: var(--light-font);
  width: 200px;
  background-color: transparent;
  margin-left: -5px;
  font-family: 'Sen', sans-serif;
}

.button-search {
  border: none;
  padding: 10px;
  padding-right: 15px;
  padding-left: 15px;
  background-color: transparent;
  color: var(--light-font);
  float: left;
}

.maillink {
  text-decoration: none;
  color: white;
}

/* Alert box bovenaan de pagina, Dit is voor als er iets is wat gemeld moet worden */

.alert .inner {
  display: block;
  border-radius: 3px;
  padding: 20px;
  background-color: #f44336;
  color: white;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: -782px;
  margin-left: 400px;
}

.alert .close {
  float: right;
  margin: 10px 12px 0px 0px;
  cursor: pointer;
  margin-top: -570px;
}

.alert input {
  display: none;
  margin-top: -570px;
}

.alert input:checked ~ * {
  animation-name: dismiss, hide;
  animation-duration: 300ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0s, 100ms;
  margin-top: -782px;
}

.alert.error .inner,
.alert.error .close {
  color: white;
  margin-top: -782px;
}

.alert2 .inner {
  display: block;
  border-radius: 3px;
  padding: 20px;
  background-color: #1D90F4;
  color: white;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: -782px;
  margin-left: 400px;
}

.alert2 .close {
  float: right;
  margin: 10px 12px 0px 0px;
  cursor: pointer;
  margin-top: -570px;
}

.alert2 input {
  display: none;
  margin-top: -570px;
}

.alert2 input:checked ~ * {
  animation-name: dismiss, hide;
  animation-duration: 300ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0s, 100ms;
  margin-top: -582px;
}

.alert2.error .inner,
.alert2.error .close {
  color: white;
  margin-top: -582px;
}

@keyframes dismiss {
  0% {
    opacity: 1;
  }
  90%,
  100% {
    opacity: 0;
    font-size: 0.1px;
    transform: scale(0);
  }
}

@keyframes hide {
  100% {
    height: 0px;
    width: 0px;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    border: 0px;
  }
}

.box-admin-portaal {
  color: white;
  padding: 2rem;
  background: #141C28;
  position: relative;
  box-shadow: none;
  transition: transform 300ms ease-in-out, box-shadow 400ms ease, background 100ms ease;
  border-radius: 20px;
  margin: 10px;
  animation: bounce-in 0.7s ease;
  flex-grow: 1;
}

.box-admin-portaal1 {
  color: white;
  padding: 2rem;
  width: 30rem;
  background: #FF8901;
  float: left;
  box-shadow: none;
  transition: transform 300ms ease-in-out, box-shadow 400ms ease, background 100ms ease;
  border-radius: 20px;
  margin: 10px;
  animation: bounce-in 0.7s ease;
}

.box-admin-portaal1 h1 {
  margin-top: 0px;
}

.box-admin-portaal h1 {
  margin-top: 0px;
}

.box-admin-portaal a {
  text-decoration: none;
  color: white;
  padding-top: 20px;
}

.box-admin-portaal:hover,
.box-admin-portaal:focus-within {
  color: white;
  background: #FF8901;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.3);
  transform: translateY(-0.5rem);
  border-radius: 20px;
}

.box-admin-portaal > * + * {
  margin-top: 1em;
}

.breakout-button {
  font: inherit;
  font-weight: 600;
  padding: 0.6rem 2rem;
  background: transparent;
  color: currentColor;
  border: 1px solid;
  transition: background 100ms ease;
  position: static;
  border-radius: 14px;
}

.breakout-button,
.breakout-button::before {
  cursor: pointer;
}

.breakout-button::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.avatar {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.headeraccounts {
  overflow: hidden;
  min-width: 300px;
}

.headeraccounts img {
  margin-left: 15px;
  float: right;
}

.headeraccounts h3,
.headeraccounts p{
  margin-right: 15px;
  display: block;
  margin: 0 0 0 0;
  text-align: right;
  color: var(--main-color);
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: var(--projects-section);
  min-width: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 14px;
  padding: 20px;
  margin-top: 5px;
  /* animation: fadeIn 0.6s; */
  animation: moveToRight 0.5s ease-in;
  width: auto;
  color: var(--main-color);
}

.dropdown-content h3 {
  margin-top: 0px;
  color: var(--main-color);
}

.dropdown-content p {
  margin-top: 0px;
}

.dropdown-content a {
  color: var(--main-color);
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes moveToRight {
  0% {
    transform: translateX(500px);
  }
  70% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes moveToLeft {
  0% {
    transform: translateX(0px);
  }
  70% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(500px);
  }
}

td, th {
  padding: 7px;
  padding-right: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  color: var(--main-color);
}

table {
  border-collapse: collapse;
  width: auto;
  margin-left: 10px;
}

.errortekst {
  color: var(--main-color);
}

.accountboxinput {
  padding-left: 0px;
  color: var(--modaltekst);
  background-color: transparent;
  border: none;
  resize: none;
  width: fit-content;
  font-family: 'Sen', sans-serif;
}

.accountboxinputadd {
  padding-left: 0px;
  max-width: 160px;
  color: var(--modaltekst);
  background-color: transparent;
  border: none;
  resize: none;
  width: fit-content;
  font-family: 'Sen', sans-serif;
}

#customers {
  width: 100%;
  margin-right: 20px;
}

.accountspaginatitel {
  color: var(--main-color);
  margin-left: 10px;
}

.informatietekst {
  color: var(--main-color);
  margin-bottom: 0px;
  margin-left: 20px;
  font-size: small;
  width: 100%;
  opacity: 80%;
}

.mockup_img {
  top: 0;
  margin-top: -570px;
  margin-left: 480px;
  width: 2000px;
}

.mockup_img_admin {
  top: 0;
  margin-top: -610px;
  margin-left: 200px;
  width: 2000px;
  z-index: 0;
}

/* Collapsibles op de templates pagina */

.collapsible {
  background-color: #FF8900;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 12px;
  z-index: 1;
}

.collapsible.activated {
  border-radius: 12px;
  background-color: #FF8900;
}

.activated,
.collapsible:hover {
  background-color: #FF8900;
}

.collapsible:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  border-radius: 12px;
}

.activated:after {
  content: "\2212";
}

.content {
  padding-left: 3px;
  padding-right: 3px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: transparent;
  border-radius: 12px;
  z-index: 0;
  color: #ffffff;
}

.content p {
  color: green;
}

/* Collapsible in Project */

/* Collapsibles op de templates pagina */

.collapsible2 {
  background-color: #151d27;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  height: 56px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 12px;
  z-index: 1;
  margin-top: 16px;
}

.collapsible2.activated {
  border-radius: 12px 12px 0px 0px;
}

.activated,
.collapsible2:hover {
  background-color: #151d27;
}

.collapsible2:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  border-radius: 15px 15px 0px 0px;
}

.activated:after {
  content: "\2212";
}

.content2 {
  padding-top: 0px;
  padding-left: 8px;
  padding-right: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #151d27;
  border-radius: 0px 0px 15px 15px;
  z-index: 0;
}

.content2 p {
  color: rgb(255, 255, 255);
}

.downloadoverzicht {
  width: 100%;
}

.downloadonderdeel {
  width: 49%;
  float: left;
}

.downloadonderdeel2 {
  width: 49%;
  float: right;
}

.project-box h3 {
  color: white;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.onderhoud h1 {
  font-size: 3ch;
  color: white;
  margin: 0px;
}

.onderhoud h3 {
  color: white;
}

.onderhoud {
  max-width: 700px;
  margin-left: 5px;
}

.label {
  box-sizing: border-box;
  white-space: nowrap;
  border-radius: 0.2em;
  padding: 0.12em 0.4em 0.14em;
  margin: 0 0.42em;
  text-align: center;
  color: #ffffff;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  display: inline;
  white-space: nowrap;
  vertical-align: baseline;
  position: relative;
  top: -0.15em;
  background-color: #FF8900; 
}

.label.color-blue { background-color: #6f9ad1; }
.label.color-red { background-color: #FE4A41; }
.label.color-green { background-color: #23B73E; }
.label.color-grey { background-color: #999999; }
.label.color-yellow { background-color: #e9d641; }
.label.color-purple { background-color: #9f83d1; } 

.project-box-wrapper1 h1 {
  margin-top: -10px;
  color: var(--main-color);
}

.project-box-wrapper1 {
  padding: 8px;
  transition: 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.project-box-wrapper1 p {
  color: var(--app-container);
}

.project-box-wrapper1 h3 {
  color: var(--main-color);
  margin-top: 0px;
}

.project-box-wrapper2 h1 {
  margin-top: -10px;
  color: var(--main-color);
}

.project-box-wrapper2 {
  padding: 8px;
  transition: 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.project-box-wrapper2 p {
  color: var(--app-container);
}

.project-box-wrapper2 h3 {
  color: var(--main-color);
  margin-top: 0px;
}

.btn {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  float: right;
  margin-top: -8px;
  border: none;
}
.btn:hover {
  background-color: var(--projects-section);
  color: var(--logo-color);
}

.btn2 {
  outline: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  float: right;
  margin-top: -8px;
  border: none;
  margin-right: 5px;
}
.btn2:hover {
  background-color: var(--projects-section);
  color: var(--logo-color);
}

.btn3 {
  outline: none;
  padding: 8px 16px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  float: right;
  margin-top: -8px;
  border: none;
  border-radius:8px; 
  margin-right:0px;
}
.btn3:hover {
  background-color: var(--projects-section);
  color: var(--logo-color);
}

.badge {
  background-color: #21CC3F;
  color: white;
  padding: 4px 8px;
  margin: 15px;
  text-align: center;
  border-radius: 10px;
  font-size: medium;
  position: absolute;
  right: 0;
  top: 0;
}

.badge2 {
  background-color: #21CC3F;
  color: white;
  padding: 4px 8px;
  margin: 15px;
  text-align: center;
  border-radius: 10px;
  font-size: x-small;
  position: absolute;
  margin-left: 45px;
  margin-bottom: 45px;
}

.toast{
  position: absolute;
  top: 25px;
  right: 30px;
  border-radius: 12px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  border-left: 6px solid #21CC3F;
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  z-index: 1;
}

.toast.active{
  transform: translateX(0%);
}

.toast .toast-content{
  display: flex;
  align-items: center;
}

.toast-content .check{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: #21CC3F;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-content .message{
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text{
  font-size: 20px;
  color: #141c288e;
  font-size: medium;
}

.message .text.text-1{
  color: #141C28;
  font-size: medium;
}

.toast .close{
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast .close:hover{
  opacity: 1;
}

.toast .progress{
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ddd;
}

.toast .progress:before{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: var(--my-color-var);
}

.progress.active:before{
  animation: progress 3s linear forwards;
}

@keyframes progress {
  100%{
      right: 100%;
  }
}

.toast.active ~ .toastbutton {
  pointer-events: none;
}

.tooltip {
  position: relative;
  float: right;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #1E2634;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 110%;
  padding-left: 5px;
  padding-right: 5px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  margin-right: 10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #1E2634;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  animation: fadeIn 0.6s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.overheen {
  background-color: #141C28;
  color: white;
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 20px;
  margin-top: -74px;
  z-index: 1;
}

.box-admin-portaal svg {
  right: 0;
  opacity: 20%;
  margin-top: 25px;
  margin-bottom: 10px;
  margin-right: 20px;
  margin-left: 300px;
  position: absolute;
  z-index: 1;
  height: 150px;
  padding-right: -10px;
  float: inline-start;
}

.templatesbox {
  background-color: #151d27;
  color: white;
  padding: 10px;
  padding-left: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  height: auto;
}

.templatesbox span {
  float: right;
  padding: 5px;
  position: inherit;
  border-radius: 5px;
}

.templatesbox p {
  color: white;
  margin-top: 5px;
  margin-left: 5px;
  margin-bottom: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

.footertemplatesbox {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
  margin-left: 5px;
  position: relative;
}

.footertemplatesbox p {
  font-size:small; 
  color:#ffffffb2;
  margin-bottom: 0px;
  margin-top: 10px;
}

.btn3 {
  outline: none;
  padding: 8px 16px;
  font-size: small;
  font-weight: 400;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  float: right;
  border: none;
  border-radius: 8px;
  margin-top: 8px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.btn3:hover {
  background-color: var(--projects-section);
  color: var(--logo-color);
}

.subheader-admin {
  float: left !important;
  font-size: small !important;
  margin-top: -15px !important;
  opacity: 70% !important;
  width: 100% !important;
  margin-bottom: 20px !important;
}

.auth-status {
  height: 100%;
  width: 100%;
  position:absolute;
  align-items: center;
  text-align: center;
  z-index: 2;
  background-color: var(--app-container);
  color: white;
  padding: 50px;
  display: inline;
}

.auth-status i {
  opacity: 60%;
  font-size: small;
}

.auth-status p {
  font-size: large;
}

.pagination-bar {
  margin-top: -5px;
  padding-top: 0px;
  width: fit-content;
  justify-content: space-between;
}

.pagination-bar button {
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  font-weight: bold;
  text-align: center;
  width: 1.6em;
  height: 1.6em;
  line-height: 0.1em;
  font-family: 'Sen', sans-serif;
  background-color: var(--logo-color);
  color: var(--tekst-in-button);
  border: 2px solid transparent;
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin-top: 4.5px;
  margin-left: 5px;
}

.pagination-bar button:first-child {
  margin-left: 0px;
}

.pagination-bar button:hover {
  background-color: var(--link-color-hover);
  color: var(--link-color-active);
}