/* 	
------------------------------------------------------------------
	@media Query TABLETS & BIG MOBILE PHONES
------------------------------------------------------------------
*/


/* iPads (landscape) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) 
{
	
	.map-canvas {
		width: 88%;
		margin: 0 auto;
		height: 60vh;
	}



} /* end iPad landscape */






/* iPads (portrait) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) 
{
	.map-canvas {
		width: 88%;
		margin: 0 auto;
		height: 60vh;
	}



} /* end iPad portrait */




/* iPhone 6 (Portrait) */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : portrait) 
{ 



    
} /* end iPhone 6 (Portrait) */




/* iPhone 6 (Landscape) */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : landscape) 
{ 



    
} /* end iPhone 6 (Landscape) */




/* iPhone 6 Plus (Portrait) */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : portrait) 
{ 
    



    
} /* end iPhone 6 Plus (Portrait) */




/* iPhone 6 Plus (Landscape) */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : landscape) 
{ 
    


    
} /* end iPhone 6 Plus (Landscape) */





