  body {
    margin: 0;
  }

  .banner {
    background: #a7cbd0;
    height: 80px;
    display: flex;
    z-index: 2;
    position: relative;
    box-sizing: border-box;
    /* content:url(https://mooji.org/img/logo-large@2x.png); */
  }

  iframe {
    display: block;
    background: #f6f5f5;
    border: none;
    height: calc(100vh - 110px);
    width: 100%;
    box-sizing: border-box;
  }

  .imageholder {
    flex: 0 0 10%;
    padding-top: 20px !important;
    padding-left: 20px !important;
  }

  .container {
    /* width: 80%;
    margin: 20px auto; */
    flex: 1;
  }

  .progressbar {
    counter-reset: step;
  }

  .progressbar li {
    list-style-type: none;
    width: 25%;
    float: left;
    font-size: 16px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #83a3a7;
  }

  .progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    border: 2px solid #83a3a7;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
  }

  .progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #83a3a7;
    top: 15px;
    left: -50%;
    z-index: -1;
  }

  .progressbar li:first-child:after {
    content: none;
  }

  .progressbar li.active {
    color: #374648;
  }

  .progressbar li.active:before {
    border-color: #374648;
	background-color: #ff5722;
	color: white;
	font-weight: bold;
  }

  .progressbar li.active+li:after {
    background-color: #374648;
  }


  @media only screen and (max-width: 600px) {
	/* remove logo */
	.imageholder {
		display : none;
	}

  @media (max-width:550px){
    .progressbar li {
      font-size: 14px;
    }
  }

  @media (max-width:430px){
    .progressbar li {
      font-size: 12px;
    }
  }

}
