#regForm {
   
  }
  
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd !important;
    border-color: red !important;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  button {
    display: block;
    background: #C6C6C6;
    padding: 3px 15px;
    color: #fff;
    font-size: 16px;
    margin: 5px;
    max-width: 150px;
    border-radius: 5px;
    line-height: 40px;
    border: none;
  }
  
  button:hover {
    background-image: linear-gradient(to right, #ed3b95, #da2f8c, #c62283, #b4147a, #a10071);
  }
  
  #prevBtn {
    background-color: #C6C6C6;
  }
  
  /* Make circles that indicate the steps of the form: */
  .step {
    height: 10px;
    width: 20px;
    margin: 0 2px;
    background-color: #C6C6C6;
    border: none;  
    border-radius: 5px;
    display: inline-block;
  }
  
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-image: linear-gradient(to right, #ed3b95, #da2f8c, #c62283, #b4147a, #a10071);
  }
  
  .select2 {
      width:100% !important;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100% !important; 
    text-align: left !important;
    padding-left: 10px !important;
    font-size: 14px !important;
  }
  
  .select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important; 
    padding: 5px!important; 
    border-radius: 10px !important; 
  }
  
  .select2-container .select2-selection--single, .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
  }
  
  .email-validation-alert {
      color:red;
      font-size:13px;
  }
  
  .dob-table {
    border: transparent !important;
    margin-bottom: 0px !important;
  }
  
  #reg_btn {
     background-color: #DB2F8C;
     border: none;
  }
  
  .single-line {
    display: block;
    width: 100%;
  }
  .select2-results__option {
        font-size: 12px !important;
    }
 