/* CSS Document */

h3{
	background-image:url(../img/recipe_h3_bg.jpg);
	color:#c74642;
}


.recipe_list{
	margin:0 -10px;
	padding:0;
	list-style-type:none;
}
.recipe_list:after {
	display: block;
	clear: both;
	content: "";
}
.recipe_list li{
	margin:0;
	background-size:contain;
	box-sizing:border-box;
	padding:10px;
	float:left;
	width:33.33%;
	text-align: center;
}
.recipe_list li a:first-child{
	display:block;
	position:relative;
}
.recipe_list li a:first-child:before{
	content:"";
	position:absolute;
	background:url(../../common/img/icon_pdf.png) 0 0 no-repeat;
	top:10px;
	right:10px;
	width:24px;
	height:24px;
	background-size:contain;
	z-index:5;
}

.recipe_list li.no_pdf a:first-child:before{
	content:"";
	position:absolute;
	background:none;
	top:10px;
	right:10px;
	width:24px;
	height:24px;
	background-size:contain;
	z-index:5;
}

.recipe_list a.youtube_logo:first-child:before{
	content:"";
	position:absolute;
	background:url(../img/yt_icon_rgb.png) 0 0 no-repeat;
	top:10px;
	right:10px;
	width:24px;
	height:17px;
	background-size:contain;
	z-index:5;
}

.recipe_list li a:link{
	text-decoration:none;
}
.recipe_list li a.inline_link{
	display: inline;
}

.recipe_list li:nth-child(3n+1){
	clear:both;
}
.recipe_list li .recipe_title{
	display:block;
	text-align:center;
	padding:10px 0;
}
.recipe_list li img{
	display:block;
	margin:0;
    transition: transform 2.0s ease-in-out;
	border-radius:10px;
}
.recipe_img{
	display:block;
	overflow:hidden;
}
.recipe_list li a:hover img{
    transform: scale(1.1);
}



.recipe_youtube_list{
	margin:0 -10px;
	padding:0;
	list-style-type:none;
}
.recipe_youtube_list:after {
	display: block;
	clear: both;
	content: "";
}
.recipe_youtube_list li{
	margin:0;
	background-size:contain;
	box-sizing:border-box;
	padding:10px;
	float:left;
	width:50%;
	position: relative;
	text-align: center;
}

.recipe_youtube_list li .youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.recipe_youtube_list li .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
	border: none;
}

.recipe_youtube_list li a{
}


@media only screen and (max-width: 639px) {
	

	.recipe_list{
		margin:0 -5px;
	}
	.recipe_list li{
		padding:10px 5px;
		width:50%;
	}
	.recipe_list li:nth-child(3n+1){
		clear:none;
	}
	.recipe_list li:nth-child(2n+1){
		clear:both;
	}
	.recipe_youtube_list li{
		float:none;
		width:100%;
	}
}