/**
 * @license
 * Copyright 2019 Google LLC. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#map {
  height: 100%;
}


.controls {
  margin-top: 10px;
  border: 1px solid transparent;
  border-radius: 2px 0 0 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 32px;
  outline: none;
}

.cab-form {
  scale: 0.88;
  display: block;
  position: relative;
  top: -30px;
}

#origin-input,
#destination-input {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  margin: 5px 0px;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
}

#origin-input:focus,
#destination-input:focus {
  border-color: #4d90fe;
}

#mode-selector {
  color: #fff;
  background-color: #4d90fe;
  margin-left: 12px;
  padding: 5px 11px 0px 11px;
}

#mode-selector label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}

/* Style the multistep form */
#regForm {
  margin: auto;
  /*padding: 40px;*/
}

/* Style the input fields */
#regForm input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

#regForm form {
  background: white;
  color: black;
  width: unset !important;
}

#regForm .bottom-nav {
  padding: 0px 15px 10px;
  background: white;
  position: relative;
  z-index: 999;
  margin: 0px 15px;
  top: -15px;
  border-radius: 10px;
}

/* Mark input boxes that gets an error on validation: */
#regForm input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
#regForm .tab {
  display: none;
  padding: 0px 15px;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}