#boton * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  

  
  /* Button */
   .btncl {
    width: 110px;
    position: relative;
    padding: 7px;
    background-color: #e31561;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #0f351c;
    text-decoration: none;
    font-family: 'Gilroy-Regular';
    border-color: #e31561;
    color: white;
    font-weight: bold;
    vertical-align: bottom;
  }
  
  /* In Progress Button */
   .btn-progress {
    width: 200px;
    color: transparent;
  }
  
   .btn-fill:after {
    content: '';
    background: #1ECD97;
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 0;
    display: block;
    animation: fill 3.2s linear forwards;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  
  /* Button Complete */
   .btn-complete {
    padding: 10px;
    width: 50px;
    pointer-events: none;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
  }
  
   .btn-complete:after {
    
    font-family: FontAwesome;
    content: "\f00c";
    color: #fff;
    height: 100%;
    padding-left: 3px;
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1ECD97;
  }
  
  /* Animation */
  @keyframes fill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }