/*
Theme Name: Salient Child Theme
Theme URI: http: //mysite.com/
Description: This is a custom child theme for Salient
Author: My Name
Author URI: http: //mysite.com/
Template: salient
Version: 0.1
*/

.tv-bg {
			position: relative;
		    width: 800px;
		    height: 100%;
		    top: 0;
		    left: 0;
		    
		}

		.tv-bg img {
		    width: 100%;
		    height: 400px;
		}
		.tv-bg iframe {
		    position: absolute;
		    top: 8%;
		    left: 14%;
		    width: 58%;
		    height: 78%;
		}

		/* 
		  	##Device = Desktops
		  	##Screen = 1281px to higher resolution desktops
		*/

		@media (min-width: 1281px) {
		  
		  	//CSS
		  
		}

		/* 
		  	##Device = Laptops, Desktops
		  	##Screen = B/w 1025px to 1280px
		*/

		@media (min-width: 1025px) and (max-width: 1280px) {
		  
		}

		/* 
		  ##Device = Tablets, Ipads (portrait)
		  ##Screen = B/w 768px to 1024px
		*/

		@media (min-width: 768px) and (max-width: 1024px) {

		}

		@media (min-width: 481px) and (max-width: 767px) {
		  
		  	.tv-bg {
				position: relative;
			    width: 450px;
			    height: 100%;
			    top: 0;
			    left: 0;
			    
			}

			.tv-bg img {
			    width: 100%;
			    height: 220px;
			}
		  
		}

		/* 
		  ##Device = Most of the Smartphones Mobiles (Portrait)
		  ##Screen = B/w 320px to 479px
		*/

		@media (min-width: 320px) and (max-width: 480px) {
		  
		  	.tv-bg {
				position: relative;
			    width: 300px;
			    height: 100%;
			    top: 0;
			    left: 0;
			    
			}

			.tv-bg img {
			    width: 100%;
			    height: 200px;
			}
			  
		}




