/* ====================== */
/*  WP Blocks
/*	- Stats overview
/* ====================== */
.entry-content > div.stats-wrapper {
  margin-bottom: 60px;
}
.stats-wrapper {
  --bg-color: #ececec;
  background-color: var(--bg-color);
  margin-bottom: 60px;
  padding-top: 30px;
  padding-right: 45px;
  padding-bottom: 50px;
  padding-left: 45px;
}
.stats-wrapper h2 {
  position: relative;
  font-size: 25px;
  text-transform: none;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 600;
}
.stats-wrapper h2.has-icon {
  padding-left: 30px;
}
.stats-wrapper h2.has-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform: translateY(8px);
}
.stats-wrapper .stats-items {
  display: grid;
  grid-template-columns: repeat(var(--items-per-row), 1fr);
}
.stats-wrapper .stats-items img {
  display: block;
  margin: 30px auto;
}
.stats-wrapper .stats-items .stat-item {
  padding: 26px;
}
.stats-wrapper .stats-items .stat-item .stat-text {
  font-size: 16px;
  line-height: 25px;
  font-weight: 100;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  
  text-align: center;
}
.stats-wrapper .stats-items .stat-item .stat-text.stat-text-percent {
  font-size: 30px;
  font-weight: 700;
}
.stats-wrapper svg {
  position: relative;
  transform: rotate(-90deg);
  transform-origin: center center;
}
.stats-wrapper .cirkel {
  fill: var(--base-3);
}
.stats-wrapper .cirkel.cirkel-stroke {
  stroke: var(--chart-color);
  stroke-width: 69;
  stroke-dasharray: 1000px;
  stroke-dashoffset: calc((1000px + (var(--percent-complete) * 574px)) * -1);
}
.stats-wrapper .stat-chart-text {
  text-align: center;
}
.stats-wrapper .stat-chart {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
.stats-wrapper .stat-chart .stat-chart-percent {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% + 8px);
  transform: translate(-50%, -50%);
  font-size: calc((var(--items-per-row) * -10px) + 80px);
  font-weight: bold;
  user-select: none;
}