#container {
    height: 600px;
}

#chart{
    height: 600px;
}

#toFadeIn {
    animation-duration: 3s;
    animation-name: fadein;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

table.has-yearly-returns th {
    width: 30%;
}

.historical-title {
    border-bottom-width: medium;
    border-bottom-color: lightgray;
    border-bottom-style: solid;
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}
