.progress-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.profile-progress {
  width: 90%;
  padding: 15px;
}

.profile-progress [data-progress] {
  height: 25px;
  box-shadow: 0 0 100px 1px rgba(0, 0, 0, 0.4) inset;
  border-radius: 50px;
  margin: 5px 0 10px 0;
  overflow: hidden;
}

[data-progress]::after {
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.5) inset;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(24, 26, 106);
  width: 0;
  height: 100%;
  box-sizing: border-box;
  font-size: 18px;
  color: white;
  padding: 0 3px;
  transition: 2s;
  font-weight: bold;
}

[data-progress].animate-progress::after {
  content: attr(data-progress) "%";
  width: var(--animate-progress);
}
