@charset "ISO-8859-1";


.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	 .iframe-container {
		  overflow: hidden;
		  /* 16:9 aspect ratio */
		  padding-top: 100%;
		  position: relative;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	 .iframe-container {
		  overflow: hidden;
		  padding-top: 50%;  /*4:3 aspect ratio */
		  position: relative;
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	 .iframe-container {
		  overflow: hidden;
		  /*padding-top: 66.66%;  3:2 aspect ratio */
		  position: relative;
	}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	 .iframe-container {
		  overflow: hidden;
		  /*padding-top: 62.5%;  8:5 aspect ratio */
		  position: relative;
	}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	 .iframe-container {
		  overflow: hidden;
		 /* padding-top: 100%;  1:1 aspect ratio */
		  position: relative;
	}
}
