.chart-title {
  font-family: "DinPro", Sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #012842;
  line-height: 30px;
  margin: 20px 0 40px;
}

.button-container {
  display: flex;
  margin-bottom: 24px;
}

@media only screen and (max-width: 480px) {
  .button-container {
    flex-wrap: wrap;
  }
}

.button-filter {
  font-family: "DinPro", Sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  background-color: #012842;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #012842;
  border-radius: 5px 5px 5px 5px;
  letter-spacing: 2px;
  padding: 12px 24px;
  margin-right: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all .3s;
}

.button-filter:last-child {
  margin-right: 0; 
}

.button-filter.active-filter {
  color: #012842;
  background-color: #ffffff;
  border-color: #012842;
}

@media only screen and (max-width: 480px) {
  .button-filter {
    margin-right: 9px; 
    padding: 10px 18px;
  }
}

.button-filter:hover {
  color: #012842;
  background-color: #ffffff;
  border-color: #012842;
}

.line-chart-wrapper {
  position: relative;
  height: 400px;
  min-height: 400px;
  width: 100%;
}

.line-chart {
  height: 400px;
  min-height: 400px;
}