::selection{
    color: #fff;
    background: #0e0088;
  }

  .container .form-outer{
    width: 100%;
    overflow: hidden;
  }
  .container .form-outer form{
    display: flex;
    width: 400%;
  }
  .form-outer form .page{
    width: 25%;
    transition: margin-left 0.3s ease-in-out;
  }
  .form-outer form .page .title{
    text-align: left;
    font-size: 25px;
    font-weight: 500;
  }
  .form-outer form .page .field{
    width: 330px;
    height: 45px;
    margin: 45px 0;
    display: flex;
    position: relative;
  }
  form .page .field .label{
    position: absolute;
    top: -30px;
    font-weight: 500;
  }
  form .page .field input{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
  }
  form .page .field select{
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
  }
  form .page .field button{
    width: 100%;
    height: calc(100% + 5px);
    border: none;
    background: #0e0088;
    margin-top: -20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
  }
  form .page .field button:hover{
    background: #000;
  }
  form .page .btns button{
    margin-top: -20px!important;
  }
  form .page .btns button.prev{
    margin-right: 3px;
    font-size: 17px;
  }
  form .page .btns button.next{
    margin-left: 3px;
  }
  .container .progress-bar-reclamaciones{
    display: flex;
    margin: 40px 0;
    user-select: none;
  }

  .container .progress-bar-reclamaciones .step p{
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
  }
  .progress-bar-reclamaciones .step .bullet{
    height: 40px;
    width: 40px;
    border: 8px solid rgba(204, 197, 197, 0.486);
    background-color: rgb(230, 230, 230);
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
  }
  .progress-bar-reclamaciones .step .bullet.active{
    border-color: #0e0088;
    background: #0e0088;
  }
  .progress-bar-reclamaciones .step .bullet span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .progress-bar-reclamaciones .step .bullet.active span{
    display: none;
  }
  .progress-bar-reclamaciones .step .bullet:before,
  .progress-bar-reclamaciones .step .bullet:after{
    position: absolute;
    content: '';
    bottom: 11px;
    left: 2.5rem;
    height: 5px;
    width: 160px;
    background:rgba(204, 197, 197, 0.486);
  }

  @media only screen and (max-width: 600px) {
    .progress-bar-reclamaciones .step .bullet:before,
      .progress-bar-reclamaciones .step .bullet:after{
    width: 40px;
    }
    .container .progress-bar-reclamaciones .step p{
        font-size: 12px;
      }
  }

  .progress-bar-reclamaciones .step .bullet.active:after{
    background: #0e0088;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
  }
  @keyframes animate {
    100%{
      transform: scaleX(1);
    }
  }
  .progress-bar-reclamaciones .step:last-child .bullet:before,
  .progress-bar-reclamaciones .step:last-child .bullet:after{
    display: none;
  }
  .progress-bar-reclamaciones .step p.active{
    color: #0e0088;
    transition: 0.2s linear;
  }
  .progress-bar-reclamaciones .step .check{
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
  }
  .progress-bar-reclamaciones .step .check.active{
    display: block;
    color: #fff;
  }
