body {
    font-family: "Monaco";
    margin: 0;
    color: #60666d;
}

.year-label {
    text-anchor: middle;
    font-size: 12px;
    font-weight: semibold;
}

g {
    font-family: "Monaco";
}

.axis-label {
    text-anchor: middle;
    font-size: 14px;
    font-weight: bold;
}

.text-label {
    text-anchor: end;
    font-size: 12px;
    font-weight: bold;
}

#main {
    margin: 20px;
    position: absolute;
}

.tol {
  opacity: 1;
  background-color: white;
  border: solid black;
  border-width: 2px;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  left: 370px;
  top: 580px;
  width: 150px;
  text-align: center;
}

.precipChart {
    border: 1px solid #777;
}

h3 {
    margin-top: 10px;
    margin-bottom: 0px;
    margin-left:55px;
}

.travel-box {
    margin-left: 25%;
}

span {
    font-size:13px;
    margin-left: 15px;
}

.rect:hover{
  fill: rgb(249, 194, 121);
}

.select-box {
    position: relative;
    display: block;
    width: 300px;
    font-size: 18px;
    color: #000000;
  }
  
.select-box__current {
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
}
.select-box__current:focus + .select-box__list {
  opacity: 1;
  -webkit-animation-name: none;
          animation-name: none;
}
.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  opacity: 0.3;
  transition: 0.2s ease;
}
.select-box__value {
  display: flex;
}
.select-box__input {
  display: none;
}
.select-box__input:checked + .select-box__input-text {
  display: block;
}
.select-box__input-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 10px;
  background-color: #fff;
}
.select-box__list {
  position: absolute;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  -webkit-animation-name: HideList;
          animation-name: HideList;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.select-box__option {
  display: block;
  padding: 15px;
  background-color: #fff;
}
.select-box__option:hover, .select-box__option:focus {
  color: #546c84;
  background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

.hoverinfo {
  margin-left: 40px;
}
