
.cart-modal-steps {
  display: flex;
  border-bottom: 1px solid #eee;
}

.cart-modal-step {
    position: relative;
}

.cart-modal-step-item {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  font-size: 13px;
  border-right: 1px solid #eee;
  background: #fafafa;
  color: rgba(0,0,0,0.4);
}

.cart-modal-step-item:last-child {
  border-right: none;
}

.cart-modal-step-item.active {
  /* background: #007bff; */
  background: #770074;
  background: linear-gradient(90deg,rgba(119, 0, 116, 1) 0%, rgba(0, 139, 255, 1) 50%);

  color: #fff;
  font-weight: 600;
}

.cart-modal-step h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 16px;
}

.cart-modal-inner {
    display:none;
}
.cart-modal-inner.active {
    display:block;
}