.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.timeline {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.li {
  transition: all 200ms ease-in;
}

.timestamp {
  margin-bottom: 20px;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
}

.status {
  padding: 0px 40px;
  display: flex;
  justify-content: center;
  /* border-top: 2px solid #D6DCE0; */
  position: relative;
  transition: all 200ms ease-in;
}
.status h4 {
  font-weight: 400;
  margin-top: 1.6rem;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 1em !important;
  white-space:nowrap;
  color: #636363;
}
.status:before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: absolute;
  top: inherit;
  left: inherit;
  transition: all 200ms ease-in;
  margin-top: -1.3rem;
}
.status:after {
  content: "1";
  width: 40px;
  height: 40px;
  border-radius: 25px;
  position: absolute;
  top: inherit;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  left: inherit;
  font-size: 1.3rem;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  transition: all 200ms ease-in;
  margin-top: -1.3rem;
}
.status.entrega:after {
  content: "2";
}
.status.pagamento:after {
  content: "3";
}
.status.comprovante:after {
  content: "4";
}

.li.complete .status {
  /* border-top: 2px solid #26B46A !important; */
}
.li.complete .status:before {
  background-color: #ffffff;
  border: none;
  transition: all 200ms ease-in;
}
.li.complete .status:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 100;
  font-size: 2.6rem;
  content: "\f058";
  color: #26B46A !important;
}
.li.complete .status h4 {
  color: #26B46A !important;
  font-weight: 600;
}

.active .status {
  /* border-top: 2px solid #636363 !important; */
}

.active .status:after {
  color: #636363 !important;
  box-shadow: 0px 0px 10px -2px #afafaf
}

.active .status h4 {
  color: #636363 !important;
  font-weight: 500;
}

html, body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #758D96;
}

button {
  position: absolute;
  width: 100px;
  min-width: 100px;
  padding: 20px;
  margin: 20px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  border: none;
  color: white;
  font-size: 16px;
  text-align: center;
}
.editar{
  font-family: 'Roboto';
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}
.envolve-editar{
  height: 2rem;
  white-space:nowrap;
}

.timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  padding: 0;
}

@media (min-device-width: 320px) and (max-device-width: 767px) {
  .status h4 {
    font-size: 1em;
  }
  .status {
    padding: 0px .8rem;
  }
  .status:after {
    width: 30px;
    height: 30px;
    top: inherit;
    left: inherit;
    font-size: 1rem;
    margin-top: -1.1rem;
  }
  .status:before {
    width: 30px;
    height: 30px;
    top: inherit;
    left: inherit;
    margin-top: -1.1rem;
  }
  .status h4 {
    font-size: 1em;
    width: 5.6rem;
    height: 3rem;
    text-align: center;
  }
  .li.complete .status:after {
    font-size: 1.9rem;
  }
  .timestamp {
    display: none;
  }

}