@font-face {
  font-family: oxygenreg;
  src: url(oxygenregular.ttf); }

@font-face {
  font-family: oxygenbold;
  src: url(oxygenbold.ttf); }

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

body {
  overflow: hidden; }

.header {
  background: white;
  height: 120px;
  border-bottom: 2px solid black;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start; }
  .header .headerlogo {
    height: 120px;
    flex: 5;
    align-self: flex-start; }
    .header .headerlogo img {
      margin-top: 7px; }
    .header .headerlogo b {
      margin-top: 58px;
      height: 120px;
      line-height: 120px;
      font-size: 30px;
      margin-left: 30px; }
  .header .headerpersonal {
    flex: 1;
    align-self: flex-end;
    display: flex;
    height: 60px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 30px; }
    .header .headerpersonal img {
      height: 60px;
      width: 60px;
      max-width: 60px;
      order: 1;
      flex: 1; }
    .header .headerpersonal .pcontainer {
      margin-left: 10px;
      margin-top: 5px;
      order: 2;
      flex: 1; }
      .header .headerpersonal .pcontainer .pname {
        font-size: 24px;
        font-family: oxygenbold; }
      .header .headerpersonal .pcontainer .pteam {
        font-size: 18px; }

.projectscontainer {
  margin-top: 50px;
  width: 100%;
  position: relative;
  /*padding-left: 120px;
	padding-right: 120px;*/
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start; }
  .projectscontainer .project, .projectscontainer .projectadd {
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    align-self: flex-start;
    display: block;
    width: 500px;
    height: 300px;
    background-color: blue;
    flex: none;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3); }
    .projectscontainer .project .snapshot, .projectscontainer .projectadd .snapshot {
      position: absolute;
      top: 25px;
      height: 180px;
      left: 50%;
      transform: translateX(-50%); }
    .projectscontainer .project .options, .projectscontainer .projectadd .options {
      position: absolute;
      border-radius: 0px 20px;
      top: 0;
      right: 0;
      display: block;
      background: #E1E8F0;
      width: 55px;
      height: 55px; }
      .projectscontainer .project .options i, .projectscontainer .projectadd .options i {
        color: white;
        font-size: 35px;
        margin: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .projectscontainer .project .titleproject, .projectscontainer .projectadd .titleproject {
      position: absolute;
      bottom: 30px;
      left: 30px;
      display: block;
      background: #32617A;
      width: 165px;
      height: 30px;
      border-radius: 5px; }
    .projectscontainer .project .titleclient, .projectscontainer .projectadd .titleclient {
      position: absolute;
      bottom: 30px;
      right: 30px;
      display: block;
      background: #3BB3E5;
      width: 115px;
      height: 30px;
      border-radius: 5px; }
    .projectscontainer .project .addicon, .projectscontainer .projectadd .addicon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 76px;
      color: #4EB486; }
  .projectscontainer .invis {
    opacity: 0; }

.projectadd, .project {
  cursor: pointer;
  transition: 0.3s; }
  .projectadd:hover, .project:hover {
    transform: translate(-2px, -2px);
    box-shadow: #4EB486 6px 7px 0 0; }

.welcomepopup {
  z-index: 20;
  width: 1100px;
  height: 560px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
  border-radius: 35px; }
  .welcomepopup .welcomecontent {
    padding: 60px 75px; }
    .welcomepopup .welcomecontent .welcometitle {
      font-family: oxygenbold;
      font-size: 50px;
      margin-bottom: 50px; }
      .welcomepopup .welcomecontent .welcometitle b {
        color: #3BB3E5; }
    .welcomepopup .welcomecontent .welcomesummary {
      font-size: 19px;
      margin-bottom: 75px; }
    .welcomepopup .welcomecontent .noonboarding {
      box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
      background: #FFFFFF;
      border-radius: 35.5px;
      color: #32617A;
      font-size: 18px;
      display: inline-block;
      padding: 16px 24px;
      font-family: oxygenbold;
      cursor: pointer;
      margin-right: 20px;
      transition: 0.3s; }
      .welcomepopup .welcomecontent .noonboarding:hover {
        color: white;
        background: #80BB00; }
    .welcomepopup .welcomecontent .yesonboarding {
      box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
      background: #32617A;
      border-radius: 35.5px;
      color: white;
      font-size: 18px;
      display: inline-block;
      padding: 16px 24px;
      font-family: oxygenbold;
      cursor: pointer;
      transition: 0.3s; }
      .welcomepopup .welcomecontent .yesonboarding:hover {
        background: #80BB00; }
    .welcomepopup .welcomecontent .welcomesponsored {
      width: 420px;
      position: absolute;
      bottom: 70px;
      left: 80px; }
    .welcomepopup .welcomecontent .welcomeowner {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%) scaleX(-1);
      right: 55px; }
    .welcomepopup .welcomecontent .welcomename {
      text-align: center;
      width: 240px;
      position: absolute;
      top: 73%;
      right: 55px;
      font-size: 20px;
      font-family: oxygenbold; }
    .welcomepopup .welcomecontent .welcomejob {
      text-align: center;
      width: 240px;
      position: absolute;
      top: 78%;
      right: 55px;
      font-size: 20px; }

.backgroundfade {
  top: 0;
  left: 0;
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #32617A;
  opacity: 0.7; }

.skiponboarding {
  opacity: 0;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
  background: #3BB3E5;
  border-radius: 35.5px;
  color: white;
  font-size: 18px;
  display: inline-block;
  padding: 16px 24px;
  font-family: oxygenbold;
  cursor: pointer;
  z-index: 15;
  transition: 0.3s; }
  .skiponboarding:hover {
    background: #80BB00; }

.onboardingcounter {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
  background: #3BB3E5;
  border-radius: 35.5px;
  color: white;
  font-size: 18px;
  display: inline-block;
  padding: 16px 24px;
  font-family: oxygenbold;
  z-index: 15; }

.onboarding {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px; }

.oup:after {
  content: '';
  position: absolute;
  display: block;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white; }

.oleft:after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-right: 15px solid white;
  border-bottom: 15px solid transparent; }

#k1c, #k2c, #k3c, #k4c {
  transition: 0.3s; }

.step1 {
  width: 350px;
  position: absolute;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 16; }

.step2 {
  width: 350px;
  position: absolute;
  bottom: 245px;
  left: 70%;
  z-index: 16; }

.step3 {
  width: 350px;
  position: absolute;
  bottom: 245px;
  left: 50%;
  transform: translateX(-50%); }

.step4 {
  width: 350px;
  position: absolute;
  top: 270px;
  left: 50%;
  transform: translateX(-50%); }

.step4a {
  width: 350px;
  position: absolute;
  top: 595px;
  left: 50%;
  transform: translateX(-50%); }

.step5 {
  width: 350px;
  position: absolute;
  top: 475px;
  left: 50%;
  transform: translateX(-50%); }

.step8 {
  width: 350px;
  position: absolute;
  top: 630px;
  left: 50%;
  transform: translateX(-50%); }

.step9 {
  width: 350px;
  position: absolute;
  height: 220px;
  top: 390px;
  left: 50%;
  transform: translateX(-50%); }

.step10 {
  width: 350px;
  position: absolute;
  height: 220px;
  top: 505px;
  left: 50%;
  transform: translateX(-50%); }

.okenextstep {
  text-align: center;
  line-height: 30px;
  border-radius: 100px;
  color: white;
  width: 86px;
  height: 30px;
  background: #32617A;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: 0.3s; }
  .okenextstep:hover {
    background: #80BB00; }

.tijdlijn {
  /*	border-top: 4px solid #3BB3E5;
	border-left: 4px solid #80BB00;
	border-right: 4px solid #3BB3E5;*/
  border-radius: 17px 17px 0px 0px;
  width: 492px;
  height: 36px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  z-index: 5; }
  .tijdlijn:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    border-radius: 100%;
    background: #80BB00;
    width: 16px;
    height: 16px; }
  .tijdlijn:after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: -9px;
    border-radius: 100%;
    background: #3BB3E5;
    width: 16px;
    height: 16px; }

.tijdlijninprogress {
  z-index: 1;
  border: 4px dashed #FF2F55;
  border-bottom: none;
  width: 500px;
  height: 40px; }
  .tijdlijninprogress:before {
    z-index: 5;
    content: none;
    background: #3BB3E5; }
  .tijdlijninprogress:after {
    background: #FF2F55; }

.tijdlijncont {
  margin-left: -9px;
  width: 500px;
  height: 40px;
  border-radius: 20px 20px 0px 0px;
  position: relative;
  display: inline-block; }

.tijdlijnall {
  opacity: 0;
  transition: 0.3s;
  width: 1000px;
  white-space: nowrap;
  position: absolute;
  top: 225px;
  left: 50%;
  transform: translate(-50%, -50%); }

.completed {
  background: #80BB00; }

.inprogress {
  background-image: linear-gradient(to right, #80BB00, #3BB3E5);
  z-index: 2; }

.locked {
  background: #FF2F55;
  border-style: dashed;
  border-top: 4px;
  border-left: 4px;
  border-right: 4px;
  border-bottom: 4px; }

.fase {
  font-family: oxygenbold;
  top: -40px;
  position: absolute;
  z-index: 5;
  font-size: 24px; }

.f1 {
  left: -65px; }

.f2 {
  left: calc(50% - 10px);
  transform: translateX(-50%); }

.f3 {
  right: -35px; }

.icon {
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 50%;
  z-index: 10; }

.checkmarkicon {
  top: -12px;
  left: 233px;
  border: 3px solid #80BB00;
  background: white; }
  .checkmarkicon i {
    color: #80BB00;
    padding-left: 3px;
    padding-top: 4px; }

.lockedicon {
  top: -12px;
  right: 233px;
  border: 3px solid black;
  background: white; }
  .lockedicon i {
    color: black;
    padding-left: 7px;
    padding-top: 4px; }

.kaart {
  position: absolute;
  width: 430px;
  background: #FFFFFF;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 16px 25px; }

#c1, #c2 {
  transition: 0.3s; }

/*background-color:rgba(50,97,122, 0.5);*/
#step1, #step2, #step3, #step4, #step4a, #step5, #step6, #step7, #step8, #step9, #step10 {
  opacity: 0;
  transition: 0.3s; }

.addstap p {
  border: 4px solid #32617A;
  color: #32617A;
  font-size: 20px;
  font-family: oxygenbold;
  text-align: center;
  padding: 12px 12px;
  text-transform: uppercase;
  border-radius: 10px; }
  .addstap p:before {
    content: "Nieuwe stap";
    font-family: oxygenbold;
    color: black;
    font-size: 13px;
    position: absolute;
    background: white;
    text-transform: initial;
    top: 3px;
    left: 54px;
    padding: 6px; }

.k1 {
  left: -225px;
  top: 68px;
  transition: 0.3s; }

.k2 {
  top: 68px;
  left: 270px; }

.k3 {
  top: 68px;
  right: -195px; }

.k4 {
  transition: 0.3s;
  opacity: 0;
  padding-top: 110px;
  padding-left: 25px;
  padding-right: 25px;
  left: -225px;
  top: 68px; }
  .k4 .knaam {
    font-size: 24px;
    font-family: oxygenbold;
    position: absolute;
    top: 22px;
    left: 96px; }
  .k4 .kteam {
    position: absolute;
    top: 50px;
    left: 96px;
    font-size: 18px; }
  .k4 .kimg {
    top: 24px;
    left: 24px;
    position: absolute;
    height: 50px;
    width: 50px;
    background: #FF2F55;
    color: #7B2132;
    border-radius: 50%;
    text-align: center; }
    .k4 .kimg p {
      font-size: 24px;
      font-family: oxygenbold;
      padding-top: 8px; }
  .k4 .k1c1 {
    font-family: oxygenbold;
    font-size: 25px; }
  .k4 .k1c2 {
    white-space: pre-wrap;
    margin-bottom: 15px; }
  .k4 .k1c3 {
    position: relative;
    border: 4px solid #FF2F55;
    color: black;
    font-size: 20px;
    font-family: oxygenbold;
    text-align: center;
    padding: 34px 12px;
    text-transform: uppercase;
    border-radius: 10px;
    margin-bottom: 40px; }
    .k4 .k1c3:before {
      content: "Huidige stap";
      font-family: oxygenbold;
      color: black;
      font-size: 13px;
      position: absolute;
      background: white;
      text-transform: initial;
      top: -17px;
      left: 25px;
      padding: 6px; }
    .k4 .k1c3:after {
      content: "Vereist actie van U";
      font-family: oxygenbold;
      color: white;
      font-size: 13px;
      position: absolute;
      background: #FF2F55;
      text-transform: initial;
      bottom: -15px;
      left: 90px;
      padding: 6px 40px;
      border-radius: 4px; }
  .k4 .k1c4 {
    text-align: center;
    width: 100%;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
    background: #32617A;
    border-radius: 35.5px;
    color: white;
    font-size: 18px;
    padding: 16px 24px;
    font-family: oxygenbold;
    cursor: pointer;
    z-index: 15;
    transition: 0.3s;
    margin-bottom: 15px; }
    .k4 .k1c4:hover {
      background: #80BB00; }
  .k4 .k1c5 {
    text-align: center;
    width: 100%;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
    background: white;
    border-radius: 35.5px;
    color: #32617A;
    font-size: 18px;
    padding: 16px 24px;
    font-family: oxygenbold;
    cursor: pointer;
    z-index: 15;
    transition: 0.3s;
    margin-bottom: 30px; }
    .k4 .k1c5:hover {
      background: #80BB00;
      color: white; }
  .k4 .k2c1 {
    white-space: pre-wrap;
    font-size: 16px;
    margin-bottom: 15px;
    font-family: oxygenbold; }
  .k4 .k2c2 {
    white-space: pre-wrap;
    margin-bottom: 20px;
    font-size: 16px; }
  .k4 .k2c3 {
    color: white;
    background: #FF2F55;
    border-radius: 100px;
    font-size: 16px;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 15px; }
  .k4 .k2c4 {
    width: 43%;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
    background: white;
    border-radius: 35.5px;
    color: #FF2F55;
    font-size: 18px;
    display: inline-block;
    padding: 13px 21px;
    font-family: oxygenbold;
    cursor: pointer;
    margin-right: 47px;
    text-align: center;
    border: 3px solid #FF2F55;
    transition: 0.3s;
    box-sizing: border-box; }
    .k4 .k2c4:hover {
      color: white;
      background: #80BB00;
      border: 3px solid transparent; }
  .k4 .k2c5 {
    width: 43%;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
    background: #3BB3E5;
    border-radius: 35.5px;
    color: white;
    font-size: 18px;
    display: inline-block;
    padding: 16px 24px;
    font-family: oxygenbold;
    cursor: pointer;
    text-align: center;
    transition: 0.3s; }
    .k4 .k2c5:hover {
      color: white;
      background: #80BB00; }
  .k4 .k3c2 {
    color: white;
    background: #32617A;
    border-radius: 100px;
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 20px; }
  .k4 .k3c3 {
    background: #E1E8F0;
    color: #747474;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 20px; }
  .k4 .k3c4 {
    width: 220px;
    background: #608EA6;
    color: white;
    margin-bottom: 20px;
    border-radius: 20px;
    height: 130px; }
    .k4 .k3c4 p {
      font-size: 90px;
      text-align: center; }
  .k4 .k3c5 {
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
    background: #FFFFFF;
    border-radius: 35.5px;
    color: #32617A;
    font-size: 18px;
    display: inline-block;
    padding: 16px 24px;
    font-family: oxygenbold;
    cursor: pointer;
    margin-right: 20px;
    transition: 0.3s;
    margin-bottom: 20px; }
    .k4 .k3c5:hover {
      color: white;
      background: #80BB00; }
  .k4 .k3c6 {
    display: block;
    font-size: 25px;
    margin-bottom: 20px;
    color: #80BB00; }
    .k4 .k3c6:after {
      content: "Ik ga akkoord met de voorwaarden.";
      font-size: 18px;
      margin-left: 15px;
      font-family: oxygenbold; }
  .k4 .k3c7 {
    text-align: center;
    width: 100%;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3);
    background: #32617A;
    border-radius: 35.5px;
    color: white;
    font-size: 18px;
    padding: 16px 24px;
    font-family: oxygenbold;
    cursor: pointer;
    z-index: 15;
    transition: 0.3s;
    margin-bottom: 15px; }
    .k4 .k3c7:hover {
      background: #80BB00; }
  .k4 .k4c1 {
    position: relative;
    border: 4px solid #80BB00;
    color: #80BB00;
    font-size: 20px;
    font-family: oxygenbold;
    text-align: center;
    padding: 34px 12px;
    text-transform: uppercase;
    border-radius: 10px;
    margin-bottom: 20px; }
    .k4 .k4c1:before {
      content: "Huidige stap";
      font-family: oxygenbold;
      color: #80BB00;
      font-size: 13px;
      position: absolute;
      background: white;
      text-transform: initial;
      top: -17px;
      left: 25px;
      padding: 6px; }
    .k4 .k4c1:after {
      content: "Geen verdere actie nodig";
      font-family: oxygenbold;
      color: white;
      font-size: 13px;
      position: absolute;
      background: #80BB00;
      text-transform: initial;
      bottom: -15px;
      left: 70px;
      padding: 6px 40px;
      border-radius: 4px; }

.fullwidth {
  width: 100%; }

.kaartfade {
  opacity: 0;
  z-index: 11;
  top: -206px;
  left: -1450px;
  position: fixed;
  width: 4500px;
  height: 2500px;
  background: #32617A; }

#k2c, #k3c, #k4c {
  display: none;
  opacity: 0; }

.backgroundings {
  height: 101px;
  width: 1170px;
  display: block;
  position: fixed;
  top: -45px;
  left: -100px;
  background: white;
  border-radius: 20px; }

#c3, #c4 {
  display: none; }
  #c3 .titleproject, #c4 .titleproject {
    background: white;
    color: #32617A;
    font-size: 24px;
    font-family: oxygenbold; }
  #c3 .titleclient, #c4 .titleclient {
    background: white;
    color: #3BB3E5;
    font-size: 24px;
    font-family: oxygenbold; }

@media only screen and (max-width: 1650px) {
  .projectscontainer .project, .projectscontainer .projectadd {
    width: 410px; }
  .k4, .k1 {
    left: -170px; }
  .k3 {
    right: -140px; } }

@media only screen and (max-width: 1370px) {
  .projectscontainer .project, .projectscontainer .projectadd {
    width: 350px; }
  /*  .kaart, .tijdlijninprogress, .tijdlijncont{
  	width: 380px !important;
  }
  .tijdlijn {
  	width: 370px;
  }*/ }
