/*
Version: 1.0.5
Description: Base Layout Stylesheet for BU Stats plugin.
*/
/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.bu-stat-title {
  font-size: 0.7em;
  margin: 2em 0;
  line-height: 1.5;
}

.bu-stat-description {
  font-size: 0.75em;
  padding: 1em;
  margin-bottom: 0;
}

/**
* The container element around any value output within a stat element.
* Used for layout of the value components of the stat.
*
*/
.bu-stat-value-container {
  display: flex;
  align-items: center;
}

.bu-stat-prefix {
  font-size: 1em;
}

.bu-stat-prefix.bu-stat-prefix-top {
  font-size: 0.75em;
  font-weight: bold;
  padding-right: 0.25em;
}

.bu-stat-value {
  font-size: 3em;
  font-weight: bold;
}

.bu-stat-suffix {
  font-size: 1em;
  font-weight: bold;
}

.bu-stat-value-connector {
  display: flex;
  font-weight: bold;
  font-size: 1.1em;
  padding: 0 1em;
}

.bu-stat-value-connector.bu-stat-connector-in, .bu-stat-value-connector.bu-stat-connector-of {
  font-style: italic;
}

.bu-stat-value-connector.bu-stat-connector-colon {
  padding: 0 0.2em;
  font-size: 1.6em;
}

.bu-stat-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.bu-stat-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: none;
}

:root {
  --bu-stat-base-max-width: 320px;
  --bu-stat-minimum-font-size: 16px;
  --bu-stat-maximum-font-size: 24px;
}

.bu-stat-single {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  max-width: var(--bu-stat-base-max-width);
  width: 100%;
}

@supports (aspect-ratio: 1/1) {
  .bu-stat-single {
    aspect-ratio: 4/3;
  }
}

.bu-stat-single .bu-stat-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2em 0.5em;
  position: relative;
  width: 100%;
  z-index: 1;
  min-height: 100%;
}

.bu-stat-single.bu-stat-has-title .bu-stat-inner {
  padding-top: 0.5em;
}

.bu-stat-single.bu-stat-has-description .bu-stat-inner {
  padding-bottom: 0.5em;
}

.bu-stat-single .bu-stat-post-edit-link {
  font-size: 0.6em;
  line-height: 1.5em;
  opacity: 0.3;
  padding: 0.25em;
  position: absolute;
  right: 0;
  top: 0;
}

.bu-stat-single .bu-stat-post-edit-link:hover {
  opacity: 1.0;
}

.bu-stat-element {
  align-items: center;
  align-self: stretch;
  display: flex;
  justify-content: center;
  line-height: 1;
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.bu-stat-type-x-of-x .bu-stat-element {
  overflow: hidden;
}

.bu-stat-type-x-of-x .bu-stat-value-container {
  overflow: hidden;
  justify-content: center;
}

.bu-stat-type-x-of-x .bu-stat-value-one {
  justify-content: flex-end;
}

.bu-stat-type-x-of-x .bu-stat-value-two {
  justify-content: flex-start;
}

.bu-stat-type-x-of-x .bu-stat-value-connector {
  text-align: center;
  justify-content: center;
}

.bu-stat-type-x-of-x[class*="bu-stat-has-max-characters-"] .bu-stat-element {
  font-size: 0.6em;
}

.bu-stat-type-x-of-x.bu-stat-has-max-characters-1 .bu-stat-element {
  font-size: 1em;
}

.bu-stat-type-x-of-x.bu-stat-has-max-characters-2 .bu-stat-element {
  font-size: 0.93em;
}

.bu-stat-type-x-of-x.bu-stat-has-max-characters-3 .bu-stat-element {
  font-size: 0.85em;
}

.bu-stat-type-animated-percentage {
  --bu-stat-animation-duration-large-values: 1200ms;
  --bu-stat-animation-duration-small-values: 600ms;
}

.bu-stat-type-animated-percentage .bu-stat-value-container {
  position: absolute;
  z-index: 2;
}

.bu-stat-type-animated-percentage .bu-stat-value {
  position: relative;
}

.bu-stat-type-animated-percentage .bu-stat-value:after {
  display: block;
  position: absolute;
  content: '';
  animation-duration: var(--bu-stat-animation-duration-large-values);
  animation-fill-mode: forwards;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: right;
  animation-fill-mode: both;
}

.bu-stat-type-animated-percentage .bu-stat-value .bu-stat-value-field {
  display: block;
  position: relative;
  animation-duration: var(--bu-stat-animation-duration-large-values);
  animation-delay: 0s;
  animation-fill-mode: both;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10::after {
  animation-name: bu-stat-donut-value-countup-10;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10::after {
  animation-name: bu-stat-donut-value-countdown-10;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10::after {
  animation-name: bu-stat-donut-value-countup-10;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11::after {
  animation-name: bu-stat-donut-value-countup-11;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11::after {
  animation-name: bu-stat-donut-value-countdown-11;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11::after {
  animation-name: bu-stat-donut-value-countup-11;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12::after {
  animation-name: bu-stat-donut-value-countup-12;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12::after {
  animation-name: bu-stat-donut-value-countdown-12;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12::after {
  animation-name: bu-stat-donut-value-countup-12;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13::after {
  animation-name: bu-stat-donut-value-countup-13;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13::after {
  animation-name: bu-stat-donut-value-countdown-13;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13::after {
  animation-name: bu-stat-donut-value-countup-13;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14::after {
  animation-name: bu-stat-donut-value-countup-14;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14::after {
  animation-name: bu-stat-donut-value-countdown-14;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14::after {
  animation-name: bu-stat-donut-value-countup-14;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15::after {
  animation-name: bu-stat-donut-value-countup-15;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15::after {
  animation-name: bu-stat-donut-value-countdown-15;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15::after {
  animation-name: bu-stat-donut-value-countup-15;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16::after {
  animation-name: bu-stat-donut-value-countup-16;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16::after {
  animation-name: bu-stat-donut-value-countdown-16;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16::after {
  animation-name: bu-stat-donut-value-countup-16;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17::after {
  animation-name: bu-stat-donut-value-countup-17;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17::after {
  animation-name: bu-stat-donut-value-countdown-17;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17::after {
  animation-name: bu-stat-donut-value-countup-17;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18::after {
  animation-name: bu-stat-donut-value-countup-18;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18::after {
  animation-name: bu-stat-donut-value-countdown-18;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18::after {
  animation-name: bu-stat-donut-value-countup-18;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19::after {
  animation-name: bu-stat-donut-value-countup-19;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19::after {
  animation-name: bu-stat-donut-value-countdown-19;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19::after {
  animation-name: bu-stat-donut-value-countup-19;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20::after {
  animation-name: bu-stat-donut-value-countup-20;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20::after {
  animation-name: bu-stat-donut-value-countdown-20;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20::after {
  animation-name: bu-stat-donut-value-countup-20;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-21::after {
  animation-name: bu-stat-donut-value-countup-21;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-21 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-21::after {
  animation-name: bu-stat-donut-value-countdown-21;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-21 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-21::after {
  animation-name: bu-stat-donut-value-countup-21;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-21 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-22::after {
  animation-name: bu-stat-donut-value-countup-22;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-22 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-22::after {
  animation-name: bu-stat-donut-value-countdown-22;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-22 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-22::after {
  animation-name: bu-stat-donut-value-countup-22;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-22 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-23::after {
  animation-name: bu-stat-donut-value-countup-23;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-23 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-23::after {
  animation-name: bu-stat-donut-value-countdown-23;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-23 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-23::after {
  animation-name: bu-stat-donut-value-countup-23;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-23 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-24::after {
  animation-name: bu-stat-donut-value-countup-24;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-24 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-24::after {
  animation-name: bu-stat-donut-value-countdown-24;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-24 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-24::after {
  animation-name: bu-stat-donut-value-countup-24;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-24 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-25::after {
  animation-name: bu-stat-donut-value-countup-25;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-25 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-25::after {
  animation-name: bu-stat-donut-value-countdown-25;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-25 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-25::after {
  animation-name: bu-stat-donut-value-countup-25;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-25 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-26::after {
  animation-name: bu-stat-donut-value-countup-26;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-26 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-26::after {
  animation-name: bu-stat-donut-value-countdown-26;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-26 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-26::after {
  animation-name: bu-stat-donut-value-countup-26;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-26 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-27::after {
  animation-name: bu-stat-donut-value-countup-27;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-27 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-27::after {
  animation-name: bu-stat-donut-value-countdown-27;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-27 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-27::after {
  animation-name: bu-stat-donut-value-countup-27;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-27 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-28::after {
  animation-name: bu-stat-donut-value-countup-28;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-28 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-28::after {
  animation-name: bu-stat-donut-value-countdown-28;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-28 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-28::after {
  animation-name: bu-stat-donut-value-countup-28;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-28 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-29::after {
  animation-name: bu-stat-donut-value-countup-29;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-29 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-29::after {
  animation-name: bu-stat-donut-value-countdown-29;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-29 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-29::after {
  animation-name: bu-stat-donut-value-countup-29;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-29 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-30::after {
  animation-name: bu-stat-donut-value-countup-30;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-30 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-30::after {
  animation-name: bu-stat-donut-value-countdown-30;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-30 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-30::after {
  animation-name: bu-stat-donut-value-countup-30;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-30 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-31::after {
  animation-name: bu-stat-donut-value-countup-31;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-31 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-31::after {
  animation-name: bu-stat-donut-value-countdown-31;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-31 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-31::after {
  animation-name: bu-stat-donut-value-countup-31;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-31 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-32::after {
  animation-name: bu-stat-donut-value-countup-32;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-32 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-32::after {
  animation-name: bu-stat-donut-value-countdown-32;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-32 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-32::after {
  animation-name: bu-stat-donut-value-countup-32;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-32 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-33::after {
  animation-name: bu-stat-donut-value-countup-33;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-33 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-33::after {
  animation-name: bu-stat-donut-value-countdown-33;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-33 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-33::after {
  animation-name: bu-stat-donut-value-countup-33;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-33 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-34::after {
  animation-name: bu-stat-donut-value-countup-34;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-34 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-34::after {
  animation-name: bu-stat-donut-value-countdown-34;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-34 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-34::after {
  animation-name: bu-stat-donut-value-countup-34;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-34 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-35::after {
  animation-name: bu-stat-donut-value-countup-35;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-35 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-35::after {
  animation-name: bu-stat-donut-value-countdown-35;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-35 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-35::after {
  animation-name: bu-stat-donut-value-countup-35;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-35 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-36::after {
  animation-name: bu-stat-donut-value-countup-36;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-36 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-36::after {
  animation-name: bu-stat-donut-value-countdown-36;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-36 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-36::after {
  animation-name: bu-stat-donut-value-countup-36;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-36 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-37::after {
  animation-name: bu-stat-donut-value-countup-37;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-37 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-37::after {
  animation-name: bu-stat-donut-value-countdown-37;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-37 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-37::after {
  animation-name: bu-stat-donut-value-countup-37;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-37 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-38::after {
  animation-name: bu-stat-donut-value-countup-38;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-38 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-38::after {
  animation-name: bu-stat-donut-value-countdown-38;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-38 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-38::after {
  animation-name: bu-stat-donut-value-countup-38;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-38 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-39::after {
  animation-name: bu-stat-donut-value-countup-39;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-39 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-39::after {
  animation-name: bu-stat-donut-value-countdown-39;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-39 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-39::after {
  animation-name: bu-stat-donut-value-countup-39;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-39 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-40::after {
  animation-name: bu-stat-donut-value-countup-40;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-40 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-40::after {
  animation-name: bu-stat-donut-value-countdown-40;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-40 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-40::after {
  animation-name: bu-stat-donut-value-countup-40;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-40 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-41::after {
  animation-name: bu-stat-donut-value-countup-41;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-41 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-41::after {
  animation-name: bu-stat-donut-value-countdown-41;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-41 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-41::after {
  animation-name: bu-stat-donut-value-countup-41;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-41 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-42::after {
  animation-name: bu-stat-donut-value-countup-42;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-42 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-42::after {
  animation-name: bu-stat-donut-value-countdown-42;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-42 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-42::after {
  animation-name: bu-stat-donut-value-countup-42;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-42 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-43::after {
  animation-name: bu-stat-donut-value-countup-43;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-43 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-43::after {
  animation-name: bu-stat-donut-value-countdown-43;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-43 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-43::after {
  animation-name: bu-stat-donut-value-countup-43;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-43 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-44::after {
  animation-name: bu-stat-donut-value-countup-44;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-44 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-44::after {
  animation-name: bu-stat-donut-value-countdown-44;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-44 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-44::after {
  animation-name: bu-stat-donut-value-countup-44;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-44 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-45::after {
  animation-name: bu-stat-donut-value-countup-45;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-45 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-45::after {
  animation-name: bu-stat-donut-value-countdown-45;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-45 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-45::after {
  animation-name: bu-stat-donut-value-countup-45;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-45 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-46::after {
  animation-name: bu-stat-donut-value-countup-46;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-46 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-46::after {
  animation-name: bu-stat-donut-value-countdown-46;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-46 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-46::after {
  animation-name: bu-stat-donut-value-countup-46;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-46 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-47::after {
  animation-name: bu-stat-donut-value-countup-47;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-47 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-47::after {
  animation-name: bu-stat-donut-value-countdown-47;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-47 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-47::after {
  animation-name: bu-stat-donut-value-countup-47;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-47 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-48::after {
  animation-name: bu-stat-donut-value-countup-48;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-48 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-48::after {
  animation-name: bu-stat-donut-value-countdown-48;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-48 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-48::after {
  animation-name: bu-stat-donut-value-countup-48;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-48 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-49::after {
  animation-name: bu-stat-donut-value-countup-49;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-49 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-49::after {
  animation-name: bu-stat-donut-value-countdown-49;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-49 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-49::after {
  animation-name: bu-stat-donut-value-countup-49;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-49 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-50::after {
  animation-name: bu-stat-donut-value-countup-50;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-50 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-50::after {
  animation-name: bu-stat-donut-value-countdown-50;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-50 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-50::after {
  animation-name: bu-stat-donut-value-countup-50;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-50 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-51::after {
  animation-name: bu-stat-donut-value-countup-51;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-51 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-51::after {
  animation-name: bu-stat-donut-value-countdown-51;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-51 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-51::after {
  animation-name: bu-stat-donut-value-countup-51;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-51 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-52::after {
  animation-name: bu-stat-donut-value-countup-52;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-52 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-52::after {
  animation-name: bu-stat-donut-value-countdown-52;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-52 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-52::after {
  animation-name: bu-stat-donut-value-countup-52;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-52 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-53::after {
  animation-name: bu-stat-donut-value-countup-53;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-53 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-53::after {
  animation-name: bu-stat-donut-value-countdown-53;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-53 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-53::after {
  animation-name: bu-stat-donut-value-countup-53;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-53 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-54::after {
  animation-name: bu-stat-donut-value-countup-54;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-54 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-54::after {
  animation-name: bu-stat-donut-value-countdown-54;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-54 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-54::after {
  animation-name: bu-stat-donut-value-countup-54;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-54 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-55::after {
  animation-name: bu-stat-donut-value-countup-55;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-55 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-55::after {
  animation-name: bu-stat-donut-value-countdown-55;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-55 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-55::after {
  animation-name: bu-stat-donut-value-countup-55;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-55 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-56::after {
  animation-name: bu-stat-donut-value-countup-56;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-56 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-56::after {
  animation-name: bu-stat-donut-value-countdown-56;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-56 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-56::after {
  animation-name: bu-stat-donut-value-countup-56;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-56 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-57::after {
  animation-name: bu-stat-donut-value-countup-57;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-57 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-57::after {
  animation-name: bu-stat-donut-value-countdown-57;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-57 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-57::after {
  animation-name: bu-stat-donut-value-countup-57;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-57 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-58::after {
  animation-name: bu-stat-donut-value-countup-58;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-58 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-58::after {
  animation-name: bu-stat-donut-value-countdown-58;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-58 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-58::after {
  animation-name: bu-stat-donut-value-countup-58;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-58 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-59::after {
  animation-name: bu-stat-donut-value-countup-59;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-59 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-59::after {
  animation-name: bu-stat-donut-value-countdown-59;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-59 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-59::after {
  animation-name: bu-stat-donut-value-countup-59;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-59 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-60::after {
  animation-name: bu-stat-donut-value-countup-60;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-60 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-60::after {
  animation-name: bu-stat-donut-value-countdown-60;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-60 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-60::after {
  animation-name: bu-stat-donut-value-countup-60;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-60 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-61::after {
  animation-name: bu-stat-donut-value-countup-61;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-61 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-61::after {
  animation-name: bu-stat-donut-value-countdown-61;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-61 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-61::after {
  animation-name: bu-stat-donut-value-countup-61;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-61 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-62::after {
  animation-name: bu-stat-donut-value-countup-62;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-62 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-62::after {
  animation-name: bu-stat-donut-value-countdown-62;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-62 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-62::after {
  animation-name: bu-stat-donut-value-countup-62;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-62 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-63::after {
  animation-name: bu-stat-donut-value-countup-63;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-63 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-63::after {
  animation-name: bu-stat-donut-value-countdown-63;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-63 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-63::after {
  animation-name: bu-stat-donut-value-countup-63;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-63 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-64::after {
  animation-name: bu-stat-donut-value-countup-64;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-64 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-64::after {
  animation-name: bu-stat-donut-value-countdown-64;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-64 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-64::after {
  animation-name: bu-stat-donut-value-countup-64;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-64 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-65::after {
  animation-name: bu-stat-donut-value-countup-65;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-65 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-65::after {
  animation-name: bu-stat-donut-value-countdown-65;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-65 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-65::after {
  animation-name: bu-stat-donut-value-countup-65;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-65 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-66::after {
  animation-name: bu-stat-donut-value-countup-66;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-66 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-66::after {
  animation-name: bu-stat-donut-value-countdown-66;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-66 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-66::after {
  animation-name: bu-stat-donut-value-countup-66;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-66 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-67::after {
  animation-name: bu-stat-donut-value-countup-67;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-67 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-67::after {
  animation-name: bu-stat-donut-value-countdown-67;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-67 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-67::after {
  animation-name: bu-stat-donut-value-countup-67;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-67 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-68::after {
  animation-name: bu-stat-donut-value-countup-68;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-68 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-68::after {
  animation-name: bu-stat-donut-value-countdown-68;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-68 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-68::after {
  animation-name: bu-stat-donut-value-countup-68;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-68 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-69::after {
  animation-name: bu-stat-donut-value-countup-69;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-69 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-69::after {
  animation-name: bu-stat-donut-value-countdown-69;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-69 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-69::after {
  animation-name: bu-stat-donut-value-countup-69;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-69 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-70::after {
  animation-name: bu-stat-donut-value-countup-70;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-70 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-70::after {
  animation-name: bu-stat-donut-value-countdown-70;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-70 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-70::after {
  animation-name: bu-stat-donut-value-countup-70;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-70 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-71::after {
  animation-name: bu-stat-donut-value-countup-71;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-71 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-71::after {
  animation-name: bu-stat-donut-value-countdown-71;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-71 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-71::after {
  animation-name: bu-stat-donut-value-countup-71;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-71 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-72::after {
  animation-name: bu-stat-donut-value-countup-72;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-72 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-72::after {
  animation-name: bu-stat-donut-value-countdown-72;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-72 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-72::after {
  animation-name: bu-stat-donut-value-countup-72;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-72 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-73::after {
  animation-name: bu-stat-donut-value-countup-73;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-73 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-73::after {
  animation-name: bu-stat-donut-value-countdown-73;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-73 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-73::after {
  animation-name: bu-stat-donut-value-countup-73;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-73 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-74::after {
  animation-name: bu-stat-donut-value-countup-74;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-74 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-74::after {
  animation-name: bu-stat-donut-value-countdown-74;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-74 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-74::after {
  animation-name: bu-stat-donut-value-countup-74;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-74 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-75::after {
  animation-name: bu-stat-donut-value-countup-75;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-75 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-75::after {
  animation-name: bu-stat-donut-value-countdown-75;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-75 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-75::after {
  animation-name: bu-stat-donut-value-countup-75;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-75 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-76::after {
  animation-name: bu-stat-donut-value-countup-76;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-76 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-76::after {
  animation-name: bu-stat-donut-value-countdown-76;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-76 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-76::after {
  animation-name: bu-stat-donut-value-countup-76;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-76 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-77::after {
  animation-name: bu-stat-donut-value-countup-77;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-77 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-77::after {
  animation-name: bu-stat-donut-value-countdown-77;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-77 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-77::after {
  animation-name: bu-stat-donut-value-countup-77;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-77 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-78::after {
  animation-name: bu-stat-donut-value-countup-78;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-78 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-78::after {
  animation-name: bu-stat-donut-value-countdown-78;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-78 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-78::after {
  animation-name: bu-stat-donut-value-countup-78;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-78 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-79::after {
  animation-name: bu-stat-donut-value-countup-79;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-79 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-79::after {
  animation-name: bu-stat-donut-value-countdown-79;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-79 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-79::after {
  animation-name: bu-stat-donut-value-countup-79;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-79 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-80::after {
  animation-name: bu-stat-donut-value-countup-80;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-80 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-80::after {
  animation-name: bu-stat-donut-value-countdown-80;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-80 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-80::after {
  animation-name: bu-stat-donut-value-countup-80;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-80 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-81::after {
  animation-name: bu-stat-donut-value-countup-81;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-81 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-81::after {
  animation-name: bu-stat-donut-value-countdown-81;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-81 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-81::after {
  animation-name: bu-stat-donut-value-countup-81;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-81 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-82::after {
  animation-name: bu-stat-donut-value-countup-82;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-82 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-82::after {
  animation-name: bu-stat-donut-value-countdown-82;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-82 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-82::after {
  animation-name: bu-stat-donut-value-countup-82;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-82 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-83::after {
  animation-name: bu-stat-donut-value-countup-83;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-83 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-83::after {
  animation-name: bu-stat-donut-value-countdown-83;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-83 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-83::after {
  animation-name: bu-stat-donut-value-countup-83;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-83 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-84::after {
  animation-name: bu-stat-donut-value-countup-84;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-84 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-84::after {
  animation-name: bu-stat-donut-value-countdown-84;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-84 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-84::after {
  animation-name: bu-stat-donut-value-countup-84;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-84 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-85::after {
  animation-name: bu-stat-donut-value-countup-85;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-85 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-85::after {
  animation-name: bu-stat-donut-value-countdown-85;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-85 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-85::after {
  animation-name: bu-stat-donut-value-countup-85;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-85 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-86::after {
  animation-name: bu-stat-donut-value-countup-86;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-86 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-86::after {
  animation-name: bu-stat-donut-value-countdown-86;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-86 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-86::after {
  animation-name: bu-stat-donut-value-countup-86;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-86 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-87::after {
  animation-name: bu-stat-donut-value-countup-87;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-87 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-87::after {
  animation-name: bu-stat-donut-value-countdown-87;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-87 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-87::after {
  animation-name: bu-stat-donut-value-countup-87;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-87 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-88::after {
  animation-name: bu-stat-donut-value-countup-88;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-88 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-88::after {
  animation-name: bu-stat-donut-value-countdown-88;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-88 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-88::after {
  animation-name: bu-stat-donut-value-countup-88;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-88 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-89::after {
  animation-name: bu-stat-donut-value-countup-89;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-89 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-89::after {
  animation-name: bu-stat-donut-value-countdown-89;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-89 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-89::after {
  animation-name: bu-stat-donut-value-countup-89;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-89 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-90::after {
  animation-name: bu-stat-donut-value-countup-90;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-90 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-90::after {
  animation-name: bu-stat-donut-value-countdown-90;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-90 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-90::after {
  animation-name: bu-stat-donut-value-countup-90;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-90 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-91::after {
  animation-name: bu-stat-donut-value-countup-91;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-91 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-91::after {
  animation-name: bu-stat-donut-value-countdown-91;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-91 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-91::after {
  animation-name: bu-stat-donut-value-countup-91;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-91 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-92::after {
  animation-name: bu-stat-donut-value-countup-92;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-92 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-92::after {
  animation-name: bu-stat-donut-value-countdown-92;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-92 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-92::after {
  animation-name: bu-stat-donut-value-countup-92;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-92 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-93::after {
  animation-name: bu-stat-donut-value-countup-93;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-93 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-93::after {
  animation-name: bu-stat-donut-value-countdown-93;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-93 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-93::after {
  animation-name: bu-stat-donut-value-countup-93;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-93 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-94::after {
  animation-name: bu-stat-donut-value-countup-94;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-94 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-94::after {
  animation-name: bu-stat-donut-value-countdown-94;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-94 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-94::after {
  animation-name: bu-stat-donut-value-countup-94;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-94 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-95::after {
  animation-name: bu-stat-donut-value-countup-95;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-95 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-95::after {
  animation-name: bu-stat-donut-value-countdown-95;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-95 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-95::after {
  animation-name: bu-stat-donut-value-countup-95;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-95 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-96::after {
  animation-name: bu-stat-donut-value-countup-96;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-96 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-96::after {
  animation-name: bu-stat-donut-value-countdown-96;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-96 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-96::after {
  animation-name: bu-stat-donut-value-countup-96;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-96 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-97::after {
  animation-name: bu-stat-donut-value-countup-97;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-97 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-97::after {
  animation-name: bu-stat-donut-value-countdown-97;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-97 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-97::after {
  animation-name: bu-stat-donut-value-countup-97;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-97 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-98::after {
  animation-name: bu-stat-donut-value-countup-98;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-98 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-98::after {
  animation-name: bu-stat-donut-value-countdown-98;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-98 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-98::after {
  animation-name: bu-stat-donut-value-countup-98;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-98 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-99::after {
  animation-name: bu-stat-donut-value-countup-99;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-99 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-99::after {
  animation-name: bu-stat-donut-value-countdown-99;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-99 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-99::after {
  animation-name: bu-stat-donut-value-countup-99;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-99 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-100::after {
  animation-name: bu-stat-donut-value-countup-100;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-100 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-100::after {
  animation-name: bu-stat-donut-value-countdown-100;
  animation-direction: reverse;
}

.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-100 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countdown-value;
  animation-direction: reverse;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-100::after {
  animation-name: bu-stat-donut-value-countup-100;
  animation-direction: normal;
}

.bu-stat-in-viewport.bu-stat-has-waypoint.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-100 .bu-stat-value-field {
  animation-name: bu-stat-donut-value-countup-value;
  animation-direction: normal;
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-10 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-11 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-12 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-13 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-14 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-15 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-16 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-17 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-18 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-19 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20::after {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-type-animated-percentage .bu-stat-animated-percentage-countup-20 .bu-stat-value-field {
  animation-duration: var(--bu-stat-animation-duration-small-values);
}

.bu-stat-donut {
  width: 11em;
  position: relative;
  z-index: 1;
}

.bu-stat-donut-background {
  stroke: #ddd;
}

.bu-stat-donut-foreground {
  stroke: #aaa;
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-linecap: round;
  animation-direction: reverse;
  animation-duration: var(--bu-stat-animation-duration-large-values);
  animation-fill-mode: both;
}

.bu-stat-has-waypoint .bu-stat-donut-foreground {
  animation-name: bu-stat-donut-foreground-empty;
}

.bu-stat-in-viewport.bu-stat-has-waypoint .bu-stat-donut-foreground {
  animation-name: bu-stat-donut-foreground-fill;
}

.bu-stat-donut-foreground[stroke-dasharray^="0,"] {
  stroke-linecap: unset;
}

@keyframes bu-stat-donut-foreground-fill {
  to {
    stroke-dasharray: 0 100;
  }
}

@keyframes bu-stat-donut-foreground-empty {
  from {
    stroke-dasharray: 0 100;
  }
}

/**
* Animation for the display of the Value field output.
* This temporarily hides the value field output whil the countup
* Animation runs and displays in a psuedo element.
*
*/
@keyframes bu-stat-donut-value-countup-value {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bu-stat-donut-value-countdown-value {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
* Generate Keyframe animations for all 1 to 100 possible values
*
**/
@keyframes bu-stat-donut-value-countup-10 {
  0% {
    content: "0";
  }
  11% {
    content: "1";
  }
  21% {
    content: "2";
  }
  31% {
    content: "3";
  }
  41% {
    content: "4";
  }
  51% {
    content: "5";
  }
  61% {
    content: "6";
  }
  71% {
    content: "7";
  }
  81% {
    content: "8";
  }
  91% {
    content: "9";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-10 {
  0% {
    content: "0";
  }
  11% {
    content: "1";
  }
  21% {
    content: "2";
  }
  31% {
    content: "3";
  }
  41% {
    content: "4";
  }
  51% {
    content: "5";
  }
  61% {
    content: "6";
  }
  71% {
    content: "7";
  }
  81% {
    content: "8";
  }
  91% {
    content: "9";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-11 {
  0% {
    content: "0";
  }
  10.09091% {
    content: "1";
  }
  19.18182% {
    content: "2";
  }
  28.27273% {
    content: "3";
  }
  37.36364% {
    content: "4";
  }
  46.45455% {
    content: "5";
  }
  55.54545% {
    content: "6";
  }
  64.63636% {
    content: "7";
  }
  73.72727% {
    content: "8";
  }
  82.81818% {
    content: "9";
  }
  91.90909% {
    content: "10";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-11 {
  0% {
    content: "0";
  }
  10.09091% {
    content: "1";
  }
  19.18182% {
    content: "2";
  }
  28.27273% {
    content: "3";
  }
  37.36364% {
    content: "4";
  }
  46.45455% {
    content: "5";
  }
  55.54545% {
    content: "6";
  }
  64.63636% {
    content: "7";
  }
  73.72727% {
    content: "8";
  }
  82.81818% {
    content: "9";
  }
  91.90909% {
    content: "10";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-12 {
  0% {
    content: "0";
  }
  9.33333% {
    content: "1";
  }
  17.66667% {
    content: "2";
  }
  26% {
    content: "3";
  }
  34.33333% {
    content: "4";
  }
  42.66667% {
    content: "5";
  }
  51% {
    content: "6";
  }
  59.33333% {
    content: "7";
  }
  67.66667% {
    content: "8";
  }
  76% {
    content: "9";
  }
  84.33333% {
    content: "10";
  }
  92.66667% {
    content: "11";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-12 {
  0% {
    content: "0";
  }
  9.33333% {
    content: "1";
  }
  17.66667% {
    content: "2";
  }
  26% {
    content: "3";
  }
  34.33333% {
    content: "4";
  }
  42.66667% {
    content: "5";
  }
  51% {
    content: "6";
  }
  59.33333% {
    content: "7";
  }
  67.66667% {
    content: "8";
  }
  76% {
    content: "9";
  }
  84.33333% {
    content: "10";
  }
  92.66667% {
    content: "11";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-13 {
  0% {
    content: "0";
  }
  8.69231% {
    content: "1";
  }
  16.38462% {
    content: "2";
  }
  24.07692% {
    content: "3";
  }
  31.76923% {
    content: "4";
  }
  39.46154% {
    content: "5";
  }
  47.15385% {
    content: "6";
  }
  54.84615% {
    content: "7";
  }
  62.53846% {
    content: "8";
  }
  70.23077% {
    content: "9";
  }
  77.92308% {
    content: "10";
  }
  85.61538% {
    content: "11";
  }
  93.30769% {
    content: "12";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-13 {
  0% {
    content: "0";
  }
  8.69231% {
    content: "1";
  }
  16.38462% {
    content: "2";
  }
  24.07692% {
    content: "3";
  }
  31.76923% {
    content: "4";
  }
  39.46154% {
    content: "5";
  }
  47.15385% {
    content: "6";
  }
  54.84615% {
    content: "7";
  }
  62.53846% {
    content: "8";
  }
  70.23077% {
    content: "9";
  }
  77.92308% {
    content: "10";
  }
  85.61538% {
    content: "11";
  }
  93.30769% {
    content: "12";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-14 {
  0% {
    content: "0";
  }
  8.14286% {
    content: "1";
  }
  15.28571% {
    content: "2";
  }
  22.42857% {
    content: "3";
  }
  29.57143% {
    content: "4";
  }
  36.71429% {
    content: "5";
  }
  43.85714% {
    content: "6";
  }
  51% {
    content: "7";
  }
  58.14286% {
    content: "8";
  }
  65.28571% {
    content: "9";
  }
  72.42857% {
    content: "10";
  }
  79.57143% {
    content: "11";
  }
  86.71429% {
    content: "12";
  }
  93.85714% {
    content: "13";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-14 {
  0% {
    content: "0";
  }
  8.14286% {
    content: "1";
  }
  15.28571% {
    content: "2";
  }
  22.42857% {
    content: "3";
  }
  29.57143% {
    content: "4";
  }
  36.71429% {
    content: "5";
  }
  43.85714% {
    content: "6";
  }
  51% {
    content: "7";
  }
  58.14286% {
    content: "8";
  }
  65.28571% {
    content: "9";
  }
  72.42857% {
    content: "10";
  }
  79.57143% {
    content: "11";
  }
  86.71429% {
    content: "12";
  }
  93.85714% {
    content: "13";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-15 {
  0% {
    content: "0";
  }
  7.66667% {
    content: "1";
  }
  14.33333% {
    content: "2";
  }
  21% {
    content: "3";
  }
  27.66667% {
    content: "4";
  }
  34.33333% {
    content: "5";
  }
  41% {
    content: "6";
  }
  47.66667% {
    content: "7";
  }
  54.33333% {
    content: "8";
  }
  61% {
    content: "9";
  }
  67.66667% {
    content: "10";
  }
  74.33333% {
    content: "11";
  }
  81% {
    content: "12";
  }
  87.66667% {
    content: "13";
  }
  94.33333% {
    content: "14";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-15 {
  0% {
    content: "0";
  }
  7.66667% {
    content: "1";
  }
  14.33333% {
    content: "2";
  }
  21% {
    content: "3";
  }
  27.66667% {
    content: "4";
  }
  34.33333% {
    content: "5";
  }
  41% {
    content: "6";
  }
  47.66667% {
    content: "7";
  }
  54.33333% {
    content: "8";
  }
  61% {
    content: "9";
  }
  67.66667% {
    content: "10";
  }
  74.33333% {
    content: "11";
  }
  81% {
    content: "12";
  }
  87.66667% {
    content: "13";
  }
  94.33333% {
    content: "14";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-16 {
  0% {
    content: "0";
  }
  7.25% {
    content: "1";
  }
  13.5% {
    content: "2";
  }
  19.75% {
    content: "3";
  }
  26% {
    content: "4";
  }
  32.25% {
    content: "5";
  }
  38.5% {
    content: "6";
  }
  44.75% {
    content: "7";
  }
  51% {
    content: "8";
  }
  57.25% {
    content: "9";
  }
  63.5% {
    content: "10";
  }
  69.75% {
    content: "11";
  }
  76% {
    content: "12";
  }
  82.25% {
    content: "13";
  }
  88.5% {
    content: "14";
  }
  94.75% {
    content: "15";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-16 {
  0% {
    content: "0";
  }
  7.25% {
    content: "1";
  }
  13.5% {
    content: "2";
  }
  19.75% {
    content: "3";
  }
  26% {
    content: "4";
  }
  32.25% {
    content: "5";
  }
  38.5% {
    content: "6";
  }
  44.75% {
    content: "7";
  }
  51% {
    content: "8";
  }
  57.25% {
    content: "9";
  }
  63.5% {
    content: "10";
  }
  69.75% {
    content: "11";
  }
  76% {
    content: "12";
  }
  82.25% {
    content: "13";
  }
  88.5% {
    content: "14";
  }
  94.75% {
    content: "15";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-17 {
  0% {
    content: "0";
  }
  6.88235% {
    content: "1";
  }
  12.76471% {
    content: "2";
  }
  18.64706% {
    content: "3";
  }
  24.52941% {
    content: "4";
  }
  30.41176% {
    content: "5";
  }
  36.29412% {
    content: "6";
  }
  42.17647% {
    content: "7";
  }
  48.05882% {
    content: "8";
  }
  53.94118% {
    content: "9";
  }
  59.82353% {
    content: "10";
  }
  65.70588% {
    content: "11";
  }
  71.58824% {
    content: "12";
  }
  77.47059% {
    content: "13";
  }
  83.35294% {
    content: "14";
  }
  89.23529% {
    content: "15";
  }
  95.11765% {
    content: "16";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-17 {
  0% {
    content: "0";
  }
  6.88235% {
    content: "1";
  }
  12.76471% {
    content: "2";
  }
  18.64706% {
    content: "3";
  }
  24.52941% {
    content: "4";
  }
  30.41176% {
    content: "5";
  }
  36.29412% {
    content: "6";
  }
  42.17647% {
    content: "7";
  }
  48.05882% {
    content: "8";
  }
  53.94118% {
    content: "9";
  }
  59.82353% {
    content: "10";
  }
  65.70588% {
    content: "11";
  }
  71.58824% {
    content: "12";
  }
  77.47059% {
    content: "13";
  }
  83.35294% {
    content: "14";
  }
  89.23529% {
    content: "15";
  }
  95.11765% {
    content: "16";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-18 {
  0% {
    content: "0";
  }
  6.55556% {
    content: "1";
  }
  12.11111% {
    content: "2";
  }
  17.66667% {
    content: "3";
  }
  23.22222% {
    content: "4";
  }
  28.77778% {
    content: "5";
  }
  34.33333% {
    content: "6";
  }
  39.88889% {
    content: "7";
  }
  45.44444% {
    content: "8";
  }
  51% {
    content: "9";
  }
  56.55556% {
    content: "10";
  }
  62.11111% {
    content: "11";
  }
  67.66667% {
    content: "12";
  }
  73.22222% {
    content: "13";
  }
  78.77778% {
    content: "14";
  }
  84.33333% {
    content: "15";
  }
  89.88889% {
    content: "16";
  }
  95.44444% {
    content: "17";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-18 {
  0% {
    content: "0";
  }
  6.55556% {
    content: "1";
  }
  12.11111% {
    content: "2";
  }
  17.66667% {
    content: "3";
  }
  23.22222% {
    content: "4";
  }
  28.77778% {
    content: "5";
  }
  34.33333% {
    content: "6";
  }
  39.88889% {
    content: "7";
  }
  45.44444% {
    content: "8";
  }
  51% {
    content: "9";
  }
  56.55556% {
    content: "10";
  }
  62.11111% {
    content: "11";
  }
  67.66667% {
    content: "12";
  }
  73.22222% {
    content: "13";
  }
  78.77778% {
    content: "14";
  }
  84.33333% {
    content: "15";
  }
  89.88889% {
    content: "16";
  }
  95.44444% {
    content: "17";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-19 {
  0% {
    content: "0";
  }
  6.26316% {
    content: "1";
  }
  11.52632% {
    content: "2";
  }
  16.78947% {
    content: "3";
  }
  22.05263% {
    content: "4";
  }
  27.31579% {
    content: "5";
  }
  32.57895% {
    content: "6";
  }
  37.84211% {
    content: "7";
  }
  43.10526% {
    content: "8";
  }
  48.36842% {
    content: "9";
  }
  53.63158% {
    content: "10";
  }
  58.89474% {
    content: "11";
  }
  64.15789% {
    content: "12";
  }
  69.42105% {
    content: "13";
  }
  74.68421% {
    content: "14";
  }
  79.94737% {
    content: "15";
  }
  85.21053% {
    content: "16";
  }
  90.47368% {
    content: "17";
  }
  95.73684% {
    content: "18";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-19 {
  0% {
    content: "0";
  }
  6.26316% {
    content: "1";
  }
  11.52632% {
    content: "2";
  }
  16.78947% {
    content: "3";
  }
  22.05263% {
    content: "4";
  }
  27.31579% {
    content: "5";
  }
  32.57895% {
    content: "6";
  }
  37.84211% {
    content: "7";
  }
  43.10526% {
    content: "8";
  }
  48.36842% {
    content: "9";
  }
  53.63158% {
    content: "10";
  }
  58.89474% {
    content: "11";
  }
  64.15789% {
    content: "12";
  }
  69.42105% {
    content: "13";
  }
  74.68421% {
    content: "14";
  }
  79.94737% {
    content: "15";
  }
  85.21053% {
    content: "16";
  }
  90.47368% {
    content: "17";
  }
  95.73684% {
    content: "18";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-20 {
  0% {
    content: "0";
  }
  6% {
    content: "1";
  }
  11% {
    content: "2";
  }
  16% {
    content: "3";
  }
  21% {
    content: "4";
  }
  26% {
    content: "5";
  }
  31% {
    content: "6";
  }
  36% {
    content: "7";
  }
  41% {
    content: "8";
  }
  46% {
    content: "9";
  }
  51% {
    content: "10";
  }
  56% {
    content: "11";
  }
  61% {
    content: "12";
  }
  66% {
    content: "13";
  }
  71% {
    content: "14";
  }
  76% {
    content: "15";
  }
  81% {
    content: "16";
  }
  86% {
    content: "17";
  }
  91% {
    content: "18";
  }
  96% {
    content: "19";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-20 {
  0% {
    content: "0";
  }
  6% {
    content: "1";
  }
  11% {
    content: "2";
  }
  16% {
    content: "3";
  }
  21% {
    content: "4";
  }
  26% {
    content: "5";
  }
  31% {
    content: "6";
  }
  36% {
    content: "7";
  }
  41% {
    content: "8";
  }
  46% {
    content: "9";
  }
  51% {
    content: "10";
  }
  56% {
    content: "11";
  }
  61% {
    content: "12";
  }
  66% {
    content: "13";
  }
  71% {
    content: "14";
  }
  76% {
    content: "15";
  }
  81% {
    content: "16";
  }
  86% {
    content: "17";
  }
  91% {
    content: "18";
  }
  96% {
    content: "19";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-21 {
  0% {
    content: "0";
  }
  5.7619% {
    content: "1";
  }
  10.52381% {
    content: "2";
  }
  15.28571% {
    content: "3";
  }
  20.04762% {
    content: "4";
  }
  24.80952% {
    content: "5";
  }
  29.57143% {
    content: "6";
  }
  34.33333% {
    content: "7";
  }
  39.09524% {
    content: "8";
  }
  43.85714% {
    content: "9";
  }
  48.61905% {
    content: "10";
  }
  53.38095% {
    content: "11";
  }
  58.14286% {
    content: "12";
  }
  62.90476% {
    content: "13";
  }
  67.66667% {
    content: "14";
  }
  72.42857% {
    content: "15";
  }
  77.19048% {
    content: "16";
  }
  81.95238% {
    content: "17";
  }
  86.71429% {
    content: "18";
  }
  91.47619% {
    content: "19";
  }
  96.2381% {
    content: "20";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-21 {
  0% {
    content: "0";
  }
  5.7619% {
    content: "1";
  }
  10.52381% {
    content: "2";
  }
  15.28571% {
    content: "3";
  }
  20.04762% {
    content: "4";
  }
  24.80952% {
    content: "5";
  }
  29.57143% {
    content: "6";
  }
  34.33333% {
    content: "7";
  }
  39.09524% {
    content: "8";
  }
  43.85714% {
    content: "9";
  }
  48.61905% {
    content: "10";
  }
  53.38095% {
    content: "11";
  }
  58.14286% {
    content: "12";
  }
  62.90476% {
    content: "13";
  }
  67.66667% {
    content: "14";
  }
  72.42857% {
    content: "15";
  }
  77.19048% {
    content: "16";
  }
  81.95238% {
    content: "17";
  }
  86.71429% {
    content: "18";
  }
  91.47619% {
    content: "19";
  }
  96.2381% {
    content: "20";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-22 {
  0% {
    content: "0";
  }
  5.54545% {
    content: "1";
  }
  10.09091% {
    content: "2";
  }
  14.63636% {
    content: "3";
  }
  19.18182% {
    content: "4";
  }
  23.72727% {
    content: "5";
  }
  28.27273% {
    content: "6";
  }
  32.81818% {
    content: "7";
  }
  37.36364% {
    content: "8";
  }
  41.90909% {
    content: "9";
  }
  46.45455% {
    content: "10";
  }
  51% {
    content: "11";
  }
  55.54545% {
    content: "12";
  }
  60.09091% {
    content: "13";
  }
  64.63636% {
    content: "14";
  }
  69.18182% {
    content: "15";
  }
  73.72727% {
    content: "16";
  }
  78.27273% {
    content: "17";
  }
  82.81818% {
    content: "18";
  }
  87.36364% {
    content: "19";
  }
  91.90909% {
    content: "20";
  }
  96.45455% {
    content: "21";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-22 {
  0% {
    content: "0";
  }
  5.54545% {
    content: "1";
  }
  10.09091% {
    content: "2";
  }
  14.63636% {
    content: "3";
  }
  19.18182% {
    content: "4";
  }
  23.72727% {
    content: "5";
  }
  28.27273% {
    content: "6";
  }
  32.81818% {
    content: "7";
  }
  37.36364% {
    content: "8";
  }
  41.90909% {
    content: "9";
  }
  46.45455% {
    content: "10";
  }
  51% {
    content: "11";
  }
  55.54545% {
    content: "12";
  }
  60.09091% {
    content: "13";
  }
  64.63636% {
    content: "14";
  }
  69.18182% {
    content: "15";
  }
  73.72727% {
    content: "16";
  }
  78.27273% {
    content: "17";
  }
  82.81818% {
    content: "18";
  }
  87.36364% {
    content: "19";
  }
  91.90909% {
    content: "20";
  }
  96.45455% {
    content: "21";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-23 {
  0% {
    content: "0";
  }
  5.34783% {
    content: "1";
  }
  9.69565% {
    content: "2";
  }
  14.04348% {
    content: "3";
  }
  18.3913% {
    content: "4";
  }
  22.73913% {
    content: "5";
  }
  27.08696% {
    content: "6";
  }
  31.43478% {
    content: "7";
  }
  35.78261% {
    content: "8";
  }
  40.13043% {
    content: "9";
  }
  44.47826% {
    content: "10";
  }
  48.82609% {
    content: "11";
  }
  53.17391% {
    content: "12";
  }
  57.52174% {
    content: "13";
  }
  61.86957% {
    content: "14";
  }
  66.21739% {
    content: "15";
  }
  70.56522% {
    content: "16";
  }
  74.91304% {
    content: "17";
  }
  79.26087% {
    content: "18";
  }
  83.6087% {
    content: "19";
  }
  87.95652% {
    content: "20";
  }
  92.30435% {
    content: "21";
  }
  96.65217% {
    content: "22";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-23 {
  0% {
    content: "0";
  }
  5.34783% {
    content: "1";
  }
  9.69565% {
    content: "2";
  }
  14.04348% {
    content: "3";
  }
  18.3913% {
    content: "4";
  }
  22.73913% {
    content: "5";
  }
  27.08696% {
    content: "6";
  }
  31.43478% {
    content: "7";
  }
  35.78261% {
    content: "8";
  }
  40.13043% {
    content: "9";
  }
  44.47826% {
    content: "10";
  }
  48.82609% {
    content: "11";
  }
  53.17391% {
    content: "12";
  }
  57.52174% {
    content: "13";
  }
  61.86957% {
    content: "14";
  }
  66.21739% {
    content: "15";
  }
  70.56522% {
    content: "16";
  }
  74.91304% {
    content: "17";
  }
  79.26087% {
    content: "18";
  }
  83.6087% {
    content: "19";
  }
  87.95652% {
    content: "20";
  }
  92.30435% {
    content: "21";
  }
  96.65217% {
    content: "22";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-24 {
  0% {
    content: "0";
  }
  5.16667% {
    content: "1";
  }
  9.33333% {
    content: "2";
  }
  13.5% {
    content: "3";
  }
  17.66667% {
    content: "4";
  }
  21.83333% {
    content: "5";
  }
  26% {
    content: "6";
  }
  30.16667% {
    content: "7";
  }
  34.33333% {
    content: "8";
  }
  38.5% {
    content: "9";
  }
  42.66667% {
    content: "10";
  }
  46.83333% {
    content: "11";
  }
  51% {
    content: "12";
  }
  55.16667% {
    content: "13";
  }
  59.33333% {
    content: "14";
  }
  63.5% {
    content: "15";
  }
  67.66667% {
    content: "16";
  }
  71.83333% {
    content: "17";
  }
  76% {
    content: "18";
  }
  80.16667% {
    content: "19";
  }
  84.33333% {
    content: "20";
  }
  88.5% {
    content: "21";
  }
  92.66667% {
    content: "22";
  }
  96.83333% {
    content: "23";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-24 {
  0% {
    content: "0";
  }
  5.16667% {
    content: "1";
  }
  9.33333% {
    content: "2";
  }
  13.5% {
    content: "3";
  }
  17.66667% {
    content: "4";
  }
  21.83333% {
    content: "5";
  }
  26% {
    content: "6";
  }
  30.16667% {
    content: "7";
  }
  34.33333% {
    content: "8";
  }
  38.5% {
    content: "9";
  }
  42.66667% {
    content: "10";
  }
  46.83333% {
    content: "11";
  }
  51% {
    content: "12";
  }
  55.16667% {
    content: "13";
  }
  59.33333% {
    content: "14";
  }
  63.5% {
    content: "15";
  }
  67.66667% {
    content: "16";
  }
  71.83333% {
    content: "17";
  }
  76% {
    content: "18";
  }
  80.16667% {
    content: "19";
  }
  84.33333% {
    content: "20";
  }
  88.5% {
    content: "21";
  }
  92.66667% {
    content: "22";
  }
  96.83333% {
    content: "23";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-25 {
  0% {
    content: "0";
  }
  5% {
    content: "1";
  }
  9% {
    content: "2";
  }
  13% {
    content: "3";
  }
  17% {
    content: "4";
  }
  21% {
    content: "5";
  }
  25% {
    content: "6";
  }
  29% {
    content: "7";
  }
  33% {
    content: "8";
  }
  37% {
    content: "9";
  }
  41% {
    content: "10";
  }
  45% {
    content: "11";
  }
  49% {
    content: "12";
  }
  53% {
    content: "13";
  }
  57% {
    content: "14";
  }
  61% {
    content: "15";
  }
  65% {
    content: "16";
  }
  69% {
    content: "17";
  }
  73% {
    content: "18";
  }
  77% {
    content: "19";
  }
  81% {
    content: "20";
  }
  85% {
    content: "21";
  }
  89% {
    content: "22";
  }
  93% {
    content: "23";
  }
  97% {
    content: "24";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-25 {
  0% {
    content: "0";
  }
  5% {
    content: "1";
  }
  9% {
    content: "2";
  }
  13% {
    content: "3";
  }
  17% {
    content: "4";
  }
  21% {
    content: "5";
  }
  25% {
    content: "6";
  }
  29% {
    content: "7";
  }
  33% {
    content: "8";
  }
  37% {
    content: "9";
  }
  41% {
    content: "10";
  }
  45% {
    content: "11";
  }
  49% {
    content: "12";
  }
  53% {
    content: "13";
  }
  57% {
    content: "14";
  }
  61% {
    content: "15";
  }
  65% {
    content: "16";
  }
  69% {
    content: "17";
  }
  73% {
    content: "18";
  }
  77% {
    content: "19";
  }
  81% {
    content: "20";
  }
  85% {
    content: "21";
  }
  89% {
    content: "22";
  }
  93% {
    content: "23";
  }
  97% {
    content: "24";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-26 {
  0% {
    content: "0";
  }
  4.84615% {
    content: "1";
  }
  8.69231% {
    content: "2";
  }
  12.53846% {
    content: "3";
  }
  16.38462% {
    content: "4";
  }
  20.23077% {
    content: "5";
  }
  24.07692% {
    content: "6";
  }
  27.92308% {
    content: "7";
  }
  31.76923% {
    content: "8";
  }
  35.61538% {
    content: "9";
  }
  39.46154% {
    content: "10";
  }
  43.30769% {
    content: "11";
  }
  47.15385% {
    content: "12";
  }
  51% {
    content: "13";
  }
  54.84615% {
    content: "14";
  }
  58.69231% {
    content: "15";
  }
  62.53846% {
    content: "16";
  }
  66.38462% {
    content: "17";
  }
  70.23077% {
    content: "18";
  }
  74.07692% {
    content: "19";
  }
  77.92308% {
    content: "20";
  }
  81.76923% {
    content: "21";
  }
  85.61538% {
    content: "22";
  }
  89.46154% {
    content: "23";
  }
  93.30769% {
    content: "24";
  }
  97.15385% {
    content: "25";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-26 {
  0% {
    content: "0";
  }
  4.84615% {
    content: "1";
  }
  8.69231% {
    content: "2";
  }
  12.53846% {
    content: "3";
  }
  16.38462% {
    content: "4";
  }
  20.23077% {
    content: "5";
  }
  24.07692% {
    content: "6";
  }
  27.92308% {
    content: "7";
  }
  31.76923% {
    content: "8";
  }
  35.61538% {
    content: "9";
  }
  39.46154% {
    content: "10";
  }
  43.30769% {
    content: "11";
  }
  47.15385% {
    content: "12";
  }
  51% {
    content: "13";
  }
  54.84615% {
    content: "14";
  }
  58.69231% {
    content: "15";
  }
  62.53846% {
    content: "16";
  }
  66.38462% {
    content: "17";
  }
  70.23077% {
    content: "18";
  }
  74.07692% {
    content: "19";
  }
  77.92308% {
    content: "20";
  }
  81.76923% {
    content: "21";
  }
  85.61538% {
    content: "22";
  }
  89.46154% {
    content: "23";
  }
  93.30769% {
    content: "24";
  }
  97.15385% {
    content: "25";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-27 {
  0% {
    content: "0";
  }
  4.7037% {
    content: "1";
  }
  8.40741% {
    content: "2";
  }
  12.11111% {
    content: "3";
  }
  15.81481% {
    content: "4";
  }
  19.51852% {
    content: "5";
  }
  23.22222% {
    content: "6";
  }
  26.92593% {
    content: "7";
  }
  30.62963% {
    content: "8";
  }
  34.33333% {
    content: "9";
  }
  38.03704% {
    content: "10";
  }
  41.74074% {
    content: "11";
  }
  45.44444% {
    content: "12";
  }
  49.14815% {
    content: "13";
  }
  52.85185% {
    content: "14";
  }
  56.55556% {
    content: "15";
  }
  60.25926% {
    content: "16";
  }
  63.96296% {
    content: "17";
  }
  67.66667% {
    content: "18";
  }
  71.37037% {
    content: "19";
  }
  75.07407% {
    content: "20";
  }
  78.77778% {
    content: "21";
  }
  82.48148% {
    content: "22";
  }
  86.18519% {
    content: "23";
  }
  89.88889% {
    content: "24";
  }
  93.59259% {
    content: "25";
  }
  97.2963% {
    content: "26";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-27 {
  0% {
    content: "0";
  }
  4.7037% {
    content: "1";
  }
  8.40741% {
    content: "2";
  }
  12.11111% {
    content: "3";
  }
  15.81481% {
    content: "4";
  }
  19.51852% {
    content: "5";
  }
  23.22222% {
    content: "6";
  }
  26.92593% {
    content: "7";
  }
  30.62963% {
    content: "8";
  }
  34.33333% {
    content: "9";
  }
  38.03704% {
    content: "10";
  }
  41.74074% {
    content: "11";
  }
  45.44444% {
    content: "12";
  }
  49.14815% {
    content: "13";
  }
  52.85185% {
    content: "14";
  }
  56.55556% {
    content: "15";
  }
  60.25926% {
    content: "16";
  }
  63.96296% {
    content: "17";
  }
  67.66667% {
    content: "18";
  }
  71.37037% {
    content: "19";
  }
  75.07407% {
    content: "20";
  }
  78.77778% {
    content: "21";
  }
  82.48148% {
    content: "22";
  }
  86.18519% {
    content: "23";
  }
  89.88889% {
    content: "24";
  }
  93.59259% {
    content: "25";
  }
  97.2963% {
    content: "26";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-28 {
  0% {
    content: "0";
  }
  4.57143% {
    content: "1";
  }
  8.14286% {
    content: "2";
  }
  11.71429% {
    content: "3";
  }
  15.28571% {
    content: "4";
  }
  18.85714% {
    content: "5";
  }
  22.42857% {
    content: "6";
  }
  26% {
    content: "7";
  }
  29.57143% {
    content: "8";
  }
  33.14286% {
    content: "9";
  }
  36.71429% {
    content: "10";
  }
  40.28571% {
    content: "11";
  }
  43.85714% {
    content: "12";
  }
  47.42857% {
    content: "13";
  }
  51% {
    content: "14";
  }
  54.57143% {
    content: "15";
  }
  58.14286% {
    content: "16";
  }
  61.71429% {
    content: "17";
  }
  65.28571% {
    content: "18";
  }
  68.85714% {
    content: "19";
  }
  72.42857% {
    content: "20";
  }
  76% {
    content: "21";
  }
  79.57143% {
    content: "22";
  }
  83.14286% {
    content: "23";
  }
  86.71429% {
    content: "24";
  }
  90.28571% {
    content: "25";
  }
  93.85714% {
    content: "26";
  }
  97.42857% {
    content: "27";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-28 {
  0% {
    content: "0";
  }
  4.57143% {
    content: "1";
  }
  8.14286% {
    content: "2";
  }
  11.71429% {
    content: "3";
  }
  15.28571% {
    content: "4";
  }
  18.85714% {
    content: "5";
  }
  22.42857% {
    content: "6";
  }
  26% {
    content: "7";
  }
  29.57143% {
    content: "8";
  }
  33.14286% {
    content: "9";
  }
  36.71429% {
    content: "10";
  }
  40.28571% {
    content: "11";
  }
  43.85714% {
    content: "12";
  }
  47.42857% {
    content: "13";
  }
  51% {
    content: "14";
  }
  54.57143% {
    content: "15";
  }
  58.14286% {
    content: "16";
  }
  61.71429% {
    content: "17";
  }
  65.28571% {
    content: "18";
  }
  68.85714% {
    content: "19";
  }
  72.42857% {
    content: "20";
  }
  76% {
    content: "21";
  }
  79.57143% {
    content: "22";
  }
  83.14286% {
    content: "23";
  }
  86.71429% {
    content: "24";
  }
  90.28571% {
    content: "25";
  }
  93.85714% {
    content: "26";
  }
  97.42857% {
    content: "27";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-29 {
  0% {
    content: "0";
  }
  4.44828% {
    content: "1";
  }
  7.89655% {
    content: "2";
  }
  11.34483% {
    content: "3";
  }
  14.7931% {
    content: "4";
  }
  18.24138% {
    content: "5";
  }
  21.68966% {
    content: "6";
  }
  25.13793% {
    content: "7";
  }
  28.58621% {
    content: "8";
  }
  32.03448% {
    content: "9";
  }
  35.48276% {
    content: "10";
  }
  38.93103% {
    content: "11";
  }
  42.37931% {
    content: "12";
  }
  45.82759% {
    content: "13";
  }
  49.27586% {
    content: "14";
  }
  52.72414% {
    content: "15";
  }
  56.17241% {
    content: "16";
  }
  59.62069% {
    content: "17";
  }
  63.06897% {
    content: "18";
  }
  66.51724% {
    content: "19";
  }
  69.96552% {
    content: "20";
  }
  73.41379% {
    content: "21";
  }
  76.86207% {
    content: "22";
  }
  80.31034% {
    content: "23";
  }
  83.75862% {
    content: "24";
  }
  87.2069% {
    content: "25";
  }
  90.65517% {
    content: "26";
  }
  94.10345% {
    content: "27";
  }
  97.55172% {
    content: "28";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-29 {
  0% {
    content: "0";
  }
  4.44828% {
    content: "1";
  }
  7.89655% {
    content: "2";
  }
  11.34483% {
    content: "3";
  }
  14.7931% {
    content: "4";
  }
  18.24138% {
    content: "5";
  }
  21.68966% {
    content: "6";
  }
  25.13793% {
    content: "7";
  }
  28.58621% {
    content: "8";
  }
  32.03448% {
    content: "9";
  }
  35.48276% {
    content: "10";
  }
  38.93103% {
    content: "11";
  }
  42.37931% {
    content: "12";
  }
  45.82759% {
    content: "13";
  }
  49.27586% {
    content: "14";
  }
  52.72414% {
    content: "15";
  }
  56.17241% {
    content: "16";
  }
  59.62069% {
    content: "17";
  }
  63.06897% {
    content: "18";
  }
  66.51724% {
    content: "19";
  }
  69.96552% {
    content: "20";
  }
  73.41379% {
    content: "21";
  }
  76.86207% {
    content: "22";
  }
  80.31034% {
    content: "23";
  }
  83.75862% {
    content: "24";
  }
  87.2069% {
    content: "25";
  }
  90.65517% {
    content: "26";
  }
  94.10345% {
    content: "27";
  }
  97.55172% {
    content: "28";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-30 {
  0% {
    content: "0";
  }
  4.33333% {
    content: "1";
  }
  7.66667% {
    content: "2";
  }
  11% {
    content: "3";
  }
  14.33333% {
    content: "4";
  }
  17.66667% {
    content: "5";
  }
  21% {
    content: "6";
  }
  24.33333% {
    content: "7";
  }
  27.66667% {
    content: "8";
  }
  31% {
    content: "9";
  }
  34.33333% {
    content: "10";
  }
  37.66667% {
    content: "11";
  }
  41% {
    content: "12";
  }
  44.33333% {
    content: "13";
  }
  47.66667% {
    content: "14";
  }
  51% {
    content: "15";
  }
  54.33333% {
    content: "16";
  }
  57.66667% {
    content: "17";
  }
  61% {
    content: "18";
  }
  64.33333% {
    content: "19";
  }
  67.66667% {
    content: "20";
  }
  71% {
    content: "21";
  }
  74.33333% {
    content: "22";
  }
  77.66667% {
    content: "23";
  }
  81% {
    content: "24";
  }
  84.33333% {
    content: "25";
  }
  87.66667% {
    content: "26";
  }
  91% {
    content: "27";
  }
  94.33333% {
    content: "28";
  }
  97.66667% {
    content: "29";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-30 {
  0% {
    content: "0";
  }
  4.33333% {
    content: "1";
  }
  7.66667% {
    content: "2";
  }
  11% {
    content: "3";
  }
  14.33333% {
    content: "4";
  }
  17.66667% {
    content: "5";
  }
  21% {
    content: "6";
  }
  24.33333% {
    content: "7";
  }
  27.66667% {
    content: "8";
  }
  31% {
    content: "9";
  }
  34.33333% {
    content: "10";
  }
  37.66667% {
    content: "11";
  }
  41% {
    content: "12";
  }
  44.33333% {
    content: "13";
  }
  47.66667% {
    content: "14";
  }
  51% {
    content: "15";
  }
  54.33333% {
    content: "16";
  }
  57.66667% {
    content: "17";
  }
  61% {
    content: "18";
  }
  64.33333% {
    content: "19";
  }
  67.66667% {
    content: "20";
  }
  71% {
    content: "21";
  }
  74.33333% {
    content: "22";
  }
  77.66667% {
    content: "23";
  }
  81% {
    content: "24";
  }
  84.33333% {
    content: "25";
  }
  87.66667% {
    content: "26";
  }
  91% {
    content: "27";
  }
  94.33333% {
    content: "28";
  }
  97.66667% {
    content: "29";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-31 {
  0% {
    content: "0";
  }
  4.22581% {
    content: "1";
  }
  7.45161% {
    content: "2";
  }
  10.67742% {
    content: "3";
  }
  13.90323% {
    content: "4";
  }
  17.12903% {
    content: "5";
  }
  20.35484% {
    content: "6";
  }
  23.58065% {
    content: "7";
  }
  26.80645% {
    content: "8";
  }
  30.03226% {
    content: "9";
  }
  33.25806% {
    content: "10";
  }
  36.48387% {
    content: "11";
  }
  39.70968% {
    content: "12";
  }
  42.93548% {
    content: "13";
  }
  46.16129% {
    content: "14";
  }
  49.3871% {
    content: "15";
  }
  52.6129% {
    content: "16";
  }
  55.83871% {
    content: "17";
  }
  59.06452% {
    content: "18";
  }
  62.29032% {
    content: "19";
  }
  65.51613% {
    content: "20";
  }
  68.74194% {
    content: "21";
  }
  71.96774% {
    content: "22";
  }
  75.19355% {
    content: "23";
  }
  78.41935% {
    content: "24";
  }
  81.64516% {
    content: "25";
  }
  84.87097% {
    content: "26";
  }
  88.09677% {
    content: "27";
  }
  91.32258% {
    content: "28";
  }
  94.54839% {
    content: "29";
  }
  97.77419% {
    content: "30";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-31 {
  0% {
    content: "0";
  }
  4.22581% {
    content: "1";
  }
  7.45161% {
    content: "2";
  }
  10.67742% {
    content: "3";
  }
  13.90323% {
    content: "4";
  }
  17.12903% {
    content: "5";
  }
  20.35484% {
    content: "6";
  }
  23.58065% {
    content: "7";
  }
  26.80645% {
    content: "8";
  }
  30.03226% {
    content: "9";
  }
  33.25806% {
    content: "10";
  }
  36.48387% {
    content: "11";
  }
  39.70968% {
    content: "12";
  }
  42.93548% {
    content: "13";
  }
  46.16129% {
    content: "14";
  }
  49.3871% {
    content: "15";
  }
  52.6129% {
    content: "16";
  }
  55.83871% {
    content: "17";
  }
  59.06452% {
    content: "18";
  }
  62.29032% {
    content: "19";
  }
  65.51613% {
    content: "20";
  }
  68.74194% {
    content: "21";
  }
  71.96774% {
    content: "22";
  }
  75.19355% {
    content: "23";
  }
  78.41935% {
    content: "24";
  }
  81.64516% {
    content: "25";
  }
  84.87097% {
    content: "26";
  }
  88.09677% {
    content: "27";
  }
  91.32258% {
    content: "28";
  }
  94.54839% {
    content: "29";
  }
  97.77419% {
    content: "30";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-32 {
  0% {
    content: "0";
  }
  4.125% {
    content: "1";
  }
  7.25% {
    content: "2";
  }
  10.375% {
    content: "3";
  }
  13.5% {
    content: "4";
  }
  16.625% {
    content: "5";
  }
  19.75% {
    content: "6";
  }
  22.875% {
    content: "7";
  }
  26% {
    content: "8";
  }
  29.125% {
    content: "9";
  }
  32.25% {
    content: "10";
  }
  35.375% {
    content: "11";
  }
  38.5% {
    content: "12";
  }
  41.625% {
    content: "13";
  }
  44.75% {
    content: "14";
  }
  47.875% {
    content: "15";
  }
  51% {
    content: "16";
  }
  54.125% {
    content: "17";
  }
  57.25% {
    content: "18";
  }
  60.375% {
    content: "19";
  }
  63.5% {
    content: "20";
  }
  66.625% {
    content: "21";
  }
  69.75% {
    content: "22";
  }
  72.875% {
    content: "23";
  }
  76% {
    content: "24";
  }
  79.125% {
    content: "25";
  }
  82.25% {
    content: "26";
  }
  85.375% {
    content: "27";
  }
  88.5% {
    content: "28";
  }
  91.625% {
    content: "29";
  }
  94.75% {
    content: "30";
  }
  97.875% {
    content: "31";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-32 {
  0% {
    content: "0";
  }
  4.125% {
    content: "1";
  }
  7.25% {
    content: "2";
  }
  10.375% {
    content: "3";
  }
  13.5% {
    content: "4";
  }
  16.625% {
    content: "5";
  }
  19.75% {
    content: "6";
  }
  22.875% {
    content: "7";
  }
  26% {
    content: "8";
  }
  29.125% {
    content: "9";
  }
  32.25% {
    content: "10";
  }
  35.375% {
    content: "11";
  }
  38.5% {
    content: "12";
  }
  41.625% {
    content: "13";
  }
  44.75% {
    content: "14";
  }
  47.875% {
    content: "15";
  }
  51% {
    content: "16";
  }
  54.125% {
    content: "17";
  }
  57.25% {
    content: "18";
  }
  60.375% {
    content: "19";
  }
  63.5% {
    content: "20";
  }
  66.625% {
    content: "21";
  }
  69.75% {
    content: "22";
  }
  72.875% {
    content: "23";
  }
  76% {
    content: "24";
  }
  79.125% {
    content: "25";
  }
  82.25% {
    content: "26";
  }
  85.375% {
    content: "27";
  }
  88.5% {
    content: "28";
  }
  91.625% {
    content: "29";
  }
  94.75% {
    content: "30";
  }
  97.875% {
    content: "31";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-33 {
  0% {
    content: "0";
  }
  4.0303% {
    content: "1";
  }
  7.06061% {
    content: "2";
  }
  10.09091% {
    content: "3";
  }
  13.12121% {
    content: "4";
  }
  16.15152% {
    content: "5";
  }
  19.18182% {
    content: "6";
  }
  22.21212% {
    content: "7";
  }
  25.24242% {
    content: "8";
  }
  28.27273% {
    content: "9";
  }
  31.30303% {
    content: "10";
  }
  34.33333% {
    content: "11";
  }
  37.36364% {
    content: "12";
  }
  40.39394% {
    content: "13";
  }
  43.42424% {
    content: "14";
  }
  46.45455% {
    content: "15";
  }
  49.48485% {
    content: "16";
  }
  52.51515% {
    content: "17";
  }
  55.54545% {
    content: "18";
  }
  58.57576% {
    content: "19";
  }
  61.60606% {
    content: "20";
  }
  64.63636% {
    content: "21";
  }
  67.66667% {
    content: "22";
  }
  70.69697% {
    content: "23";
  }
  73.72727% {
    content: "24";
  }
  76.75758% {
    content: "25";
  }
  79.78788% {
    content: "26";
  }
  82.81818% {
    content: "27";
  }
  85.84848% {
    content: "28";
  }
  88.87879% {
    content: "29";
  }
  91.90909% {
    content: "30";
  }
  94.93939% {
    content: "31";
  }
  97.9697% {
    content: "32";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-33 {
  0% {
    content: "0";
  }
  4.0303% {
    content: "1";
  }
  7.06061% {
    content: "2";
  }
  10.09091% {
    content: "3";
  }
  13.12121% {
    content: "4";
  }
  16.15152% {
    content: "5";
  }
  19.18182% {
    content: "6";
  }
  22.21212% {
    content: "7";
  }
  25.24242% {
    content: "8";
  }
  28.27273% {
    content: "9";
  }
  31.30303% {
    content: "10";
  }
  34.33333% {
    content: "11";
  }
  37.36364% {
    content: "12";
  }
  40.39394% {
    content: "13";
  }
  43.42424% {
    content: "14";
  }
  46.45455% {
    content: "15";
  }
  49.48485% {
    content: "16";
  }
  52.51515% {
    content: "17";
  }
  55.54545% {
    content: "18";
  }
  58.57576% {
    content: "19";
  }
  61.60606% {
    content: "20";
  }
  64.63636% {
    content: "21";
  }
  67.66667% {
    content: "22";
  }
  70.69697% {
    content: "23";
  }
  73.72727% {
    content: "24";
  }
  76.75758% {
    content: "25";
  }
  79.78788% {
    content: "26";
  }
  82.81818% {
    content: "27";
  }
  85.84848% {
    content: "28";
  }
  88.87879% {
    content: "29";
  }
  91.90909% {
    content: "30";
  }
  94.93939% {
    content: "31";
  }
  97.9697% {
    content: "32";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-34 {
  0% {
    content: "0";
  }
  3.94118% {
    content: "1";
  }
  6.88235% {
    content: "2";
  }
  9.82353% {
    content: "3";
  }
  12.76471% {
    content: "4";
  }
  15.70588% {
    content: "5";
  }
  18.64706% {
    content: "6";
  }
  21.58824% {
    content: "7";
  }
  24.52941% {
    content: "8";
  }
  27.47059% {
    content: "9";
  }
  30.41176% {
    content: "10";
  }
  33.35294% {
    content: "11";
  }
  36.29412% {
    content: "12";
  }
  39.23529% {
    content: "13";
  }
  42.17647% {
    content: "14";
  }
  45.11765% {
    content: "15";
  }
  48.05882% {
    content: "16";
  }
  51% {
    content: "17";
  }
  53.94118% {
    content: "18";
  }
  56.88235% {
    content: "19";
  }
  59.82353% {
    content: "20";
  }
  62.76471% {
    content: "21";
  }
  65.70588% {
    content: "22";
  }
  68.64706% {
    content: "23";
  }
  71.58824% {
    content: "24";
  }
  74.52941% {
    content: "25";
  }
  77.47059% {
    content: "26";
  }
  80.41176% {
    content: "27";
  }
  83.35294% {
    content: "28";
  }
  86.29412% {
    content: "29";
  }
  89.23529% {
    content: "30";
  }
  92.17647% {
    content: "31";
  }
  95.11765% {
    content: "32";
  }
  98.05882% {
    content: "33";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-34 {
  0% {
    content: "0";
  }
  3.94118% {
    content: "1";
  }
  6.88235% {
    content: "2";
  }
  9.82353% {
    content: "3";
  }
  12.76471% {
    content: "4";
  }
  15.70588% {
    content: "5";
  }
  18.64706% {
    content: "6";
  }
  21.58824% {
    content: "7";
  }
  24.52941% {
    content: "8";
  }
  27.47059% {
    content: "9";
  }
  30.41176% {
    content: "10";
  }
  33.35294% {
    content: "11";
  }
  36.29412% {
    content: "12";
  }
  39.23529% {
    content: "13";
  }
  42.17647% {
    content: "14";
  }
  45.11765% {
    content: "15";
  }
  48.05882% {
    content: "16";
  }
  51% {
    content: "17";
  }
  53.94118% {
    content: "18";
  }
  56.88235% {
    content: "19";
  }
  59.82353% {
    content: "20";
  }
  62.76471% {
    content: "21";
  }
  65.70588% {
    content: "22";
  }
  68.64706% {
    content: "23";
  }
  71.58824% {
    content: "24";
  }
  74.52941% {
    content: "25";
  }
  77.47059% {
    content: "26";
  }
  80.41176% {
    content: "27";
  }
  83.35294% {
    content: "28";
  }
  86.29412% {
    content: "29";
  }
  89.23529% {
    content: "30";
  }
  92.17647% {
    content: "31";
  }
  95.11765% {
    content: "32";
  }
  98.05882% {
    content: "33";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-35 {
  0% {
    content: "0";
  }
  3.85714% {
    content: "1";
  }
  6.71429% {
    content: "2";
  }
  9.57143% {
    content: "3";
  }
  12.42857% {
    content: "4";
  }
  15.28571% {
    content: "5";
  }
  18.14286% {
    content: "6";
  }
  21% {
    content: "7";
  }
  23.85714% {
    content: "8";
  }
  26.71429% {
    content: "9";
  }
  29.57143% {
    content: "10";
  }
  32.42857% {
    content: "11";
  }
  35.28571% {
    content: "12";
  }
  38.14286% {
    content: "13";
  }
  41% {
    content: "14";
  }
  43.85714% {
    content: "15";
  }
  46.71429% {
    content: "16";
  }
  49.57143% {
    content: "17";
  }
  52.42857% {
    content: "18";
  }
  55.28571% {
    content: "19";
  }
  58.14286% {
    content: "20";
  }
  61% {
    content: "21";
  }
  63.85714% {
    content: "22";
  }
  66.71429% {
    content: "23";
  }
  69.57143% {
    content: "24";
  }
  72.42857% {
    content: "25";
  }
  75.28571% {
    content: "26";
  }
  78.14286% {
    content: "27";
  }
  81% {
    content: "28";
  }
  83.85714% {
    content: "29";
  }
  86.71429% {
    content: "30";
  }
  89.57143% {
    content: "31";
  }
  92.42857% {
    content: "32";
  }
  95.28571% {
    content: "33";
  }
  98.14286% {
    content: "34";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-35 {
  0% {
    content: "0";
  }
  3.85714% {
    content: "1";
  }
  6.71429% {
    content: "2";
  }
  9.57143% {
    content: "3";
  }
  12.42857% {
    content: "4";
  }
  15.28571% {
    content: "5";
  }
  18.14286% {
    content: "6";
  }
  21% {
    content: "7";
  }
  23.85714% {
    content: "8";
  }
  26.71429% {
    content: "9";
  }
  29.57143% {
    content: "10";
  }
  32.42857% {
    content: "11";
  }
  35.28571% {
    content: "12";
  }
  38.14286% {
    content: "13";
  }
  41% {
    content: "14";
  }
  43.85714% {
    content: "15";
  }
  46.71429% {
    content: "16";
  }
  49.57143% {
    content: "17";
  }
  52.42857% {
    content: "18";
  }
  55.28571% {
    content: "19";
  }
  58.14286% {
    content: "20";
  }
  61% {
    content: "21";
  }
  63.85714% {
    content: "22";
  }
  66.71429% {
    content: "23";
  }
  69.57143% {
    content: "24";
  }
  72.42857% {
    content: "25";
  }
  75.28571% {
    content: "26";
  }
  78.14286% {
    content: "27";
  }
  81% {
    content: "28";
  }
  83.85714% {
    content: "29";
  }
  86.71429% {
    content: "30";
  }
  89.57143% {
    content: "31";
  }
  92.42857% {
    content: "32";
  }
  95.28571% {
    content: "33";
  }
  98.14286% {
    content: "34";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-36 {
  0% {
    content: "0";
  }
  3.77778% {
    content: "1";
  }
  6.55556% {
    content: "2";
  }
  9.33333% {
    content: "3";
  }
  12.11111% {
    content: "4";
  }
  14.88889% {
    content: "5";
  }
  17.66667% {
    content: "6";
  }
  20.44444% {
    content: "7";
  }
  23.22222% {
    content: "8";
  }
  26% {
    content: "9";
  }
  28.77778% {
    content: "10";
  }
  31.55556% {
    content: "11";
  }
  34.33333% {
    content: "12";
  }
  37.11111% {
    content: "13";
  }
  39.88889% {
    content: "14";
  }
  42.66667% {
    content: "15";
  }
  45.44444% {
    content: "16";
  }
  48.22222% {
    content: "17";
  }
  51% {
    content: "18";
  }
  53.77778% {
    content: "19";
  }
  56.55556% {
    content: "20";
  }
  59.33333% {
    content: "21";
  }
  62.11111% {
    content: "22";
  }
  64.88889% {
    content: "23";
  }
  67.66667% {
    content: "24";
  }
  70.44444% {
    content: "25";
  }
  73.22222% {
    content: "26";
  }
  76% {
    content: "27";
  }
  78.77778% {
    content: "28";
  }
  81.55556% {
    content: "29";
  }
  84.33333% {
    content: "30";
  }
  87.11111% {
    content: "31";
  }
  89.88889% {
    content: "32";
  }
  92.66667% {
    content: "33";
  }
  95.44444% {
    content: "34";
  }
  98.22222% {
    content: "35";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-36 {
  0% {
    content: "0";
  }
  3.77778% {
    content: "1";
  }
  6.55556% {
    content: "2";
  }
  9.33333% {
    content: "3";
  }
  12.11111% {
    content: "4";
  }
  14.88889% {
    content: "5";
  }
  17.66667% {
    content: "6";
  }
  20.44444% {
    content: "7";
  }
  23.22222% {
    content: "8";
  }
  26% {
    content: "9";
  }
  28.77778% {
    content: "10";
  }
  31.55556% {
    content: "11";
  }
  34.33333% {
    content: "12";
  }
  37.11111% {
    content: "13";
  }
  39.88889% {
    content: "14";
  }
  42.66667% {
    content: "15";
  }
  45.44444% {
    content: "16";
  }
  48.22222% {
    content: "17";
  }
  51% {
    content: "18";
  }
  53.77778% {
    content: "19";
  }
  56.55556% {
    content: "20";
  }
  59.33333% {
    content: "21";
  }
  62.11111% {
    content: "22";
  }
  64.88889% {
    content: "23";
  }
  67.66667% {
    content: "24";
  }
  70.44444% {
    content: "25";
  }
  73.22222% {
    content: "26";
  }
  76% {
    content: "27";
  }
  78.77778% {
    content: "28";
  }
  81.55556% {
    content: "29";
  }
  84.33333% {
    content: "30";
  }
  87.11111% {
    content: "31";
  }
  89.88889% {
    content: "32";
  }
  92.66667% {
    content: "33";
  }
  95.44444% {
    content: "34";
  }
  98.22222% {
    content: "35";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-37 {
  0% {
    content: "0";
  }
  3.7027% {
    content: "1";
  }
  6.40541% {
    content: "2";
  }
  9.10811% {
    content: "3";
  }
  11.81081% {
    content: "4";
  }
  14.51351% {
    content: "5";
  }
  17.21622% {
    content: "6";
  }
  19.91892% {
    content: "7";
  }
  22.62162% {
    content: "8";
  }
  25.32432% {
    content: "9";
  }
  28.02703% {
    content: "10";
  }
  30.72973% {
    content: "11";
  }
  33.43243% {
    content: "12";
  }
  36.13514% {
    content: "13";
  }
  38.83784% {
    content: "14";
  }
  41.54054% {
    content: "15";
  }
  44.24324% {
    content: "16";
  }
  46.94595% {
    content: "17";
  }
  49.64865% {
    content: "18";
  }
  52.35135% {
    content: "19";
  }
  55.05405% {
    content: "20";
  }
  57.75676% {
    content: "21";
  }
  60.45946% {
    content: "22";
  }
  63.16216% {
    content: "23";
  }
  65.86486% {
    content: "24";
  }
  68.56757% {
    content: "25";
  }
  71.27027% {
    content: "26";
  }
  73.97297% {
    content: "27";
  }
  76.67568% {
    content: "28";
  }
  79.37838% {
    content: "29";
  }
  82.08108% {
    content: "30";
  }
  84.78378% {
    content: "31";
  }
  87.48649% {
    content: "32";
  }
  90.18919% {
    content: "33";
  }
  92.89189% {
    content: "34";
  }
  95.59459% {
    content: "35";
  }
  98.2973% {
    content: "36";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-37 {
  0% {
    content: "0";
  }
  3.7027% {
    content: "1";
  }
  6.40541% {
    content: "2";
  }
  9.10811% {
    content: "3";
  }
  11.81081% {
    content: "4";
  }
  14.51351% {
    content: "5";
  }
  17.21622% {
    content: "6";
  }
  19.91892% {
    content: "7";
  }
  22.62162% {
    content: "8";
  }
  25.32432% {
    content: "9";
  }
  28.02703% {
    content: "10";
  }
  30.72973% {
    content: "11";
  }
  33.43243% {
    content: "12";
  }
  36.13514% {
    content: "13";
  }
  38.83784% {
    content: "14";
  }
  41.54054% {
    content: "15";
  }
  44.24324% {
    content: "16";
  }
  46.94595% {
    content: "17";
  }
  49.64865% {
    content: "18";
  }
  52.35135% {
    content: "19";
  }
  55.05405% {
    content: "20";
  }
  57.75676% {
    content: "21";
  }
  60.45946% {
    content: "22";
  }
  63.16216% {
    content: "23";
  }
  65.86486% {
    content: "24";
  }
  68.56757% {
    content: "25";
  }
  71.27027% {
    content: "26";
  }
  73.97297% {
    content: "27";
  }
  76.67568% {
    content: "28";
  }
  79.37838% {
    content: "29";
  }
  82.08108% {
    content: "30";
  }
  84.78378% {
    content: "31";
  }
  87.48649% {
    content: "32";
  }
  90.18919% {
    content: "33";
  }
  92.89189% {
    content: "34";
  }
  95.59459% {
    content: "35";
  }
  98.2973% {
    content: "36";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-38 {
  0% {
    content: "0";
  }
  3.63158% {
    content: "1";
  }
  6.26316% {
    content: "2";
  }
  8.89474% {
    content: "3";
  }
  11.52632% {
    content: "4";
  }
  14.15789% {
    content: "5";
  }
  16.78947% {
    content: "6";
  }
  19.42105% {
    content: "7";
  }
  22.05263% {
    content: "8";
  }
  24.68421% {
    content: "9";
  }
  27.31579% {
    content: "10";
  }
  29.94737% {
    content: "11";
  }
  32.57895% {
    content: "12";
  }
  35.21053% {
    content: "13";
  }
  37.84211% {
    content: "14";
  }
  40.47368% {
    content: "15";
  }
  43.10526% {
    content: "16";
  }
  45.73684% {
    content: "17";
  }
  48.36842% {
    content: "18";
  }
  51% {
    content: "19";
  }
  53.63158% {
    content: "20";
  }
  56.26316% {
    content: "21";
  }
  58.89474% {
    content: "22";
  }
  61.52632% {
    content: "23";
  }
  64.15789% {
    content: "24";
  }
  66.78947% {
    content: "25";
  }
  69.42105% {
    content: "26";
  }
  72.05263% {
    content: "27";
  }
  74.68421% {
    content: "28";
  }
  77.31579% {
    content: "29";
  }
  79.94737% {
    content: "30";
  }
  82.57895% {
    content: "31";
  }
  85.21053% {
    content: "32";
  }
  87.84211% {
    content: "33";
  }
  90.47368% {
    content: "34";
  }
  93.10526% {
    content: "35";
  }
  95.73684% {
    content: "36";
  }
  98.36842% {
    content: "37";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-38 {
  0% {
    content: "0";
  }
  3.63158% {
    content: "1";
  }
  6.26316% {
    content: "2";
  }
  8.89474% {
    content: "3";
  }
  11.52632% {
    content: "4";
  }
  14.15789% {
    content: "5";
  }
  16.78947% {
    content: "6";
  }
  19.42105% {
    content: "7";
  }
  22.05263% {
    content: "8";
  }
  24.68421% {
    content: "9";
  }
  27.31579% {
    content: "10";
  }
  29.94737% {
    content: "11";
  }
  32.57895% {
    content: "12";
  }
  35.21053% {
    content: "13";
  }
  37.84211% {
    content: "14";
  }
  40.47368% {
    content: "15";
  }
  43.10526% {
    content: "16";
  }
  45.73684% {
    content: "17";
  }
  48.36842% {
    content: "18";
  }
  51% {
    content: "19";
  }
  53.63158% {
    content: "20";
  }
  56.26316% {
    content: "21";
  }
  58.89474% {
    content: "22";
  }
  61.52632% {
    content: "23";
  }
  64.15789% {
    content: "24";
  }
  66.78947% {
    content: "25";
  }
  69.42105% {
    content: "26";
  }
  72.05263% {
    content: "27";
  }
  74.68421% {
    content: "28";
  }
  77.31579% {
    content: "29";
  }
  79.94737% {
    content: "30";
  }
  82.57895% {
    content: "31";
  }
  85.21053% {
    content: "32";
  }
  87.84211% {
    content: "33";
  }
  90.47368% {
    content: "34";
  }
  93.10526% {
    content: "35";
  }
  95.73684% {
    content: "36";
  }
  98.36842% {
    content: "37";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-39 {
  0% {
    content: "0";
  }
  3.5641% {
    content: "1";
  }
  6.12821% {
    content: "2";
  }
  8.69231% {
    content: "3";
  }
  11.25641% {
    content: "4";
  }
  13.82051% {
    content: "5";
  }
  16.38462% {
    content: "6";
  }
  18.94872% {
    content: "7";
  }
  21.51282% {
    content: "8";
  }
  24.07692% {
    content: "9";
  }
  26.64103% {
    content: "10";
  }
  29.20513% {
    content: "11";
  }
  31.76923% {
    content: "12";
  }
  34.33333% {
    content: "13";
  }
  36.89744% {
    content: "14";
  }
  39.46154% {
    content: "15";
  }
  42.02564% {
    content: "16";
  }
  44.58974% {
    content: "17";
  }
  47.15385% {
    content: "18";
  }
  49.71795% {
    content: "19";
  }
  52.28205% {
    content: "20";
  }
  54.84615% {
    content: "21";
  }
  57.41026% {
    content: "22";
  }
  59.97436% {
    content: "23";
  }
  62.53846% {
    content: "24";
  }
  65.10256% {
    content: "25";
  }
  67.66667% {
    content: "26";
  }
  70.23077% {
    content: "27";
  }
  72.79487% {
    content: "28";
  }
  75.35897% {
    content: "29";
  }
  77.92308% {
    content: "30";
  }
  80.48718% {
    content: "31";
  }
  83.05128% {
    content: "32";
  }
  85.61538% {
    content: "33";
  }
  88.17949% {
    content: "34";
  }
  90.74359% {
    content: "35";
  }
  93.30769% {
    content: "36";
  }
  95.87179% {
    content: "37";
  }
  98.4359% {
    content: "38";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-39 {
  0% {
    content: "0";
  }
  3.5641% {
    content: "1";
  }
  6.12821% {
    content: "2";
  }
  8.69231% {
    content: "3";
  }
  11.25641% {
    content: "4";
  }
  13.82051% {
    content: "5";
  }
  16.38462% {
    content: "6";
  }
  18.94872% {
    content: "7";
  }
  21.51282% {
    content: "8";
  }
  24.07692% {
    content: "9";
  }
  26.64103% {
    content: "10";
  }
  29.20513% {
    content: "11";
  }
  31.76923% {
    content: "12";
  }
  34.33333% {
    content: "13";
  }
  36.89744% {
    content: "14";
  }
  39.46154% {
    content: "15";
  }
  42.02564% {
    content: "16";
  }
  44.58974% {
    content: "17";
  }
  47.15385% {
    content: "18";
  }
  49.71795% {
    content: "19";
  }
  52.28205% {
    content: "20";
  }
  54.84615% {
    content: "21";
  }
  57.41026% {
    content: "22";
  }
  59.97436% {
    content: "23";
  }
  62.53846% {
    content: "24";
  }
  65.10256% {
    content: "25";
  }
  67.66667% {
    content: "26";
  }
  70.23077% {
    content: "27";
  }
  72.79487% {
    content: "28";
  }
  75.35897% {
    content: "29";
  }
  77.92308% {
    content: "30";
  }
  80.48718% {
    content: "31";
  }
  83.05128% {
    content: "32";
  }
  85.61538% {
    content: "33";
  }
  88.17949% {
    content: "34";
  }
  90.74359% {
    content: "35";
  }
  93.30769% {
    content: "36";
  }
  95.87179% {
    content: "37";
  }
  98.4359% {
    content: "38";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-40 {
  0% {
    content: "0";
  }
  3.5% {
    content: "1";
  }
  6% {
    content: "2";
  }
  8.5% {
    content: "3";
  }
  11% {
    content: "4";
  }
  13.5% {
    content: "5";
  }
  16% {
    content: "6";
  }
  18.5% {
    content: "7";
  }
  21% {
    content: "8";
  }
  23.5% {
    content: "9";
  }
  26% {
    content: "10";
  }
  28.5% {
    content: "11";
  }
  31% {
    content: "12";
  }
  33.5% {
    content: "13";
  }
  36% {
    content: "14";
  }
  38.5% {
    content: "15";
  }
  41% {
    content: "16";
  }
  43.5% {
    content: "17";
  }
  46% {
    content: "18";
  }
  48.5% {
    content: "19";
  }
  51% {
    content: "20";
  }
  53.5% {
    content: "21";
  }
  56% {
    content: "22";
  }
  58.5% {
    content: "23";
  }
  61% {
    content: "24";
  }
  63.5% {
    content: "25";
  }
  66% {
    content: "26";
  }
  68.5% {
    content: "27";
  }
  71% {
    content: "28";
  }
  73.5% {
    content: "29";
  }
  76% {
    content: "30";
  }
  78.5% {
    content: "31";
  }
  81% {
    content: "32";
  }
  83.5% {
    content: "33";
  }
  86% {
    content: "34";
  }
  88.5% {
    content: "35";
  }
  91% {
    content: "36";
  }
  93.5% {
    content: "37";
  }
  96% {
    content: "38";
  }
  98.5% {
    content: "39";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-40 {
  0% {
    content: "0";
  }
  3.5% {
    content: "1";
  }
  6% {
    content: "2";
  }
  8.5% {
    content: "3";
  }
  11% {
    content: "4";
  }
  13.5% {
    content: "5";
  }
  16% {
    content: "6";
  }
  18.5% {
    content: "7";
  }
  21% {
    content: "8";
  }
  23.5% {
    content: "9";
  }
  26% {
    content: "10";
  }
  28.5% {
    content: "11";
  }
  31% {
    content: "12";
  }
  33.5% {
    content: "13";
  }
  36% {
    content: "14";
  }
  38.5% {
    content: "15";
  }
  41% {
    content: "16";
  }
  43.5% {
    content: "17";
  }
  46% {
    content: "18";
  }
  48.5% {
    content: "19";
  }
  51% {
    content: "20";
  }
  53.5% {
    content: "21";
  }
  56% {
    content: "22";
  }
  58.5% {
    content: "23";
  }
  61% {
    content: "24";
  }
  63.5% {
    content: "25";
  }
  66% {
    content: "26";
  }
  68.5% {
    content: "27";
  }
  71% {
    content: "28";
  }
  73.5% {
    content: "29";
  }
  76% {
    content: "30";
  }
  78.5% {
    content: "31";
  }
  81% {
    content: "32";
  }
  83.5% {
    content: "33";
  }
  86% {
    content: "34";
  }
  88.5% {
    content: "35";
  }
  91% {
    content: "36";
  }
  93.5% {
    content: "37";
  }
  96% {
    content: "38";
  }
  98.5% {
    content: "39";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-41 {
  0% {
    content: "0";
  }
  3.43902% {
    content: "1";
  }
  5.87805% {
    content: "2";
  }
  8.31707% {
    content: "3";
  }
  10.7561% {
    content: "4";
  }
  13.19512% {
    content: "5";
  }
  15.63415% {
    content: "6";
  }
  18.07317% {
    content: "7";
  }
  20.5122% {
    content: "8";
  }
  22.95122% {
    content: "9";
  }
  25.39024% {
    content: "10";
  }
  27.82927% {
    content: "11";
  }
  30.26829% {
    content: "12";
  }
  32.70732% {
    content: "13";
  }
  35.14634% {
    content: "14";
  }
  37.58537% {
    content: "15";
  }
  40.02439% {
    content: "16";
  }
  42.46341% {
    content: "17";
  }
  44.90244% {
    content: "18";
  }
  47.34146% {
    content: "19";
  }
  49.78049% {
    content: "20";
  }
  52.21951% {
    content: "21";
  }
  54.65854% {
    content: "22";
  }
  57.09756% {
    content: "23";
  }
  59.53659% {
    content: "24";
  }
  61.97561% {
    content: "25";
  }
  64.41463% {
    content: "26";
  }
  66.85366% {
    content: "27";
  }
  69.29268% {
    content: "28";
  }
  71.73171% {
    content: "29";
  }
  74.17073% {
    content: "30";
  }
  76.60976% {
    content: "31";
  }
  79.04878% {
    content: "32";
  }
  81.4878% {
    content: "33";
  }
  83.92683% {
    content: "34";
  }
  86.36585% {
    content: "35";
  }
  88.80488% {
    content: "36";
  }
  91.2439% {
    content: "37";
  }
  93.68293% {
    content: "38";
  }
  96.12195% {
    content: "39";
  }
  98.56098% {
    content: "40";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-41 {
  0% {
    content: "0";
  }
  3.43902% {
    content: "1";
  }
  5.87805% {
    content: "2";
  }
  8.31707% {
    content: "3";
  }
  10.7561% {
    content: "4";
  }
  13.19512% {
    content: "5";
  }
  15.63415% {
    content: "6";
  }
  18.07317% {
    content: "7";
  }
  20.5122% {
    content: "8";
  }
  22.95122% {
    content: "9";
  }
  25.39024% {
    content: "10";
  }
  27.82927% {
    content: "11";
  }
  30.26829% {
    content: "12";
  }
  32.70732% {
    content: "13";
  }
  35.14634% {
    content: "14";
  }
  37.58537% {
    content: "15";
  }
  40.02439% {
    content: "16";
  }
  42.46341% {
    content: "17";
  }
  44.90244% {
    content: "18";
  }
  47.34146% {
    content: "19";
  }
  49.78049% {
    content: "20";
  }
  52.21951% {
    content: "21";
  }
  54.65854% {
    content: "22";
  }
  57.09756% {
    content: "23";
  }
  59.53659% {
    content: "24";
  }
  61.97561% {
    content: "25";
  }
  64.41463% {
    content: "26";
  }
  66.85366% {
    content: "27";
  }
  69.29268% {
    content: "28";
  }
  71.73171% {
    content: "29";
  }
  74.17073% {
    content: "30";
  }
  76.60976% {
    content: "31";
  }
  79.04878% {
    content: "32";
  }
  81.4878% {
    content: "33";
  }
  83.92683% {
    content: "34";
  }
  86.36585% {
    content: "35";
  }
  88.80488% {
    content: "36";
  }
  91.2439% {
    content: "37";
  }
  93.68293% {
    content: "38";
  }
  96.12195% {
    content: "39";
  }
  98.56098% {
    content: "40";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-42 {
  0% {
    content: "0";
  }
  3.38095% {
    content: "1";
  }
  5.7619% {
    content: "2";
  }
  8.14286% {
    content: "3";
  }
  10.52381% {
    content: "4";
  }
  12.90476% {
    content: "5";
  }
  15.28571% {
    content: "6";
  }
  17.66667% {
    content: "7";
  }
  20.04762% {
    content: "8";
  }
  22.42857% {
    content: "9";
  }
  24.80952% {
    content: "10";
  }
  27.19048% {
    content: "11";
  }
  29.57143% {
    content: "12";
  }
  31.95238% {
    content: "13";
  }
  34.33333% {
    content: "14";
  }
  36.71429% {
    content: "15";
  }
  39.09524% {
    content: "16";
  }
  41.47619% {
    content: "17";
  }
  43.85714% {
    content: "18";
  }
  46.2381% {
    content: "19";
  }
  48.61905% {
    content: "20";
  }
  51% {
    content: "21";
  }
  53.38095% {
    content: "22";
  }
  55.7619% {
    content: "23";
  }
  58.14286% {
    content: "24";
  }
  60.52381% {
    content: "25";
  }
  62.90476% {
    content: "26";
  }
  65.28571% {
    content: "27";
  }
  67.66667% {
    content: "28";
  }
  70.04762% {
    content: "29";
  }
  72.42857% {
    content: "30";
  }
  74.80952% {
    content: "31";
  }
  77.19048% {
    content: "32";
  }
  79.57143% {
    content: "33";
  }
  81.95238% {
    content: "34";
  }
  84.33333% {
    content: "35";
  }
  86.71429% {
    content: "36";
  }
  89.09524% {
    content: "37";
  }
  91.47619% {
    content: "38";
  }
  93.85714% {
    content: "39";
  }
  96.2381% {
    content: "40";
  }
  98.61905% {
    content: "41";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-42 {
  0% {
    content: "0";
  }
  3.38095% {
    content: "1";
  }
  5.7619% {
    content: "2";
  }
  8.14286% {
    content: "3";
  }
  10.52381% {
    content: "4";
  }
  12.90476% {
    content: "5";
  }
  15.28571% {
    content: "6";
  }
  17.66667% {
    content: "7";
  }
  20.04762% {
    content: "8";
  }
  22.42857% {
    content: "9";
  }
  24.80952% {
    content: "10";
  }
  27.19048% {
    content: "11";
  }
  29.57143% {
    content: "12";
  }
  31.95238% {
    content: "13";
  }
  34.33333% {
    content: "14";
  }
  36.71429% {
    content: "15";
  }
  39.09524% {
    content: "16";
  }
  41.47619% {
    content: "17";
  }
  43.85714% {
    content: "18";
  }
  46.2381% {
    content: "19";
  }
  48.61905% {
    content: "20";
  }
  51% {
    content: "21";
  }
  53.38095% {
    content: "22";
  }
  55.7619% {
    content: "23";
  }
  58.14286% {
    content: "24";
  }
  60.52381% {
    content: "25";
  }
  62.90476% {
    content: "26";
  }
  65.28571% {
    content: "27";
  }
  67.66667% {
    content: "28";
  }
  70.04762% {
    content: "29";
  }
  72.42857% {
    content: "30";
  }
  74.80952% {
    content: "31";
  }
  77.19048% {
    content: "32";
  }
  79.57143% {
    content: "33";
  }
  81.95238% {
    content: "34";
  }
  84.33333% {
    content: "35";
  }
  86.71429% {
    content: "36";
  }
  89.09524% {
    content: "37";
  }
  91.47619% {
    content: "38";
  }
  93.85714% {
    content: "39";
  }
  96.2381% {
    content: "40";
  }
  98.61905% {
    content: "41";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-43 {
  0% {
    content: "0";
  }
  3.32558% {
    content: "1";
  }
  5.65116% {
    content: "2";
  }
  7.97674% {
    content: "3";
  }
  10.30233% {
    content: "4";
  }
  12.62791% {
    content: "5";
  }
  14.95349% {
    content: "6";
  }
  17.27907% {
    content: "7";
  }
  19.60465% {
    content: "8";
  }
  21.93023% {
    content: "9";
  }
  24.25581% {
    content: "10";
  }
  26.5814% {
    content: "11";
  }
  28.90698% {
    content: "12";
  }
  31.23256% {
    content: "13";
  }
  33.55814% {
    content: "14";
  }
  35.88372% {
    content: "15";
  }
  38.2093% {
    content: "16";
  }
  40.53488% {
    content: "17";
  }
  42.86047% {
    content: "18";
  }
  45.18605% {
    content: "19";
  }
  47.51163% {
    content: "20";
  }
  49.83721% {
    content: "21";
  }
  52.16279% {
    content: "22";
  }
  54.48837% {
    content: "23";
  }
  56.81395% {
    content: "24";
  }
  59.13953% {
    content: "25";
  }
  61.46512% {
    content: "26";
  }
  63.7907% {
    content: "27";
  }
  66.11628% {
    content: "28";
  }
  68.44186% {
    content: "29";
  }
  70.76744% {
    content: "30";
  }
  73.09302% {
    content: "31";
  }
  75.4186% {
    content: "32";
  }
  77.74419% {
    content: "33";
  }
  80.06977% {
    content: "34";
  }
  82.39535% {
    content: "35";
  }
  84.72093% {
    content: "36";
  }
  87.04651% {
    content: "37";
  }
  89.37209% {
    content: "38";
  }
  91.69767% {
    content: "39";
  }
  94.02326% {
    content: "40";
  }
  96.34884% {
    content: "41";
  }
  98.67442% {
    content: "42";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-43 {
  0% {
    content: "0";
  }
  3.32558% {
    content: "1";
  }
  5.65116% {
    content: "2";
  }
  7.97674% {
    content: "3";
  }
  10.30233% {
    content: "4";
  }
  12.62791% {
    content: "5";
  }
  14.95349% {
    content: "6";
  }
  17.27907% {
    content: "7";
  }
  19.60465% {
    content: "8";
  }
  21.93023% {
    content: "9";
  }
  24.25581% {
    content: "10";
  }
  26.5814% {
    content: "11";
  }
  28.90698% {
    content: "12";
  }
  31.23256% {
    content: "13";
  }
  33.55814% {
    content: "14";
  }
  35.88372% {
    content: "15";
  }
  38.2093% {
    content: "16";
  }
  40.53488% {
    content: "17";
  }
  42.86047% {
    content: "18";
  }
  45.18605% {
    content: "19";
  }
  47.51163% {
    content: "20";
  }
  49.83721% {
    content: "21";
  }
  52.16279% {
    content: "22";
  }
  54.48837% {
    content: "23";
  }
  56.81395% {
    content: "24";
  }
  59.13953% {
    content: "25";
  }
  61.46512% {
    content: "26";
  }
  63.7907% {
    content: "27";
  }
  66.11628% {
    content: "28";
  }
  68.44186% {
    content: "29";
  }
  70.76744% {
    content: "30";
  }
  73.09302% {
    content: "31";
  }
  75.4186% {
    content: "32";
  }
  77.74419% {
    content: "33";
  }
  80.06977% {
    content: "34";
  }
  82.39535% {
    content: "35";
  }
  84.72093% {
    content: "36";
  }
  87.04651% {
    content: "37";
  }
  89.37209% {
    content: "38";
  }
  91.69767% {
    content: "39";
  }
  94.02326% {
    content: "40";
  }
  96.34884% {
    content: "41";
  }
  98.67442% {
    content: "42";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-44 {
  0% {
    content: "0";
  }
  3.27273% {
    content: "1";
  }
  5.54545% {
    content: "2";
  }
  7.81818% {
    content: "3";
  }
  10.09091% {
    content: "4";
  }
  12.36364% {
    content: "5";
  }
  14.63636% {
    content: "6";
  }
  16.90909% {
    content: "7";
  }
  19.18182% {
    content: "8";
  }
  21.45455% {
    content: "9";
  }
  23.72727% {
    content: "10";
  }
  26% {
    content: "11";
  }
  28.27273% {
    content: "12";
  }
  30.54545% {
    content: "13";
  }
  32.81818% {
    content: "14";
  }
  35.09091% {
    content: "15";
  }
  37.36364% {
    content: "16";
  }
  39.63636% {
    content: "17";
  }
  41.90909% {
    content: "18";
  }
  44.18182% {
    content: "19";
  }
  46.45455% {
    content: "20";
  }
  48.72727% {
    content: "21";
  }
  51% {
    content: "22";
  }
  53.27273% {
    content: "23";
  }
  55.54545% {
    content: "24";
  }
  57.81818% {
    content: "25";
  }
  60.09091% {
    content: "26";
  }
  62.36364% {
    content: "27";
  }
  64.63636% {
    content: "28";
  }
  66.90909% {
    content: "29";
  }
  69.18182% {
    content: "30";
  }
  71.45455% {
    content: "31";
  }
  73.72727% {
    content: "32";
  }
  76% {
    content: "33";
  }
  78.27273% {
    content: "34";
  }
  80.54545% {
    content: "35";
  }
  82.81818% {
    content: "36";
  }
  85.09091% {
    content: "37";
  }
  87.36364% {
    content: "38";
  }
  89.63636% {
    content: "39";
  }
  91.90909% {
    content: "40";
  }
  94.18182% {
    content: "41";
  }
  96.45455% {
    content: "42";
  }
  98.72727% {
    content: "43";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-44 {
  0% {
    content: "0";
  }
  3.27273% {
    content: "1";
  }
  5.54545% {
    content: "2";
  }
  7.81818% {
    content: "3";
  }
  10.09091% {
    content: "4";
  }
  12.36364% {
    content: "5";
  }
  14.63636% {
    content: "6";
  }
  16.90909% {
    content: "7";
  }
  19.18182% {
    content: "8";
  }
  21.45455% {
    content: "9";
  }
  23.72727% {
    content: "10";
  }
  26% {
    content: "11";
  }
  28.27273% {
    content: "12";
  }
  30.54545% {
    content: "13";
  }
  32.81818% {
    content: "14";
  }
  35.09091% {
    content: "15";
  }
  37.36364% {
    content: "16";
  }
  39.63636% {
    content: "17";
  }
  41.90909% {
    content: "18";
  }
  44.18182% {
    content: "19";
  }
  46.45455% {
    content: "20";
  }
  48.72727% {
    content: "21";
  }
  51% {
    content: "22";
  }
  53.27273% {
    content: "23";
  }
  55.54545% {
    content: "24";
  }
  57.81818% {
    content: "25";
  }
  60.09091% {
    content: "26";
  }
  62.36364% {
    content: "27";
  }
  64.63636% {
    content: "28";
  }
  66.90909% {
    content: "29";
  }
  69.18182% {
    content: "30";
  }
  71.45455% {
    content: "31";
  }
  73.72727% {
    content: "32";
  }
  76% {
    content: "33";
  }
  78.27273% {
    content: "34";
  }
  80.54545% {
    content: "35";
  }
  82.81818% {
    content: "36";
  }
  85.09091% {
    content: "37";
  }
  87.36364% {
    content: "38";
  }
  89.63636% {
    content: "39";
  }
  91.90909% {
    content: "40";
  }
  94.18182% {
    content: "41";
  }
  96.45455% {
    content: "42";
  }
  98.72727% {
    content: "43";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-45 {
  0% {
    content: "0";
  }
  3.22222% {
    content: "1";
  }
  5.44444% {
    content: "2";
  }
  7.66667% {
    content: "3";
  }
  9.88889% {
    content: "4";
  }
  12.11111% {
    content: "5";
  }
  14.33333% {
    content: "6";
  }
  16.55556% {
    content: "7";
  }
  18.77778% {
    content: "8";
  }
  21% {
    content: "9";
  }
  23.22222% {
    content: "10";
  }
  25.44444% {
    content: "11";
  }
  27.66667% {
    content: "12";
  }
  29.88889% {
    content: "13";
  }
  32.11111% {
    content: "14";
  }
  34.33333% {
    content: "15";
  }
  36.55556% {
    content: "16";
  }
  38.77778% {
    content: "17";
  }
  41% {
    content: "18";
  }
  43.22222% {
    content: "19";
  }
  45.44444% {
    content: "20";
  }
  47.66667% {
    content: "21";
  }
  49.88889% {
    content: "22";
  }
  52.11111% {
    content: "23";
  }
  54.33333% {
    content: "24";
  }
  56.55556% {
    content: "25";
  }
  58.77778% {
    content: "26";
  }
  61% {
    content: "27";
  }
  63.22222% {
    content: "28";
  }
  65.44444% {
    content: "29";
  }
  67.66667% {
    content: "30";
  }
  69.88889% {
    content: "31";
  }
  72.11111% {
    content: "32";
  }
  74.33333% {
    content: "33";
  }
  76.55556% {
    content: "34";
  }
  78.77778% {
    content: "35";
  }
  81% {
    content: "36";
  }
  83.22222% {
    content: "37";
  }
  85.44444% {
    content: "38";
  }
  87.66667% {
    content: "39";
  }
  89.88889% {
    content: "40";
  }
  92.11111% {
    content: "41";
  }
  94.33333% {
    content: "42";
  }
  96.55556% {
    content: "43";
  }
  98.77778% {
    content: "44";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-45 {
  0% {
    content: "0";
  }
  3.22222% {
    content: "1";
  }
  5.44444% {
    content: "2";
  }
  7.66667% {
    content: "3";
  }
  9.88889% {
    content: "4";
  }
  12.11111% {
    content: "5";
  }
  14.33333% {
    content: "6";
  }
  16.55556% {
    content: "7";
  }
  18.77778% {
    content: "8";
  }
  21% {
    content: "9";
  }
  23.22222% {
    content: "10";
  }
  25.44444% {
    content: "11";
  }
  27.66667% {
    content: "12";
  }
  29.88889% {
    content: "13";
  }
  32.11111% {
    content: "14";
  }
  34.33333% {
    content: "15";
  }
  36.55556% {
    content: "16";
  }
  38.77778% {
    content: "17";
  }
  41% {
    content: "18";
  }
  43.22222% {
    content: "19";
  }
  45.44444% {
    content: "20";
  }
  47.66667% {
    content: "21";
  }
  49.88889% {
    content: "22";
  }
  52.11111% {
    content: "23";
  }
  54.33333% {
    content: "24";
  }
  56.55556% {
    content: "25";
  }
  58.77778% {
    content: "26";
  }
  61% {
    content: "27";
  }
  63.22222% {
    content: "28";
  }
  65.44444% {
    content: "29";
  }
  67.66667% {
    content: "30";
  }
  69.88889% {
    content: "31";
  }
  72.11111% {
    content: "32";
  }
  74.33333% {
    content: "33";
  }
  76.55556% {
    content: "34";
  }
  78.77778% {
    content: "35";
  }
  81% {
    content: "36";
  }
  83.22222% {
    content: "37";
  }
  85.44444% {
    content: "38";
  }
  87.66667% {
    content: "39";
  }
  89.88889% {
    content: "40";
  }
  92.11111% {
    content: "41";
  }
  94.33333% {
    content: "42";
  }
  96.55556% {
    content: "43";
  }
  98.77778% {
    content: "44";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-46 {
  0% {
    content: "0";
  }
  3.17391% {
    content: "1";
  }
  5.34783% {
    content: "2";
  }
  7.52174% {
    content: "3";
  }
  9.69565% {
    content: "4";
  }
  11.86957% {
    content: "5";
  }
  14.04348% {
    content: "6";
  }
  16.21739% {
    content: "7";
  }
  18.3913% {
    content: "8";
  }
  20.56522% {
    content: "9";
  }
  22.73913% {
    content: "10";
  }
  24.91304% {
    content: "11";
  }
  27.08696% {
    content: "12";
  }
  29.26087% {
    content: "13";
  }
  31.43478% {
    content: "14";
  }
  33.6087% {
    content: "15";
  }
  35.78261% {
    content: "16";
  }
  37.95652% {
    content: "17";
  }
  40.13043% {
    content: "18";
  }
  42.30435% {
    content: "19";
  }
  44.47826% {
    content: "20";
  }
  46.65217% {
    content: "21";
  }
  48.82609% {
    content: "22";
  }
  51% {
    content: "23";
  }
  53.17391% {
    content: "24";
  }
  55.34783% {
    content: "25";
  }
  57.52174% {
    content: "26";
  }
  59.69565% {
    content: "27";
  }
  61.86957% {
    content: "28";
  }
  64.04348% {
    content: "29";
  }
  66.21739% {
    content: "30";
  }
  68.3913% {
    content: "31";
  }
  70.56522% {
    content: "32";
  }
  72.73913% {
    content: "33";
  }
  74.91304% {
    content: "34";
  }
  77.08696% {
    content: "35";
  }
  79.26087% {
    content: "36";
  }
  81.43478% {
    content: "37";
  }
  83.6087% {
    content: "38";
  }
  85.78261% {
    content: "39";
  }
  87.95652% {
    content: "40";
  }
  90.13043% {
    content: "41";
  }
  92.30435% {
    content: "42";
  }
  94.47826% {
    content: "43";
  }
  96.65217% {
    content: "44";
  }
  98.82609% {
    content: "45";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-46 {
  0% {
    content: "0";
  }
  3.17391% {
    content: "1";
  }
  5.34783% {
    content: "2";
  }
  7.52174% {
    content: "3";
  }
  9.69565% {
    content: "4";
  }
  11.86957% {
    content: "5";
  }
  14.04348% {
    content: "6";
  }
  16.21739% {
    content: "7";
  }
  18.3913% {
    content: "8";
  }
  20.56522% {
    content: "9";
  }
  22.73913% {
    content: "10";
  }
  24.91304% {
    content: "11";
  }
  27.08696% {
    content: "12";
  }
  29.26087% {
    content: "13";
  }
  31.43478% {
    content: "14";
  }
  33.6087% {
    content: "15";
  }
  35.78261% {
    content: "16";
  }
  37.95652% {
    content: "17";
  }
  40.13043% {
    content: "18";
  }
  42.30435% {
    content: "19";
  }
  44.47826% {
    content: "20";
  }
  46.65217% {
    content: "21";
  }
  48.82609% {
    content: "22";
  }
  51% {
    content: "23";
  }
  53.17391% {
    content: "24";
  }
  55.34783% {
    content: "25";
  }
  57.52174% {
    content: "26";
  }
  59.69565% {
    content: "27";
  }
  61.86957% {
    content: "28";
  }
  64.04348% {
    content: "29";
  }
  66.21739% {
    content: "30";
  }
  68.3913% {
    content: "31";
  }
  70.56522% {
    content: "32";
  }
  72.73913% {
    content: "33";
  }
  74.91304% {
    content: "34";
  }
  77.08696% {
    content: "35";
  }
  79.26087% {
    content: "36";
  }
  81.43478% {
    content: "37";
  }
  83.6087% {
    content: "38";
  }
  85.78261% {
    content: "39";
  }
  87.95652% {
    content: "40";
  }
  90.13043% {
    content: "41";
  }
  92.30435% {
    content: "42";
  }
  94.47826% {
    content: "43";
  }
  96.65217% {
    content: "44";
  }
  98.82609% {
    content: "45";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-47 {
  0% {
    content: "0";
  }
  3.12766% {
    content: "1";
  }
  5.25532% {
    content: "2";
  }
  7.38298% {
    content: "3";
  }
  9.51064% {
    content: "4";
  }
  11.6383% {
    content: "5";
  }
  13.76596% {
    content: "6";
  }
  15.89362% {
    content: "7";
  }
  18.02128% {
    content: "8";
  }
  20.14894% {
    content: "9";
  }
  22.2766% {
    content: "10";
  }
  24.40426% {
    content: "11";
  }
  26.53191% {
    content: "12";
  }
  28.65957% {
    content: "13";
  }
  30.78723% {
    content: "14";
  }
  32.91489% {
    content: "15";
  }
  35.04255% {
    content: "16";
  }
  37.17021% {
    content: "17";
  }
  39.29787% {
    content: "18";
  }
  41.42553% {
    content: "19";
  }
  43.55319% {
    content: "20";
  }
  45.68085% {
    content: "21";
  }
  47.80851% {
    content: "22";
  }
  49.93617% {
    content: "23";
  }
  52.06383% {
    content: "24";
  }
  54.19149% {
    content: "25";
  }
  56.31915% {
    content: "26";
  }
  58.44681% {
    content: "27";
  }
  60.57447% {
    content: "28";
  }
  62.70213% {
    content: "29";
  }
  64.82979% {
    content: "30";
  }
  66.95745% {
    content: "31";
  }
  69.08511% {
    content: "32";
  }
  71.21277% {
    content: "33";
  }
  73.34043% {
    content: "34";
  }
  75.46809% {
    content: "35";
  }
  77.59574% {
    content: "36";
  }
  79.7234% {
    content: "37";
  }
  81.85106% {
    content: "38";
  }
  83.97872% {
    content: "39";
  }
  86.10638% {
    content: "40";
  }
  88.23404% {
    content: "41";
  }
  90.3617% {
    content: "42";
  }
  92.48936% {
    content: "43";
  }
  94.61702% {
    content: "44";
  }
  96.74468% {
    content: "45";
  }
  98.87234% {
    content: "46";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-47 {
  0% {
    content: "0";
  }
  3.12766% {
    content: "1";
  }
  5.25532% {
    content: "2";
  }
  7.38298% {
    content: "3";
  }
  9.51064% {
    content: "4";
  }
  11.6383% {
    content: "5";
  }
  13.76596% {
    content: "6";
  }
  15.89362% {
    content: "7";
  }
  18.02128% {
    content: "8";
  }
  20.14894% {
    content: "9";
  }
  22.2766% {
    content: "10";
  }
  24.40426% {
    content: "11";
  }
  26.53191% {
    content: "12";
  }
  28.65957% {
    content: "13";
  }
  30.78723% {
    content: "14";
  }
  32.91489% {
    content: "15";
  }
  35.04255% {
    content: "16";
  }
  37.17021% {
    content: "17";
  }
  39.29787% {
    content: "18";
  }
  41.42553% {
    content: "19";
  }
  43.55319% {
    content: "20";
  }
  45.68085% {
    content: "21";
  }
  47.80851% {
    content: "22";
  }
  49.93617% {
    content: "23";
  }
  52.06383% {
    content: "24";
  }
  54.19149% {
    content: "25";
  }
  56.31915% {
    content: "26";
  }
  58.44681% {
    content: "27";
  }
  60.57447% {
    content: "28";
  }
  62.70213% {
    content: "29";
  }
  64.82979% {
    content: "30";
  }
  66.95745% {
    content: "31";
  }
  69.08511% {
    content: "32";
  }
  71.21277% {
    content: "33";
  }
  73.34043% {
    content: "34";
  }
  75.46809% {
    content: "35";
  }
  77.59574% {
    content: "36";
  }
  79.7234% {
    content: "37";
  }
  81.85106% {
    content: "38";
  }
  83.97872% {
    content: "39";
  }
  86.10638% {
    content: "40";
  }
  88.23404% {
    content: "41";
  }
  90.3617% {
    content: "42";
  }
  92.48936% {
    content: "43";
  }
  94.61702% {
    content: "44";
  }
  96.74468% {
    content: "45";
  }
  98.87234% {
    content: "46";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-48 {
  0% {
    content: "0";
  }
  3.08333% {
    content: "1";
  }
  5.16667% {
    content: "2";
  }
  7.25% {
    content: "3";
  }
  9.33333% {
    content: "4";
  }
  11.41667% {
    content: "5";
  }
  13.5% {
    content: "6";
  }
  15.58333% {
    content: "7";
  }
  17.66667% {
    content: "8";
  }
  19.75% {
    content: "9";
  }
  21.83333% {
    content: "10";
  }
  23.91667% {
    content: "11";
  }
  26% {
    content: "12";
  }
  28.08333% {
    content: "13";
  }
  30.16667% {
    content: "14";
  }
  32.25% {
    content: "15";
  }
  34.33333% {
    content: "16";
  }
  36.41667% {
    content: "17";
  }
  38.5% {
    content: "18";
  }
  40.58333% {
    content: "19";
  }
  42.66667% {
    content: "20";
  }
  44.75% {
    content: "21";
  }
  46.83333% {
    content: "22";
  }
  48.91667% {
    content: "23";
  }
  51% {
    content: "24";
  }
  53.08333% {
    content: "25";
  }
  55.16667% {
    content: "26";
  }
  57.25% {
    content: "27";
  }
  59.33333% {
    content: "28";
  }
  61.41667% {
    content: "29";
  }
  63.5% {
    content: "30";
  }
  65.58333% {
    content: "31";
  }
  67.66667% {
    content: "32";
  }
  69.75% {
    content: "33";
  }
  71.83333% {
    content: "34";
  }
  73.91667% {
    content: "35";
  }
  76% {
    content: "36";
  }
  78.08333% {
    content: "37";
  }
  80.16667% {
    content: "38";
  }
  82.25% {
    content: "39";
  }
  84.33333% {
    content: "40";
  }
  86.41667% {
    content: "41";
  }
  88.5% {
    content: "42";
  }
  90.58333% {
    content: "43";
  }
  92.66667% {
    content: "44";
  }
  94.75% {
    content: "45";
  }
  96.83333% {
    content: "46";
  }
  98.91667% {
    content: "47";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-48 {
  0% {
    content: "0";
  }
  3.08333% {
    content: "1";
  }
  5.16667% {
    content: "2";
  }
  7.25% {
    content: "3";
  }
  9.33333% {
    content: "4";
  }
  11.41667% {
    content: "5";
  }
  13.5% {
    content: "6";
  }
  15.58333% {
    content: "7";
  }
  17.66667% {
    content: "8";
  }
  19.75% {
    content: "9";
  }
  21.83333% {
    content: "10";
  }
  23.91667% {
    content: "11";
  }
  26% {
    content: "12";
  }
  28.08333% {
    content: "13";
  }
  30.16667% {
    content: "14";
  }
  32.25% {
    content: "15";
  }
  34.33333% {
    content: "16";
  }
  36.41667% {
    content: "17";
  }
  38.5% {
    content: "18";
  }
  40.58333% {
    content: "19";
  }
  42.66667% {
    content: "20";
  }
  44.75% {
    content: "21";
  }
  46.83333% {
    content: "22";
  }
  48.91667% {
    content: "23";
  }
  51% {
    content: "24";
  }
  53.08333% {
    content: "25";
  }
  55.16667% {
    content: "26";
  }
  57.25% {
    content: "27";
  }
  59.33333% {
    content: "28";
  }
  61.41667% {
    content: "29";
  }
  63.5% {
    content: "30";
  }
  65.58333% {
    content: "31";
  }
  67.66667% {
    content: "32";
  }
  69.75% {
    content: "33";
  }
  71.83333% {
    content: "34";
  }
  73.91667% {
    content: "35";
  }
  76% {
    content: "36";
  }
  78.08333% {
    content: "37";
  }
  80.16667% {
    content: "38";
  }
  82.25% {
    content: "39";
  }
  84.33333% {
    content: "40";
  }
  86.41667% {
    content: "41";
  }
  88.5% {
    content: "42";
  }
  90.58333% {
    content: "43";
  }
  92.66667% {
    content: "44";
  }
  94.75% {
    content: "45";
  }
  96.83333% {
    content: "46";
  }
  98.91667% {
    content: "47";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-49 {
  0% {
    content: "0";
  }
  3.04082% {
    content: "1";
  }
  5.08163% {
    content: "2";
  }
  7.12245% {
    content: "3";
  }
  9.16327% {
    content: "4";
  }
  11.20408% {
    content: "5";
  }
  13.2449% {
    content: "6";
  }
  15.28571% {
    content: "7";
  }
  17.32653% {
    content: "8";
  }
  19.36735% {
    content: "9";
  }
  21.40816% {
    content: "10";
  }
  23.44898% {
    content: "11";
  }
  25.4898% {
    content: "12";
  }
  27.53061% {
    content: "13";
  }
  29.57143% {
    content: "14";
  }
  31.61224% {
    content: "15";
  }
  33.65306% {
    content: "16";
  }
  35.69388% {
    content: "17";
  }
  37.73469% {
    content: "18";
  }
  39.77551% {
    content: "19";
  }
  41.81633% {
    content: "20";
  }
  43.85714% {
    content: "21";
  }
  45.89796% {
    content: "22";
  }
  47.93878% {
    content: "23";
  }
  49.97959% {
    content: "24";
  }
  52.02041% {
    content: "25";
  }
  54.06122% {
    content: "26";
  }
  56.10204% {
    content: "27";
  }
  58.14286% {
    content: "28";
  }
  60.18367% {
    content: "29";
  }
  62.22449% {
    content: "30";
  }
  64.26531% {
    content: "31";
  }
  66.30612% {
    content: "32";
  }
  68.34694% {
    content: "33";
  }
  70.38776% {
    content: "34";
  }
  72.42857% {
    content: "35";
  }
  74.46939% {
    content: "36";
  }
  76.5102% {
    content: "37";
  }
  78.55102% {
    content: "38";
  }
  80.59184% {
    content: "39";
  }
  82.63265% {
    content: "40";
  }
  84.67347% {
    content: "41";
  }
  86.71429% {
    content: "42";
  }
  88.7551% {
    content: "43";
  }
  90.79592% {
    content: "44";
  }
  92.83673% {
    content: "45";
  }
  94.87755% {
    content: "46";
  }
  96.91837% {
    content: "47";
  }
  98.95918% {
    content: "48";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-49 {
  0% {
    content: "0";
  }
  3.04082% {
    content: "1";
  }
  5.08163% {
    content: "2";
  }
  7.12245% {
    content: "3";
  }
  9.16327% {
    content: "4";
  }
  11.20408% {
    content: "5";
  }
  13.2449% {
    content: "6";
  }
  15.28571% {
    content: "7";
  }
  17.32653% {
    content: "8";
  }
  19.36735% {
    content: "9";
  }
  21.40816% {
    content: "10";
  }
  23.44898% {
    content: "11";
  }
  25.4898% {
    content: "12";
  }
  27.53061% {
    content: "13";
  }
  29.57143% {
    content: "14";
  }
  31.61224% {
    content: "15";
  }
  33.65306% {
    content: "16";
  }
  35.69388% {
    content: "17";
  }
  37.73469% {
    content: "18";
  }
  39.77551% {
    content: "19";
  }
  41.81633% {
    content: "20";
  }
  43.85714% {
    content: "21";
  }
  45.89796% {
    content: "22";
  }
  47.93878% {
    content: "23";
  }
  49.97959% {
    content: "24";
  }
  52.02041% {
    content: "25";
  }
  54.06122% {
    content: "26";
  }
  56.10204% {
    content: "27";
  }
  58.14286% {
    content: "28";
  }
  60.18367% {
    content: "29";
  }
  62.22449% {
    content: "30";
  }
  64.26531% {
    content: "31";
  }
  66.30612% {
    content: "32";
  }
  68.34694% {
    content: "33";
  }
  70.38776% {
    content: "34";
  }
  72.42857% {
    content: "35";
  }
  74.46939% {
    content: "36";
  }
  76.5102% {
    content: "37";
  }
  78.55102% {
    content: "38";
  }
  80.59184% {
    content: "39";
  }
  82.63265% {
    content: "40";
  }
  84.67347% {
    content: "41";
  }
  86.71429% {
    content: "42";
  }
  88.7551% {
    content: "43";
  }
  90.79592% {
    content: "44";
  }
  92.83673% {
    content: "45";
  }
  94.87755% {
    content: "46";
  }
  96.91837% {
    content: "47";
  }
  98.95918% {
    content: "48";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-50 {
  0% {
    content: "0";
  }
  3% {
    content: "1";
  }
  5% {
    content: "2";
  }
  7% {
    content: "3";
  }
  9% {
    content: "4";
  }
  11% {
    content: "5";
  }
  13% {
    content: "6";
  }
  15% {
    content: "7";
  }
  17% {
    content: "8";
  }
  19% {
    content: "9";
  }
  21% {
    content: "10";
  }
  23% {
    content: "11";
  }
  25% {
    content: "12";
  }
  27% {
    content: "13";
  }
  29% {
    content: "14";
  }
  31% {
    content: "15";
  }
  33% {
    content: "16";
  }
  35% {
    content: "17";
  }
  37% {
    content: "18";
  }
  39% {
    content: "19";
  }
  41% {
    content: "20";
  }
  43% {
    content: "21";
  }
  45% {
    content: "22";
  }
  47% {
    content: "23";
  }
  49% {
    content: "24";
  }
  51% {
    content: "25";
  }
  53% {
    content: "26";
  }
  55% {
    content: "27";
  }
  57% {
    content: "28";
  }
  59% {
    content: "29";
  }
  61% {
    content: "30";
  }
  63% {
    content: "31";
  }
  65% {
    content: "32";
  }
  67% {
    content: "33";
  }
  69% {
    content: "34";
  }
  71% {
    content: "35";
  }
  73% {
    content: "36";
  }
  75% {
    content: "37";
  }
  77% {
    content: "38";
  }
  79% {
    content: "39";
  }
  81% {
    content: "40";
  }
  83% {
    content: "41";
  }
  85% {
    content: "42";
  }
  87% {
    content: "43";
  }
  89% {
    content: "44";
  }
  91% {
    content: "45";
  }
  93% {
    content: "46";
  }
  95% {
    content: "47";
  }
  97% {
    content: "48";
  }
  99% {
    content: "49";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-50 {
  0% {
    content: "0";
  }
  3% {
    content: "1";
  }
  5% {
    content: "2";
  }
  7% {
    content: "3";
  }
  9% {
    content: "4";
  }
  11% {
    content: "5";
  }
  13% {
    content: "6";
  }
  15% {
    content: "7";
  }
  17% {
    content: "8";
  }
  19% {
    content: "9";
  }
  21% {
    content: "10";
  }
  23% {
    content: "11";
  }
  25% {
    content: "12";
  }
  27% {
    content: "13";
  }
  29% {
    content: "14";
  }
  31% {
    content: "15";
  }
  33% {
    content: "16";
  }
  35% {
    content: "17";
  }
  37% {
    content: "18";
  }
  39% {
    content: "19";
  }
  41% {
    content: "20";
  }
  43% {
    content: "21";
  }
  45% {
    content: "22";
  }
  47% {
    content: "23";
  }
  49% {
    content: "24";
  }
  51% {
    content: "25";
  }
  53% {
    content: "26";
  }
  55% {
    content: "27";
  }
  57% {
    content: "28";
  }
  59% {
    content: "29";
  }
  61% {
    content: "30";
  }
  63% {
    content: "31";
  }
  65% {
    content: "32";
  }
  67% {
    content: "33";
  }
  69% {
    content: "34";
  }
  71% {
    content: "35";
  }
  73% {
    content: "36";
  }
  75% {
    content: "37";
  }
  77% {
    content: "38";
  }
  79% {
    content: "39";
  }
  81% {
    content: "40";
  }
  83% {
    content: "41";
  }
  85% {
    content: "42";
  }
  87% {
    content: "43";
  }
  89% {
    content: "44";
  }
  91% {
    content: "45";
  }
  93% {
    content: "46";
  }
  95% {
    content: "47";
  }
  97% {
    content: "48";
  }
  99% {
    content: "49";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-51 {
  0% {
    content: "0";
  }
  2.96078% {
    content: "1";
  }
  4.92157% {
    content: "2";
  }
  6.88235% {
    content: "3";
  }
  8.84314% {
    content: "4";
  }
  10.80392% {
    content: "5";
  }
  12.76471% {
    content: "6";
  }
  14.72549% {
    content: "7";
  }
  16.68627% {
    content: "8";
  }
  18.64706% {
    content: "9";
  }
  20.60784% {
    content: "10";
  }
  22.56863% {
    content: "11";
  }
  24.52941% {
    content: "12";
  }
  26.4902% {
    content: "13";
  }
  28.45098% {
    content: "14";
  }
  30.41176% {
    content: "15";
  }
  32.37255% {
    content: "16";
  }
  34.33333% {
    content: "17";
  }
  36.29412% {
    content: "18";
  }
  38.2549% {
    content: "19";
  }
  40.21569% {
    content: "20";
  }
  42.17647% {
    content: "21";
  }
  44.13725% {
    content: "22";
  }
  46.09804% {
    content: "23";
  }
  48.05882% {
    content: "24";
  }
  50.01961% {
    content: "25";
  }
  51.98039% {
    content: "26";
  }
  53.94118% {
    content: "27";
  }
  55.90196% {
    content: "28";
  }
  57.86275% {
    content: "29";
  }
  59.82353% {
    content: "30";
  }
  61.78431% {
    content: "31";
  }
  63.7451% {
    content: "32";
  }
  65.70588% {
    content: "33";
  }
  67.66667% {
    content: "34";
  }
  69.62745% {
    content: "35";
  }
  71.58824% {
    content: "36";
  }
  73.54902% {
    content: "37";
  }
  75.5098% {
    content: "38";
  }
  77.47059% {
    content: "39";
  }
  79.43137% {
    content: "40";
  }
  81.39216% {
    content: "41";
  }
  83.35294% {
    content: "42";
  }
  85.31373% {
    content: "43";
  }
  87.27451% {
    content: "44";
  }
  89.23529% {
    content: "45";
  }
  91.19608% {
    content: "46";
  }
  93.15686% {
    content: "47";
  }
  95.11765% {
    content: "48";
  }
  97.07843% {
    content: "49";
  }
  99.03922% {
    content: "50";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-51 {
  0% {
    content: "0";
  }
  2.96078% {
    content: "1";
  }
  4.92157% {
    content: "2";
  }
  6.88235% {
    content: "3";
  }
  8.84314% {
    content: "4";
  }
  10.80392% {
    content: "5";
  }
  12.76471% {
    content: "6";
  }
  14.72549% {
    content: "7";
  }
  16.68627% {
    content: "8";
  }
  18.64706% {
    content: "9";
  }
  20.60784% {
    content: "10";
  }
  22.56863% {
    content: "11";
  }
  24.52941% {
    content: "12";
  }
  26.4902% {
    content: "13";
  }
  28.45098% {
    content: "14";
  }
  30.41176% {
    content: "15";
  }
  32.37255% {
    content: "16";
  }
  34.33333% {
    content: "17";
  }
  36.29412% {
    content: "18";
  }
  38.2549% {
    content: "19";
  }
  40.21569% {
    content: "20";
  }
  42.17647% {
    content: "21";
  }
  44.13725% {
    content: "22";
  }
  46.09804% {
    content: "23";
  }
  48.05882% {
    content: "24";
  }
  50.01961% {
    content: "25";
  }
  51.98039% {
    content: "26";
  }
  53.94118% {
    content: "27";
  }
  55.90196% {
    content: "28";
  }
  57.86275% {
    content: "29";
  }
  59.82353% {
    content: "30";
  }
  61.78431% {
    content: "31";
  }
  63.7451% {
    content: "32";
  }
  65.70588% {
    content: "33";
  }
  67.66667% {
    content: "34";
  }
  69.62745% {
    content: "35";
  }
  71.58824% {
    content: "36";
  }
  73.54902% {
    content: "37";
  }
  75.5098% {
    content: "38";
  }
  77.47059% {
    content: "39";
  }
  79.43137% {
    content: "40";
  }
  81.39216% {
    content: "41";
  }
  83.35294% {
    content: "42";
  }
  85.31373% {
    content: "43";
  }
  87.27451% {
    content: "44";
  }
  89.23529% {
    content: "45";
  }
  91.19608% {
    content: "46";
  }
  93.15686% {
    content: "47";
  }
  95.11765% {
    content: "48";
  }
  97.07843% {
    content: "49";
  }
  99.03922% {
    content: "50";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-52 {
  0% {
    content: "0";
  }
  2.92308% {
    content: "1";
  }
  4.84615% {
    content: "2";
  }
  6.76923% {
    content: "3";
  }
  8.69231% {
    content: "4";
  }
  10.61538% {
    content: "5";
  }
  12.53846% {
    content: "6";
  }
  14.46154% {
    content: "7";
  }
  16.38462% {
    content: "8";
  }
  18.30769% {
    content: "9";
  }
  20.23077% {
    content: "10";
  }
  22.15385% {
    content: "11";
  }
  24.07692% {
    content: "12";
  }
  26% {
    content: "13";
  }
  27.92308% {
    content: "14";
  }
  29.84615% {
    content: "15";
  }
  31.76923% {
    content: "16";
  }
  33.69231% {
    content: "17";
  }
  35.61538% {
    content: "18";
  }
  37.53846% {
    content: "19";
  }
  39.46154% {
    content: "20";
  }
  41.38462% {
    content: "21";
  }
  43.30769% {
    content: "22";
  }
  45.23077% {
    content: "23";
  }
  47.15385% {
    content: "24";
  }
  49.07692% {
    content: "25";
  }
  51% {
    content: "26";
  }
  52.92308% {
    content: "27";
  }
  54.84615% {
    content: "28";
  }
  56.76923% {
    content: "29";
  }
  58.69231% {
    content: "30";
  }
  60.61538% {
    content: "31";
  }
  62.53846% {
    content: "32";
  }
  64.46154% {
    content: "33";
  }
  66.38462% {
    content: "34";
  }
  68.30769% {
    content: "35";
  }
  70.23077% {
    content: "36";
  }
  72.15385% {
    content: "37";
  }
  74.07692% {
    content: "38";
  }
  76% {
    content: "39";
  }
  77.92308% {
    content: "40";
  }
  79.84615% {
    content: "41";
  }
  81.76923% {
    content: "42";
  }
  83.69231% {
    content: "43";
  }
  85.61538% {
    content: "44";
  }
  87.53846% {
    content: "45";
  }
  89.46154% {
    content: "46";
  }
  91.38462% {
    content: "47";
  }
  93.30769% {
    content: "48";
  }
  95.23077% {
    content: "49";
  }
  97.15385% {
    content: "50";
  }
  99.07692% {
    content: "51";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-52 {
  0% {
    content: "0";
  }
  2.92308% {
    content: "1";
  }
  4.84615% {
    content: "2";
  }
  6.76923% {
    content: "3";
  }
  8.69231% {
    content: "4";
  }
  10.61538% {
    content: "5";
  }
  12.53846% {
    content: "6";
  }
  14.46154% {
    content: "7";
  }
  16.38462% {
    content: "8";
  }
  18.30769% {
    content: "9";
  }
  20.23077% {
    content: "10";
  }
  22.15385% {
    content: "11";
  }
  24.07692% {
    content: "12";
  }
  26% {
    content: "13";
  }
  27.92308% {
    content: "14";
  }
  29.84615% {
    content: "15";
  }
  31.76923% {
    content: "16";
  }
  33.69231% {
    content: "17";
  }
  35.61538% {
    content: "18";
  }
  37.53846% {
    content: "19";
  }
  39.46154% {
    content: "20";
  }
  41.38462% {
    content: "21";
  }
  43.30769% {
    content: "22";
  }
  45.23077% {
    content: "23";
  }
  47.15385% {
    content: "24";
  }
  49.07692% {
    content: "25";
  }
  51% {
    content: "26";
  }
  52.92308% {
    content: "27";
  }
  54.84615% {
    content: "28";
  }
  56.76923% {
    content: "29";
  }
  58.69231% {
    content: "30";
  }
  60.61538% {
    content: "31";
  }
  62.53846% {
    content: "32";
  }
  64.46154% {
    content: "33";
  }
  66.38462% {
    content: "34";
  }
  68.30769% {
    content: "35";
  }
  70.23077% {
    content: "36";
  }
  72.15385% {
    content: "37";
  }
  74.07692% {
    content: "38";
  }
  76% {
    content: "39";
  }
  77.92308% {
    content: "40";
  }
  79.84615% {
    content: "41";
  }
  81.76923% {
    content: "42";
  }
  83.69231% {
    content: "43";
  }
  85.61538% {
    content: "44";
  }
  87.53846% {
    content: "45";
  }
  89.46154% {
    content: "46";
  }
  91.38462% {
    content: "47";
  }
  93.30769% {
    content: "48";
  }
  95.23077% {
    content: "49";
  }
  97.15385% {
    content: "50";
  }
  99.07692% {
    content: "51";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-53 {
  0% {
    content: "0";
  }
  2.88679% {
    content: "1";
  }
  4.77358% {
    content: "2";
  }
  6.66038% {
    content: "3";
  }
  8.54717% {
    content: "4";
  }
  10.43396% {
    content: "5";
  }
  12.32075% {
    content: "6";
  }
  14.20755% {
    content: "7";
  }
  16.09434% {
    content: "8";
  }
  17.98113% {
    content: "9";
  }
  19.86792% {
    content: "10";
  }
  21.75472% {
    content: "11";
  }
  23.64151% {
    content: "12";
  }
  25.5283% {
    content: "13";
  }
  27.41509% {
    content: "14";
  }
  29.30189% {
    content: "15";
  }
  31.18868% {
    content: "16";
  }
  33.07547% {
    content: "17";
  }
  34.96226% {
    content: "18";
  }
  36.84906% {
    content: "19";
  }
  38.73585% {
    content: "20";
  }
  40.62264% {
    content: "21";
  }
  42.50943% {
    content: "22";
  }
  44.39623% {
    content: "23";
  }
  46.28302% {
    content: "24";
  }
  48.16981% {
    content: "25";
  }
  50.0566% {
    content: "26";
  }
  51.9434% {
    content: "27";
  }
  53.83019% {
    content: "28";
  }
  55.71698% {
    content: "29";
  }
  57.60377% {
    content: "30";
  }
  59.49057% {
    content: "31";
  }
  61.37736% {
    content: "32";
  }
  63.26415% {
    content: "33";
  }
  65.15094% {
    content: "34";
  }
  67.03774% {
    content: "35";
  }
  68.92453% {
    content: "36";
  }
  70.81132% {
    content: "37";
  }
  72.69811% {
    content: "38";
  }
  74.58491% {
    content: "39";
  }
  76.4717% {
    content: "40";
  }
  78.35849% {
    content: "41";
  }
  80.24528% {
    content: "42";
  }
  82.13208% {
    content: "43";
  }
  84.01887% {
    content: "44";
  }
  85.90566% {
    content: "45";
  }
  87.79245% {
    content: "46";
  }
  89.67925% {
    content: "47";
  }
  91.56604% {
    content: "48";
  }
  93.45283% {
    content: "49";
  }
  95.33962% {
    content: "50";
  }
  97.22642% {
    content: "51";
  }
  99.11321% {
    content: "52";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-53 {
  0% {
    content: "0";
  }
  2.88679% {
    content: "1";
  }
  4.77358% {
    content: "2";
  }
  6.66038% {
    content: "3";
  }
  8.54717% {
    content: "4";
  }
  10.43396% {
    content: "5";
  }
  12.32075% {
    content: "6";
  }
  14.20755% {
    content: "7";
  }
  16.09434% {
    content: "8";
  }
  17.98113% {
    content: "9";
  }
  19.86792% {
    content: "10";
  }
  21.75472% {
    content: "11";
  }
  23.64151% {
    content: "12";
  }
  25.5283% {
    content: "13";
  }
  27.41509% {
    content: "14";
  }
  29.30189% {
    content: "15";
  }
  31.18868% {
    content: "16";
  }
  33.07547% {
    content: "17";
  }
  34.96226% {
    content: "18";
  }
  36.84906% {
    content: "19";
  }
  38.73585% {
    content: "20";
  }
  40.62264% {
    content: "21";
  }
  42.50943% {
    content: "22";
  }
  44.39623% {
    content: "23";
  }
  46.28302% {
    content: "24";
  }
  48.16981% {
    content: "25";
  }
  50.0566% {
    content: "26";
  }
  51.9434% {
    content: "27";
  }
  53.83019% {
    content: "28";
  }
  55.71698% {
    content: "29";
  }
  57.60377% {
    content: "30";
  }
  59.49057% {
    content: "31";
  }
  61.37736% {
    content: "32";
  }
  63.26415% {
    content: "33";
  }
  65.15094% {
    content: "34";
  }
  67.03774% {
    content: "35";
  }
  68.92453% {
    content: "36";
  }
  70.81132% {
    content: "37";
  }
  72.69811% {
    content: "38";
  }
  74.58491% {
    content: "39";
  }
  76.4717% {
    content: "40";
  }
  78.35849% {
    content: "41";
  }
  80.24528% {
    content: "42";
  }
  82.13208% {
    content: "43";
  }
  84.01887% {
    content: "44";
  }
  85.90566% {
    content: "45";
  }
  87.79245% {
    content: "46";
  }
  89.67925% {
    content: "47";
  }
  91.56604% {
    content: "48";
  }
  93.45283% {
    content: "49";
  }
  95.33962% {
    content: "50";
  }
  97.22642% {
    content: "51";
  }
  99.11321% {
    content: "52";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-54 {
  0% {
    content: "0";
  }
  2.85185% {
    content: "1";
  }
  4.7037% {
    content: "2";
  }
  6.55556% {
    content: "3";
  }
  8.40741% {
    content: "4";
  }
  10.25926% {
    content: "5";
  }
  12.11111% {
    content: "6";
  }
  13.96296% {
    content: "7";
  }
  15.81481% {
    content: "8";
  }
  17.66667% {
    content: "9";
  }
  19.51852% {
    content: "10";
  }
  21.37037% {
    content: "11";
  }
  23.22222% {
    content: "12";
  }
  25.07407% {
    content: "13";
  }
  26.92593% {
    content: "14";
  }
  28.77778% {
    content: "15";
  }
  30.62963% {
    content: "16";
  }
  32.48148% {
    content: "17";
  }
  34.33333% {
    content: "18";
  }
  36.18519% {
    content: "19";
  }
  38.03704% {
    content: "20";
  }
  39.88889% {
    content: "21";
  }
  41.74074% {
    content: "22";
  }
  43.59259% {
    content: "23";
  }
  45.44444% {
    content: "24";
  }
  47.2963% {
    content: "25";
  }
  49.14815% {
    content: "26";
  }
  51% {
    content: "27";
  }
  52.85185% {
    content: "28";
  }
  54.7037% {
    content: "29";
  }
  56.55556% {
    content: "30";
  }
  58.40741% {
    content: "31";
  }
  60.25926% {
    content: "32";
  }
  62.11111% {
    content: "33";
  }
  63.96296% {
    content: "34";
  }
  65.81481% {
    content: "35";
  }
  67.66667% {
    content: "36";
  }
  69.51852% {
    content: "37";
  }
  71.37037% {
    content: "38";
  }
  73.22222% {
    content: "39";
  }
  75.07407% {
    content: "40";
  }
  76.92593% {
    content: "41";
  }
  78.77778% {
    content: "42";
  }
  80.62963% {
    content: "43";
  }
  82.48148% {
    content: "44";
  }
  84.33333% {
    content: "45";
  }
  86.18519% {
    content: "46";
  }
  88.03704% {
    content: "47";
  }
  89.88889% {
    content: "48";
  }
  91.74074% {
    content: "49";
  }
  93.59259% {
    content: "50";
  }
  95.44444% {
    content: "51";
  }
  97.2963% {
    content: "52";
  }
  99.14815% {
    content: "53";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-54 {
  0% {
    content: "0";
  }
  2.85185% {
    content: "1";
  }
  4.7037% {
    content: "2";
  }
  6.55556% {
    content: "3";
  }
  8.40741% {
    content: "4";
  }
  10.25926% {
    content: "5";
  }
  12.11111% {
    content: "6";
  }
  13.96296% {
    content: "7";
  }
  15.81481% {
    content: "8";
  }
  17.66667% {
    content: "9";
  }
  19.51852% {
    content: "10";
  }
  21.37037% {
    content: "11";
  }
  23.22222% {
    content: "12";
  }
  25.07407% {
    content: "13";
  }
  26.92593% {
    content: "14";
  }
  28.77778% {
    content: "15";
  }
  30.62963% {
    content: "16";
  }
  32.48148% {
    content: "17";
  }
  34.33333% {
    content: "18";
  }
  36.18519% {
    content: "19";
  }
  38.03704% {
    content: "20";
  }
  39.88889% {
    content: "21";
  }
  41.74074% {
    content: "22";
  }
  43.59259% {
    content: "23";
  }
  45.44444% {
    content: "24";
  }
  47.2963% {
    content: "25";
  }
  49.14815% {
    content: "26";
  }
  51% {
    content: "27";
  }
  52.85185% {
    content: "28";
  }
  54.7037% {
    content: "29";
  }
  56.55556% {
    content: "30";
  }
  58.40741% {
    content: "31";
  }
  60.25926% {
    content: "32";
  }
  62.11111% {
    content: "33";
  }
  63.96296% {
    content: "34";
  }
  65.81481% {
    content: "35";
  }
  67.66667% {
    content: "36";
  }
  69.51852% {
    content: "37";
  }
  71.37037% {
    content: "38";
  }
  73.22222% {
    content: "39";
  }
  75.07407% {
    content: "40";
  }
  76.92593% {
    content: "41";
  }
  78.77778% {
    content: "42";
  }
  80.62963% {
    content: "43";
  }
  82.48148% {
    content: "44";
  }
  84.33333% {
    content: "45";
  }
  86.18519% {
    content: "46";
  }
  88.03704% {
    content: "47";
  }
  89.88889% {
    content: "48";
  }
  91.74074% {
    content: "49";
  }
  93.59259% {
    content: "50";
  }
  95.44444% {
    content: "51";
  }
  97.2963% {
    content: "52";
  }
  99.14815% {
    content: "53";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-55 {
  0% {
    content: "0";
  }
  2.81818% {
    content: "1";
  }
  4.63636% {
    content: "2";
  }
  6.45455% {
    content: "3";
  }
  8.27273% {
    content: "4";
  }
  10.09091% {
    content: "5";
  }
  11.90909% {
    content: "6";
  }
  13.72727% {
    content: "7";
  }
  15.54545% {
    content: "8";
  }
  17.36364% {
    content: "9";
  }
  19.18182% {
    content: "10";
  }
  21% {
    content: "11";
  }
  22.81818% {
    content: "12";
  }
  24.63636% {
    content: "13";
  }
  26.45455% {
    content: "14";
  }
  28.27273% {
    content: "15";
  }
  30.09091% {
    content: "16";
  }
  31.90909% {
    content: "17";
  }
  33.72727% {
    content: "18";
  }
  35.54545% {
    content: "19";
  }
  37.36364% {
    content: "20";
  }
  39.18182% {
    content: "21";
  }
  41% {
    content: "22";
  }
  42.81818% {
    content: "23";
  }
  44.63636% {
    content: "24";
  }
  46.45455% {
    content: "25";
  }
  48.27273% {
    content: "26";
  }
  50.09091% {
    content: "27";
  }
  51.90909% {
    content: "28";
  }
  53.72727% {
    content: "29";
  }
  55.54545% {
    content: "30";
  }
  57.36364% {
    content: "31";
  }
  59.18182% {
    content: "32";
  }
  61% {
    content: "33";
  }
  62.81818% {
    content: "34";
  }
  64.63636% {
    content: "35";
  }
  66.45455% {
    content: "36";
  }
  68.27273% {
    content: "37";
  }
  70.09091% {
    content: "38";
  }
  71.90909% {
    content: "39";
  }
  73.72727% {
    content: "40";
  }
  75.54545% {
    content: "41";
  }
  77.36364% {
    content: "42";
  }
  79.18182% {
    content: "43";
  }
  81% {
    content: "44";
  }
  82.81818% {
    content: "45";
  }
  84.63636% {
    content: "46";
  }
  86.45455% {
    content: "47";
  }
  88.27273% {
    content: "48";
  }
  90.09091% {
    content: "49";
  }
  91.90909% {
    content: "50";
  }
  93.72727% {
    content: "51";
  }
  95.54545% {
    content: "52";
  }
  97.36364% {
    content: "53";
  }
  99.18182% {
    content: "54";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-55 {
  0% {
    content: "0";
  }
  2.81818% {
    content: "1";
  }
  4.63636% {
    content: "2";
  }
  6.45455% {
    content: "3";
  }
  8.27273% {
    content: "4";
  }
  10.09091% {
    content: "5";
  }
  11.90909% {
    content: "6";
  }
  13.72727% {
    content: "7";
  }
  15.54545% {
    content: "8";
  }
  17.36364% {
    content: "9";
  }
  19.18182% {
    content: "10";
  }
  21% {
    content: "11";
  }
  22.81818% {
    content: "12";
  }
  24.63636% {
    content: "13";
  }
  26.45455% {
    content: "14";
  }
  28.27273% {
    content: "15";
  }
  30.09091% {
    content: "16";
  }
  31.90909% {
    content: "17";
  }
  33.72727% {
    content: "18";
  }
  35.54545% {
    content: "19";
  }
  37.36364% {
    content: "20";
  }
  39.18182% {
    content: "21";
  }
  41% {
    content: "22";
  }
  42.81818% {
    content: "23";
  }
  44.63636% {
    content: "24";
  }
  46.45455% {
    content: "25";
  }
  48.27273% {
    content: "26";
  }
  50.09091% {
    content: "27";
  }
  51.90909% {
    content: "28";
  }
  53.72727% {
    content: "29";
  }
  55.54545% {
    content: "30";
  }
  57.36364% {
    content: "31";
  }
  59.18182% {
    content: "32";
  }
  61% {
    content: "33";
  }
  62.81818% {
    content: "34";
  }
  64.63636% {
    content: "35";
  }
  66.45455% {
    content: "36";
  }
  68.27273% {
    content: "37";
  }
  70.09091% {
    content: "38";
  }
  71.90909% {
    content: "39";
  }
  73.72727% {
    content: "40";
  }
  75.54545% {
    content: "41";
  }
  77.36364% {
    content: "42";
  }
  79.18182% {
    content: "43";
  }
  81% {
    content: "44";
  }
  82.81818% {
    content: "45";
  }
  84.63636% {
    content: "46";
  }
  86.45455% {
    content: "47";
  }
  88.27273% {
    content: "48";
  }
  90.09091% {
    content: "49";
  }
  91.90909% {
    content: "50";
  }
  93.72727% {
    content: "51";
  }
  95.54545% {
    content: "52";
  }
  97.36364% {
    content: "53";
  }
  99.18182% {
    content: "54";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-56 {
  0% {
    content: "0";
  }
  2.78571% {
    content: "1";
  }
  4.57143% {
    content: "2";
  }
  6.35714% {
    content: "3";
  }
  8.14286% {
    content: "4";
  }
  9.92857% {
    content: "5";
  }
  11.71429% {
    content: "6";
  }
  13.5% {
    content: "7";
  }
  15.28571% {
    content: "8";
  }
  17.07143% {
    content: "9";
  }
  18.85714% {
    content: "10";
  }
  20.64286% {
    content: "11";
  }
  22.42857% {
    content: "12";
  }
  24.21429% {
    content: "13";
  }
  26% {
    content: "14";
  }
  27.78571% {
    content: "15";
  }
  29.57143% {
    content: "16";
  }
  31.35714% {
    content: "17";
  }
  33.14286% {
    content: "18";
  }
  34.92857% {
    content: "19";
  }
  36.71429% {
    content: "20";
  }
  38.5% {
    content: "21";
  }
  40.28571% {
    content: "22";
  }
  42.07143% {
    content: "23";
  }
  43.85714% {
    content: "24";
  }
  45.64286% {
    content: "25";
  }
  47.42857% {
    content: "26";
  }
  49.21429% {
    content: "27";
  }
  51% {
    content: "28";
  }
  52.78571% {
    content: "29";
  }
  54.57143% {
    content: "30";
  }
  56.35714% {
    content: "31";
  }
  58.14286% {
    content: "32";
  }
  59.92857% {
    content: "33";
  }
  61.71429% {
    content: "34";
  }
  63.5% {
    content: "35";
  }
  65.28571% {
    content: "36";
  }
  67.07143% {
    content: "37";
  }
  68.85714% {
    content: "38";
  }
  70.64286% {
    content: "39";
  }
  72.42857% {
    content: "40";
  }
  74.21429% {
    content: "41";
  }
  76% {
    content: "42";
  }
  77.78571% {
    content: "43";
  }
  79.57143% {
    content: "44";
  }
  81.35714% {
    content: "45";
  }
  83.14286% {
    content: "46";
  }
  84.92857% {
    content: "47";
  }
  86.71429% {
    content: "48";
  }
  88.5% {
    content: "49";
  }
  90.28571% {
    content: "50";
  }
  92.07143% {
    content: "51";
  }
  93.85714% {
    content: "52";
  }
  95.64286% {
    content: "53";
  }
  97.42857% {
    content: "54";
  }
  99.21429% {
    content: "55";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-56 {
  0% {
    content: "0";
  }
  2.78571% {
    content: "1";
  }
  4.57143% {
    content: "2";
  }
  6.35714% {
    content: "3";
  }
  8.14286% {
    content: "4";
  }
  9.92857% {
    content: "5";
  }
  11.71429% {
    content: "6";
  }
  13.5% {
    content: "7";
  }
  15.28571% {
    content: "8";
  }
  17.07143% {
    content: "9";
  }
  18.85714% {
    content: "10";
  }
  20.64286% {
    content: "11";
  }
  22.42857% {
    content: "12";
  }
  24.21429% {
    content: "13";
  }
  26% {
    content: "14";
  }
  27.78571% {
    content: "15";
  }
  29.57143% {
    content: "16";
  }
  31.35714% {
    content: "17";
  }
  33.14286% {
    content: "18";
  }
  34.92857% {
    content: "19";
  }
  36.71429% {
    content: "20";
  }
  38.5% {
    content: "21";
  }
  40.28571% {
    content: "22";
  }
  42.07143% {
    content: "23";
  }
  43.85714% {
    content: "24";
  }
  45.64286% {
    content: "25";
  }
  47.42857% {
    content: "26";
  }
  49.21429% {
    content: "27";
  }
  51% {
    content: "28";
  }
  52.78571% {
    content: "29";
  }
  54.57143% {
    content: "30";
  }
  56.35714% {
    content: "31";
  }
  58.14286% {
    content: "32";
  }
  59.92857% {
    content: "33";
  }
  61.71429% {
    content: "34";
  }
  63.5% {
    content: "35";
  }
  65.28571% {
    content: "36";
  }
  67.07143% {
    content: "37";
  }
  68.85714% {
    content: "38";
  }
  70.64286% {
    content: "39";
  }
  72.42857% {
    content: "40";
  }
  74.21429% {
    content: "41";
  }
  76% {
    content: "42";
  }
  77.78571% {
    content: "43";
  }
  79.57143% {
    content: "44";
  }
  81.35714% {
    content: "45";
  }
  83.14286% {
    content: "46";
  }
  84.92857% {
    content: "47";
  }
  86.71429% {
    content: "48";
  }
  88.5% {
    content: "49";
  }
  90.28571% {
    content: "50";
  }
  92.07143% {
    content: "51";
  }
  93.85714% {
    content: "52";
  }
  95.64286% {
    content: "53";
  }
  97.42857% {
    content: "54";
  }
  99.21429% {
    content: "55";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-57 {
  0% {
    content: "0";
  }
  2.75439% {
    content: "1";
  }
  4.50877% {
    content: "2";
  }
  6.26316% {
    content: "3";
  }
  8.01754% {
    content: "4";
  }
  9.77193% {
    content: "5";
  }
  11.52632% {
    content: "6";
  }
  13.2807% {
    content: "7";
  }
  15.03509% {
    content: "8";
  }
  16.78947% {
    content: "9";
  }
  18.54386% {
    content: "10";
  }
  20.29825% {
    content: "11";
  }
  22.05263% {
    content: "12";
  }
  23.80702% {
    content: "13";
  }
  25.5614% {
    content: "14";
  }
  27.31579% {
    content: "15";
  }
  29.07018% {
    content: "16";
  }
  30.82456% {
    content: "17";
  }
  32.57895% {
    content: "18";
  }
  34.33333% {
    content: "19";
  }
  36.08772% {
    content: "20";
  }
  37.84211% {
    content: "21";
  }
  39.59649% {
    content: "22";
  }
  41.35088% {
    content: "23";
  }
  43.10526% {
    content: "24";
  }
  44.85965% {
    content: "25";
  }
  46.61404% {
    content: "26";
  }
  48.36842% {
    content: "27";
  }
  50.12281% {
    content: "28";
  }
  51.87719% {
    content: "29";
  }
  53.63158% {
    content: "30";
  }
  55.38596% {
    content: "31";
  }
  57.14035% {
    content: "32";
  }
  58.89474% {
    content: "33";
  }
  60.64912% {
    content: "34";
  }
  62.40351% {
    content: "35";
  }
  64.15789% {
    content: "36";
  }
  65.91228% {
    content: "37";
  }
  67.66667% {
    content: "38";
  }
  69.42105% {
    content: "39";
  }
  71.17544% {
    content: "40";
  }
  72.92982% {
    content: "41";
  }
  74.68421% {
    content: "42";
  }
  76.4386% {
    content: "43";
  }
  78.19298% {
    content: "44";
  }
  79.94737% {
    content: "45";
  }
  81.70175% {
    content: "46";
  }
  83.45614% {
    content: "47";
  }
  85.21053% {
    content: "48";
  }
  86.96491% {
    content: "49";
  }
  88.7193% {
    content: "50";
  }
  90.47368% {
    content: "51";
  }
  92.22807% {
    content: "52";
  }
  93.98246% {
    content: "53";
  }
  95.73684% {
    content: "54";
  }
  97.49123% {
    content: "55";
  }
  99.24561% {
    content: "56";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-57 {
  0% {
    content: "0";
  }
  2.75439% {
    content: "1";
  }
  4.50877% {
    content: "2";
  }
  6.26316% {
    content: "3";
  }
  8.01754% {
    content: "4";
  }
  9.77193% {
    content: "5";
  }
  11.52632% {
    content: "6";
  }
  13.2807% {
    content: "7";
  }
  15.03509% {
    content: "8";
  }
  16.78947% {
    content: "9";
  }
  18.54386% {
    content: "10";
  }
  20.29825% {
    content: "11";
  }
  22.05263% {
    content: "12";
  }
  23.80702% {
    content: "13";
  }
  25.5614% {
    content: "14";
  }
  27.31579% {
    content: "15";
  }
  29.07018% {
    content: "16";
  }
  30.82456% {
    content: "17";
  }
  32.57895% {
    content: "18";
  }
  34.33333% {
    content: "19";
  }
  36.08772% {
    content: "20";
  }
  37.84211% {
    content: "21";
  }
  39.59649% {
    content: "22";
  }
  41.35088% {
    content: "23";
  }
  43.10526% {
    content: "24";
  }
  44.85965% {
    content: "25";
  }
  46.61404% {
    content: "26";
  }
  48.36842% {
    content: "27";
  }
  50.12281% {
    content: "28";
  }
  51.87719% {
    content: "29";
  }
  53.63158% {
    content: "30";
  }
  55.38596% {
    content: "31";
  }
  57.14035% {
    content: "32";
  }
  58.89474% {
    content: "33";
  }
  60.64912% {
    content: "34";
  }
  62.40351% {
    content: "35";
  }
  64.15789% {
    content: "36";
  }
  65.91228% {
    content: "37";
  }
  67.66667% {
    content: "38";
  }
  69.42105% {
    content: "39";
  }
  71.17544% {
    content: "40";
  }
  72.92982% {
    content: "41";
  }
  74.68421% {
    content: "42";
  }
  76.4386% {
    content: "43";
  }
  78.19298% {
    content: "44";
  }
  79.94737% {
    content: "45";
  }
  81.70175% {
    content: "46";
  }
  83.45614% {
    content: "47";
  }
  85.21053% {
    content: "48";
  }
  86.96491% {
    content: "49";
  }
  88.7193% {
    content: "50";
  }
  90.47368% {
    content: "51";
  }
  92.22807% {
    content: "52";
  }
  93.98246% {
    content: "53";
  }
  95.73684% {
    content: "54";
  }
  97.49123% {
    content: "55";
  }
  99.24561% {
    content: "56";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-58 {
  0% {
    content: "0";
  }
  2.72414% {
    content: "1";
  }
  4.44828% {
    content: "2";
  }
  6.17241% {
    content: "3";
  }
  7.89655% {
    content: "4";
  }
  9.62069% {
    content: "5";
  }
  11.34483% {
    content: "6";
  }
  13.06897% {
    content: "7";
  }
  14.7931% {
    content: "8";
  }
  16.51724% {
    content: "9";
  }
  18.24138% {
    content: "10";
  }
  19.96552% {
    content: "11";
  }
  21.68966% {
    content: "12";
  }
  23.41379% {
    content: "13";
  }
  25.13793% {
    content: "14";
  }
  26.86207% {
    content: "15";
  }
  28.58621% {
    content: "16";
  }
  30.31034% {
    content: "17";
  }
  32.03448% {
    content: "18";
  }
  33.75862% {
    content: "19";
  }
  35.48276% {
    content: "20";
  }
  37.2069% {
    content: "21";
  }
  38.93103% {
    content: "22";
  }
  40.65517% {
    content: "23";
  }
  42.37931% {
    content: "24";
  }
  44.10345% {
    content: "25";
  }
  45.82759% {
    content: "26";
  }
  47.55172% {
    content: "27";
  }
  49.27586% {
    content: "28";
  }
  51% {
    content: "29";
  }
  52.72414% {
    content: "30";
  }
  54.44828% {
    content: "31";
  }
  56.17241% {
    content: "32";
  }
  57.89655% {
    content: "33";
  }
  59.62069% {
    content: "34";
  }
  61.34483% {
    content: "35";
  }
  63.06897% {
    content: "36";
  }
  64.7931% {
    content: "37";
  }
  66.51724% {
    content: "38";
  }
  68.24138% {
    content: "39";
  }
  69.96552% {
    content: "40";
  }
  71.68966% {
    content: "41";
  }
  73.41379% {
    content: "42";
  }
  75.13793% {
    content: "43";
  }
  76.86207% {
    content: "44";
  }
  78.58621% {
    content: "45";
  }
  80.31034% {
    content: "46";
  }
  82.03448% {
    content: "47";
  }
  83.75862% {
    content: "48";
  }
  85.48276% {
    content: "49";
  }
  87.2069% {
    content: "50";
  }
  88.93103% {
    content: "51";
  }
  90.65517% {
    content: "52";
  }
  92.37931% {
    content: "53";
  }
  94.10345% {
    content: "54";
  }
  95.82759% {
    content: "55";
  }
  97.55172% {
    content: "56";
  }
  99.27586% {
    content: "57";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-58 {
  0% {
    content: "0";
  }
  2.72414% {
    content: "1";
  }
  4.44828% {
    content: "2";
  }
  6.17241% {
    content: "3";
  }
  7.89655% {
    content: "4";
  }
  9.62069% {
    content: "5";
  }
  11.34483% {
    content: "6";
  }
  13.06897% {
    content: "7";
  }
  14.7931% {
    content: "8";
  }
  16.51724% {
    content: "9";
  }
  18.24138% {
    content: "10";
  }
  19.96552% {
    content: "11";
  }
  21.68966% {
    content: "12";
  }
  23.41379% {
    content: "13";
  }
  25.13793% {
    content: "14";
  }
  26.86207% {
    content: "15";
  }
  28.58621% {
    content: "16";
  }
  30.31034% {
    content: "17";
  }
  32.03448% {
    content: "18";
  }
  33.75862% {
    content: "19";
  }
  35.48276% {
    content: "20";
  }
  37.2069% {
    content: "21";
  }
  38.93103% {
    content: "22";
  }
  40.65517% {
    content: "23";
  }
  42.37931% {
    content: "24";
  }
  44.10345% {
    content: "25";
  }
  45.82759% {
    content: "26";
  }
  47.55172% {
    content: "27";
  }
  49.27586% {
    content: "28";
  }
  51% {
    content: "29";
  }
  52.72414% {
    content: "30";
  }
  54.44828% {
    content: "31";
  }
  56.17241% {
    content: "32";
  }
  57.89655% {
    content: "33";
  }
  59.62069% {
    content: "34";
  }
  61.34483% {
    content: "35";
  }
  63.06897% {
    content: "36";
  }
  64.7931% {
    content: "37";
  }
  66.51724% {
    content: "38";
  }
  68.24138% {
    content: "39";
  }
  69.96552% {
    content: "40";
  }
  71.68966% {
    content: "41";
  }
  73.41379% {
    content: "42";
  }
  75.13793% {
    content: "43";
  }
  76.86207% {
    content: "44";
  }
  78.58621% {
    content: "45";
  }
  80.31034% {
    content: "46";
  }
  82.03448% {
    content: "47";
  }
  83.75862% {
    content: "48";
  }
  85.48276% {
    content: "49";
  }
  87.2069% {
    content: "50";
  }
  88.93103% {
    content: "51";
  }
  90.65517% {
    content: "52";
  }
  92.37931% {
    content: "53";
  }
  94.10345% {
    content: "54";
  }
  95.82759% {
    content: "55";
  }
  97.55172% {
    content: "56";
  }
  99.27586% {
    content: "57";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-59 {
  0% {
    content: "0";
  }
  2.69492% {
    content: "1";
  }
  4.38983% {
    content: "2";
  }
  6.08475% {
    content: "3";
  }
  7.77966% {
    content: "4";
  }
  9.47458% {
    content: "5";
  }
  11.16949% {
    content: "6";
  }
  12.86441% {
    content: "7";
  }
  14.55932% {
    content: "8";
  }
  16.25424% {
    content: "9";
  }
  17.94915% {
    content: "10";
  }
  19.64407% {
    content: "11";
  }
  21.33898% {
    content: "12";
  }
  23.0339% {
    content: "13";
  }
  24.72881% {
    content: "14";
  }
  26.42373% {
    content: "15";
  }
  28.11864% {
    content: "16";
  }
  29.81356% {
    content: "17";
  }
  31.50847% {
    content: "18";
  }
  33.20339% {
    content: "19";
  }
  34.89831% {
    content: "20";
  }
  36.59322% {
    content: "21";
  }
  38.28814% {
    content: "22";
  }
  39.98305% {
    content: "23";
  }
  41.67797% {
    content: "24";
  }
  43.37288% {
    content: "25";
  }
  45.0678% {
    content: "26";
  }
  46.76271% {
    content: "27";
  }
  48.45763% {
    content: "28";
  }
  50.15254% {
    content: "29";
  }
  51.84746% {
    content: "30";
  }
  53.54237% {
    content: "31";
  }
  55.23729% {
    content: "32";
  }
  56.9322% {
    content: "33";
  }
  58.62712% {
    content: "34";
  }
  60.32203% {
    content: "35";
  }
  62.01695% {
    content: "36";
  }
  63.71186% {
    content: "37";
  }
  65.40678% {
    content: "38";
  }
  67.10169% {
    content: "39";
  }
  68.79661% {
    content: "40";
  }
  70.49153% {
    content: "41";
  }
  72.18644% {
    content: "42";
  }
  73.88136% {
    content: "43";
  }
  75.57627% {
    content: "44";
  }
  77.27119% {
    content: "45";
  }
  78.9661% {
    content: "46";
  }
  80.66102% {
    content: "47";
  }
  82.35593% {
    content: "48";
  }
  84.05085% {
    content: "49";
  }
  85.74576% {
    content: "50";
  }
  87.44068% {
    content: "51";
  }
  89.13559% {
    content: "52";
  }
  90.83051% {
    content: "53";
  }
  92.52542% {
    content: "54";
  }
  94.22034% {
    content: "55";
  }
  95.91525% {
    content: "56";
  }
  97.61017% {
    content: "57";
  }
  99.30508% {
    content: "58";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-59 {
  0% {
    content: "0";
  }
  2.69492% {
    content: "1";
  }
  4.38983% {
    content: "2";
  }
  6.08475% {
    content: "3";
  }
  7.77966% {
    content: "4";
  }
  9.47458% {
    content: "5";
  }
  11.16949% {
    content: "6";
  }
  12.86441% {
    content: "7";
  }
  14.55932% {
    content: "8";
  }
  16.25424% {
    content: "9";
  }
  17.94915% {
    content: "10";
  }
  19.64407% {
    content: "11";
  }
  21.33898% {
    content: "12";
  }
  23.0339% {
    content: "13";
  }
  24.72881% {
    content: "14";
  }
  26.42373% {
    content: "15";
  }
  28.11864% {
    content: "16";
  }
  29.81356% {
    content: "17";
  }
  31.50847% {
    content: "18";
  }
  33.20339% {
    content: "19";
  }
  34.89831% {
    content: "20";
  }
  36.59322% {
    content: "21";
  }
  38.28814% {
    content: "22";
  }
  39.98305% {
    content: "23";
  }
  41.67797% {
    content: "24";
  }
  43.37288% {
    content: "25";
  }
  45.0678% {
    content: "26";
  }
  46.76271% {
    content: "27";
  }
  48.45763% {
    content: "28";
  }
  50.15254% {
    content: "29";
  }
  51.84746% {
    content: "30";
  }
  53.54237% {
    content: "31";
  }
  55.23729% {
    content: "32";
  }
  56.9322% {
    content: "33";
  }
  58.62712% {
    content: "34";
  }
  60.32203% {
    content: "35";
  }
  62.01695% {
    content: "36";
  }
  63.71186% {
    content: "37";
  }
  65.40678% {
    content: "38";
  }
  67.10169% {
    content: "39";
  }
  68.79661% {
    content: "40";
  }
  70.49153% {
    content: "41";
  }
  72.18644% {
    content: "42";
  }
  73.88136% {
    content: "43";
  }
  75.57627% {
    content: "44";
  }
  77.27119% {
    content: "45";
  }
  78.9661% {
    content: "46";
  }
  80.66102% {
    content: "47";
  }
  82.35593% {
    content: "48";
  }
  84.05085% {
    content: "49";
  }
  85.74576% {
    content: "50";
  }
  87.44068% {
    content: "51";
  }
  89.13559% {
    content: "52";
  }
  90.83051% {
    content: "53";
  }
  92.52542% {
    content: "54";
  }
  94.22034% {
    content: "55";
  }
  95.91525% {
    content: "56";
  }
  97.61017% {
    content: "57";
  }
  99.30508% {
    content: "58";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-60 {
  0% {
    content: "0";
  }
  2.66667% {
    content: "1";
  }
  4.33333% {
    content: "2";
  }
  6% {
    content: "3";
  }
  7.66667% {
    content: "4";
  }
  9.33333% {
    content: "5";
  }
  11% {
    content: "6";
  }
  12.66667% {
    content: "7";
  }
  14.33333% {
    content: "8";
  }
  16% {
    content: "9";
  }
  17.66667% {
    content: "10";
  }
  19.33333% {
    content: "11";
  }
  21% {
    content: "12";
  }
  22.66667% {
    content: "13";
  }
  24.33333% {
    content: "14";
  }
  26% {
    content: "15";
  }
  27.66667% {
    content: "16";
  }
  29.33333% {
    content: "17";
  }
  31% {
    content: "18";
  }
  32.66667% {
    content: "19";
  }
  34.33333% {
    content: "20";
  }
  36% {
    content: "21";
  }
  37.66667% {
    content: "22";
  }
  39.33333% {
    content: "23";
  }
  41% {
    content: "24";
  }
  42.66667% {
    content: "25";
  }
  44.33333% {
    content: "26";
  }
  46% {
    content: "27";
  }
  47.66667% {
    content: "28";
  }
  49.33333% {
    content: "29";
  }
  51% {
    content: "30";
  }
  52.66667% {
    content: "31";
  }
  54.33333% {
    content: "32";
  }
  56% {
    content: "33";
  }
  57.66667% {
    content: "34";
  }
  59.33333% {
    content: "35";
  }
  61% {
    content: "36";
  }
  62.66667% {
    content: "37";
  }
  64.33333% {
    content: "38";
  }
  66% {
    content: "39";
  }
  67.66667% {
    content: "40";
  }
  69.33333% {
    content: "41";
  }
  71% {
    content: "42";
  }
  72.66667% {
    content: "43";
  }
  74.33333% {
    content: "44";
  }
  76% {
    content: "45";
  }
  77.66667% {
    content: "46";
  }
  79.33333% {
    content: "47";
  }
  81% {
    content: "48";
  }
  82.66667% {
    content: "49";
  }
  84.33333% {
    content: "50";
  }
  86% {
    content: "51";
  }
  87.66667% {
    content: "52";
  }
  89.33333% {
    content: "53";
  }
  91% {
    content: "54";
  }
  92.66667% {
    content: "55";
  }
  94.33333% {
    content: "56";
  }
  96% {
    content: "57";
  }
  97.66667% {
    content: "58";
  }
  99.33333% {
    content: "59";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-60 {
  0% {
    content: "0";
  }
  2.66667% {
    content: "1";
  }
  4.33333% {
    content: "2";
  }
  6% {
    content: "3";
  }
  7.66667% {
    content: "4";
  }
  9.33333% {
    content: "5";
  }
  11% {
    content: "6";
  }
  12.66667% {
    content: "7";
  }
  14.33333% {
    content: "8";
  }
  16% {
    content: "9";
  }
  17.66667% {
    content: "10";
  }
  19.33333% {
    content: "11";
  }
  21% {
    content: "12";
  }
  22.66667% {
    content: "13";
  }
  24.33333% {
    content: "14";
  }
  26% {
    content: "15";
  }
  27.66667% {
    content: "16";
  }
  29.33333% {
    content: "17";
  }
  31% {
    content: "18";
  }
  32.66667% {
    content: "19";
  }
  34.33333% {
    content: "20";
  }
  36% {
    content: "21";
  }
  37.66667% {
    content: "22";
  }
  39.33333% {
    content: "23";
  }
  41% {
    content: "24";
  }
  42.66667% {
    content: "25";
  }
  44.33333% {
    content: "26";
  }
  46% {
    content: "27";
  }
  47.66667% {
    content: "28";
  }
  49.33333% {
    content: "29";
  }
  51% {
    content: "30";
  }
  52.66667% {
    content: "31";
  }
  54.33333% {
    content: "32";
  }
  56% {
    content: "33";
  }
  57.66667% {
    content: "34";
  }
  59.33333% {
    content: "35";
  }
  61% {
    content: "36";
  }
  62.66667% {
    content: "37";
  }
  64.33333% {
    content: "38";
  }
  66% {
    content: "39";
  }
  67.66667% {
    content: "40";
  }
  69.33333% {
    content: "41";
  }
  71% {
    content: "42";
  }
  72.66667% {
    content: "43";
  }
  74.33333% {
    content: "44";
  }
  76% {
    content: "45";
  }
  77.66667% {
    content: "46";
  }
  79.33333% {
    content: "47";
  }
  81% {
    content: "48";
  }
  82.66667% {
    content: "49";
  }
  84.33333% {
    content: "50";
  }
  86% {
    content: "51";
  }
  87.66667% {
    content: "52";
  }
  89.33333% {
    content: "53";
  }
  91% {
    content: "54";
  }
  92.66667% {
    content: "55";
  }
  94.33333% {
    content: "56";
  }
  96% {
    content: "57";
  }
  97.66667% {
    content: "58";
  }
  99.33333% {
    content: "59";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-61 {
  0% {
    content: "0";
  }
  2.63934% {
    content: "1";
  }
  4.27869% {
    content: "2";
  }
  5.91803% {
    content: "3";
  }
  7.55738% {
    content: "4";
  }
  9.19672% {
    content: "5";
  }
  10.83607% {
    content: "6";
  }
  12.47541% {
    content: "7";
  }
  14.11475% {
    content: "8";
  }
  15.7541% {
    content: "9";
  }
  17.39344% {
    content: "10";
  }
  19.03279% {
    content: "11";
  }
  20.67213% {
    content: "12";
  }
  22.31148% {
    content: "13";
  }
  23.95082% {
    content: "14";
  }
  25.59016% {
    content: "15";
  }
  27.22951% {
    content: "16";
  }
  28.86885% {
    content: "17";
  }
  30.5082% {
    content: "18";
  }
  32.14754% {
    content: "19";
  }
  33.78689% {
    content: "20";
  }
  35.42623% {
    content: "21";
  }
  37.06557% {
    content: "22";
  }
  38.70492% {
    content: "23";
  }
  40.34426% {
    content: "24";
  }
  41.98361% {
    content: "25";
  }
  43.62295% {
    content: "26";
  }
  45.2623% {
    content: "27";
  }
  46.90164% {
    content: "28";
  }
  48.54098% {
    content: "29";
  }
  50.18033% {
    content: "30";
  }
  51.81967% {
    content: "31";
  }
  53.45902% {
    content: "32";
  }
  55.09836% {
    content: "33";
  }
  56.7377% {
    content: "34";
  }
  58.37705% {
    content: "35";
  }
  60.01639% {
    content: "36";
  }
  61.65574% {
    content: "37";
  }
  63.29508% {
    content: "38";
  }
  64.93443% {
    content: "39";
  }
  66.57377% {
    content: "40";
  }
  68.21311% {
    content: "41";
  }
  69.85246% {
    content: "42";
  }
  71.4918% {
    content: "43";
  }
  73.13115% {
    content: "44";
  }
  74.77049% {
    content: "45";
  }
  76.40984% {
    content: "46";
  }
  78.04918% {
    content: "47";
  }
  79.68852% {
    content: "48";
  }
  81.32787% {
    content: "49";
  }
  82.96721% {
    content: "50";
  }
  84.60656% {
    content: "51";
  }
  86.2459% {
    content: "52";
  }
  87.88525% {
    content: "53";
  }
  89.52459% {
    content: "54";
  }
  91.16393% {
    content: "55";
  }
  92.80328% {
    content: "56";
  }
  94.44262% {
    content: "57";
  }
  96.08197% {
    content: "58";
  }
  97.72131% {
    content: "59";
  }
  99.36066% {
    content: "60";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-61 {
  0% {
    content: "0";
  }
  2.63934% {
    content: "1";
  }
  4.27869% {
    content: "2";
  }
  5.91803% {
    content: "3";
  }
  7.55738% {
    content: "4";
  }
  9.19672% {
    content: "5";
  }
  10.83607% {
    content: "6";
  }
  12.47541% {
    content: "7";
  }
  14.11475% {
    content: "8";
  }
  15.7541% {
    content: "9";
  }
  17.39344% {
    content: "10";
  }
  19.03279% {
    content: "11";
  }
  20.67213% {
    content: "12";
  }
  22.31148% {
    content: "13";
  }
  23.95082% {
    content: "14";
  }
  25.59016% {
    content: "15";
  }
  27.22951% {
    content: "16";
  }
  28.86885% {
    content: "17";
  }
  30.5082% {
    content: "18";
  }
  32.14754% {
    content: "19";
  }
  33.78689% {
    content: "20";
  }
  35.42623% {
    content: "21";
  }
  37.06557% {
    content: "22";
  }
  38.70492% {
    content: "23";
  }
  40.34426% {
    content: "24";
  }
  41.98361% {
    content: "25";
  }
  43.62295% {
    content: "26";
  }
  45.2623% {
    content: "27";
  }
  46.90164% {
    content: "28";
  }
  48.54098% {
    content: "29";
  }
  50.18033% {
    content: "30";
  }
  51.81967% {
    content: "31";
  }
  53.45902% {
    content: "32";
  }
  55.09836% {
    content: "33";
  }
  56.7377% {
    content: "34";
  }
  58.37705% {
    content: "35";
  }
  60.01639% {
    content: "36";
  }
  61.65574% {
    content: "37";
  }
  63.29508% {
    content: "38";
  }
  64.93443% {
    content: "39";
  }
  66.57377% {
    content: "40";
  }
  68.21311% {
    content: "41";
  }
  69.85246% {
    content: "42";
  }
  71.4918% {
    content: "43";
  }
  73.13115% {
    content: "44";
  }
  74.77049% {
    content: "45";
  }
  76.40984% {
    content: "46";
  }
  78.04918% {
    content: "47";
  }
  79.68852% {
    content: "48";
  }
  81.32787% {
    content: "49";
  }
  82.96721% {
    content: "50";
  }
  84.60656% {
    content: "51";
  }
  86.2459% {
    content: "52";
  }
  87.88525% {
    content: "53";
  }
  89.52459% {
    content: "54";
  }
  91.16393% {
    content: "55";
  }
  92.80328% {
    content: "56";
  }
  94.44262% {
    content: "57";
  }
  96.08197% {
    content: "58";
  }
  97.72131% {
    content: "59";
  }
  99.36066% {
    content: "60";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-62 {
  0% {
    content: "0";
  }
  2.6129% {
    content: "1";
  }
  4.22581% {
    content: "2";
  }
  5.83871% {
    content: "3";
  }
  7.45161% {
    content: "4";
  }
  9.06452% {
    content: "5";
  }
  10.67742% {
    content: "6";
  }
  12.29032% {
    content: "7";
  }
  13.90323% {
    content: "8";
  }
  15.51613% {
    content: "9";
  }
  17.12903% {
    content: "10";
  }
  18.74194% {
    content: "11";
  }
  20.35484% {
    content: "12";
  }
  21.96774% {
    content: "13";
  }
  23.58065% {
    content: "14";
  }
  25.19355% {
    content: "15";
  }
  26.80645% {
    content: "16";
  }
  28.41935% {
    content: "17";
  }
  30.03226% {
    content: "18";
  }
  31.64516% {
    content: "19";
  }
  33.25806% {
    content: "20";
  }
  34.87097% {
    content: "21";
  }
  36.48387% {
    content: "22";
  }
  38.09677% {
    content: "23";
  }
  39.70968% {
    content: "24";
  }
  41.32258% {
    content: "25";
  }
  42.93548% {
    content: "26";
  }
  44.54839% {
    content: "27";
  }
  46.16129% {
    content: "28";
  }
  47.77419% {
    content: "29";
  }
  49.3871% {
    content: "30";
  }
  51% {
    content: "31";
  }
  52.6129% {
    content: "32";
  }
  54.22581% {
    content: "33";
  }
  55.83871% {
    content: "34";
  }
  57.45161% {
    content: "35";
  }
  59.06452% {
    content: "36";
  }
  60.67742% {
    content: "37";
  }
  62.29032% {
    content: "38";
  }
  63.90323% {
    content: "39";
  }
  65.51613% {
    content: "40";
  }
  67.12903% {
    content: "41";
  }
  68.74194% {
    content: "42";
  }
  70.35484% {
    content: "43";
  }
  71.96774% {
    content: "44";
  }
  73.58065% {
    content: "45";
  }
  75.19355% {
    content: "46";
  }
  76.80645% {
    content: "47";
  }
  78.41935% {
    content: "48";
  }
  80.03226% {
    content: "49";
  }
  81.64516% {
    content: "50";
  }
  83.25806% {
    content: "51";
  }
  84.87097% {
    content: "52";
  }
  86.48387% {
    content: "53";
  }
  88.09677% {
    content: "54";
  }
  89.70968% {
    content: "55";
  }
  91.32258% {
    content: "56";
  }
  92.93548% {
    content: "57";
  }
  94.54839% {
    content: "58";
  }
  96.16129% {
    content: "59";
  }
  97.77419% {
    content: "60";
  }
  99.3871% {
    content: "61";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-62 {
  0% {
    content: "0";
  }
  2.6129% {
    content: "1";
  }
  4.22581% {
    content: "2";
  }
  5.83871% {
    content: "3";
  }
  7.45161% {
    content: "4";
  }
  9.06452% {
    content: "5";
  }
  10.67742% {
    content: "6";
  }
  12.29032% {
    content: "7";
  }
  13.90323% {
    content: "8";
  }
  15.51613% {
    content: "9";
  }
  17.12903% {
    content: "10";
  }
  18.74194% {
    content: "11";
  }
  20.35484% {
    content: "12";
  }
  21.96774% {
    content: "13";
  }
  23.58065% {
    content: "14";
  }
  25.19355% {
    content: "15";
  }
  26.80645% {
    content: "16";
  }
  28.41935% {
    content: "17";
  }
  30.03226% {
    content: "18";
  }
  31.64516% {
    content: "19";
  }
  33.25806% {
    content: "20";
  }
  34.87097% {
    content: "21";
  }
  36.48387% {
    content: "22";
  }
  38.09677% {
    content: "23";
  }
  39.70968% {
    content: "24";
  }
  41.32258% {
    content: "25";
  }
  42.93548% {
    content: "26";
  }
  44.54839% {
    content: "27";
  }
  46.16129% {
    content: "28";
  }
  47.77419% {
    content: "29";
  }
  49.3871% {
    content: "30";
  }
  51% {
    content: "31";
  }
  52.6129% {
    content: "32";
  }
  54.22581% {
    content: "33";
  }
  55.83871% {
    content: "34";
  }
  57.45161% {
    content: "35";
  }
  59.06452% {
    content: "36";
  }
  60.67742% {
    content: "37";
  }
  62.29032% {
    content: "38";
  }
  63.90323% {
    content: "39";
  }
  65.51613% {
    content: "40";
  }
  67.12903% {
    content: "41";
  }
  68.74194% {
    content: "42";
  }
  70.35484% {
    content: "43";
  }
  71.96774% {
    content: "44";
  }
  73.58065% {
    content: "45";
  }
  75.19355% {
    content: "46";
  }
  76.80645% {
    content: "47";
  }
  78.41935% {
    content: "48";
  }
  80.03226% {
    content: "49";
  }
  81.64516% {
    content: "50";
  }
  83.25806% {
    content: "51";
  }
  84.87097% {
    content: "52";
  }
  86.48387% {
    content: "53";
  }
  88.09677% {
    content: "54";
  }
  89.70968% {
    content: "55";
  }
  91.32258% {
    content: "56";
  }
  92.93548% {
    content: "57";
  }
  94.54839% {
    content: "58";
  }
  96.16129% {
    content: "59";
  }
  97.77419% {
    content: "60";
  }
  99.3871% {
    content: "61";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-63 {
  0% {
    content: "0";
  }
  2.5873% {
    content: "1";
  }
  4.1746% {
    content: "2";
  }
  5.7619% {
    content: "3";
  }
  7.34921% {
    content: "4";
  }
  8.93651% {
    content: "5";
  }
  10.52381% {
    content: "6";
  }
  12.11111% {
    content: "7";
  }
  13.69841% {
    content: "8";
  }
  15.28571% {
    content: "9";
  }
  16.87302% {
    content: "10";
  }
  18.46032% {
    content: "11";
  }
  20.04762% {
    content: "12";
  }
  21.63492% {
    content: "13";
  }
  23.22222% {
    content: "14";
  }
  24.80952% {
    content: "15";
  }
  26.39683% {
    content: "16";
  }
  27.98413% {
    content: "17";
  }
  29.57143% {
    content: "18";
  }
  31.15873% {
    content: "19";
  }
  32.74603% {
    content: "20";
  }
  34.33333% {
    content: "21";
  }
  35.92063% {
    content: "22";
  }
  37.50794% {
    content: "23";
  }
  39.09524% {
    content: "24";
  }
  40.68254% {
    content: "25";
  }
  42.26984% {
    content: "26";
  }
  43.85714% {
    content: "27";
  }
  45.44444% {
    content: "28";
  }
  47.03175% {
    content: "29";
  }
  48.61905% {
    content: "30";
  }
  50.20635% {
    content: "31";
  }
  51.79365% {
    content: "32";
  }
  53.38095% {
    content: "33";
  }
  54.96825% {
    content: "34";
  }
  56.55556% {
    content: "35";
  }
  58.14286% {
    content: "36";
  }
  59.73016% {
    content: "37";
  }
  61.31746% {
    content: "38";
  }
  62.90476% {
    content: "39";
  }
  64.49206% {
    content: "40";
  }
  66.07937% {
    content: "41";
  }
  67.66667% {
    content: "42";
  }
  69.25397% {
    content: "43";
  }
  70.84127% {
    content: "44";
  }
  72.42857% {
    content: "45";
  }
  74.01587% {
    content: "46";
  }
  75.60317% {
    content: "47";
  }
  77.19048% {
    content: "48";
  }
  78.77778% {
    content: "49";
  }
  80.36508% {
    content: "50";
  }
  81.95238% {
    content: "51";
  }
  83.53968% {
    content: "52";
  }
  85.12698% {
    content: "53";
  }
  86.71429% {
    content: "54";
  }
  88.30159% {
    content: "55";
  }
  89.88889% {
    content: "56";
  }
  91.47619% {
    content: "57";
  }
  93.06349% {
    content: "58";
  }
  94.65079% {
    content: "59";
  }
  96.2381% {
    content: "60";
  }
  97.8254% {
    content: "61";
  }
  99.4127% {
    content: "62";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-63 {
  0% {
    content: "0";
  }
  2.5873% {
    content: "1";
  }
  4.1746% {
    content: "2";
  }
  5.7619% {
    content: "3";
  }
  7.34921% {
    content: "4";
  }
  8.93651% {
    content: "5";
  }
  10.52381% {
    content: "6";
  }
  12.11111% {
    content: "7";
  }
  13.69841% {
    content: "8";
  }
  15.28571% {
    content: "9";
  }
  16.87302% {
    content: "10";
  }
  18.46032% {
    content: "11";
  }
  20.04762% {
    content: "12";
  }
  21.63492% {
    content: "13";
  }
  23.22222% {
    content: "14";
  }
  24.80952% {
    content: "15";
  }
  26.39683% {
    content: "16";
  }
  27.98413% {
    content: "17";
  }
  29.57143% {
    content: "18";
  }
  31.15873% {
    content: "19";
  }
  32.74603% {
    content: "20";
  }
  34.33333% {
    content: "21";
  }
  35.92063% {
    content: "22";
  }
  37.50794% {
    content: "23";
  }
  39.09524% {
    content: "24";
  }
  40.68254% {
    content: "25";
  }
  42.26984% {
    content: "26";
  }
  43.85714% {
    content: "27";
  }
  45.44444% {
    content: "28";
  }
  47.03175% {
    content: "29";
  }
  48.61905% {
    content: "30";
  }
  50.20635% {
    content: "31";
  }
  51.79365% {
    content: "32";
  }
  53.38095% {
    content: "33";
  }
  54.96825% {
    content: "34";
  }
  56.55556% {
    content: "35";
  }
  58.14286% {
    content: "36";
  }
  59.73016% {
    content: "37";
  }
  61.31746% {
    content: "38";
  }
  62.90476% {
    content: "39";
  }
  64.49206% {
    content: "40";
  }
  66.07937% {
    content: "41";
  }
  67.66667% {
    content: "42";
  }
  69.25397% {
    content: "43";
  }
  70.84127% {
    content: "44";
  }
  72.42857% {
    content: "45";
  }
  74.01587% {
    content: "46";
  }
  75.60317% {
    content: "47";
  }
  77.19048% {
    content: "48";
  }
  78.77778% {
    content: "49";
  }
  80.36508% {
    content: "50";
  }
  81.95238% {
    content: "51";
  }
  83.53968% {
    content: "52";
  }
  85.12698% {
    content: "53";
  }
  86.71429% {
    content: "54";
  }
  88.30159% {
    content: "55";
  }
  89.88889% {
    content: "56";
  }
  91.47619% {
    content: "57";
  }
  93.06349% {
    content: "58";
  }
  94.65079% {
    content: "59";
  }
  96.2381% {
    content: "60";
  }
  97.8254% {
    content: "61";
  }
  99.4127% {
    content: "62";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-64 {
  0% {
    content: "0";
  }
  2.5625% {
    content: "1";
  }
  4.125% {
    content: "2";
  }
  5.6875% {
    content: "3";
  }
  7.25% {
    content: "4";
  }
  8.8125% {
    content: "5";
  }
  10.375% {
    content: "6";
  }
  11.9375% {
    content: "7";
  }
  13.5% {
    content: "8";
  }
  15.0625% {
    content: "9";
  }
  16.625% {
    content: "10";
  }
  18.1875% {
    content: "11";
  }
  19.75% {
    content: "12";
  }
  21.3125% {
    content: "13";
  }
  22.875% {
    content: "14";
  }
  24.4375% {
    content: "15";
  }
  26% {
    content: "16";
  }
  27.5625% {
    content: "17";
  }
  29.125% {
    content: "18";
  }
  30.6875% {
    content: "19";
  }
  32.25% {
    content: "20";
  }
  33.8125% {
    content: "21";
  }
  35.375% {
    content: "22";
  }
  36.9375% {
    content: "23";
  }
  38.5% {
    content: "24";
  }
  40.0625% {
    content: "25";
  }
  41.625% {
    content: "26";
  }
  43.1875% {
    content: "27";
  }
  44.75% {
    content: "28";
  }
  46.3125% {
    content: "29";
  }
  47.875% {
    content: "30";
  }
  49.4375% {
    content: "31";
  }
  51% {
    content: "32";
  }
  52.5625% {
    content: "33";
  }
  54.125% {
    content: "34";
  }
  55.6875% {
    content: "35";
  }
  57.25% {
    content: "36";
  }
  58.8125% {
    content: "37";
  }
  60.375% {
    content: "38";
  }
  61.9375% {
    content: "39";
  }
  63.5% {
    content: "40";
  }
  65.0625% {
    content: "41";
  }
  66.625% {
    content: "42";
  }
  68.1875% {
    content: "43";
  }
  69.75% {
    content: "44";
  }
  71.3125% {
    content: "45";
  }
  72.875% {
    content: "46";
  }
  74.4375% {
    content: "47";
  }
  76% {
    content: "48";
  }
  77.5625% {
    content: "49";
  }
  79.125% {
    content: "50";
  }
  80.6875% {
    content: "51";
  }
  82.25% {
    content: "52";
  }
  83.8125% {
    content: "53";
  }
  85.375% {
    content: "54";
  }
  86.9375% {
    content: "55";
  }
  88.5% {
    content: "56";
  }
  90.0625% {
    content: "57";
  }
  91.625% {
    content: "58";
  }
  93.1875% {
    content: "59";
  }
  94.75% {
    content: "60";
  }
  96.3125% {
    content: "61";
  }
  97.875% {
    content: "62";
  }
  99.4375% {
    content: "63";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-64 {
  0% {
    content: "0";
  }
  2.5625% {
    content: "1";
  }
  4.125% {
    content: "2";
  }
  5.6875% {
    content: "3";
  }
  7.25% {
    content: "4";
  }
  8.8125% {
    content: "5";
  }
  10.375% {
    content: "6";
  }
  11.9375% {
    content: "7";
  }
  13.5% {
    content: "8";
  }
  15.0625% {
    content: "9";
  }
  16.625% {
    content: "10";
  }
  18.1875% {
    content: "11";
  }
  19.75% {
    content: "12";
  }
  21.3125% {
    content: "13";
  }
  22.875% {
    content: "14";
  }
  24.4375% {
    content: "15";
  }
  26% {
    content: "16";
  }
  27.5625% {
    content: "17";
  }
  29.125% {
    content: "18";
  }
  30.6875% {
    content: "19";
  }
  32.25% {
    content: "20";
  }
  33.8125% {
    content: "21";
  }
  35.375% {
    content: "22";
  }
  36.9375% {
    content: "23";
  }
  38.5% {
    content: "24";
  }
  40.0625% {
    content: "25";
  }
  41.625% {
    content: "26";
  }
  43.1875% {
    content: "27";
  }
  44.75% {
    content: "28";
  }
  46.3125% {
    content: "29";
  }
  47.875% {
    content: "30";
  }
  49.4375% {
    content: "31";
  }
  51% {
    content: "32";
  }
  52.5625% {
    content: "33";
  }
  54.125% {
    content: "34";
  }
  55.6875% {
    content: "35";
  }
  57.25% {
    content: "36";
  }
  58.8125% {
    content: "37";
  }
  60.375% {
    content: "38";
  }
  61.9375% {
    content: "39";
  }
  63.5% {
    content: "40";
  }
  65.0625% {
    content: "41";
  }
  66.625% {
    content: "42";
  }
  68.1875% {
    content: "43";
  }
  69.75% {
    content: "44";
  }
  71.3125% {
    content: "45";
  }
  72.875% {
    content: "46";
  }
  74.4375% {
    content: "47";
  }
  76% {
    content: "48";
  }
  77.5625% {
    content: "49";
  }
  79.125% {
    content: "50";
  }
  80.6875% {
    content: "51";
  }
  82.25% {
    content: "52";
  }
  83.8125% {
    content: "53";
  }
  85.375% {
    content: "54";
  }
  86.9375% {
    content: "55";
  }
  88.5% {
    content: "56";
  }
  90.0625% {
    content: "57";
  }
  91.625% {
    content: "58";
  }
  93.1875% {
    content: "59";
  }
  94.75% {
    content: "60";
  }
  96.3125% {
    content: "61";
  }
  97.875% {
    content: "62";
  }
  99.4375% {
    content: "63";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-65 {
  0% {
    content: "0";
  }
  2.53846% {
    content: "1";
  }
  4.07692% {
    content: "2";
  }
  5.61538% {
    content: "3";
  }
  7.15385% {
    content: "4";
  }
  8.69231% {
    content: "5";
  }
  10.23077% {
    content: "6";
  }
  11.76923% {
    content: "7";
  }
  13.30769% {
    content: "8";
  }
  14.84615% {
    content: "9";
  }
  16.38462% {
    content: "10";
  }
  17.92308% {
    content: "11";
  }
  19.46154% {
    content: "12";
  }
  21% {
    content: "13";
  }
  22.53846% {
    content: "14";
  }
  24.07692% {
    content: "15";
  }
  25.61538% {
    content: "16";
  }
  27.15385% {
    content: "17";
  }
  28.69231% {
    content: "18";
  }
  30.23077% {
    content: "19";
  }
  31.76923% {
    content: "20";
  }
  33.30769% {
    content: "21";
  }
  34.84615% {
    content: "22";
  }
  36.38462% {
    content: "23";
  }
  37.92308% {
    content: "24";
  }
  39.46154% {
    content: "25";
  }
  41% {
    content: "26";
  }
  42.53846% {
    content: "27";
  }
  44.07692% {
    content: "28";
  }
  45.61538% {
    content: "29";
  }
  47.15385% {
    content: "30";
  }
  48.69231% {
    content: "31";
  }
  50.23077% {
    content: "32";
  }
  51.76923% {
    content: "33";
  }
  53.30769% {
    content: "34";
  }
  54.84615% {
    content: "35";
  }
  56.38462% {
    content: "36";
  }
  57.92308% {
    content: "37";
  }
  59.46154% {
    content: "38";
  }
  61% {
    content: "39";
  }
  62.53846% {
    content: "40";
  }
  64.07692% {
    content: "41";
  }
  65.61538% {
    content: "42";
  }
  67.15385% {
    content: "43";
  }
  68.69231% {
    content: "44";
  }
  70.23077% {
    content: "45";
  }
  71.76923% {
    content: "46";
  }
  73.30769% {
    content: "47";
  }
  74.84615% {
    content: "48";
  }
  76.38462% {
    content: "49";
  }
  77.92308% {
    content: "50";
  }
  79.46154% {
    content: "51";
  }
  81% {
    content: "52";
  }
  82.53846% {
    content: "53";
  }
  84.07692% {
    content: "54";
  }
  85.61538% {
    content: "55";
  }
  87.15385% {
    content: "56";
  }
  88.69231% {
    content: "57";
  }
  90.23077% {
    content: "58";
  }
  91.76923% {
    content: "59";
  }
  93.30769% {
    content: "60";
  }
  94.84615% {
    content: "61";
  }
  96.38462% {
    content: "62";
  }
  97.92308% {
    content: "63";
  }
  99.46154% {
    content: "64";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-65 {
  0% {
    content: "0";
  }
  2.53846% {
    content: "1";
  }
  4.07692% {
    content: "2";
  }
  5.61538% {
    content: "3";
  }
  7.15385% {
    content: "4";
  }
  8.69231% {
    content: "5";
  }
  10.23077% {
    content: "6";
  }
  11.76923% {
    content: "7";
  }
  13.30769% {
    content: "8";
  }
  14.84615% {
    content: "9";
  }
  16.38462% {
    content: "10";
  }
  17.92308% {
    content: "11";
  }
  19.46154% {
    content: "12";
  }
  21% {
    content: "13";
  }
  22.53846% {
    content: "14";
  }
  24.07692% {
    content: "15";
  }
  25.61538% {
    content: "16";
  }
  27.15385% {
    content: "17";
  }
  28.69231% {
    content: "18";
  }
  30.23077% {
    content: "19";
  }
  31.76923% {
    content: "20";
  }
  33.30769% {
    content: "21";
  }
  34.84615% {
    content: "22";
  }
  36.38462% {
    content: "23";
  }
  37.92308% {
    content: "24";
  }
  39.46154% {
    content: "25";
  }
  41% {
    content: "26";
  }
  42.53846% {
    content: "27";
  }
  44.07692% {
    content: "28";
  }
  45.61538% {
    content: "29";
  }
  47.15385% {
    content: "30";
  }
  48.69231% {
    content: "31";
  }
  50.23077% {
    content: "32";
  }
  51.76923% {
    content: "33";
  }
  53.30769% {
    content: "34";
  }
  54.84615% {
    content: "35";
  }
  56.38462% {
    content: "36";
  }
  57.92308% {
    content: "37";
  }
  59.46154% {
    content: "38";
  }
  61% {
    content: "39";
  }
  62.53846% {
    content: "40";
  }
  64.07692% {
    content: "41";
  }
  65.61538% {
    content: "42";
  }
  67.15385% {
    content: "43";
  }
  68.69231% {
    content: "44";
  }
  70.23077% {
    content: "45";
  }
  71.76923% {
    content: "46";
  }
  73.30769% {
    content: "47";
  }
  74.84615% {
    content: "48";
  }
  76.38462% {
    content: "49";
  }
  77.92308% {
    content: "50";
  }
  79.46154% {
    content: "51";
  }
  81% {
    content: "52";
  }
  82.53846% {
    content: "53";
  }
  84.07692% {
    content: "54";
  }
  85.61538% {
    content: "55";
  }
  87.15385% {
    content: "56";
  }
  88.69231% {
    content: "57";
  }
  90.23077% {
    content: "58";
  }
  91.76923% {
    content: "59";
  }
  93.30769% {
    content: "60";
  }
  94.84615% {
    content: "61";
  }
  96.38462% {
    content: "62";
  }
  97.92308% {
    content: "63";
  }
  99.46154% {
    content: "64";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-66 {
  0% {
    content: "0";
  }
  2.51515% {
    content: "1";
  }
  4.0303% {
    content: "2";
  }
  5.54545% {
    content: "3";
  }
  7.06061% {
    content: "4";
  }
  8.57576% {
    content: "5";
  }
  10.09091% {
    content: "6";
  }
  11.60606% {
    content: "7";
  }
  13.12121% {
    content: "8";
  }
  14.63636% {
    content: "9";
  }
  16.15152% {
    content: "10";
  }
  17.66667% {
    content: "11";
  }
  19.18182% {
    content: "12";
  }
  20.69697% {
    content: "13";
  }
  22.21212% {
    content: "14";
  }
  23.72727% {
    content: "15";
  }
  25.24242% {
    content: "16";
  }
  26.75758% {
    content: "17";
  }
  28.27273% {
    content: "18";
  }
  29.78788% {
    content: "19";
  }
  31.30303% {
    content: "20";
  }
  32.81818% {
    content: "21";
  }
  34.33333% {
    content: "22";
  }
  35.84848% {
    content: "23";
  }
  37.36364% {
    content: "24";
  }
  38.87879% {
    content: "25";
  }
  40.39394% {
    content: "26";
  }
  41.90909% {
    content: "27";
  }
  43.42424% {
    content: "28";
  }
  44.93939% {
    content: "29";
  }
  46.45455% {
    content: "30";
  }
  47.9697% {
    content: "31";
  }
  49.48485% {
    content: "32";
  }
  51% {
    content: "33";
  }
  52.51515% {
    content: "34";
  }
  54.0303% {
    content: "35";
  }
  55.54545% {
    content: "36";
  }
  57.06061% {
    content: "37";
  }
  58.57576% {
    content: "38";
  }
  60.09091% {
    content: "39";
  }
  61.60606% {
    content: "40";
  }
  63.12121% {
    content: "41";
  }
  64.63636% {
    content: "42";
  }
  66.15152% {
    content: "43";
  }
  67.66667% {
    content: "44";
  }
  69.18182% {
    content: "45";
  }
  70.69697% {
    content: "46";
  }
  72.21212% {
    content: "47";
  }
  73.72727% {
    content: "48";
  }
  75.24242% {
    content: "49";
  }
  76.75758% {
    content: "50";
  }
  78.27273% {
    content: "51";
  }
  79.78788% {
    content: "52";
  }
  81.30303% {
    content: "53";
  }
  82.81818% {
    content: "54";
  }
  84.33333% {
    content: "55";
  }
  85.84848% {
    content: "56";
  }
  87.36364% {
    content: "57";
  }
  88.87879% {
    content: "58";
  }
  90.39394% {
    content: "59";
  }
  91.90909% {
    content: "60";
  }
  93.42424% {
    content: "61";
  }
  94.93939% {
    content: "62";
  }
  96.45455% {
    content: "63";
  }
  97.9697% {
    content: "64";
  }
  99.48485% {
    content: "65";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-66 {
  0% {
    content: "0";
  }
  2.51515% {
    content: "1";
  }
  4.0303% {
    content: "2";
  }
  5.54545% {
    content: "3";
  }
  7.06061% {
    content: "4";
  }
  8.57576% {
    content: "5";
  }
  10.09091% {
    content: "6";
  }
  11.60606% {
    content: "7";
  }
  13.12121% {
    content: "8";
  }
  14.63636% {
    content: "9";
  }
  16.15152% {
    content: "10";
  }
  17.66667% {
    content: "11";
  }
  19.18182% {
    content: "12";
  }
  20.69697% {
    content: "13";
  }
  22.21212% {
    content: "14";
  }
  23.72727% {
    content: "15";
  }
  25.24242% {
    content: "16";
  }
  26.75758% {
    content: "17";
  }
  28.27273% {
    content: "18";
  }
  29.78788% {
    content: "19";
  }
  31.30303% {
    content: "20";
  }
  32.81818% {
    content: "21";
  }
  34.33333% {
    content: "22";
  }
  35.84848% {
    content: "23";
  }
  37.36364% {
    content: "24";
  }
  38.87879% {
    content: "25";
  }
  40.39394% {
    content: "26";
  }
  41.90909% {
    content: "27";
  }
  43.42424% {
    content: "28";
  }
  44.93939% {
    content: "29";
  }
  46.45455% {
    content: "30";
  }
  47.9697% {
    content: "31";
  }
  49.48485% {
    content: "32";
  }
  51% {
    content: "33";
  }
  52.51515% {
    content: "34";
  }
  54.0303% {
    content: "35";
  }
  55.54545% {
    content: "36";
  }
  57.06061% {
    content: "37";
  }
  58.57576% {
    content: "38";
  }
  60.09091% {
    content: "39";
  }
  61.60606% {
    content: "40";
  }
  63.12121% {
    content: "41";
  }
  64.63636% {
    content: "42";
  }
  66.15152% {
    content: "43";
  }
  67.66667% {
    content: "44";
  }
  69.18182% {
    content: "45";
  }
  70.69697% {
    content: "46";
  }
  72.21212% {
    content: "47";
  }
  73.72727% {
    content: "48";
  }
  75.24242% {
    content: "49";
  }
  76.75758% {
    content: "50";
  }
  78.27273% {
    content: "51";
  }
  79.78788% {
    content: "52";
  }
  81.30303% {
    content: "53";
  }
  82.81818% {
    content: "54";
  }
  84.33333% {
    content: "55";
  }
  85.84848% {
    content: "56";
  }
  87.36364% {
    content: "57";
  }
  88.87879% {
    content: "58";
  }
  90.39394% {
    content: "59";
  }
  91.90909% {
    content: "60";
  }
  93.42424% {
    content: "61";
  }
  94.93939% {
    content: "62";
  }
  96.45455% {
    content: "63";
  }
  97.9697% {
    content: "64";
  }
  99.48485% {
    content: "65";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-67 {
  0% {
    content: "0";
  }
  2.49254% {
    content: "1";
  }
  3.98507% {
    content: "2";
  }
  5.47761% {
    content: "3";
  }
  6.97015% {
    content: "4";
  }
  8.46269% {
    content: "5";
  }
  9.95522% {
    content: "6";
  }
  11.44776% {
    content: "7";
  }
  12.9403% {
    content: "8";
  }
  14.43284% {
    content: "9";
  }
  15.92537% {
    content: "10";
  }
  17.41791% {
    content: "11";
  }
  18.91045% {
    content: "12";
  }
  20.40299% {
    content: "13";
  }
  21.89552% {
    content: "14";
  }
  23.38806% {
    content: "15";
  }
  24.8806% {
    content: "16";
  }
  26.37313% {
    content: "17";
  }
  27.86567% {
    content: "18";
  }
  29.35821% {
    content: "19";
  }
  30.85075% {
    content: "20";
  }
  32.34328% {
    content: "21";
  }
  33.83582% {
    content: "22";
  }
  35.32836% {
    content: "23";
  }
  36.8209% {
    content: "24";
  }
  38.31343% {
    content: "25";
  }
  39.80597% {
    content: "26";
  }
  41.29851% {
    content: "27";
  }
  42.79104% {
    content: "28";
  }
  44.28358% {
    content: "29";
  }
  45.77612% {
    content: "30";
  }
  47.26866% {
    content: "31";
  }
  48.76119% {
    content: "32";
  }
  50.25373% {
    content: "33";
  }
  51.74627% {
    content: "34";
  }
  53.23881% {
    content: "35";
  }
  54.73134% {
    content: "36";
  }
  56.22388% {
    content: "37";
  }
  57.71642% {
    content: "38";
  }
  59.20896% {
    content: "39";
  }
  60.70149% {
    content: "40";
  }
  62.19403% {
    content: "41";
  }
  63.68657% {
    content: "42";
  }
  65.1791% {
    content: "43";
  }
  66.67164% {
    content: "44";
  }
  68.16418% {
    content: "45";
  }
  69.65672% {
    content: "46";
  }
  71.14925% {
    content: "47";
  }
  72.64179% {
    content: "48";
  }
  74.13433% {
    content: "49";
  }
  75.62687% {
    content: "50";
  }
  77.1194% {
    content: "51";
  }
  78.61194% {
    content: "52";
  }
  80.10448% {
    content: "53";
  }
  81.59701% {
    content: "54";
  }
  83.08955% {
    content: "55";
  }
  84.58209% {
    content: "56";
  }
  86.07463% {
    content: "57";
  }
  87.56716% {
    content: "58";
  }
  89.0597% {
    content: "59";
  }
  90.55224% {
    content: "60";
  }
  92.04478% {
    content: "61";
  }
  93.53731% {
    content: "62";
  }
  95.02985% {
    content: "63";
  }
  96.52239% {
    content: "64";
  }
  98.01493% {
    content: "65";
  }
  99.50746% {
    content: "66";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-67 {
  0% {
    content: "0";
  }
  2.49254% {
    content: "1";
  }
  3.98507% {
    content: "2";
  }
  5.47761% {
    content: "3";
  }
  6.97015% {
    content: "4";
  }
  8.46269% {
    content: "5";
  }
  9.95522% {
    content: "6";
  }
  11.44776% {
    content: "7";
  }
  12.9403% {
    content: "8";
  }
  14.43284% {
    content: "9";
  }
  15.92537% {
    content: "10";
  }
  17.41791% {
    content: "11";
  }
  18.91045% {
    content: "12";
  }
  20.40299% {
    content: "13";
  }
  21.89552% {
    content: "14";
  }
  23.38806% {
    content: "15";
  }
  24.8806% {
    content: "16";
  }
  26.37313% {
    content: "17";
  }
  27.86567% {
    content: "18";
  }
  29.35821% {
    content: "19";
  }
  30.85075% {
    content: "20";
  }
  32.34328% {
    content: "21";
  }
  33.83582% {
    content: "22";
  }
  35.32836% {
    content: "23";
  }
  36.8209% {
    content: "24";
  }
  38.31343% {
    content: "25";
  }
  39.80597% {
    content: "26";
  }
  41.29851% {
    content: "27";
  }
  42.79104% {
    content: "28";
  }
  44.28358% {
    content: "29";
  }
  45.77612% {
    content: "30";
  }
  47.26866% {
    content: "31";
  }
  48.76119% {
    content: "32";
  }
  50.25373% {
    content: "33";
  }
  51.74627% {
    content: "34";
  }
  53.23881% {
    content: "35";
  }
  54.73134% {
    content: "36";
  }
  56.22388% {
    content: "37";
  }
  57.71642% {
    content: "38";
  }
  59.20896% {
    content: "39";
  }
  60.70149% {
    content: "40";
  }
  62.19403% {
    content: "41";
  }
  63.68657% {
    content: "42";
  }
  65.1791% {
    content: "43";
  }
  66.67164% {
    content: "44";
  }
  68.16418% {
    content: "45";
  }
  69.65672% {
    content: "46";
  }
  71.14925% {
    content: "47";
  }
  72.64179% {
    content: "48";
  }
  74.13433% {
    content: "49";
  }
  75.62687% {
    content: "50";
  }
  77.1194% {
    content: "51";
  }
  78.61194% {
    content: "52";
  }
  80.10448% {
    content: "53";
  }
  81.59701% {
    content: "54";
  }
  83.08955% {
    content: "55";
  }
  84.58209% {
    content: "56";
  }
  86.07463% {
    content: "57";
  }
  87.56716% {
    content: "58";
  }
  89.0597% {
    content: "59";
  }
  90.55224% {
    content: "60";
  }
  92.04478% {
    content: "61";
  }
  93.53731% {
    content: "62";
  }
  95.02985% {
    content: "63";
  }
  96.52239% {
    content: "64";
  }
  98.01493% {
    content: "65";
  }
  99.50746% {
    content: "66";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-68 {
  0% {
    content: "0";
  }
  2.47059% {
    content: "1";
  }
  3.94118% {
    content: "2";
  }
  5.41176% {
    content: "3";
  }
  6.88235% {
    content: "4";
  }
  8.35294% {
    content: "5";
  }
  9.82353% {
    content: "6";
  }
  11.29412% {
    content: "7";
  }
  12.76471% {
    content: "8";
  }
  14.23529% {
    content: "9";
  }
  15.70588% {
    content: "10";
  }
  17.17647% {
    content: "11";
  }
  18.64706% {
    content: "12";
  }
  20.11765% {
    content: "13";
  }
  21.58824% {
    content: "14";
  }
  23.05882% {
    content: "15";
  }
  24.52941% {
    content: "16";
  }
  26% {
    content: "17";
  }
  27.47059% {
    content: "18";
  }
  28.94118% {
    content: "19";
  }
  30.41176% {
    content: "20";
  }
  31.88235% {
    content: "21";
  }
  33.35294% {
    content: "22";
  }
  34.82353% {
    content: "23";
  }
  36.29412% {
    content: "24";
  }
  37.76471% {
    content: "25";
  }
  39.23529% {
    content: "26";
  }
  40.70588% {
    content: "27";
  }
  42.17647% {
    content: "28";
  }
  43.64706% {
    content: "29";
  }
  45.11765% {
    content: "30";
  }
  46.58824% {
    content: "31";
  }
  48.05882% {
    content: "32";
  }
  49.52941% {
    content: "33";
  }
  51% {
    content: "34";
  }
  52.47059% {
    content: "35";
  }
  53.94118% {
    content: "36";
  }
  55.41176% {
    content: "37";
  }
  56.88235% {
    content: "38";
  }
  58.35294% {
    content: "39";
  }
  59.82353% {
    content: "40";
  }
  61.29412% {
    content: "41";
  }
  62.76471% {
    content: "42";
  }
  64.23529% {
    content: "43";
  }
  65.70588% {
    content: "44";
  }
  67.17647% {
    content: "45";
  }
  68.64706% {
    content: "46";
  }
  70.11765% {
    content: "47";
  }
  71.58824% {
    content: "48";
  }
  73.05882% {
    content: "49";
  }
  74.52941% {
    content: "50";
  }
  76% {
    content: "51";
  }
  77.47059% {
    content: "52";
  }
  78.94118% {
    content: "53";
  }
  80.41176% {
    content: "54";
  }
  81.88235% {
    content: "55";
  }
  83.35294% {
    content: "56";
  }
  84.82353% {
    content: "57";
  }
  86.29412% {
    content: "58";
  }
  87.76471% {
    content: "59";
  }
  89.23529% {
    content: "60";
  }
  90.70588% {
    content: "61";
  }
  92.17647% {
    content: "62";
  }
  93.64706% {
    content: "63";
  }
  95.11765% {
    content: "64";
  }
  96.58824% {
    content: "65";
  }
  98.05882% {
    content: "66";
  }
  99.52941% {
    content: "67";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-68 {
  0% {
    content: "0";
  }
  2.47059% {
    content: "1";
  }
  3.94118% {
    content: "2";
  }
  5.41176% {
    content: "3";
  }
  6.88235% {
    content: "4";
  }
  8.35294% {
    content: "5";
  }
  9.82353% {
    content: "6";
  }
  11.29412% {
    content: "7";
  }
  12.76471% {
    content: "8";
  }
  14.23529% {
    content: "9";
  }
  15.70588% {
    content: "10";
  }
  17.17647% {
    content: "11";
  }
  18.64706% {
    content: "12";
  }
  20.11765% {
    content: "13";
  }
  21.58824% {
    content: "14";
  }
  23.05882% {
    content: "15";
  }
  24.52941% {
    content: "16";
  }
  26% {
    content: "17";
  }
  27.47059% {
    content: "18";
  }
  28.94118% {
    content: "19";
  }
  30.41176% {
    content: "20";
  }
  31.88235% {
    content: "21";
  }
  33.35294% {
    content: "22";
  }
  34.82353% {
    content: "23";
  }
  36.29412% {
    content: "24";
  }
  37.76471% {
    content: "25";
  }
  39.23529% {
    content: "26";
  }
  40.70588% {
    content: "27";
  }
  42.17647% {
    content: "28";
  }
  43.64706% {
    content: "29";
  }
  45.11765% {
    content: "30";
  }
  46.58824% {
    content: "31";
  }
  48.05882% {
    content: "32";
  }
  49.52941% {
    content: "33";
  }
  51% {
    content: "34";
  }
  52.47059% {
    content: "35";
  }
  53.94118% {
    content: "36";
  }
  55.41176% {
    content: "37";
  }
  56.88235% {
    content: "38";
  }
  58.35294% {
    content: "39";
  }
  59.82353% {
    content: "40";
  }
  61.29412% {
    content: "41";
  }
  62.76471% {
    content: "42";
  }
  64.23529% {
    content: "43";
  }
  65.70588% {
    content: "44";
  }
  67.17647% {
    content: "45";
  }
  68.64706% {
    content: "46";
  }
  70.11765% {
    content: "47";
  }
  71.58824% {
    content: "48";
  }
  73.05882% {
    content: "49";
  }
  74.52941% {
    content: "50";
  }
  76% {
    content: "51";
  }
  77.47059% {
    content: "52";
  }
  78.94118% {
    content: "53";
  }
  80.41176% {
    content: "54";
  }
  81.88235% {
    content: "55";
  }
  83.35294% {
    content: "56";
  }
  84.82353% {
    content: "57";
  }
  86.29412% {
    content: "58";
  }
  87.76471% {
    content: "59";
  }
  89.23529% {
    content: "60";
  }
  90.70588% {
    content: "61";
  }
  92.17647% {
    content: "62";
  }
  93.64706% {
    content: "63";
  }
  95.11765% {
    content: "64";
  }
  96.58824% {
    content: "65";
  }
  98.05882% {
    content: "66";
  }
  99.52941% {
    content: "67";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-69 {
  0% {
    content: "0";
  }
  2.44928% {
    content: "1";
  }
  3.89855% {
    content: "2";
  }
  5.34783% {
    content: "3";
  }
  6.7971% {
    content: "4";
  }
  8.24638% {
    content: "5";
  }
  9.69565% {
    content: "6";
  }
  11.14493% {
    content: "7";
  }
  12.5942% {
    content: "8";
  }
  14.04348% {
    content: "9";
  }
  15.49275% {
    content: "10";
  }
  16.94203% {
    content: "11";
  }
  18.3913% {
    content: "12";
  }
  19.84058% {
    content: "13";
  }
  21.28986% {
    content: "14";
  }
  22.73913% {
    content: "15";
  }
  24.18841% {
    content: "16";
  }
  25.63768% {
    content: "17";
  }
  27.08696% {
    content: "18";
  }
  28.53623% {
    content: "19";
  }
  29.98551% {
    content: "20";
  }
  31.43478% {
    content: "21";
  }
  32.88406% {
    content: "22";
  }
  34.33333% {
    content: "23";
  }
  35.78261% {
    content: "24";
  }
  37.23188% {
    content: "25";
  }
  38.68116% {
    content: "26";
  }
  40.13043% {
    content: "27";
  }
  41.57971% {
    content: "28";
  }
  43.02899% {
    content: "29";
  }
  44.47826% {
    content: "30";
  }
  45.92754% {
    content: "31";
  }
  47.37681% {
    content: "32";
  }
  48.82609% {
    content: "33";
  }
  50.27536% {
    content: "34";
  }
  51.72464% {
    content: "35";
  }
  53.17391% {
    content: "36";
  }
  54.62319% {
    content: "37";
  }
  56.07246% {
    content: "38";
  }
  57.52174% {
    content: "39";
  }
  58.97101% {
    content: "40";
  }
  60.42029% {
    content: "41";
  }
  61.86957% {
    content: "42";
  }
  63.31884% {
    content: "43";
  }
  64.76812% {
    content: "44";
  }
  66.21739% {
    content: "45";
  }
  67.66667% {
    content: "46";
  }
  69.11594% {
    content: "47";
  }
  70.56522% {
    content: "48";
  }
  72.01449% {
    content: "49";
  }
  73.46377% {
    content: "50";
  }
  74.91304% {
    content: "51";
  }
  76.36232% {
    content: "52";
  }
  77.81159% {
    content: "53";
  }
  79.26087% {
    content: "54";
  }
  80.71014% {
    content: "55";
  }
  82.15942% {
    content: "56";
  }
  83.6087% {
    content: "57";
  }
  85.05797% {
    content: "58";
  }
  86.50725% {
    content: "59";
  }
  87.95652% {
    content: "60";
  }
  89.4058% {
    content: "61";
  }
  90.85507% {
    content: "62";
  }
  92.30435% {
    content: "63";
  }
  93.75362% {
    content: "64";
  }
  95.2029% {
    content: "65";
  }
  96.65217% {
    content: "66";
  }
  98.10145% {
    content: "67";
  }
  99.55072% {
    content: "68";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-69 {
  0% {
    content: "0";
  }
  2.44928% {
    content: "1";
  }
  3.89855% {
    content: "2";
  }
  5.34783% {
    content: "3";
  }
  6.7971% {
    content: "4";
  }
  8.24638% {
    content: "5";
  }
  9.69565% {
    content: "6";
  }
  11.14493% {
    content: "7";
  }
  12.5942% {
    content: "8";
  }
  14.04348% {
    content: "9";
  }
  15.49275% {
    content: "10";
  }
  16.94203% {
    content: "11";
  }
  18.3913% {
    content: "12";
  }
  19.84058% {
    content: "13";
  }
  21.28986% {
    content: "14";
  }
  22.73913% {
    content: "15";
  }
  24.18841% {
    content: "16";
  }
  25.63768% {
    content: "17";
  }
  27.08696% {
    content: "18";
  }
  28.53623% {
    content: "19";
  }
  29.98551% {
    content: "20";
  }
  31.43478% {
    content: "21";
  }
  32.88406% {
    content: "22";
  }
  34.33333% {
    content: "23";
  }
  35.78261% {
    content: "24";
  }
  37.23188% {
    content: "25";
  }
  38.68116% {
    content: "26";
  }
  40.13043% {
    content: "27";
  }
  41.57971% {
    content: "28";
  }
  43.02899% {
    content: "29";
  }
  44.47826% {
    content: "30";
  }
  45.92754% {
    content: "31";
  }
  47.37681% {
    content: "32";
  }
  48.82609% {
    content: "33";
  }
  50.27536% {
    content: "34";
  }
  51.72464% {
    content: "35";
  }
  53.17391% {
    content: "36";
  }
  54.62319% {
    content: "37";
  }
  56.07246% {
    content: "38";
  }
  57.52174% {
    content: "39";
  }
  58.97101% {
    content: "40";
  }
  60.42029% {
    content: "41";
  }
  61.86957% {
    content: "42";
  }
  63.31884% {
    content: "43";
  }
  64.76812% {
    content: "44";
  }
  66.21739% {
    content: "45";
  }
  67.66667% {
    content: "46";
  }
  69.11594% {
    content: "47";
  }
  70.56522% {
    content: "48";
  }
  72.01449% {
    content: "49";
  }
  73.46377% {
    content: "50";
  }
  74.91304% {
    content: "51";
  }
  76.36232% {
    content: "52";
  }
  77.81159% {
    content: "53";
  }
  79.26087% {
    content: "54";
  }
  80.71014% {
    content: "55";
  }
  82.15942% {
    content: "56";
  }
  83.6087% {
    content: "57";
  }
  85.05797% {
    content: "58";
  }
  86.50725% {
    content: "59";
  }
  87.95652% {
    content: "60";
  }
  89.4058% {
    content: "61";
  }
  90.85507% {
    content: "62";
  }
  92.30435% {
    content: "63";
  }
  93.75362% {
    content: "64";
  }
  95.2029% {
    content: "65";
  }
  96.65217% {
    content: "66";
  }
  98.10145% {
    content: "67";
  }
  99.55072% {
    content: "68";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-70 {
  0% {
    content: "0";
  }
  2.42857% {
    content: "1";
  }
  3.85714% {
    content: "2";
  }
  5.28571% {
    content: "3";
  }
  6.71429% {
    content: "4";
  }
  8.14286% {
    content: "5";
  }
  9.57143% {
    content: "6";
  }
  11% {
    content: "7";
  }
  12.42857% {
    content: "8";
  }
  13.85714% {
    content: "9";
  }
  15.28571% {
    content: "10";
  }
  16.71429% {
    content: "11";
  }
  18.14286% {
    content: "12";
  }
  19.57143% {
    content: "13";
  }
  21% {
    content: "14";
  }
  22.42857% {
    content: "15";
  }
  23.85714% {
    content: "16";
  }
  25.28571% {
    content: "17";
  }
  26.71429% {
    content: "18";
  }
  28.14286% {
    content: "19";
  }
  29.57143% {
    content: "20";
  }
  31% {
    content: "21";
  }
  32.42857% {
    content: "22";
  }
  33.85714% {
    content: "23";
  }
  35.28571% {
    content: "24";
  }
  36.71429% {
    content: "25";
  }
  38.14286% {
    content: "26";
  }
  39.57143% {
    content: "27";
  }
  41% {
    content: "28";
  }
  42.42857% {
    content: "29";
  }
  43.85714% {
    content: "30";
  }
  45.28571% {
    content: "31";
  }
  46.71429% {
    content: "32";
  }
  48.14286% {
    content: "33";
  }
  49.57143% {
    content: "34";
  }
  51% {
    content: "35";
  }
  52.42857% {
    content: "36";
  }
  53.85714% {
    content: "37";
  }
  55.28571% {
    content: "38";
  }
  56.71429% {
    content: "39";
  }
  58.14286% {
    content: "40";
  }
  59.57143% {
    content: "41";
  }
  61% {
    content: "42";
  }
  62.42857% {
    content: "43";
  }
  63.85714% {
    content: "44";
  }
  65.28571% {
    content: "45";
  }
  66.71429% {
    content: "46";
  }
  68.14286% {
    content: "47";
  }
  69.57143% {
    content: "48";
  }
  71% {
    content: "49";
  }
  72.42857% {
    content: "50";
  }
  73.85714% {
    content: "51";
  }
  75.28571% {
    content: "52";
  }
  76.71429% {
    content: "53";
  }
  78.14286% {
    content: "54";
  }
  79.57143% {
    content: "55";
  }
  81% {
    content: "56";
  }
  82.42857% {
    content: "57";
  }
  83.85714% {
    content: "58";
  }
  85.28571% {
    content: "59";
  }
  86.71429% {
    content: "60";
  }
  88.14286% {
    content: "61";
  }
  89.57143% {
    content: "62";
  }
  91% {
    content: "63";
  }
  92.42857% {
    content: "64";
  }
  93.85714% {
    content: "65";
  }
  95.28571% {
    content: "66";
  }
  96.71429% {
    content: "67";
  }
  98.14286% {
    content: "68";
  }
  99.57143% {
    content: "69";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-70 {
  0% {
    content: "0";
  }
  2.42857% {
    content: "1";
  }
  3.85714% {
    content: "2";
  }
  5.28571% {
    content: "3";
  }
  6.71429% {
    content: "4";
  }
  8.14286% {
    content: "5";
  }
  9.57143% {
    content: "6";
  }
  11% {
    content: "7";
  }
  12.42857% {
    content: "8";
  }
  13.85714% {
    content: "9";
  }
  15.28571% {
    content: "10";
  }
  16.71429% {
    content: "11";
  }
  18.14286% {
    content: "12";
  }
  19.57143% {
    content: "13";
  }
  21% {
    content: "14";
  }
  22.42857% {
    content: "15";
  }
  23.85714% {
    content: "16";
  }
  25.28571% {
    content: "17";
  }
  26.71429% {
    content: "18";
  }
  28.14286% {
    content: "19";
  }
  29.57143% {
    content: "20";
  }
  31% {
    content: "21";
  }
  32.42857% {
    content: "22";
  }
  33.85714% {
    content: "23";
  }
  35.28571% {
    content: "24";
  }
  36.71429% {
    content: "25";
  }
  38.14286% {
    content: "26";
  }
  39.57143% {
    content: "27";
  }
  41% {
    content: "28";
  }
  42.42857% {
    content: "29";
  }
  43.85714% {
    content: "30";
  }
  45.28571% {
    content: "31";
  }
  46.71429% {
    content: "32";
  }
  48.14286% {
    content: "33";
  }
  49.57143% {
    content: "34";
  }
  51% {
    content: "35";
  }
  52.42857% {
    content: "36";
  }
  53.85714% {
    content: "37";
  }
  55.28571% {
    content: "38";
  }
  56.71429% {
    content: "39";
  }
  58.14286% {
    content: "40";
  }
  59.57143% {
    content: "41";
  }
  61% {
    content: "42";
  }
  62.42857% {
    content: "43";
  }
  63.85714% {
    content: "44";
  }
  65.28571% {
    content: "45";
  }
  66.71429% {
    content: "46";
  }
  68.14286% {
    content: "47";
  }
  69.57143% {
    content: "48";
  }
  71% {
    content: "49";
  }
  72.42857% {
    content: "50";
  }
  73.85714% {
    content: "51";
  }
  75.28571% {
    content: "52";
  }
  76.71429% {
    content: "53";
  }
  78.14286% {
    content: "54";
  }
  79.57143% {
    content: "55";
  }
  81% {
    content: "56";
  }
  82.42857% {
    content: "57";
  }
  83.85714% {
    content: "58";
  }
  85.28571% {
    content: "59";
  }
  86.71429% {
    content: "60";
  }
  88.14286% {
    content: "61";
  }
  89.57143% {
    content: "62";
  }
  91% {
    content: "63";
  }
  92.42857% {
    content: "64";
  }
  93.85714% {
    content: "65";
  }
  95.28571% {
    content: "66";
  }
  96.71429% {
    content: "67";
  }
  98.14286% {
    content: "68";
  }
  99.57143% {
    content: "69";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-71 {
  0% {
    content: "0";
  }
  2.40845% {
    content: "1";
  }
  3.8169% {
    content: "2";
  }
  5.22535% {
    content: "3";
  }
  6.6338% {
    content: "4";
  }
  8.04225% {
    content: "5";
  }
  9.4507% {
    content: "6";
  }
  10.85915% {
    content: "7";
  }
  12.26761% {
    content: "8";
  }
  13.67606% {
    content: "9";
  }
  15.08451% {
    content: "10";
  }
  16.49296% {
    content: "11";
  }
  17.90141% {
    content: "12";
  }
  19.30986% {
    content: "13";
  }
  20.71831% {
    content: "14";
  }
  22.12676% {
    content: "15";
  }
  23.53521% {
    content: "16";
  }
  24.94366% {
    content: "17";
  }
  26.35211% {
    content: "18";
  }
  27.76056% {
    content: "19";
  }
  29.16901% {
    content: "20";
  }
  30.57746% {
    content: "21";
  }
  31.98592% {
    content: "22";
  }
  33.39437% {
    content: "23";
  }
  34.80282% {
    content: "24";
  }
  36.21127% {
    content: "25";
  }
  37.61972% {
    content: "26";
  }
  39.02817% {
    content: "27";
  }
  40.43662% {
    content: "28";
  }
  41.84507% {
    content: "29";
  }
  43.25352% {
    content: "30";
  }
  44.66197% {
    content: "31";
  }
  46.07042% {
    content: "32";
  }
  47.47887% {
    content: "33";
  }
  48.88732% {
    content: "34";
  }
  50.29577% {
    content: "35";
  }
  51.70423% {
    content: "36";
  }
  53.11268% {
    content: "37";
  }
  54.52113% {
    content: "38";
  }
  55.92958% {
    content: "39";
  }
  57.33803% {
    content: "40";
  }
  58.74648% {
    content: "41";
  }
  60.15493% {
    content: "42";
  }
  61.56338% {
    content: "43";
  }
  62.97183% {
    content: "44";
  }
  64.38028% {
    content: "45";
  }
  65.78873% {
    content: "46";
  }
  67.19718% {
    content: "47";
  }
  68.60563% {
    content: "48";
  }
  70.01408% {
    content: "49";
  }
  71.42254% {
    content: "50";
  }
  72.83099% {
    content: "51";
  }
  74.23944% {
    content: "52";
  }
  75.64789% {
    content: "53";
  }
  77.05634% {
    content: "54";
  }
  78.46479% {
    content: "55";
  }
  79.87324% {
    content: "56";
  }
  81.28169% {
    content: "57";
  }
  82.69014% {
    content: "58";
  }
  84.09859% {
    content: "59";
  }
  85.50704% {
    content: "60";
  }
  86.91549% {
    content: "61";
  }
  88.32394% {
    content: "62";
  }
  89.73239% {
    content: "63";
  }
  91.14085% {
    content: "64";
  }
  92.5493% {
    content: "65";
  }
  93.95775% {
    content: "66";
  }
  95.3662% {
    content: "67";
  }
  96.77465% {
    content: "68";
  }
  98.1831% {
    content: "69";
  }
  99.59155% {
    content: "70";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-71 {
  0% {
    content: "0";
  }
  2.40845% {
    content: "1";
  }
  3.8169% {
    content: "2";
  }
  5.22535% {
    content: "3";
  }
  6.6338% {
    content: "4";
  }
  8.04225% {
    content: "5";
  }
  9.4507% {
    content: "6";
  }
  10.85915% {
    content: "7";
  }
  12.26761% {
    content: "8";
  }
  13.67606% {
    content: "9";
  }
  15.08451% {
    content: "10";
  }
  16.49296% {
    content: "11";
  }
  17.90141% {
    content: "12";
  }
  19.30986% {
    content: "13";
  }
  20.71831% {
    content: "14";
  }
  22.12676% {
    content: "15";
  }
  23.53521% {
    content: "16";
  }
  24.94366% {
    content: "17";
  }
  26.35211% {
    content: "18";
  }
  27.76056% {
    content: "19";
  }
  29.16901% {
    content: "20";
  }
  30.57746% {
    content: "21";
  }
  31.98592% {
    content: "22";
  }
  33.39437% {
    content: "23";
  }
  34.80282% {
    content: "24";
  }
  36.21127% {
    content: "25";
  }
  37.61972% {
    content: "26";
  }
  39.02817% {
    content: "27";
  }
  40.43662% {
    content: "28";
  }
  41.84507% {
    content: "29";
  }
  43.25352% {
    content: "30";
  }
  44.66197% {
    content: "31";
  }
  46.07042% {
    content: "32";
  }
  47.47887% {
    content: "33";
  }
  48.88732% {
    content: "34";
  }
  50.29577% {
    content: "35";
  }
  51.70423% {
    content: "36";
  }
  53.11268% {
    content: "37";
  }
  54.52113% {
    content: "38";
  }
  55.92958% {
    content: "39";
  }
  57.33803% {
    content: "40";
  }
  58.74648% {
    content: "41";
  }
  60.15493% {
    content: "42";
  }
  61.56338% {
    content: "43";
  }
  62.97183% {
    content: "44";
  }
  64.38028% {
    content: "45";
  }
  65.78873% {
    content: "46";
  }
  67.19718% {
    content: "47";
  }
  68.60563% {
    content: "48";
  }
  70.01408% {
    content: "49";
  }
  71.42254% {
    content: "50";
  }
  72.83099% {
    content: "51";
  }
  74.23944% {
    content: "52";
  }
  75.64789% {
    content: "53";
  }
  77.05634% {
    content: "54";
  }
  78.46479% {
    content: "55";
  }
  79.87324% {
    content: "56";
  }
  81.28169% {
    content: "57";
  }
  82.69014% {
    content: "58";
  }
  84.09859% {
    content: "59";
  }
  85.50704% {
    content: "60";
  }
  86.91549% {
    content: "61";
  }
  88.32394% {
    content: "62";
  }
  89.73239% {
    content: "63";
  }
  91.14085% {
    content: "64";
  }
  92.5493% {
    content: "65";
  }
  93.95775% {
    content: "66";
  }
  95.3662% {
    content: "67";
  }
  96.77465% {
    content: "68";
  }
  98.1831% {
    content: "69";
  }
  99.59155% {
    content: "70";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-72 {
  0% {
    content: "0";
  }
  2.38889% {
    content: "1";
  }
  3.77778% {
    content: "2";
  }
  5.16667% {
    content: "3";
  }
  6.55556% {
    content: "4";
  }
  7.94444% {
    content: "5";
  }
  9.33333% {
    content: "6";
  }
  10.72222% {
    content: "7";
  }
  12.11111% {
    content: "8";
  }
  13.5% {
    content: "9";
  }
  14.88889% {
    content: "10";
  }
  16.27778% {
    content: "11";
  }
  17.66667% {
    content: "12";
  }
  19.05556% {
    content: "13";
  }
  20.44444% {
    content: "14";
  }
  21.83333% {
    content: "15";
  }
  23.22222% {
    content: "16";
  }
  24.61111% {
    content: "17";
  }
  26% {
    content: "18";
  }
  27.38889% {
    content: "19";
  }
  28.77778% {
    content: "20";
  }
  30.16667% {
    content: "21";
  }
  31.55556% {
    content: "22";
  }
  32.94444% {
    content: "23";
  }
  34.33333% {
    content: "24";
  }
  35.72222% {
    content: "25";
  }
  37.11111% {
    content: "26";
  }
  38.5% {
    content: "27";
  }
  39.88889% {
    content: "28";
  }
  41.27778% {
    content: "29";
  }
  42.66667% {
    content: "30";
  }
  44.05556% {
    content: "31";
  }
  45.44444% {
    content: "32";
  }
  46.83333% {
    content: "33";
  }
  48.22222% {
    content: "34";
  }
  49.61111% {
    content: "35";
  }
  51% {
    content: "36";
  }
  52.38889% {
    content: "37";
  }
  53.77778% {
    content: "38";
  }
  55.16667% {
    content: "39";
  }
  56.55556% {
    content: "40";
  }
  57.94444% {
    content: "41";
  }
  59.33333% {
    content: "42";
  }
  60.72222% {
    content: "43";
  }
  62.11111% {
    content: "44";
  }
  63.5% {
    content: "45";
  }
  64.88889% {
    content: "46";
  }
  66.27778% {
    content: "47";
  }
  67.66667% {
    content: "48";
  }
  69.05556% {
    content: "49";
  }
  70.44444% {
    content: "50";
  }
  71.83333% {
    content: "51";
  }
  73.22222% {
    content: "52";
  }
  74.61111% {
    content: "53";
  }
  76% {
    content: "54";
  }
  77.38889% {
    content: "55";
  }
  78.77778% {
    content: "56";
  }
  80.16667% {
    content: "57";
  }
  81.55556% {
    content: "58";
  }
  82.94444% {
    content: "59";
  }
  84.33333% {
    content: "60";
  }
  85.72222% {
    content: "61";
  }
  87.11111% {
    content: "62";
  }
  88.5% {
    content: "63";
  }
  89.88889% {
    content: "64";
  }
  91.27778% {
    content: "65";
  }
  92.66667% {
    content: "66";
  }
  94.05556% {
    content: "67";
  }
  95.44444% {
    content: "68";
  }
  96.83333% {
    content: "69";
  }
  98.22222% {
    content: "70";
  }
  99.61111% {
    content: "71";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-72 {
  0% {
    content: "0";
  }
  2.38889% {
    content: "1";
  }
  3.77778% {
    content: "2";
  }
  5.16667% {
    content: "3";
  }
  6.55556% {
    content: "4";
  }
  7.94444% {
    content: "5";
  }
  9.33333% {
    content: "6";
  }
  10.72222% {
    content: "7";
  }
  12.11111% {
    content: "8";
  }
  13.5% {
    content: "9";
  }
  14.88889% {
    content: "10";
  }
  16.27778% {
    content: "11";
  }
  17.66667% {
    content: "12";
  }
  19.05556% {
    content: "13";
  }
  20.44444% {
    content: "14";
  }
  21.83333% {
    content: "15";
  }
  23.22222% {
    content: "16";
  }
  24.61111% {
    content: "17";
  }
  26% {
    content: "18";
  }
  27.38889% {
    content: "19";
  }
  28.77778% {
    content: "20";
  }
  30.16667% {
    content: "21";
  }
  31.55556% {
    content: "22";
  }
  32.94444% {
    content: "23";
  }
  34.33333% {
    content: "24";
  }
  35.72222% {
    content: "25";
  }
  37.11111% {
    content: "26";
  }
  38.5% {
    content: "27";
  }
  39.88889% {
    content: "28";
  }
  41.27778% {
    content: "29";
  }
  42.66667% {
    content: "30";
  }
  44.05556% {
    content: "31";
  }
  45.44444% {
    content: "32";
  }
  46.83333% {
    content: "33";
  }
  48.22222% {
    content: "34";
  }
  49.61111% {
    content: "35";
  }
  51% {
    content: "36";
  }
  52.38889% {
    content: "37";
  }
  53.77778% {
    content: "38";
  }
  55.16667% {
    content: "39";
  }
  56.55556% {
    content: "40";
  }
  57.94444% {
    content: "41";
  }
  59.33333% {
    content: "42";
  }
  60.72222% {
    content: "43";
  }
  62.11111% {
    content: "44";
  }
  63.5% {
    content: "45";
  }
  64.88889% {
    content: "46";
  }
  66.27778% {
    content: "47";
  }
  67.66667% {
    content: "48";
  }
  69.05556% {
    content: "49";
  }
  70.44444% {
    content: "50";
  }
  71.83333% {
    content: "51";
  }
  73.22222% {
    content: "52";
  }
  74.61111% {
    content: "53";
  }
  76% {
    content: "54";
  }
  77.38889% {
    content: "55";
  }
  78.77778% {
    content: "56";
  }
  80.16667% {
    content: "57";
  }
  81.55556% {
    content: "58";
  }
  82.94444% {
    content: "59";
  }
  84.33333% {
    content: "60";
  }
  85.72222% {
    content: "61";
  }
  87.11111% {
    content: "62";
  }
  88.5% {
    content: "63";
  }
  89.88889% {
    content: "64";
  }
  91.27778% {
    content: "65";
  }
  92.66667% {
    content: "66";
  }
  94.05556% {
    content: "67";
  }
  95.44444% {
    content: "68";
  }
  96.83333% {
    content: "69";
  }
  98.22222% {
    content: "70";
  }
  99.61111% {
    content: "71";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-73 {
  0% {
    content: "0";
  }
  2.36986% {
    content: "1";
  }
  3.73973% {
    content: "2";
  }
  5.10959% {
    content: "3";
  }
  6.47945% {
    content: "4";
  }
  7.84932% {
    content: "5";
  }
  9.21918% {
    content: "6";
  }
  10.58904% {
    content: "7";
  }
  11.9589% {
    content: "8";
  }
  13.32877% {
    content: "9";
  }
  14.69863% {
    content: "10";
  }
  16.06849% {
    content: "11";
  }
  17.43836% {
    content: "12";
  }
  18.80822% {
    content: "13";
  }
  20.17808% {
    content: "14";
  }
  21.54795% {
    content: "15";
  }
  22.91781% {
    content: "16";
  }
  24.28767% {
    content: "17";
  }
  25.65753% {
    content: "18";
  }
  27.0274% {
    content: "19";
  }
  28.39726% {
    content: "20";
  }
  29.76712% {
    content: "21";
  }
  31.13699% {
    content: "22";
  }
  32.50685% {
    content: "23";
  }
  33.87671% {
    content: "24";
  }
  35.24658% {
    content: "25";
  }
  36.61644% {
    content: "26";
  }
  37.9863% {
    content: "27";
  }
  39.35616% {
    content: "28";
  }
  40.72603% {
    content: "29";
  }
  42.09589% {
    content: "30";
  }
  43.46575% {
    content: "31";
  }
  44.83562% {
    content: "32";
  }
  46.20548% {
    content: "33";
  }
  47.57534% {
    content: "34";
  }
  48.94521% {
    content: "35";
  }
  50.31507% {
    content: "36";
  }
  51.68493% {
    content: "37";
  }
  53.05479% {
    content: "38";
  }
  54.42466% {
    content: "39";
  }
  55.79452% {
    content: "40";
  }
  57.16438% {
    content: "41";
  }
  58.53425% {
    content: "42";
  }
  59.90411% {
    content: "43";
  }
  61.27397% {
    content: "44";
  }
  62.64384% {
    content: "45";
  }
  64.0137% {
    content: "46";
  }
  65.38356% {
    content: "47";
  }
  66.75342% {
    content: "48";
  }
  68.12329% {
    content: "49";
  }
  69.49315% {
    content: "50";
  }
  70.86301% {
    content: "51";
  }
  72.23288% {
    content: "52";
  }
  73.60274% {
    content: "53";
  }
  74.9726% {
    content: "54";
  }
  76.34247% {
    content: "55";
  }
  77.71233% {
    content: "56";
  }
  79.08219% {
    content: "57";
  }
  80.45205% {
    content: "58";
  }
  81.82192% {
    content: "59";
  }
  83.19178% {
    content: "60";
  }
  84.56164% {
    content: "61";
  }
  85.93151% {
    content: "62";
  }
  87.30137% {
    content: "63";
  }
  88.67123% {
    content: "64";
  }
  90.0411% {
    content: "65";
  }
  91.41096% {
    content: "66";
  }
  92.78082% {
    content: "67";
  }
  94.15068% {
    content: "68";
  }
  95.52055% {
    content: "69";
  }
  96.89041% {
    content: "70";
  }
  98.26027% {
    content: "71";
  }
  99.63014% {
    content: "72";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-73 {
  0% {
    content: "0";
  }
  2.36986% {
    content: "1";
  }
  3.73973% {
    content: "2";
  }
  5.10959% {
    content: "3";
  }
  6.47945% {
    content: "4";
  }
  7.84932% {
    content: "5";
  }
  9.21918% {
    content: "6";
  }
  10.58904% {
    content: "7";
  }
  11.9589% {
    content: "8";
  }
  13.32877% {
    content: "9";
  }
  14.69863% {
    content: "10";
  }
  16.06849% {
    content: "11";
  }
  17.43836% {
    content: "12";
  }
  18.80822% {
    content: "13";
  }
  20.17808% {
    content: "14";
  }
  21.54795% {
    content: "15";
  }
  22.91781% {
    content: "16";
  }
  24.28767% {
    content: "17";
  }
  25.65753% {
    content: "18";
  }
  27.0274% {
    content: "19";
  }
  28.39726% {
    content: "20";
  }
  29.76712% {
    content: "21";
  }
  31.13699% {
    content: "22";
  }
  32.50685% {
    content: "23";
  }
  33.87671% {
    content: "24";
  }
  35.24658% {
    content: "25";
  }
  36.61644% {
    content: "26";
  }
  37.9863% {
    content: "27";
  }
  39.35616% {
    content: "28";
  }
  40.72603% {
    content: "29";
  }
  42.09589% {
    content: "30";
  }
  43.46575% {
    content: "31";
  }
  44.83562% {
    content: "32";
  }
  46.20548% {
    content: "33";
  }
  47.57534% {
    content: "34";
  }
  48.94521% {
    content: "35";
  }
  50.31507% {
    content: "36";
  }
  51.68493% {
    content: "37";
  }
  53.05479% {
    content: "38";
  }
  54.42466% {
    content: "39";
  }
  55.79452% {
    content: "40";
  }
  57.16438% {
    content: "41";
  }
  58.53425% {
    content: "42";
  }
  59.90411% {
    content: "43";
  }
  61.27397% {
    content: "44";
  }
  62.64384% {
    content: "45";
  }
  64.0137% {
    content: "46";
  }
  65.38356% {
    content: "47";
  }
  66.75342% {
    content: "48";
  }
  68.12329% {
    content: "49";
  }
  69.49315% {
    content: "50";
  }
  70.86301% {
    content: "51";
  }
  72.23288% {
    content: "52";
  }
  73.60274% {
    content: "53";
  }
  74.9726% {
    content: "54";
  }
  76.34247% {
    content: "55";
  }
  77.71233% {
    content: "56";
  }
  79.08219% {
    content: "57";
  }
  80.45205% {
    content: "58";
  }
  81.82192% {
    content: "59";
  }
  83.19178% {
    content: "60";
  }
  84.56164% {
    content: "61";
  }
  85.93151% {
    content: "62";
  }
  87.30137% {
    content: "63";
  }
  88.67123% {
    content: "64";
  }
  90.0411% {
    content: "65";
  }
  91.41096% {
    content: "66";
  }
  92.78082% {
    content: "67";
  }
  94.15068% {
    content: "68";
  }
  95.52055% {
    content: "69";
  }
  96.89041% {
    content: "70";
  }
  98.26027% {
    content: "71";
  }
  99.63014% {
    content: "72";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-74 {
  0% {
    content: "0";
  }
  2.35135% {
    content: "1";
  }
  3.7027% {
    content: "2";
  }
  5.05405% {
    content: "3";
  }
  6.40541% {
    content: "4";
  }
  7.75676% {
    content: "5";
  }
  9.10811% {
    content: "6";
  }
  10.45946% {
    content: "7";
  }
  11.81081% {
    content: "8";
  }
  13.16216% {
    content: "9";
  }
  14.51351% {
    content: "10";
  }
  15.86486% {
    content: "11";
  }
  17.21622% {
    content: "12";
  }
  18.56757% {
    content: "13";
  }
  19.91892% {
    content: "14";
  }
  21.27027% {
    content: "15";
  }
  22.62162% {
    content: "16";
  }
  23.97297% {
    content: "17";
  }
  25.32432% {
    content: "18";
  }
  26.67568% {
    content: "19";
  }
  28.02703% {
    content: "20";
  }
  29.37838% {
    content: "21";
  }
  30.72973% {
    content: "22";
  }
  32.08108% {
    content: "23";
  }
  33.43243% {
    content: "24";
  }
  34.78378% {
    content: "25";
  }
  36.13514% {
    content: "26";
  }
  37.48649% {
    content: "27";
  }
  38.83784% {
    content: "28";
  }
  40.18919% {
    content: "29";
  }
  41.54054% {
    content: "30";
  }
  42.89189% {
    content: "31";
  }
  44.24324% {
    content: "32";
  }
  45.59459% {
    content: "33";
  }
  46.94595% {
    content: "34";
  }
  48.2973% {
    content: "35";
  }
  49.64865% {
    content: "36";
  }
  51% {
    content: "37";
  }
  52.35135% {
    content: "38";
  }
  53.7027% {
    content: "39";
  }
  55.05405% {
    content: "40";
  }
  56.40541% {
    content: "41";
  }
  57.75676% {
    content: "42";
  }
  59.10811% {
    content: "43";
  }
  60.45946% {
    content: "44";
  }
  61.81081% {
    content: "45";
  }
  63.16216% {
    content: "46";
  }
  64.51351% {
    content: "47";
  }
  65.86486% {
    content: "48";
  }
  67.21622% {
    content: "49";
  }
  68.56757% {
    content: "50";
  }
  69.91892% {
    content: "51";
  }
  71.27027% {
    content: "52";
  }
  72.62162% {
    content: "53";
  }
  73.97297% {
    content: "54";
  }
  75.32432% {
    content: "55";
  }
  76.67568% {
    content: "56";
  }
  78.02703% {
    content: "57";
  }
  79.37838% {
    content: "58";
  }
  80.72973% {
    content: "59";
  }
  82.08108% {
    content: "60";
  }
  83.43243% {
    content: "61";
  }
  84.78378% {
    content: "62";
  }
  86.13514% {
    content: "63";
  }
  87.48649% {
    content: "64";
  }
  88.83784% {
    content: "65";
  }
  90.18919% {
    content: "66";
  }
  91.54054% {
    content: "67";
  }
  92.89189% {
    content: "68";
  }
  94.24324% {
    content: "69";
  }
  95.59459% {
    content: "70";
  }
  96.94595% {
    content: "71";
  }
  98.2973% {
    content: "72";
  }
  99.64865% {
    content: "73";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-74 {
  0% {
    content: "0";
  }
  2.35135% {
    content: "1";
  }
  3.7027% {
    content: "2";
  }
  5.05405% {
    content: "3";
  }
  6.40541% {
    content: "4";
  }
  7.75676% {
    content: "5";
  }
  9.10811% {
    content: "6";
  }
  10.45946% {
    content: "7";
  }
  11.81081% {
    content: "8";
  }
  13.16216% {
    content: "9";
  }
  14.51351% {
    content: "10";
  }
  15.86486% {
    content: "11";
  }
  17.21622% {
    content: "12";
  }
  18.56757% {
    content: "13";
  }
  19.91892% {
    content: "14";
  }
  21.27027% {
    content: "15";
  }
  22.62162% {
    content: "16";
  }
  23.97297% {
    content: "17";
  }
  25.32432% {
    content: "18";
  }
  26.67568% {
    content: "19";
  }
  28.02703% {
    content: "20";
  }
  29.37838% {
    content: "21";
  }
  30.72973% {
    content: "22";
  }
  32.08108% {
    content: "23";
  }
  33.43243% {
    content: "24";
  }
  34.78378% {
    content: "25";
  }
  36.13514% {
    content: "26";
  }
  37.48649% {
    content: "27";
  }
  38.83784% {
    content: "28";
  }
  40.18919% {
    content: "29";
  }
  41.54054% {
    content: "30";
  }
  42.89189% {
    content: "31";
  }
  44.24324% {
    content: "32";
  }
  45.59459% {
    content: "33";
  }
  46.94595% {
    content: "34";
  }
  48.2973% {
    content: "35";
  }
  49.64865% {
    content: "36";
  }
  51% {
    content: "37";
  }
  52.35135% {
    content: "38";
  }
  53.7027% {
    content: "39";
  }
  55.05405% {
    content: "40";
  }
  56.40541% {
    content: "41";
  }
  57.75676% {
    content: "42";
  }
  59.10811% {
    content: "43";
  }
  60.45946% {
    content: "44";
  }
  61.81081% {
    content: "45";
  }
  63.16216% {
    content: "46";
  }
  64.51351% {
    content: "47";
  }
  65.86486% {
    content: "48";
  }
  67.21622% {
    content: "49";
  }
  68.56757% {
    content: "50";
  }
  69.91892% {
    content: "51";
  }
  71.27027% {
    content: "52";
  }
  72.62162% {
    content: "53";
  }
  73.97297% {
    content: "54";
  }
  75.32432% {
    content: "55";
  }
  76.67568% {
    content: "56";
  }
  78.02703% {
    content: "57";
  }
  79.37838% {
    content: "58";
  }
  80.72973% {
    content: "59";
  }
  82.08108% {
    content: "60";
  }
  83.43243% {
    content: "61";
  }
  84.78378% {
    content: "62";
  }
  86.13514% {
    content: "63";
  }
  87.48649% {
    content: "64";
  }
  88.83784% {
    content: "65";
  }
  90.18919% {
    content: "66";
  }
  91.54054% {
    content: "67";
  }
  92.89189% {
    content: "68";
  }
  94.24324% {
    content: "69";
  }
  95.59459% {
    content: "70";
  }
  96.94595% {
    content: "71";
  }
  98.2973% {
    content: "72";
  }
  99.64865% {
    content: "73";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-75 {
  0% {
    content: "0";
  }
  2.33333% {
    content: "1";
  }
  3.66667% {
    content: "2";
  }
  5% {
    content: "3";
  }
  6.33333% {
    content: "4";
  }
  7.66667% {
    content: "5";
  }
  9% {
    content: "6";
  }
  10.33333% {
    content: "7";
  }
  11.66667% {
    content: "8";
  }
  13% {
    content: "9";
  }
  14.33333% {
    content: "10";
  }
  15.66667% {
    content: "11";
  }
  17% {
    content: "12";
  }
  18.33333% {
    content: "13";
  }
  19.66667% {
    content: "14";
  }
  21% {
    content: "15";
  }
  22.33333% {
    content: "16";
  }
  23.66667% {
    content: "17";
  }
  25% {
    content: "18";
  }
  26.33333% {
    content: "19";
  }
  27.66667% {
    content: "20";
  }
  29% {
    content: "21";
  }
  30.33333% {
    content: "22";
  }
  31.66667% {
    content: "23";
  }
  33% {
    content: "24";
  }
  34.33333% {
    content: "25";
  }
  35.66667% {
    content: "26";
  }
  37% {
    content: "27";
  }
  38.33333% {
    content: "28";
  }
  39.66667% {
    content: "29";
  }
  41% {
    content: "30";
  }
  42.33333% {
    content: "31";
  }
  43.66667% {
    content: "32";
  }
  45% {
    content: "33";
  }
  46.33333% {
    content: "34";
  }
  47.66667% {
    content: "35";
  }
  49% {
    content: "36";
  }
  50.33333% {
    content: "37";
  }
  51.66667% {
    content: "38";
  }
  53% {
    content: "39";
  }
  54.33333% {
    content: "40";
  }
  55.66667% {
    content: "41";
  }
  57% {
    content: "42";
  }
  58.33333% {
    content: "43";
  }
  59.66667% {
    content: "44";
  }
  61% {
    content: "45";
  }
  62.33333% {
    content: "46";
  }
  63.66667% {
    content: "47";
  }
  65% {
    content: "48";
  }
  66.33333% {
    content: "49";
  }
  67.66667% {
    content: "50";
  }
  69% {
    content: "51";
  }
  70.33333% {
    content: "52";
  }
  71.66667% {
    content: "53";
  }
  73% {
    content: "54";
  }
  74.33333% {
    content: "55";
  }
  75.66667% {
    content: "56";
  }
  77% {
    content: "57";
  }
  78.33333% {
    content: "58";
  }
  79.66667% {
    content: "59";
  }
  81% {
    content: "60";
  }
  82.33333% {
    content: "61";
  }
  83.66667% {
    content: "62";
  }
  85% {
    content: "63";
  }
  86.33333% {
    content: "64";
  }
  87.66667% {
    content: "65";
  }
  89% {
    content: "66";
  }
  90.33333% {
    content: "67";
  }
  91.66667% {
    content: "68";
  }
  93% {
    content: "69";
  }
  94.33333% {
    content: "70";
  }
  95.66667% {
    content: "71";
  }
  97% {
    content: "72";
  }
  98.33333% {
    content: "73";
  }
  99.66667% {
    content: "74";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-75 {
  0% {
    content: "0";
  }
  2.33333% {
    content: "1";
  }
  3.66667% {
    content: "2";
  }
  5% {
    content: "3";
  }
  6.33333% {
    content: "4";
  }
  7.66667% {
    content: "5";
  }
  9% {
    content: "6";
  }
  10.33333% {
    content: "7";
  }
  11.66667% {
    content: "8";
  }
  13% {
    content: "9";
  }
  14.33333% {
    content: "10";
  }
  15.66667% {
    content: "11";
  }
  17% {
    content: "12";
  }
  18.33333% {
    content: "13";
  }
  19.66667% {
    content: "14";
  }
  21% {
    content: "15";
  }
  22.33333% {
    content: "16";
  }
  23.66667% {
    content: "17";
  }
  25% {
    content: "18";
  }
  26.33333% {
    content: "19";
  }
  27.66667% {
    content: "20";
  }
  29% {
    content: "21";
  }
  30.33333% {
    content: "22";
  }
  31.66667% {
    content: "23";
  }
  33% {
    content: "24";
  }
  34.33333% {
    content: "25";
  }
  35.66667% {
    content: "26";
  }
  37% {
    content: "27";
  }
  38.33333% {
    content: "28";
  }
  39.66667% {
    content: "29";
  }
  41% {
    content: "30";
  }
  42.33333% {
    content: "31";
  }
  43.66667% {
    content: "32";
  }
  45% {
    content: "33";
  }
  46.33333% {
    content: "34";
  }
  47.66667% {
    content: "35";
  }
  49% {
    content: "36";
  }
  50.33333% {
    content: "37";
  }
  51.66667% {
    content: "38";
  }
  53% {
    content: "39";
  }
  54.33333% {
    content: "40";
  }
  55.66667% {
    content: "41";
  }
  57% {
    content: "42";
  }
  58.33333% {
    content: "43";
  }
  59.66667% {
    content: "44";
  }
  61% {
    content: "45";
  }
  62.33333% {
    content: "46";
  }
  63.66667% {
    content: "47";
  }
  65% {
    content: "48";
  }
  66.33333% {
    content: "49";
  }
  67.66667% {
    content: "50";
  }
  69% {
    content: "51";
  }
  70.33333% {
    content: "52";
  }
  71.66667% {
    content: "53";
  }
  73% {
    content: "54";
  }
  74.33333% {
    content: "55";
  }
  75.66667% {
    content: "56";
  }
  77% {
    content: "57";
  }
  78.33333% {
    content: "58";
  }
  79.66667% {
    content: "59";
  }
  81% {
    content: "60";
  }
  82.33333% {
    content: "61";
  }
  83.66667% {
    content: "62";
  }
  85% {
    content: "63";
  }
  86.33333% {
    content: "64";
  }
  87.66667% {
    content: "65";
  }
  89% {
    content: "66";
  }
  90.33333% {
    content: "67";
  }
  91.66667% {
    content: "68";
  }
  93% {
    content: "69";
  }
  94.33333% {
    content: "70";
  }
  95.66667% {
    content: "71";
  }
  97% {
    content: "72";
  }
  98.33333% {
    content: "73";
  }
  99.66667% {
    content: "74";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-76 {
  0% {
    content: "0";
  }
  2.31579% {
    content: "1";
  }
  3.63158% {
    content: "2";
  }
  4.94737% {
    content: "3";
  }
  6.26316% {
    content: "4";
  }
  7.57895% {
    content: "5";
  }
  8.89474% {
    content: "6";
  }
  10.21053% {
    content: "7";
  }
  11.52632% {
    content: "8";
  }
  12.84211% {
    content: "9";
  }
  14.15789% {
    content: "10";
  }
  15.47368% {
    content: "11";
  }
  16.78947% {
    content: "12";
  }
  18.10526% {
    content: "13";
  }
  19.42105% {
    content: "14";
  }
  20.73684% {
    content: "15";
  }
  22.05263% {
    content: "16";
  }
  23.36842% {
    content: "17";
  }
  24.68421% {
    content: "18";
  }
  26% {
    content: "19";
  }
  27.31579% {
    content: "20";
  }
  28.63158% {
    content: "21";
  }
  29.94737% {
    content: "22";
  }
  31.26316% {
    content: "23";
  }
  32.57895% {
    content: "24";
  }
  33.89474% {
    content: "25";
  }
  35.21053% {
    content: "26";
  }
  36.52632% {
    content: "27";
  }
  37.84211% {
    content: "28";
  }
  39.15789% {
    content: "29";
  }
  40.47368% {
    content: "30";
  }
  41.78947% {
    content: "31";
  }
  43.10526% {
    content: "32";
  }
  44.42105% {
    content: "33";
  }
  45.73684% {
    content: "34";
  }
  47.05263% {
    content: "35";
  }
  48.36842% {
    content: "36";
  }
  49.68421% {
    content: "37";
  }
  51% {
    content: "38";
  }
  52.31579% {
    content: "39";
  }
  53.63158% {
    content: "40";
  }
  54.94737% {
    content: "41";
  }
  56.26316% {
    content: "42";
  }
  57.57895% {
    content: "43";
  }
  58.89474% {
    content: "44";
  }
  60.21053% {
    content: "45";
  }
  61.52632% {
    content: "46";
  }
  62.84211% {
    content: "47";
  }
  64.15789% {
    content: "48";
  }
  65.47368% {
    content: "49";
  }
  66.78947% {
    content: "50";
  }
  68.10526% {
    content: "51";
  }
  69.42105% {
    content: "52";
  }
  70.73684% {
    content: "53";
  }
  72.05263% {
    content: "54";
  }
  73.36842% {
    content: "55";
  }
  74.68421% {
    content: "56";
  }
  76% {
    content: "57";
  }
  77.31579% {
    content: "58";
  }
  78.63158% {
    content: "59";
  }
  79.94737% {
    content: "60";
  }
  81.26316% {
    content: "61";
  }
  82.57895% {
    content: "62";
  }
  83.89474% {
    content: "63";
  }
  85.21053% {
    content: "64";
  }
  86.52632% {
    content: "65";
  }
  87.84211% {
    content: "66";
  }
  89.15789% {
    content: "67";
  }
  90.47368% {
    content: "68";
  }
  91.78947% {
    content: "69";
  }
  93.10526% {
    content: "70";
  }
  94.42105% {
    content: "71";
  }
  95.73684% {
    content: "72";
  }
  97.05263% {
    content: "73";
  }
  98.36842% {
    content: "74";
  }
  99.68421% {
    content: "75";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-76 {
  0% {
    content: "0";
  }
  2.31579% {
    content: "1";
  }
  3.63158% {
    content: "2";
  }
  4.94737% {
    content: "3";
  }
  6.26316% {
    content: "4";
  }
  7.57895% {
    content: "5";
  }
  8.89474% {
    content: "6";
  }
  10.21053% {
    content: "7";
  }
  11.52632% {
    content: "8";
  }
  12.84211% {
    content: "9";
  }
  14.15789% {
    content: "10";
  }
  15.47368% {
    content: "11";
  }
  16.78947% {
    content: "12";
  }
  18.10526% {
    content: "13";
  }
  19.42105% {
    content: "14";
  }
  20.73684% {
    content: "15";
  }
  22.05263% {
    content: "16";
  }
  23.36842% {
    content: "17";
  }
  24.68421% {
    content: "18";
  }
  26% {
    content: "19";
  }
  27.31579% {
    content: "20";
  }
  28.63158% {
    content: "21";
  }
  29.94737% {
    content: "22";
  }
  31.26316% {
    content: "23";
  }
  32.57895% {
    content: "24";
  }
  33.89474% {
    content: "25";
  }
  35.21053% {
    content: "26";
  }
  36.52632% {
    content: "27";
  }
  37.84211% {
    content: "28";
  }
  39.15789% {
    content: "29";
  }
  40.47368% {
    content: "30";
  }
  41.78947% {
    content: "31";
  }
  43.10526% {
    content: "32";
  }
  44.42105% {
    content: "33";
  }
  45.73684% {
    content: "34";
  }
  47.05263% {
    content: "35";
  }
  48.36842% {
    content: "36";
  }
  49.68421% {
    content: "37";
  }
  51% {
    content: "38";
  }
  52.31579% {
    content: "39";
  }
  53.63158% {
    content: "40";
  }
  54.94737% {
    content: "41";
  }
  56.26316% {
    content: "42";
  }
  57.57895% {
    content: "43";
  }
  58.89474% {
    content: "44";
  }
  60.21053% {
    content: "45";
  }
  61.52632% {
    content: "46";
  }
  62.84211% {
    content: "47";
  }
  64.15789% {
    content: "48";
  }
  65.47368% {
    content: "49";
  }
  66.78947% {
    content: "50";
  }
  68.10526% {
    content: "51";
  }
  69.42105% {
    content: "52";
  }
  70.73684% {
    content: "53";
  }
  72.05263% {
    content: "54";
  }
  73.36842% {
    content: "55";
  }
  74.68421% {
    content: "56";
  }
  76% {
    content: "57";
  }
  77.31579% {
    content: "58";
  }
  78.63158% {
    content: "59";
  }
  79.94737% {
    content: "60";
  }
  81.26316% {
    content: "61";
  }
  82.57895% {
    content: "62";
  }
  83.89474% {
    content: "63";
  }
  85.21053% {
    content: "64";
  }
  86.52632% {
    content: "65";
  }
  87.84211% {
    content: "66";
  }
  89.15789% {
    content: "67";
  }
  90.47368% {
    content: "68";
  }
  91.78947% {
    content: "69";
  }
  93.10526% {
    content: "70";
  }
  94.42105% {
    content: "71";
  }
  95.73684% {
    content: "72";
  }
  97.05263% {
    content: "73";
  }
  98.36842% {
    content: "74";
  }
  99.68421% {
    content: "75";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-77 {
  0% {
    content: "0";
  }
  2.2987% {
    content: "1";
  }
  3.5974% {
    content: "2";
  }
  4.8961% {
    content: "3";
  }
  6.19481% {
    content: "4";
  }
  7.49351% {
    content: "5";
  }
  8.79221% {
    content: "6";
  }
  10.09091% {
    content: "7";
  }
  11.38961% {
    content: "8";
  }
  12.68831% {
    content: "9";
  }
  13.98701% {
    content: "10";
  }
  15.28571% {
    content: "11";
  }
  16.58442% {
    content: "12";
  }
  17.88312% {
    content: "13";
  }
  19.18182% {
    content: "14";
  }
  20.48052% {
    content: "15";
  }
  21.77922% {
    content: "16";
  }
  23.07792% {
    content: "17";
  }
  24.37662% {
    content: "18";
  }
  25.67532% {
    content: "19";
  }
  26.97403% {
    content: "20";
  }
  28.27273% {
    content: "21";
  }
  29.57143% {
    content: "22";
  }
  30.87013% {
    content: "23";
  }
  32.16883% {
    content: "24";
  }
  33.46753% {
    content: "25";
  }
  34.76623% {
    content: "26";
  }
  36.06494% {
    content: "27";
  }
  37.36364% {
    content: "28";
  }
  38.66234% {
    content: "29";
  }
  39.96104% {
    content: "30";
  }
  41.25974% {
    content: "31";
  }
  42.55844% {
    content: "32";
  }
  43.85714% {
    content: "33";
  }
  45.15584% {
    content: "34";
  }
  46.45455% {
    content: "35";
  }
  47.75325% {
    content: "36";
  }
  49.05195% {
    content: "37";
  }
  50.35065% {
    content: "38";
  }
  51.64935% {
    content: "39";
  }
  52.94805% {
    content: "40";
  }
  54.24675% {
    content: "41";
  }
  55.54545% {
    content: "42";
  }
  56.84416% {
    content: "43";
  }
  58.14286% {
    content: "44";
  }
  59.44156% {
    content: "45";
  }
  60.74026% {
    content: "46";
  }
  62.03896% {
    content: "47";
  }
  63.33766% {
    content: "48";
  }
  64.63636% {
    content: "49";
  }
  65.93506% {
    content: "50";
  }
  67.23377% {
    content: "51";
  }
  68.53247% {
    content: "52";
  }
  69.83117% {
    content: "53";
  }
  71.12987% {
    content: "54";
  }
  72.42857% {
    content: "55";
  }
  73.72727% {
    content: "56";
  }
  75.02597% {
    content: "57";
  }
  76.32468% {
    content: "58";
  }
  77.62338% {
    content: "59";
  }
  78.92208% {
    content: "60";
  }
  80.22078% {
    content: "61";
  }
  81.51948% {
    content: "62";
  }
  82.81818% {
    content: "63";
  }
  84.11688% {
    content: "64";
  }
  85.41558% {
    content: "65";
  }
  86.71429% {
    content: "66";
  }
  88.01299% {
    content: "67";
  }
  89.31169% {
    content: "68";
  }
  90.61039% {
    content: "69";
  }
  91.90909% {
    content: "70";
  }
  93.20779% {
    content: "71";
  }
  94.50649% {
    content: "72";
  }
  95.80519% {
    content: "73";
  }
  97.1039% {
    content: "74";
  }
  98.4026% {
    content: "75";
  }
  99.7013% {
    content: "76";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-77 {
  0% {
    content: "0";
  }
  2.2987% {
    content: "1";
  }
  3.5974% {
    content: "2";
  }
  4.8961% {
    content: "3";
  }
  6.19481% {
    content: "4";
  }
  7.49351% {
    content: "5";
  }
  8.79221% {
    content: "6";
  }
  10.09091% {
    content: "7";
  }
  11.38961% {
    content: "8";
  }
  12.68831% {
    content: "9";
  }
  13.98701% {
    content: "10";
  }
  15.28571% {
    content: "11";
  }
  16.58442% {
    content: "12";
  }
  17.88312% {
    content: "13";
  }
  19.18182% {
    content: "14";
  }
  20.48052% {
    content: "15";
  }
  21.77922% {
    content: "16";
  }
  23.07792% {
    content: "17";
  }
  24.37662% {
    content: "18";
  }
  25.67532% {
    content: "19";
  }
  26.97403% {
    content: "20";
  }
  28.27273% {
    content: "21";
  }
  29.57143% {
    content: "22";
  }
  30.87013% {
    content: "23";
  }
  32.16883% {
    content: "24";
  }
  33.46753% {
    content: "25";
  }
  34.76623% {
    content: "26";
  }
  36.06494% {
    content: "27";
  }
  37.36364% {
    content: "28";
  }
  38.66234% {
    content: "29";
  }
  39.96104% {
    content: "30";
  }
  41.25974% {
    content: "31";
  }
  42.55844% {
    content: "32";
  }
  43.85714% {
    content: "33";
  }
  45.15584% {
    content: "34";
  }
  46.45455% {
    content: "35";
  }
  47.75325% {
    content: "36";
  }
  49.05195% {
    content: "37";
  }
  50.35065% {
    content: "38";
  }
  51.64935% {
    content: "39";
  }
  52.94805% {
    content: "40";
  }
  54.24675% {
    content: "41";
  }
  55.54545% {
    content: "42";
  }
  56.84416% {
    content: "43";
  }
  58.14286% {
    content: "44";
  }
  59.44156% {
    content: "45";
  }
  60.74026% {
    content: "46";
  }
  62.03896% {
    content: "47";
  }
  63.33766% {
    content: "48";
  }
  64.63636% {
    content: "49";
  }
  65.93506% {
    content: "50";
  }
  67.23377% {
    content: "51";
  }
  68.53247% {
    content: "52";
  }
  69.83117% {
    content: "53";
  }
  71.12987% {
    content: "54";
  }
  72.42857% {
    content: "55";
  }
  73.72727% {
    content: "56";
  }
  75.02597% {
    content: "57";
  }
  76.32468% {
    content: "58";
  }
  77.62338% {
    content: "59";
  }
  78.92208% {
    content: "60";
  }
  80.22078% {
    content: "61";
  }
  81.51948% {
    content: "62";
  }
  82.81818% {
    content: "63";
  }
  84.11688% {
    content: "64";
  }
  85.41558% {
    content: "65";
  }
  86.71429% {
    content: "66";
  }
  88.01299% {
    content: "67";
  }
  89.31169% {
    content: "68";
  }
  90.61039% {
    content: "69";
  }
  91.90909% {
    content: "70";
  }
  93.20779% {
    content: "71";
  }
  94.50649% {
    content: "72";
  }
  95.80519% {
    content: "73";
  }
  97.1039% {
    content: "74";
  }
  98.4026% {
    content: "75";
  }
  99.7013% {
    content: "76";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-78 {
  0% {
    content: "0";
  }
  2.28205% {
    content: "1";
  }
  3.5641% {
    content: "2";
  }
  4.84615% {
    content: "3";
  }
  6.12821% {
    content: "4";
  }
  7.41026% {
    content: "5";
  }
  8.69231% {
    content: "6";
  }
  9.97436% {
    content: "7";
  }
  11.25641% {
    content: "8";
  }
  12.53846% {
    content: "9";
  }
  13.82051% {
    content: "10";
  }
  15.10256% {
    content: "11";
  }
  16.38462% {
    content: "12";
  }
  17.66667% {
    content: "13";
  }
  18.94872% {
    content: "14";
  }
  20.23077% {
    content: "15";
  }
  21.51282% {
    content: "16";
  }
  22.79487% {
    content: "17";
  }
  24.07692% {
    content: "18";
  }
  25.35897% {
    content: "19";
  }
  26.64103% {
    content: "20";
  }
  27.92308% {
    content: "21";
  }
  29.20513% {
    content: "22";
  }
  30.48718% {
    content: "23";
  }
  31.76923% {
    content: "24";
  }
  33.05128% {
    content: "25";
  }
  34.33333% {
    content: "26";
  }
  35.61538% {
    content: "27";
  }
  36.89744% {
    content: "28";
  }
  38.17949% {
    content: "29";
  }
  39.46154% {
    content: "30";
  }
  40.74359% {
    content: "31";
  }
  42.02564% {
    content: "32";
  }
  43.30769% {
    content: "33";
  }
  44.58974% {
    content: "34";
  }
  45.87179% {
    content: "35";
  }
  47.15385% {
    content: "36";
  }
  48.4359% {
    content: "37";
  }
  49.71795% {
    content: "38";
  }
  51% {
    content: "39";
  }
  52.28205% {
    content: "40";
  }
  53.5641% {
    content: "41";
  }
  54.84615% {
    content: "42";
  }
  56.12821% {
    content: "43";
  }
  57.41026% {
    content: "44";
  }
  58.69231% {
    content: "45";
  }
  59.97436% {
    content: "46";
  }
  61.25641% {
    content: "47";
  }
  62.53846% {
    content: "48";
  }
  63.82051% {
    content: "49";
  }
  65.10256% {
    content: "50";
  }
  66.38462% {
    content: "51";
  }
  67.66667% {
    content: "52";
  }
  68.94872% {
    content: "53";
  }
  70.23077% {
    content: "54";
  }
  71.51282% {
    content: "55";
  }
  72.79487% {
    content: "56";
  }
  74.07692% {
    content: "57";
  }
  75.35897% {
    content: "58";
  }
  76.64103% {
    content: "59";
  }
  77.92308% {
    content: "60";
  }
  79.20513% {
    content: "61";
  }
  80.48718% {
    content: "62";
  }
  81.76923% {
    content: "63";
  }
  83.05128% {
    content: "64";
  }
  84.33333% {
    content: "65";
  }
  85.61538% {
    content: "66";
  }
  86.89744% {
    content: "67";
  }
  88.17949% {
    content: "68";
  }
  89.46154% {
    content: "69";
  }
  90.74359% {
    content: "70";
  }
  92.02564% {
    content: "71";
  }
  93.30769% {
    content: "72";
  }
  94.58974% {
    content: "73";
  }
  95.87179% {
    content: "74";
  }
  97.15385% {
    content: "75";
  }
  98.4359% {
    content: "76";
  }
  99.71795% {
    content: "77";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-78 {
  0% {
    content: "0";
  }
  2.28205% {
    content: "1";
  }
  3.5641% {
    content: "2";
  }
  4.84615% {
    content: "3";
  }
  6.12821% {
    content: "4";
  }
  7.41026% {
    content: "5";
  }
  8.69231% {
    content: "6";
  }
  9.97436% {
    content: "7";
  }
  11.25641% {
    content: "8";
  }
  12.53846% {
    content: "9";
  }
  13.82051% {
    content: "10";
  }
  15.10256% {
    content: "11";
  }
  16.38462% {
    content: "12";
  }
  17.66667% {
    content: "13";
  }
  18.94872% {
    content: "14";
  }
  20.23077% {
    content: "15";
  }
  21.51282% {
    content: "16";
  }
  22.79487% {
    content: "17";
  }
  24.07692% {
    content: "18";
  }
  25.35897% {
    content: "19";
  }
  26.64103% {
    content: "20";
  }
  27.92308% {
    content: "21";
  }
  29.20513% {
    content: "22";
  }
  30.48718% {
    content: "23";
  }
  31.76923% {
    content: "24";
  }
  33.05128% {
    content: "25";
  }
  34.33333% {
    content: "26";
  }
  35.61538% {
    content: "27";
  }
  36.89744% {
    content: "28";
  }
  38.17949% {
    content: "29";
  }
  39.46154% {
    content: "30";
  }
  40.74359% {
    content: "31";
  }
  42.02564% {
    content: "32";
  }
  43.30769% {
    content: "33";
  }
  44.58974% {
    content: "34";
  }
  45.87179% {
    content: "35";
  }
  47.15385% {
    content: "36";
  }
  48.4359% {
    content: "37";
  }
  49.71795% {
    content: "38";
  }
  51% {
    content: "39";
  }
  52.28205% {
    content: "40";
  }
  53.5641% {
    content: "41";
  }
  54.84615% {
    content: "42";
  }
  56.12821% {
    content: "43";
  }
  57.41026% {
    content: "44";
  }
  58.69231% {
    content: "45";
  }
  59.97436% {
    content: "46";
  }
  61.25641% {
    content: "47";
  }
  62.53846% {
    content: "48";
  }
  63.82051% {
    content: "49";
  }
  65.10256% {
    content: "50";
  }
  66.38462% {
    content: "51";
  }
  67.66667% {
    content: "52";
  }
  68.94872% {
    content: "53";
  }
  70.23077% {
    content: "54";
  }
  71.51282% {
    content: "55";
  }
  72.79487% {
    content: "56";
  }
  74.07692% {
    content: "57";
  }
  75.35897% {
    content: "58";
  }
  76.64103% {
    content: "59";
  }
  77.92308% {
    content: "60";
  }
  79.20513% {
    content: "61";
  }
  80.48718% {
    content: "62";
  }
  81.76923% {
    content: "63";
  }
  83.05128% {
    content: "64";
  }
  84.33333% {
    content: "65";
  }
  85.61538% {
    content: "66";
  }
  86.89744% {
    content: "67";
  }
  88.17949% {
    content: "68";
  }
  89.46154% {
    content: "69";
  }
  90.74359% {
    content: "70";
  }
  92.02564% {
    content: "71";
  }
  93.30769% {
    content: "72";
  }
  94.58974% {
    content: "73";
  }
  95.87179% {
    content: "74";
  }
  97.15385% {
    content: "75";
  }
  98.4359% {
    content: "76";
  }
  99.71795% {
    content: "77";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-79 {
  0% {
    content: "0";
  }
  2.26582% {
    content: "1";
  }
  3.53165% {
    content: "2";
  }
  4.79747% {
    content: "3";
  }
  6.06329% {
    content: "4";
  }
  7.32911% {
    content: "5";
  }
  8.59494% {
    content: "6";
  }
  9.86076% {
    content: "7";
  }
  11.12658% {
    content: "8";
  }
  12.39241% {
    content: "9";
  }
  13.65823% {
    content: "10";
  }
  14.92405% {
    content: "11";
  }
  16.18987% {
    content: "12";
  }
  17.4557% {
    content: "13";
  }
  18.72152% {
    content: "14";
  }
  19.98734% {
    content: "15";
  }
  21.25316% {
    content: "16";
  }
  22.51899% {
    content: "17";
  }
  23.78481% {
    content: "18";
  }
  25.05063% {
    content: "19";
  }
  26.31646% {
    content: "20";
  }
  27.58228% {
    content: "21";
  }
  28.8481% {
    content: "22";
  }
  30.11392% {
    content: "23";
  }
  31.37975% {
    content: "24";
  }
  32.64557% {
    content: "25";
  }
  33.91139% {
    content: "26";
  }
  35.17722% {
    content: "27";
  }
  36.44304% {
    content: "28";
  }
  37.70886% {
    content: "29";
  }
  38.97468% {
    content: "30";
  }
  40.24051% {
    content: "31";
  }
  41.50633% {
    content: "32";
  }
  42.77215% {
    content: "33";
  }
  44.03797% {
    content: "34";
  }
  45.3038% {
    content: "35";
  }
  46.56962% {
    content: "36";
  }
  47.83544% {
    content: "37";
  }
  49.10127% {
    content: "38";
  }
  50.36709% {
    content: "39";
  }
  51.63291% {
    content: "40";
  }
  52.89873% {
    content: "41";
  }
  54.16456% {
    content: "42";
  }
  55.43038% {
    content: "43";
  }
  56.6962% {
    content: "44";
  }
  57.96203% {
    content: "45";
  }
  59.22785% {
    content: "46";
  }
  60.49367% {
    content: "47";
  }
  61.75949% {
    content: "48";
  }
  63.02532% {
    content: "49";
  }
  64.29114% {
    content: "50";
  }
  65.55696% {
    content: "51";
  }
  66.82278% {
    content: "52";
  }
  68.08861% {
    content: "53";
  }
  69.35443% {
    content: "54";
  }
  70.62025% {
    content: "55";
  }
  71.88608% {
    content: "56";
  }
  73.1519% {
    content: "57";
  }
  74.41772% {
    content: "58";
  }
  75.68354% {
    content: "59";
  }
  76.94937% {
    content: "60";
  }
  78.21519% {
    content: "61";
  }
  79.48101% {
    content: "62";
  }
  80.74684% {
    content: "63";
  }
  82.01266% {
    content: "64";
  }
  83.27848% {
    content: "65";
  }
  84.5443% {
    content: "66";
  }
  85.81013% {
    content: "67";
  }
  87.07595% {
    content: "68";
  }
  88.34177% {
    content: "69";
  }
  89.60759% {
    content: "70";
  }
  90.87342% {
    content: "71";
  }
  92.13924% {
    content: "72";
  }
  93.40506% {
    content: "73";
  }
  94.67089% {
    content: "74";
  }
  95.93671% {
    content: "75";
  }
  97.20253% {
    content: "76";
  }
  98.46835% {
    content: "77";
  }
  99.73418% {
    content: "78";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-79 {
  0% {
    content: "0";
  }
  2.26582% {
    content: "1";
  }
  3.53165% {
    content: "2";
  }
  4.79747% {
    content: "3";
  }
  6.06329% {
    content: "4";
  }
  7.32911% {
    content: "5";
  }
  8.59494% {
    content: "6";
  }
  9.86076% {
    content: "7";
  }
  11.12658% {
    content: "8";
  }
  12.39241% {
    content: "9";
  }
  13.65823% {
    content: "10";
  }
  14.92405% {
    content: "11";
  }
  16.18987% {
    content: "12";
  }
  17.4557% {
    content: "13";
  }
  18.72152% {
    content: "14";
  }
  19.98734% {
    content: "15";
  }
  21.25316% {
    content: "16";
  }
  22.51899% {
    content: "17";
  }
  23.78481% {
    content: "18";
  }
  25.05063% {
    content: "19";
  }
  26.31646% {
    content: "20";
  }
  27.58228% {
    content: "21";
  }
  28.8481% {
    content: "22";
  }
  30.11392% {
    content: "23";
  }
  31.37975% {
    content: "24";
  }
  32.64557% {
    content: "25";
  }
  33.91139% {
    content: "26";
  }
  35.17722% {
    content: "27";
  }
  36.44304% {
    content: "28";
  }
  37.70886% {
    content: "29";
  }
  38.97468% {
    content: "30";
  }
  40.24051% {
    content: "31";
  }
  41.50633% {
    content: "32";
  }
  42.77215% {
    content: "33";
  }
  44.03797% {
    content: "34";
  }
  45.3038% {
    content: "35";
  }
  46.56962% {
    content: "36";
  }
  47.83544% {
    content: "37";
  }
  49.10127% {
    content: "38";
  }
  50.36709% {
    content: "39";
  }
  51.63291% {
    content: "40";
  }
  52.89873% {
    content: "41";
  }
  54.16456% {
    content: "42";
  }
  55.43038% {
    content: "43";
  }
  56.6962% {
    content: "44";
  }
  57.96203% {
    content: "45";
  }
  59.22785% {
    content: "46";
  }
  60.49367% {
    content: "47";
  }
  61.75949% {
    content: "48";
  }
  63.02532% {
    content: "49";
  }
  64.29114% {
    content: "50";
  }
  65.55696% {
    content: "51";
  }
  66.82278% {
    content: "52";
  }
  68.08861% {
    content: "53";
  }
  69.35443% {
    content: "54";
  }
  70.62025% {
    content: "55";
  }
  71.88608% {
    content: "56";
  }
  73.1519% {
    content: "57";
  }
  74.41772% {
    content: "58";
  }
  75.68354% {
    content: "59";
  }
  76.94937% {
    content: "60";
  }
  78.21519% {
    content: "61";
  }
  79.48101% {
    content: "62";
  }
  80.74684% {
    content: "63";
  }
  82.01266% {
    content: "64";
  }
  83.27848% {
    content: "65";
  }
  84.5443% {
    content: "66";
  }
  85.81013% {
    content: "67";
  }
  87.07595% {
    content: "68";
  }
  88.34177% {
    content: "69";
  }
  89.60759% {
    content: "70";
  }
  90.87342% {
    content: "71";
  }
  92.13924% {
    content: "72";
  }
  93.40506% {
    content: "73";
  }
  94.67089% {
    content: "74";
  }
  95.93671% {
    content: "75";
  }
  97.20253% {
    content: "76";
  }
  98.46835% {
    content: "77";
  }
  99.73418% {
    content: "78";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-80 {
  0% {
    content: "0";
  }
  2.25% {
    content: "1";
  }
  3.5% {
    content: "2";
  }
  4.75% {
    content: "3";
  }
  6% {
    content: "4";
  }
  7.25% {
    content: "5";
  }
  8.5% {
    content: "6";
  }
  9.75% {
    content: "7";
  }
  11% {
    content: "8";
  }
  12.25% {
    content: "9";
  }
  13.5% {
    content: "10";
  }
  14.75% {
    content: "11";
  }
  16% {
    content: "12";
  }
  17.25% {
    content: "13";
  }
  18.5% {
    content: "14";
  }
  19.75% {
    content: "15";
  }
  21% {
    content: "16";
  }
  22.25% {
    content: "17";
  }
  23.5% {
    content: "18";
  }
  24.75% {
    content: "19";
  }
  26% {
    content: "20";
  }
  27.25% {
    content: "21";
  }
  28.5% {
    content: "22";
  }
  29.75% {
    content: "23";
  }
  31% {
    content: "24";
  }
  32.25% {
    content: "25";
  }
  33.5% {
    content: "26";
  }
  34.75% {
    content: "27";
  }
  36% {
    content: "28";
  }
  37.25% {
    content: "29";
  }
  38.5% {
    content: "30";
  }
  39.75% {
    content: "31";
  }
  41% {
    content: "32";
  }
  42.25% {
    content: "33";
  }
  43.5% {
    content: "34";
  }
  44.75% {
    content: "35";
  }
  46% {
    content: "36";
  }
  47.25% {
    content: "37";
  }
  48.5% {
    content: "38";
  }
  49.75% {
    content: "39";
  }
  51% {
    content: "40";
  }
  52.25% {
    content: "41";
  }
  53.5% {
    content: "42";
  }
  54.75% {
    content: "43";
  }
  56% {
    content: "44";
  }
  57.25% {
    content: "45";
  }
  58.5% {
    content: "46";
  }
  59.75% {
    content: "47";
  }
  61% {
    content: "48";
  }
  62.25% {
    content: "49";
  }
  63.5% {
    content: "50";
  }
  64.75% {
    content: "51";
  }
  66% {
    content: "52";
  }
  67.25% {
    content: "53";
  }
  68.5% {
    content: "54";
  }
  69.75% {
    content: "55";
  }
  71% {
    content: "56";
  }
  72.25% {
    content: "57";
  }
  73.5% {
    content: "58";
  }
  74.75% {
    content: "59";
  }
  76% {
    content: "60";
  }
  77.25% {
    content: "61";
  }
  78.5% {
    content: "62";
  }
  79.75% {
    content: "63";
  }
  81% {
    content: "64";
  }
  82.25% {
    content: "65";
  }
  83.5% {
    content: "66";
  }
  84.75% {
    content: "67";
  }
  86% {
    content: "68";
  }
  87.25% {
    content: "69";
  }
  88.5% {
    content: "70";
  }
  89.75% {
    content: "71";
  }
  91% {
    content: "72";
  }
  92.25% {
    content: "73";
  }
  93.5% {
    content: "74";
  }
  94.75% {
    content: "75";
  }
  96% {
    content: "76";
  }
  97.25% {
    content: "77";
  }
  98.5% {
    content: "78";
  }
  99.75% {
    content: "79";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-80 {
  0% {
    content: "0";
  }
  2.25% {
    content: "1";
  }
  3.5% {
    content: "2";
  }
  4.75% {
    content: "3";
  }
  6% {
    content: "4";
  }
  7.25% {
    content: "5";
  }
  8.5% {
    content: "6";
  }
  9.75% {
    content: "7";
  }
  11% {
    content: "8";
  }
  12.25% {
    content: "9";
  }
  13.5% {
    content: "10";
  }
  14.75% {
    content: "11";
  }
  16% {
    content: "12";
  }
  17.25% {
    content: "13";
  }
  18.5% {
    content: "14";
  }
  19.75% {
    content: "15";
  }
  21% {
    content: "16";
  }
  22.25% {
    content: "17";
  }
  23.5% {
    content: "18";
  }
  24.75% {
    content: "19";
  }
  26% {
    content: "20";
  }
  27.25% {
    content: "21";
  }
  28.5% {
    content: "22";
  }
  29.75% {
    content: "23";
  }
  31% {
    content: "24";
  }
  32.25% {
    content: "25";
  }
  33.5% {
    content: "26";
  }
  34.75% {
    content: "27";
  }
  36% {
    content: "28";
  }
  37.25% {
    content: "29";
  }
  38.5% {
    content: "30";
  }
  39.75% {
    content: "31";
  }
  41% {
    content: "32";
  }
  42.25% {
    content: "33";
  }
  43.5% {
    content: "34";
  }
  44.75% {
    content: "35";
  }
  46% {
    content: "36";
  }
  47.25% {
    content: "37";
  }
  48.5% {
    content: "38";
  }
  49.75% {
    content: "39";
  }
  51% {
    content: "40";
  }
  52.25% {
    content: "41";
  }
  53.5% {
    content: "42";
  }
  54.75% {
    content: "43";
  }
  56% {
    content: "44";
  }
  57.25% {
    content: "45";
  }
  58.5% {
    content: "46";
  }
  59.75% {
    content: "47";
  }
  61% {
    content: "48";
  }
  62.25% {
    content: "49";
  }
  63.5% {
    content: "50";
  }
  64.75% {
    content: "51";
  }
  66% {
    content: "52";
  }
  67.25% {
    content: "53";
  }
  68.5% {
    content: "54";
  }
  69.75% {
    content: "55";
  }
  71% {
    content: "56";
  }
  72.25% {
    content: "57";
  }
  73.5% {
    content: "58";
  }
  74.75% {
    content: "59";
  }
  76% {
    content: "60";
  }
  77.25% {
    content: "61";
  }
  78.5% {
    content: "62";
  }
  79.75% {
    content: "63";
  }
  81% {
    content: "64";
  }
  82.25% {
    content: "65";
  }
  83.5% {
    content: "66";
  }
  84.75% {
    content: "67";
  }
  86% {
    content: "68";
  }
  87.25% {
    content: "69";
  }
  88.5% {
    content: "70";
  }
  89.75% {
    content: "71";
  }
  91% {
    content: "72";
  }
  92.25% {
    content: "73";
  }
  93.5% {
    content: "74";
  }
  94.75% {
    content: "75";
  }
  96% {
    content: "76";
  }
  97.25% {
    content: "77";
  }
  98.5% {
    content: "78";
  }
  99.75% {
    content: "79";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-81 {
  0% {
    content: "0";
  }
  2.23457% {
    content: "1";
  }
  3.46914% {
    content: "2";
  }
  4.7037% {
    content: "3";
  }
  5.93827% {
    content: "4";
  }
  7.17284% {
    content: "5";
  }
  8.40741% {
    content: "6";
  }
  9.64198% {
    content: "7";
  }
  10.87654% {
    content: "8";
  }
  12.11111% {
    content: "9";
  }
  13.34568% {
    content: "10";
  }
  14.58025% {
    content: "11";
  }
  15.81481% {
    content: "12";
  }
  17.04938% {
    content: "13";
  }
  18.28395% {
    content: "14";
  }
  19.51852% {
    content: "15";
  }
  20.75309% {
    content: "16";
  }
  21.98765% {
    content: "17";
  }
  23.22222% {
    content: "18";
  }
  24.45679% {
    content: "19";
  }
  25.69136% {
    content: "20";
  }
  26.92593% {
    content: "21";
  }
  28.16049% {
    content: "22";
  }
  29.39506% {
    content: "23";
  }
  30.62963% {
    content: "24";
  }
  31.8642% {
    content: "25";
  }
  33.09877% {
    content: "26";
  }
  34.33333% {
    content: "27";
  }
  35.5679% {
    content: "28";
  }
  36.80247% {
    content: "29";
  }
  38.03704% {
    content: "30";
  }
  39.2716% {
    content: "31";
  }
  40.50617% {
    content: "32";
  }
  41.74074% {
    content: "33";
  }
  42.97531% {
    content: "34";
  }
  44.20988% {
    content: "35";
  }
  45.44444% {
    content: "36";
  }
  46.67901% {
    content: "37";
  }
  47.91358% {
    content: "38";
  }
  49.14815% {
    content: "39";
  }
  50.38272% {
    content: "40";
  }
  51.61728% {
    content: "41";
  }
  52.85185% {
    content: "42";
  }
  54.08642% {
    content: "43";
  }
  55.32099% {
    content: "44";
  }
  56.55556% {
    content: "45";
  }
  57.79012% {
    content: "46";
  }
  59.02469% {
    content: "47";
  }
  60.25926% {
    content: "48";
  }
  61.49383% {
    content: "49";
  }
  62.7284% {
    content: "50";
  }
  63.96296% {
    content: "51";
  }
  65.19753% {
    content: "52";
  }
  66.4321% {
    content: "53";
  }
  67.66667% {
    content: "54";
  }
  68.90123% {
    content: "55";
  }
  70.1358% {
    content: "56";
  }
  71.37037% {
    content: "57";
  }
  72.60494% {
    content: "58";
  }
  73.83951% {
    content: "59";
  }
  75.07407% {
    content: "60";
  }
  76.30864% {
    content: "61";
  }
  77.54321% {
    content: "62";
  }
  78.77778% {
    content: "63";
  }
  80.01235% {
    content: "64";
  }
  81.24691% {
    content: "65";
  }
  82.48148% {
    content: "66";
  }
  83.71605% {
    content: "67";
  }
  84.95062% {
    content: "68";
  }
  86.18519% {
    content: "69";
  }
  87.41975% {
    content: "70";
  }
  88.65432% {
    content: "71";
  }
  89.88889% {
    content: "72";
  }
  91.12346% {
    content: "73";
  }
  92.35802% {
    content: "74";
  }
  93.59259% {
    content: "75";
  }
  94.82716% {
    content: "76";
  }
  96.06173% {
    content: "77";
  }
  97.2963% {
    content: "78";
  }
  98.53086% {
    content: "79";
  }
  99.76543% {
    content: "80";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-81 {
  0% {
    content: "0";
  }
  2.23457% {
    content: "1";
  }
  3.46914% {
    content: "2";
  }
  4.7037% {
    content: "3";
  }
  5.93827% {
    content: "4";
  }
  7.17284% {
    content: "5";
  }
  8.40741% {
    content: "6";
  }
  9.64198% {
    content: "7";
  }
  10.87654% {
    content: "8";
  }
  12.11111% {
    content: "9";
  }
  13.34568% {
    content: "10";
  }
  14.58025% {
    content: "11";
  }
  15.81481% {
    content: "12";
  }
  17.04938% {
    content: "13";
  }
  18.28395% {
    content: "14";
  }
  19.51852% {
    content: "15";
  }
  20.75309% {
    content: "16";
  }
  21.98765% {
    content: "17";
  }
  23.22222% {
    content: "18";
  }
  24.45679% {
    content: "19";
  }
  25.69136% {
    content: "20";
  }
  26.92593% {
    content: "21";
  }
  28.16049% {
    content: "22";
  }
  29.39506% {
    content: "23";
  }
  30.62963% {
    content: "24";
  }
  31.8642% {
    content: "25";
  }
  33.09877% {
    content: "26";
  }
  34.33333% {
    content: "27";
  }
  35.5679% {
    content: "28";
  }
  36.80247% {
    content: "29";
  }
  38.03704% {
    content: "30";
  }
  39.2716% {
    content: "31";
  }
  40.50617% {
    content: "32";
  }
  41.74074% {
    content: "33";
  }
  42.97531% {
    content: "34";
  }
  44.20988% {
    content: "35";
  }
  45.44444% {
    content: "36";
  }
  46.67901% {
    content: "37";
  }
  47.91358% {
    content: "38";
  }
  49.14815% {
    content: "39";
  }
  50.38272% {
    content: "40";
  }
  51.61728% {
    content: "41";
  }
  52.85185% {
    content: "42";
  }
  54.08642% {
    content: "43";
  }
  55.32099% {
    content: "44";
  }
  56.55556% {
    content: "45";
  }
  57.79012% {
    content: "46";
  }
  59.02469% {
    content: "47";
  }
  60.25926% {
    content: "48";
  }
  61.49383% {
    content: "49";
  }
  62.7284% {
    content: "50";
  }
  63.96296% {
    content: "51";
  }
  65.19753% {
    content: "52";
  }
  66.4321% {
    content: "53";
  }
  67.66667% {
    content: "54";
  }
  68.90123% {
    content: "55";
  }
  70.1358% {
    content: "56";
  }
  71.37037% {
    content: "57";
  }
  72.60494% {
    content: "58";
  }
  73.83951% {
    content: "59";
  }
  75.07407% {
    content: "60";
  }
  76.30864% {
    content: "61";
  }
  77.54321% {
    content: "62";
  }
  78.77778% {
    content: "63";
  }
  80.01235% {
    content: "64";
  }
  81.24691% {
    content: "65";
  }
  82.48148% {
    content: "66";
  }
  83.71605% {
    content: "67";
  }
  84.95062% {
    content: "68";
  }
  86.18519% {
    content: "69";
  }
  87.41975% {
    content: "70";
  }
  88.65432% {
    content: "71";
  }
  89.88889% {
    content: "72";
  }
  91.12346% {
    content: "73";
  }
  92.35802% {
    content: "74";
  }
  93.59259% {
    content: "75";
  }
  94.82716% {
    content: "76";
  }
  96.06173% {
    content: "77";
  }
  97.2963% {
    content: "78";
  }
  98.53086% {
    content: "79";
  }
  99.76543% {
    content: "80";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-82 {
  0% {
    content: "0";
  }
  2.21951% {
    content: "1";
  }
  3.43902% {
    content: "2";
  }
  4.65854% {
    content: "3";
  }
  5.87805% {
    content: "4";
  }
  7.09756% {
    content: "5";
  }
  8.31707% {
    content: "6";
  }
  9.53659% {
    content: "7";
  }
  10.7561% {
    content: "8";
  }
  11.97561% {
    content: "9";
  }
  13.19512% {
    content: "10";
  }
  14.41463% {
    content: "11";
  }
  15.63415% {
    content: "12";
  }
  16.85366% {
    content: "13";
  }
  18.07317% {
    content: "14";
  }
  19.29268% {
    content: "15";
  }
  20.5122% {
    content: "16";
  }
  21.73171% {
    content: "17";
  }
  22.95122% {
    content: "18";
  }
  24.17073% {
    content: "19";
  }
  25.39024% {
    content: "20";
  }
  26.60976% {
    content: "21";
  }
  27.82927% {
    content: "22";
  }
  29.04878% {
    content: "23";
  }
  30.26829% {
    content: "24";
  }
  31.4878% {
    content: "25";
  }
  32.70732% {
    content: "26";
  }
  33.92683% {
    content: "27";
  }
  35.14634% {
    content: "28";
  }
  36.36585% {
    content: "29";
  }
  37.58537% {
    content: "30";
  }
  38.80488% {
    content: "31";
  }
  40.02439% {
    content: "32";
  }
  41.2439% {
    content: "33";
  }
  42.46341% {
    content: "34";
  }
  43.68293% {
    content: "35";
  }
  44.90244% {
    content: "36";
  }
  46.12195% {
    content: "37";
  }
  47.34146% {
    content: "38";
  }
  48.56098% {
    content: "39";
  }
  49.78049% {
    content: "40";
  }
  51% {
    content: "41";
  }
  52.21951% {
    content: "42";
  }
  53.43902% {
    content: "43";
  }
  54.65854% {
    content: "44";
  }
  55.87805% {
    content: "45";
  }
  57.09756% {
    content: "46";
  }
  58.31707% {
    content: "47";
  }
  59.53659% {
    content: "48";
  }
  60.7561% {
    content: "49";
  }
  61.97561% {
    content: "50";
  }
  63.19512% {
    content: "51";
  }
  64.41463% {
    content: "52";
  }
  65.63415% {
    content: "53";
  }
  66.85366% {
    content: "54";
  }
  68.07317% {
    content: "55";
  }
  69.29268% {
    content: "56";
  }
  70.5122% {
    content: "57";
  }
  71.73171% {
    content: "58";
  }
  72.95122% {
    content: "59";
  }
  74.17073% {
    content: "60";
  }
  75.39024% {
    content: "61";
  }
  76.60976% {
    content: "62";
  }
  77.82927% {
    content: "63";
  }
  79.04878% {
    content: "64";
  }
  80.26829% {
    content: "65";
  }
  81.4878% {
    content: "66";
  }
  82.70732% {
    content: "67";
  }
  83.92683% {
    content: "68";
  }
  85.14634% {
    content: "69";
  }
  86.36585% {
    content: "70";
  }
  87.58537% {
    content: "71";
  }
  88.80488% {
    content: "72";
  }
  90.02439% {
    content: "73";
  }
  91.2439% {
    content: "74";
  }
  92.46341% {
    content: "75";
  }
  93.68293% {
    content: "76";
  }
  94.90244% {
    content: "77";
  }
  96.12195% {
    content: "78";
  }
  97.34146% {
    content: "79";
  }
  98.56098% {
    content: "80";
  }
  99.78049% {
    content: "81";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-82 {
  0% {
    content: "0";
  }
  2.21951% {
    content: "1";
  }
  3.43902% {
    content: "2";
  }
  4.65854% {
    content: "3";
  }
  5.87805% {
    content: "4";
  }
  7.09756% {
    content: "5";
  }
  8.31707% {
    content: "6";
  }
  9.53659% {
    content: "7";
  }
  10.7561% {
    content: "8";
  }
  11.97561% {
    content: "9";
  }
  13.19512% {
    content: "10";
  }
  14.41463% {
    content: "11";
  }
  15.63415% {
    content: "12";
  }
  16.85366% {
    content: "13";
  }
  18.07317% {
    content: "14";
  }
  19.29268% {
    content: "15";
  }
  20.5122% {
    content: "16";
  }
  21.73171% {
    content: "17";
  }
  22.95122% {
    content: "18";
  }
  24.17073% {
    content: "19";
  }
  25.39024% {
    content: "20";
  }
  26.60976% {
    content: "21";
  }
  27.82927% {
    content: "22";
  }
  29.04878% {
    content: "23";
  }
  30.26829% {
    content: "24";
  }
  31.4878% {
    content: "25";
  }
  32.70732% {
    content: "26";
  }
  33.92683% {
    content: "27";
  }
  35.14634% {
    content: "28";
  }
  36.36585% {
    content: "29";
  }
  37.58537% {
    content: "30";
  }
  38.80488% {
    content: "31";
  }
  40.02439% {
    content: "32";
  }
  41.2439% {
    content: "33";
  }
  42.46341% {
    content: "34";
  }
  43.68293% {
    content: "35";
  }
  44.90244% {
    content: "36";
  }
  46.12195% {
    content: "37";
  }
  47.34146% {
    content: "38";
  }
  48.56098% {
    content: "39";
  }
  49.78049% {
    content: "40";
  }
  51% {
    content: "41";
  }
  52.21951% {
    content: "42";
  }
  53.43902% {
    content: "43";
  }
  54.65854% {
    content: "44";
  }
  55.87805% {
    content: "45";
  }
  57.09756% {
    content: "46";
  }
  58.31707% {
    content: "47";
  }
  59.53659% {
    content: "48";
  }
  60.7561% {
    content: "49";
  }
  61.97561% {
    content: "50";
  }
  63.19512% {
    content: "51";
  }
  64.41463% {
    content: "52";
  }
  65.63415% {
    content: "53";
  }
  66.85366% {
    content: "54";
  }
  68.07317% {
    content: "55";
  }
  69.29268% {
    content: "56";
  }
  70.5122% {
    content: "57";
  }
  71.73171% {
    content: "58";
  }
  72.95122% {
    content: "59";
  }
  74.17073% {
    content: "60";
  }
  75.39024% {
    content: "61";
  }
  76.60976% {
    content: "62";
  }
  77.82927% {
    content: "63";
  }
  79.04878% {
    content: "64";
  }
  80.26829% {
    content: "65";
  }
  81.4878% {
    content: "66";
  }
  82.70732% {
    content: "67";
  }
  83.92683% {
    content: "68";
  }
  85.14634% {
    content: "69";
  }
  86.36585% {
    content: "70";
  }
  87.58537% {
    content: "71";
  }
  88.80488% {
    content: "72";
  }
  90.02439% {
    content: "73";
  }
  91.2439% {
    content: "74";
  }
  92.46341% {
    content: "75";
  }
  93.68293% {
    content: "76";
  }
  94.90244% {
    content: "77";
  }
  96.12195% {
    content: "78";
  }
  97.34146% {
    content: "79";
  }
  98.56098% {
    content: "80";
  }
  99.78049% {
    content: "81";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-83 {
  0% {
    content: "0";
  }
  2.20482% {
    content: "1";
  }
  3.40964% {
    content: "2";
  }
  4.61446% {
    content: "3";
  }
  5.81928% {
    content: "4";
  }
  7.0241% {
    content: "5";
  }
  8.22892% {
    content: "6";
  }
  9.43373% {
    content: "7";
  }
  10.63855% {
    content: "8";
  }
  11.84337% {
    content: "9";
  }
  13.04819% {
    content: "10";
  }
  14.25301% {
    content: "11";
  }
  15.45783% {
    content: "12";
  }
  16.66265% {
    content: "13";
  }
  17.86747% {
    content: "14";
  }
  19.07229% {
    content: "15";
  }
  20.27711% {
    content: "16";
  }
  21.48193% {
    content: "17";
  }
  22.68675% {
    content: "18";
  }
  23.89157% {
    content: "19";
  }
  25.09639% {
    content: "20";
  }
  26.3012% {
    content: "21";
  }
  27.50602% {
    content: "22";
  }
  28.71084% {
    content: "23";
  }
  29.91566% {
    content: "24";
  }
  31.12048% {
    content: "25";
  }
  32.3253% {
    content: "26";
  }
  33.53012% {
    content: "27";
  }
  34.73494% {
    content: "28";
  }
  35.93976% {
    content: "29";
  }
  37.14458% {
    content: "30";
  }
  38.3494% {
    content: "31";
  }
  39.55422% {
    content: "32";
  }
  40.75904% {
    content: "33";
  }
  41.96386% {
    content: "34";
  }
  43.16867% {
    content: "35";
  }
  44.37349% {
    content: "36";
  }
  45.57831% {
    content: "37";
  }
  46.78313% {
    content: "38";
  }
  47.98795% {
    content: "39";
  }
  49.19277% {
    content: "40";
  }
  50.39759% {
    content: "41";
  }
  51.60241% {
    content: "42";
  }
  52.80723% {
    content: "43";
  }
  54.01205% {
    content: "44";
  }
  55.21687% {
    content: "45";
  }
  56.42169% {
    content: "46";
  }
  57.62651% {
    content: "47";
  }
  58.83133% {
    content: "48";
  }
  60.03614% {
    content: "49";
  }
  61.24096% {
    content: "50";
  }
  62.44578% {
    content: "51";
  }
  63.6506% {
    content: "52";
  }
  64.85542% {
    content: "53";
  }
  66.06024% {
    content: "54";
  }
  67.26506% {
    content: "55";
  }
  68.46988% {
    content: "56";
  }
  69.6747% {
    content: "57";
  }
  70.87952% {
    content: "58";
  }
  72.08434% {
    content: "59";
  }
  73.28916% {
    content: "60";
  }
  74.49398% {
    content: "61";
  }
  75.6988% {
    content: "62";
  }
  76.90361% {
    content: "63";
  }
  78.10843% {
    content: "64";
  }
  79.31325% {
    content: "65";
  }
  80.51807% {
    content: "66";
  }
  81.72289% {
    content: "67";
  }
  82.92771% {
    content: "68";
  }
  84.13253% {
    content: "69";
  }
  85.33735% {
    content: "70";
  }
  86.54217% {
    content: "71";
  }
  87.74699% {
    content: "72";
  }
  88.95181% {
    content: "73";
  }
  90.15663% {
    content: "74";
  }
  91.36145% {
    content: "75";
  }
  92.56627% {
    content: "76";
  }
  93.77108% {
    content: "77";
  }
  94.9759% {
    content: "78";
  }
  96.18072% {
    content: "79";
  }
  97.38554% {
    content: "80";
  }
  98.59036% {
    content: "81";
  }
  99.79518% {
    content: "82";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-83 {
  0% {
    content: "0";
  }
  2.20482% {
    content: "1";
  }
  3.40964% {
    content: "2";
  }
  4.61446% {
    content: "3";
  }
  5.81928% {
    content: "4";
  }
  7.0241% {
    content: "5";
  }
  8.22892% {
    content: "6";
  }
  9.43373% {
    content: "7";
  }
  10.63855% {
    content: "8";
  }
  11.84337% {
    content: "9";
  }
  13.04819% {
    content: "10";
  }
  14.25301% {
    content: "11";
  }
  15.45783% {
    content: "12";
  }
  16.66265% {
    content: "13";
  }
  17.86747% {
    content: "14";
  }
  19.07229% {
    content: "15";
  }
  20.27711% {
    content: "16";
  }
  21.48193% {
    content: "17";
  }
  22.68675% {
    content: "18";
  }
  23.89157% {
    content: "19";
  }
  25.09639% {
    content: "20";
  }
  26.3012% {
    content: "21";
  }
  27.50602% {
    content: "22";
  }
  28.71084% {
    content: "23";
  }
  29.91566% {
    content: "24";
  }
  31.12048% {
    content: "25";
  }
  32.3253% {
    content: "26";
  }
  33.53012% {
    content: "27";
  }
  34.73494% {
    content: "28";
  }
  35.93976% {
    content: "29";
  }
  37.14458% {
    content: "30";
  }
  38.3494% {
    content: "31";
  }
  39.55422% {
    content: "32";
  }
  40.75904% {
    content: "33";
  }
  41.96386% {
    content: "34";
  }
  43.16867% {
    content: "35";
  }
  44.37349% {
    content: "36";
  }
  45.57831% {
    content: "37";
  }
  46.78313% {
    content: "38";
  }
  47.98795% {
    content: "39";
  }
  49.19277% {
    content: "40";
  }
  50.39759% {
    content: "41";
  }
  51.60241% {
    content: "42";
  }
  52.80723% {
    content: "43";
  }
  54.01205% {
    content: "44";
  }
  55.21687% {
    content: "45";
  }
  56.42169% {
    content: "46";
  }
  57.62651% {
    content: "47";
  }
  58.83133% {
    content: "48";
  }
  60.03614% {
    content: "49";
  }
  61.24096% {
    content: "50";
  }
  62.44578% {
    content: "51";
  }
  63.6506% {
    content: "52";
  }
  64.85542% {
    content: "53";
  }
  66.06024% {
    content: "54";
  }
  67.26506% {
    content: "55";
  }
  68.46988% {
    content: "56";
  }
  69.6747% {
    content: "57";
  }
  70.87952% {
    content: "58";
  }
  72.08434% {
    content: "59";
  }
  73.28916% {
    content: "60";
  }
  74.49398% {
    content: "61";
  }
  75.6988% {
    content: "62";
  }
  76.90361% {
    content: "63";
  }
  78.10843% {
    content: "64";
  }
  79.31325% {
    content: "65";
  }
  80.51807% {
    content: "66";
  }
  81.72289% {
    content: "67";
  }
  82.92771% {
    content: "68";
  }
  84.13253% {
    content: "69";
  }
  85.33735% {
    content: "70";
  }
  86.54217% {
    content: "71";
  }
  87.74699% {
    content: "72";
  }
  88.95181% {
    content: "73";
  }
  90.15663% {
    content: "74";
  }
  91.36145% {
    content: "75";
  }
  92.56627% {
    content: "76";
  }
  93.77108% {
    content: "77";
  }
  94.9759% {
    content: "78";
  }
  96.18072% {
    content: "79";
  }
  97.38554% {
    content: "80";
  }
  98.59036% {
    content: "81";
  }
  99.79518% {
    content: "82";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-84 {
  0% {
    content: "0";
  }
  2.19048% {
    content: "1";
  }
  3.38095% {
    content: "2";
  }
  4.57143% {
    content: "3";
  }
  5.7619% {
    content: "4";
  }
  6.95238% {
    content: "5";
  }
  8.14286% {
    content: "6";
  }
  9.33333% {
    content: "7";
  }
  10.52381% {
    content: "8";
  }
  11.71429% {
    content: "9";
  }
  12.90476% {
    content: "10";
  }
  14.09524% {
    content: "11";
  }
  15.28571% {
    content: "12";
  }
  16.47619% {
    content: "13";
  }
  17.66667% {
    content: "14";
  }
  18.85714% {
    content: "15";
  }
  20.04762% {
    content: "16";
  }
  21.2381% {
    content: "17";
  }
  22.42857% {
    content: "18";
  }
  23.61905% {
    content: "19";
  }
  24.80952% {
    content: "20";
  }
  26% {
    content: "21";
  }
  27.19048% {
    content: "22";
  }
  28.38095% {
    content: "23";
  }
  29.57143% {
    content: "24";
  }
  30.7619% {
    content: "25";
  }
  31.95238% {
    content: "26";
  }
  33.14286% {
    content: "27";
  }
  34.33333% {
    content: "28";
  }
  35.52381% {
    content: "29";
  }
  36.71429% {
    content: "30";
  }
  37.90476% {
    content: "31";
  }
  39.09524% {
    content: "32";
  }
  40.28571% {
    content: "33";
  }
  41.47619% {
    content: "34";
  }
  42.66667% {
    content: "35";
  }
  43.85714% {
    content: "36";
  }
  45.04762% {
    content: "37";
  }
  46.2381% {
    content: "38";
  }
  47.42857% {
    content: "39";
  }
  48.61905% {
    content: "40";
  }
  49.80952% {
    content: "41";
  }
  51% {
    content: "42";
  }
  52.19048% {
    content: "43";
  }
  53.38095% {
    content: "44";
  }
  54.57143% {
    content: "45";
  }
  55.7619% {
    content: "46";
  }
  56.95238% {
    content: "47";
  }
  58.14286% {
    content: "48";
  }
  59.33333% {
    content: "49";
  }
  60.52381% {
    content: "50";
  }
  61.71429% {
    content: "51";
  }
  62.90476% {
    content: "52";
  }
  64.09524% {
    content: "53";
  }
  65.28571% {
    content: "54";
  }
  66.47619% {
    content: "55";
  }
  67.66667% {
    content: "56";
  }
  68.85714% {
    content: "57";
  }
  70.04762% {
    content: "58";
  }
  71.2381% {
    content: "59";
  }
  72.42857% {
    content: "60";
  }
  73.61905% {
    content: "61";
  }
  74.80952% {
    content: "62";
  }
  76% {
    content: "63";
  }
  77.19048% {
    content: "64";
  }
  78.38095% {
    content: "65";
  }
  79.57143% {
    content: "66";
  }
  80.7619% {
    content: "67";
  }
  81.95238% {
    content: "68";
  }
  83.14286% {
    content: "69";
  }
  84.33333% {
    content: "70";
  }
  85.52381% {
    content: "71";
  }
  86.71429% {
    content: "72";
  }
  87.90476% {
    content: "73";
  }
  89.09524% {
    content: "74";
  }
  90.28571% {
    content: "75";
  }
  91.47619% {
    content: "76";
  }
  92.66667% {
    content: "77";
  }
  93.85714% {
    content: "78";
  }
  95.04762% {
    content: "79";
  }
  96.2381% {
    content: "80";
  }
  97.42857% {
    content: "81";
  }
  98.61905% {
    content: "82";
  }
  99.80952% {
    content: "83";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-84 {
  0% {
    content: "0";
  }
  2.19048% {
    content: "1";
  }
  3.38095% {
    content: "2";
  }
  4.57143% {
    content: "3";
  }
  5.7619% {
    content: "4";
  }
  6.95238% {
    content: "5";
  }
  8.14286% {
    content: "6";
  }
  9.33333% {
    content: "7";
  }
  10.52381% {
    content: "8";
  }
  11.71429% {
    content: "9";
  }
  12.90476% {
    content: "10";
  }
  14.09524% {
    content: "11";
  }
  15.28571% {
    content: "12";
  }
  16.47619% {
    content: "13";
  }
  17.66667% {
    content: "14";
  }
  18.85714% {
    content: "15";
  }
  20.04762% {
    content: "16";
  }
  21.2381% {
    content: "17";
  }
  22.42857% {
    content: "18";
  }
  23.61905% {
    content: "19";
  }
  24.80952% {
    content: "20";
  }
  26% {
    content: "21";
  }
  27.19048% {
    content: "22";
  }
  28.38095% {
    content: "23";
  }
  29.57143% {
    content: "24";
  }
  30.7619% {
    content: "25";
  }
  31.95238% {
    content: "26";
  }
  33.14286% {
    content: "27";
  }
  34.33333% {
    content: "28";
  }
  35.52381% {
    content: "29";
  }
  36.71429% {
    content: "30";
  }
  37.90476% {
    content: "31";
  }
  39.09524% {
    content: "32";
  }
  40.28571% {
    content: "33";
  }
  41.47619% {
    content: "34";
  }
  42.66667% {
    content: "35";
  }
  43.85714% {
    content: "36";
  }
  45.04762% {
    content: "37";
  }
  46.2381% {
    content: "38";
  }
  47.42857% {
    content: "39";
  }
  48.61905% {
    content: "40";
  }
  49.80952% {
    content: "41";
  }
  51% {
    content: "42";
  }
  52.19048% {
    content: "43";
  }
  53.38095% {
    content: "44";
  }
  54.57143% {
    content: "45";
  }
  55.7619% {
    content: "46";
  }
  56.95238% {
    content: "47";
  }
  58.14286% {
    content: "48";
  }
  59.33333% {
    content: "49";
  }
  60.52381% {
    content: "50";
  }
  61.71429% {
    content: "51";
  }
  62.90476% {
    content: "52";
  }
  64.09524% {
    content: "53";
  }
  65.28571% {
    content: "54";
  }
  66.47619% {
    content: "55";
  }
  67.66667% {
    content: "56";
  }
  68.85714% {
    content: "57";
  }
  70.04762% {
    content: "58";
  }
  71.2381% {
    content: "59";
  }
  72.42857% {
    content: "60";
  }
  73.61905% {
    content: "61";
  }
  74.80952% {
    content: "62";
  }
  76% {
    content: "63";
  }
  77.19048% {
    content: "64";
  }
  78.38095% {
    content: "65";
  }
  79.57143% {
    content: "66";
  }
  80.7619% {
    content: "67";
  }
  81.95238% {
    content: "68";
  }
  83.14286% {
    content: "69";
  }
  84.33333% {
    content: "70";
  }
  85.52381% {
    content: "71";
  }
  86.71429% {
    content: "72";
  }
  87.90476% {
    content: "73";
  }
  89.09524% {
    content: "74";
  }
  90.28571% {
    content: "75";
  }
  91.47619% {
    content: "76";
  }
  92.66667% {
    content: "77";
  }
  93.85714% {
    content: "78";
  }
  95.04762% {
    content: "79";
  }
  96.2381% {
    content: "80";
  }
  97.42857% {
    content: "81";
  }
  98.61905% {
    content: "82";
  }
  99.80952% {
    content: "83";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-85 {
  0% {
    content: "0";
  }
  2.17647% {
    content: "1";
  }
  3.35294% {
    content: "2";
  }
  4.52941% {
    content: "3";
  }
  5.70588% {
    content: "4";
  }
  6.88235% {
    content: "5";
  }
  8.05882% {
    content: "6";
  }
  9.23529% {
    content: "7";
  }
  10.41176% {
    content: "8";
  }
  11.58824% {
    content: "9";
  }
  12.76471% {
    content: "10";
  }
  13.94118% {
    content: "11";
  }
  15.11765% {
    content: "12";
  }
  16.29412% {
    content: "13";
  }
  17.47059% {
    content: "14";
  }
  18.64706% {
    content: "15";
  }
  19.82353% {
    content: "16";
  }
  21% {
    content: "17";
  }
  22.17647% {
    content: "18";
  }
  23.35294% {
    content: "19";
  }
  24.52941% {
    content: "20";
  }
  25.70588% {
    content: "21";
  }
  26.88235% {
    content: "22";
  }
  28.05882% {
    content: "23";
  }
  29.23529% {
    content: "24";
  }
  30.41176% {
    content: "25";
  }
  31.58824% {
    content: "26";
  }
  32.76471% {
    content: "27";
  }
  33.94118% {
    content: "28";
  }
  35.11765% {
    content: "29";
  }
  36.29412% {
    content: "30";
  }
  37.47059% {
    content: "31";
  }
  38.64706% {
    content: "32";
  }
  39.82353% {
    content: "33";
  }
  41% {
    content: "34";
  }
  42.17647% {
    content: "35";
  }
  43.35294% {
    content: "36";
  }
  44.52941% {
    content: "37";
  }
  45.70588% {
    content: "38";
  }
  46.88235% {
    content: "39";
  }
  48.05882% {
    content: "40";
  }
  49.23529% {
    content: "41";
  }
  50.41176% {
    content: "42";
  }
  51.58824% {
    content: "43";
  }
  52.76471% {
    content: "44";
  }
  53.94118% {
    content: "45";
  }
  55.11765% {
    content: "46";
  }
  56.29412% {
    content: "47";
  }
  57.47059% {
    content: "48";
  }
  58.64706% {
    content: "49";
  }
  59.82353% {
    content: "50";
  }
  61% {
    content: "51";
  }
  62.17647% {
    content: "52";
  }
  63.35294% {
    content: "53";
  }
  64.52941% {
    content: "54";
  }
  65.70588% {
    content: "55";
  }
  66.88235% {
    content: "56";
  }
  68.05882% {
    content: "57";
  }
  69.23529% {
    content: "58";
  }
  70.41176% {
    content: "59";
  }
  71.58824% {
    content: "60";
  }
  72.76471% {
    content: "61";
  }
  73.94118% {
    content: "62";
  }
  75.11765% {
    content: "63";
  }
  76.29412% {
    content: "64";
  }
  77.47059% {
    content: "65";
  }
  78.64706% {
    content: "66";
  }
  79.82353% {
    content: "67";
  }
  81% {
    content: "68";
  }
  82.17647% {
    content: "69";
  }
  83.35294% {
    content: "70";
  }
  84.52941% {
    content: "71";
  }
  85.70588% {
    content: "72";
  }
  86.88235% {
    content: "73";
  }
  88.05882% {
    content: "74";
  }
  89.23529% {
    content: "75";
  }
  90.41176% {
    content: "76";
  }
  91.58824% {
    content: "77";
  }
  92.76471% {
    content: "78";
  }
  93.94118% {
    content: "79";
  }
  95.11765% {
    content: "80";
  }
  96.29412% {
    content: "81";
  }
  97.47059% {
    content: "82";
  }
  98.64706% {
    content: "83";
  }
  99.82353% {
    content: "84";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-85 {
  0% {
    content: "0";
  }
  2.17647% {
    content: "1";
  }
  3.35294% {
    content: "2";
  }
  4.52941% {
    content: "3";
  }
  5.70588% {
    content: "4";
  }
  6.88235% {
    content: "5";
  }
  8.05882% {
    content: "6";
  }
  9.23529% {
    content: "7";
  }
  10.41176% {
    content: "8";
  }
  11.58824% {
    content: "9";
  }
  12.76471% {
    content: "10";
  }
  13.94118% {
    content: "11";
  }
  15.11765% {
    content: "12";
  }
  16.29412% {
    content: "13";
  }
  17.47059% {
    content: "14";
  }
  18.64706% {
    content: "15";
  }
  19.82353% {
    content: "16";
  }
  21% {
    content: "17";
  }
  22.17647% {
    content: "18";
  }
  23.35294% {
    content: "19";
  }
  24.52941% {
    content: "20";
  }
  25.70588% {
    content: "21";
  }
  26.88235% {
    content: "22";
  }
  28.05882% {
    content: "23";
  }
  29.23529% {
    content: "24";
  }
  30.41176% {
    content: "25";
  }
  31.58824% {
    content: "26";
  }
  32.76471% {
    content: "27";
  }
  33.94118% {
    content: "28";
  }
  35.11765% {
    content: "29";
  }
  36.29412% {
    content: "30";
  }
  37.47059% {
    content: "31";
  }
  38.64706% {
    content: "32";
  }
  39.82353% {
    content: "33";
  }
  41% {
    content: "34";
  }
  42.17647% {
    content: "35";
  }
  43.35294% {
    content: "36";
  }
  44.52941% {
    content: "37";
  }
  45.70588% {
    content: "38";
  }
  46.88235% {
    content: "39";
  }
  48.05882% {
    content: "40";
  }
  49.23529% {
    content: "41";
  }
  50.41176% {
    content: "42";
  }
  51.58824% {
    content: "43";
  }
  52.76471% {
    content: "44";
  }
  53.94118% {
    content: "45";
  }
  55.11765% {
    content: "46";
  }
  56.29412% {
    content: "47";
  }
  57.47059% {
    content: "48";
  }
  58.64706% {
    content: "49";
  }
  59.82353% {
    content: "50";
  }
  61% {
    content: "51";
  }
  62.17647% {
    content: "52";
  }
  63.35294% {
    content: "53";
  }
  64.52941% {
    content: "54";
  }
  65.70588% {
    content: "55";
  }
  66.88235% {
    content: "56";
  }
  68.05882% {
    content: "57";
  }
  69.23529% {
    content: "58";
  }
  70.41176% {
    content: "59";
  }
  71.58824% {
    content: "60";
  }
  72.76471% {
    content: "61";
  }
  73.94118% {
    content: "62";
  }
  75.11765% {
    content: "63";
  }
  76.29412% {
    content: "64";
  }
  77.47059% {
    content: "65";
  }
  78.64706% {
    content: "66";
  }
  79.82353% {
    content: "67";
  }
  81% {
    content: "68";
  }
  82.17647% {
    content: "69";
  }
  83.35294% {
    content: "70";
  }
  84.52941% {
    content: "71";
  }
  85.70588% {
    content: "72";
  }
  86.88235% {
    content: "73";
  }
  88.05882% {
    content: "74";
  }
  89.23529% {
    content: "75";
  }
  90.41176% {
    content: "76";
  }
  91.58824% {
    content: "77";
  }
  92.76471% {
    content: "78";
  }
  93.94118% {
    content: "79";
  }
  95.11765% {
    content: "80";
  }
  96.29412% {
    content: "81";
  }
  97.47059% {
    content: "82";
  }
  98.64706% {
    content: "83";
  }
  99.82353% {
    content: "84";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-86 {
  0% {
    content: "0";
  }
  2.16279% {
    content: "1";
  }
  3.32558% {
    content: "2";
  }
  4.48837% {
    content: "3";
  }
  5.65116% {
    content: "4";
  }
  6.81395% {
    content: "5";
  }
  7.97674% {
    content: "6";
  }
  9.13953% {
    content: "7";
  }
  10.30233% {
    content: "8";
  }
  11.46512% {
    content: "9";
  }
  12.62791% {
    content: "10";
  }
  13.7907% {
    content: "11";
  }
  14.95349% {
    content: "12";
  }
  16.11628% {
    content: "13";
  }
  17.27907% {
    content: "14";
  }
  18.44186% {
    content: "15";
  }
  19.60465% {
    content: "16";
  }
  20.76744% {
    content: "17";
  }
  21.93023% {
    content: "18";
  }
  23.09302% {
    content: "19";
  }
  24.25581% {
    content: "20";
  }
  25.4186% {
    content: "21";
  }
  26.5814% {
    content: "22";
  }
  27.74419% {
    content: "23";
  }
  28.90698% {
    content: "24";
  }
  30.06977% {
    content: "25";
  }
  31.23256% {
    content: "26";
  }
  32.39535% {
    content: "27";
  }
  33.55814% {
    content: "28";
  }
  34.72093% {
    content: "29";
  }
  35.88372% {
    content: "30";
  }
  37.04651% {
    content: "31";
  }
  38.2093% {
    content: "32";
  }
  39.37209% {
    content: "33";
  }
  40.53488% {
    content: "34";
  }
  41.69767% {
    content: "35";
  }
  42.86047% {
    content: "36";
  }
  44.02326% {
    content: "37";
  }
  45.18605% {
    content: "38";
  }
  46.34884% {
    content: "39";
  }
  47.51163% {
    content: "40";
  }
  48.67442% {
    content: "41";
  }
  49.83721% {
    content: "42";
  }
  51% {
    content: "43";
  }
  52.16279% {
    content: "44";
  }
  53.32558% {
    content: "45";
  }
  54.48837% {
    content: "46";
  }
  55.65116% {
    content: "47";
  }
  56.81395% {
    content: "48";
  }
  57.97674% {
    content: "49";
  }
  59.13953% {
    content: "50";
  }
  60.30233% {
    content: "51";
  }
  61.46512% {
    content: "52";
  }
  62.62791% {
    content: "53";
  }
  63.7907% {
    content: "54";
  }
  64.95349% {
    content: "55";
  }
  66.11628% {
    content: "56";
  }
  67.27907% {
    content: "57";
  }
  68.44186% {
    content: "58";
  }
  69.60465% {
    content: "59";
  }
  70.76744% {
    content: "60";
  }
  71.93023% {
    content: "61";
  }
  73.09302% {
    content: "62";
  }
  74.25581% {
    content: "63";
  }
  75.4186% {
    content: "64";
  }
  76.5814% {
    content: "65";
  }
  77.74419% {
    content: "66";
  }
  78.90698% {
    content: "67";
  }
  80.06977% {
    content: "68";
  }
  81.23256% {
    content: "69";
  }
  82.39535% {
    content: "70";
  }
  83.55814% {
    content: "71";
  }
  84.72093% {
    content: "72";
  }
  85.88372% {
    content: "73";
  }
  87.04651% {
    content: "74";
  }
  88.2093% {
    content: "75";
  }
  89.37209% {
    content: "76";
  }
  90.53488% {
    content: "77";
  }
  91.69767% {
    content: "78";
  }
  92.86047% {
    content: "79";
  }
  94.02326% {
    content: "80";
  }
  95.18605% {
    content: "81";
  }
  96.34884% {
    content: "82";
  }
  97.51163% {
    content: "83";
  }
  98.67442% {
    content: "84";
  }
  99.83721% {
    content: "85";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-86 {
  0% {
    content: "0";
  }
  2.16279% {
    content: "1";
  }
  3.32558% {
    content: "2";
  }
  4.48837% {
    content: "3";
  }
  5.65116% {
    content: "4";
  }
  6.81395% {
    content: "5";
  }
  7.97674% {
    content: "6";
  }
  9.13953% {
    content: "7";
  }
  10.30233% {
    content: "8";
  }
  11.46512% {
    content: "9";
  }
  12.62791% {
    content: "10";
  }
  13.7907% {
    content: "11";
  }
  14.95349% {
    content: "12";
  }
  16.11628% {
    content: "13";
  }
  17.27907% {
    content: "14";
  }
  18.44186% {
    content: "15";
  }
  19.60465% {
    content: "16";
  }
  20.76744% {
    content: "17";
  }
  21.93023% {
    content: "18";
  }
  23.09302% {
    content: "19";
  }
  24.25581% {
    content: "20";
  }
  25.4186% {
    content: "21";
  }
  26.5814% {
    content: "22";
  }
  27.74419% {
    content: "23";
  }
  28.90698% {
    content: "24";
  }
  30.06977% {
    content: "25";
  }
  31.23256% {
    content: "26";
  }
  32.39535% {
    content: "27";
  }
  33.55814% {
    content: "28";
  }
  34.72093% {
    content: "29";
  }
  35.88372% {
    content: "30";
  }
  37.04651% {
    content: "31";
  }
  38.2093% {
    content: "32";
  }
  39.37209% {
    content: "33";
  }
  40.53488% {
    content: "34";
  }
  41.69767% {
    content: "35";
  }
  42.86047% {
    content: "36";
  }
  44.02326% {
    content: "37";
  }
  45.18605% {
    content: "38";
  }
  46.34884% {
    content: "39";
  }
  47.51163% {
    content: "40";
  }
  48.67442% {
    content: "41";
  }
  49.83721% {
    content: "42";
  }
  51% {
    content: "43";
  }
  52.16279% {
    content: "44";
  }
  53.32558% {
    content: "45";
  }
  54.48837% {
    content: "46";
  }
  55.65116% {
    content: "47";
  }
  56.81395% {
    content: "48";
  }
  57.97674% {
    content: "49";
  }
  59.13953% {
    content: "50";
  }
  60.30233% {
    content: "51";
  }
  61.46512% {
    content: "52";
  }
  62.62791% {
    content: "53";
  }
  63.7907% {
    content: "54";
  }
  64.95349% {
    content: "55";
  }
  66.11628% {
    content: "56";
  }
  67.27907% {
    content: "57";
  }
  68.44186% {
    content: "58";
  }
  69.60465% {
    content: "59";
  }
  70.76744% {
    content: "60";
  }
  71.93023% {
    content: "61";
  }
  73.09302% {
    content: "62";
  }
  74.25581% {
    content: "63";
  }
  75.4186% {
    content: "64";
  }
  76.5814% {
    content: "65";
  }
  77.74419% {
    content: "66";
  }
  78.90698% {
    content: "67";
  }
  80.06977% {
    content: "68";
  }
  81.23256% {
    content: "69";
  }
  82.39535% {
    content: "70";
  }
  83.55814% {
    content: "71";
  }
  84.72093% {
    content: "72";
  }
  85.88372% {
    content: "73";
  }
  87.04651% {
    content: "74";
  }
  88.2093% {
    content: "75";
  }
  89.37209% {
    content: "76";
  }
  90.53488% {
    content: "77";
  }
  91.69767% {
    content: "78";
  }
  92.86047% {
    content: "79";
  }
  94.02326% {
    content: "80";
  }
  95.18605% {
    content: "81";
  }
  96.34884% {
    content: "82";
  }
  97.51163% {
    content: "83";
  }
  98.67442% {
    content: "84";
  }
  99.83721% {
    content: "85";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-87 {
  0% {
    content: "0";
  }
  2.14943% {
    content: "1";
  }
  3.29885% {
    content: "2";
  }
  4.44828% {
    content: "3";
  }
  5.5977% {
    content: "4";
  }
  6.74713% {
    content: "5";
  }
  7.89655% {
    content: "6";
  }
  9.04598% {
    content: "7";
  }
  10.1954% {
    content: "8";
  }
  11.34483% {
    content: "9";
  }
  12.49425% {
    content: "10";
  }
  13.64368% {
    content: "11";
  }
  14.7931% {
    content: "12";
  }
  15.94253% {
    content: "13";
  }
  17.09195% {
    content: "14";
  }
  18.24138% {
    content: "15";
  }
  19.3908% {
    content: "16";
  }
  20.54023% {
    content: "17";
  }
  21.68966% {
    content: "18";
  }
  22.83908% {
    content: "19";
  }
  23.98851% {
    content: "20";
  }
  25.13793% {
    content: "21";
  }
  26.28736% {
    content: "22";
  }
  27.43678% {
    content: "23";
  }
  28.58621% {
    content: "24";
  }
  29.73563% {
    content: "25";
  }
  30.88506% {
    content: "26";
  }
  32.03448% {
    content: "27";
  }
  33.18391% {
    content: "28";
  }
  34.33333% {
    content: "29";
  }
  35.48276% {
    content: "30";
  }
  36.63218% {
    content: "31";
  }
  37.78161% {
    content: "32";
  }
  38.93103% {
    content: "33";
  }
  40.08046% {
    content: "34";
  }
  41.22989% {
    content: "35";
  }
  42.37931% {
    content: "36";
  }
  43.52874% {
    content: "37";
  }
  44.67816% {
    content: "38";
  }
  45.82759% {
    content: "39";
  }
  46.97701% {
    content: "40";
  }
  48.12644% {
    content: "41";
  }
  49.27586% {
    content: "42";
  }
  50.42529% {
    content: "43";
  }
  51.57471% {
    content: "44";
  }
  52.72414% {
    content: "45";
  }
  53.87356% {
    content: "46";
  }
  55.02299% {
    content: "47";
  }
  56.17241% {
    content: "48";
  }
  57.32184% {
    content: "49";
  }
  58.47126% {
    content: "50";
  }
  59.62069% {
    content: "51";
  }
  60.77011% {
    content: "52";
  }
  61.91954% {
    content: "53";
  }
  63.06897% {
    content: "54";
  }
  64.21839% {
    content: "55";
  }
  65.36782% {
    content: "56";
  }
  66.51724% {
    content: "57";
  }
  67.66667% {
    content: "58";
  }
  68.81609% {
    content: "59";
  }
  69.96552% {
    content: "60";
  }
  71.11494% {
    content: "61";
  }
  72.26437% {
    content: "62";
  }
  73.41379% {
    content: "63";
  }
  74.56322% {
    content: "64";
  }
  75.71264% {
    content: "65";
  }
  76.86207% {
    content: "66";
  }
  78.01149% {
    content: "67";
  }
  79.16092% {
    content: "68";
  }
  80.31034% {
    content: "69";
  }
  81.45977% {
    content: "70";
  }
  82.6092% {
    content: "71";
  }
  83.75862% {
    content: "72";
  }
  84.90805% {
    content: "73";
  }
  86.05747% {
    content: "74";
  }
  87.2069% {
    content: "75";
  }
  88.35632% {
    content: "76";
  }
  89.50575% {
    content: "77";
  }
  90.65517% {
    content: "78";
  }
  91.8046% {
    content: "79";
  }
  92.95402% {
    content: "80";
  }
  94.10345% {
    content: "81";
  }
  95.25287% {
    content: "82";
  }
  96.4023% {
    content: "83";
  }
  97.55172% {
    content: "84";
  }
  98.70115% {
    content: "85";
  }
  99.85057% {
    content: "86";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-87 {
  0% {
    content: "0";
  }
  2.14943% {
    content: "1";
  }
  3.29885% {
    content: "2";
  }
  4.44828% {
    content: "3";
  }
  5.5977% {
    content: "4";
  }
  6.74713% {
    content: "5";
  }
  7.89655% {
    content: "6";
  }
  9.04598% {
    content: "7";
  }
  10.1954% {
    content: "8";
  }
  11.34483% {
    content: "9";
  }
  12.49425% {
    content: "10";
  }
  13.64368% {
    content: "11";
  }
  14.7931% {
    content: "12";
  }
  15.94253% {
    content: "13";
  }
  17.09195% {
    content: "14";
  }
  18.24138% {
    content: "15";
  }
  19.3908% {
    content: "16";
  }
  20.54023% {
    content: "17";
  }
  21.68966% {
    content: "18";
  }
  22.83908% {
    content: "19";
  }
  23.98851% {
    content: "20";
  }
  25.13793% {
    content: "21";
  }
  26.28736% {
    content: "22";
  }
  27.43678% {
    content: "23";
  }
  28.58621% {
    content: "24";
  }
  29.73563% {
    content: "25";
  }
  30.88506% {
    content: "26";
  }
  32.03448% {
    content: "27";
  }
  33.18391% {
    content: "28";
  }
  34.33333% {
    content: "29";
  }
  35.48276% {
    content: "30";
  }
  36.63218% {
    content: "31";
  }
  37.78161% {
    content: "32";
  }
  38.93103% {
    content: "33";
  }
  40.08046% {
    content: "34";
  }
  41.22989% {
    content: "35";
  }
  42.37931% {
    content: "36";
  }
  43.52874% {
    content: "37";
  }
  44.67816% {
    content: "38";
  }
  45.82759% {
    content: "39";
  }
  46.97701% {
    content: "40";
  }
  48.12644% {
    content: "41";
  }
  49.27586% {
    content: "42";
  }
  50.42529% {
    content: "43";
  }
  51.57471% {
    content: "44";
  }
  52.72414% {
    content: "45";
  }
  53.87356% {
    content: "46";
  }
  55.02299% {
    content: "47";
  }
  56.17241% {
    content: "48";
  }
  57.32184% {
    content: "49";
  }
  58.47126% {
    content: "50";
  }
  59.62069% {
    content: "51";
  }
  60.77011% {
    content: "52";
  }
  61.91954% {
    content: "53";
  }
  63.06897% {
    content: "54";
  }
  64.21839% {
    content: "55";
  }
  65.36782% {
    content: "56";
  }
  66.51724% {
    content: "57";
  }
  67.66667% {
    content: "58";
  }
  68.81609% {
    content: "59";
  }
  69.96552% {
    content: "60";
  }
  71.11494% {
    content: "61";
  }
  72.26437% {
    content: "62";
  }
  73.41379% {
    content: "63";
  }
  74.56322% {
    content: "64";
  }
  75.71264% {
    content: "65";
  }
  76.86207% {
    content: "66";
  }
  78.01149% {
    content: "67";
  }
  79.16092% {
    content: "68";
  }
  80.31034% {
    content: "69";
  }
  81.45977% {
    content: "70";
  }
  82.6092% {
    content: "71";
  }
  83.75862% {
    content: "72";
  }
  84.90805% {
    content: "73";
  }
  86.05747% {
    content: "74";
  }
  87.2069% {
    content: "75";
  }
  88.35632% {
    content: "76";
  }
  89.50575% {
    content: "77";
  }
  90.65517% {
    content: "78";
  }
  91.8046% {
    content: "79";
  }
  92.95402% {
    content: "80";
  }
  94.10345% {
    content: "81";
  }
  95.25287% {
    content: "82";
  }
  96.4023% {
    content: "83";
  }
  97.55172% {
    content: "84";
  }
  98.70115% {
    content: "85";
  }
  99.85057% {
    content: "86";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-88 {
  0% {
    content: "0";
  }
  2.13636% {
    content: "1";
  }
  3.27273% {
    content: "2";
  }
  4.40909% {
    content: "3";
  }
  5.54545% {
    content: "4";
  }
  6.68182% {
    content: "5";
  }
  7.81818% {
    content: "6";
  }
  8.95455% {
    content: "7";
  }
  10.09091% {
    content: "8";
  }
  11.22727% {
    content: "9";
  }
  12.36364% {
    content: "10";
  }
  13.5% {
    content: "11";
  }
  14.63636% {
    content: "12";
  }
  15.77273% {
    content: "13";
  }
  16.90909% {
    content: "14";
  }
  18.04545% {
    content: "15";
  }
  19.18182% {
    content: "16";
  }
  20.31818% {
    content: "17";
  }
  21.45455% {
    content: "18";
  }
  22.59091% {
    content: "19";
  }
  23.72727% {
    content: "20";
  }
  24.86364% {
    content: "21";
  }
  26% {
    content: "22";
  }
  27.13636% {
    content: "23";
  }
  28.27273% {
    content: "24";
  }
  29.40909% {
    content: "25";
  }
  30.54545% {
    content: "26";
  }
  31.68182% {
    content: "27";
  }
  32.81818% {
    content: "28";
  }
  33.95455% {
    content: "29";
  }
  35.09091% {
    content: "30";
  }
  36.22727% {
    content: "31";
  }
  37.36364% {
    content: "32";
  }
  38.5% {
    content: "33";
  }
  39.63636% {
    content: "34";
  }
  40.77273% {
    content: "35";
  }
  41.90909% {
    content: "36";
  }
  43.04545% {
    content: "37";
  }
  44.18182% {
    content: "38";
  }
  45.31818% {
    content: "39";
  }
  46.45455% {
    content: "40";
  }
  47.59091% {
    content: "41";
  }
  48.72727% {
    content: "42";
  }
  49.86364% {
    content: "43";
  }
  51% {
    content: "44";
  }
  52.13636% {
    content: "45";
  }
  53.27273% {
    content: "46";
  }
  54.40909% {
    content: "47";
  }
  55.54545% {
    content: "48";
  }
  56.68182% {
    content: "49";
  }
  57.81818% {
    content: "50";
  }
  58.95455% {
    content: "51";
  }
  60.09091% {
    content: "52";
  }
  61.22727% {
    content: "53";
  }
  62.36364% {
    content: "54";
  }
  63.5% {
    content: "55";
  }
  64.63636% {
    content: "56";
  }
  65.77273% {
    content: "57";
  }
  66.90909% {
    content: "58";
  }
  68.04545% {
    content: "59";
  }
  69.18182% {
    content: "60";
  }
  70.31818% {
    content: "61";
  }
  71.45455% {
    content: "62";
  }
  72.59091% {
    content: "63";
  }
  73.72727% {
    content: "64";
  }
  74.86364% {
    content: "65";
  }
  76% {
    content: "66";
  }
  77.13636% {
    content: "67";
  }
  78.27273% {
    content: "68";
  }
  79.40909% {
    content: "69";
  }
  80.54545% {
    content: "70";
  }
  81.68182% {
    content: "71";
  }
  82.81818% {
    content: "72";
  }
  83.95455% {
    content: "73";
  }
  85.09091% {
    content: "74";
  }
  86.22727% {
    content: "75";
  }
  87.36364% {
    content: "76";
  }
  88.5% {
    content: "77";
  }
  89.63636% {
    content: "78";
  }
  90.77273% {
    content: "79";
  }
  91.90909% {
    content: "80";
  }
  93.04545% {
    content: "81";
  }
  94.18182% {
    content: "82";
  }
  95.31818% {
    content: "83";
  }
  96.45455% {
    content: "84";
  }
  97.59091% {
    content: "85";
  }
  98.72727% {
    content: "86";
  }
  99.86364% {
    content: "87";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-88 {
  0% {
    content: "0";
  }
  2.13636% {
    content: "1";
  }
  3.27273% {
    content: "2";
  }
  4.40909% {
    content: "3";
  }
  5.54545% {
    content: "4";
  }
  6.68182% {
    content: "5";
  }
  7.81818% {
    content: "6";
  }
  8.95455% {
    content: "7";
  }
  10.09091% {
    content: "8";
  }
  11.22727% {
    content: "9";
  }
  12.36364% {
    content: "10";
  }
  13.5% {
    content: "11";
  }
  14.63636% {
    content: "12";
  }
  15.77273% {
    content: "13";
  }
  16.90909% {
    content: "14";
  }
  18.04545% {
    content: "15";
  }
  19.18182% {
    content: "16";
  }
  20.31818% {
    content: "17";
  }
  21.45455% {
    content: "18";
  }
  22.59091% {
    content: "19";
  }
  23.72727% {
    content: "20";
  }
  24.86364% {
    content: "21";
  }
  26% {
    content: "22";
  }
  27.13636% {
    content: "23";
  }
  28.27273% {
    content: "24";
  }
  29.40909% {
    content: "25";
  }
  30.54545% {
    content: "26";
  }
  31.68182% {
    content: "27";
  }
  32.81818% {
    content: "28";
  }
  33.95455% {
    content: "29";
  }
  35.09091% {
    content: "30";
  }
  36.22727% {
    content: "31";
  }
  37.36364% {
    content: "32";
  }
  38.5% {
    content: "33";
  }
  39.63636% {
    content: "34";
  }
  40.77273% {
    content: "35";
  }
  41.90909% {
    content: "36";
  }
  43.04545% {
    content: "37";
  }
  44.18182% {
    content: "38";
  }
  45.31818% {
    content: "39";
  }
  46.45455% {
    content: "40";
  }
  47.59091% {
    content: "41";
  }
  48.72727% {
    content: "42";
  }
  49.86364% {
    content: "43";
  }
  51% {
    content: "44";
  }
  52.13636% {
    content: "45";
  }
  53.27273% {
    content: "46";
  }
  54.40909% {
    content: "47";
  }
  55.54545% {
    content: "48";
  }
  56.68182% {
    content: "49";
  }
  57.81818% {
    content: "50";
  }
  58.95455% {
    content: "51";
  }
  60.09091% {
    content: "52";
  }
  61.22727% {
    content: "53";
  }
  62.36364% {
    content: "54";
  }
  63.5% {
    content: "55";
  }
  64.63636% {
    content: "56";
  }
  65.77273% {
    content: "57";
  }
  66.90909% {
    content: "58";
  }
  68.04545% {
    content: "59";
  }
  69.18182% {
    content: "60";
  }
  70.31818% {
    content: "61";
  }
  71.45455% {
    content: "62";
  }
  72.59091% {
    content: "63";
  }
  73.72727% {
    content: "64";
  }
  74.86364% {
    content: "65";
  }
  76% {
    content: "66";
  }
  77.13636% {
    content: "67";
  }
  78.27273% {
    content: "68";
  }
  79.40909% {
    content: "69";
  }
  80.54545% {
    content: "70";
  }
  81.68182% {
    content: "71";
  }
  82.81818% {
    content: "72";
  }
  83.95455% {
    content: "73";
  }
  85.09091% {
    content: "74";
  }
  86.22727% {
    content: "75";
  }
  87.36364% {
    content: "76";
  }
  88.5% {
    content: "77";
  }
  89.63636% {
    content: "78";
  }
  90.77273% {
    content: "79";
  }
  91.90909% {
    content: "80";
  }
  93.04545% {
    content: "81";
  }
  94.18182% {
    content: "82";
  }
  95.31818% {
    content: "83";
  }
  96.45455% {
    content: "84";
  }
  97.59091% {
    content: "85";
  }
  98.72727% {
    content: "86";
  }
  99.86364% {
    content: "87";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-89 {
  0% {
    content: "0";
  }
  2.1236% {
    content: "1";
  }
  3.24719% {
    content: "2";
  }
  4.37079% {
    content: "3";
  }
  5.49438% {
    content: "4";
  }
  6.61798% {
    content: "5";
  }
  7.74157% {
    content: "6";
  }
  8.86517% {
    content: "7";
  }
  9.98876% {
    content: "8";
  }
  11.11236% {
    content: "9";
  }
  12.23596% {
    content: "10";
  }
  13.35955% {
    content: "11";
  }
  14.48315% {
    content: "12";
  }
  15.60674% {
    content: "13";
  }
  16.73034% {
    content: "14";
  }
  17.85393% {
    content: "15";
  }
  18.97753% {
    content: "16";
  }
  20.10112% {
    content: "17";
  }
  21.22472% {
    content: "18";
  }
  22.34831% {
    content: "19";
  }
  23.47191% {
    content: "20";
  }
  24.59551% {
    content: "21";
  }
  25.7191% {
    content: "22";
  }
  26.8427% {
    content: "23";
  }
  27.96629% {
    content: "24";
  }
  29.08989% {
    content: "25";
  }
  30.21348% {
    content: "26";
  }
  31.33708% {
    content: "27";
  }
  32.46067% {
    content: "28";
  }
  33.58427% {
    content: "29";
  }
  34.70787% {
    content: "30";
  }
  35.83146% {
    content: "31";
  }
  36.95506% {
    content: "32";
  }
  38.07865% {
    content: "33";
  }
  39.20225% {
    content: "34";
  }
  40.32584% {
    content: "35";
  }
  41.44944% {
    content: "36";
  }
  42.57303% {
    content: "37";
  }
  43.69663% {
    content: "38";
  }
  44.82022% {
    content: "39";
  }
  45.94382% {
    content: "40";
  }
  47.06742% {
    content: "41";
  }
  48.19101% {
    content: "42";
  }
  49.31461% {
    content: "43";
  }
  50.4382% {
    content: "44";
  }
  51.5618% {
    content: "45";
  }
  52.68539% {
    content: "46";
  }
  53.80899% {
    content: "47";
  }
  54.93258% {
    content: "48";
  }
  56.05618% {
    content: "49";
  }
  57.17978% {
    content: "50";
  }
  58.30337% {
    content: "51";
  }
  59.42697% {
    content: "52";
  }
  60.55056% {
    content: "53";
  }
  61.67416% {
    content: "54";
  }
  62.79775% {
    content: "55";
  }
  63.92135% {
    content: "56";
  }
  65.04494% {
    content: "57";
  }
  66.16854% {
    content: "58";
  }
  67.29213% {
    content: "59";
  }
  68.41573% {
    content: "60";
  }
  69.53933% {
    content: "61";
  }
  70.66292% {
    content: "62";
  }
  71.78652% {
    content: "63";
  }
  72.91011% {
    content: "64";
  }
  74.03371% {
    content: "65";
  }
  75.1573% {
    content: "66";
  }
  76.2809% {
    content: "67";
  }
  77.40449% {
    content: "68";
  }
  78.52809% {
    content: "69";
  }
  79.65169% {
    content: "70";
  }
  80.77528% {
    content: "71";
  }
  81.89888% {
    content: "72";
  }
  83.02247% {
    content: "73";
  }
  84.14607% {
    content: "74";
  }
  85.26966% {
    content: "75";
  }
  86.39326% {
    content: "76";
  }
  87.51685% {
    content: "77";
  }
  88.64045% {
    content: "78";
  }
  89.76404% {
    content: "79";
  }
  90.88764% {
    content: "80";
  }
  92.01124% {
    content: "81";
  }
  93.13483% {
    content: "82";
  }
  94.25843% {
    content: "83";
  }
  95.38202% {
    content: "84";
  }
  96.50562% {
    content: "85";
  }
  97.62921% {
    content: "86";
  }
  98.75281% {
    content: "87";
  }
  99.8764% {
    content: "88";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-89 {
  0% {
    content: "0";
  }
  2.1236% {
    content: "1";
  }
  3.24719% {
    content: "2";
  }
  4.37079% {
    content: "3";
  }
  5.49438% {
    content: "4";
  }
  6.61798% {
    content: "5";
  }
  7.74157% {
    content: "6";
  }
  8.86517% {
    content: "7";
  }
  9.98876% {
    content: "8";
  }
  11.11236% {
    content: "9";
  }
  12.23596% {
    content: "10";
  }
  13.35955% {
    content: "11";
  }
  14.48315% {
    content: "12";
  }
  15.60674% {
    content: "13";
  }
  16.73034% {
    content: "14";
  }
  17.85393% {
    content: "15";
  }
  18.97753% {
    content: "16";
  }
  20.10112% {
    content: "17";
  }
  21.22472% {
    content: "18";
  }
  22.34831% {
    content: "19";
  }
  23.47191% {
    content: "20";
  }
  24.59551% {
    content: "21";
  }
  25.7191% {
    content: "22";
  }
  26.8427% {
    content: "23";
  }
  27.96629% {
    content: "24";
  }
  29.08989% {
    content: "25";
  }
  30.21348% {
    content: "26";
  }
  31.33708% {
    content: "27";
  }
  32.46067% {
    content: "28";
  }
  33.58427% {
    content: "29";
  }
  34.70787% {
    content: "30";
  }
  35.83146% {
    content: "31";
  }
  36.95506% {
    content: "32";
  }
  38.07865% {
    content: "33";
  }
  39.20225% {
    content: "34";
  }
  40.32584% {
    content: "35";
  }
  41.44944% {
    content: "36";
  }
  42.57303% {
    content: "37";
  }
  43.69663% {
    content: "38";
  }
  44.82022% {
    content: "39";
  }
  45.94382% {
    content: "40";
  }
  47.06742% {
    content: "41";
  }
  48.19101% {
    content: "42";
  }
  49.31461% {
    content: "43";
  }
  50.4382% {
    content: "44";
  }
  51.5618% {
    content: "45";
  }
  52.68539% {
    content: "46";
  }
  53.80899% {
    content: "47";
  }
  54.93258% {
    content: "48";
  }
  56.05618% {
    content: "49";
  }
  57.17978% {
    content: "50";
  }
  58.30337% {
    content: "51";
  }
  59.42697% {
    content: "52";
  }
  60.55056% {
    content: "53";
  }
  61.67416% {
    content: "54";
  }
  62.79775% {
    content: "55";
  }
  63.92135% {
    content: "56";
  }
  65.04494% {
    content: "57";
  }
  66.16854% {
    content: "58";
  }
  67.29213% {
    content: "59";
  }
  68.41573% {
    content: "60";
  }
  69.53933% {
    content: "61";
  }
  70.66292% {
    content: "62";
  }
  71.78652% {
    content: "63";
  }
  72.91011% {
    content: "64";
  }
  74.03371% {
    content: "65";
  }
  75.1573% {
    content: "66";
  }
  76.2809% {
    content: "67";
  }
  77.40449% {
    content: "68";
  }
  78.52809% {
    content: "69";
  }
  79.65169% {
    content: "70";
  }
  80.77528% {
    content: "71";
  }
  81.89888% {
    content: "72";
  }
  83.02247% {
    content: "73";
  }
  84.14607% {
    content: "74";
  }
  85.26966% {
    content: "75";
  }
  86.39326% {
    content: "76";
  }
  87.51685% {
    content: "77";
  }
  88.64045% {
    content: "78";
  }
  89.76404% {
    content: "79";
  }
  90.88764% {
    content: "80";
  }
  92.01124% {
    content: "81";
  }
  93.13483% {
    content: "82";
  }
  94.25843% {
    content: "83";
  }
  95.38202% {
    content: "84";
  }
  96.50562% {
    content: "85";
  }
  97.62921% {
    content: "86";
  }
  98.75281% {
    content: "87";
  }
  99.8764% {
    content: "88";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-90 {
  0% {
    content: "0";
  }
  2.11111% {
    content: "1";
  }
  3.22222% {
    content: "2";
  }
  4.33333% {
    content: "3";
  }
  5.44444% {
    content: "4";
  }
  6.55556% {
    content: "5";
  }
  7.66667% {
    content: "6";
  }
  8.77778% {
    content: "7";
  }
  9.88889% {
    content: "8";
  }
  11% {
    content: "9";
  }
  12.11111% {
    content: "10";
  }
  13.22222% {
    content: "11";
  }
  14.33333% {
    content: "12";
  }
  15.44444% {
    content: "13";
  }
  16.55556% {
    content: "14";
  }
  17.66667% {
    content: "15";
  }
  18.77778% {
    content: "16";
  }
  19.88889% {
    content: "17";
  }
  21% {
    content: "18";
  }
  22.11111% {
    content: "19";
  }
  23.22222% {
    content: "20";
  }
  24.33333% {
    content: "21";
  }
  25.44444% {
    content: "22";
  }
  26.55556% {
    content: "23";
  }
  27.66667% {
    content: "24";
  }
  28.77778% {
    content: "25";
  }
  29.88889% {
    content: "26";
  }
  31% {
    content: "27";
  }
  32.11111% {
    content: "28";
  }
  33.22222% {
    content: "29";
  }
  34.33333% {
    content: "30";
  }
  35.44444% {
    content: "31";
  }
  36.55556% {
    content: "32";
  }
  37.66667% {
    content: "33";
  }
  38.77778% {
    content: "34";
  }
  39.88889% {
    content: "35";
  }
  41% {
    content: "36";
  }
  42.11111% {
    content: "37";
  }
  43.22222% {
    content: "38";
  }
  44.33333% {
    content: "39";
  }
  45.44444% {
    content: "40";
  }
  46.55556% {
    content: "41";
  }
  47.66667% {
    content: "42";
  }
  48.77778% {
    content: "43";
  }
  49.88889% {
    content: "44";
  }
  51% {
    content: "45";
  }
  52.11111% {
    content: "46";
  }
  53.22222% {
    content: "47";
  }
  54.33333% {
    content: "48";
  }
  55.44444% {
    content: "49";
  }
  56.55556% {
    content: "50";
  }
  57.66667% {
    content: "51";
  }
  58.77778% {
    content: "52";
  }
  59.88889% {
    content: "53";
  }
  61% {
    content: "54";
  }
  62.11111% {
    content: "55";
  }
  63.22222% {
    content: "56";
  }
  64.33333% {
    content: "57";
  }
  65.44444% {
    content: "58";
  }
  66.55556% {
    content: "59";
  }
  67.66667% {
    content: "60";
  }
  68.77778% {
    content: "61";
  }
  69.88889% {
    content: "62";
  }
  71% {
    content: "63";
  }
  72.11111% {
    content: "64";
  }
  73.22222% {
    content: "65";
  }
  74.33333% {
    content: "66";
  }
  75.44444% {
    content: "67";
  }
  76.55556% {
    content: "68";
  }
  77.66667% {
    content: "69";
  }
  78.77778% {
    content: "70";
  }
  79.88889% {
    content: "71";
  }
  81% {
    content: "72";
  }
  82.11111% {
    content: "73";
  }
  83.22222% {
    content: "74";
  }
  84.33333% {
    content: "75";
  }
  85.44444% {
    content: "76";
  }
  86.55556% {
    content: "77";
  }
  87.66667% {
    content: "78";
  }
  88.77778% {
    content: "79";
  }
  89.88889% {
    content: "80";
  }
  91% {
    content: "81";
  }
  92.11111% {
    content: "82";
  }
  93.22222% {
    content: "83";
  }
  94.33333% {
    content: "84";
  }
  95.44444% {
    content: "85";
  }
  96.55556% {
    content: "86";
  }
  97.66667% {
    content: "87";
  }
  98.77778% {
    content: "88";
  }
  99.88889% {
    content: "89";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-90 {
  0% {
    content: "0";
  }
  2.11111% {
    content: "1";
  }
  3.22222% {
    content: "2";
  }
  4.33333% {
    content: "3";
  }
  5.44444% {
    content: "4";
  }
  6.55556% {
    content: "5";
  }
  7.66667% {
    content: "6";
  }
  8.77778% {
    content: "7";
  }
  9.88889% {
    content: "8";
  }
  11% {
    content: "9";
  }
  12.11111% {
    content: "10";
  }
  13.22222% {
    content: "11";
  }
  14.33333% {
    content: "12";
  }
  15.44444% {
    content: "13";
  }
  16.55556% {
    content: "14";
  }
  17.66667% {
    content: "15";
  }
  18.77778% {
    content: "16";
  }
  19.88889% {
    content: "17";
  }
  21% {
    content: "18";
  }
  22.11111% {
    content: "19";
  }
  23.22222% {
    content: "20";
  }
  24.33333% {
    content: "21";
  }
  25.44444% {
    content: "22";
  }
  26.55556% {
    content: "23";
  }
  27.66667% {
    content: "24";
  }
  28.77778% {
    content: "25";
  }
  29.88889% {
    content: "26";
  }
  31% {
    content: "27";
  }
  32.11111% {
    content: "28";
  }
  33.22222% {
    content: "29";
  }
  34.33333% {
    content: "30";
  }
  35.44444% {
    content: "31";
  }
  36.55556% {
    content: "32";
  }
  37.66667% {
    content: "33";
  }
  38.77778% {
    content: "34";
  }
  39.88889% {
    content: "35";
  }
  41% {
    content: "36";
  }
  42.11111% {
    content: "37";
  }
  43.22222% {
    content: "38";
  }
  44.33333% {
    content: "39";
  }
  45.44444% {
    content: "40";
  }
  46.55556% {
    content: "41";
  }
  47.66667% {
    content: "42";
  }
  48.77778% {
    content: "43";
  }
  49.88889% {
    content: "44";
  }
  51% {
    content: "45";
  }
  52.11111% {
    content: "46";
  }
  53.22222% {
    content: "47";
  }
  54.33333% {
    content: "48";
  }
  55.44444% {
    content: "49";
  }
  56.55556% {
    content: "50";
  }
  57.66667% {
    content: "51";
  }
  58.77778% {
    content: "52";
  }
  59.88889% {
    content: "53";
  }
  61% {
    content: "54";
  }
  62.11111% {
    content: "55";
  }
  63.22222% {
    content: "56";
  }
  64.33333% {
    content: "57";
  }
  65.44444% {
    content: "58";
  }
  66.55556% {
    content: "59";
  }
  67.66667% {
    content: "60";
  }
  68.77778% {
    content: "61";
  }
  69.88889% {
    content: "62";
  }
  71% {
    content: "63";
  }
  72.11111% {
    content: "64";
  }
  73.22222% {
    content: "65";
  }
  74.33333% {
    content: "66";
  }
  75.44444% {
    content: "67";
  }
  76.55556% {
    content: "68";
  }
  77.66667% {
    content: "69";
  }
  78.77778% {
    content: "70";
  }
  79.88889% {
    content: "71";
  }
  81% {
    content: "72";
  }
  82.11111% {
    content: "73";
  }
  83.22222% {
    content: "74";
  }
  84.33333% {
    content: "75";
  }
  85.44444% {
    content: "76";
  }
  86.55556% {
    content: "77";
  }
  87.66667% {
    content: "78";
  }
  88.77778% {
    content: "79";
  }
  89.88889% {
    content: "80";
  }
  91% {
    content: "81";
  }
  92.11111% {
    content: "82";
  }
  93.22222% {
    content: "83";
  }
  94.33333% {
    content: "84";
  }
  95.44444% {
    content: "85";
  }
  96.55556% {
    content: "86";
  }
  97.66667% {
    content: "87";
  }
  98.77778% {
    content: "88";
  }
  99.88889% {
    content: "89";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-91 {
  0% {
    content: "0";
  }
  2.0989% {
    content: "1";
  }
  3.1978% {
    content: "2";
  }
  4.2967% {
    content: "3";
  }
  5.3956% {
    content: "4";
  }
  6.49451% {
    content: "5";
  }
  7.59341% {
    content: "6";
  }
  8.69231% {
    content: "7";
  }
  9.79121% {
    content: "8";
  }
  10.89011% {
    content: "9";
  }
  11.98901% {
    content: "10";
  }
  13.08791% {
    content: "11";
  }
  14.18681% {
    content: "12";
  }
  15.28571% {
    content: "13";
  }
  16.38462% {
    content: "14";
  }
  17.48352% {
    content: "15";
  }
  18.58242% {
    content: "16";
  }
  19.68132% {
    content: "17";
  }
  20.78022% {
    content: "18";
  }
  21.87912% {
    content: "19";
  }
  22.97802% {
    content: "20";
  }
  24.07692% {
    content: "21";
  }
  25.17582% {
    content: "22";
  }
  26.27473% {
    content: "23";
  }
  27.37363% {
    content: "24";
  }
  28.47253% {
    content: "25";
  }
  29.57143% {
    content: "26";
  }
  30.67033% {
    content: "27";
  }
  31.76923% {
    content: "28";
  }
  32.86813% {
    content: "29";
  }
  33.96703% {
    content: "30";
  }
  35.06593% {
    content: "31";
  }
  36.16484% {
    content: "32";
  }
  37.26374% {
    content: "33";
  }
  38.36264% {
    content: "34";
  }
  39.46154% {
    content: "35";
  }
  40.56044% {
    content: "36";
  }
  41.65934% {
    content: "37";
  }
  42.75824% {
    content: "38";
  }
  43.85714% {
    content: "39";
  }
  44.95604% {
    content: "40";
  }
  46.05495% {
    content: "41";
  }
  47.15385% {
    content: "42";
  }
  48.25275% {
    content: "43";
  }
  49.35165% {
    content: "44";
  }
  50.45055% {
    content: "45";
  }
  51.54945% {
    content: "46";
  }
  52.64835% {
    content: "47";
  }
  53.74725% {
    content: "48";
  }
  54.84615% {
    content: "49";
  }
  55.94505% {
    content: "50";
  }
  57.04396% {
    content: "51";
  }
  58.14286% {
    content: "52";
  }
  59.24176% {
    content: "53";
  }
  60.34066% {
    content: "54";
  }
  61.43956% {
    content: "55";
  }
  62.53846% {
    content: "56";
  }
  63.63736% {
    content: "57";
  }
  64.73626% {
    content: "58";
  }
  65.83516% {
    content: "59";
  }
  66.93407% {
    content: "60";
  }
  68.03297% {
    content: "61";
  }
  69.13187% {
    content: "62";
  }
  70.23077% {
    content: "63";
  }
  71.32967% {
    content: "64";
  }
  72.42857% {
    content: "65";
  }
  73.52747% {
    content: "66";
  }
  74.62637% {
    content: "67";
  }
  75.72527% {
    content: "68";
  }
  76.82418% {
    content: "69";
  }
  77.92308% {
    content: "70";
  }
  79.02198% {
    content: "71";
  }
  80.12088% {
    content: "72";
  }
  81.21978% {
    content: "73";
  }
  82.31868% {
    content: "74";
  }
  83.41758% {
    content: "75";
  }
  84.51648% {
    content: "76";
  }
  85.61538% {
    content: "77";
  }
  86.71429% {
    content: "78";
  }
  87.81319% {
    content: "79";
  }
  88.91209% {
    content: "80";
  }
  90.01099% {
    content: "81";
  }
  91.10989% {
    content: "82";
  }
  92.20879% {
    content: "83";
  }
  93.30769% {
    content: "84";
  }
  94.40659% {
    content: "85";
  }
  95.50549% {
    content: "86";
  }
  96.6044% {
    content: "87";
  }
  97.7033% {
    content: "88";
  }
  98.8022% {
    content: "89";
  }
  99.9011% {
    content: "90";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-91 {
  0% {
    content: "0";
  }
  2.0989% {
    content: "1";
  }
  3.1978% {
    content: "2";
  }
  4.2967% {
    content: "3";
  }
  5.3956% {
    content: "4";
  }
  6.49451% {
    content: "5";
  }
  7.59341% {
    content: "6";
  }
  8.69231% {
    content: "7";
  }
  9.79121% {
    content: "8";
  }
  10.89011% {
    content: "9";
  }
  11.98901% {
    content: "10";
  }
  13.08791% {
    content: "11";
  }
  14.18681% {
    content: "12";
  }
  15.28571% {
    content: "13";
  }
  16.38462% {
    content: "14";
  }
  17.48352% {
    content: "15";
  }
  18.58242% {
    content: "16";
  }
  19.68132% {
    content: "17";
  }
  20.78022% {
    content: "18";
  }
  21.87912% {
    content: "19";
  }
  22.97802% {
    content: "20";
  }
  24.07692% {
    content: "21";
  }
  25.17582% {
    content: "22";
  }
  26.27473% {
    content: "23";
  }
  27.37363% {
    content: "24";
  }
  28.47253% {
    content: "25";
  }
  29.57143% {
    content: "26";
  }
  30.67033% {
    content: "27";
  }
  31.76923% {
    content: "28";
  }
  32.86813% {
    content: "29";
  }
  33.96703% {
    content: "30";
  }
  35.06593% {
    content: "31";
  }
  36.16484% {
    content: "32";
  }
  37.26374% {
    content: "33";
  }
  38.36264% {
    content: "34";
  }
  39.46154% {
    content: "35";
  }
  40.56044% {
    content: "36";
  }
  41.65934% {
    content: "37";
  }
  42.75824% {
    content: "38";
  }
  43.85714% {
    content: "39";
  }
  44.95604% {
    content: "40";
  }
  46.05495% {
    content: "41";
  }
  47.15385% {
    content: "42";
  }
  48.25275% {
    content: "43";
  }
  49.35165% {
    content: "44";
  }
  50.45055% {
    content: "45";
  }
  51.54945% {
    content: "46";
  }
  52.64835% {
    content: "47";
  }
  53.74725% {
    content: "48";
  }
  54.84615% {
    content: "49";
  }
  55.94505% {
    content: "50";
  }
  57.04396% {
    content: "51";
  }
  58.14286% {
    content: "52";
  }
  59.24176% {
    content: "53";
  }
  60.34066% {
    content: "54";
  }
  61.43956% {
    content: "55";
  }
  62.53846% {
    content: "56";
  }
  63.63736% {
    content: "57";
  }
  64.73626% {
    content: "58";
  }
  65.83516% {
    content: "59";
  }
  66.93407% {
    content: "60";
  }
  68.03297% {
    content: "61";
  }
  69.13187% {
    content: "62";
  }
  70.23077% {
    content: "63";
  }
  71.32967% {
    content: "64";
  }
  72.42857% {
    content: "65";
  }
  73.52747% {
    content: "66";
  }
  74.62637% {
    content: "67";
  }
  75.72527% {
    content: "68";
  }
  76.82418% {
    content: "69";
  }
  77.92308% {
    content: "70";
  }
  79.02198% {
    content: "71";
  }
  80.12088% {
    content: "72";
  }
  81.21978% {
    content: "73";
  }
  82.31868% {
    content: "74";
  }
  83.41758% {
    content: "75";
  }
  84.51648% {
    content: "76";
  }
  85.61538% {
    content: "77";
  }
  86.71429% {
    content: "78";
  }
  87.81319% {
    content: "79";
  }
  88.91209% {
    content: "80";
  }
  90.01099% {
    content: "81";
  }
  91.10989% {
    content: "82";
  }
  92.20879% {
    content: "83";
  }
  93.30769% {
    content: "84";
  }
  94.40659% {
    content: "85";
  }
  95.50549% {
    content: "86";
  }
  96.6044% {
    content: "87";
  }
  97.7033% {
    content: "88";
  }
  98.8022% {
    content: "89";
  }
  99.9011% {
    content: "90";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-92 {
  0% {
    content: "0";
  }
  2.08696% {
    content: "1";
  }
  3.17391% {
    content: "2";
  }
  4.26087% {
    content: "3";
  }
  5.34783% {
    content: "4";
  }
  6.43478% {
    content: "5";
  }
  7.52174% {
    content: "6";
  }
  8.6087% {
    content: "7";
  }
  9.69565% {
    content: "8";
  }
  10.78261% {
    content: "9";
  }
  11.86957% {
    content: "10";
  }
  12.95652% {
    content: "11";
  }
  14.04348% {
    content: "12";
  }
  15.13043% {
    content: "13";
  }
  16.21739% {
    content: "14";
  }
  17.30435% {
    content: "15";
  }
  18.3913% {
    content: "16";
  }
  19.47826% {
    content: "17";
  }
  20.56522% {
    content: "18";
  }
  21.65217% {
    content: "19";
  }
  22.73913% {
    content: "20";
  }
  23.82609% {
    content: "21";
  }
  24.91304% {
    content: "22";
  }
  26% {
    content: "23";
  }
  27.08696% {
    content: "24";
  }
  28.17391% {
    content: "25";
  }
  29.26087% {
    content: "26";
  }
  30.34783% {
    content: "27";
  }
  31.43478% {
    content: "28";
  }
  32.52174% {
    content: "29";
  }
  33.6087% {
    content: "30";
  }
  34.69565% {
    content: "31";
  }
  35.78261% {
    content: "32";
  }
  36.86957% {
    content: "33";
  }
  37.95652% {
    content: "34";
  }
  39.04348% {
    content: "35";
  }
  40.13043% {
    content: "36";
  }
  41.21739% {
    content: "37";
  }
  42.30435% {
    content: "38";
  }
  43.3913% {
    content: "39";
  }
  44.47826% {
    content: "40";
  }
  45.56522% {
    content: "41";
  }
  46.65217% {
    content: "42";
  }
  47.73913% {
    content: "43";
  }
  48.82609% {
    content: "44";
  }
  49.91304% {
    content: "45";
  }
  51% {
    content: "46";
  }
  52.08696% {
    content: "47";
  }
  53.17391% {
    content: "48";
  }
  54.26087% {
    content: "49";
  }
  55.34783% {
    content: "50";
  }
  56.43478% {
    content: "51";
  }
  57.52174% {
    content: "52";
  }
  58.6087% {
    content: "53";
  }
  59.69565% {
    content: "54";
  }
  60.78261% {
    content: "55";
  }
  61.86957% {
    content: "56";
  }
  62.95652% {
    content: "57";
  }
  64.04348% {
    content: "58";
  }
  65.13043% {
    content: "59";
  }
  66.21739% {
    content: "60";
  }
  67.30435% {
    content: "61";
  }
  68.3913% {
    content: "62";
  }
  69.47826% {
    content: "63";
  }
  70.56522% {
    content: "64";
  }
  71.65217% {
    content: "65";
  }
  72.73913% {
    content: "66";
  }
  73.82609% {
    content: "67";
  }
  74.91304% {
    content: "68";
  }
  76% {
    content: "69";
  }
  77.08696% {
    content: "70";
  }
  78.17391% {
    content: "71";
  }
  79.26087% {
    content: "72";
  }
  80.34783% {
    content: "73";
  }
  81.43478% {
    content: "74";
  }
  82.52174% {
    content: "75";
  }
  83.6087% {
    content: "76";
  }
  84.69565% {
    content: "77";
  }
  85.78261% {
    content: "78";
  }
  86.86957% {
    content: "79";
  }
  87.95652% {
    content: "80";
  }
  89.04348% {
    content: "81";
  }
  90.13043% {
    content: "82";
  }
  91.21739% {
    content: "83";
  }
  92.30435% {
    content: "84";
  }
  93.3913% {
    content: "85";
  }
  94.47826% {
    content: "86";
  }
  95.56522% {
    content: "87";
  }
  96.65217% {
    content: "88";
  }
  97.73913% {
    content: "89";
  }
  98.82609% {
    content: "90";
  }
  99.91304% {
    content: "91";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-92 {
  0% {
    content: "0";
  }
  2.08696% {
    content: "1";
  }
  3.17391% {
    content: "2";
  }
  4.26087% {
    content: "3";
  }
  5.34783% {
    content: "4";
  }
  6.43478% {
    content: "5";
  }
  7.52174% {
    content: "6";
  }
  8.6087% {
    content: "7";
  }
  9.69565% {
    content: "8";
  }
  10.78261% {
    content: "9";
  }
  11.86957% {
    content: "10";
  }
  12.95652% {
    content: "11";
  }
  14.04348% {
    content: "12";
  }
  15.13043% {
    content: "13";
  }
  16.21739% {
    content: "14";
  }
  17.30435% {
    content: "15";
  }
  18.3913% {
    content: "16";
  }
  19.47826% {
    content: "17";
  }
  20.56522% {
    content: "18";
  }
  21.65217% {
    content: "19";
  }
  22.73913% {
    content: "20";
  }
  23.82609% {
    content: "21";
  }
  24.91304% {
    content: "22";
  }
  26% {
    content: "23";
  }
  27.08696% {
    content: "24";
  }
  28.17391% {
    content: "25";
  }
  29.26087% {
    content: "26";
  }
  30.34783% {
    content: "27";
  }
  31.43478% {
    content: "28";
  }
  32.52174% {
    content: "29";
  }
  33.6087% {
    content: "30";
  }
  34.69565% {
    content: "31";
  }
  35.78261% {
    content: "32";
  }
  36.86957% {
    content: "33";
  }
  37.95652% {
    content: "34";
  }
  39.04348% {
    content: "35";
  }
  40.13043% {
    content: "36";
  }
  41.21739% {
    content: "37";
  }
  42.30435% {
    content: "38";
  }
  43.3913% {
    content: "39";
  }
  44.47826% {
    content: "40";
  }
  45.56522% {
    content: "41";
  }
  46.65217% {
    content: "42";
  }
  47.73913% {
    content: "43";
  }
  48.82609% {
    content: "44";
  }
  49.91304% {
    content: "45";
  }
  51% {
    content: "46";
  }
  52.08696% {
    content: "47";
  }
  53.17391% {
    content: "48";
  }
  54.26087% {
    content: "49";
  }
  55.34783% {
    content: "50";
  }
  56.43478% {
    content: "51";
  }
  57.52174% {
    content: "52";
  }
  58.6087% {
    content: "53";
  }
  59.69565% {
    content: "54";
  }
  60.78261% {
    content: "55";
  }
  61.86957% {
    content: "56";
  }
  62.95652% {
    content: "57";
  }
  64.04348% {
    content: "58";
  }
  65.13043% {
    content: "59";
  }
  66.21739% {
    content: "60";
  }
  67.30435% {
    content: "61";
  }
  68.3913% {
    content: "62";
  }
  69.47826% {
    content: "63";
  }
  70.56522% {
    content: "64";
  }
  71.65217% {
    content: "65";
  }
  72.73913% {
    content: "66";
  }
  73.82609% {
    content: "67";
  }
  74.91304% {
    content: "68";
  }
  76% {
    content: "69";
  }
  77.08696% {
    content: "70";
  }
  78.17391% {
    content: "71";
  }
  79.26087% {
    content: "72";
  }
  80.34783% {
    content: "73";
  }
  81.43478% {
    content: "74";
  }
  82.52174% {
    content: "75";
  }
  83.6087% {
    content: "76";
  }
  84.69565% {
    content: "77";
  }
  85.78261% {
    content: "78";
  }
  86.86957% {
    content: "79";
  }
  87.95652% {
    content: "80";
  }
  89.04348% {
    content: "81";
  }
  90.13043% {
    content: "82";
  }
  91.21739% {
    content: "83";
  }
  92.30435% {
    content: "84";
  }
  93.3913% {
    content: "85";
  }
  94.47826% {
    content: "86";
  }
  95.56522% {
    content: "87";
  }
  96.65217% {
    content: "88";
  }
  97.73913% {
    content: "89";
  }
  98.82609% {
    content: "90";
  }
  99.91304% {
    content: "91";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-93 {
  0% {
    content: "0";
  }
  2.07527% {
    content: "1";
  }
  3.15054% {
    content: "2";
  }
  4.22581% {
    content: "3";
  }
  5.30108% {
    content: "4";
  }
  6.37634% {
    content: "5";
  }
  7.45161% {
    content: "6";
  }
  8.52688% {
    content: "7";
  }
  9.60215% {
    content: "8";
  }
  10.67742% {
    content: "9";
  }
  11.75269% {
    content: "10";
  }
  12.82796% {
    content: "11";
  }
  13.90323% {
    content: "12";
  }
  14.97849% {
    content: "13";
  }
  16.05376% {
    content: "14";
  }
  17.12903% {
    content: "15";
  }
  18.2043% {
    content: "16";
  }
  19.27957% {
    content: "17";
  }
  20.35484% {
    content: "18";
  }
  21.43011% {
    content: "19";
  }
  22.50538% {
    content: "20";
  }
  23.58065% {
    content: "21";
  }
  24.65591% {
    content: "22";
  }
  25.73118% {
    content: "23";
  }
  26.80645% {
    content: "24";
  }
  27.88172% {
    content: "25";
  }
  28.95699% {
    content: "26";
  }
  30.03226% {
    content: "27";
  }
  31.10753% {
    content: "28";
  }
  32.1828% {
    content: "29";
  }
  33.25806% {
    content: "30";
  }
  34.33333% {
    content: "31";
  }
  35.4086% {
    content: "32";
  }
  36.48387% {
    content: "33";
  }
  37.55914% {
    content: "34";
  }
  38.63441% {
    content: "35";
  }
  39.70968% {
    content: "36";
  }
  40.78495% {
    content: "37";
  }
  41.86022% {
    content: "38";
  }
  42.93548% {
    content: "39";
  }
  44.01075% {
    content: "40";
  }
  45.08602% {
    content: "41";
  }
  46.16129% {
    content: "42";
  }
  47.23656% {
    content: "43";
  }
  48.31183% {
    content: "44";
  }
  49.3871% {
    content: "45";
  }
  50.46237% {
    content: "46";
  }
  51.53763% {
    content: "47";
  }
  52.6129% {
    content: "48";
  }
  53.68817% {
    content: "49";
  }
  54.76344% {
    content: "50";
  }
  55.83871% {
    content: "51";
  }
  56.91398% {
    content: "52";
  }
  57.98925% {
    content: "53";
  }
  59.06452% {
    content: "54";
  }
  60.13978% {
    content: "55";
  }
  61.21505% {
    content: "56";
  }
  62.29032% {
    content: "57";
  }
  63.36559% {
    content: "58";
  }
  64.44086% {
    content: "59";
  }
  65.51613% {
    content: "60";
  }
  66.5914% {
    content: "61";
  }
  67.66667% {
    content: "62";
  }
  68.74194% {
    content: "63";
  }
  69.8172% {
    content: "64";
  }
  70.89247% {
    content: "65";
  }
  71.96774% {
    content: "66";
  }
  73.04301% {
    content: "67";
  }
  74.11828% {
    content: "68";
  }
  75.19355% {
    content: "69";
  }
  76.26882% {
    content: "70";
  }
  77.34409% {
    content: "71";
  }
  78.41935% {
    content: "72";
  }
  79.49462% {
    content: "73";
  }
  80.56989% {
    content: "74";
  }
  81.64516% {
    content: "75";
  }
  82.72043% {
    content: "76";
  }
  83.7957% {
    content: "77";
  }
  84.87097% {
    content: "78";
  }
  85.94624% {
    content: "79";
  }
  87.02151% {
    content: "80";
  }
  88.09677% {
    content: "81";
  }
  89.17204% {
    content: "82";
  }
  90.24731% {
    content: "83";
  }
  91.32258% {
    content: "84";
  }
  92.39785% {
    content: "85";
  }
  93.47312% {
    content: "86";
  }
  94.54839% {
    content: "87";
  }
  95.62366% {
    content: "88";
  }
  96.69892% {
    content: "89";
  }
  97.77419% {
    content: "90";
  }
  98.84946% {
    content: "91";
  }
  99.92473% {
    content: "92";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-93 {
  0% {
    content: "0";
  }
  2.07527% {
    content: "1";
  }
  3.15054% {
    content: "2";
  }
  4.22581% {
    content: "3";
  }
  5.30108% {
    content: "4";
  }
  6.37634% {
    content: "5";
  }
  7.45161% {
    content: "6";
  }
  8.52688% {
    content: "7";
  }
  9.60215% {
    content: "8";
  }
  10.67742% {
    content: "9";
  }
  11.75269% {
    content: "10";
  }
  12.82796% {
    content: "11";
  }
  13.90323% {
    content: "12";
  }
  14.97849% {
    content: "13";
  }
  16.05376% {
    content: "14";
  }
  17.12903% {
    content: "15";
  }
  18.2043% {
    content: "16";
  }
  19.27957% {
    content: "17";
  }
  20.35484% {
    content: "18";
  }
  21.43011% {
    content: "19";
  }
  22.50538% {
    content: "20";
  }
  23.58065% {
    content: "21";
  }
  24.65591% {
    content: "22";
  }
  25.73118% {
    content: "23";
  }
  26.80645% {
    content: "24";
  }
  27.88172% {
    content: "25";
  }
  28.95699% {
    content: "26";
  }
  30.03226% {
    content: "27";
  }
  31.10753% {
    content: "28";
  }
  32.1828% {
    content: "29";
  }
  33.25806% {
    content: "30";
  }
  34.33333% {
    content: "31";
  }
  35.4086% {
    content: "32";
  }
  36.48387% {
    content: "33";
  }
  37.55914% {
    content: "34";
  }
  38.63441% {
    content: "35";
  }
  39.70968% {
    content: "36";
  }
  40.78495% {
    content: "37";
  }
  41.86022% {
    content: "38";
  }
  42.93548% {
    content: "39";
  }
  44.01075% {
    content: "40";
  }
  45.08602% {
    content: "41";
  }
  46.16129% {
    content: "42";
  }
  47.23656% {
    content: "43";
  }
  48.31183% {
    content: "44";
  }
  49.3871% {
    content: "45";
  }
  50.46237% {
    content: "46";
  }
  51.53763% {
    content: "47";
  }
  52.6129% {
    content: "48";
  }
  53.68817% {
    content: "49";
  }
  54.76344% {
    content: "50";
  }
  55.83871% {
    content: "51";
  }
  56.91398% {
    content: "52";
  }
  57.98925% {
    content: "53";
  }
  59.06452% {
    content: "54";
  }
  60.13978% {
    content: "55";
  }
  61.21505% {
    content: "56";
  }
  62.29032% {
    content: "57";
  }
  63.36559% {
    content: "58";
  }
  64.44086% {
    content: "59";
  }
  65.51613% {
    content: "60";
  }
  66.5914% {
    content: "61";
  }
  67.66667% {
    content: "62";
  }
  68.74194% {
    content: "63";
  }
  69.8172% {
    content: "64";
  }
  70.89247% {
    content: "65";
  }
  71.96774% {
    content: "66";
  }
  73.04301% {
    content: "67";
  }
  74.11828% {
    content: "68";
  }
  75.19355% {
    content: "69";
  }
  76.26882% {
    content: "70";
  }
  77.34409% {
    content: "71";
  }
  78.41935% {
    content: "72";
  }
  79.49462% {
    content: "73";
  }
  80.56989% {
    content: "74";
  }
  81.64516% {
    content: "75";
  }
  82.72043% {
    content: "76";
  }
  83.7957% {
    content: "77";
  }
  84.87097% {
    content: "78";
  }
  85.94624% {
    content: "79";
  }
  87.02151% {
    content: "80";
  }
  88.09677% {
    content: "81";
  }
  89.17204% {
    content: "82";
  }
  90.24731% {
    content: "83";
  }
  91.32258% {
    content: "84";
  }
  92.39785% {
    content: "85";
  }
  93.47312% {
    content: "86";
  }
  94.54839% {
    content: "87";
  }
  95.62366% {
    content: "88";
  }
  96.69892% {
    content: "89";
  }
  97.77419% {
    content: "90";
  }
  98.84946% {
    content: "91";
  }
  99.92473% {
    content: "92";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-94 {
  0% {
    content: "0";
  }
  2.06383% {
    content: "1";
  }
  3.12766% {
    content: "2";
  }
  4.19149% {
    content: "3";
  }
  5.25532% {
    content: "4";
  }
  6.31915% {
    content: "5";
  }
  7.38298% {
    content: "6";
  }
  8.44681% {
    content: "7";
  }
  9.51064% {
    content: "8";
  }
  10.57447% {
    content: "9";
  }
  11.6383% {
    content: "10";
  }
  12.70213% {
    content: "11";
  }
  13.76596% {
    content: "12";
  }
  14.82979% {
    content: "13";
  }
  15.89362% {
    content: "14";
  }
  16.95745% {
    content: "15";
  }
  18.02128% {
    content: "16";
  }
  19.08511% {
    content: "17";
  }
  20.14894% {
    content: "18";
  }
  21.21277% {
    content: "19";
  }
  22.2766% {
    content: "20";
  }
  23.34043% {
    content: "21";
  }
  24.40426% {
    content: "22";
  }
  25.46809% {
    content: "23";
  }
  26.53191% {
    content: "24";
  }
  27.59574% {
    content: "25";
  }
  28.65957% {
    content: "26";
  }
  29.7234% {
    content: "27";
  }
  30.78723% {
    content: "28";
  }
  31.85106% {
    content: "29";
  }
  32.91489% {
    content: "30";
  }
  33.97872% {
    content: "31";
  }
  35.04255% {
    content: "32";
  }
  36.10638% {
    content: "33";
  }
  37.17021% {
    content: "34";
  }
  38.23404% {
    content: "35";
  }
  39.29787% {
    content: "36";
  }
  40.3617% {
    content: "37";
  }
  41.42553% {
    content: "38";
  }
  42.48936% {
    content: "39";
  }
  43.55319% {
    content: "40";
  }
  44.61702% {
    content: "41";
  }
  45.68085% {
    content: "42";
  }
  46.74468% {
    content: "43";
  }
  47.80851% {
    content: "44";
  }
  48.87234% {
    content: "45";
  }
  49.93617% {
    content: "46";
  }
  51% {
    content: "47";
  }
  52.06383% {
    content: "48";
  }
  53.12766% {
    content: "49";
  }
  54.19149% {
    content: "50";
  }
  55.25532% {
    content: "51";
  }
  56.31915% {
    content: "52";
  }
  57.38298% {
    content: "53";
  }
  58.44681% {
    content: "54";
  }
  59.51064% {
    content: "55";
  }
  60.57447% {
    content: "56";
  }
  61.6383% {
    content: "57";
  }
  62.70213% {
    content: "58";
  }
  63.76596% {
    content: "59";
  }
  64.82979% {
    content: "60";
  }
  65.89362% {
    content: "61";
  }
  66.95745% {
    content: "62";
  }
  68.02128% {
    content: "63";
  }
  69.08511% {
    content: "64";
  }
  70.14894% {
    content: "65";
  }
  71.21277% {
    content: "66";
  }
  72.2766% {
    content: "67";
  }
  73.34043% {
    content: "68";
  }
  74.40426% {
    content: "69";
  }
  75.46809% {
    content: "70";
  }
  76.53191% {
    content: "71";
  }
  77.59574% {
    content: "72";
  }
  78.65957% {
    content: "73";
  }
  79.7234% {
    content: "74";
  }
  80.78723% {
    content: "75";
  }
  81.85106% {
    content: "76";
  }
  82.91489% {
    content: "77";
  }
  83.97872% {
    content: "78";
  }
  85.04255% {
    content: "79";
  }
  86.10638% {
    content: "80";
  }
  87.17021% {
    content: "81";
  }
  88.23404% {
    content: "82";
  }
  89.29787% {
    content: "83";
  }
  90.3617% {
    content: "84";
  }
  91.42553% {
    content: "85";
  }
  92.48936% {
    content: "86";
  }
  93.55319% {
    content: "87";
  }
  94.61702% {
    content: "88";
  }
  95.68085% {
    content: "89";
  }
  96.74468% {
    content: "90";
  }
  97.80851% {
    content: "91";
  }
  98.87234% {
    content: "92";
  }
  99.93617% {
    content: "93";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-94 {
  0% {
    content: "0";
  }
  2.06383% {
    content: "1";
  }
  3.12766% {
    content: "2";
  }
  4.19149% {
    content: "3";
  }
  5.25532% {
    content: "4";
  }
  6.31915% {
    content: "5";
  }
  7.38298% {
    content: "6";
  }
  8.44681% {
    content: "7";
  }
  9.51064% {
    content: "8";
  }
  10.57447% {
    content: "9";
  }
  11.6383% {
    content: "10";
  }
  12.70213% {
    content: "11";
  }
  13.76596% {
    content: "12";
  }
  14.82979% {
    content: "13";
  }
  15.89362% {
    content: "14";
  }
  16.95745% {
    content: "15";
  }
  18.02128% {
    content: "16";
  }
  19.08511% {
    content: "17";
  }
  20.14894% {
    content: "18";
  }
  21.21277% {
    content: "19";
  }
  22.2766% {
    content: "20";
  }
  23.34043% {
    content: "21";
  }
  24.40426% {
    content: "22";
  }
  25.46809% {
    content: "23";
  }
  26.53191% {
    content: "24";
  }
  27.59574% {
    content: "25";
  }
  28.65957% {
    content: "26";
  }
  29.7234% {
    content: "27";
  }
  30.78723% {
    content: "28";
  }
  31.85106% {
    content: "29";
  }
  32.91489% {
    content: "30";
  }
  33.97872% {
    content: "31";
  }
  35.04255% {
    content: "32";
  }
  36.10638% {
    content: "33";
  }
  37.17021% {
    content: "34";
  }
  38.23404% {
    content: "35";
  }
  39.29787% {
    content: "36";
  }
  40.3617% {
    content: "37";
  }
  41.42553% {
    content: "38";
  }
  42.48936% {
    content: "39";
  }
  43.55319% {
    content: "40";
  }
  44.61702% {
    content: "41";
  }
  45.68085% {
    content: "42";
  }
  46.74468% {
    content: "43";
  }
  47.80851% {
    content: "44";
  }
  48.87234% {
    content: "45";
  }
  49.93617% {
    content: "46";
  }
  51% {
    content: "47";
  }
  52.06383% {
    content: "48";
  }
  53.12766% {
    content: "49";
  }
  54.19149% {
    content: "50";
  }
  55.25532% {
    content: "51";
  }
  56.31915% {
    content: "52";
  }
  57.38298% {
    content: "53";
  }
  58.44681% {
    content: "54";
  }
  59.51064% {
    content: "55";
  }
  60.57447% {
    content: "56";
  }
  61.6383% {
    content: "57";
  }
  62.70213% {
    content: "58";
  }
  63.76596% {
    content: "59";
  }
  64.82979% {
    content: "60";
  }
  65.89362% {
    content: "61";
  }
  66.95745% {
    content: "62";
  }
  68.02128% {
    content: "63";
  }
  69.08511% {
    content: "64";
  }
  70.14894% {
    content: "65";
  }
  71.21277% {
    content: "66";
  }
  72.2766% {
    content: "67";
  }
  73.34043% {
    content: "68";
  }
  74.40426% {
    content: "69";
  }
  75.46809% {
    content: "70";
  }
  76.53191% {
    content: "71";
  }
  77.59574% {
    content: "72";
  }
  78.65957% {
    content: "73";
  }
  79.7234% {
    content: "74";
  }
  80.78723% {
    content: "75";
  }
  81.85106% {
    content: "76";
  }
  82.91489% {
    content: "77";
  }
  83.97872% {
    content: "78";
  }
  85.04255% {
    content: "79";
  }
  86.10638% {
    content: "80";
  }
  87.17021% {
    content: "81";
  }
  88.23404% {
    content: "82";
  }
  89.29787% {
    content: "83";
  }
  90.3617% {
    content: "84";
  }
  91.42553% {
    content: "85";
  }
  92.48936% {
    content: "86";
  }
  93.55319% {
    content: "87";
  }
  94.61702% {
    content: "88";
  }
  95.68085% {
    content: "89";
  }
  96.74468% {
    content: "90";
  }
  97.80851% {
    content: "91";
  }
  98.87234% {
    content: "92";
  }
  99.93617% {
    content: "93";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-95 {
  0% {
    content: "0";
  }
  2.05263% {
    content: "1";
  }
  3.10526% {
    content: "2";
  }
  4.15789% {
    content: "3";
  }
  5.21053% {
    content: "4";
  }
  6.26316% {
    content: "5";
  }
  7.31579% {
    content: "6";
  }
  8.36842% {
    content: "7";
  }
  9.42105% {
    content: "8";
  }
  10.47368% {
    content: "9";
  }
  11.52632% {
    content: "10";
  }
  12.57895% {
    content: "11";
  }
  13.63158% {
    content: "12";
  }
  14.68421% {
    content: "13";
  }
  15.73684% {
    content: "14";
  }
  16.78947% {
    content: "15";
  }
  17.84211% {
    content: "16";
  }
  18.89474% {
    content: "17";
  }
  19.94737% {
    content: "18";
  }
  21% {
    content: "19";
  }
  22.05263% {
    content: "20";
  }
  23.10526% {
    content: "21";
  }
  24.15789% {
    content: "22";
  }
  25.21053% {
    content: "23";
  }
  26.26316% {
    content: "24";
  }
  27.31579% {
    content: "25";
  }
  28.36842% {
    content: "26";
  }
  29.42105% {
    content: "27";
  }
  30.47368% {
    content: "28";
  }
  31.52632% {
    content: "29";
  }
  32.57895% {
    content: "30";
  }
  33.63158% {
    content: "31";
  }
  34.68421% {
    content: "32";
  }
  35.73684% {
    content: "33";
  }
  36.78947% {
    content: "34";
  }
  37.84211% {
    content: "35";
  }
  38.89474% {
    content: "36";
  }
  39.94737% {
    content: "37";
  }
  41% {
    content: "38";
  }
  42.05263% {
    content: "39";
  }
  43.10526% {
    content: "40";
  }
  44.15789% {
    content: "41";
  }
  45.21053% {
    content: "42";
  }
  46.26316% {
    content: "43";
  }
  47.31579% {
    content: "44";
  }
  48.36842% {
    content: "45";
  }
  49.42105% {
    content: "46";
  }
  50.47368% {
    content: "47";
  }
  51.52632% {
    content: "48";
  }
  52.57895% {
    content: "49";
  }
  53.63158% {
    content: "50";
  }
  54.68421% {
    content: "51";
  }
  55.73684% {
    content: "52";
  }
  56.78947% {
    content: "53";
  }
  57.84211% {
    content: "54";
  }
  58.89474% {
    content: "55";
  }
  59.94737% {
    content: "56";
  }
  61% {
    content: "57";
  }
  62.05263% {
    content: "58";
  }
  63.10526% {
    content: "59";
  }
  64.15789% {
    content: "60";
  }
  65.21053% {
    content: "61";
  }
  66.26316% {
    content: "62";
  }
  67.31579% {
    content: "63";
  }
  68.36842% {
    content: "64";
  }
  69.42105% {
    content: "65";
  }
  70.47368% {
    content: "66";
  }
  71.52632% {
    content: "67";
  }
  72.57895% {
    content: "68";
  }
  73.63158% {
    content: "69";
  }
  74.68421% {
    content: "70";
  }
  75.73684% {
    content: "71";
  }
  76.78947% {
    content: "72";
  }
  77.84211% {
    content: "73";
  }
  78.89474% {
    content: "74";
  }
  79.94737% {
    content: "75";
  }
  81% {
    content: "76";
  }
  82.05263% {
    content: "77";
  }
  83.10526% {
    content: "78";
  }
  84.15789% {
    content: "79";
  }
  85.21053% {
    content: "80";
  }
  86.26316% {
    content: "81";
  }
  87.31579% {
    content: "82";
  }
  88.36842% {
    content: "83";
  }
  89.42105% {
    content: "84";
  }
  90.47368% {
    content: "85";
  }
  91.52632% {
    content: "86";
  }
  92.57895% {
    content: "87";
  }
  93.63158% {
    content: "88";
  }
  94.68421% {
    content: "89";
  }
  95.73684% {
    content: "90";
  }
  96.78947% {
    content: "91";
  }
  97.84211% {
    content: "92";
  }
  98.89474% {
    content: "93";
  }
  99.94737% {
    content: "94";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-95 {
  0% {
    content: "0";
  }
  2.05263% {
    content: "1";
  }
  3.10526% {
    content: "2";
  }
  4.15789% {
    content: "3";
  }
  5.21053% {
    content: "4";
  }
  6.26316% {
    content: "5";
  }
  7.31579% {
    content: "6";
  }
  8.36842% {
    content: "7";
  }
  9.42105% {
    content: "8";
  }
  10.47368% {
    content: "9";
  }
  11.52632% {
    content: "10";
  }
  12.57895% {
    content: "11";
  }
  13.63158% {
    content: "12";
  }
  14.68421% {
    content: "13";
  }
  15.73684% {
    content: "14";
  }
  16.78947% {
    content: "15";
  }
  17.84211% {
    content: "16";
  }
  18.89474% {
    content: "17";
  }
  19.94737% {
    content: "18";
  }
  21% {
    content: "19";
  }
  22.05263% {
    content: "20";
  }
  23.10526% {
    content: "21";
  }
  24.15789% {
    content: "22";
  }
  25.21053% {
    content: "23";
  }
  26.26316% {
    content: "24";
  }
  27.31579% {
    content: "25";
  }
  28.36842% {
    content: "26";
  }
  29.42105% {
    content: "27";
  }
  30.47368% {
    content: "28";
  }
  31.52632% {
    content: "29";
  }
  32.57895% {
    content: "30";
  }
  33.63158% {
    content: "31";
  }
  34.68421% {
    content: "32";
  }
  35.73684% {
    content: "33";
  }
  36.78947% {
    content: "34";
  }
  37.84211% {
    content: "35";
  }
  38.89474% {
    content: "36";
  }
  39.94737% {
    content: "37";
  }
  41% {
    content: "38";
  }
  42.05263% {
    content: "39";
  }
  43.10526% {
    content: "40";
  }
  44.15789% {
    content: "41";
  }
  45.21053% {
    content: "42";
  }
  46.26316% {
    content: "43";
  }
  47.31579% {
    content: "44";
  }
  48.36842% {
    content: "45";
  }
  49.42105% {
    content: "46";
  }
  50.47368% {
    content: "47";
  }
  51.52632% {
    content: "48";
  }
  52.57895% {
    content: "49";
  }
  53.63158% {
    content: "50";
  }
  54.68421% {
    content: "51";
  }
  55.73684% {
    content: "52";
  }
  56.78947% {
    content: "53";
  }
  57.84211% {
    content: "54";
  }
  58.89474% {
    content: "55";
  }
  59.94737% {
    content: "56";
  }
  61% {
    content: "57";
  }
  62.05263% {
    content: "58";
  }
  63.10526% {
    content: "59";
  }
  64.15789% {
    content: "60";
  }
  65.21053% {
    content: "61";
  }
  66.26316% {
    content: "62";
  }
  67.31579% {
    content: "63";
  }
  68.36842% {
    content: "64";
  }
  69.42105% {
    content: "65";
  }
  70.47368% {
    content: "66";
  }
  71.52632% {
    content: "67";
  }
  72.57895% {
    content: "68";
  }
  73.63158% {
    content: "69";
  }
  74.68421% {
    content: "70";
  }
  75.73684% {
    content: "71";
  }
  76.78947% {
    content: "72";
  }
  77.84211% {
    content: "73";
  }
  78.89474% {
    content: "74";
  }
  79.94737% {
    content: "75";
  }
  81% {
    content: "76";
  }
  82.05263% {
    content: "77";
  }
  83.10526% {
    content: "78";
  }
  84.15789% {
    content: "79";
  }
  85.21053% {
    content: "80";
  }
  86.26316% {
    content: "81";
  }
  87.31579% {
    content: "82";
  }
  88.36842% {
    content: "83";
  }
  89.42105% {
    content: "84";
  }
  90.47368% {
    content: "85";
  }
  91.52632% {
    content: "86";
  }
  92.57895% {
    content: "87";
  }
  93.63158% {
    content: "88";
  }
  94.68421% {
    content: "89";
  }
  95.73684% {
    content: "90";
  }
  96.78947% {
    content: "91";
  }
  97.84211% {
    content: "92";
  }
  98.89474% {
    content: "93";
  }
  99.94737% {
    content: "94";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-96 {
  0% {
    content: "0";
  }
  2.04167% {
    content: "1";
  }
  3.08333% {
    content: "2";
  }
  4.125% {
    content: "3";
  }
  5.16667% {
    content: "4";
  }
  6.20833% {
    content: "5";
  }
  7.25% {
    content: "6";
  }
  8.29167% {
    content: "7";
  }
  9.33333% {
    content: "8";
  }
  10.375% {
    content: "9";
  }
  11.41667% {
    content: "10";
  }
  12.45833% {
    content: "11";
  }
  13.5% {
    content: "12";
  }
  14.54167% {
    content: "13";
  }
  15.58333% {
    content: "14";
  }
  16.625% {
    content: "15";
  }
  17.66667% {
    content: "16";
  }
  18.70833% {
    content: "17";
  }
  19.75% {
    content: "18";
  }
  20.79167% {
    content: "19";
  }
  21.83333% {
    content: "20";
  }
  22.875% {
    content: "21";
  }
  23.91667% {
    content: "22";
  }
  24.95833% {
    content: "23";
  }
  26% {
    content: "24";
  }
  27.04167% {
    content: "25";
  }
  28.08333% {
    content: "26";
  }
  29.125% {
    content: "27";
  }
  30.16667% {
    content: "28";
  }
  31.20833% {
    content: "29";
  }
  32.25% {
    content: "30";
  }
  33.29167% {
    content: "31";
  }
  34.33333% {
    content: "32";
  }
  35.375% {
    content: "33";
  }
  36.41667% {
    content: "34";
  }
  37.45833% {
    content: "35";
  }
  38.5% {
    content: "36";
  }
  39.54167% {
    content: "37";
  }
  40.58333% {
    content: "38";
  }
  41.625% {
    content: "39";
  }
  42.66667% {
    content: "40";
  }
  43.70833% {
    content: "41";
  }
  44.75% {
    content: "42";
  }
  45.79167% {
    content: "43";
  }
  46.83333% {
    content: "44";
  }
  47.875% {
    content: "45";
  }
  48.91667% {
    content: "46";
  }
  49.95833% {
    content: "47";
  }
  51% {
    content: "48";
  }
  52.04167% {
    content: "49";
  }
  53.08333% {
    content: "50";
  }
  54.125% {
    content: "51";
  }
  55.16667% {
    content: "52";
  }
  56.20833% {
    content: "53";
  }
  57.25% {
    content: "54";
  }
  58.29167% {
    content: "55";
  }
  59.33333% {
    content: "56";
  }
  60.375% {
    content: "57";
  }
  61.41667% {
    content: "58";
  }
  62.45833% {
    content: "59";
  }
  63.5% {
    content: "60";
  }
  64.54167% {
    content: "61";
  }
  65.58333% {
    content: "62";
  }
  66.625% {
    content: "63";
  }
  67.66667% {
    content: "64";
  }
  68.70833% {
    content: "65";
  }
  69.75% {
    content: "66";
  }
  70.79167% {
    content: "67";
  }
  71.83333% {
    content: "68";
  }
  72.875% {
    content: "69";
  }
  73.91667% {
    content: "70";
  }
  74.95833% {
    content: "71";
  }
  76% {
    content: "72";
  }
  77.04167% {
    content: "73";
  }
  78.08333% {
    content: "74";
  }
  79.125% {
    content: "75";
  }
  80.16667% {
    content: "76";
  }
  81.20833% {
    content: "77";
  }
  82.25% {
    content: "78";
  }
  83.29167% {
    content: "79";
  }
  84.33333% {
    content: "80";
  }
  85.375% {
    content: "81";
  }
  86.41667% {
    content: "82";
  }
  87.45833% {
    content: "83";
  }
  88.5% {
    content: "84";
  }
  89.54167% {
    content: "85";
  }
  90.58333% {
    content: "86";
  }
  91.625% {
    content: "87";
  }
  92.66667% {
    content: "88";
  }
  93.70833% {
    content: "89";
  }
  94.75% {
    content: "90";
  }
  95.79167% {
    content: "91";
  }
  96.83333% {
    content: "92";
  }
  97.875% {
    content: "93";
  }
  98.91667% {
    content: "94";
  }
  99.95833% {
    content: "95";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-96 {
  0% {
    content: "0";
  }
  2.04167% {
    content: "1";
  }
  3.08333% {
    content: "2";
  }
  4.125% {
    content: "3";
  }
  5.16667% {
    content: "4";
  }
  6.20833% {
    content: "5";
  }
  7.25% {
    content: "6";
  }
  8.29167% {
    content: "7";
  }
  9.33333% {
    content: "8";
  }
  10.375% {
    content: "9";
  }
  11.41667% {
    content: "10";
  }
  12.45833% {
    content: "11";
  }
  13.5% {
    content: "12";
  }
  14.54167% {
    content: "13";
  }
  15.58333% {
    content: "14";
  }
  16.625% {
    content: "15";
  }
  17.66667% {
    content: "16";
  }
  18.70833% {
    content: "17";
  }
  19.75% {
    content: "18";
  }
  20.79167% {
    content: "19";
  }
  21.83333% {
    content: "20";
  }
  22.875% {
    content: "21";
  }
  23.91667% {
    content: "22";
  }
  24.95833% {
    content: "23";
  }
  26% {
    content: "24";
  }
  27.04167% {
    content: "25";
  }
  28.08333% {
    content: "26";
  }
  29.125% {
    content: "27";
  }
  30.16667% {
    content: "28";
  }
  31.20833% {
    content: "29";
  }
  32.25% {
    content: "30";
  }
  33.29167% {
    content: "31";
  }
  34.33333% {
    content: "32";
  }
  35.375% {
    content: "33";
  }
  36.41667% {
    content: "34";
  }
  37.45833% {
    content: "35";
  }
  38.5% {
    content: "36";
  }
  39.54167% {
    content: "37";
  }
  40.58333% {
    content: "38";
  }
  41.625% {
    content: "39";
  }
  42.66667% {
    content: "40";
  }
  43.70833% {
    content: "41";
  }
  44.75% {
    content: "42";
  }
  45.79167% {
    content: "43";
  }
  46.83333% {
    content: "44";
  }
  47.875% {
    content: "45";
  }
  48.91667% {
    content: "46";
  }
  49.95833% {
    content: "47";
  }
  51% {
    content: "48";
  }
  52.04167% {
    content: "49";
  }
  53.08333% {
    content: "50";
  }
  54.125% {
    content: "51";
  }
  55.16667% {
    content: "52";
  }
  56.20833% {
    content: "53";
  }
  57.25% {
    content: "54";
  }
  58.29167% {
    content: "55";
  }
  59.33333% {
    content: "56";
  }
  60.375% {
    content: "57";
  }
  61.41667% {
    content: "58";
  }
  62.45833% {
    content: "59";
  }
  63.5% {
    content: "60";
  }
  64.54167% {
    content: "61";
  }
  65.58333% {
    content: "62";
  }
  66.625% {
    content: "63";
  }
  67.66667% {
    content: "64";
  }
  68.70833% {
    content: "65";
  }
  69.75% {
    content: "66";
  }
  70.79167% {
    content: "67";
  }
  71.83333% {
    content: "68";
  }
  72.875% {
    content: "69";
  }
  73.91667% {
    content: "70";
  }
  74.95833% {
    content: "71";
  }
  76% {
    content: "72";
  }
  77.04167% {
    content: "73";
  }
  78.08333% {
    content: "74";
  }
  79.125% {
    content: "75";
  }
  80.16667% {
    content: "76";
  }
  81.20833% {
    content: "77";
  }
  82.25% {
    content: "78";
  }
  83.29167% {
    content: "79";
  }
  84.33333% {
    content: "80";
  }
  85.375% {
    content: "81";
  }
  86.41667% {
    content: "82";
  }
  87.45833% {
    content: "83";
  }
  88.5% {
    content: "84";
  }
  89.54167% {
    content: "85";
  }
  90.58333% {
    content: "86";
  }
  91.625% {
    content: "87";
  }
  92.66667% {
    content: "88";
  }
  93.70833% {
    content: "89";
  }
  94.75% {
    content: "90";
  }
  95.79167% {
    content: "91";
  }
  96.83333% {
    content: "92";
  }
  97.875% {
    content: "93";
  }
  98.91667% {
    content: "94";
  }
  99.95833% {
    content: "95";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-97 {
  0% {
    content: "0";
  }
  2.03093% {
    content: "1";
  }
  3.06186% {
    content: "2";
  }
  4.09278% {
    content: "3";
  }
  5.12371% {
    content: "4";
  }
  6.15464% {
    content: "5";
  }
  7.18557% {
    content: "6";
  }
  8.21649% {
    content: "7";
  }
  9.24742% {
    content: "8";
  }
  10.27835% {
    content: "9";
  }
  11.30928% {
    content: "10";
  }
  12.34021% {
    content: "11";
  }
  13.37113% {
    content: "12";
  }
  14.40206% {
    content: "13";
  }
  15.43299% {
    content: "14";
  }
  16.46392% {
    content: "15";
  }
  17.49485% {
    content: "16";
  }
  18.52577% {
    content: "17";
  }
  19.5567% {
    content: "18";
  }
  20.58763% {
    content: "19";
  }
  21.61856% {
    content: "20";
  }
  22.64948% {
    content: "21";
  }
  23.68041% {
    content: "22";
  }
  24.71134% {
    content: "23";
  }
  25.74227% {
    content: "24";
  }
  26.7732% {
    content: "25";
  }
  27.80412% {
    content: "26";
  }
  28.83505% {
    content: "27";
  }
  29.86598% {
    content: "28";
  }
  30.89691% {
    content: "29";
  }
  31.92784% {
    content: "30";
  }
  32.95876% {
    content: "31";
  }
  33.98969% {
    content: "32";
  }
  35.02062% {
    content: "33";
  }
  36.05155% {
    content: "34";
  }
  37.08247% {
    content: "35";
  }
  38.1134% {
    content: "36";
  }
  39.14433% {
    content: "37";
  }
  40.17526% {
    content: "38";
  }
  41.20619% {
    content: "39";
  }
  42.23711% {
    content: "40";
  }
  43.26804% {
    content: "41";
  }
  44.29897% {
    content: "42";
  }
  45.3299% {
    content: "43";
  }
  46.36082% {
    content: "44";
  }
  47.39175% {
    content: "45";
  }
  48.42268% {
    content: "46";
  }
  49.45361% {
    content: "47";
  }
  50.48454% {
    content: "48";
  }
  51.51546% {
    content: "49";
  }
  52.54639% {
    content: "50";
  }
  53.57732% {
    content: "51";
  }
  54.60825% {
    content: "52";
  }
  55.63918% {
    content: "53";
  }
  56.6701% {
    content: "54";
  }
  57.70103% {
    content: "55";
  }
  58.73196% {
    content: "56";
  }
  59.76289% {
    content: "57";
  }
  60.79381% {
    content: "58";
  }
  61.82474% {
    content: "59";
  }
  62.85567% {
    content: "60";
  }
  63.8866% {
    content: "61";
  }
  64.91753% {
    content: "62";
  }
  65.94845% {
    content: "63";
  }
  66.97938% {
    content: "64";
  }
  68.01031% {
    content: "65";
  }
  69.04124% {
    content: "66";
  }
  70.07216% {
    content: "67";
  }
  71.10309% {
    content: "68";
  }
  72.13402% {
    content: "69";
  }
  73.16495% {
    content: "70";
  }
  74.19588% {
    content: "71";
  }
  75.2268% {
    content: "72";
  }
  76.25773% {
    content: "73";
  }
  77.28866% {
    content: "74";
  }
  78.31959% {
    content: "75";
  }
  79.35052% {
    content: "76";
  }
  80.38144% {
    content: "77";
  }
  81.41237% {
    content: "78";
  }
  82.4433% {
    content: "79";
  }
  83.47423% {
    content: "80";
  }
  84.50515% {
    content: "81";
  }
  85.53608% {
    content: "82";
  }
  86.56701% {
    content: "83";
  }
  87.59794% {
    content: "84";
  }
  88.62887% {
    content: "85";
  }
  89.65979% {
    content: "86";
  }
  90.69072% {
    content: "87";
  }
  91.72165% {
    content: "88";
  }
  92.75258% {
    content: "89";
  }
  93.78351% {
    content: "90";
  }
  94.81443% {
    content: "91";
  }
  95.84536% {
    content: "92";
  }
  96.87629% {
    content: "93";
  }
  97.90722% {
    content: "94";
  }
  98.93814% {
    content: "95";
  }
  99.96907% {
    content: "96";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-97 {
  0% {
    content: "0";
  }
  2.03093% {
    content: "1";
  }
  3.06186% {
    content: "2";
  }
  4.09278% {
    content: "3";
  }
  5.12371% {
    content: "4";
  }
  6.15464% {
    content: "5";
  }
  7.18557% {
    content: "6";
  }
  8.21649% {
    content: "7";
  }
  9.24742% {
    content: "8";
  }
  10.27835% {
    content: "9";
  }
  11.30928% {
    content: "10";
  }
  12.34021% {
    content: "11";
  }
  13.37113% {
    content: "12";
  }
  14.40206% {
    content: "13";
  }
  15.43299% {
    content: "14";
  }
  16.46392% {
    content: "15";
  }
  17.49485% {
    content: "16";
  }
  18.52577% {
    content: "17";
  }
  19.5567% {
    content: "18";
  }
  20.58763% {
    content: "19";
  }
  21.61856% {
    content: "20";
  }
  22.64948% {
    content: "21";
  }
  23.68041% {
    content: "22";
  }
  24.71134% {
    content: "23";
  }
  25.74227% {
    content: "24";
  }
  26.7732% {
    content: "25";
  }
  27.80412% {
    content: "26";
  }
  28.83505% {
    content: "27";
  }
  29.86598% {
    content: "28";
  }
  30.89691% {
    content: "29";
  }
  31.92784% {
    content: "30";
  }
  32.95876% {
    content: "31";
  }
  33.98969% {
    content: "32";
  }
  35.02062% {
    content: "33";
  }
  36.05155% {
    content: "34";
  }
  37.08247% {
    content: "35";
  }
  38.1134% {
    content: "36";
  }
  39.14433% {
    content: "37";
  }
  40.17526% {
    content: "38";
  }
  41.20619% {
    content: "39";
  }
  42.23711% {
    content: "40";
  }
  43.26804% {
    content: "41";
  }
  44.29897% {
    content: "42";
  }
  45.3299% {
    content: "43";
  }
  46.36082% {
    content: "44";
  }
  47.39175% {
    content: "45";
  }
  48.42268% {
    content: "46";
  }
  49.45361% {
    content: "47";
  }
  50.48454% {
    content: "48";
  }
  51.51546% {
    content: "49";
  }
  52.54639% {
    content: "50";
  }
  53.57732% {
    content: "51";
  }
  54.60825% {
    content: "52";
  }
  55.63918% {
    content: "53";
  }
  56.6701% {
    content: "54";
  }
  57.70103% {
    content: "55";
  }
  58.73196% {
    content: "56";
  }
  59.76289% {
    content: "57";
  }
  60.79381% {
    content: "58";
  }
  61.82474% {
    content: "59";
  }
  62.85567% {
    content: "60";
  }
  63.8866% {
    content: "61";
  }
  64.91753% {
    content: "62";
  }
  65.94845% {
    content: "63";
  }
  66.97938% {
    content: "64";
  }
  68.01031% {
    content: "65";
  }
  69.04124% {
    content: "66";
  }
  70.07216% {
    content: "67";
  }
  71.10309% {
    content: "68";
  }
  72.13402% {
    content: "69";
  }
  73.16495% {
    content: "70";
  }
  74.19588% {
    content: "71";
  }
  75.2268% {
    content: "72";
  }
  76.25773% {
    content: "73";
  }
  77.28866% {
    content: "74";
  }
  78.31959% {
    content: "75";
  }
  79.35052% {
    content: "76";
  }
  80.38144% {
    content: "77";
  }
  81.41237% {
    content: "78";
  }
  82.4433% {
    content: "79";
  }
  83.47423% {
    content: "80";
  }
  84.50515% {
    content: "81";
  }
  85.53608% {
    content: "82";
  }
  86.56701% {
    content: "83";
  }
  87.59794% {
    content: "84";
  }
  88.62887% {
    content: "85";
  }
  89.65979% {
    content: "86";
  }
  90.69072% {
    content: "87";
  }
  91.72165% {
    content: "88";
  }
  92.75258% {
    content: "89";
  }
  93.78351% {
    content: "90";
  }
  94.81443% {
    content: "91";
  }
  95.84536% {
    content: "92";
  }
  96.87629% {
    content: "93";
  }
  97.90722% {
    content: "94";
  }
  98.93814% {
    content: "95";
  }
  99.96907% {
    content: "96";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-98 {
  0% {
    content: "0";
  }
  2.02041% {
    content: "1";
  }
  3.04082% {
    content: "2";
  }
  4.06122% {
    content: "3";
  }
  5.08163% {
    content: "4";
  }
  6.10204% {
    content: "5";
  }
  7.12245% {
    content: "6";
  }
  8.14286% {
    content: "7";
  }
  9.16327% {
    content: "8";
  }
  10.18367% {
    content: "9";
  }
  11.20408% {
    content: "10";
  }
  12.22449% {
    content: "11";
  }
  13.2449% {
    content: "12";
  }
  14.26531% {
    content: "13";
  }
  15.28571% {
    content: "14";
  }
  16.30612% {
    content: "15";
  }
  17.32653% {
    content: "16";
  }
  18.34694% {
    content: "17";
  }
  19.36735% {
    content: "18";
  }
  20.38776% {
    content: "19";
  }
  21.40816% {
    content: "20";
  }
  22.42857% {
    content: "21";
  }
  23.44898% {
    content: "22";
  }
  24.46939% {
    content: "23";
  }
  25.4898% {
    content: "24";
  }
  26.5102% {
    content: "25";
  }
  27.53061% {
    content: "26";
  }
  28.55102% {
    content: "27";
  }
  29.57143% {
    content: "28";
  }
  30.59184% {
    content: "29";
  }
  31.61224% {
    content: "30";
  }
  32.63265% {
    content: "31";
  }
  33.65306% {
    content: "32";
  }
  34.67347% {
    content: "33";
  }
  35.69388% {
    content: "34";
  }
  36.71429% {
    content: "35";
  }
  37.73469% {
    content: "36";
  }
  38.7551% {
    content: "37";
  }
  39.77551% {
    content: "38";
  }
  40.79592% {
    content: "39";
  }
  41.81633% {
    content: "40";
  }
  42.83673% {
    content: "41";
  }
  43.85714% {
    content: "42";
  }
  44.87755% {
    content: "43";
  }
  45.89796% {
    content: "44";
  }
  46.91837% {
    content: "45";
  }
  47.93878% {
    content: "46";
  }
  48.95918% {
    content: "47";
  }
  49.97959% {
    content: "48";
  }
  51% {
    content: "49";
  }
  52.02041% {
    content: "50";
  }
  53.04082% {
    content: "51";
  }
  54.06122% {
    content: "52";
  }
  55.08163% {
    content: "53";
  }
  56.10204% {
    content: "54";
  }
  57.12245% {
    content: "55";
  }
  58.14286% {
    content: "56";
  }
  59.16327% {
    content: "57";
  }
  60.18367% {
    content: "58";
  }
  61.20408% {
    content: "59";
  }
  62.22449% {
    content: "60";
  }
  63.2449% {
    content: "61";
  }
  64.26531% {
    content: "62";
  }
  65.28571% {
    content: "63";
  }
  66.30612% {
    content: "64";
  }
  67.32653% {
    content: "65";
  }
  68.34694% {
    content: "66";
  }
  69.36735% {
    content: "67";
  }
  70.38776% {
    content: "68";
  }
  71.40816% {
    content: "69";
  }
  72.42857% {
    content: "70";
  }
  73.44898% {
    content: "71";
  }
  74.46939% {
    content: "72";
  }
  75.4898% {
    content: "73";
  }
  76.5102% {
    content: "74";
  }
  77.53061% {
    content: "75";
  }
  78.55102% {
    content: "76";
  }
  79.57143% {
    content: "77";
  }
  80.59184% {
    content: "78";
  }
  81.61224% {
    content: "79";
  }
  82.63265% {
    content: "80";
  }
  83.65306% {
    content: "81";
  }
  84.67347% {
    content: "82";
  }
  85.69388% {
    content: "83";
  }
  86.71429% {
    content: "84";
  }
  87.73469% {
    content: "85";
  }
  88.7551% {
    content: "86";
  }
  89.77551% {
    content: "87";
  }
  90.79592% {
    content: "88";
  }
  91.81633% {
    content: "89";
  }
  92.83673% {
    content: "90";
  }
  93.85714% {
    content: "91";
  }
  94.87755% {
    content: "92";
  }
  95.89796% {
    content: "93";
  }
  96.91837% {
    content: "94";
  }
  97.93878% {
    content: "95";
  }
  98.95918% {
    content: "96";
  }
  99.97959% {
    content: "97";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-98 {
  0% {
    content: "0";
  }
  2.02041% {
    content: "1";
  }
  3.04082% {
    content: "2";
  }
  4.06122% {
    content: "3";
  }
  5.08163% {
    content: "4";
  }
  6.10204% {
    content: "5";
  }
  7.12245% {
    content: "6";
  }
  8.14286% {
    content: "7";
  }
  9.16327% {
    content: "8";
  }
  10.18367% {
    content: "9";
  }
  11.20408% {
    content: "10";
  }
  12.22449% {
    content: "11";
  }
  13.2449% {
    content: "12";
  }
  14.26531% {
    content: "13";
  }
  15.28571% {
    content: "14";
  }
  16.30612% {
    content: "15";
  }
  17.32653% {
    content: "16";
  }
  18.34694% {
    content: "17";
  }
  19.36735% {
    content: "18";
  }
  20.38776% {
    content: "19";
  }
  21.40816% {
    content: "20";
  }
  22.42857% {
    content: "21";
  }
  23.44898% {
    content: "22";
  }
  24.46939% {
    content: "23";
  }
  25.4898% {
    content: "24";
  }
  26.5102% {
    content: "25";
  }
  27.53061% {
    content: "26";
  }
  28.55102% {
    content: "27";
  }
  29.57143% {
    content: "28";
  }
  30.59184% {
    content: "29";
  }
  31.61224% {
    content: "30";
  }
  32.63265% {
    content: "31";
  }
  33.65306% {
    content: "32";
  }
  34.67347% {
    content: "33";
  }
  35.69388% {
    content: "34";
  }
  36.71429% {
    content: "35";
  }
  37.73469% {
    content: "36";
  }
  38.7551% {
    content: "37";
  }
  39.77551% {
    content: "38";
  }
  40.79592% {
    content: "39";
  }
  41.81633% {
    content: "40";
  }
  42.83673% {
    content: "41";
  }
  43.85714% {
    content: "42";
  }
  44.87755% {
    content: "43";
  }
  45.89796% {
    content: "44";
  }
  46.91837% {
    content: "45";
  }
  47.93878% {
    content: "46";
  }
  48.95918% {
    content: "47";
  }
  49.97959% {
    content: "48";
  }
  51% {
    content: "49";
  }
  52.02041% {
    content: "50";
  }
  53.04082% {
    content: "51";
  }
  54.06122% {
    content: "52";
  }
  55.08163% {
    content: "53";
  }
  56.10204% {
    content: "54";
  }
  57.12245% {
    content: "55";
  }
  58.14286% {
    content: "56";
  }
  59.16327% {
    content: "57";
  }
  60.18367% {
    content: "58";
  }
  61.20408% {
    content: "59";
  }
  62.22449% {
    content: "60";
  }
  63.2449% {
    content: "61";
  }
  64.26531% {
    content: "62";
  }
  65.28571% {
    content: "63";
  }
  66.30612% {
    content: "64";
  }
  67.32653% {
    content: "65";
  }
  68.34694% {
    content: "66";
  }
  69.36735% {
    content: "67";
  }
  70.38776% {
    content: "68";
  }
  71.40816% {
    content: "69";
  }
  72.42857% {
    content: "70";
  }
  73.44898% {
    content: "71";
  }
  74.46939% {
    content: "72";
  }
  75.4898% {
    content: "73";
  }
  76.5102% {
    content: "74";
  }
  77.53061% {
    content: "75";
  }
  78.55102% {
    content: "76";
  }
  79.57143% {
    content: "77";
  }
  80.59184% {
    content: "78";
  }
  81.61224% {
    content: "79";
  }
  82.63265% {
    content: "80";
  }
  83.65306% {
    content: "81";
  }
  84.67347% {
    content: "82";
  }
  85.69388% {
    content: "83";
  }
  86.71429% {
    content: "84";
  }
  87.73469% {
    content: "85";
  }
  88.7551% {
    content: "86";
  }
  89.77551% {
    content: "87";
  }
  90.79592% {
    content: "88";
  }
  91.81633% {
    content: "89";
  }
  92.83673% {
    content: "90";
  }
  93.85714% {
    content: "91";
  }
  94.87755% {
    content: "92";
  }
  95.89796% {
    content: "93";
  }
  96.91837% {
    content: "94";
  }
  97.93878% {
    content: "95";
  }
  98.95918% {
    content: "96";
  }
  99.97959% {
    content: "97";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-99 {
  0% {
    content: "0";
  }
  2.0101% {
    content: "1";
  }
  3.0202% {
    content: "2";
  }
  4.0303% {
    content: "3";
  }
  5.0404% {
    content: "4";
  }
  6.05051% {
    content: "5";
  }
  7.06061% {
    content: "6";
  }
  8.07071% {
    content: "7";
  }
  9.08081% {
    content: "8";
  }
  10.09091% {
    content: "9";
  }
  11.10101% {
    content: "10";
  }
  12.11111% {
    content: "11";
  }
  13.12121% {
    content: "12";
  }
  14.13131% {
    content: "13";
  }
  15.14141% {
    content: "14";
  }
  16.15152% {
    content: "15";
  }
  17.16162% {
    content: "16";
  }
  18.17172% {
    content: "17";
  }
  19.18182% {
    content: "18";
  }
  20.19192% {
    content: "19";
  }
  21.20202% {
    content: "20";
  }
  22.21212% {
    content: "21";
  }
  23.22222% {
    content: "22";
  }
  24.23232% {
    content: "23";
  }
  25.24242% {
    content: "24";
  }
  26.25253% {
    content: "25";
  }
  27.26263% {
    content: "26";
  }
  28.27273% {
    content: "27";
  }
  29.28283% {
    content: "28";
  }
  30.29293% {
    content: "29";
  }
  31.30303% {
    content: "30";
  }
  32.31313% {
    content: "31";
  }
  33.32323% {
    content: "32";
  }
  34.33333% {
    content: "33";
  }
  35.34343% {
    content: "34";
  }
  36.35354% {
    content: "35";
  }
  37.36364% {
    content: "36";
  }
  38.37374% {
    content: "37";
  }
  39.38384% {
    content: "38";
  }
  40.39394% {
    content: "39";
  }
  41.40404% {
    content: "40";
  }
  42.41414% {
    content: "41";
  }
  43.42424% {
    content: "42";
  }
  44.43434% {
    content: "43";
  }
  45.44444% {
    content: "44";
  }
  46.45455% {
    content: "45";
  }
  47.46465% {
    content: "46";
  }
  48.47475% {
    content: "47";
  }
  49.48485% {
    content: "48";
  }
  50.49495% {
    content: "49";
  }
  51.50505% {
    content: "50";
  }
  52.51515% {
    content: "51";
  }
  53.52525% {
    content: "52";
  }
  54.53535% {
    content: "53";
  }
  55.54545% {
    content: "54";
  }
  56.55556% {
    content: "55";
  }
  57.56566% {
    content: "56";
  }
  58.57576% {
    content: "57";
  }
  59.58586% {
    content: "58";
  }
  60.59596% {
    content: "59";
  }
  61.60606% {
    content: "60";
  }
  62.61616% {
    content: "61";
  }
  63.62626% {
    content: "62";
  }
  64.63636% {
    content: "63";
  }
  65.64646% {
    content: "64";
  }
  66.65657% {
    content: "65";
  }
  67.66667% {
    content: "66";
  }
  68.67677% {
    content: "67";
  }
  69.68687% {
    content: "68";
  }
  70.69697% {
    content: "69";
  }
  71.70707% {
    content: "70";
  }
  72.71717% {
    content: "71";
  }
  73.72727% {
    content: "72";
  }
  74.73737% {
    content: "73";
  }
  75.74747% {
    content: "74";
  }
  76.75758% {
    content: "75";
  }
  77.76768% {
    content: "76";
  }
  78.77778% {
    content: "77";
  }
  79.78788% {
    content: "78";
  }
  80.79798% {
    content: "79";
  }
  81.80808% {
    content: "80";
  }
  82.81818% {
    content: "81";
  }
  83.82828% {
    content: "82";
  }
  84.83838% {
    content: "83";
  }
  85.84848% {
    content: "84";
  }
  86.85859% {
    content: "85";
  }
  87.86869% {
    content: "86";
  }
  88.87879% {
    content: "87";
  }
  89.88889% {
    content: "88";
  }
  90.89899% {
    content: "89";
  }
  91.90909% {
    content: "90";
  }
  92.91919% {
    content: "91";
  }
  93.92929% {
    content: "92";
  }
  94.93939% {
    content: "93";
  }
  95.94949% {
    content: "94";
  }
  96.9596% {
    content: "95";
  }
  97.9697% {
    content: "96";
  }
  98.9798% {
    content: "97";
  }
  99.9899% {
    content: "98";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-99 {
  0% {
    content: "0";
  }
  2.0101% {
    content: "1";
  }
  3.0202% {
    content: "2";
  }
  4.0303% {
    content: "3";
  }
  5.0404% {
    content: "4";
  }
  6.05051% {
    content: "5";
  }
  7.06061% {
    content: "6";
  }
  8.07071% {
    content: "7";
  }
  9.08081% {
    content: "8";
  }
  10.09091% {
    content: "9";
  }
  11.10101% {
    content: "10";
  }
  12.11111% {
    content: "11";
  }
  13.12121% {
    content: "12";
  }
  14.13131% {
    content: "13";
  }
  15.14141% {
    content: "14";
  }
  16.15152% {
    content: "15";
  }
  17.16162% {
    content: "16";
  }
  18.17172% {
    content: "17";
  }
  19.18182% {
    content: "18";
  }
  20.19192% {
    content: "19";
  }
  21.20202% {
    content: "20";
  }
  22.21212% {
    content: "21";
  }
  23.22222% {
    content: "22";
  }
  24.23232% {
    content: "23";
  }
  25.24242% {
    content: "24";
  }
  26.25253% {
    content: "25";
  }
  27.26263% {
    content: "26";
  }
  28.27273% {
    content: "27";
  }
  29.28283% {
    content: "28";
  }
  30.29293% {
    content: "29";
  }
  31.30303% {
    content: "30";
  }
  32.31313% {
    content: "31";
  }
  33.32323% {
    content: "32";
  }
  34.33333% {
    content: "33";
  }
  35.34343% {
    content: "34";
  }
  36.35354% {
    content: "35";
  }
  37.36364% {
    content: "36";
  }
  38.37374% {
    content: "37";
  }
  39.38384% {
    content: "38";
  }
  40.39394% {
    content: "39";
  }
  41.40404% {
    content: "40";
  }
  42.41414% {
    content: "41";
  }
  43.42424% {
    content: "42";
  }
  44.43434% {
    content: "43";
  }
  45.44444% {
    content: "44";
  }
  46.45455% {
    content: "45";
  }
  47.46465% {
    content: "46";
  }
  48.47475% {
    content: "47";
  }
  49.48485% {
    content: "48";
  }
  50.49495% {
    content: "49";
  }
  51.50505% {
    content: "50";
  }
  52.51515% {
    content: "51";
  }
  53.52525% {
    content: "52";
  }
  54.53535% {
    content: "53";
  }
  55.54545% {
    content: "54";
  }
  56.55556% {
    content: "55";
  }
  57.56566% {
    content: "56";
  }
  58.57576% {
    content: "57";
  }
  59.58586% {
    content: "58";
  }
  60.59596% {
    content: "59";
  }
  61.60606% {
    content: "60";
  }
  62.61616% {
    content: "61";
  }
  63.62626% {
    content: "62";
  }
  64.63636% {
    content: "63";
  }
  65.64646% {
    content: "64";
  }
  66.65657% {
    content: "65";
  }
  67.66667% {
    content: "66";
  }
  68.67677% {
    content: "67";
  }
  69.68687% {
    content: "68";
  }
  70.69697% {
    content: "69";
  }
  71.70707% {
    content: "70";
  }
  72.71717% {
    content: "71";
  }
  73.72727% {
    content: "72";
  }
  74.73737% {
    content: "73";
  }
  75.74747% {
    content: "74";
  }
  76.75758% {
    content: "75";
  }
  77.76768% {
    content: "76";
  }
  78.77778% {
    content: "77";
  }
  79.78788% {
    content: "78";
  }
  80.79798% {
    content: "79";
  }
  81.80808% {
    content: "80";
  }
  82.81818% {
    content: "81";
  }
  83.82828% {
    content: "82";
  }
  84.83838% {
    content: "83";
  }
  85.84848% {
    content: "84";
  }
  86.85859% {
    content: "85";
  }
  87.86869% {
    content: "86";
  }
  88.87879% {
    content: "87";
  }
  89.88889% {
    content: "88";
  }
  90.89899% {
    content: "89";
  }
  91.90909% {
    content: "90";
  }
  92.91919% {
    content: "91";
  }
  93.92929% {
    content: "92";
  }
  94.93939% {
    content: "93";
  }
  95.94949% {
    content: "94";
  }
  96.9596% {
    content: "95";
  }
  97.9697% {
    content: "96";
  }
  98.9798% {
    content: "97";
  }
  99.9899% {
    content: "98";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countup-100 {
  0% {
    content: "0";
  }
  2% {
    content: "1";
  }
  3% {
    content: "2";
  }
  4% {
    content: "3";
  }
  5% {
    content: "4";
  }
  6% {
    content: "5";
  }
  7% {
    content: "6";
  }
  8% {
    content: "7";
  }
  9% {
    content: "8";
  }
  10% {
    content: "9";
  }
  11% {
    content: "10";
  }
  12% {
    content: "11";
  }
  13% {
    content: "12";
  }
  14% {
    content: "13";
  }
  15% {
    content: "14";
  }
  16% {
    content: "15";
  }
  17% {
    content: "16";
  }
  18% {
    content: "17";
  }
  19% {
    content: "18";
  }
  20% {
    content: "19";
  }
  21% {
    content: "20";
  }
  22% {
    content: "21";
  }
  23% {
    content: "22";
  }
  24% {
    content: "23";
  }
  25% {
    content: "24";
  }
  26% {
    content: "25";
  }
  27% {
    content: "26";
  }
  28% {
    content: "27";
  }
  29% {
    content: "28";
  }
  30% {
    content: "29";
  }
  31% {
    content: "30";
  }
  32% {
    content: "31";
  }
  33% {
    content: "32";
  }
  34% {
    content: "33";
  }
  35% {
    content: "34";
  }
  36% {
    content: "35";
  }
  37% {
    content: "36";
  }
  38% {
    content: "37";
  }
  39% {
    content: "38";
  }
  40% {
    content: "39";
  }
  41% {
    content: "40";
  }
  42% {
    content: "41";
  }
  43% {
    content: "42";
  }
  44% {
    content: "43";
  }
  45% {
    content: "44";
  }
  46% {
    content: "45";
  }
  47% {
    content: "46";
  }
  48% {
    content: "47";
  }
  49% {
    content: "48";
  }
  50% {
    content: "49";
  }
  51% {
    content: "50";
  }
  52% {
    content: "51";
  }
  53% {
    content: "52";
  }
  54% {
    content: "53";
  }
  55% {
    content: "54";
  }
  56% {
    content: "55";
  }
  57% {
    content: "56";
  }
  58% {
    content: "57";
  }
  59% {
    content: "58";
  }
  60% {
    content: "59";
  }
  61% {
    content: "60";
  }
  62% {
    content: "61";
  }
  63% {
    content: "62";
  }
  64% {
    content: "63";
  }
  65% {
    content: "64";
  }
  66% {
    content: "65";
  }
  67% {
    content: "66";
  }
  68% {
    content: "67";
  }
  69% {
    content: "68";
  }
  70% {
    content: "69";
  }
  71% {
    content: "70";
  }
  72% {
    content: "71";
  }
  73% {
    content: "72";
  }
  74% {
    content: "73";
  }
  75% {
    content: "74";
  }
  76% {
    content: "75";
  }
  77% {
    content: "76";
  }
  78% {
    content: "77";
  }
  79% {
    content: "78";
  }
  80% {
    content: "79";
  }
  81% {
    content: "80";
  }
  82% {
    content: "81";
  }
  83% {
    content: "82";
  }
  84% {
    content: "83";
  }
  85% {
    content: "84";
  }
  86% {
    content: "85";
  }
  87% {
    content: "86";
  }
  88% {
    content: "87";
  }
  89% {
    content: "88";
  }
  90% {
    content: "89";
  }
  91% {
    content: "90";
  }
  92% {
    content: "91";
  }
  93% {
    content: "92";
  }
  94% {
    content: "93";
  }
  95% {
    content: "94";
  }
  96% {
    content: "95";
  }
  97% {
    content: "96";
  }
  98% {
    content: "97";
  }
  99% {
    content: "98";
  }
  100% {
    content: '';
    display: none;
  }
}

@keyframes bu-stat-donut-value-countdown-100 {
  0% {
    content: "0";
  }
  2% {
    content: "1";
  }
  3% {
    content: "2";
  }
  4% {
    content: "3";
  }
  5% {
    content: "4";
  }
  6% {
    content: "5";
  }
  7% {
    content: "6";
  }
  8% {
    content: "7";
  }
  9% {
    content: "8";
  }
  10% {
    content: "9";
  }
  11% {
    content: "10";
  }
  12% {
    content: "11";
  }
  13% {
    content: "12";
  }
  14% {
    content: "13";
  }
  15% {
    content: "14";
  }
  16% {
    content: "15";
  }
  17% {
    content: "16";
  }
  18% {
    content: "17";
  }
  19% {
    content: "18";
  }
  20% {
    content: "19";
  }
  21% {
    content: "20";
  }
  22% {
    content: "21";
  }
  23% {
    content: "22";
  }
  24% {
    content: "23";
  }
  25% {
    content: "24";
  }
  26% {
    content: "25";
  }
  27% {
    content: "26";
  }
  28% {
    content: "27";
  }
  29% {
    content: "28";
  }
  30% {
    content: "29";
  }
  31% {
    content: "30";
  }
  32% {
    content: "31";
  }
  33% {
    content: "32";
  }
  34% {
    content: "33";
  }
  35% {
    content: "34";
  }
  36% {
    content: "35";
  }
  37% {
    content: "36";
  }
  38% {
    content: "37";
  }
  39% {
    content: "38";
  }
  40% {
    content: "39";
  }
  41% {
    content: "40";
  }
  42% {
    content: "41";
  }
  43% {
    content: "42";
  }
  44% {
    content: "43";
  }
  45% {
    content: "44";
  }
  46% {
    content: "45";
  }
  47% {
    content: "46";
  }
  48% {
    content: "47";
  }
  49% {
    content: "48";
  }
  50% {
    content: "49";
  }
  51% {
    content: "50";
  }
  52% {
    content: "51";
  }
  53% {
    content: "52";
  }
  54% {
    content: "53";
  }
  55% {
    content: "54";
  }
  56% {
    content: "55";
  }
  57% {
    content: "56";
  }
  58% {
    content: "57";
  }
  59% {
    content: "58";
  }
  60% {
    content: "59";
  }
  61% {
    content: "60";
  }
  62% {
    content: "61";
  }
  63% {
    content: "62";
  }
  64% {
    content: "63";
  }
  65% {
    content: "64";
  }
  66% {
    content: "65";
  }
  67% {
    content: "66";
  }
  68% {
    content: "67";
  }
  69% {
    content: "68";
  }
  70% {
    content: "69";
  }
  71% {
    content: "70";
  }
  72% {
    content: "71";
  }
  73% {
    content: "72";
  }
  74% {
    content: "73";
  }
  75% {
    content: "74";
  }
  76% {
    content: "75";
  }
  77% {
    content: "76";
  }
  78% {
    content: "77";
  }
  79% {
    content: "78";
  }
  80% {
    content: "79";
  }
  81% {
    content: "80";
  }
  82% {
    content: "81";
  }
  83% {
    content: "82";
  }
  84% {
    content: "83";
  }
  85% {
    content: "84";
  }
  86% {
    content: "85";
  }
  87% {
    content: "86";
  }
  88% {
    content: "87";
  }
  89% {
    content: "88";
  }
  90% {
    content: "89";
  }
  91% {
    content: "90";
  }
  92% {
    content: "91";
  }
  93% {
    content: "92";
  }
  94% {
    content: "93";
  }
  95% {
    content: "94";
  }
  96% {
    content: "95";
  }
  97% {
    content: "96";
  }
  98% {
    content: "97";
  }
  99% {
    content: "98";
  }
  100% {
    content: '';
    display: none;
  }
}

.bu-stat-type-text .bu-stat-value {
  font-size: 2.8em;
}

.bulp-stats-container {
  align-items: stretch;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
}

.bulp-stats-container .bu-stat-single {
  height: 100%;
}

@media (min-width: 1200px) {
  .bulp-stats-container {
    max-width: 1400px;
  }
}

.bu-stat-list {
  align-items: stretch;
  display: grid;
  grid-gap: 30px 10px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 30px;
  text-align: center;
}

.bu-stat-list .bu-stat-single {
  height: 100%;
}

.bu-stat-list.bu-stat-count-2 {
  max-width: calc( var( --bu-stat-base-max-width ) * 2);
}

.bu-stat-list.bu-stat-count-3 {
  max-width: calc( var( --bu-stat-base-max-width ) * 3);
}

.bu-stat-list.bu-stat-alignleft {
  margin-bottom: 30px;
}

@media (min-width: 500px) {
  .bu-stat-list.bu-stat-alignleft {
    float: left;
    margin-right: 30px;
    max-width: 60%;
  }
}

@media (min-width: 768px) {
  .bu-stat-list.bu-stat-alignleft {
    max-width: 50%;
  }
}

.bu-stat-list.bu-stat-alignright {
  margin-bottom: 30px;
}

@media (min-width: 500px) {
  .bu-stat-list.bu-stat-alignright {
    float: right;
    margin-left: 30px;
    max-width: 60%;
  }
}

@media (min-width: 768px) {
  .bu-stat-list.bu-stat-alignright {
    max-width: 50%;
  }
}

.bu-stat-list.bu-stat-aligncenter {
  float: none;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  justify-content: center;
}

.bu-stat-list.bu-stat-alignwide {
  margin-left: calc(10% - 10vw);
  margin-right: calc(10% - 10vw);
}

/*# sourceMappingURL=style.css.map */