.dlBarChartChartWrapper {
  width: auto;
  margin: auto;
  position: relative;
  margin: 30px;
}

.dlBarChartXLabels {
  position: absolute;
  top: -22px;
  left: 35px;
  width: calc(100% - 45px);
  height: 0;
  z-index: 2;
}

.dlBarChartXLabels span {
  position: absolute;
  font-size: 12px;
  color:  rgb(0 0 0 / 70%);
  transform: translateX(-50%);
}

.dlBarChartXLabels span:nth-child(1)  { left: 0%; }
.dlBarChartXLabels span:nth-child(2)  { left: 10%; }
.dlBarChartXLabels span:nth-child(3)  { left: 20%; }
.dlBarChartXLabels span:nth-child(4)  { left: 30%; }
.dlBarChartXLabels span:nth-child(5)  { left: 40%; }
.dlBarChartXLabels span:nth-child(6)  { left: 50%; }
.dlBarChartXLabels span:nth-child(7)  { left: 60%; }
.dlBarChartXLabels span:nth-child(8)  { left: 70%; }
.dlBarChartXLabels span:nth-child(9)  { left: 80%; }
.dlBarChartXLabels span:nth-child(10) { left: 90%; }
.dlBarChartXLabels span:nth-child(11) { left: 100%; }

.dlBarChartGridSvg {
  position: absolute;
  top: 0;
  left: 35px;
  width: calc(100% - 45px);
  height: 184px;
  z-index: 0;
  pointer-events: none;
  overflow: visible !important;
}

.dlBarChartGrid line {
  stroke: #00001a26;
  stroke-width: 1;
  stroke-dasharray: 4;
}

.dlBarChartGrid line:nth-child(2) {
  stroke-dasharray: none;
  stroke: #00001a4d;
}

.dlBarChartBarWrapper {
  position: relative;
  height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dlBarChartBarRow {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.dlBarChartYearLabel {
  width: 25px;
  text-align: right;
  font-size: 12px;
  color: rgb(0 0 0 / 70%);
  margin-right: 10px;
}

.dlBarChartBarTrack {
  height: 42px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.dlBarChartBar {
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 10px;
  color: #fff;
  font-size: 16px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  white-space: nowrap;
  width: 0;
  opacity: 0;
  flex-direction: row-reverse;
  transition: width 1.5s ease, opacity 0.8s ease;
}

.dlBarChartBar.animate {
  opacity: 1;
}

.dlBarChartBarLatestY {
  background: #003b71;
}

.dlBarChartBarPastY {
  background: #62cdf6;
  color: #003b71;
}

.dlBarChartPercentageLabel {
  position: absolute;
  top: 25%;
  font-size: 24px;
  font-weight: bold;
  color: #004b88;
  white-space: nowrap;
  transition: opacity 1.5s ease ;
  opacity: 0;
  transform-origin: center;
}

.dlBarChartPercentageLabel.show {
  opacity: 1;
}

.dlBarChartChartWrapper.chartReady {
  visibility: visible !important;
  opacity: 1  !important;
}


@media screen and (max-width:1024px){
  .dlBarChartChartWrapper{
    margin: 5px;
  }
  .dlBarChartXLabels span{
    font-size: 12px;
  }
}

/* ===================== OVERWRITE ================= */

@media screen and (max-width:768px){
  .dlBarChartXLabels span{
    font-size: 7px;
  }
}