#toolbar {
  display: none;
}

.chart_wrapper {
  margin-top: 50px;
}

#chart {
  width: 100%;
  margin: 30px 0;
}

@media (max-width: 1300px) {
  #chart {
    width: 100%;
  }
}

.mainChartWrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

#yearRange {
  background-color: white;
  padding: 10px 15px;
  border: 1px solid black;
  border-radius: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}

.checkBoxMainContainer {
  width: 50%;
  position: relative;
}

.checkBoxRenderContainer {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  z-index: 15;
  border: 1px solid lightgray;
  visibility: none;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.25s ease-in-out;
  pointer-events: none;
}

.checkBoxMainContainer:hover .checkBoxRenderContainer {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.selectIndicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  cursor: pointer;
  border: 1px solid lightgray;
}

.selectIndicator h3 {
  font-size: 18px;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.selectIndicator img {
  width: 18px;
  height: 18px;
}

.chechBoxRow {
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

.chechBoxRow input {
  width: 15px;
  height: 15px;
}

.chechBoxRow label {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 300;
  margin-bottom: 0;
}

.sectionTitle {
  background-color: rgb(240, 240, 240);
  padding: 15px;
  cursor: pointer;
  transition: all 0.5s;
  border-bottom: 1px solid lightgray;
}

.sectionTitle.active {
  background-color: white;
  border-bottom: 1px solid white;
}

.sectionTitle h4 {
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: grey;
  transition: all 0.5s;
}

.sectionTitle.active h4 {
  color: black;
}

.sectionTitle h4:hover {
  color: black;
}

.sectionCheckBoxesToggle {
  display: none;
}

.sectionCheckBoxes {
  padding: 0 15px 15px 15px;
  min-height: 80px;
  background-color: white;
}

.chartControllers {
  display: flex;
}

.yearMainContainer {
  position: relative;
  margin-left: 20px;
}

.Yearselector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  cursor: pointer;
  border: 1px solid lightgray;
}

.Yearselector h3 {
  font-size: 18px;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.Yearselector img {
  width: 18px;
  height: 18px;
  margin-left: 30px;
}

.yearContainer {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  z-index: 15;
  border: 1px solid lightgray;
  visibility: none;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.25s ease-in-out;
  pointer-events: none;
}

.yearMainContainer:hover .yearContainer {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.yearRow {
  padding: 10px 15px;
  cursor: pointer;
  background-color: white;
  border-bottom: 1px solid lightgray;
}

.yearRow.active {
  background-color: lightgrey;
  transition: all 0.5s;
}

.yearRow p {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.chartDownloadButtons {
  background-color: white;
  border: 2px solid #41b155;
  color: #41b155;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
}

.downloadButtonContainer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .chartControllers {
    flex-direction: column;
  }

  .checkBoxMainContainer {
    width: 100%;
  }

  .selectIndicator {
    padding: 5px 10px;
  }

  .selectIndicator h3 {
    font-size: 15px;
  }

  .checkBoxRenderContainer {
    top: 30px;
  }

  .sectionTitle {
    padding: 5px 10px;
  }

  .sectionTitle h4 {
    font-size: 13px;
  }

  .chechBoxRow label {
    font-size: 12px;
  }

  .chechBoxRow input {
    width: 12px;
    height: 12px;
  }

  .yearMainContainer {
    margin-left: 0;
    margin-top: 10px;
  }

  .Yearselector {
    padding: 5px 10px;
  }

  .Yearselector h3 {
    font-size: 15px;
  }

  .yearContainer {
    top: 30px;
  }

  .yearRow p {
    font-size: 12px;
  }

  .downloadButtonContainer {
    flex-direction: row;
    align-items: flex-start;
    grid-gap: 10px;
    margin-top: 10px;
  }

  #chart {
    width: 200%;
  }
}
