.tab, .type-tab{
  display: inline-block;
  background-color: darkcyan;
  color: white;
  padding: 5px;
  margin-right: 3px;
  margin-bottom: 3px;
  border-radius: 5px;
  opacity: 0.7;
  transition: opacity 0.5s;
  cursor: pointer;
}

.type-tab{
  background-color: brown;
}

.tab.active, .tab:hover, .type-tab.active, .type-tab:hover{
  opacity: 1;
  transition: opacity 0.5s;
}

.ct-chart{
  height: 500px;
  width: 100%;
}