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

.clearfix:after {
   content: ".";
   visibility: hidden;
   display: block;
   height: 0;
   clear: both;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
    scroll-behavior: smooth;
}

::selection {
  color: white;
  background-color: #0fa120;
}

body {
  font-family: usual, sans-serif;
  font-weight: 400;
  color: #101010;
  caret-color: transparent;
}

body.active {
  overflow: hidden;
}

p {
  color: #626262;
  line-height: 1.5em;
  font-weight: 400;
  font-size: calc(14px + 12 * ((100vw - 600px) / 1960));
}

h1, h2, h3, h4, h5 {
  font-family: usual, sans-serif;
  font-weight: 700;
}

h1 {
  /*font-size: calc(16px + 19 * ((100vw - 320px) / 500));*/
  font-size: calc(30px + 60 * ((100vw - 600px) / 1960));
}
h2 {
  font-size: calc(25px + 25 * ((100vw - 600px) / 1960));
  margin-bottom: 1.2vw;
}

h4 {
  color: #b2b2b2;
  font-weight: 600;
  font-size: calc(12px + 14 * ((100vw - 600px) / 1960));
  text-transform: uppercase;
  letter-spacing: .05em;
}

h5 {
  color: #b2b2b2;
  font-weight: 600;
  font-size: calc(12px + 10 * ((100vw - 600px) / 1960));
  margin-bottom: 1.2vw;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 600px) {
  h1 {
    font-size: calc(40px + 50 * ((100vw - 600px) / 1960));
  }
  h2 {
    margin-bottom: 3vw;
  }
  h4 {
    font-size: calc(14px + 14 * ((100vw - 600px) / 1960));
  }
  h5 {
    margin-bottom: 2vw;
  }
  p {
font-size: calc(17px + 12 * ((100vw - 600px) / 1960));
  }
}

.section {
  position: relative;
  width: 100%;
}

.button {
  padding: calc(10px + 1vw) calc(20px + 2vw);
  font-size: calc(14px + 2 * ((100vw - 600px) / 1960));
  color: #ffffff;
  background-color: #0fa120;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.16);
  position: relative;
  display: inline-block;
  margin-top: 2.4vw;
  transition: .3s;
  margin-right: 20px;
}

.button:hover {
  background-color: #0c881b;
  transition: .3s;
  cursor: pointer;
}

.button.alt {
  background-color: #f6f6f6;
  box-shadow: none;
  color: #101010;
  transition: .3s;
}

.button.alt:hover {
  color: #0fa120;
  transition: .3s;
  background-color: #f3f3f3;
}

.grey-background {
  background-color: #F2F2F2;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active
{
 -webkit-box-shadow: 0 0 0 30px white inset !important;
  box-shadow: 0 0 0 30px white inset !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B2B2B2;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B2B2B2;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #B2B2B2;
}

select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

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

.line {
  width: 66px;
  border-top: 3px solid #0fa120;
  margin: 2.5vw auto 0;
}

.lbro {
  position: absolute;
  top: -25px;
  right: 5vw;
  width: calc(50px + 3vw);
}

.lorb {
  position: absolute;
  bottom: -25px;
  left: 4vw;
  z-index: 0;
  width: calc(50px + 3vw);
}

@media (max-width: 600px) {
  .button {
    margin-top: 5vw;
    font-size: 12px;
  }

}

/* Navigatie */
.logo {
    top: 30px;
    position: absolute;
    z-index: 5;
}

.logo span {
  font-weight: 600;
  font-size: calc(18px + 8 * ((100vw - 600px) / 1960));
  margin-left: 4vw;
}

.navigation {
  width: 100%;
  top: 33px;
  text-align: center;
  position: absolute;
  z-index: 900;
}

.navigation div {
  display: inline-block;
  margin-right: 1vw;
  transition: .2s;
  color: #3a3a3a;
}

.navigation div a:hover {
  color: #101010;
  transition: .2s;
}

.navigation div.active {
  color: #0fa120;
}

.hamburger {
  background-color: #fff;
padding: 34px 18px 34px 27px;
border-radius: 50px;
position: fixed;
right: 4vw;
top: 20px;
z-index: 1000;
transition: .3s;
}

.hamburger .icon {
  width: 26px;
  height: 3px;
  background-color: #101010;
  transition: .3s;
}

.hamburger .icon::before {
  content: " ";
      height: 3px;
      position: absolute;
      right: 0px;
      top: 24px;
      width: 34px;
      border-radius: 1px;
      background-color: #101010;
      left: 19px;
      transition: .3s;
}

.hamburger .icon::after {
  content: " ";
      height: 3px;
      position: absolute;
      right: 0px;
      top: 44px;
      width: 20px;
      border-radius: 1px;
      background-color: #101010;
      left: 33px;
      transition: .3s;
}

.hamburger:hover {
  transition: .3s;
  padding-left: 19px;
  cursor: pointer;
}

.hamburger:hover .icon::after {
  left: 19px;
  width: 34px;
  transition: .3s;
}

.hamburger:hover .icon{
  width: 34px;
  transition: .3s;
}

.hamburger.active {
  background-color: #101010;
  transition: .3s;
}

.hamburger.active .icon::before {
  background-color: #fff;
  transform: rotate(45deg);
  top: 34px;
  transition: .3s;
}

.hamburger.active .icon::after {
  background-color: #fff;
  left: 19px;
  width: 34px;
  transform: rotate(-45deg);
  top: 34px;
  transition: .3s;
}

.hamburger.pop-up-active {
  background-color: #f2f2f2;
}

.hamburger.pop-up-active .icon::after, .hamburger.pop-up-active .icon::before {
  background-color: #101010;
}

.hamburger.pop-up-active .icon {
  background-color: #f2f2f2;
}

.menu {
  width: 100vw;
  height: 0vh;
  box-sizing: border-box;
  background-color: #101010;
  z-index: 100;
  position: fixed;
  visibility: hidden;
  -webkit-transition: height 1s cubic-bezier(.55,.085,0,.99),visibility 0s 4s;
    transition: height 1s cubic-bezier(.55,.085,0,.99),visibility 0s 4s;
}

.menu-items {
  position: absolute;
    left:20vw;
    top:50%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.menu .menu-item:hover, .footer a:hover {
color: #969696;
}

.menu .logo {
  color: white;
  opacity: 0;
}

.menu.active {
  visibility: visible;
  height: 100vh;
  transition: height 1s cubic-bezier(.55,.085,0,.99),visibility 0s;
}

.menu.active .menu-item {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s 0.6s, line-height 0.8s 0.3s, color .3s;
  line-height: 1.6em;
}

.menu.active .menu-items {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.menu .menu-item {
  font-size: calc(40px + 40 * ((100vw - 600px) / 1960));
  line-height: 1em;
  font-weight: bold;
  letter-spacing: 0.07em;
  color: white;
  transition: color .3s;
  opacity: 0;
}

.menu.active .logo {
  opacity: 1;
  transition: opacity 1s 0.6s ease;
}

@media (max-width: 600px) {
  .menu-items {
    left: 15vw;
  }

}

/* Heading */

.heading {
  width: 100%;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.heading h1 {
  margin-top: 2vw;
  text-align: center;
}

.heading h4 {
  text-align: center;
}

h1 span {
  color: #0fa120;
}

.heading p {
  margin-top: 2vw;
  width: 31vw;
  line-height: 1.7em;
}

.streepblock {
  transform: translate(-50%, -120%);
  width: 50vw;
  position: absolute;
  z-index: 50;
  opacity: 0;
  left: 50%;
  display: none;
}

.streepblock.block {
  display: block;
}

.streepblock.active {
  transform: translate(-50%, -60%);
  transition: transform .1s .6s ease, opacity 1s ease;
  opacity: 1;
}

.streepblock .tabs {
  box-shadow: 0px 20px 26px rgba(0,0,0,0.1);
  display: inline;
  color: #B2B2B2;
}

 .tabs .tab {
  display: inline-block;
  padding: 20px;
  background-color: #f6f6f6;
  font-size: calc(12px + 6 * ((100vw - 600px) / 1960));
  margin-right: -5px;
  margin-bottom: -1px;

}

.tabs .tab:hover {
  cursor: pointer;
}

 .tabs .tab.active {
  background-color: #fff;
  color: #969696;
}

.streep-input-block {
  background-color: #fff;
  padding: 2vw;
  position: relative;
  box-shadow: 0px 20px 26px rgba(0,0,0,0.1);
  caret-color: black;
}

.streep-input-block input {
  border: none;
  font-size: calc(25px + 15 * ((100vw - 600px) / 1960));
  -webkit-appearance: none;
  outline: none;
  display: inline-block;
  width: 15vw;
}

.textarea {
  border: none;
  font-size: calc(15px + 15 * ((100vw - 600px) / 1960));
  -webkit-appearance: none;
  outline: none;
  display: inline-block;
  min-height: 40px;
  line-height: 2.4em;
}

.textarea[contenteditable]:empty::before {
  content: "Vul een naam in";
  color: #B2B2B2;
  border: none;
  font-size: calc(15px + 15 * ((100vw - 600px) / 1960));
  -webkit-appearance: none;
  outline: none;
  display: inline-block;
  line-height: 2.4em;
}

.textarea[contenteditable].added:empty::before {
  content: "Naam";
}

.streep-input-block .add-name {
  position: absolute;
  top: 2vw;
  right: 2vw;
  font-size: calc(30px + 15 * ((100vw - 600px) / 1960));
  font-weight: bold;
  transition: color .3s;
  line-height: 1.5em;
}

.streep-input-block span.add {
  font-size: calc(15px + 15 * ((100vw - 600px) / 1960));
  color: #888;
  display: inline-block;
  padding: 0 1.5vw;
  line-height: 1.5em;
}

#toevoegen, #toevoegen div {
  display: inline-block;
}

.streep-input-block .add-name:hover {
  color: #0fa120;
  cursor: pointer;
}

.buttons {
  z-index: 60;
  position: absolute;
  right: 0;
  box-shadow: 0px 20px 26px rgba(0,0,0,0.2);
}

.buttons .streep-button {
  -webkit-appearance: none;
  border: none;
  border-radius: 0px;
  color: white;
  background-color: #0fa120;
  padding-top: 2vw;
  padding-bottom: 2vw;
  font-size: calc(15px + 15 * ((100vw - 600px) / 1960));
  font-weight: 400;
  width: 10vw;
  margin: 0;
  outline: none;
  float: left;
}

.buttons .streep-button:hover {
  background-color: #0c881b;
  transition: .3s;
}

.buttons select.streep-button {
  padding-bottom: calc(2vw + 1px);
  padding-left: calc(15%);
}

.buttons .streep-button.krat {
  display: none;
}

.buttons .streep-button.middle {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.buttons .streep-button:active {
  border-radius: 0px;
}

.buttons .streep-button:disabled {
  background-color: #dfdfdf;
  pointer-events: none;
  color: #b1b1b1;
}

.buttons .streep-button optgroup {
  font-size: 16px !important;
}

.buttons .streep-button:hover {
  cursor: pointer;
}

.block-strepen {
  width: 80vw;
  margin-left: 10vw;
  background-color: #f2f2f2;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: min(110px, 11vw);
}
.button-wrapper {
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.home-streeplijst .button-wrapper.active {
  opacity: 0;
}

.button-wrapper .button {
  margin-top: 0px;
}


@media (max-width: 600px) {
  .heading {
    padding-top: calc(100px + 5vw);
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .heading .grey-background {
    top: 40vw;
    left: 16vw;
    width: 84vw;
  }
  .header-image {
    width: 70vw;
    height: 110vw;
  }
  .home .header-image {
    height: 110vw;
  }

  .streepblock {
    width: 80vw;
  }

  .streep-input-block {
    padding: 3vw 5vw;
  }
  .textarea, .textarea[contenteditable]:empty::before, .buttons .streep-button {
    font-size: calc(17px + 15 * ((100vw - 600px) / 1960));
  }

  .streep-input-block span.add {
    font-size: calc(17px + 15 * ((100vw - 600px) / 1960));
  }

  .buttons .streep-button {
    width: 18vw;
    padding-top: calc(10px + 2vw);
    padding-bottom: calc(10px + 2vw);
  }

  .buttons .streep-button.krat {
    width: 30vw;
  }

  .buttons select.streep-button {
    padding-bottom: calc(10px + 2vw);
  }
  .streep-input-block .add-name {
    top: 3vw;
    right: 5vw;
  }
  .home .header-image.animate figure {
    background-position: center;
  }
}


/* Intro */

.intro {
  text-align: center;
  padding: 8vw 20vw;
}

.intro p {
  font-size: calc(16px + 14 * ((100vw - 600px) / 1960));
  margin-top: 1.2vw;
}

.intro .line {
  width: 66px;
  border-top: 3px solid #0fa120;
  margin: 2.5vw auto 0;
}

@media (max-width: 600px) {
  .intro {
    padding: 15vw 10vw;
  }
  .intro p {
    font-size: calc(17px + 15 * ((100vw - 600px) / 1960));
  }
  .intro .line {
    margin-top: 30px;
  }
}


/* Home strepen */
.streeplijst-block {
  /*background-color: #ffffff;*/
  /*box-shadow: 0px 20px 25px rgba(0,0,0,0.10);*/
  margin-top: 2vw;
  z-index: 10;
  position: relative;
  width: 80%;
  margin-bottom: max(-110px, -11vw);
}

.streeplijst-block.active {
  margin-top: 10vw;
  transition: margin-top .6s ease;
}

.streeplijst-block tbody {
  background-color: #ffffff;
  filter:drop-shadow(0px 20px 25px rgba(0,0,0,0.10));
}

.streeplijst-block table {
  width: 100%;
  font-size: calc(16px + 10 * ((100vw - 600px) / 1960));
  font-weight: 400;
}

.streeplijst-block table td{
  padding: 2.5vw 0;
  border-bottom: 1px solid #F0F0F0;
}

.streeplijst-block .foutmelding {
  text-align: center;
  padding: calc(50px + 5vw) 20px !important;
  line-height: 1.5em;
}

.person-icon {
  background-color: #0fa120;
  width: 3vw;
  height: 3vw;
  border-radius: 68px;
  position: relative;
}

.person-icon img {
  width: 1.5vw;
  position: relative;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

.streeplijst-block thead, .home-streeplijst .streeplijst-block tfoot {
  font-size: calc(14px + 10 * ((100vw - 600px) / 1960));
  /* color: #b2b2b2; */
  font-weight: 400;
}
.streeplijst-block thead, .home-streeplijst .streeplijst-block tfoot td{
  border: none;
}

.streeplijst-block thead th {
  padding-bottom: 1vw;
  font-weight: 400;
}

.streeplijst-block thead th:nth-child(2) {
  text-align: left;
}

.streeplijst-block thead th:nth-child(2) {
  text-align: left;
}

.streeplijst-block thead th:nth-child(4) {
  text-align: right;
  padding-right: 1.5vw;
}

.streeplijst-block table td:nth-child(1) {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  width: 10px;
  border: none;
}
.streeplijst-block table td:nth-child(2) {
  font-weight: 600;
}
.streeplijst-block table td:nth-child(3) {
  color: #888888;
  padding: auto 0vw;
  text-align: center;
}
.streeplijst-block table td:nth-child(4) {
  text-align: right;
  color: #888888;
  padding-right: 1.5vw;
  width: 10vw;
}
.streeplijst-block table td:nth-child(5) {
  text-align: center;
  color: #888888;
  padding: 0;
  width: 40px;
}
.streeplijst-block table .spacer {
  width: 2.5vw;
  border: none;
}

.streeplijst-block table td{
  padding-top: min(20px, 2vw);
  padding-bottom: min(20px, 2vw);
}

.streeplijst-block table tfoot td {
  text-align: right;
  font-weight: 400;
}

.streeplijst-block table tfoot td:nth-child(2) {
  padding-right: 1.5vw;
}

.streeplijst-block table tbody:hover {
  cursor: pointer;
}

.streeplijst-block span.min {
  margin-right: 1vw;
}
.streeplijst-block span.plus {
  margin-left: 1vw;
}
.streeplijst-block span {
  transition: .3s;
  width: 25px;
  display: inline-block;
}
.streeplijst-block span:hover {
  color: #101010;
}

.streeplijst-block span.log-aantal, .streeplijst-block span.log-tijd {
    display: block;
    width: auto;
    font-weight: 400;
    margin-top: calc(10px + 0.5vw);
    color: #888888;
    font-size: calc(10px + 10 * ((100vw - 600px) / 1960));
}

.streeplijst-block .button {
  display: none;
  margin-top: calc(10px + 0.5vw);
}

.streeplijst-block table tr.active td:nth-child(4),
.streeplijst-block table tr.active td:nth-child(1),
.streeplijst-block table tr.active td:nth-child(3) {
    vertical-align: top;
}

/* .streeplijst-block table tr.active span.log-aantal,
.streeplijst-block table tr.active span.log-tijd {
    display: block;
} */

.streeplijst-block table tr .button {
  display: inline-block;
}

.streeplijst-block table tr .log-wrapper {
    display: none;
}

.streeplijst-block table tr.active .log-wrapper {
    display: block;
}

.personal-menu {
  height: 30px;
  width: 30px;
  margin: auto;
}

.personal-menu .menu-icon {
  width: 4px;
  height: 4px;
  background-color: #888;
  margin: auto;
  border-radius: 10px;
  position: relative;
  top: 50%;
  margin-top: -2px;
  transition: .3s;
}

.personal-menu .menu-icon::before {
  content: " ";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #888;
  left: -8px;
  border-radius: 10px;
  transition: .3s;
}

.personal-menu .menu-icon::after {
  content: " ";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #888;
  left: 8px;
  border-radius: 10px;
  transition: .3s;
}

.personal-menu:hover {
  cursor: pointer;
}

.personal-menu:hover .menu-icon, .personal-menu:hover .menu-icon::before, .personal-menu:hover .menu-icon::after {
  background-color: #101010;
}

.personal-menu:hover .menu-icon::before {
  left: 0px;
  top: -8px;
  transition: .3s;
}

.personal-menu:hover .menu-icon::after {
  left: 0px;
  top: 8px;
  transition: .3s;
}

@media (max-width: 600px) {
  .streeplijst-block .person-icon {
    display: none;
  }
  .streeplijst-block table td:nth-child(5) {
    width: 0px;
  }
  .streeplijst-block table td:nth-child(4) {
    width: auto;
  }
  .streeplijst-block table td {
    padding: 5vw 0;
  }
  .streeplijst-block {
    margin-top: 5vw;
    margin-bottom: -22vw;
  }
  .block-strepen {
    margin-bottom: 22vw;
  }
  .streeplijst-block.active {
    margin-top: 25vw;
    transition: margin-top .6s ease;
  }
  .streeplijst-block thead th {
    padding-bottom: 3vw;
    font-weight: 400;
}
.streeplijst-block span.log-aantal, .streeplijst-block span.log-tijd {
    font-size: calc(13px + 10 * ((100vw - 600px) / 1960));
}
}

/* Home omzet */
.home-omzet, .home-tikkie, .home-koelkast {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 0;
  padding: 10vw 0;
  overflow: hidden;
}

.wrapper {
  position: relative;
    padding: 6vw 10vw;
    margin-left: auto;
    width: 50%;
}

.home-omzet .wrapper {
  margin-left: 0;
}

.home-omzet .omzet-bedrag, .home-tikkie .omzet-bedrag {
  color: #0fa120;
  margin: 1.2vw 0 0;
}

.home-koelkast .omzet-bedrag {
  color: #0fa120;
  font-weight: bold;
  font-size: 1.5em;
  margin-left: 5px;
    margin-right: 5px;
}

.image {
  position: absolute;
  top: 10vw;
  left: 0;
  height: calc(100% - 10vw * 2);
  width: 50vw;
}

.home-omzet .image {
  left: 50vw;
}

.image figure {
  z-index: 1;
    position: absolute;
    top: 0;
    left: 10vw;
    width: calc(100% - 10vw);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-omzet figure {
  left: 0;
  right: 10vw;
}

/* Home recent */
.home-recent .wrapper {
  position: relative;
  padding: 10vw 10vw;
  width: 50%;
  margin-left: 0px;
}

.home-recent .recente-strepers {
  position: absolute;
  top: 10vw;
  left: 60vw;
  width: 25vw;
  background-color: #fff;
  text-align: center;
  padding: 3vw;
  box-shadow:
    /* The top layer shadow */
    0 3px 15px -5px rgba(0,0,0,0.15),
    /* The second layer */
    0 15px 0 -5px #fff,
    /* The second layer shadow */
    0 15px 15px -8px rgba(0,0,0,0.15),
     /* The third layer */
    0 30px 0 -10px #fff,
    /* The third layer shadow */
    0 30px 15px -15px rgba(0,0,0,0.15),
    /* Padding for demo purposes */
    0 45px 0 -16px #fff,
    /* The third layer shadow */
    0 45px 15px -20px rgba(0,0,0,0.15);
    /* Padding for demo purposes */
}

.home-recent .recente-strepers .number {
  width: calc(30px + 5vw);
  height: calc(30px + 5vw);
  padding-top: calc(15px + 1.6vw);
  font-size: calc(16px + 14 * ((100vw - 600px) / 1960));
  color: #fff;
  border-radius: 100px;
  position: relative;
  margin: 0 auto;
  background-color: #0fa120;
}

.home-recent .recente-strepers .naam {
  font-size: calc(16px + 14 * ((100vw - 600px) / 1960));
  color: #101010;
  margin-top: 2vw;
}

@media (max-width: 600px) {
  .wrapper, .home-recent .wrapper {
    width: 100%;
    padding: 10vw;
  }
  .home .wrapper {
    padding: 0vw 10vw 10vw;
  }

  .home-recent .wrapper {
    padding: 15vw 10vw;
  }

  .image {
    position: relative;
    top: auto;
    left: auto;
    height: calc(100% - 10vw * 2);
    width: 90vw;
    height: 200px;
  }
  .recente-strepers {
    display: none;
  }
  .home-omzet .image {
        left: 10vw;
    }
}

/* Footer */
.footer {
  background-color: #101010;
  color: #ffffff;
  padding: 8vw 10vw;
}

.footer a, .footer h5 {
  display: block;
  color: #ffffff;
  transition: color .3s;
}

.footer .footer-container {
  display: flex;
  justify-content: space-between;
}

.footer .footer-menu {
  font-weight: 600;
  font-size: calc(25px + 15 * ((100vw - 600px) / 1960));
  line-height: 2em;
}

.footer .linkjes, .footer .adres {
  font-size: calc(14px + 12 * ((100vw - 600px) / 1960));
}

.footer .linkjes a, .footer .adres a {
  color: #888888;
  line-height: 2em;
}

.footer .linkjes a:hover, .footer .adres a:hover {
  color: #ffffff;
  transition: .3s;
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 1.2vw;
  color: #ffffff;
  background-color: #101010;
  border-top: 1px solid #343434;
}

.copyright p {
  font-size: calc(12px + 6 * ((100vw - 600px) / 1960));
}

@media (max-width: 600px) {
  .footer {
    padding: 10vw;
  }
  .footer .footer-container {
    display: block;
  }

  .footer .footer-menu, .footer .linkjes, .footer .adres {
    margin-bottom: 7vw;
  }
  .footer .linkjes, .footer .adres {
    font-size: calc(16px + 12 * ((100vw - 600px) / 1960));
  }
  .footer h5 {
        font-size: calc(16px + 10 * ((100vw - 600px) / 1960));
  }
  .copyright {
    padding: 4vw 0;
  }
}

.pop-up {
  width: 100vw;
  height: 0vh;
  background-color: #f2f2f2;
  position: fixed;
  box-sizing: border-box;
  top: 0px;
  left: 0px;
  z-index: 300;
  overflow: scroll;
  visibility: hidden;
  -webkit-transition: height 1s cubic-bezier(.55,.085,0,.99),visibility 0s 4s;
    transition: height 1s cubic-bezier(.55,.085,0,.99),visibility 0s 4s;
}

.pop-up.betaald.active {
  height: 100vh;
  visibility: visible;
  transition: height 1s cubic-bezier(.55,.085,0,.99),visibility 0s;
}

.pop-up .content-wrapper {
  padding-left: 20vw;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  max-height: 70vh;
  opacity: 0;
}
.pop-up .pop-up-content {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
  max-height: calc(70vh - 100px);
}

.pop-up .pop-up-content::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

.pop-up .logo {
  opacity: 0;
}

.pop-up .pop-up-content h2 {
  margin-bottom: 3vw;
}

.pop-up .pop-up-content table td {
  padding: 1vw;
}

.pop-up .pop-up-content table td:nth-child(1) {
  padding-left: 0;
  width: 15vw;
}

.pop-up .pop-up-content table td:nth-child(2) {
  font-size: calc(16px + 14 * ((100vw - 600px) / 1960));
  color: #888;
}

.pop-up.betaald.active .logo, .pop-up.betaald.active .content-wrapper {
  opacity: 1;
  transition: opacity 1s .6s ease;
}

.pop-up.betaald .foutmelding {
  padding: calc(50px + 1vw) 0 !important;
  width: 300px !important;
  text-align: left;
  line-height: 1.5em;
}

.pop-up.betaald .button-wrapper {
  transform: translateY(0);
  opacity: 0;

}

.pop-up.beataal .button-wrapper .alt{
  background-color: #fff;
}
.pop-up.betaald.active .button-wrapper {
  opacity: 1;
  transition: opacity 1s .6s ease;
  margin-top: 20px;
}


@media (max-width: 600px) {
  .pop-up .content-wrapper {
    padding-left: 15vw;
  }
  .pop-up .pop-up-content table td {
    padding: 4vw;
  }

}

div.betalen:hover {
  cursor: pointer;
}



    /* The container */
    .container {
      display: block;
      position: relative;
      padding-left: 50px;
      cursor: pointer;
      font-size: calc(17px + 14 * ((100vw - 600px) / 1960));
      font-weight: bold;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    /* Hide the browser's default checkbox */
    .container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }

    /* Create a custom checkbox */
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 25px;
      width: 25px;
      background-color: #ccc;
      transition: .3s;
    }

    /* On mouse-over, add a grey background color */
    .container:hover input ~ .checkmark {
      background-color: #bbb;
    }

    /* When the checkbox is checked, add a blue background */
    .container input:checked ~ .checkmark {
      background-color: #0fa120;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }

    .container input:checked ~ .checkmark:after {
      display: block;
    }

    /* Style the checkmark/indicator */
    .container .checkmark:after {
      left: 9px;
      top: 5px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }

.persoonlijk-menu, .betaald-popup {
  position: fixed;
  bottom: -300px;
  background-color: #fff;
  box-shadow: 0px -10px 40px rgba(0,0,0,0.10);
  z-index: 100;
  padding: 40px;
  box-sizing: border-box;
  display: block;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom .8s cubic-bezier(.55,.085,0,.99), padding 0s;
}

.persoonlijk-menu .button.alt {
  background-color: rgba(0,0,0,0)
}

.persoonlijk-menu .persoon-buttons .close {
  font-weight: bold;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 20px;
  font-size: 12px;
}

.persoonlijk-menu .persoon-buttons .close:hover {
  cursor: pointer;
  background-color: #f6f6f6;
}

@media (max-width: 1180px) {
  .persoonlijk-menu {
    width: 70vw;
  }
}
@media (max-width: 770px) {
  .persoonlijk-menu {
    width: 90vw;
  }
}

.persoonlijk-menu h2 {
  text-align: center;
  display: inline-block;
}

.persoonlijk-menu .button {
  margin-top: 0;
}

.persoonlijk-menu.active, .betaald-popup.active {
  bottom: 0px;
}


 h1 {
  margin-top: 2vw;
}

.streeplijst .heading .streep-input-block, .streeplijst .heading .buttons .streep-button {
  padding: 1.7vw;
}

.streeplijst .heading .grey-background .lorb {
  bottom: -25px;
  left: 4vw;
}

.streeplijst .heading .streepblock {
  margin-top: 3vw;
}

@media (max-width: 600px) {
  .heading {
    padding-top: calc(100px + 5vw);
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: calc(70px + 5vw);
  }


  .heading p {
   width: 70vw;
   margin-top: 5vw;
  }

  .home .heading p {
    width: 60vw;
    margin-top: 5vw;
  }
  .block-strepen {
    margin-left: 5vw;
    width: 90vw;
  }

  .streeplijst-block {
    width: 90%;
  }
  .betaald-popup {
    width: 90vw;
  }
}

/* Streeplijst streeplijst */

.streeplijst .home-streeplijst {
  padding-bottom: 10vw;
}

.streeplijst .home-streeplijst .right {
  width: 50vw;
  padding-right: 6vw;
  min-height: 40vw;
}

.streeplijst .home-streeplijst .left {
  width: 47vw;
}


table.small-table {
  width: 100%;
  font-size: calc(14px + 12 * ((100vw - 600px) / 1960));
  margin-top: 2vw;
}

table.small-table td {
  padding: 1vw 0vw;
}
.log table.small-table td:nth-child(2) {
  text-align: right;
}

.streeplijst table.small-table td:nth-child(1) {
  width: 6vw;
}

table.small-table td.streper span {
  display: block;
}

table.small-table td span.naam {
  font-weight: bold;
}

table.small-table td span.datum {
  color: #888888;
  margin-top: 10px;
  font-size: calc(10px + 10 * ((100vw - 600px) / 1960));
}


.streeplijst table.small-table .person-icon {
  background-color: #F2F2F2;
}

@media (max-width: 600px) {
  .streeplijst .streepsection {
    padding: 30vw 0vw 30vw;
  }
  table.small-table {
    font-size: calc(17px + 12 * ((100vw - 600px) / 1960));
  }
  table.small-table td {
    padding: 2vw 0;
  }
  table.small-table td span.datum {
    margin-top: 6px;
    font-size: calc(13px + 10 * ((100vw - 600px) / 1960));
  }
  .streeplijst table.small-table .person-icon {
    display: none;
  }
  .streeplijst table.small-table td:nth-child(1) {
    width: auto;
  }
}

/* Analytics */
.analytics .heading {
  background-color: #f2f2f2;
}

.analytics .totaalbedrag {
  text-align: center;
  padding: 8vw 20vw;
}

.analytics .totale-omzet {
  color: #0fa120;
}

.analytics .section.top-pvd .left {
  width: 30vw;
  display: inline-block;
}

.analytics .section.top-pvd .right{
  width: 30vw;
  display: inline-block;
}

.analytics .small-table td {
  padding: 0.75vw 0vw;
}

.analytics .small-table td.aantal {
  text-align: right;
}

.analytics .top-pvd table.small-table td:nth-child(1) {
  width: 5vw;
}

.analytics .top-pvd table.small-table .person-icon {
  width: 3vw;
  height: 3vw;
  background-color: #101010;
}

.analytics .top-pvd table.small-table .person-icon img {
  width: 1.5vw;
}

.analytics .top-pvd .top-pvd-table tr,
.analytics .omzet .omzet-table tr,
.log .streeplog .gestreept-table tr,
.log .betaallog .betaald-table tr {
  display: none;
}

.analytics .image {
  left: auto;

  top: 10vw;
}

.analytics .omzet {
  padding: 2vw 0;
}

.analytics .omzet .wrapper, .log .betaallog .wrapper {
  margin-left: 0;
}

.analytics .omzet .image, .log .betaallog .image {
  left: 40vw;
}

.analytics .omzet .small-table td {
  width: 50%;
  padding: 1vw 0vw;
}


/* Log */
.log .section {
  padding: 2vw 0vw;
}

.log .heading {
  background-color: #f2f2f2;
}

.log table.small-table td {
  padding: 0.5vw 0vw;
}

/* .log .image {
  height: 40vw;
} */

/* barrooster */
.barrooster .heading {
  background-color: #f2f2f2;
}

.bar-iframe {
  text-align: center;
  padding: 8vw 10vw;
}

iframe {
  width: 80vw;
  margin-top: 8vw;
  height: 40vw;
}


@media (max-width: 600px) {

  iframe {
    height: 80vw;
  }

  .section {
    width: 100%;
  }

  .home-omzet, .home-tikkie, .home-koelkast {
    padding: 15vw 0;
  }

  .streeplijst .home-streeplijst .right {
    float: none;
    width: 85vw;
    margin-left: 15vw;
    margin-top: 10vw;
    padding-right: 5vw;
    margin-bottom: 15vw;
  }

  .streeplijst .home-streeplijst .left {
      width: 100vw;
      margin-bottom: 10vw;
  }
  .analytics .totaalbedrag {
      padding: 15vw 10vw;
  }
  .analytics .image {
    top: 0;
  }
  .analytics .top-pvd {
    padding-bottom: 15vw;
  }
  .analytics .omzet .image, .log .betaallog .image {
    left: 0vw;
  }
  .analytics .omzet {
      padding: 5vw 0 15vw;
  }
  .log .section {
    padding: 5vw 0vw 15vw;
}
.log table.small-table td, .analytics .small-table td, .analytics .omzet .small-table td {
  padding: 2vw 0;
}

.analytics .top-pvd table.small-table .person-icon {
  display: none;
}
.analytics .top-pvd table.small-table td:nth-child(1) {
  width: auto;
}
.persoonlijk-menu .button {
  margin-right: 0px;
  display: block;
}
}

.button.strepen {
  background-color: #101010;
}

.button-wrapper .button.betalen {
  background-color: white;
  color: #101010;
  margin-right: 0px;
}

.ui-autocomplete {
  Background-color: #fff;
  width: 200px;
  border-top: 1px solid #f6f6f6;
  list-style: none;
  box-shadow: 0px 20px 26px rgb(0,0,0,0.1);
}
ul.ui-autocomplete li {
 padding: 20px;
 border-top: 1px solid #f6f6f6;
}
ul.ui-autocomplete li:hover, ul.ui-autocomplete li:active {
  cursor: pointer;
  background-color: #f6f6f6;
}

/* ANIMATION */
.ms-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right bottom, #9dd7d5, #fea096);
}
.ms-header__title {
  flex: 1 1 100%;
  width: 100%;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.ms-slider {
  display: inline-block;
  height: 1.5em;
  overflow: hidden;
  vertical-align: middle;
  mask-type: luminance;
  mask-mode: alpha;
}
.ms-slider__words {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-animation-name: wordSlider;
          animation-name: wordSlider;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
          animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.ms-slider__word {
  display: block;
  line-height: 1.3em;
  text-align: left;
}

@-webkit-keyframes wordSlider {
  0%, 15% {
    transform: translateY(0%);
  }
  20%, 35% {
    transform: translateY(-16.6%);
  }
  40%, 55% {
    transform: translateY(-33.3%);
  }
  60%, 75% {
    transform: translateY(-49.9%);
  }
  80%, 95% {
    transform: translateY(-66.6%);
  }
  100% {
    transform: translateY(-83.2%);
  }
}

@keyframes wordSlider {
  0%, 15% {
    transform: translateY(0%);
  }
  20%, 35% {
    transform: translateY(-16.6%);
  }
  40%, 55% {
    transform: translateY(-33.3%);
  }
  60%, 75% {
    transform: translateY(-49.9%);
  }
  80%, 95% {
    transform: translateY(-66.6%);
  }
  100% {
    transform: translateY(-83.2%);
  }
}
