@media (max-width: 1023px)
{

    .cart_info table thead
    {
        display: none;
    }

    .cart_info table tr
    {
        position: relative;

        display: flex;

        padding: 20px 0;

        border-top: 1px solid #ddd;

        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
    }

    .cart_info table td
    {
        display: block;

        padding: 0;

        border: none;
    }

    .cart_info table td.name
    {
        width: calc(100% - 60px);
        padding-right: 40px;
    }

    .cart_info table td.name a
    {
        width: 100%;
    }

    .cart_info table td.price,
    .cart_info table td.amount
    {
        margin-top: 15px;
    }

    .cart_info table td.unit
    {
        display: none;
    }

    .cart_info table td.price
    {
        position: relative;

        min-width: 105px;
        margin-left: 60px;
        padding-top: 17px;
    }

    .cart_info table td.price.total
    {
        min-width: 140px;
        margin-left: 40px;
    }

    .cart_info table td.price:before
    {
        color: #000;
        font-size: 12px;
        font-weight: normal;
        line-height: 13px;

        position: absolute;
        top: 0;
        left: 0;

        display: block;

        width: 100%;

        content: attr(data-column);
        text-align: left;
        white-space: nowrap;
        letter-spacing: 0;
        text-transform: none;

        opacity: .4;
    }

    .cart_info table td.amount
    {
        margin-left: 40px;

        //width: 179px;
    }

    .cart_info table td.amount .unit
    {
        margin-left: 20px;
    }

    .cart_info table td.delete
    {
        position: absolute;
        top: 20px;
        right: 0;
    }


    .cart_info table tfoot tr
    {
        padding-bottom: 0;

        justify-content: center;
    }

    .cart_info table tfoot td.price
    {
        margin-top: 0;
        margin-left: 15px;
        padding: 0;
    }



    .checkout .block + .block
    {
        margin-top: 60px;
    }

    .checkout .block + .block:before
    {
        height: calc(100% + 60px);
    }

    .checkout .notice
    {
        padding: 20px 20px 20px 40px;
    }

}