.product-fast-delivery-timeline {
  display: block;
  width: 100%;
  color: #000000;
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #dddddd;
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__step {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 12px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__step:not(:last-child) {
  border-inline-end: 1px solid #dddddd;
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  inset-block-start: 50%;
  inset-inline-end: -10px;
  width: 18px;
  height: 18px;
  content: "";
  background-color: #ffffff;
  border-block-start: 1px solid #dddddd;
  border-inline-end: 1px solid #dddddd;
  transform: translateY(-50%) rotate(45deg);
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__icon {
  display: flex;
  width: 34px;
  height: 34px;
  margin-block-end: 5px;
  align-items: center;
  justify-content: center;
}
.product-fast-delivery-timeline .product-fast-delivery-timeline__icon svg {
  width: 32px;
  height: 32px;
  color: #000000;
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__icon svg g {
  opacity: 1;
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__title {
  display: block;
  max-width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
  white-space: pre;
}

.product-fast-delivery-timeline .product-fast-delivery-timeline__date {
  display: block;
  margin-block-start: 2px;
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .product-fast-delivery-timeline .product-fast-delivery-timeline__step {
    padding: 8px;
  }

  .product-fast-delivery-timeline .product-fast-delivery-timeline__icon {
    width: 28px;
    height: 28px;
    margin-block-end: 4px;
  }

  .product-fast-delivery-timeline .product-fast-delivery-timeline__icon svg {
    width: 27px;
    height: 27px;
  }

  .product-fast-delivery-timeline .product-fast-delivery-timeline__title {
    font-size: 14px;
  }

  .product-fast-delivery-timeline .product-fast-delivery-timeline__date {
    font-size: 12px;
  }
  
  .product-fast-delivery-timeline .product-fast-delivery-timeline__step:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    inset-block-start: 50%;
    inset-inline-end: -5px;
    width: 8px;
    height: 8px;
    content: "";
    background-color: #ffffff;
    border-block-start: 1px solid #dddddd;
    border-inline-end: 1px solid #dddddd;
    transform: translateY(-50%) rotate(45deg);
  }
}