.CartListContainer {
    .CartSummary {
        .SummaryActions {
            display: grid;
            gap: 10px;
            justify-items: stretch;
        }

        .SummaryActions .UI_Button {
            width: 100%;
            text-align: center;
        }
    }
}

@media screen and (max-width: 900px) {
    .CartListContainer {
        .CartSummary {
            .SummaryActions {
                width: 100%;
            }
        }
    }
}
