@charset "utf-8";
/* CSS Document */

#virtualTour {
	width: 100%;
	height: 100%;
	text-align: right;
	background-image: url(../../images/bg_blk_trans.png)
	
	}
	
	#virtualTour.fullscreen{
    z-index: 9999; 
    width: 99%; 
    height: 80%; 
    position: fixed; 
    top: 10%; 
    left: 0;
 }
	 
.tourWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	}
	
	.tourWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 99%;
	height: 99%;
	}
	 
	 #fullscreenButoon {
		 position: relative;
		 top:2%;
		 right:2%;
		 z-index: 15;
		 display: none;
		 visibility: hidden;
	 }
	 
	 @media screen and (max-width: 768px) {
	
		#fullscreenButoon {
		display:block;
		 visibility:visible;
		 }
	 }

