/* Colors */

svg {
  position: relative;
  width: 110px;
  height: 110px;
  z-index: 9;
}

svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transform: translate(5px, 5px);
  stroke: #323345;
}

svg circle:nth-child(2) {
  stroke-dasharray: 650;
  stroke: var(--primary);
}

.pie {
  width: 100px;
  height: 100px;
  margin-right: 10px;
}

.pie-number {
  position: relative;
  top: -107px;
  left: 5px;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 600;
}

.progress {
  background: #f2f2f2;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: 100%;
  height: 10px;
}

.progress-bar {
  box-shadow: 5px 0px 10px rgba(209, 123, 136, 0.3);
  border-radius: 10px;
  height: 10px;
}

.progress-bar.danger {
  background: var(--danger);
}

.progress-bar.warning {
  background: var(--warning);
}

.progress-bar.success {
  background: var(--success);
}
