.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; }
