p.disclaimer {
  font-weight: 600;
  color: #f45f45;
  }

.chart-container {
  display: flex;
  width: 100%;
  background-color: #fafafa;
  min-height: 500px;
  }

.chart-container > div:first-child {
  margin:20px;
  flex: 70%;
  }

.chart-container > div:nth-child(2) {
  flex: 30%;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  }

@media screen and (max-width: 1200px) {
  .chart-container {
    flex-wrap: wrap;
  }

  .chart-container > div:first-child {
    flex: 100%;
	order: 1;
	min-height: 300px;
  }

  .chart-container > div:nth-child(2) {
    flex: 100%;
	order: 2;
    margin-left: 0;
  }
}
	
.chart-container > div:nth-child(2) div {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color:#f0f0f0;
  padding: 15px;
  margin-right: 5px;
  margin-bottom: 5px;
  }

.chart-container > div:nth-child(2) div:first-child {
  margin-top: 5px;
  }

.chart-container > div:nth-child(2) div:last-child {
  margin-bottom: 5px;
  }

.chart-container > div:nth-child(2) div > progress {
  appearance: none;
  -webkit-appearance: none;
  height: 3px;
  width: 100%;
  background-color: #e5e5e5;
  border-radius: 0;
  margin-bottom:5px;
  }

.chart-container > div:nth-child(2) div > progress::-webkit-progress-bar {
  background-color: #e5e5e5;
  border-radius: 0;
  }

.chart-container > div:nth-child(2) div > progress::-webkit-progress-value {
  background-color: #666;
  border-radius: 0;
  }

.chart-container > div:nth-child(2) div > span:nth-child(1) {
  font-weight: 600;
  font-size: 1.2em;
  }

.chart-container > div:nth-child(2) div > span:nth-child(2) {
  font-weight: 900;
  font-size: 1.6em;
  }

.chart-container > div:nth-child(2) div > span:nth-child(3) {
  font-size: 1;
  }

/* Media query for screens with a maximum width of 600px */
@media (max-width: 1200px) {
  .chart-container {
    flex-direction: column-reverse;
  }

  .chart-container > div:first-child {
  margin:5px;
  }

  .chart-container > div:nth-child(2) {
  margin-bottom: 20px;
  }
}