.dbtfy-shipping-checkpoints-wrapper {
  .placeholder-svg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .dbtfy-shipping-checkpoints-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    margin-bottom: 1rem;
  }

  .dbtfy-shipping-checkpoints-box::before {
    content: '';
    position: absolute;
    top: 19px;
    left: 3.66%;
    right: 3.66%;
    height: 2px;
    background: rgba(var(--color-button));
    z-index: 1;
    width: calc(100% / 3 * 2);
    margin: 0 auto;
  }

  .dbtfy-checkpoint {
    text-align: center;
    z-index: 2;
  }

  .dbtfy-circle {
    width: 36px;
    height: 36px;
    background: rgba(var(--color-button));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px;
    color: rgb(var(--color-button-text));
  }

  .dbtfy-circle svg {
    display: block;
  }

  .dbtfy-date {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    color: rgb(var(--color-foreground));
  }

  .dbtfy-label {
    font-size: 13px;
    color: rgba(var(--color-foreground), 0.6);
  }

  .dbtfy-shipping-review {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .dbtfy-review-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .dbtfy-review-content {
    flex: 1;
  }

  .dbtfy-stars {
    color: #ffbb33;
    margin-left: 8px;
  }
}