﻿:root {
  /* Theme */
  --theme-color-light: #E5F6E2;
  --theme-color-dark: #265b1b;
  --theme-color-text: #000000;
  /* Misc */
  --context-menu-width: 320px;
  --text-color-light: white;
}

html, body {
  margin: 0 0 0 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  position: relative;
}

body {
  min-width: 1280px;
}

  html.dialog body, body.noheader {
    min-width: initial;
  }

body, input, select, textarea, .popupMessage {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #323840;
}


html.dialog {
}

  html.dialog.select a {
    text-decoration: none !important;
  }

  html.dialog .pageMainContent {
    padding-left: 16px;
    padding-bottom: 0;
  }

:focus {
  outline-color: #00b0f0;
}

.button:focus {
  outline: none;
}

form {
  margin-bottom: 0;
}


h1, h2 {
  font-weight: normal;
  color: #00b0f0;
}

.ctlSpinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #00b0f0;
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

h2 {
  font-size: 150%;
}

  h2:first-child {
    margin-top: 0;
  }



h3 {
  text-align: center;
}

table {
  font-size: 14px;
}

input.fraction, input.decimal.alignRight, input.integer.alignRight {
  text-align: right;
}

span.alignRight {
  display: inline-block;
  width: 100%;
  text-align: right;
}

#menu {
  width: 100%;
  font-size: 16px;
}

  #menu > ul {
    margin: 0 auto;
    display: inline-block;
  }

  #menu ul {
    padding: 0;
  }

  #menu li {
    display: inline-block;
    float: left;
  }

  #menu > ul > li {
    position: relative;
  }

  #menu li a {
    display: block;
    text-align: center;
    color: #323840;
    text-decoration: none;
    margin-bottom: -1px;
  }

  #menu > ul > li > a {
    height: 34px;
    line-height: 34px;
    width: 120px;
    margin-left: 24px;
    background-color: white;
    margin: 1px 0 1px 24px;
  }

  #menu > ul > li > ul {
    margin-left: 24px;
    margin-top: -1px;
  }


  #menu li:hover > a {
    z-index: 5000;
    background: var(--theme-color-dark);
    color: var(--text-color-light);
  }

  #menu li ul a {
    background: #ffffff;
    color: #707868;
    height: 46px;
    line-height: 46px;
    text-align: left;
  }

  #menu li:hover ul a:hover {
    background: var(--theme-color-light);
    color: var(--text-color-dark);
  }

  #menu li ul {
    max-height: 0;
    transition: max-height .2s;
    overflow: hidden;
    position: absolute;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 5000;
  }

    #menu li ul li {
      min-width: 150px;
      width: 100%;
    }

      #menu li ul li a {
        padding: 0 10px;
        color: rgba(0, 0, 0, 0.3);
        display: block;
      }

        #menu li ul li a[href], #menu li ul li a[data-click] {
          color: rgba(0, 0, 0, 0.8);
          cursor: pointer;
        }

  #menu ul li a:hover + .dropdown, #menu .dropdown:hover {
    max-height: inherit;
  }

  #menu a:focus {
    outline: none;
  }

.menuContainer {
  display: grid;
  grid-template-columns: 1fr min-content;
  justify-items: start;
  align-items: center;
}

  .menuContainer .logo {
    vertical-align: bottom;
    max-height: 85px;
    margin-left: 8px;
  }

  .menuContainer .currentAccount {
    white-space: nowrap;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    background-color: white;
    margin-right: 24px;
    padding: 0 20px;
  }


.error {
  font-style: italic;
  padding-top: 2px;
  padding-bottom: 4px;
  background-color: #203864;
  margin-bottom: 20px;
  color: white;
}

  .error:empty {
    height: 0;
    margin: 0;
    padding: 0;
  }

.pnlHeader {
  display: grid;
  grid-template-columns: min-content 1fr min-content 0;
  grid-template-rows: 72px;
  background-color: var(--theme-color-light);
}

.pnlContextTitle {
  min-width: var(--context-menu-width);
  background-color: var(--theme-color-dark);
  color: var(--text-color-light);
  font-size: 16px;
  padding-left: 24px;
  padding-right: 16px;
  display: grid;
  align-items: center;
  justify-items: start;
  box-sizing: border-box;
}

.pnlLogo {
  width: var(--context-menu-width);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 3px solid var(--theme-color-dark);
}

  .pnlLogo .logo {
    margin: 0;
    height: 90%;
    max-width: 95%;
  }



.pnlContextMenu {
  width: var(--context-menu-width);
  min-height: 100%;
  background-color: var(--theme-color-light);
  padding-top: 24px;
  grid-template-rows: 1fr min-content;
  display: grid;
  box-sizing: border-box;
}

  .pnlContextMenu, .pnlContextMenu input {
    font-size: 16px;
  }

    .pnlContextMenu .section:not(:first-child) {
      padding-top: 32px;
    }


    .pnlContextMenu .section a {
      display: block;
      padding: 6px 8px;
      margin: 2px 16px;
      white-space: nowrap;
      color: var(--theme-color-text);
    }

      .pnlContextMenu .section a.selected {
        background-color: white;
      }

    .pnlContextMenu .section.indented > a {
      padding-left: 40px;
    }

    .pnlContextMenu .section h3 {
      font-size: 16px;
      font-weight: bold;
      text-decoration: underline;
      text-align: left;
      margin: 0 24px 8px 24px;
    }


    .pnlContextMenu .pnlContextActionsPlaceholder {
      min-height: 108px;
    }

    .pnlContextMenu .pnlContextActionsContainer {
      position: fixed;
      width: 320px;
      left: 0;
      bottom: -1px;
      padding-top: 8px;
      background-color: var(--theme-color-light);
      box-shadow: none;
      transition: box-shadow .15s ease-in;
    }

    .pnlContextMenu .pnlContextActions {
      margin-left: 16px;
      margin-right: 16px;
      padding-bottom: 10px;
    }

      .pnlContextMenu .pnlContextActions input {
        text-align: left;
        padding-left: 16px;
        text-transform: none;
        width: 100%;
      }

      .pnlContextMenu .pnlContextActions.row {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
        grid-column-gap: 10px;
        padding-bottom: 10px;
      }

        .pnlContextMenu .pnlContextActions.row:last-child {
          padding-bottom: 16px;
        }


        .pnlContextMenu .pnlContextActions.row > .fullWidth {
          grid-column: 1/3;
          text-align: center;
          padding-left: 0;
        }

.pageContainer.scrolling .pnlContextMenu .pnlContextActionsContainer {
  box-shadow: 0 -1px rgba(0, 0, 0, 0.1);
}


.pageContainer.fullScreen .pnlContextMenu {
  width: 0;
  overflow: hidden;
  height: 1px; /* Important, otherwise it forces a vertical scrollbar on small screen size when there is a large invisible menu */
}

  .pageContainer.fullScreen .pnlContextMenu .pnlContextActionsContainer {
    position: initial; /* Disable floating "fixed" style context menu */
  }


.pageContainer.fullScreen .pageMainContent {
  padding-top: 0;
}

.pageContainer:not(.fullScreen) .pnlNavigation {
  height: 0;
  overflow: hidden;
}

.pageContainer:not(.fullScreen) .headerContent .title {
  display: none;
}




.pnlNavigation {
  display: flex;
  margin-top: 16px;
}

  .pnlNavigation .button {
    padding-left: 16px;
    display: inline-block;
    width: 148px;
    font-size: 16px;
    margin-right: 10px;
    text-align: left;
  }

    .pnlNavigation .button.wide {
      width: auto;
      padding-right: 16px;
    }

.pnlContextMenu.mogelijkheden .section a {
  padding: 6px 0 6px 8px;
  margin: 2px 0 2px 16px;
}

.pnlContextMenu.levenstestament .section:not(:first-child) {
  padding-top: 70px;
}

.pnlContextMenu.levenstestament .section .topic {
  font-weight: bold;
  margin-bottom: 10px;
}



.pnlTitel {
  margin-bottom: 16px;
}

  .pnlTitel h1 {
    margin: 0;
    margin-bottom: 8px;
    text-decoration: underline;
    color: var(--text-color-dark);
    display: inline-block;
  }

  .pnlTitel > *:not(h1) {
    position: relative;
    top: -4px;
  }

  .pnlTitel .button {
    font-size: 16px;
    margin-left: 12px;
  }

    .pnlTitel .button.autosize {
      width: auto;
      padding-left: 24px;
      padding-right: 50px;
    }

.vspacer {
  display: block;
  height: 40px;
}

.formView .vspacer {
  height: 20px;
}

.button {
  border: none;
  background-color: #00b0f0;
  color: white;
  width: 12em;
  padding: 6px;
  cursor: pointer;
  border-radius: 5px;
  transition: all .15s ease-in;
}

  .button:hover, .button:focus {
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.25);
  }

  .button.clicked {
    opacity: 0.3;
  }

  .button:disabled, .button.disabled {
    cursor: default;
    opacity: 0.2;
    pointer-events: none;
  }

a.button.navigation {
  display: inline-block;
  white-space: nowrap;
  min-width: fit-content;
  padding-left: 1em;
  padding-right: 1em;
}

h2 .button {
  width: auto;
  margin-left: 80px;
}

.debugButton {
  display: none;
}

.pageContainer.fullScreen .mainContent.demo,
.pageContainer:not(.fullScreen) .mainContent.demo .pageMainContent {
  background-image: url(/Content/Images/DemoWeb.png);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
}


/* "Sticky footer style" bottom navigation */
/* --------------------------------------- */
.mainContent {
  /*  display: flex;
  flex-direction: column;
  height: 100%;
  height: calc(100% - 110px);
*/
}

  .mainContent.hasHeader {
    /*    height: calc(100% - 190px);
*/
  }

.pageContainer {
  min-height: 100%;
  display: grid;
  grid-template-rows: min-content 1fr;
}

.pageContent {
  min-height: 100%;
  display: grid;
  grid-template-columns: min-content 1fr;
}

.pageMainContent {
  display: grid;
  grid-template-rows: min-content min-content 1fr min-content;
  padding: 20px 20px 16px 36px
}

/* --------------------------------------- */

.login {
  background-color: #eceff5;
}


  .login .logo {
    margin-bottom: 20px;
    margin-top: 20px;
    max-height: 100px;
    max-width: 200px;
  }

  .login h1 {
    margin-bottom: 40px;
  }

  .login .window {
    background-color: white;
    text-align: center;
    padding: 40px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .login input {
    border: 0;
    border-bottom: 1px solid lightgrey;
    font-size: 14px;
    width: 20em;
    margin-bottom: 20px;
    padding: 10px 8px 2px 8px;
  }

  .login .subscript {
    margin-bottom: -32px;
    margin-right: -28px;
    padding-top: 12px;
    font-size: 90%;
    text-align: right;
  }

    .login .subscript a {
      color: #00b0f0;
    }

  .login .button {
    margin-top: 30px;
    width: 14em;
    padding: 8px;
  }

.logo {
  margin-top: 4px;
}


.headerContent {
}

  .headerContent .title {
    background-color: #00b0f0;
    padding-left: 24px;
    padding-bottom: 3px;
    margin-top: 4px;
    margin-bottom: 24px;
  }

    .headerContent .title h1 {
      width: 100%;
      color: black;
      display: inline-block;
      font-size: 17px;
      margin: 5px 0;
    }

    .headerContent .title button, .headerContent .title input[type=submit],
    .pageMainContent .btnNotes, .pageMainContent .btnDebug {
      float: right;
      border: none;
      width: 32px;
      height: 32px;
      background-color: transparent;
      margin-right: 10px;
      margin-top: 3px;
      cursor: pointer;
    }

  .headerContent .btnNotes, .pageMainContent .btnNotes {
    background-image: url(/Content/Images/32/edit.png);
  }

  .headerContent .btnDebug, .pageMainContent .btnDebug {
    background-image: url(/Content/Images/32/examine.png);
    display: none;
  }

  .headerContent .title button:focus {
    outline: 0;
  }

.pageMainContent .btnNotes {
  margin-top: -16px;
  margin-left: 16px;
  margin-right: -10px;
}

.fullScreen .pageMainContent .btnNotes {
  display: none;
}

.mainContent {
  /*  padding-left: 16px;
  padding-right: 16px;
*/
}

  .mainContent .pnlGlobalNotes {
    display: none;
  }

.pnlGlobalNotes textarea {
  height: 100%;
  width: 100%;
}

.gridView {
}

  .gridView td > span.prefix {
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
  }

  .gridView thead tr, .gridView thead a, .gridView thead a:visited {
    font-weight: bold;
    color: #323840;
    text-decoration: none;
    text-align: left;
  }

  .gridView.canDelete thead tr th:first-child {
    padding-left: 30px;
  }


  .gridView thead th.sorted .sortIcon {
    display: inline-block;
    padding-top: 2px;
    vertical-align: top;
    width: 16px;
    font-size: 80%;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 4px;
  }

  .gridView thead th.sorted.descending .sortIcon::before {
    content: '\25BC';
  }

  .gridView thead th.sorted.ascending .sortIcon::before {
    content: '\25B2';
  }

  .gridView, .gridView tfoot td {
    border: none;
  }

    .gridView th, .gridView td {
      border: none;
      white-space: nowrap;
      padding: 1px 8px 1px 8px;
      vertical-align: top;
    }

    .gridView tbody tr {
      background: none;
    }


    .gridView .footer td {
      padding-top: 2px;
    }

      .gridView .footer td .totalCount {
        margin-left: 16px;
        font-weight: bold;
      }

    .gridView a {
      transition-duration: .3s;
    }

      .gridView a:hover {
        transition-duration: .1s;
      }


    .gridView tbody tr:hover {
      background-color: rgba(0, 176, 240, 0.25);
    }

    .gridView thead a:hover {
      color: #203864;
    }


    .gridView tfoot a:hover {
      opacity: 0.7;
    }

    .gridView .pager {
      display: inline-block;
    }


      .gridView .pager a, .gridView .pager span {
        display: inline-block;
        padding: 1px 6px 1px 6px;
        min-width: 14px;
        font-weight: normal;
        text-align: center;
        text-decoration: none;
        color: #384032;
      }

      .gridView .pager a {
        background-color: var(--theme-color-light);
        color: var(--text-color-dark)
      }

      .gridView .pager span {
        background-color: var(--theme-color-dark);
        color: var(--text-color-light);
      }

    .gridView .totalRows {
      float: right;
    }

    .gridView .total {
      font-weight: bold;
    }

    .gridView thead .filter td {
      padding: 0;
      background-color: #f8f8ff;
      /*background-image: url("/Content/Images/16/filter.png");
      background-repeat: no-repeat;
      background-position: right 2px center;*/
    }

    .gridView .filter input, .gridView .filter select {
      width: 100%;
      display: block;
      border-radius: 0;
      border: none;
      margin: 0 0 0 1px;
      padding: 2px 2px 2px 8px;
      box-sizing: border-box;
      background: none;
      font-style: italic;
      opacity: 0.8;
    }

    .gridView .filter select {
      /* Hide dropdown arrow, firefox and chrome */
      -moz-appearance: none;
      -webkit-appearance: none;
    }

      .gridView .filter select::-ms-expand {
        /* Hide dropdown arrow, IE-10+ */
        display: none;
      }

    .gridView .filter {
      font-weight: bold;
    }

    .gridView .document {
      display: inline-block;
      margin-right: 20px;
    }

    .gridView.select tbody td {
      cursor: pointer;
    }

    .gridView.edit tbody td {
      padding: 0 0 0 1px;
      margin: 0;
      position: relative;
    }

      .gridView.edit tbody td input[type=text],
      .gridView.edit tbody td input[type=search],
      .gridView.edit tbody td .inputSizer,
      .gridView.edit tbody td a,
      .gridView.edit tbody td .readonly.value,
      .gridView.edit tbody td .ctlEnumRadio,
      .gridView.edit tbody td .ctlTextInput {
        width: 100%;
        min-height: 28px;
        box-sizing: border-box;
        margin: 0;
        padding: 0 8px 0 8px;
        border-radius: 0;
        border: none;
        background: none;
      }

      .gridView.edit tbody td .ctlTextInput {
        padding: 0;
      }

      .gridView.edit tbody td .ctlEnumRadio {
        display: inline-block;
        padding-top: 3px;
      }

      .gridView.edit tbody td .ctlEnumList {
        border: none;
        min-height: 28px;
        padding: 0 3px 0 3px;
        background: none;
        width: 100%;
      }

      .gridView.edit tbody td .readonly.value {
        display: inline-block;
        padding-top: 5px;
      }

      .gridView.edit tbody td input[readonly=readonly] {
        color: #323840;
      }

      .gridView.edit tbody td .inputSizer {
        width: auto;
        font-size: 14px;
        visibility: hidden;
        display: block;
        left: 0;
        top: 0;
        margin-top: -22px;
        min-height: 0;
        padding-bottom: 5px;
      }

      .gridView.edit tbody td input[type=radio] {
        margin-right: 4px;
        margin-left: 15px;
      }

        .gridView.edit tbody td input[type=radio] + label {
          vertical-align: top;
        }

        .gridView.edit tbody td input[type=radio]:first-child {
          margin-left: 0;
        }

      .gridView.edit tbody td input::-ms-clear {
        display: none;
      }

    /*.gridView.edit tbody tr {
      background-color: white;
    }*/

    /*.gridView.edit tbody tr:hover {
        background-color: rgba(96, 133, 204, 0.05);
      }*/

    .gridView.edit.readonly tbody tr:nth-child(odd) {
      background-color: rgba(245, 245, 245, 0.5);
    }

    .gridView.edit.readonly tbody tr:nth-child(even) {
      background-color: rgba(245, 245, 245, 1.0);
    }

    .gridView.edit .action.inline {
      padding-top: 6px;
    }

    .gridView.edit tbody td > a {
      display: inline-block;
      margin-top: 5px;
    }



.formView {
}

  .formView .row {
    min-height: 28px;
  }

    .formView .row label {
      vertical-align: top;
    }

      .formView .row label:first-child {
        width: 150px;
        display: inline-block;
      }

  .formView input[type=radio] + label {
    margin-right: 8px;
    min-width: 40px;
    display: inline-block;
  }

.flexContainer {
  display: flex;
  flex-wrap: nowrap;
}

  .flexContainer.center {
    height: 100%;
    align-items: center;
    justify-content: center;
  }

  .flexContainer .flexColumn {
    flex: 1;
  }

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.tblEmails th {
  text-align: left;
  padding-right: 14px;
}

.tblEmails .colVerzonden {
  padding-left: 16px;
}

.pnlEmailDashboard {
}

  .pnlEmailDashboard.twoColumns {
    grid-template-columns: 780px minmax(auto, 1280px);
    height: 100%;
  }

  .pnlEmailDashboard h2 .button {
    width: 12em;
  }

  .pnlEmailDashboard .twoRows {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    grid-row-gap: 16px;
    min-height: 500px;
    max-height: calc(100vh - 175px);
  }

  .pnlEmailDashboard .ctlMailbox {
    width: 100%;
    overflow-y: auto;
  }

body.noheader .pnlEmailDashboard .twoRows {
  max-height: calc(100vh - 80px);
}

a, a:visited {
  text-decoration: none;
  color: black;
}

  a:hover:not(.aspNetDisabled) {
    text-decoration: underline;
  }

  a.clicked {
    opacity: 0.3;
  }

.toolbar.top {
}

  .toolbar.top a.button {
    display: inline-block;
    min-width: 12em;
    text-align: center;
  }

  .toolbar.top.active {
    margin-bottom: 20px;
  }



.bottomBar {
}

  .bottomBar input:not(:first-child) {
    margin-left: 6px;
  }


.customToolbar {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 10px;
  font-size: 17px;
  margin-top: 4px;
  margin-bottom: 24px;
}

  .customToolbar .button {
    padding-left: 16px;
    text-transform: none;
    white-space: nowrap;
    border-radius: 0;
    width: initial;
  }

  .customToolbar a, .customToolbar a:hover, .customToolbar a:visited {
    text-decoration: none;
  }

.action.inline {
  margin-right: 8px;
  vertical-align: top;
  padding-top: 2px;
  transition: opacity 0.5s linear;
}

.hoverAction {
  display: inline-block;
}

  .hoverAction .action {
    opacity: 0;
  }

  .hoverAction:hover .action {
    opacity: 1;
    cursor: pointer;
  }

.readonly.hoverAction:hover .action {
  opacity: 0;
}

.gridView tr.hoverAction {
  display: table-row;
}

.gridView td.hoverAction {
  display: table-cell;
}

input[readonly=readonly]:not(.popup) {
  color: #A0A0A0;
}

  input[readonly=readonly]:not(.popup):focus {
    outline: none;
  }

.hidden {
  display: none !important;
}

.internal {
}

.tblErfbelasting {
  border-collapse: collapse;
}

  .tblErfbelasting th, .tblErfbelasting td {
    text-align: right;
    padding-left: 50px;
  }

@media (max-width: 1600px) {
  .tblErfbelasting th, .tblErfbelasting td {
    padding-left: 10px;
  }

  .pageMainContent {
    padding-left: 24px;
  }
}


.tblErfbelasting th:first-child, .tblErfbelasting td:first-child {
  text-align: left;
  padding-left: 0;
}

.tblErfbelasting td {
  border-top: 1px solid black;
  vertical-align: top;
  padding-bottom: 16px;
}

.tblErfbelasting tr.total td {
  border-top: none;
}

.tblErfbelasting tr.total.subtotal td {
  padding-bottom: 4px;
}

.tblErfbelasting .colResterend {
  font-style: italic;
  opacity: 0.8;
}

.ctlMessage {
  display: block;
  padding: 6px 8px 6px 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

  .ctlMessage.notification {
    background-color: cornsilk;
    margin-top: -8px;
    margin-bottom: 8px;
  }

  .ctlMessage ul {
    margin: 0;
    padding-left: 20px;
  }

.ctlHTMLView {
  border: 1px solid rgb(204, 204, 204);
  overflow-y: scroll;
  padding: 16px;
}

  .ctlHTMLView p {
    margin: 0;
    padding: 0;
  }

.ctlDateTime {
}

  .ctlDateTime .input.date {
    width: 82px;
  }

  .ctlDateTime .input.time {
    margin-left: 4px;
    width: 48px;
  }

.ctlDropdown {
  position: relative;
  display: inline-block;
}

  .ctlDropdown a {
    padding: 6px 2px;
  }


  .ctlDropdown .dropdown-content {
    display: none;
    position: absolute;
    left: -15px;
    top: 22px;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
  }

    .ctlDropdown .dropdown-content a {
      color: black;
      padding: 12px 16px;
      display: block;
      white-space: nowrap;
    }

      .ctlDropdown .dropdown-content a:hover {
        /*background-color: #ddd;*/
      }

  .ctlDropdown:hover .dropdown-content {
    display: block;
  }


.ctlSingleSelect {
  display: inline-block;
}

  .ctlSingleSelect .button {
    border-radius: 0;
    padding: 3px;
    width: 2em;
    min-width: unset;
  }

  .ctlSingleSelect .ctlInput, .ctlSingleSelect .ctlSelection, .ctlSingleSelect .options {
  }

.ctlHoogteKleinkindlegaat {
  display: inline-block;
  width: 500px;
}

  .ctlHoogteKleinkindlegaat input.colBedrag, .ctlHoogteKleinkindlegaat input.colMaxBedrag {
    text-align: right;
    width: 140px;
  }

  .ctlHoogteKleinkindlegaat input.colMaxBedrag {
    position: absolute;
    left: 352px;
    top: -2px;
  }

  .ctlHoogteKleinkindlegaat input:not(:last-of-type) {
    margin-bottom: 8px;
  }

.ctlBedragOnbeperkt {
  display: inline-block;
}

  .ctlBedragOnbeperkt input[type=checkbox] {
    margin-left: 32px;
  }

.halfSize {
  max-width: 50%;
  image-rendering: -webkit-optimize-contrast;
}

.fullSize {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.ctlPersonen {
}

  .ctlPersonen .pnlSelecteren {
    display: none;
  }

  .ctlPersonen .button, .pnlSelecteren .button {
    display: block;
    padding: 4px;
    width: 8em;
  }

  .ctlPersonen.singleSelect .pnlSelectie .button {
    display: inline-block;
    padding: 4px;
    width: 8em;
  }

.ctlPersonenUitgebreid .toonMinderjarig {
}


.ctlImageUpload {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 250px;
  height: 120px;
  font-size: 13px;
  color: #00b0f0;
  border: 2px dashed grey;
  padding: 10px 3px 0 3px;
  transition: all .2s ease-in;
}

  .ctlImageUpload.dragover {
    background-color: #00b0f0;
    color: white;
    border-style: solid;
  }

  .ctlImageUpload > .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }

  .ctlImageUpload > label.button {
    display: inline-block;
  }

  .ctlImageUpload > .imgContainer {
    position: absolute;
    pointer-events: none;
    transition: all .2s ease-in;
    background-color: white;
    z-index: 10;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

    .ctlImageUpload > .imgContainer > img {
      position: absolute;
      max-width: 100%;
      max-height: 100%;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 15;
    }

.pnlSelecteren .btnOK {
  margin-top: 20px;
  float: right;
}

.ctlPersonenSelectie {
  display: none;
}

.twoColumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ctlDebug {
  display: none;
}

  .ctlDebug .twoColumns .details {
    border-top: 1px solid #d0d0d0;
    padding-top: 20px;
  }

  .ctlDebug .rowGrandTotal {
    font-weight: bold;
    margin-bottom: 20px;
  }

.pnlSelecteren .row {
  margin: 0 0 4px 0;
}

.pnlSelecteren table.colBeschikbarePersonen th {
  text-align: left;
}

.pnlSelecteren table.colBeschikbarePersonen td, .pnlSelecteren table.colBeschikbarePersonen th {
  padding-left: 20px;
}

.pnlSelecteren table.colBeschikbarePersonen tr td:first-child, .pnlSelecteren table.colBeschikbarePersonen tr th:first-child {
  padding-left: 0;
}

.pnlSelecteren table.colBeschikbarePersonen span.colMinderjarig {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.fieldinstructions {
  font-style: italic;
  margin-top: 10px;
}


.colSelectie {
}

  .colSelectie .gridView {
  }

    .colSelectie .gridView th {
      text-align: left;
      padding-right: 30px;
      border-bottom: 1px solid black;
    }

    .colSelectie .gridView .colNaam {
      min-width: 300px;
    }

.formView.frmGevolmachtigde {
}

  .formView.frmGevolmachtigde .row label:first-child {
    display: block;
    width: auto;
    font-weight: bold;
  }

  .formView.frmGevolmachtigde .row {
    margin-top: 25px;
  }

  .formView.frmGevolmachtigde td > .row:first-child {
    margin-top: 0;
  }

  .formView.frmGevolmachtigde .row label.colMaximaalBedrag {
    display: inline-block;
    width: 250px;
  }

.ctlEnumRadio, .ctlBooleanInput {
  display: inline-block;
}

  .ctlEnumRadio.vertical input[type=radio] {
    float: left !important;
  }

  .ctlEnumRadio.vertical label {
    margin-left: 24px;
    display: table-cell !important;
  }

  .ctlEnumRadio.vertical > br {
    content: " ";
    display: none;
  }

  input.invalid, select.invalid, textarea.invalid, .ctlRadio.invalid, .ctlPersonen.invalid, .ctlHoogteKleinkindlegaat.invalid,
  .ctlBooleanInput.invalid, .ctlBedragOnbeperkt.invalid, .ctlChecklist.invalid, div.invalid {
    border: 1px solid red !important;
  }

tr.rowTestgesprek {
  font-style: italic;
}

.ctlPersonen.invalid {
  padding: 8px;
}

.ctlOptieOnderdrukken {
  display: inline-block;
}

  .ctlOptieOnderdrukken .button {
    width: auto;
    padding-left: 24px;
    padding-right: 50px;
  }

  .ctlOptieOnderdrukken .checkbox {
    width: 19px;
    height: 18px;
    background-color: white;
    display: inline-block;
    margin-left: -42px;
    margin-bottom: -3px;
    pointer-events: none;
  }

    .ctlOptieOnderdrukken .checkbox.checked {
      background-image: url(/Content/Images/svg/checkmark.svg);
      background-size: contain;
    }


.filterPopup {
  display: none;
}

  .filterPopup .row {
    margin-bottom: 4px;
  }

    .filterPopup .row label:first-child {
      display: inline-block;
      min-width: 40px;
    }

  .filterPopup .input.date {
    width: 90px;
  }

  .filterPopup .btnOK {
    width: 60px;
    margin-top: 10px;
    float: right;
  }

  .filterPopup .lnkClear {
    margin-top: 10px;
    font-size: 80%;
    display: inline-block;
    cursor: pointer;
  }


.quickNav {
  margin-bottom: 20px;
  display: table;
}

  .quickNav .row {
    display: table-row;
  }

  .quickNav a {
    display: table-cell;
    white-space: nowrap;
    padding: 4px 25px;
    padding-right: 25px;
    transition: all .15s;
  }

    .quickNav a:hover {
      background-color: #f8f8ff;
      transition: all .15s;
    }

.fileUpload {
}

  .fileUpload > .ctlFileUpload {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }

  .fileUpload > label {
    margin-bottom: 0;
    width: auto !important;
    text-align: center;
  }

iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
}


.ctlMaakVerslag.button {
  font-size: 90%;
  width: 14em;
}

  .ctlMaakVerslag.button.tweevoud {
    width: 16em;
  }

img[src=""] {
  display: none;
}

.sameInputWidth {
}

.fixedWidth {
}

.autosize {
}

.confirm {
}

.clickToEdit {
}

  .clickToEdit .pnlView {
    cursor: pointer;
  }

  .clickToEdit .pnlEdit {
    display: none;
  }

.colSelectedPersonenValue, .colID, .colSelects, .colSelectedBy, .chkSelect, .colGeboortedatum, .colGeslacht, .ctlCommit, .btnSelect,
.ctlContentSource, .actionContainer, .emphasis, .optionDetail {
}



/* JQuery UI adjustments */
.ui-dialog-titlebar {
  background-color: #00b0f0 !important;
}

.noTitle .ui-dialog-titlebar {
  display: none;
}

.ui-datepicker-header {
  background: #f0f0ff !important;
}

.ui-datepicker-calendar a.ui-state-default {
  color: #323840;
  background: #f0f0ff;
  border: 1px solid #f0f0ff;
}

.ui-autocomplete.ui-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 13px;
}

  .ui-autocomplete.ui-widget .ui-menu-item-wrapper.ui-state-active {
    border: none;
    color: #323840;
    background-color: rgba(0, 176, 240, 0.25);
    margin: 0;
  }

/* JQuery-Confirm adjustments */

.jconfirm-closeIcon {
  z-index: 9999;
}

/* Spectrum adjustments */
.colorInput.sp-container {
  background-color: white;
  border: solid 1px #c5c5c5;
}

.colorInput.sp-replacer {
  border: solid 1px #c5c5c5;
  background: white;
  color: #323840;
  vertical-align: middle;
}

  .colorInput.sp-replacer:hover, .colorInput.sp-replacer.sp-active {
    border-color: #c5c5c5;
    color: #323840;
  }

.sp-replacer.sp-disabled {
  border-color: silver;
  color: silver;
}

.colorInput .sp-preview {
  border: solid 1px #999;
}

.colorInput .sp-cancel {
  color: #f0f0f0 !important;
}

.colorInput .sp-input {
  border: 1px solid #c5c5c5;
}

.colorInput .sp-color, .colorInput .sp-hue, .colorInput .sp-clear {
  border: 1px solid #c5c5c5;
}

.colorInput button.sp-choose, .colorInput button.sp-choose:hover {
  border: none;
  background-image: none;
  text-shadow: none;
  background-color: #00b0f0;
  color: white;
  width: 4em;
  padding: 6px;
  cursor: pointer;
  border-radius: 5px;
  transition: all .15s ease-in;
  text-transform: uppercase;
}

  .colorInput button.sp-choose:hover {
    background-color: #00c8f8;
  }

.ctlTestamentOptie {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  margin-right: 2px;
}

  .ctlTestamentOptie .ctlToegepast {
    max-width: 100%;
    max-height: 100%;
  }

.clickOnce, .nopicker, .value, .enterSubmits {
}

.ctlTextInput {
  display: inline-block;
}

.ctlComboBox {
}


.totalContainer {
}

  .totalContainer .realtime, .totalContainer .currency {
  }

.dropContainer, .dropzone {
}

.first {
}

.sameTop, .validate {
}

.sameColumnWidth {

}

/* Checkbox/radiobutton fixes to compensate for chome  83.0.4103.61+ bright blue styling */
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 13px;
  width: 13px;
  border: 1px solid #323840;
  border-radius: 3px;
  top: 3px;
  opacity: 0.9;
  vertical-align: bottom;
  margin-right: 5px;
  margin-bottom: 6px;
}

/* But not on pre-chromium edge please */
@supports (-ms-ime-align:auto) {
  input[type="checkbox"] {
    border: none;
  }
}

input[type="checkbox"]:disabled {
  border-color: #a0a0a0;
  background-color: #ffffff;
}

input[type="checkbox"]:focus {
  outline: 0;
  box-shadow: 0 0 2px black;
}

input[type="checkbox"]::after {
  content: "";
  display: none;
  color: #323840;
  height: 4px;
  width: 7px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  margin-left: 1px;
  margin-top: 1px;
  opacity: 0.9;
}

input[type="checkbox"]:disabled::after {
  color: #a0a0a0;
}

input[type="checkbox"]:checked::after {
  display: block;
}

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 14px;
  width: 14px;
  border: 1px solid #767676;
  border-radius: 50%;
  top: 3px;
  opacity: 0.9;
}

/* But not on pre-chromium edge please */
@supports (-ms-ime-align:auto) {
  input[type="radio"] {
    -webkit-appearance: radio;
    border: none;
  }
}

input[type="radio"]:disabled {
  border-color: #d1d1d1;
  background-color: #f8f8f8;
}

input[type="radio"]:focus {
  outline: 0;
  box-shadow: 0 0 2px black;
}

input[type="radio"]::after {
  content: "";
  display: none;
  background-color: #323840;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  margin-left: 2px;
  margin-top: 2px;
  opacity: 0.9;
}

input[type="radio"]:disabled::after {
  background-color: #b8b8b8;
}

input[type="radio"]:checked::after {
  display: block;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}
