/*
      For detailed tutorial visit:
      https://thewebstorebyg.wordpress.com/2013/01/11/custom-directions-panel-with-google-maps-api-v3/ 

      Author: Giri Jeedigunta
      Last Edited: July 2017.
      Visit: http://thewebstorebyg.wordpress.com/ for more tutorials. 

      NOTE:
      To use the Google Maps JavaScript API Versions 3.27 and above, 
      you must generate your own API key and add a list of  domains you intend to use this API. 
      More details – https://developers.google.com/maps/documentation/javascript/get-api-key
 */

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 1000px;
    overflow: hidden;
    position: relative;
    font-family: "Trebuchet MS";
    position: relative;
}

#mapCanvas {
    margin: 0 auto;
    width: 100%;
    height: 90%
}

#directionsPanel {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: 600px;
    background: #fff;
    border: 1px solid #999;
    border-left: none;
    border-top: none;
    padding: 10px 15px;
}

#directionsPanel a {
    display: block;
    text-decoration: none;
    clear: both;
}

#useGPS {
    margin: 3px auto;
    background: #FFC903;
    color: #000;
    padding: 3px;
    border: 1px solid #000;
    text-align: center;
    font-size: 13px;
}

.or {
    clear: both;
    padding: 0;
    text-align: center;
    color: #000;
    font-size: 13px;
    font-weight: bold;
}

.directionInputs label {
    color: #444;
    padding: 6px 6px 6px
    text-align: center;
    font-size: 18px;
	font-weight: bold;
    margin-right: 10px
}

.directionInputs input {
    width: 234px;
    height: 20px;
    border: 1px solid #ddd;
    font-size: 15px;
-moz-border-radius:5px; /* Firefox */
-webkit-border-radius: 5px; /* Safari, Chrome */
-khtml-border-radius: 5px; /* KHTML */
border-radius: 5px; /* CSS3 */
behavior:url("https://www.ans-sat.com/directions/border-radius.htc");
font-size: 16px;
padding: 5px;
}

.directionInputs #getDirections,
.directionInputs #paneReset {
    display: inline-block;
	-moz-border-radius:6px; /* Firefox */
	-webkit-border-radius: 6px; /* Safari, Chrome */
	-khtml-border-radius: 6px; /* KHTML */
	border-radius: 6px; /* CSS3 */
	behavior:url("https://www.ans-sat.com/directions/border-radius.htc");
	font-size: 16px;
	padding: 5px;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
	color: #777;
	font-weight: bold;
	border: 1px solid #ddd;
}

.directionInputs #paneReset {
    width: 85px
}

#paneToggle {
    position: absolute;
    background: #FFC903;
    color: #000;
    width: 15px;
    padding: 0 3px;
    text-align: center;
    border: 1px solid #000;
    font-weight: bold;
    font-size: 16px;
    border-left: none;
    top: 0;
    right: -23px;
}

#directionSteps {
    clear: both;
    width: 100%;
    height: 100%;
    margin: 10px 0 0 0;
    font-size: 11px;
    line-height: normal;
    height: 395px;
    overflow: auto;
}

#directionSteps p {
    font-size: 13px;
    color: #999
}

.gmap-control-container {
    margin: 5px;
}

.gmap-control {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -moz-user-select: none;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: #333333 !important;
    cursor: pointer;
    direction: ltr;
    font-family: Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: normal;
    min-width: 54px;
    overflow: hidden;
    padding: 10px 14px 9px;
    position: relative;
    right: -14px;
    top: 5px;
    text-align: center;
}

.gmap-control-active {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #6D8ACC;
    border-color: #717B87 -moz-use-text-color #717B87 #717B87;
    border-style: solid none solid solid;
    border-width: 1px 0 1px 1px;
    color: #FFFFFF !important;
    font-weight: bold;
}
