@charset "utf-8";
/* CSS Document */
/*------------------------------------------------------------------
Name: googlemap.css

Project:	Auto Tecnica 
Version:	1.1
Last change:	17/05/2017
Assigned to:	ATD
Primary use:	Location Page

all Css defined in this css  
-------------------------------------------------------------------*/

        .google-maps {
          position: relative;
		  margin-top:10px;
          padding-bottom:35%;
          height: 0;
          overflow: hidden;
      }
      .google-maps iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100% !important;
		  height:100% !important;
       }
/*RESPOSNIVE GOOGLE MAP*/	
@media screen and (max-width: 840px) and (min-width: 440px) {  /*Tablets 840px to 440px*/
      .google-maps {
          position: relative;
		  margin-top:10px;
          padding-bottom:35%;
          height: 275px;
          overflow: hidden;
      }
      .google-maps iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
		  /*height: 300px;*/
       }
}
@media screen and (max-width: 430px) and (min-width: 300px) {  /*Smarts 430px to 3000px*/
      .google-maps {
          position: relative;
		  margin-top:10px;
          padding-bottom:35%;
          height: 200px;
          overflow: hidden;
      }
      .google-maps iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
		  /*height: 300px;*/
       }
}