#ChartSection {
  width: 100%;
  display: flex;
}

.chartContainer {
  width: 75%;
}

#myChart {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#ChartSection .chartLegend {
  width: 25%;
}

select#chartSelect {
  margin-bottom: 5px;
  width: 100%;
  padding: 10px 15px 10px 10px;
  background-color: #aec635;
  border: none;
  color: #fff;
  margin-top: 15px;
  font-size: 12pt;
  font-family: sofia-pro, sans-serif;
  outline: none;
}

select#chartSelect:hover {
  cursor: pointer;
}

div#contentArea div#contentAreaBox div#content a#speciesLink {
  background: none;
  background-color: none;
  padding: 0;
  margin: 0;
}

div#contentArea div#contentAreaBox div#content a#speciesLink #speciesImg {
  width: calc(100% - 10px);
}

div#contentArea div#contentAreaBox div#content a#speciesLink #speciesTitle {
  width: 88%;
  margin-right: 10%;
  background-color: #aec635;
  padding-left: 2%;
}

div#contentArea
  div#contentAreaBox
  div#content
  a#speciesLink:hover
  #speciesTitle {
  background-color: #bed15d;
}

#ChartSection select,
#ChartSection button {
  font-family: inherit;
}

#ChartSection .split-list ul {
  float: left;
  margin-left: 1em;
}
#ChartSection .split-list li {
  padding-right: 2em;
  line-height: 1.5em;
  list-style-type: none;
  padding: 0;
}

/* Mobile ansicht */
@media screen and (max-width: 640px) {
  #ChartSection .chartLegend {
    width: 100% !important;
    float: left !important;
    margin: 0 !important;
  }

  #ChartSection .chartContainer {
    width: 100% !important;
    float: left !important;
  }

  div#contentArea div#contentAreaBox div#content a#speciesLink #speciesImg {
    width: 100%;
  }

  div#contentArea div#contentAreaBox div#content a#speciesLink #speciesTitle {
    width: 100%;
  }
}

@media screen and (min-width: 641px) and (max-width: 768px) {
  #ChartSection .chartLegend {
    width: 100% !important;
    float: left !important;
    margin: 0 !important;
  }

  #ChartSection .chartContainer {
    width: 100% !important;
    float: left !important;
  }
  div#contentArea div#contentAreaBox div#content a#speciesLink #speciesImg {
    width: 100%;
    background-size: cover;
  }
  div#contentArea div#contentAreaBox div#content a#speciesLink #speciesTitle {
    width: 98%;
  }
}

#list {
  display: flex;
  justify-content: stretch;
  flex-flow: row wrap;
  margin: 0 -5px;
}
.optionLink {
  min-width: 165px;
  cursor: pointer;
  background-color: #aec635;
  color: white;
  text-align: center;
  padding: 5px;
  margin: 5px;
  flex: 1;
  display: flex;
  font-family: sofia-pro, sans-serif;
  justify-content: center;
  align-items: center;
  border: 0;
}
.optionLink.current {
  background-color: white;
  color: #aec635;
}
.optionLink:hover {
  opacity: 0.5;
}
.optionLink:focus {
  outline: none;
}
