div.cart-item {
    display: flex;
    overflow: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    height: 224px;

    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--divider);
}

div.cart-item:first-of-type {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: var(--divider);
    
}




div.cart-item  div.item-left {
    display: flex;
    flex-direction: row;
    flex: 392;
}

div.cart-item  div.item-left  img {
    width: 164px;
    height: 164px;
    border-radius: 6px;
}

div.cart-item  div.item-left > .column-container {
    margin-left: 32px;
}

div.cart-item  div.item-left > div > div.order-include {
    display: flex;
    margin-top: auto;    
}

div.cart-item  div.item-left > div > div.order-include > div.checkbox {
    margin-right: 0px;
    margin-left: 0px;
}

div.cart-item  div.item-left > div > div.order-include > p {
    margin-left: 0px;
}

div.cart-item  div.item-left > p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;

    color: var(--gray);

    cursor: pointer;
}



div.cart-item  div.item-mid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    justify-content: space-between;
    flex:403;
    max-height: 164px;

    overflow: auto;
}

div.cart-item  div.item-mid > div.detail {
    margin-right: 16px;
}

div.cart-item  div.item-mid > div.detail > p:first-child {

    font-weight: 700;

    line-height: 22px;
    color: var(--gray);
}

div.cart-item  div.item-mid > div.detail > p {

    font-weight: 500;
    line-height: 22px;
    color: var(--gray);
    letter-spacing: 0.3px;
}




div.cart-item  div.item-right {
    display: flex;
    flex-direction: column;
    
    flex: 316;
    border-left-color: var(--divider);
    border-left-style: solid;
    border-left-width: 1px;
    padding-left: 24px;
}




div.cart-item  div.tools {
    display: flex;
    flex-direction: row;

    margin-bottom: auto;
    margin-left: auto;
}

div.cart-item  div.tools > img {
    width: 24px;
    height: 24px;
    margin-left: 24px;
    cursor: pointer;
}


@media only screen and (max-width: 1024px) {
    
    div.cart-item {
        flex-direction: column;
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }



    div.cart-item   div.item-top {
        display: flex;
        flex-direction: row;
        margin-bottom: 16px;
    }

    div.cart-item   div.item-top > div {

    }
    


    div.cart-item   div.item-left {
        flex: auto;
    }

    div.cart-item   div.item-left > img {
        width: 80px;
        height: 80px;
        border-radius: 6px;
    }



    div.cart-item   div.item-mid {
        margin: 24px 0px;
    }



    div.cart-item   div.item-right {
        border-left: none;
        padding-left: 0px;
        border-top: 1px solid var(--divider);
        padding-top: 24px;
    }

    div.cart-item:first-of-type {
        margin-top: 20px;
    }
}