:root {
  --main-rad: 8px;
  --card-color: #fff;
  --progress-hight-1: 6px;
  --progress-color-1: rgb(0, 128, 255);
  --path-color-1: #ddd;
}

.linear-progress {
  padding: 15px 5px !important;
  margin: 10px 5px;
  background-color: var(--card-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: var(--main-rad);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.linear-progress .title {
  padding: 0 8px;
  text-align: center;
  margin-bottom: 0px;
  font-size: 14px;
  color: var(--progress-color-1);
}

.linear-progress h5 {
  padding: 0 8px;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  width: 50px;
  margin: 0;
  color: var(--progress-color-1);
}

.linear-progress .progress-line {
  height: var(--progress-hight-1);
  width: 59%;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  background-color: var(--path-color-1);
}

.linear-progress .progress-line span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 7px;
  background-color: var(--progress-color-1);
}

@media (max-width: 375px) {
  .linear-progress {
    width: 96% !important;
  }
}