.cart_process {
  background-color: #f5f6f8;
  padding: 5.7rem 0 4.3rem;
  margin-bottom: 8rem;
}
.cart_process .process_list {
  display: flex;
  max-width: 75.8rem;
  margin: 0 auto;
}
.cart_process .process_list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.cart_process .process_list li::before {
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
  position: absolute;
  left: 50%;
  top: 3rem;
  content: '';
  z-index: -1;
}
.cart_process .process_list li:last-child::before {
  display: none;
}
.cart_process .process_list li.active .order {
  color: #fff;
}
.cart_process .process_list li.active .order::after {
  background-color: var(--primary);
}
.cart_process .process_list li.active .title {
  color: var(--primary);
  font-weight: 700;
}
.cart_process .process_list .order {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  color: var(--primary);
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 6rem;
  min-width: 6rem;
}
.cart_process .process_list .order::after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ecedf2;
  pointer-events: none;
  z-index: -1;
}
.cart_process .process_list .order::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.7);
  content: '';
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background-color: #f5f6f8;
}
.cart_process .process_list .title {
  font-size: 2.2rem;
  color: #8b8b8b;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .cart_process {
    padding: 30px 0;
  }
  .cart_process .process_list li::before {
    top: 16px;
  }
  .cart_process .process_list .order {
    font-size: 14px;
    line-height: 32px;
    min-width: 32px;
    padding: 0 5px;
  }
  .cart_process .process_list .title {
    font-size: 14px;
    margin-top: 16px;
  }
}
/*# sourceMappingURL=cart.css.map */