:root {
    --background-color: #F3F4F6;
    --light-grey: #c4c1c1;
    --accent-color: #3598dc;
  }
  
      .steps-container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    margin: 0;
    font-size: 16px;
    background-color: var(--background-color);
      }
      
  .progress-container {
      display: flex;
      justify-content: space-between;
      position: relative;
      max-width: 650px;
      width: 100%;
  }
  
  .progress-container::before {
      content: "";
      background-color: var(--light-grey);
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      height: 4px;
      width: 100%;
      z-index: 0;
  }
  
  .progress {
      background-color: var(--accent-color);
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      height: 4px;
      width: 0%;
      z-index: 0;
      transition: 0.4s ease;
  }
  
  .circle {
      background: var(--light-grey);
      color: var(--light-grey);
      border-radius: 50%;
      height: 20px;
      width: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 5px solid var(--light-grey);
      transition: 0.4s ease;
  }
  
  .circle.active {
      border-color: var(--accent-color);
      background-color: #fff;
      color: var(--accent-color);
      scale: 1.1;
  }
  
  .circle .icon {
      position: absolute;
      font-size: 25px;
      bottom: 25px;
  }
  
  .circle .caption {
      position: absolute;
      font-size: 14px;
      font-weight: bolder;
      bottom: -35px;
      white-space: nowrap;
  }
  
  .btn {
      background: var(--accent-color);
      color: #fff;
      border: 0;
      border-radius: 20px;
      cursor: pointer;
      font-family: inherit;
      font-size: inherit;
      padding: 8px 30px;
      margin: 5px;
  }
  
  .btn:active {
      transform: scale(0.9);
  }
  
  .btn:focus {
      outline: 0;
  }
  
  .btn:disabled {
      background-color: var(--light-grey);
      cursor: not-allowed;
  }


  body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #f3f4f6;
  }

  footer{
    margin-top:auto;
  }

  .help-block {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.has-error .form-control {
    border-color: red;
}


.float-tab-radius {
    /* border: 1px solid #ced4da;
    padding: 20px 15px 8px;
    background: #fff;
    border-radius: 4px */
}

.float-tab-radius ul {
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.float-tab-radius ul li {
    border-radius: 4px;
    position: relative;
    text-align: center;
    /* background: #dbdbdb; */
    background: #fff;
    padding: 5px 40px 5px 10px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 18px;
    border: 1px solid #e2e2e2;
}

.float-tab-radius ul li span {
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
    color: #d62929;
    margin-right: 0.1rem;
    font-size: 15px;
    position: absolute;
    right: 2px;
    border-left: 2px solid #e2e2e2;
    padding: 5px 8px;
    top: 6px;
    cursor: pointer;
}

.float-tab-radius ul li span:hover {
    background: #e2e2e2
}