/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 19 2024 | 01:03:34 */
.single-recipes main {
	max-width: 1300px; 
	margin-left: auto; 
	margin-right: auto;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 60px;
	padding-bottom: 80px;
	box-sizing: border-box;
}

.single-recipes h1 {
	margin-top: 0;
    font-size: 35px !important;
    font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.single-recipes .vc_separator {
    width: 160px;
    height: 3px;
    background-color: green;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 40px;
}

.single-recipes .column-container {
	display: flex; 
	flex-wrap: wrap;
	width: 100%;
}

.single-recipes main .column {
	box-sizing: border-box; 
	border-radius: 5px; 
	border: 1px rgb(225, 190, 100) solid; 
	padding: 25px;
}

.single-recipes main .column.left {
	width: calc(100% - 250px);
}
.single-recipes main .column.right {
	width: 250px;
}

.single-recipes .featured-image {
	width: 100%;
}

.single-recipes .wp-post-image {
	width: 100%;
}

.single-recipes .description {
	margin-bottom: 30px;
	margin-top: 20px;
}

.single-recipes .description ul {
	margin-left: 15px;
}

.single-recipes .bottom-text {
	margin-top: 30px;
}

.single-recipes main h2 {
	font-size: 24px; 
	font-weight: 600;
	padding-left: 0;
	margin-top: 0px; 
	margin-bottom: 15px;
}

.single-recipes main h2.instructions-text {
	margin-top: 30px;
}

.single-recipes main h3 {
	font-size: 18px; 
	font-weight: 500;
	margin-bottom: 10px;
	margin-top: 20px;
}

.single-recipes main li {
	margin-top: 5px; 
	margin-bottom: 5px;
}

.single-recipes .gallery {
	margin-top: 40px;
}

.single-recipes .gallery-item {
	max-width: 100%;
	margin-bottom: 20px;
}

.single-recipes .youtube-container {
	width: 100%;
	aspect-ratio: 16 / 9; /* 16:9 Aspect Ratio */
	overflow: hidden;
	margin-top: 30px;
}

.single-recipes .youtube-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.single-recipes .fb-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* This value is irrelevant now but needed to push content down */
	margin-top: 30px;
}

.single-recipes .fb-container .fb-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-recipes .fb-container .fb-video > span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.single-recipes .fb-container .fb-video > span iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-recipes .product-container {
	display: grid; 
	grid-template-columns: 1fr;
	gap: 40px;
}
.single-recipes .product-container .product {
	width: 100%;
}
.single-recipes .product-container .product .title {
	display: block;
	margin-top: 17.5px;
	text-align: center;
	color: black;
	font-size: 18px;
}
.single-recipes .product-container .product .title:hover {
	color: rgb(0, 106, 32);
}
.single-recipes .product-container .product .price {
	text-align: center; 
	font-size: 14px;
	margin-top: 10px;
}


@media screen and (max-width: 820px) { 
	.single-recipes .column-container { 
		flex-direction: column;
	}
	.single-recipes main .column.left {
		width: 100%;
	}
	.single-recipes main .column.right {
		width: 100%;
	}
	
	.single-recipes .product-container {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 600px) { 
	.single-recipes h1 { 
		font-size: 20px !important;
	}
}

@media screen and (max-width: 480px) {
	.single-recipes .product-container {
		grid-template-columns: 1fr;
	}
}
