body {
  color: #707070;
  height: 100vh;
  overflow: hidden;
}
body .container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding: 40px;
}
body .container .map-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
body .container .background_img {
  position: absolute;
  top: 0%;
  left: -30%;
  width: 150%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .container .title_box {
  position: relative;
  background-color: #FDFFE5;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}
body .container .title_box h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto;
  color: #547E57;
}
body .container .title_box h1 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto;
  color: #808080;
}
body .container .update {
  font-size: 14px;
  margin: 10px 0;
  padding-left: 10px;
}
body .container .icon_box {
  position: relative;
  background-color: white;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 40px;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
body .container .icon_box .icon_title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
body .container .icon_box .icon_container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
body .container .icon_box .icon_container .icon_row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
body .container .icon_box .icon_container .icon_row img {
  width: 80px;
}
body .container .icon_box .icon_container .icon_row p {
  font-size: 14px;
  font-weight: bold;
  margin: 0 auto;
}
body .container {
  /* =========================
      Graph Box
      ========================= */
}
body .container .overlay-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
body .container .graph-box {
  position: absolute;
  width: 18vw;
  padding: 10px 8px;
}
body .container .graph-box.graph-no-data-overlay {
  min-width: 220px;
  text-align: center;
}
body .container .graph-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-size: 12px;
}
body .container .graph-box .graph-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
body .container .graph-box .graph-title {
  font-weight: bold;
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
  line-height: 30px;
}
body .container .graph-box .pollen-icon {
  width: 30%;
  height: 30px;
}
body .container .graph-box canvas {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
body .container .graph-box .graph-no-data {
  width: 160px;
  min-width: 160px;
  height: 120px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 8px;
  font-size: 13px;
  color: #555;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
  overflow: visible;
}
body .container .graph-box .graph-no-data span {
  color: #555;
  display: block;
}/*# sourceMappingURL=main.css.map */