/*styling.css*/
/*add font family, background image*/

body {
  color: #e60005;
  font-family: "Poppins", sans-serif;
}

.fa-map-marker-alt,
.fa-dot-circle {
  color: #e60005;
}
.col-xs-8 {
  display: flex;
  flex-flow: column;
}

/*Jumbotron*/
.jumbotron {
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.form-select,
.select2 {
  width: 60vw;
  margin-right: auto;
  margin-left: auto;
}
.jumbotron h1 {
  letter-spacing: 2.5px;
  font-size: 3.5em;
}
.pickup-div,
.destination-div {
  width: 60vw;
}

.jumbotron h1,
.jumbotron p {
  text-align: center;
}
label {
  margin-top: 1vw;
}

.wrapper {
  display: flex;
  flex-direction: row;
}

.divSite {
  display: flex;
  height: 100vh;
  width: 100vw;
  flex-flow: column;
  align-items: center;
}

/*map*/
#googleMap {
  width: 100%;
  height: 100%;
}

/*output box*/
#output {
  text-align: center;
  font-size: 1.2em;
  margin: 20px auto;
}

#output .alert-info {
  background-color: transparent;
}

#mode {
  color: black;
}

h1 {
  font-size: 35px !important;
  margin-top: 50px;
  margin-bottom: 20px;
}

.select2-results__option {
  color: black;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 25px !important; /* The width is 100%, when the viewport is 800px or smaller */
  }
  .form-select {
    width: 90vw;
  }
  label {
	max-width: 90vw !important;
  }
}
