#dashboard {
  min-width: 500px;
  width: 550px;
  max-width: 40vw;
  height: calc(100% - 120px);
  position: absolute;
  right: 0;
  top: 50px;
  background: #fff;
  z-index: 999;
  transition: 0.3s all ease;
  overflow-x: visible;
}
#closeBoard {
  width: 50px;
  height: 100px;
  background-color: rgb(31, 35, 45);
  opacity: 0.8;
  position: absolute;
  top: 40%;
  left: -50px;
  border-radius: 80px 0px 0px 80px;
  cursor: pointer;
}
#closeBoard svg {
  width: 25px;
  height: 25px;
  margin: 38px 0px 0px 20px;
}
.closebutton {
  fill: #fff;
}

.subtitle {
  margin-top: 30px;
}
.select-year {
  margin-bottom: 8px;
}
.area-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.boardwrap {
  display: flex;
  padding: 0 50px;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
#bottle {
  max-height: calc(100vh - 250px);
}
.st0 rect {
  transition: 0.3s all;
  opacity: 0.6;
}
rect.select-rect {
  opacity: 1;
}
svg {
  overflow: visible;
}

.tooltip {
  opacity: 0;
  transform: translateX(0px);
  transition: 0.3s all;
  font-size: 3.5px;
  letter-spacing: 0.1px;
}
.tooltip.select-tip {
  opacity: 0.8;
  transform: translateX(10px);
}
.null-dot {
  opacity: 0.5;
}

.st5 line {
  stroke: #1c1c1c;
  stroke-width: 0.25;
  stroke-dasharray: 1, 1;
  opacity: 0.5;
}

.st5.select-line line {
  stroke-width: 0.5;
  stroke-dasharray: 0.5, 0.5;
  opacity: 1;
}

.field {
  fill: 1c1c1c;
  opacity: 0.9;
  font-size: 3px;
}
.field.select-field {
  opacity: 1;
  font-weight: 700;
}

.about {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-right: 20px;
}
.about:hover {
  color: rgba(255, 255, 255, 1);
}
.aboutwrap {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background-color: rgba(31, 35, 45, 0.9);
}

.about-scroll {
  padding: 30px;
  white-space: normal;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.7em;
}
.about-title {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-content {
  margin-bottom: 40px;
}

.about-bottle {
  font-size: 0.9rem;
  margin-bottom: 40px;
  background: rgba(31, 35, 45, 1);
  padding: 20px;
  font-weight: 300;
  line-height: 1.8rem;
}
.about-bottle span {
  background: #000;
  padding: 2px 5px;
}
.about-link-title {
  font-weight: 600;
  margin-bottom: 20px;
}
.about-link {
  margin-bottom: 60px;
}
.about-link a {
  display: block;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}

.legend {
  width: 100%;
  margin-bottom: 20px;
}
.legend .text-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  margin-bottom: 5px;
}
.puple {
  width: 100%;
  height: 10px;
  margin-bottom: 5px;
  background-image: linear-gradient(
    90deg,
    rgba(117, 59, 241, 0.1),
    rgb(117, 59, 241) 100%
  );
}

.red {
  width: 100%;
  height: 10px;
  background-image: linear-gradient(
    90deg,
    rgba(223, 89, 87, 0.1),
    rgb(223, 89, 87) 100%
  );
}
