/* General styling for the progress bar container */
.tableColumn .progressBarWrapper {
  margin: 0 !important;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 25px 0 35px;
}

.tableColumn .progressBarWrapper:nth-child(2n+2) {
  background-color: #F1FCFF;
}

.tableColumn .progressBarWrapper .elementor-widget-container {
  width: 100%;
}

.progress-bar-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 5px;
  position: relative;
}

.low-value,
.high-value {
  font-size: 14px;
  color: #333;
  text-align: center;
  width: 50px;
  text-align: right;
}
.high-value{
  text-align: left;
}
.bar-fill {
  height: 16px;
  border-radius: 38px;
  background: linear-gradient(115.8deg, #0F63FF -13%, #41DAFF 81.78%);
  flex: 1;
  width: 100%;
}
@media (max-width:991px){
  .tableColumn .progressBarWrapper {
    padding: 0 20px 0 25px;
  }
  .bar-fill {
    height: 10px;
  }
}