.btn__validar--block, .btn__validar--block:hover, .btn__validar--block:focus{
    background-color: #bfbfbf;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    padding: 5px 35px;
    margin-top: 15px;
    width: 150px;
}

.btn__validar, .btn__validar:hover, .btn__validar:focus{
    background-color: #d08704;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    padding: 5px 35px;
    margin-top: 15px;
    width: 150px;
}

.btn__validado, .btn__validado:hover, .btn__validado:focus{
    background-color: #3b7d23;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    padding: 5px 35px;
    margin-top: 15px;
    width: 150px;
}

.message__error{
  color: #ff0000;
  font-size: 13px;
  font-weight: 500;
}

.timeline {
  width: 90%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  padding: 32px 0 32px 32px;
  border-left: 10px solid #bfbfbf;
  font-size: 1.125rem;
}

.timeline-item {
  display: flex;
  gap: 24px;
}

.timeline-item + * {
  margin-top: 24px;
}

.timeline-item + .extra-space {
  margin-top: 48px;
}

.section-block {
  width: 100%;
  margin-bottom: 30px;
}

.timeline-item-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: -52px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 0px #fff;
  background-color: #d08704;
}

.timeline-item-circle-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: -52px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 0px #fff;
  background-color: #3b7d23;
}

.timeline-item-circle-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: -52px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 0px #fff;
  background-color: #bfbfbf;
}