.cart_process {
  background-color: var(--bg);
  margin-top: 0.8rem;
  padding: 6.1rem 0 5rem;
}
.cart_process .items {
  max-width: 66.4rem;
  margin: 0 auto;
}
.cart_process .items ul {
  display: flex;
}
.cart_process .items li {
  position: relative;
  z-index: 2;
  flex: 1;
}
.cart_process .items li::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 2.5rem;
  content: '';
  background-color: #666666;
  z-index: -1;
}
.cart_process .items li.active .order {
  color: #fff;
}
.cart_process .items li.active .order::after {
  background-color: var(--primary);
  border-color: var(--primary);
}
.cart_process .items li.active .title {
  color: var(--title);
}
.cart_process .items li:last-child::before {
  display: none;
}
.cart_process .items .order {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 2.089rem;
  font-weight: 500;
  color: rgba(22, 22, 22, 0.89);
  border-radius: 50%;
  min-width: 5.2rem;
  width: max-content;
  line-height: 5.2rem;
  text-align: center;
  transition: all 0.3s;
  padding: 0 0.5rem;
  margin: 0 auto;
}
.cart_process .items .order::before {
  width: 165%;
  height: 165%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: 50%;
  background-color: #f0f0f0;
  pointer-events: none;
  z-index: -1;
}
.cart_process .items .order::after {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  border: 1px solid var(--title);
  background-color: #f0f0f0;
  z-index: -1;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cart_process .items .title {
  position: relative;
  z-index: 2;
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(102, 102, 102, 0.5);
  text-align: center;
  transition: all 0.3s;
  margin-top: 1.7rem;
}
@media screen and (max-width: 768px) {
  .cart_process {
    padding: 30px 0;
    margin: 0;
  }
  .cart_process .items li::before {
    top: 20px;
  }
  .cart_process .items .order {
    font-size: 14px;
    min-width: 40px;
    line-height: 40px;
  }
  .cart_process .items .title {
    font-size: 14px;
    margin-top: 12px;
  }
}
