.stop-table {
  width: 100%;
  margin-bottom: 10px;
  border: 0px;
  border-spacing: 0px;
}

.stop-table tr:hover {
  background-color: #f1f1f1
}

.current-load {
  background-color: #f3e814
}

.stop-description {
  height: 3em;
  margin-bottom: 10px;
  cursor: pointer;
  border: 0px;
  padding: 2px;
}

.col-1 {
  width: 3em;
  text-align: center;
}

.col-2 {
  margin-left: 1em;
  color: #212121;
  text-overflow: ellipsis;
}

.economy {
  padding-bottom: -8px;
  border-bottom: 4px solid #41ae5d;
}

.premium {
  padding-bottom: -8px;
  border-bottom: 4px solid #ffbf43;
}

.guaranteed {
  padding-bottom: -8px;
  border-bottom: 4px solid #f9403d;
}

.col {
  display: block;
  float: right;
  text-align: left;
  margin: 1% 1.6% 1% 1.6%;
}
.col-3 {
  width: 7em;
}

.card-button {
  margin-right: 10px;
  margin-top: 10px;
  background: #FFFFFF;
  border-radius: 0.15em;
  border: '2px solid #fff';
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  width: 80px;
  height: 28px;
}

.card-button p {
  font-family: "Roboto";
  color: #212121;
  font-weight: 500;
  font-size: 11px;
  padding-top: 7px;
  padding-bottom: 11px;
  text-align: center;
}

.card-button:hover {
    filter: grayscale(80%);
    -webkit-filter: grayscale(80%);
    opacity: 0.8;
}

.card {
  margin-right: 10px;
  margin-top: 10px;
  font-family: "Roboto";
  color: #727272;
  background: #FFFFFF;
  border-radius: 0.15em;
  border: '2px solid #fff';
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  width: 340px;
}

.card-heading {
  background-color: #FFFFFF;
  height: 100%;
  width: 100%;
  margin-bottom: 0.75em;
  margin-top: 0.25em;
  padding: 0.25rem 1rem;
}

.card-heading-secondary {
  color: #727272;
  font-weight: 400;
  font-size: 0.7em;
  text-align:right;
  text-transform: none;
  padding-left: 10px;
}

.card-description {
  padding: 0.25rem 1rem;
}

.card-description h4 {
  font-weight: 400;
  color: #727272;
  font-size: 1.1em;
  margin: 0;
  margin-top: 0.25em;
  text-transform: uppercase;
  border-bottom: 1px solid #B6B6B6;
}

.card-description-secondary {
  color: #727272;
  font-weight: 400;
  font-size: 0.9em;
  text-align:right;
  text-transform: none;
  padding-right: 5px;
  float:right;
}

.time-warning {
  color: #F44336;
}

.card-heading h2 {
  font-weight: 500;
  color: #212121;
  font-size: 1.4em;
  margin: 0;
  text-transform: uppercase;
}
.card-heading p {
  color: #727272;
  font-weight: 400;
  margin: 5px;
  line-height: 1.2;
}
.card-description p {
  /*color: #FFFFFF;*/
  color: #727272;
  font-weight: 100;
  /*font-size: 0.975em;*/
  line-height: 1.4;
}

.break-column {
  height: 1em;
}

.search {
  float:left;
  width: 18px;
  margin-left: 10px;
}

.search input[type=text] {
  margin-top: 10px;
  font-family: "Roboto";
  color: #212121;
  width: 120px;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  /*background-image: url('ic_search_black_24dp_1x.png');
  background-position: 10px 3px;
  background-repeat: no-repeat;*/
  padding: 5px 20px 5px 30px;
  opacity: 0.5;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  -webkit-transition: width 0.2s ease, opacity .2s ease;
  transition: width 0.2s ease, opacity .2s ease;
  float:left;
}

.search ul {
  visibility: hidden;
  opacity: 0;
  margin-top: 41px;
  margin-left: 45px;
  font-family: "Roboto";
  color: #212121;
  width: 305px;
  background: #FFFFFF;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 5px 5px 5px 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
  -webkit-transition: visibility 0s 2s, opacity 2s linear;
  transition: visibility 0s 2s, opacity 2s linear;
}

.search ul.show-transition {
  visibility: visible;
  opacity: 1;
  display: block;
  height: auto;
}

.search li {
  border-bottom: 1px solid #ccc;
  font-weight: 400;
  padding: 5px 5px 5px 5px;
  color: #212121;
  text-align: left;
  cursor: pointer;
}

.search li:hover {
  background: #f1f1f1;
}

.highlight {
  background:#ffee58;
}

.search:before {
  position: absolute;
  margin-top: 15px;
  margin-left: 0px;
  content: " ";
  background: url(ic_search_black_24dp_1x.png);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  width: 18px;
  height: 18px;
  -moz-transition:0.25s all;
  -webkit-transition:0.25s all;
  transition:0.25s all;
  float:left;
}

.search:hover::before {
  -moz-transform:rotate(360deg);
  -webkit-transform:rotate(360deg);
  transform:rotate(360deg);
}

.search input[type=text]:focus {
  width: 350px;
  opacity: 1.0;
}

.search input[type=text]:hover {
  opacity: 1.0;
  width: 350px;
}

.search button[type=submit] {
  margin-top: 10px;
  float:left;
  background: transparent;
  border: 0px
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  height: 0px;
  margin-top: 2px;
  position: absolute;
  background-color: #f9f9f9;
  width: 80px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  transition: height 0.2s ease, opacity .2s ease
}


/* Links inside the dropdown */

.dropdown-content p {
  /* color: black; */
  margin: 2px;
  padding: 7px;
  /* padding: 0px; */
  text-decoration: none;
  cursor: pointer;
  display: block;
  text-align: center;
}


/* Change color of dropdown links on hover */

.dropdown-content p:hover {
  background-color: #f1f1f1
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display:block;
  height: auto;
  }

.filter-button {
  /*margin: 0px;*/
  /* transition: opacity .2s ease; */
  background: #FFFFFF;
  /* opacity: 0.7; */
  /*border-radius: 0.15em;*/
  /*width: 80px;*/
  height: 40px;
  width: 40px;
  padding: 4px;
  border-radius: 40px;
  border: '2px solid #fff';
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
  transition: opacity .2s ease;
}

.filter-button-loading {
  filter: grayscale(50%);
  -webkit-filter: grayscale(50%);
}

.filter-button p {
  font-family: "Roboto";
  color: #212121;
  font-weight: 500;
  font-size: 16px;
  margin: 0px;
  padding: 3px;
  text-align: center;
}

.menu-box {
  margin-left: 10px;
  margin-top: 10px;
  transition: opacity .2s ease;
  opacity: 0.5;
}

.menu-box:hover {
  filter: grayscale(80%);
  -webkit-filter: grayscale(80%);
  opacity: 1.0;
}

.selected-filter-choice {
  font-weight: 800;
}

.pac-container, .pac-item{
  z-index: 2147483647 !important;
}
