.chart-title {
  font-family: "DinPro", Sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #012842;
  line-height: 30px;
  margin: 20px 0 40px;
}

.legend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legend-value {
  margin-left: 40px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.legend-color {
  flex-shrink: 0;
  height: 18px;
  width: 50px;
  margin-right: 20px;
}

@media only screen and (max-width: 1400px) {
  .legend-value {
    margin-left: 20px;
  }

  .legend-color {
    width: 40px;
  }
}

@media only screen and (max-width: 1024px) {
  .legend-color {
    width: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .legend-color {
    width: 40px;
  }
}

.legend-text {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "DinPro", Sans-serif;
  color: #012842;
  font-size: 18px;
  line-height: 22px;
}


@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .temp-container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .temp-container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

.chart-container {
  display: flex;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .chart-container {
    display: flex;
    flex-direction: column;
  }
}

.pie-chart-wrapper {
  width: 100%;
  height: 400px;
  max-width: 400px;
  margin-right: 65px;
}

.pie-chart {
  align-self: center;
}

@media only screen and (max-width: 768px) {
  .pie-chart-wrapper {
    margin-right: 0;
    height: 100%;
    width: 100%;
  }
}

.legend-container {
  display: flex;
  flex-shrink: 1;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .legend-container {
    margin-top: 30px;
  }
}