.button-action {
	color: white;
	font-size: 17px;
	position:absolute;
	top: 35px;
}

.price {
	color: #000;
	margin: 10px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
	font-family: AvenirNext, serif;
}

.dark-button {
	padding: 5px 45px;
}

#kuke-nav-path {
	color: #f0f0f0;
}

#kuke-nav-path ul li a {
	color: #f0f0f0;
}

.breadcrumb {
	filter: drop-shadow(0 0 3px black);
}

.page-title .breadcrumb .active {
	color: white;
}

.page-title .breadcrumb li a {
	color: white;
}

.page-title .breadcrumb li::before {
	color: white;
}

.recipe-top {
	height: 500px;
}

.recipe-top img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recipe-title {
	position: absolute;
	text-align: center;
	clear: left;
	bottom: 20px;
	left: 0;
	right: 0;
	/* filter: drop-shadow(0 0 4px black); */
}

.recipe-title h4 a {
	text-transform: none;
	text-decoration: underline;
	color: #eee;
}

.recipe-title h1 {
	text-transform: none;
	color: #eee;
}

.title-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	/* overflow: auto; */
}

.title-box {
	background: rgb(137, 137, 137, 0.6);
	font-family: Moments;
	font-size: 46pt;
	color: white;
	padding: 60px 30px;
	border-radius: 20px;
	line-height: 48px;
}

#recipe-content {
	background: white;
	padding-left: 50px;
	padding-right: 50px;
	margin-bottom: 25px;
}

#recipe-header {
	margin-top: 30px;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.line {
	display: inline-block;
	background: black;
	width: 400px;
	height: 2px;
	margin: 64px 20px 0 20px;
}

#recipe-subheader {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 1em;
}

#recipe-subheader h4 {
	text-transform: none;
	font-family: AvenirNext;
	letter-spacing: 0;
	font-size: 14pt;
}

#recipe-subheader img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	padding-bottom: 4px;
	filter: brightness(0);
}

#recipe-subheader span {
	margin-right: 6px;
	color: #000;
}

#chef-photo {
	display: inline-block;
	width: 128px;
	height: 128px;
	min-width: 128px;
	min-height: 128px;
	overflow: hidden;
	clip-path: circle(50% at center);
}

#chef-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.title {
	padding-left: 20px;
	padding-right: 100%;
	margin-bottom: 20px;
	border-bottom-color: black;
	border-bottom-width: 2px;
	border-bottom-style: solid;
}

ul.block-container li {
	display: inline-block;
	list-style: none;
	list-style-position: inside;
	width: 1000px;
}

#dica {
	margin: 1rem;
	/* border-right: 60px solid rgba(0, 0, 0, 0); */
}

.recipe-box {
	margin-bottom: 2rem;
}

.recipe-box-content.stretch {
	justify-content: space-between;
}

ul.recipe-box-content {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

ul.recipe-box-content li {
	margin: 1em;
}

.recipe-box-title {
	padding-left: 10px;
	padding-bottom: 10px;
	font-size: 24pt;
	font-weight: 600;
	text-transform: none;
	color: black;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: black;
}

#ingredients ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	font-family: AvenirNext;
	font-size: 14px;
	color: black;
	list-style: none;
}

#ingredients ul li {
	display: flex;
	width: 320px;
	line-height: 16pt;
	/* margin: 5px; */
}

.ingredient-container {
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-content: flex-start;
}

.ingredient-img {
	flex-grow: 0;
	flex-shrink: 0;
	width: 150px;
	height: 100px;
	margin-right: 12px;
	border-radius: 10px;
	overflow: hidden;
	display: inline-block;
}

.ingredient-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ingredient-text {
	display: inline-block;
}

.ingredient-quantity {
	font-weight: bold;
}

.ingredient-name {
	font-weight: 400;
	text-transform: capitalize;
	border-bottom: 1px dashed black;
	margin-bottom: 4px;
	padding-bottom: 4px;
}

.ingredient-description {
	color: #000;
	font-size: 8pt;
}

.ingredient-text-container {
	display: inline-block;
	vertical-align: top;
}

#utensils ul li {
	padding: 0;
	width: 160px;
	overflow: auto;
	text-align: center;
	color: black;
}

.utensil-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 160px;
	height: 100px;
	border-radius: 10px;
	overflow: hidden;
}

.utensil-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#instructions > ul > li {
	flex: 1 1 320px;
	width: 320px;
	overflow: hidden;
	background: #eee;
	border-radius: 16px;
	border-bottom: 2px solid #888;
	transition: all 0.25s;
	padding-bottom: 15px;
}

#instructions ul li:hover {
	transition: all 0.25s;
	transform: translateY(-5px);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.instruction-container {
	display: block;
	width: 100%;
	height: 100%;
}

.instruction-img {
	display: block;
	width: 100%;
	height: 300px;
}

.instruction-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.instruction-text {
	display: block;
	width: 100%;
	padding: 15px;
}

.instruction-title {
	border-bottom: 1px solid #888;
	padding-bottom: 8px;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14pt;
	text-transform: uppercase;
}

#shop-button-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

#shop-button-container a {
	width: 300px;
	display: inline-block;
	margin: 10px;
}

#video-size-restricter {
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}

#video-container {
	margin: 20px;
	padding-top: 56.25%;
	position: relative;
}

#video-container > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

