.combobox {
  display: none; }

.combobox-wrapper {
  width: 100%;
  position: relative;
  height: 36px;
  border: 1px solid #bbb;
  border-radius: 1px;
  color: #666;
  user-select: none; }
  .combobox-wrapper .combobox-search {
    outline: 0;
    width: calc(100% - 30px) !important;
    height: 100% !important;
    border: none;
    background: white;
    padding: 0 5px !important;
    vertical-align: top; }
  .combobox-wrapper .combobox-handler {
    background: white url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='#555' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
    background-position: 100% 50%;
    background-repeat: no-repeat;
    width: 30px;
    height: 34px;
    vertical-align: top;
    display: inline-block; }
  .combobox-wrapper .combobox-options {
    display: none;
    position: absolute;
    top: 34px;
    left: -1px;
    width: calc(100% + 2px);
    background: #fff;
    padding: 5px 0;
    box-shadow: 2px 2px 4px -1px #456b68;
    z-index: 101;
    border: 1px solid #787878;
    border-top: 1px dashed #aaa; }
    .combobox-wrapper .combobox-options .combobox-option {
      padding: 0px 10px 0;
      width: 100%;
      line-height: 25px;
      height: 25px;
      position: relative;
      color: #000;
      font-size: 14px;
      cursor: pointer;
      user-select: none; }
      .combobox-wrapper .combobox-options .combobox-option.selected {
        background-color: #0db4f1; }
      .combobox-wrapper .combobox-options .combobox-option.disabled {
        color: #bbb;
        cursor: default; }
      .combobox-wrapper .combobox-options .combobox-option.disabled.selected {
        color: black; }
    .combobox-wrapper .combobox-options .combobox-option-search-error {
      color: red;
      font-size: 13px;
      padding-left: 5px; }
  .combobox-wrapper:not(.disabled) .combobox-handler {
    cursor: pointer; }
    .combobox-wrapper:not(.disabled) .combobox-options .combobox-option:not(.disabled):hover {
      background-color: #0db4f1; }
    .combobox-wrapper:not(.disabled):hover {
      border-color: #787878; }
    .combobox-wrapper:not(.disabled).opened {
      border-color: #787878;
      box-shadow: 2px 2px 4px -1px #456b68; }
      .combobox-wrapper:not(.disabled).opened .combobox-options {
        display: block; }
  .combobox-wrapper.disabled .combobox-search {
    pointer-events: none; }

a.multiSelect {
  border: solid 1px #bbb;
  position: relative;
  text-decoration: none;
  color: black;
  display: inline-block;
  vertical-align: top !important;
  margin-top: 10px !important; }

a.multiSelect:link, a.multiSelect:visited, a.multiSelect:hover, a.multiSelect:active {
  color: black;
  text-decoration: none; }

a.multiSelect span {
  margin: 1px 0px 1px 3px;
  overflow: hidden;
  display: -moz-inline-stack;
  display: inline-block;
  white-space: nowrap;
  line-height: 26px; }

a.multiSelect.active, a.multiSelect.focus {
  border: inset 1px #000; }

.multiSelectOptions {
  margin-top: -1px;
  overflow-y: auto;
  overflow-x: hidden;
  border: solid 1px #b2b2b2;
  background: #fff; }
  .multiSelectOptions li {
    display: block;
    margin: 3px 5px;
    position: relative; }
    .multiSelectOptions li input[type="checkbox"] {
      left: 0 !important;
      top: 0 !important; }
      .multiSelectOptions li input[type="checkbox"]:checked + label:after {
        top: 9px !important; }

.multiSelectOptions label {
  padding: 3px 5px;
  display: block !important;
  white-space: nowrap;
  margin: 0;
  width: auto !important;
  cursor: pointer; }
  .multiSelectOptions label.optGroup {
    font-weight: bold; }
  .multiSelectOptions label.checked {
    background-color: #fca403; }
  .multiSelectOptions label.selectAll {
    border-bottom: dotted 1px #ccc;
    padding-bottom: 3px; }
  .multiSelectOptions label.hover {
    background-color: #949494; }
  .multiSelectOptions label .optGroupContainer LABEL {
    padding-left: 10px; }

.multiSelectOptions.optGroupHasCheckboxes .optGroupContainer LABEL {
  padding-left: 18px; }

.multiSelectOptions input {
  vertical-align: middle; }

.validate_error {
  border-bottom: solid 1px red !important;
  transition: 0.2s; }

.validate_message {
  position: absolute;
  color: red;
  z-index: 99;
  font-size: 13px;
  /*
	opacity:0;
	-webkit-animation:fadeIn ease-in .2s;
	-moz-animation:fadeIn ease-in .2s;
	animation:fadeIn ease-in .2s;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;*/
  transition: 0.2s; }

img {
  opacity: 1;
  transition: opacity 0s; }

img[data-src] {
  opacity: 0; }

.loading {
  content: ' een moment geduld! ';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(65, 65, 69, .5);
  background-repeat: no-repeat;
  background-size: calc(10% - 10px);
  background-position: center;
  display: none;
  color: white;
  text-align: center;
  line-height: 100vh;
  font-size: 50px;
  font-weight: bold;
  z-index: 100; }

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

body {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  overflow-y: scroll;
  background-color: #f4f4f4;
  overflow: hidden; }

input {
  border-radius: 0; }
  input:focus {
    outline: none; }
  input.wrong {
    border: solid 1px red !important; }
  input.number {
    width: 40px;
    height: 28px;
    color: #808080;
    font-weight: 600;
    background-color: #f9f9f9;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    padding-left: 10px;
    margin: 17.5px 11px; }
    input.number:focus {
      outline: none; }

h2 {
  color: #343434;
  font-size: 32px;
  font-weight: normal;
  font-family: 'Roboto Slab'; }
  h2 span {
    font-weight: bold; }

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

.btn {
  -webkit-appearance: none;
  border: none;
  background: #ac6b30;
  position: relative;
  color: white;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  transition: 0.5s;
  outline: none; }
  .btn:hover {
    background-color: #ac6b30; }
  .btn.btn_disabled {
    background: #f6f7f8;
    color: #e1e2e3;
    pointer-events: none; }

.small_btn {
  height: 40px;
  line-height: 40px;
  background-color: #ac6b30;
  text-align: center;
  padding: 0 20px;
  border: none;
  color: #fff;
  font-family: 'Roboto';
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0px 0px 10px 1px rgba(102, 102, 102, 0.5); }

.toast {
  position: fixed;
  top: 70px;
  right: 10px;
  background: white;
  border: solid 2px #ac6b30;
  padding: 20px;
  z-index: 100;
  display: none; }

.tooltip {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  background: white;
  color: #030304;
  filter: drop-shadow(#888 0px 0 2px);
  border: solid 1px #efefef;
  z-index: 100;
  margin-top: -15px;
  margin-left: 15px;
  padding: 10px;
  text-align: left; }
  @media (max-width: 1023px) {
  .tooltip {
    left: auto;
    right: 50%;
    margin-right: 15px; } }
  @media (max-width: 358px) {
  .tooltip {
    width: 230px; } }
  .tooltip:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 13px solid #fff;
    margin-left: -13px;
    top: 0;
    left: 0; }
    @media (max-width: 1023px) {
  .tooltip:before {
    border-left: 13px solid #fff;
    margin-left: -13px;
    top: 0;
    right: -13px;
    left: auto;
    border-right: none; } }
  .tooltip:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #efefef;
    margin-left: -15px;
    z-index: -1;
    top: -1px;
    left: 0; }
    @media (max-width: 1023px) {
  .tooltip:after {
    border-left: 15px solid #efefef;
    margin-left: -15px;
    z-index: -1;
    top: -2px;
    right: -15px;
    left: auto;
    border-right: none; } }
  .tooltip b {
    color: #030304;
    font-size: 16px;
    font-family: 'Roboto Slab'; }
  .tooltip span {
    color: #989999;
    font-size: 15px;
    font-family: 'Roboto', sans-serif; }

@media (max-width: 440px) {
    .hide_text {
      display: none; } }

.close_popup {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer; }

.overlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90; }
  .overlay .popup {
    background: white;
    padding: 0;
    margin: 0;
    position: absolute;
    width: calc(100% - 50px);
    max-width: 800px;
    height: calc(100% - 150px);
    max-height: 500px;
    border-radius: 4px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    @media (max-width: 1023px) {
  .overlay .popup {
    height: calc(100% - 200px);
    overflow: initial; } }
    .overlay .popup .spacing {
      padding: 25px;
      overflow-x: hidden;
      max-height: calc(100% - 90px); }
    .overlay .popup .uploaded {
      padding: 20px 25px; }
      @media (max-width: 1023px) {
  .overlay .popup .uploaded {
    padding: 0px; } }
      .overlay .popup .uploaded:hover {
        background-color: #f0eeee;
        cursor: pointer; }
      .overlay .popup .uploaded i {
        position: relative;
        right: -35px;
        top: 20px;
        font-size: 22px;
        color: #333; }
      .overlay .popup .uploaded .preview {
        width: 70px;
        height: 70px;
        display: inline-block;
        position: relative;
        vertical-align: top;
        background-color: white;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        padding: 5px;
        border: 1px solid #f0eeee; }
      .overlay .popup .uploaded .details {
        display: inline-block;
        width: calc(100% - 120px);
        padding-left: 30px;
        vertical-align: top;
        position: relative; }
        .overlay .popup .uploaded .details h3 {
          margin: 0;
          font-family: 'Roboto Slab';
          color: #414145;
          font-size: 16px;
          font-weight: 600; }
          @media (max-width: 500px) {
  .overlay .popup .uploaded .details h3 {
    word-break: break-word;
    width: 140px; } }
        .overlay .popup .uploaded .details span {
          font-family: 'Roboto';
          color: #969696;
          font-size: 16px; }
    .overlay .popup .welcome_back {
      margin-top: -55px;
      margin-bottom: 17px;
      font-size: 32px;
      font-weight: 600;
      font-family: 'Roboto Slab';
      color: #fff; }
    .overlay .popup .make_new_block, .overlay .popup .bottom_navigation {
      border-top: 1px solid #f0eeee;
      padding: 20px 20px;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      background: inherit; }
      .overlay .popup .make_new_block:not(.single), .overlay .popup .bottom_navigation:not(.single) {
        display: flex;
        align-items: center;
        justify-content: space-between; }
      .overlay .popup .make_new_block.single .btn, .overlay .popup .bottom_navigation.single .btn {
        float: right; }
      .overlay .popup .make_new_block .btn, .overlay .popup .bottom_navigation .btn {
        padding: 5px 10px;
        text-decoration: none; }
      .overlay .popup .make_new_block .link, .overlay .popup .bottom_navigation .link {
        text-decoration: none;
        font-family: 'Roboto';
        color: #969696;
        font-size: 16px;
        cursor: pointer; }
        .overlay .popup .make_new_block .link:hover, .overlay .popup .bottom_navigation .link:hover {
          text-decoration: underline; }
    .overlay .popup #options {
      display: inline-block;
      position: relative;
      width: 220px;
      height: 100%;
      background: #f3f3f3;
      /* iOS Safari */
      -webkit-touch-callout: none;
      /* Safari */
      -webkit-user-select: none;
      /* Konqueror HTML */
      -khtml-user-select: none;
      /* Firefox */
      -moz-user-select: none;
      /* Internet Explorer/Edge */
      -ms-user-select: none;
      /* Non-prefixed version, currently
																 supported by Chrome and Opera */
      user-select: none; }
      @media (max-width: 1023px) {
  .overlay .popup #options {
    width: 69px; } }
      .overlay .popup #options .option {
        color: #444;
        padding: 20px;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px; }
        @media (max-width: 1023px) {
    .overlay .popup #options .option .option_text {
      display: none; } }
        .overlay .popup #options .option.active, .overlay .popup #options .option:hover {
          background: white; }
        .overlay .popup #options .option i.fa {
          width: 30px;
          text-align: center;
          margin-right: 15px;
          font-size: 18px; }
    .overlay .popup #types {
      display: inline-block;
      position: relative;
      vertical-align: top;
      width: calc(100% - 220px);
      height: 100%; }
      @media (max-width: 1023px) {
  .overlay .popup #types {
    width: calc(100% - 70px); } }
      .overlay .popup #types .type {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 30px; }
        .overlay .popup #types .type .resultaten {
          width: 100%; }
        .overlay .popup #types .type .uploadPart {
          height: 100%;
          width: 100%;
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          border: solid 2px transparent; }
          .overlay .popup #types .type .uploadPart.dragover {
            border: dashed 2px #444; }
            .overlay .popup #types .type .uploadPart.dragover:after {
              content: 'Laat los om te uploaden';
              display: flex;
              width: 100%;
              height: 100%;
              justify-content: center;
              align-items: center;
              position: absolute;
              top: 0;
              left: 0;
              background: white;
              color: #444;
              font-size: 16px;
              font-weight: bold; }
          .overlay .popup #types .type .uploadPart h3 {
            color: #444;
            font-size: 16px; }
          .overlay .popup #types .type .uploadPart span {
            color: #989999;
            font-size: 15px;
            display: block;
            margin: 7px 0 15px 0; }
        .overlay .popup #types .type .bottom_navigation {
          display: none;
          text-align: right; }

.flex-right {
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .flex-right .btn_cancel {
    left: initial;
    margin-right: 30px;
    top: initial; }
  .flex-right .btn_text_remove {
    position: relative;
    right: 0;
    padding: 6px 14px; }
