/* BOLTTE V159: cart shipping progress */
.boltte-shipping-progress-item {
  display: block;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  width: 100%;
}

.boltte-shipping-progress {
  background: #f4f8fc;
  border: 1px solid #cfdeeb;
  border-radius: 10px;
  box-sizing: border-box;
  display: block;
  padding: 12px 14px 10px;
  width: 100%;
}

.boltte-shipping-progress__message {
  color: #10233f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.boltte-shipping-progress__message--secondary {
  color: #0b766e;
  margin-top: 3px;
}

.boltte-shipping-progress__track {
  background: #dce6ef;
  border-radius: 999px;
  height: 8px;
  margin: 11px 3px 8px;
  overflow: visible;
  position: relative;
}

.boltte-shipping-progress__fill {
  background: linear-gradient(90deg, #0e5ca8 0%, #0b8b80 55%, #f45b0b 100%);
  border-radius: inherit;
  display: block;
  height: 100%;
  max-width: 100%;
  transition: width 180ms ease;
  width: 0;
}

.boltte-shipping-progress__marker {
  background: #ffffff;
  border: 2px solid #7890a8;
  border-radius: 50%;
  box-sizing: border-box;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
}

.boltte-shipping-progress__marker--standard {
  left: 50%;
}

.boltte-shipping-progress__marker--ups {
  left: 100%;
}

.boltte-shipping-progress.is-standard-unlocked .boltte-shipping-progress__marker--standard,
.boltte-shipping-progress.is-ups-unlocked .boltte-shipping-progress__marker--ups {
  background: #0b8b80;
  border-color: #0b8b80;
  box-shadow: 0 0 0 3px rgba(11, 139, 128, 0.13);
}

.boltte-shipping-progress__labels {
  align-items: start;
  color: #53677e;
  display: grid;
  font-size: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  line-height: 1.2;
}

.boltte-shipping-progress__labels > span:nth-child(2) {
  text-align: center;
}

.boltte-shipping-progress__labels > span:last-child {
  text-align: right;
}

.boltte-shipping-progress__labels strong,
.boltte-shipping-progress__labels small {
  display: block;
}

.boltte-shipping-progress__labels strong {
  color: #10233f;
  font-size: 11px;
}

.boltte-shipping-progress__labels small {
  font-size: 9px;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

@media screen and (max-width: 479px) {
  .boltte-shipping-progress {
    padding: 11px 10px 9px;
  }

  .boltte-shipping-progress__labels {
    font-size: 9px;
  }

  .boltte-shipping-progress__labels small {
    font-size: 8px;
  }
}
