#monitoring_map {
  width: 100%;
  height: 560px;
}
@media screen and (max-width: 980px) {
  #monitoring_map {
    height: 60dvh;
  }
}

.monitoring_pin {
  position: relative;
  width: 0;
  height: 0;
}

.monitoring_truck {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}
.monitoring_truck_east {
  transform: translate(-50%, -50%) scaleX(-1);
}

.monitoring_label {
  position: absolute;
  top: 24px;
  left: 50%;
  box-sizing: border-box;
  padding: 4px 12px;
  border: 2px solid #FFCD1C;
  border-radius: 14px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}
.monitoring_label:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #FFCD1C;
  border-left: 6px solid transparent;
}
