/* Rotator */
#rotatorContainer { position:absolute;top:50%; left:50%; margin:-274px 0 0 -400px; background-color:#fff; z-index:100001; }
#rotatorExit { cursor:pointer; display:inline-block; opacity:1; position:absolute; top:3px; right:3px; }
#rotatorModal { background-color:rgba(0,0,0,.7); position:absolute; top:0px; width:100%; height:100%; z-index:10000; }
/* Google Map */
	/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
	   #map {
        height: 100%;
      }

      /* Optional: Makes the sample page fill the window. */
     

      #description {
        font-family: Roboto;
        font-size: 15px;
        font-weight: 300;
      }

      #infowindow-content .title {
        font-weight: bold;
      }

      #infowindow-content {
        display: none;
      }

      #map #infowindow-content {
        display: inline;
      }

      .pac-card {
        margin: 10px 10px 0 0;
        border-radius: 2px 0 0 2px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        outline: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        background-color: #fff;
        font-family: Roboto;
      }

      #pac-container {
        padding-bottom: 12px;
        margin-right: 12px;
      }

      .pac-controls {
        display: inline-block;
        padding: 5px 11px;
      }

      .pac-controls label {
        font-family: Roboto;
        font-size: 13px;
        font-weight: 300;
      }

      #pac-input {
        background-color: #fff;
        font-family: Roboto;
        font-size: 15px;
        font-weight: 300;
        margin-left: 12px;
        padding: 0 11px 0 13px;
        text-overflow: ellipsis;
        width: 400px;
      }

      #pac-input:focus {
        border-color: #4d90fe;
      }

      /* #title {color: #fff;background-color: #4d90fe;font-size: 25px;font-weight: 500;padding: 6px 12px;} */

      #target {
        width: 345px;
	  }
	/* AUTO COMPLETE */
	* {
		box-sizing: border-box;
	  }
	  
	  
	  /*the container must be positioned relative:*/
	  .autocomplete {
		position: relative;
		display: inline-block;
	  }
	  
	  
	  .autocomplete-items {
		position: absolute;
		border: 1px solid #d4d4d4;
		border-bottom: none;
		border-top: none;
		z-index: 99;
		/*position the autocomplete items to be the same width as the container:*/
		top: 100%;
		left: 0;
		right: 0;
	  }
	  
	  .autocomplete-items div {
		padding: 10px;
		cursor: pointer;
		background-color: #fff; 
		border-bottom: 1px solid #d4d4d4; 
	  }
	  
	  /*when hovering an item:*/
	  .autocomplete-items div:hover {
		background-color: #e9e9e9; 
	  }
	  
	  /*when navigating through the items using the arrow keys:*/
	  .autocomplete-active {
		background-color: DodgerBlue !important; 
		color: #ffffff; 
	  }