.commerce-checkout-flow table {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0 0;
    justify-content: stretch;
    align-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: var(--shoping-cart-main-color);
    border-radius: 0.56rem;
    background-color: var(--shoping-cart-table-bg) !important;
}

.commerce-checkout-flow table>tbody {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    /*   background: green; */
    width: 100%;
    height: 100%;
    background-color: transparent !important;
}

.commerce-checkout-flow table>tbody>tr {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0 0;
    justify-content: stretch;
    align-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding: 0;
    border-width: 0;
    border-top-width: 1px;
    border-style: solid;
    border-color: var(--shoping-cart-main-color);
    border-radius: 0;
    background-color: transparent !important;
}

.commerce-checkout-flow table>tbody>tr:first-of-type {
    border-top-width: 0;
}

.commerce-checkout-flow table>tbody>tr>td {
    display: flex;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    border-width: 0;
    border-left-width: 1px;
    border-style: solid;
    border-color: var(--shoping-cart-main-color);
    border-radius: 0;
    background-color: transparent !important;
    color: var(--shoping-cart-text-color);
}

.commerce-checkout-flow table>tbody>tr>td:first-of-type {
    border-left-width: 0px;
}

.commerce-checkout-flow .layout-region-checkout-footer {
    float: unset !important;
    margin: auto !important;
}