.h2_status_pedido {
  font-weight: 600;
  text-align: center;
  color: #7f233f;
}

.h3_pedido {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.entrega {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.entrega h2 {
  margin: 0;
  font-size: 24px;
}

.entrega p {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 16px;
}

.progresso {
  background-color: #e9e9e9;
  height: 10px;
  border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
}

.barra {
  height: 100%;
  width: 0;
  background-color: #7f233f;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}

.barra-100 {
  width: 100%;
}

.barra-75 {
  width: 75%;
}

.barra-50 {
  width: 50%;
}

.barra-25 {
  width: 25%;
}

.entrega p i {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  font-size: 50px;
  color: #7f233f;
}

.horarios {
  margin-top: 10px;
}

.horarios span {
  font-size: 14px;
  color: #888;
}

.campo-data {
  display: inline-block;
  margin-right: 30px;
}

.campo-data strong {
  display: block;
  font-weight: bold;
}

.campo-data span {
  display: block;
}

.icone-centralizado {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.icon-glyph-center {
  font-size: 50px;
  color: #f6f6f6;
}

.hr_status_pedido {
  width: 70%;
  position: absolute;
  top: 65px;
  left: 20px;
}