.ctrlbox {
  display: flex;
  flex-direction: column;
  position: fixed;
  justify-content: space-between;
  top: 100px;
  left: 40px;
  width: 240px;
  z-index: 999;
  height: calc(100% - 300px);
}
.yearbox,
.axisbox {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  flex-shrink: 0;
  height: 50px;
  font-size: 1.1rem;
}
.yearbox {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.axisbox {
  border-bottom: 1px solid #ddd;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  height: 60px;
}
.arrow {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.arrow.left {
  justify-content: flex-start;
  margin-left: 10px;
}
.arrow.right {
  justify-content: flex-end;
  margin-right: 10px;
}

/* 랭킹박스 */
.rankingbox {
  border-radius: 5px;
  background: #fff;
  margin-top: 10px;
  flex: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
.rank {
  flex: 1 0;
  overflow-x: hidden;
}
/* 지도 줌버튼 */
.leaflet-bottom.leaflet-left {
  left: 40px;
}
.leaflet-control-zoom.leaflet-bar.leaflet-control {
  margin: 0;
  margin-bottom: 20px;
}

.row {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #000;
  border-bottom: 1px solid #ddd;
  transition: 0.1s all;
  cursor: pointer;
  font-size: 0.9rem;
}
.row:hover {
  background: rgba(0, 0, 0, 0.03);
}
.row .num {
  margin-left: 10px;
  font-weight: 700;
  color: #999;
}
.row .area {
  margin-left: 10px;
}
.row.selected-row {
  background: rgba(0, 0, 0, 0.06);
}
