/* CSS Document */
/* https://blog.theodo.com/2018/01/responsive-iframes-css-trick/ */

.resp-container {
    position: relative;
    overflow: hidden;
	padding-top: 100%; /* 1:1 Aspect Ratio */
	padding-top: 75%; /* 4:3 Aspect Ratio */
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.resp-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	/* [disabled]z-index: -9; */
}


/* add border for cooking-with-paul.com */
.resp-container {
	border: 1px solid #CCCCCC;
	margin-bottom: 1.5rem;
}




.slides {
	width: 100%;
	height: 92%;
	position: fixed;
	/* [disabled]margin-top: 98px; */
}
.slide-wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -999;
	bottom: 0px;
}
@media screen and (min-width:1000px){
.slides {
	top: 98px;
	/* [disabled]margin-top: 98px; */
}
.slide-wrapper {
	/* [disabled]top: 98px; */
}

}

@media screen and (max-width:999px){
.slides {
	top: 100px;
}
.slide-wrapper {
	/* [disabled]top: 100px; */
}
}
