html {
    font-size: 62.5%;
  }

  body {
    min-height: 100vh;
    position: relative;
    display: block;
  }

  h2,
  h4,
  h6 {
    margin: 0;
    padding: 0;
    display: inline-block;
  }

  .root {
    padding: 3rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
    background-color: #fff;
  }

  figure {
    display: flex;
    justify-content: space-between;
  }
  figure img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    border: 1px solid #f05a00;
    margin-right: 1.5rem;
  }
  figure figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  figure figcaption p span {
    color:#e32222;
  }


  .order-track {
    margin-top: 2rem;
    padding: 0 1rem;
    border-top: 1px dashed #2c3e50;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .order-track-step {
    display: flex;
    height: 7rem;
  }
  .order-track-step:last-child {
    overflow: hidden;
    height: 4rem;
  }
  .order-track-step:last-child .order-track-status span:last-of-type {
    display: none;
  }
  .order-track-status {
    margin-right: 1.5rem;
    position: relative;
  }
  .order-track-status-dot {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #e32222;
  }
  .order-track-status-line {
    display: block;
    margin: 0 auto;
    width: 2px;
    height: 7rem;
    background: #e32222;
  }
  .order-track-text-stat {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1;
  }
  .order-track-text-sub {
    font-size: 11px;
    font-weight: 300;
  }

  .order-track {
    transition: all 0.3s height 0.3s;
    transform-origin: top center;
  }
  .bg-danger {
      background-color: #e32222!important;
      color: #fff;
  }
  .table-primary{
      background-color: #95c8ff1f;
      color: #201313;
  }