* {
    font-family: 'Hind', sans-serif;
  }
  
  body {
    background: #ebebeb;
  }
  
  #sidebar,
  .bg-blue {
    background-color: #005BA9;
  }
  
  .bg-gray-light {
    background-color: #F3F3F3;
  }
  
  .btn-yellow {
    background-color: #FFDD0A;
    color: #005BA9 !important;
    font-weight: bold;
    padding: 10px 60px;
    border-radius: 30px;
  }
  
  .btn-yellow:hover {
    color: #005BA9;
  }
  
  .text-blue {
    color: #005BA9;
  }
  
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 10px;
    left: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    border: 2px solid #fff;
}
  
  .separator {
    margin: 3rem 0;
    border-bottom: 1px dashed #fff;
  }
  
  .text-uppercase {
    letter-spacing: 0.1em;
  }
  
  .text-gray {
    color: #aaa;
  }
  
  .vertical-nav {
    min-width: 17rem;
    width: 17rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
  }
  
  .page-content {
    width: calc(100% - 17rem);
    margin-left: 17rem;
    transition: all 0.4s;
  }
  
  /* for toggle behavior */
  
  #sidebar.active {
    margin-left: -17rem;
  }
  
  #content.active {
    width: 100%;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    #sidebar {
      margin-left: -17rem;
    }
  
    #sidebar.active {
      margin-left: 0;
    }
  
    #content {
      width: 100%;
      margin: 0;
    }
  
    #content.active {
      margin-left: 17rem;
      width: calc(100% - 17rem);
    }
  }
  
  
  
  /*FORM CSS*/
  
  
  /*progressbar*/
  #progressbar {
    margin-top: 50%;
    padding: 0px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    margin-bottom: 50%;
  }
  
  #progressbar li {
    list-style-type: none;
    color: white;
  }
  
  #progressbar li:before {
    content: '';
    width: 15px;
    height: 15px;
    line-height: 26px;
    display: block;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
  }
  
  
  #progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
  }
  
  /*marking active/completed steps green*/
  /*The number of the step and the connector before it = green*/
  #progressbar li.active:before,
  #progressbar li.active:after {
    background: #FFDD0A;
  }
  
  
  
  /*INPUT */
  
  #label-input {
    cursor: pointer;
    background-color: #ffdd0a;
    padding: 5px 35px;
    color: #005ba9;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1.3rem;
  }
  
  #upload-photo {
    opacity: 0;
    position: absolute;
    z-index: -1;
  }
  
  
  /*LOADER*/
  .lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #005ba9;
    margin: -4px 0 0 -4px;
  }
  
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Comportamentos Form */
  .hide {
    display: none;
  }
  
  .show {
    display: block;
  }
  
  /*responsivo*/
  @media (max-width: 1140px) {
    #ilustracoes {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-height: 800px) {
    #progressbar {
      margin-top: 25%;
      padding: 0px;
      overflow: hidden;
      /*CSS counters to number the steps*/
      counter-reset: step;
      margin-bottom: 25%;
    }
  }