﻿/* Variables */

:root {
  --main-content-width: 1260px;
  --product-hover-color: #f0f0ff;
  --scrollbarWidth: 24px; /* Set from script, px suffix is important */
  --viewportWidth: calc(100vw - var(--scrollbarWidth));
  --viewportHalfWidth: calc(var(--viewportWidth) / 2);
  --thema-kleur-contrast: #000000;
  --thema-kleur-accent: #000000;
  --thema-kleur-component-tekst: #000000;
}

/* Fonts */

@font-face {
  font-family: 'Roboto';
  src: url(../Fonts/Roboto-Regular.ttf) format('truetype');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url(../Fonts/Roboto-Italic.ttf) format('truetype');
  font-style: italic;
  font-weight: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url(../Fonts/Roboto-Medium.ttf) format('truetype');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Roboto';
  src: url(../Fonts/Roboto-Bold.ttf) format('truetype');
  font-style: normal;
  font-weight: bold;
}

/* Styles */

html, body {
  height: 100%;
  margin: 0 0 0 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  background-color: white;
  font-size: 14px;
}

body, input, select, textarea {
  font-family: Roboto, sans-serif;
  color: #323840;
  font-size: 13px;
}

.mainContent {
  text-align: center;
}

  .mainContent > .center {
    margin: 40px;
    padding: 40px;
    background-color: white;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
  }

.button {
  border: none;
  background-color: #005CA3;
  color: white;
  min-width: 12em;
  padding: 15px;
  cursor: pointer;
  transition: all .15s ease-in;
}

  .button:hover:not([disabled=disabled]) {
    background-color: #00c8f8;
  }

  .button.navigation {
    margin-top: 32px;
    margin-bottom: 10px;
  }

  .button.clicked {
    opacity: 0.3;
  }

  .button[disabled=disabled] {
    opacity: 0.3;
  }

a.button {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.action {
  display: inline-block;
  width: 32px;
  height: 32px;
}

  .action.delete {
    background-image: url("../Images/32/close.png");
  }

    .action.delete.inline {
      background-image: none;
    }

  .action.refresh {
    background-image: url("../Images/32/refresh.png");
  }


  .action.inline {
    width: 16px;
    height: 16px;
  }

  .action.inline {
    margin-right: 8px;
    vertical-align: top;
    margin-top: -2px;
    transition: opacity 0.1s linear;
  }

.hoverAction {
  display: inline-block;
}

  .hoverAction .action.inline {
    opacity: 0;
  }

  .hoverAction:hover .action.inline {
    opacity: 1;
    cursor: pointer;
  }

tr.hoverAction {
  display: table-row;
}

.hidden {
  display: none !important;
}

.error {
  display: block;
  font-style: italic;
  padding-top: 2px;
  padding-bottom: 4px;
  margin-bottom: 10px;
  color: #C02020;
  text-align: left;
  margin-top: 10px;
}

  .error:empty {
    display: none;
  }


.ctlProducts {
  border-collapse: collapse;
}

  .ctlProducts th {
    text-align: left;
    color: #24B8F0;
    font-size: 15px;
  }

  .ctlProducts td {
    vertical-align: top;
    padding: 0;
  }

    .ctlProducts td.colPrijs {
      vertical-align: middle;
    }

    .ctlProducts td.colPrijs, .ctlProducts th.colPrijs {
      padding-left: 15px;
    }

  .ctlProducts > tbody > tr:first-child .ctlProduct {
    margin-top: 0;
  }

@media only screen and (min-width:1280px) {
  .ctlProducts td.colPrijs, .ctlProducts th.colPrijs {
    padding-left: 40px;
  }
}


.ctlProductOptions {
}

  .ctlProductOptions .pnlOptionContainer {
    display: none;
  }

  .ctlProductOptions td {
    padding: 0;
  }

.tblAfmetingen {
  border-collapse: collapse;
}


  .tblAfmetingen td, .tblAfmetingen th {
    padding: 6px 12px;
  }

  .tblAfmetingen th {
    background-color: black;
    color: white;
  }

  .tblAfmetingen td {
    border: 1px solid #e0e0e0;
  }

    .tblAfmetingen td:empty {
      background-color: #e0e0e0;
    }

.ctlCustomRow {
}

  .ctlCustomRow .colOmschrijving {
    margin-left: 24px;
    margin-right: -24px;
  }

  .ctlCustomRow textarea.colOmschrijving {
    margin-left: 24px;
    width: calc(100% - 68px);
    box-sizing: border-box;
    margin-right: -24px;
    min-height: 80px;
    border: 1px solid #f8f8f8;
    border-bottom-color: #e0e0e0;
    padding: 6px 6px;
    border-radius: 5px;
  }


  .ctlCustomRow .colPrijs {
    font-size: 22px;
    background: none;
    border: 1px solid var(--thema-kleur-contrast);
    border-radius: 24px;
    padding: 10px 14px;
    color: var(--thema-kleur-contrast);
    font-weight: bold;
    margin-left: -20px;
    width: 120px;
    text-align: center;
    display: inline-block;
  }


.tblOfferte {
}

  .tblOfferte .colPrijs {
    white-space: nowrap;
    text-align: right;
  }

.ctlProduct {
  display: inline-block;
  width: 234px;
  margin-right: 15px;
  margin-top: 20px;
  vertical-align: top;
  position: relative;
  padding: 4px 10px 0 10px;
  transition: background-color 500ms;
  box-sizing: border-box;
}

  .ctlProduct.empty {
    opacity: 0.5;
  }

  .ctlProduct.standaard {
    opacity: 0.75;
  }

  .ctlProduct.button, .ctlProduct.buttonContainer {
    height: 359px;
  }


  .ctlProduct.button {
    background-color: #f8f8ff;
    color: black;
    border: 1px dashed rgba(0, 0, 0, 0.1);
  }

    .ctlProduct.button:hover {
      background-color: #e0e0ff;
    }

  .ctlProduct.buttonContainer {
    display: flex;
    flex-direction: column;
  }

    .ctlProduct.buttonContainer:hover {
      background: none;
    }


    .ctlProduct.buttonContainer .button {
      flex: 1;
      height: 100%;
      background-color: #f8f8ff;
      color: black;
      border: 1px dashed rgba(0, 0, 0, 0.1);
    }

      .ctlProduct.buttonContainer .button:hover {
        background-color: #e0e0ff;
      }


  .ctlProduct.option {
    margin-top: 10px;
  }

  .ctlProduct.focused {
    background: #f8f8ff;
    transition: background-color 0;
  }

  .ctlProduct .action.delete {
    position: absolute;
    right: -16px;
    top: -16px;
    z-index: 50;
    opacity: 0;
    transition: opacity 100ms;
  }

  .ctlProduct:hover {
    background-color: var(--product-hover-color);
  }

    .ctlProduct:hover .action.delete {
      opacity: 1;
      transition: opacity 500ms;
    }

  .ctlProduct.expanded:hover {
    background-color: var(--product-hover-color);
  }


  .ctlProduct div {
    overflow: hidden;
  }

  .ctlProduct .colTitel {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 15px;
    min-height: 15px;
  }

  .ctlProduct .colAfbeelding {
    margin-bottom: 4px;
    width: 214px;
    height: 120px;
    background-color: rgba(0, 0, 0, 0.1);
  }

    .ctlProduct .colAfbeelding img[src=""] {
      display: none;
    }

    .ctlProduct .colAfbeelding img {
      transition: all .5s ease-in-out;
    }

    .ctlProduct .colAfbeelding:hover img {
      transform: scale(1.15);
    }


  .ctlProduct .colDetails {
    height: 187px;
    box-sizing: border-box;
    font-size: 14px;
    padding: 2px 0;
  }

    .ctlProduct .colDetails .colOmschrijving {
      height: 135px;
      padding: 0 2px;
      line-height: 2.0;
      margin-bottom: 12px;
    }

    .ctlProduct .colDetails .colPrijsOmschrijving {
      height: 12px;
      margin-bottom: 1px;
      font-weight: bold;
      padding: 0 2px;
    }

    .ctlProduct .colDetails .colPrijs {
      min-height: 14px;
      font-weight: bold;
      font-size: 14px;
      color: #0099CC;
      padding: 0 2px;
    }

  .ctlProduct .ctlCheckMark {
    position: absolute;
    right: 0;
    top: 5px;
    cursor: pointer;
    z-index: 10;
  }

    .ctlProduct .ctlCheckMark:not(.mandatory):hover {
      opacity: 0.6;
    }

  .ctlProduct.selected .ctlCheckMark {
    display: block;
  }

  .ctlProduct.expanded {
    background-color: #f4f4fa;
  }

.ctlKeuze {
  display: inline-block;
  width: 234px;
  margin-right: 15px;
  margin-top: 20px;
  vertical-align: top;
  position: relative;
  padding: 4px 10px 0 10px;
  transition: background-color 500ms;
  box-sizing: border-box;
}

  .ctlKeuze:hover {
    background-color: var(--product-hover-color);
  }



  .ctlKeuze .colTitel {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 15px;
    min-height: 15px;
    text-align: center;
  }

  .ctlKeuze .row {
    margin-top: 12px;
    text-align: left;
    font-size: 14px;
  }

    .ctlKeuze .row label {
      font-weight: 500;
      margin-bottom: 2px;
    }

  .ctlKeuze input, .ctlKeuze select, .ctlKeuze textarea {
    box-sizing: border-box;
    min-width: 100%;
    max-width: 100%;
    border: 1px solid #f8f8f8;
    border-bottom-color: #e0e0e0;
    padding: 6px 6px;
    border-radius: 5px;
    font-size: 14px;
  }

  .ctlKeuze input {
    padding: 5px 6px;
  }

    .ctlKeuze input::placeholder {
      opacity: 0.6;
      font-style: italic;
    }

  .ctlKeuze select {
    padding: 4px 4px;
    background-color: white;
  }

  .ctlKeuze textarea {
    width: 100%;
    resize: none;
    margin-right: 14px;
  }

  .ctlKeuze .colInfo {
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../Images/info.svg);
    opacity: 0;
  }

  .ctlKeuze .row.hasInfo .colInfo,
  .ctlKeuze.canEdit .row.hasInfo .colInfo {
    opacity: 0.9;
  }

    .ctlKeuze .row.hasInfo .colInfo:hover {
      opacity: 1;
    }

  .ctlKeuze.canEdit .row .colInfo {
    opacity: 0.3;
  }

  .ctlKeuze .error {
    font-weight: bold;
    color: red;
    font-style: normal;
  }


.ctlProductsRow .ctlKeuze {
  min-height: 250px;
}

  .ctlProductsRow .ctlKeuze.empty {
    opacity: 0.3;
  }

  .ctlProductsRow .ctlKeuze .colInfo {
    position: absolute;
    margin-bottom: -4px;
    margin-top: -3px;
    width: 21px;
    left: -28px;
    height: 21px;
  }



.ctlProductsRowPlaceholder {
  max-height: 0;
  height: 0;
  visibility: collapse;
  overflow: hidden;
  transition: all .15s ease-in-out;
}

  .ctlProductsRowPlaceholder .area {
    border: none;
    box-sizing: border-box;
  }

  .ctlProductsRowPlaceholder.show {
    visibility: visible;
    max-height: none;
    height: 40px;
  }

    .ctlProductsRowPlaceholder.show .area {
      background-color: var(--product-hover-color);
      border: 2px dashed #c0c0e0;
    }

.ctlPageLink {
  white-space: nowrap;
}


.ctlRuimteKeuzes {
  position: relative;
  margin-bottom: 30px;
}


  .ctlRuimteKeuzes .background {
    position: relative;
    width: var(--viewportWidth);
    left: calc(-1 * var(--viewportHalfWidth) + 50%);
    background-color: var(--thema-kleur-contrast);
    padding: 60px 0 60px calc(var(--viewportHalfWidth) - var(--main-content-width) / 2);
    box-sizing: border-box;
  }

  .ctlRuimteKeuzes.empty .background {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ctlRuimteKeuzes .ctlKeuze {
    background-color: #D2DDE6;
    border-radius: 3px;
    padding: 16px 12px;
    display: block;
    width: var(--main-content-width);
    border: 1px solid #e8e8e8;
    margin: 0;
  }

    .ctlRuimteKeuzes .ctlKeuze.empty:before {
      content: "Klik hier om de keuzes voor deze ruimte in te regelen"
    }

    .ctlRuimteKeuzes .ctlKeuze.empty:not(.canEdit) {
      display: none;
    }

  .ctlRuimteKeuzes .colTitel {
    font-size: 22px;
    position: absolute;
    width: 100%;
    top: -43px;
  }

  .ctlRuimteKeuzes .ctlKeuze .row {
    padding: 4px 14px;
    display: grid;
    grid-template-columns: 150px 42px 1fr;
    margin-top: 8px;
  }

    .ctlRuimteKeuzes .ctlKeuze .row label {
      display: inline-block;
      min-width: 200px;
      max-width: 200px;
      font-size: 15px;
      margin-top: 5px;
      margin-bottom: 0;
    }

  .ctlRuimteKeuzes .ctlKeuze select {
    border: none;
    height: 26px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }


  .ctlRuimteKeuzes .ui-selectmenu-button.ui-button {
    border: none;
    background-color: white;
    width: auto;
    padding: 12px 18px;
    margin-top: -8px;
    margin-bottom: 3px;
    border-radius: 0;
  }


  .ctlRuimteKeuzes .ui-widget {
    font-family: 'Roboto';
    font-size: 14px;
  }


/* JQuery customization that needs to be specialized for the control it's in */

.noTitle .ui-dialog-titlebar {
  display: none;
}

.ui-menu {
}

  .ui-menu .ui-menu-item .ui-menu-item-wrapper {
    padding: 12px 12px;
  }

    .ui-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
      background-color: #f2f2f2;
      border-color: #f2f2f2;
      color: black;
    }


.ctlProducts > tbody > tr:first-child .ctlKeuze {
  margin-top: 0;
}


td.colOption {
  background-color: #f4f4fa;
}

.ctlProducts td {
  min-width: 240px;
}

  .ctlProducts td:nth-last-child(2) {
    min-width: 240px;
    max-width: 200px;
  }

@media only screen and (min-width:1280px) {
  .ctlProduct {
    margin-right: 40px
  }
}

.ctlCheckMark {
  background-image: url("/Content/Images/checkMark.png");
  width: 50px;
  height: 48px;
  display: none;
}

.ctlIntro {
}


.ctlSlidePanel {
  width: 350px;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.75);
  transition: width 2s;
  text-align: left;
  padding: 20px 40px;
  box-sizing: border-box;
  color: #F8F8FF;
}

  .ctlSlidePanel.hidden {
    display: block;
    width: 0;
    transition: width 2s;
  }

  .ctlSlidePanel h2 {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin-top: 40px;
  }

    .ctlSlidePanel h2:first-child {
      margin-top: 0;
    }

  .ctlSlidePanel .row {
    margin-top: 10px;
  }

    .ctlSlidePanel .row label {
      margin-right: 20px;
      font-size: 12px;
      vertical-align: middle;
    }

      .ctlSlidePanel .row label.aligned {
        display: inline-block;
        margin-right: 4px;
      }

  .ctlSlidePanel input {
    border: none;
    padding-left: 2px;
    vertical-align: middle;
  }

.ctlProductPanel .pnlButtonRow .button {
  width: 9em;
  margin-left: 0.5em;
}

  .ctlProductPanel .pnlButtonRow .button:first-child {
    margin-left: 0;
  }

.ctlProductPanel .row label {
  display: inline-block;
  min-width: 65px;
}

.ctlProductPanel .row.grid {
  display: grid;
  grid-template-columns: 87px 1fr;
}

.ctlProductPanel .row.checkbox label {
  display: inline-block;
  min-width: 105px;
}

.ctlProductPanel .tblArtikelen {
  margin-top: 16px;
}

  .ctlProductPanel .tblArtikelen td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

    .ctlProductPanel .tblArtikelen td.colNummer {
      max-width: 75px;
    }

    .ctlProductPanel .tblArtikelen td.colNaam {
      max-width: 220px;
    }

  .ctlProductPanel .tblArtikelen tr.rowOptie td {
    font-style: italic;
  }

.ctlBlockPanel {
}

  .ctlBlockPanel .colFrame input {
    width: 220px;
  }

.ctlAlignmentPanel {
}


  .ctlAlignmentPanel .action:disabled {
    opacity: 0.4;
    filter: grayscale(100%);
  }

  .ctlAlignmentPanel .action:hover:not([disabled]) {
    background-color: rgba(0, 0, 0, 0.15);
  }


body {
  text-align: center;
}


.pageHeaderContainer {
  background-color: white;
  width: var(--main-content-width);
  display: inline-block;
}

.page {
}

  .page.header {
    margin-top: 20px;
    height: 100px;
    position: relative;
  }

    .page.header .logo {
      max-height: 100%;
      height: auto;
      position: absolute;
      margin: auto;
      top: 0;
      bottom: 0;
    }

      .page.header .logo.left {
        left: 0;
      }

      .page.header .logo.right {
        right: 0;
      }


  .page.menubar {
    background-color: #005CA3;
    height: 45px;
    color: white;
    font-size: 15px;
  }

    .page.menubar .main {
      width: var(--main-content-width);
      display: inline-block;
      text-align: left;
    }

      .page.menubar .main .menu {
        margin-top: 14px;
        margin-left: 32px;
      }

        .page.menubar .main .menu.manager {
          text-align: right;
        }

        .page.menubar .main .menu a, .page.menubar .main .menu span {
          display: inline-block;
          margin-left: 45px;
          color: white;
          text-decoration: none;
        }

          .page.menubar .main .menu a:first-child {
            margin-left: 0;
          }


          .page.menubar .main .menu a:hover {
            color: #0099CC
          }

  .page.warning {
    background-color: cornsilk;
    text-transform: uppercase;
    color: black;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .page.body {
    position: relative;
    padding-top: 40px;
    width: var(--main-content-width);
    height: 100%;
    display: inline-block;
  }

    .page.body.inDialog {
      width: 100%;
      padding-top: 0;
    }

    .page.body.pageBeheer {
      width: calc(100% - 100px)
    }

.bodyContainer {
  transition: background-color .2s ease-in-out;
}

  .bodyContainer.dragging {
    background-color: #e8e8f0;
  }

    .bodyContainer.dragging .pageHeaderContainer {
      background-color: white;
    }

    .bodyContainer.dragging .page.body {
      background-color: white;
    }


    .bodyContainer.dragging #HeaderContainer.fixed {
      background-color: transparent;
    }


.frame.ui-dialog-content.nopadding {
  padding: 0;
}

.ctlEdit {
  background-color: #ffffA0;
  border: none;
  box-sizing: border-box;
  resize: none;
  overflow-y: hidden;
}

  .ctlEdit:focus {
    outline: none;
  }

.ctlImageUpload {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 214px;
  height: 120px;
  font-size: 13px;
  color: #00b0f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

  .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;
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  .ctlImageUpload > .imgContainer {
    position: absolute;
    pointer-events: none;
    transition: all .2s ease-in;
    background-color: transparent;
    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;
    }

.ctlVideoUpload {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 214px;
  height: 120px;
  font-size: 13px;
  color: #00b0f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

  .ctlVideoUpload.hasVideo {
    background: url("../Images/iconVideo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .ctlVideoUpload.dragover {
    background-color: #00b0f0;
    color: white;
    border-style: solid;
  }

  .ctlVideoUpload > .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }

  .ctlVideoUpload > label.button {
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0;
  }


.ctlVideo {
  max-height: 100%;
  max-width: 100%;
}

.ctlBlock, .ctlBlock.ui-resizable {
  position: absolute;
}

.ctlPrice {
  width: 100px;
  white-space: nowrap;
  border: 1px solid black;
  font-weight: bold;
  font-size: 15px;
  background-color: #EDF7FF;
  margin-top: 20px;
}

.ctlBlock {
  overflow: hidden;
  text-align: left;
  font-size: 15px;
}

  .ctlBlock .colAfbeelding {
    width: 100%;
    height: 100%;
  }

    .ctlBlock > img, .ctlBlock .colAfbeelding img {
      min-width: 100%;
      min-height: 100%;
      max-width: 100%;
      max-height: 100%;
    }

  .ctlBlock.border {
    border: 1px solid black;
    padding: 16px 20px;
  }

    .ctlBlock.border.selected {
      margin: -1px;
    }


  .ctlBlock.frame > .container {
    position: relative;
    width: 100%;
    height: 100%;
  }

    .ctlBlock.frame > .container iframe {
      border: none;
      width: 100%;
      height: 100%;
    }

    .ctlBlock.frame > .container .overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

  .ctlBlock.empty {
    background-color: rgba(0, 0, 0, 0.2);
  }

    .ctlBlock.empty img[src=""] {
      display: none;
    }

  .ctlBlock.canEdit:hover {
    background-color: rgba(0, 0, 255, 0.03);
  }

  .ctlBlock.editing {
    background-color: rgba(0, 0, 255, 0.03);
  }

  .ctlBlock.selected {
    border: 2px solid rgba(0, 0, 255, 0.1);
    margin: -2px;
  }

  .ctlBlock.text p {
    margin: 0;
    white-space: pre-wrap;
  }

  .ctlBlock.text h1 {
    margin-top: 2px;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 24px;
  }

  .ctlBlock.text h2 {
    font-size: 18px;
    width: 100%;
    padding-bottom: 4px;
    margin-top: 0;
    margin-bottom: 8px;
  }

  .ctlBlock.text ul {
    margin-top: 0;
    margin-bottom: 0;
  }

  .ctlBlock .action.delete {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity 100ms;
  }

  .ctlBlock:hover .action.delete {
    opacity: 1;
    transition: opacity 500ms;
  }

  .ctlBlock.link:not(.canEdit) {
    cursor: pointer;
  }

    .ctlBlock.link:not(.canEdit):hover {
      background-color: var(--product-hover-color);
    }

  .ctlBlock.editing .action.delete {
    display: none;
  }

.ctlVideoLightbox {
}

  .ctlVideoLightbox img.btnPlay {
    position: absolute;
    min-width: initial;
    min-height: initial;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    top: 50%;
    left: 50%;
    opacity: 0.2;
    transition: opacity 200ms;
  }

  .ctlVideoLightbox .colAfbeelding:hover .btnPlay {
    opacity: 0.9;
  }



.unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.currency {
}

.multiline {
}

.select {
}

.noselect {
}

.image {
}

.video {
}

.frame {
}

.autosize {
}

.required {
}

/* Administrator menu */
#menu {
  display: block;
  position: fixed;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  background-color: black;
  z-index: 100;
}

  #menu .menuContainer {
    display: inline-block;
    width: var(--main-content-width);
    text-align: left;
  }

    #menu .menuContainer > ul {
      margin: 0 auto;
      display: inline-block;
    }

  #menu ul {
    padding: 0;
  }

  #menu li {
    display: inline-block;
    float: left;
  }

  #menu .menuContainer > ul > li {
    margin-right: 100px;
    position: relative;
  }

  #menu li a {
    display: block;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: white;
    text-decoration: none;
  }

  #menu li:hover > a {
    background: black;
    z-index: 5000;
    color: white;
  }

  #menu li ul a {
    background: #ffffff;
    color: black;
    height: 46px;
    line-height: 46px;
    text-align: left;
  }

  #menu li:hover ul a:hover {
    background: #b0b0b0;
    color: #fff;
  }

  #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;
    margin-top: 3px;
  }

    #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: 600px; /* Manually adjust to max menu size, limit of current menu system */
  }

  #menu a:focus {
    outline: none;
  }

  #menu li a.contextUser {
    padding-left: 23px;
    background-image: url('/Content/Images/24/userToolbar.png');
    background-repeat: no-repeat;
    background-position: left 4px;
  }

/* Beheerder menu */
.menu.management {
  display: block;
  width: 100%;
  text-align: left;
  vertical-align: middle;
  background-color: black;
  color: white;
  padding: 6px 50px;
  z-index: 100;
  font-size: 15px;
}

  .menu.management a {
    color: white;
    text-decoration: none;
    margin-left: 40px;
    display: inline-block;
    padding: 6px 20px;
  }

    .menu.management a:hover {
      background-color: white;
      color: black;
    }

#insertOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 10000;
  cursor: crosshair;
}

.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;
    cursor: pointer;
  }

.pageBeheer {
  margin-bottom: 40px;
}

  .pageBeheer .row {
  }

  .pageBeheer .row {
    min-height: 32px;
  }

  .pageBeheer h2 {
    font-size: 12px;
  }

  .pageBeheer .row label {
    display: inline-block;
  }

    .pageBeheer .row label:first-child {
      min-width: 100px;
      margin-top: 2px;
      vertical-align: top;
    }

  .pageBeheer .row input[type=text] {
    width: 500px;
  }

  .pageBeheer input.button {
    margin-top: 20px;
  }

.pageBeheer, .pageOfferte {
  text-align: left;
}

  .pageBeheer h1 {
    margin-bottom: 20px;
  }

  .pageBeheer .toolbar {
    background-color: rgba(0, 92, 163, 0.2);
    padding: 4px 4px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
  }

  .pageBeheer a:not(.button), .pageBeheer a:hover:not(.button) {
    color: #323840
  }

  .pageBeheer .toolbar .button {
    margin-top: 0;
  }

    .pageBeheer .toolbar .button.right {
      float: right;
    }

  .pageOfferte .row.totaal {
    margin-right: 0;
  }

.row.totaal {
  display: grid;
  grid-template-columns: 1fr 180px;
}

  .row.totaal .colMeerprijsLabel {
    margin-right: 16px;
    text-align: right;
    padding-top: 12px;
  }

  .row.totaal .colMeerprijs {
    text-align: center;
  }



.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-color: white;
    }


    .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: rgba(0, 92, 163, 0.2);
        color: white;
      }

      .gridView .pager span {
        background-color: rgba(0, 92, 163, 0.2);
        color: #384032;
      }

    .gridView .total {
      float: right;
    }

    .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 .document {
      display: inline-block;
      margin-right: 20px;
    }

    .gridView.edit tbody td {
      padding: 0 0 0 1px;
      margin: 0;
      position: relative;
    }

      .gridView.edit tbody td input[type=text],
      .gridView.edit tbody td textarea,
      .gridView.edit tbody td .inputSizer,
      .gridView.edit tbody td .ctlEnumRadio {
        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 .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 input[type=text]:focus {
        background: white;
      }

      .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 .rowError td {
      background-color: #ffa64c;
      text-align: left;
      padding: 5px 10px 5px 40px;
    }

    .gridView td.duplicate {
      background-color: yellow;
    }

    /*.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 tr.readonly input {
      opacity: 0.75;
    }

.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;
  }




h1 {
  color: #24B8F0;
  font-size: 15px;
}


.dropHover {
  background-color: LightGreen !important;
}

.dropzone {
}

.bottom {
}

.number {
}

.date {
}

.clickOnce {
}

.align {
}

.colContextUser, .colOptionID, .ctlSelect, .ctlRuimteActief {
}

input.decimal, input.price.text {
  text-align: right;
}

  input.decimal.alignLeft {
    text-align: left;
  }

.ui-autocomplete-input {
}

.blkInloghulp {
  cursor: pointer;
}

.ctlPageLink {
  color: #24B8F0;
  font-size: 15px;
  margin-top: 20px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

.tblOfferte th {
  color: #24B8F0;
  font-size: 14px;
}


.tblOfferte td.colMeerprijsLabel {
  color: #24B8F0;
  font-weight: bold;
  text-align: right;
  padding-top: 0;
  padding-right: 16px;
}

.row.totaal {
  color: #24B8F0;
  font-weight: bold;
  text-align: right;
  margin: 20px 21px 20px 0;
  font-size: 15px;
  padding-top: 15px;
  position: relative;
}

  .row.totaal:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 560px;
    border-top: 3px double black;
  }


  .row.totaal span {
    display: inline-block;
  }

.pnlFooter {
  position: relative;
}

.pnlAutoFooter {
  position: absolute;
  width: 100%;
  left: 0;
  padding-top: 80px;
}

.ctlImageInput {
  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;
}

  .ctlImageInput.dragover {
    background-color: #00b0f0;
    color: white;
    border-style: solid;
  }

  .ctlImageInput > .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }

  .ctlImageInput > label.button {
    display: inline-block;
  }

  .ctlImageInput > .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;
  }

    .ctlImageInput > .imgContainer > img {
      position: absolute;
      max-width: 100%;
      max-height: 100%;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 15;
    }

.ctlDocumentUpload {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}


.grid {
  display: grid;
}

  .grid.twoColumn {
    grid-template-columns: 1fr 1fr;
  }

#HeaderContainer.fixed {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 150;
  height: 168px;
}

.page.body.fixedHeader {
  margin-top: 168px;
}

.page.body.manager {
  margin-top: 210px;
}

.page.body.fixedHeader.closed {
}

.pnlPriceContainer {
  margin-top: 20px;
  margin-right: 20px;
  display: grid;
}

/* Kozijnen */
.pageNonSanitair {
}

  .pageNonSanitair .title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .pageNonSanitair .ctlProductsRow {
    opacity: 0.5;
  }

    .pageNonSanitair .ctlProductsRow.selected, .pageNonSanitair .ctlProductsRow.copy {
      opacity: 1.0;
    }

  .pageNonSanitair.admin .ctlProductsRow {
    opacity: 1.0;
  }

  .pageNonSanitair .pnlPriceContainer {
    justify-content: end;
  }

  .pageNonSanitair .ctlProducts {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
  }

    .pageNonSanitair .ctlProducts td {
      text-align: left;
      padding-top: 24px;
      min-width: initial;
    }


      .pageNonSanitair .ctlProducts td.colPrijs {
        width: 160px;
        padding-left: 0;
        vertical-align: top;
        margin-top: 20px;
      }

    .pageNonSanitair .ctlProducts .colPrijs .colTitle {
      margin-top: 4px;
      font-weight: bold;
      margin-bottom: 4px;
      font-size: 14px;
      min-height: 14px;
      text-align: left;
      display: none;
      white-space: nowrap;
    }

  .pageNonSanitair .ctlProductsRow.selected .colPrijs .colTitle {
    display: block;
    justify-self: end;
    margin-right: 32px;
  }

  .pageNonSanitair .ctlProducts .ctlProduct, .pageNonSanitair .ctlProducts .ctlKeuze, .pageNonSanitair .ctlProducts .ctlPrice {
    text-align: center;
    margin-left: 14px;
  }

    .pageNonSanitair .ctlProduct:hover, .pageNonSanitair .ctlProducts .ctlKeuze:hover {
      background-color: transparent;
    }

  .pageNonSanitair .ctlProduct .colTitel {
    text-align: left;
    overflow: visible;
    font-size: 17px;
    color: var(--thema-kleur-contrast);
    display: grid;
    grid-auto-columns: max-content;
    grid-template-columns: min-content 1fr;
    align-items: center;
    min-height: 44px;
    margin-top: -16px;
  }

  .pageNonSanitair .ctlProduct .colDetails {
    height: 124px;
    box-sizing: border-box;
    font-size: 13px;
    padding: 2px 0;
  }

    .pageNonSanitair .ctlProduct .colDetails .colOmschrijving {
      height: 72px;
      padding: 0 2px;
      line-height: 2.0;
      margin-bottom: 12px;
    }

  .pageNonSanitair .ctlProduct.view .colAfbeelding {
    height: 200px;
    display: grid;
    align-items: center;
    justify-items: center;
    background-size: cover;
    background-position: center center;
  }

  .pageNonSanitair .ctlProduct.view .colDetails {
    height: 40px;
  }

  .pageNonSanitair .ctlProduct.view .colOmschrijving {
    display: none;
  }

  .pageNonSanitair .ctlProducts .ctlKeuze .colTitel {
    text-align: left;
  }

  .pageNonSanitair .ctlCheckMark {
    position: static;
    background: none;
    margin-right: 15px;
    width: 29px;
    height: 29px;
    border-radius: 99%;
    color: #0d306c;
    border: 1px solid grey;
    display: inline-grid;
    place-content: center;
  }

    .pageNonSanitair .ctlCheckMark:before {
      content: "";
      width: 29px;
      height: 29px;
      margin-left: 1px;
      clip-path: circle(40%);
      transform: scale(0);
      transform-origin: center center;
      transition: 40ms transform ease-in-out;
      color: var(--thema-kleur-contrast);
      box-shadow: inset 28px 28px;
    }

  .pageNonSanitair .ctlProduct.selected .ctlCheckMark {
    display: inline-grid;
  }

    .pageNonSanitair .ctlProduct.selected .ctlCheckMark::before {
      transform: scale(1);
    }

  .pageNonSanitair .ctlProductsRow td {
    border: 1px solid transparent;
  }

  .pageNonSanitair .ctlProductsRow.copy td {
    border: 2px dashed transparent;
    border-top-color: var(--thema-kleur-contrast);
    border-bottom-color: var(--thema-kleur-contrast);
  }

    .pageNonSanitair .ctlProductsRow.copy td:first-child {
      border-left-color: var(--thema-kleur-contrast);
    }

    .pageNonSanitair .ctlProductsRow.copy td:last-child {
      border-right-color: var(--thema-kleur-contrast);
    }


  .pageNonSanitair .ctlProductsRow:hover td {
    border: 1px solid transparent;
    border-top-color: var(--thema-kleur-contrast);
    border-bottom-color: var(--thema-kleur-contrast);
  }

    .pageNonSanitair .ctlProductsRow:hover td:first-child {
      border-left-color: var(--thema-kleur-contrast);
    }

    .pageNonSanitair .ctlProductsRow:hover td:last-child {
      border-right-color: var(--thema-kleur-contrast);
    }

  .pageNonSanitair .ctlProductsRow .ctlPrice {
    margin-top: 80px;
  }

  .pageNonSanitair .ctlProductsRow .ctlPrice, .colMeerprijs {
    display: none;
    user-select: none;
    font-size: 22px;
    background: none;
    border: none;
    border: 1px solid var(--thema-kleur-contrast);
    border-radius: 24px;
    padding: 10px 14px;
    color: var(--thema-kleur-contrast);
    min-width: 100px;
  }

  .pageNonSanitair .ctlProductsRow.selected .ctlPrice {
    display: block;
  }

  .pageNonSanitair .btnCopyRow {
    transition: all ease-in-out 0.2s;
    left: 540px;
    width: 50px;
    cursor: pointer;
    position: absolute;
    display: none;
    grid-template-columns: min-content 1fr;
    z-index: 5;
    align-items: center;
  }

    .pageNonSanitair .btnCopyRow img {
      width: 50px;
    }

      .pageNonSanitair .btnCopyRow img:hover {
        transform: scale(1.15)
      }

    .pageNonSanitair .btnCopyRow label {
      border-radius: 14px;
      font-size: 15px;
      padding: 4px 12px 4px 30px;
      background-color: var(--thema-kleur-contrast);
      white-space: nowrap;
      color: white;
      height: 18px;
      display: inline-block;
      margin-left: -20px;
      z-index: -1;
      user-select: none;
      cursor: pointer;
    }

  .pageNonSanitair .ctlProductsRow.selected:hover .btnCopyRow {
    position: absolute;
    display: grid;
    margin-top: -20px;
  }

  .pageNonSanitair .ctlProductOptions {
    display: none;
  }

.enterSubmits, .autostore {
}

.tblDiagnostics {
  border-collapse: collapse;
  margin-right: 20px;
}

  .tblDiagnostics td, .tblDiagnostics th {
    padding: 2px 14px;
    border: 1px solid #ccc;
    white-space: nowrap;
  }

    .tblDiagnostics td.number {
      text-align: right;
    }

/* jQuery-UI */

.ui-menu-item-wrapper {
  text-align: left;
}



/* Featherlight */
.featherlight {
  transition: all 2s ease-in;
}

/* jQuery-Confirm */
.jconfirm {
  text-align: left;
}

/* Quill */

.ql-editor {
  white-space: normal !important;
  font-family: 'Roboto';
}

.ql-toolbar, .ql-container {
  background-color: white;
}

.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  font-size: inherit !important;
}
