body.acostuma-shopping-open {
	overflow: hidden;
}
.acostuma-shopping-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
}
.acostuma-shopping-overlay {
	position: absolute;
	inset: 0;
	background: rgba(204,204,204,.9);
}
.acostuma-shopping-dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 545px;
	max-height: calc(100vh - 100px);
	border-radius: 10px;
	overflow: hidden;
	background: white;
	font-family: "Raleway", sans-serif;
}
.acostuma-shopping-bar {
	background: #f56122;
	position: relative;
}
.acostuma-shopping-bar h2 {
	margin: 0;
	padding: 0 25px;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	line-height: 75px;
	font-family: "Source Serif 4", serif;
}
.acostuma-shopping-close {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-60%);
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 44px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
}
.acostuma-shopping-print-area {
	padding: 10px 25px 25px;
	max-height: calc(100vh - 160px);
	overflow: auto;
}
.acostuma-shopping-recipes {
	display: block;
}
.acostuma-shopping-logo {
	display: none;
	text-align: left;
	margin: 0 0 22px;
}
.acostuma-shopping-logo img {
	max-width: 180px;
	height: auto;
}

.acostuma-shopping-recipe {
	border-bottom: 1px solid #dfdfdf;
	padding: 0;
	margin: 0;
}
.acostuma-shopping-recipe:last-child {
	margin-bottom: 0;
}
.acostuma-shopping-recipe-top {
	position: relative;
}
.acostuma-shopping-toggle {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	width: 100%;
	border: 0;
	background: transparent;
	text-align: left;
	padding: 0;
	cursor: pointer;
}
.acostuma-shopping-caret {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -5px;
	width: 14px;
	min-width: 14px;
	height: 14px;
}
.acostuma-shopping-caret::before {
	content: '';
	position: absolute;
	left: 1px;
	top: 1px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #777;
	border-bottom: 1px solid #777;
	transform: rotate(-45deg);
	transition: transform .18s ease;
}
.acostuma-shopping-recipe.is-open .acostuma-shopping-caret::before {
	transform: rotate(45deg);
	top: -1px;
}
.acostuma-shopping-title-wrap {
	display: block;
	padding: 10px 60px 10px 25px;
}
.acostuma-shopping-title {
	display: block;
	color: #6a6a6a;
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
	font-family: "Source Serif 4", serif;
}
.acostuma-shopping-yield {
	display: block;
	position: relative;
	top: -10px;
	margin: 0;
	padding: 0 0 15px 25px;
	color: #6a6a6a;
	line-height: 1;
	font-size: 12px;
	font-weight: 500;
	border-bottom: 1px solid #dfdfdf;
}
.acostuma-remove-shopping {
	background: transparent;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	color: #f15c22;
	font-size: 12px;
	line-height: 1.5;
	cursor: pointer;
	padding: 0;
	border-bottom: 1px dotted #f15c22;
}
.acostuma-remove-shopping:hover {
	border-bottom: 1px solid #f15c22;
}
.acostuma-shopping-recipe-body {
	display: none;
	padding: 0;
}
.acostuma-shopping-recipe-body ul {
	margin: 0;
	padding: 0 60px 0 25px;
	list-style: none;
}
.acostuma-shopping-recipe-body li {
	color: #6a6a6a;
	font-size: 16px;
	line-height: 1.25;
	margin: 0 0 15px;
}
.acostuma-shopping-recipe-body .qtd {
	font-weight: 400;
	margin-right: 6px;
}
.acostuma-shopping-empty {
	margin: 0;
	color: #666;
	font-size: 16px;
	line-height: 1.5;
}
.acostuma-shopping-actions {
	text-align: center;
	padding-top: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
}
.acostuma-shopping-actions.is-hidden {
	display: none;
}
.acostuma-send-email,
.acostuma-print-list {
	display: inline-block;
	border: 0;
	background: #f15c22;
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	padding: 0 50px;
	cursor: pointer;
	margin: 0;
	font-family: "Source Serif 4", serif;
}

@media (max-width: 768px) {
	.acostuma-shopping-dialog {width: 90vw;}
	.acostuma-print-list {display: none;}
}

@media print {
	body.print-shopping * {
		visibility: hidden;
	}
	body.print-shopping .site {
		display: none;
	}
	body.print-shopping .acostuma-shopping-modal {
		display: block!important;
		position: static;
	}
	body.print-shopping .acostuma-shopping-dialog {
		position: static;
		transform: none;
	}
	body.print-shopping .acostuma-shopping-dialog,
	body.print-shopping .acostuma-shopping-dialog * {
		visibility: visible;
	}
	body.print-shopping .acostuma-shopping-dialog {
		position: relative;
		inset: 0;
		width: 100%;
		max-height: unset;
		margin: 0;
		box-shadow: none;
		border-radius: 0;
		overflow: visible;
	}
	body.print-shopping .acostuma-shopping-overlay,
	body.print-shopping .acostuma-shopping-close,
	body.print-shopping .acostuma-shopping-actions,
	body.print-shopping .acostuma-remove-shopping {
		display: none !important;
	}
	body.print-shopping .acostuma-shopping-recipe {
		page-break-inside: avoid;
	}
	body.print-shopping .acostuma-shopping-print-area {
		max-height: unset;
		overflow: visible;
		padding: 16px 0 25px;
	}
	body.print-shopping .acostuma-shopping-logo {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
		text-align: right;
		z-index: 2;
	}
	body.print-shopping .acostuma-shopping-logo img {
		max-width: 150px;
	}
	body.print-shopping .acostuma-shopping-bar {
		background: white;
		position: relative;
		z-index: 1;
	}
	body.print-shopping .acostuma-shopping-bar h2 {
		background: white;
		color: black;
		border-bottom: 1px solid black;
		padding: 0 170px 28px 0;
		line-height: 1.2;
	}
	body.print-shopping .acostuma-shopping-caret {display: none;}
	body.print-shopping .acostuma-shopping-title-wrap,
	body.print-shopping .acostuma-shopping-yield {
		padding-left: 0;
	}
	body.print-shopping .acostuma-shopping-recipe-top,
	body.print-shopping .acostuma-shopping-recipe-body {
		padding-left: 0;
	}
	body.print-shopping .acostuma-shopping-recipe-body ul {
		padding-left: 0;
	}
	body.print-shopping .acostuma-shopping-recipe-body {
		display: block !important;
	}
	body.print-shopping .acostuma-shopping-section-title,
	body.print-shopping .acostuma-shopping-recipe-body li.space {
		display: block;
		margin: 0 0 10px;
		padding-left: 0;
		padding-top: 18px;
	}
	body.print-shopping .acostuma-shopping-section-title:first-child,
	body.print-shopping .acostuma-shopping-recipe-body li.space:first-child {
		padding-top: 0;
	}
	body.print-shopping .acostuma-shopping-recipe-body li:not(.acostuma-shopping-section-title):not(.space) {
		position: relative;
		min-height: 22px;
		margin: 0;
		padding: 0 0 8px 32px;
		border-bottom: 1px dotted #bdbdbd;
		line-height: 1.35;
	}
	body.print-shopping .acostuma-shopping-recipe-body li:not(.acostuma-shopping-section-title):not(.space) + li:not(.acostuma-shopping-section-title):not(.space) {
		padding-top: 8px;
	}
	body.print-shopping .acostuma-shopping-recipe-body li:not(.acostuma-shopping-section-title):not(.space)::before {
		content: '';
		position: absolute;
		left: 0;
		top: 1px;
		width: 16px;
		height: 16px;
		border: 1px solid #000;
		background: #fff;
	}
	body.print-shopping .acostuma-shopping-recipe-body li:not(.acostuma-shopping-section-title):not(.space) + li:not(.acostuma-shopping-section-title):not(.space)::before {
		top: 9px;
	}
	body.print-shopping .acostuma-shopping-recipe-body .qtd {
		display: inline-block;
		font-weight: 700;
		min-width: 46px;
		margin-right: 12px;
		text-align: right;
	}
}
