#loading {
  position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f8f9fa;
    z-index: 10;
    display: flex;
    justify-content: center;
}

body {
    background: #f9fafb;
    overflow-x: hidden;
}
.nav-link {
  font-size: 21px !important;
}


.wrapper {
    margin: 10px 10px 10px 10px;
    
}

.card-text {
  line-height: 14px;
}


input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Style the form */
#regForm {
    background-color: #ffffff;
    margin: 10px auto;
    padding: 40px;
    max-width: 100%;
    overflow-y: scroll !important;
    display:block;
  }


  
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #e74c3c;
  }

  textarea.invalid {
    background-color: #e74c3c;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  /* Make circles that indicate the steps of the form: */
  .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  /* Mark the active step: */
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: #04AA6D;
  }
