/* Circular Progress */
:root {
  --progress-bar-size: 90px;
  --progress-path: 16px;
  --font-size: 1.2rem;
}

.circular-progress {
  width: var(--progress-bar-size);
  height: var(--progress-bar-size);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-circle {
  position: absolute;
  width: calc(var(--progress-bar-size) - var(--progress-path));
  height: calc(var(--progress-bar-size) - var(--progress-path));
  border-radius: 50%;
  background-color: #fff;
}

.percentage {
  position: relative;
  font-size: var(--font-size);
  font-weight: bold;
  margin: 0;
}

.circular-progress-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.circular-progress-holder .title {
  font-size: 20px;
  margin: 15px 0;
  background-color: #ffffff;
  text-align: center;
  width: 100%;
  padding: 10px 8px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0, 0.2);
}

@media (max-width: 325px) {
  .circular-progress-holder {
    width: 100% !important;
  }
}