:root {
  --main-rad: 8px;
  --card-color: #fff;
  --progress-hight: 6px;
}

.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.1);
}

.linear-progress .title {
  padding: 0 8px;
}

.linear-progress h5 {
  padding: 0 8px;
  font-size: 13px;
  position: relative;
}

.linear-progress .title {
  text-align: center;
  margin-bottom: 0px;
  font-size: 14px;
}

.linear-progress .progress-line {
  height: var(--progress-hight);
  width: 59%;
  background-color: #ddd;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.linear-progress .progress-line span {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-radius: 7px;
  transition: width 2s ease-out;
}

@media (max-width: 375px) {
  .linear-progress {
    width: 96% !important;
  }
}