.cart {
    display: flex;
    align-items: stretch;
	flex-direction: column;
}
    .cart__caption {
        font-size: 0.8rem;
        color: var(--gray);
    }
    .cart__data {
        padding: 2.5rem 0;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
        .cart__info {
            display: flex;
            flex-direction: column;
        }
            .cart__total {
                font-size: 1.6rem;
                font-weight: 500;
                margin-bottom: 1rem;
            }
            .cart__checkout-btn {
                box-shadow: var(--shadow);
                font-weight: 600;
            }
        .cart__options {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
            
