/* For full width block */
.alignwide, .alignfull {
	margin-right: calc(50% - 50vw);
	margin-left:  calc(50% - 50vw);
	max-width:  100vw;
	width:  100vw;
}

/* Reset full width block container */
.wp-block-group__inner-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
	.wp-block-group__inner-container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.wp-block-group__inner-container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.wp-block-group__inner-container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.wp-block-group__inner-container {
		max-width: 1140px;
	}
}

/************************************************
	CUSTOM FONT SIZES
************************************************/
p.has-lead-font-size { font-family: 'Playfair Display', serif; font-size: 45px; line-height: 1.2; margin-bottom: 60px; padding: 0 45px 0; text-align: center; }

@media screen and (max-width: 575px) {
	p.has-lead-font-size { padding: 0 5px 0; font-size: 25px;}
	
}

/************************************************
	ALL THINGS WOO 
************************************************/

.woocommerce-cart .woocommerce {
  display: flex;
}
/* The table containing the list of products and our custom elements */
.woocommerce-cart .woocommerce-cart-form {
  flex: 1 0 70%; /* 100% at small screens; 70% on larger screens */
  margin-right: 20px;
}

/* The element that contains the cart totals */
.woocommerce-cart .cart-collaterals {
  flex: 1 0 30%; /* 100% at small screens; 30% on larger screens */
  margin-left: 20px;
}

/* Some minor tweak to make sure the cart totals fill the space */
.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
  padding: 0 20px 70px;
}
