/* Experiment with mobile text scaling */
@media only screen and (max-device-width: 812px) {
  .scale-text {
    font-size: 8vw;
  }
  .pdar-id {
    font-size: 5vw;
  }
  label,input,.button {
    font-size: 4vw;
  }
  .vue-range-slider {
    margin-top: 60px !important;
  }
  .slider {
    height: 14px !important;
  }
  .slider-tooltip {
    font-size: 3vw !important;
  }
}

/* CSS for debug graphs */
canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
/* CSS shenanigans to make the graphs readable side-by-side */
.charts-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}
.line-container {
  width: 60%;
}
.radar-container {
  position: absolute;
  width: 60%;
  top: 0px;
  right: -100px;
}

/* Form CSS */
.lat-lon-input {
  max-width: 6em;
}

.orient-input {
  max-width: 4em;
}

#add-pdar-id {
  text-transform: uppercase;
  max-width: 100px;
}

.vue-range-slider {
  margin-top: 35px;
}

.pdar-id {
  margin-top: 7px;
  margin-bottom: 7px;
}

#map {
  height: 60vh;
  width: 100%;
}
#pdar-gauges {
  position: absolute;
  height: 120px;
  left: 0px;
  bottom: 0px;
  padding-left: 10px;
  background: black;
  opacity: 0.7;
}
.gauge {
  position: relative;
  width: 70px;
  height: 100%;
  float: left;
}
.gauge-bar {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 90%;
  height: 100px;
}
.gauge-val {
  position: absolute;
  left: 10px;
  bottom: 20px;
  color: white;
  margin: 0;
}
.gauge-label {
  position: absolute;
  left: 0px;
  bottom: 0;
  color: white;
  margin: 0;
}
.red { background: red }
.blue { background: blue }
.green { background: green }
.orange { background: #ff6200 }
