.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.ym-g100 {
  padding: 0;
}
#map-canvas {
  margin: 0;
  padding: 0;
  height: 500px !important;
  width: 98%;
}
#map-list {
  margin: 10px auto;
  padding: 0;
  width: 98%;
}
#map-options {
  width: 100%;
  margin-bottom: 10px;
}
#map-options > * {
  display: inline-block;
  margin-left: 10px;
}
.yui3-g-r img {
  max-width: none !important;
}
.bldgcol {
  width: 20%;
  display: inline-block;
  vertical-align: top;
  margin: 10px 1%;
  font-size: 10px;
}

@media (max-width: 639px) {
  .bldgcol {
    width: 100%;
    margin: 0;
  }
}

#busLegend {
  display: flex;
  align-items: center;
  margin-left: 0;
}

@media (max-width: 767px) {
  #busLegend {
    display: block;
  }

  .bus-switch {
    margin-right: 10px;
  }
}
/* Custom Switch CSS */
.bus-switch {
  margin-right: 10px;
  margin-left: 20px;
  display: flex;
}

.bus-switch input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.bus-switch label {
  cursor: pointer;
  text-indent: -9999px;
  width: 30px;
  height: 15px;
  background: grey;
  display: block;
  border-radius: 50px;
  position: relative;
}

.bus-switch label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 11px;
  transition: 0.2s;
}

.bus-switch.green input:checked + label {
  background: #18c733;
}

.bus-switch.red input:checked + label {
  background: #c71818;
}

.bus-switch.blue input:checked + label {
  background: #092eff;
}

.bus-switch.black input:checked + label {
  background: #000000;
}

.bus-switch input:checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
}

.bus-switch label:active:after {
  width: 14px;
}
