.cart_container{
    padding: 0 15%;
}
.order_path{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 20px;
}
.order_path > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.order_path i{
    font-size: 33px;
    opacity: .8;
    color: #c9c9c9;
    margin-bottom: 10px;
}
.order_path p{
    color: #c9c9c9;
    font-size: 15px;
    font-weight: 600;
}
.order_path_flesh i{
    font-size: 19px;
}
.order_path_active i{
    color: var(--mainc);
}
.order_path_active p{
    color: var(--mainc);
}
.cartmain{
    background-color: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}
.cart_detail > div{
    display: flex;
    align-items: center;
}
.cart_product figure{
    width: 70px;
    overflow: hidden;
    border-radius: 5px;
}
.cart_product p{
    margin-right: 10px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}
.cart_price{
    color: var(--text);
    font-weight: 600;
    font-size: 18px;
}
.cart_price span{
    font-size: 13.5px;
}
.numberstyle-qty {
    position: relative;
    overflow: hidden;
}
.numberstyle-qty input,
.numberstyle-qty .qty-btn {
    position: relative;
    display: block;
    float: left;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0px;
    text-align: center;
    line-height: 40px;
    outline: 0;
    box-shadow: 0px;
}
.numberstyle-qty .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 21px;
    cursor: pointer;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 250ms ease;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.numberstyle-qty .qty-btn.disabled {
    cursor: default;
    color: #fff;
}
.numberstyle-qty input {
    width: 50px;
    border-left: 0;
    border-right: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
    transform: translateY(-3px);
}
.numberstyle-qty input:focus {
    outline: 0;
    box-shadow: 0px;
}
.numberstyle-qty input[type=number]::-webkit-inner-spin-button,
  .numberstyle-qty input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.numberstyle-qty input[type=number] {
    -moz-appearance: textfield;
}
.more {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 7px 21px;
    border-radius: 8px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    -webkit-animation: reveal 5000ms cubic-bezier(0.87, -0.41, 0.19, 1.44);
            animation: reveal 5000ms cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
.more::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 20%;
    height: 100%;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0);
    transition: max-width 0ms ease 250ms, background-color 250ms ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.more:hover::before {
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 250ms ease;
}
  
@-webkit-keyframes reveal {
    0%, 90% {
      bottom: -30px;
    }
    100% {
      bottom: 15px;
    }
}
  
@keyframes reveal {
    0%, 90% {
      bottom: -30px;
    }
    100% {
      bottom: 15px;
    }
}
.total_cart{
    color: var(--mainc);
    font-weight: 600;
    font-size: 18px;
}
.total_cart span{
    font-size: 13.5px;
}
.delete_cart a{
    color: red;
}
.delete_cart a:hover{
    color: red;
}
.cart_price_detail{

}
.cart_price_detail_price{
    display: flex;
    margin-top: 30px;
    border-top: 2px solid var(--border);
    padding-top: 9px;
    margin-bottom: 20px;
}
.cart_price_detail_price p:nth-child(1){
    color: var(--text);
    font-weight: 600;
    font-size: 18px;
}
.cart_price_detail_price p:nth-child(2){
    color: var(--mainc);
    font-weight: 600;
    font-size: 18px;
}
.cart_price_detail_price span{
    font-size: 13.5px;
}
.cart_detail_links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart_detail_links a:nth-child(1){
    padding: 5px 10px 7px;
    background: var(--mainc);
    color: #fff;
    border-radius: 7px;
    margin: 10px 0;
    margin-left: 10px;
}
.cart_detail_links a:nth-child(2){
    padding: 5px 10px 7px;
    background: #4186f05c;
    color: var(--mainc);
    border-radius: 7px;
    margin: 10px 0;
}
.cart_detail{
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

@media(max-width: 900px) {
    .cart_container {
        padding: 0 15px;
    }
    .order_path {
        justify-content: center;
    }
    .order_path p{
        display: none;
    }
    .order_path > div {
        padding: 0 10px;
    }
    .cart_product{
        margin-bottom: 15px;
    }
}