*, *::before, *::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
  
  --base-font-family: var(--font-family-sans-serif);
  --base-font-weight: 400;
  --base-font-style: normal;
  --base-font-size: 16px;
  --base-line-height: 1.4;
  --base-bg-color: #fefefe;
  
  --link-color: #BE2C2C;
  
  --btn-transition-time: 350ms;
  --btn-transition-bezier: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

body {
  font-family: var(--font-family-sans-serif);
  letter-spacing: 0;
  font-weight: var(--base-font-weight);
  font-style: var(--base-font-style);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
  color: var(--color-black);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  background-color: var(--base-bg-color);
}

a {
  color: var(--link-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

h1 {
  font-weight: 300;
}

h3 {
  font-size: 18px;
}

.lead {
  font-size: 18px;
  font-weight: 300;
  color: #888888;
}

.wrapper {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1rem;
}

.timeline {
  padding: 1rem 0;
}

.timeline-item {}

.timelime-item-heading {}

.timeline-item-entry {
  position: relative;
  padding: 0.5rem;
  padding-left: 15px;
}

.timeline-item-entry:before {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #BE2C2C;
  content: "";
}

.timeline-item-media {
  display: flex;
  align-items: center;
}

.timeline-item-media-picture {
  padding-left: 1.5rem;
}

.timeline-item-media-picture img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #dddddd;
}

.timeline-item-media-highlight .timeline-item-media-picture {
  position: relative;
}

.timeline-item-media-highlight .timeline-item-media-picture:before {
  position: absolute;
  content: "";
  left: 0;
  
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  
  width: 8px;
  height: 8px;
  
  background-color: #BE2C2C;
  border-radius: 40px;
}

.timeline-item-media-highlight .timeline-item-media-picture:after {
  position: absolute;
  content: "";
  left: 4px;
  
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  
  width: 16px;
  height: 2px;
  
  background-color: #BE2C2C;
}

.timeline-item-media-highlight .timeline-item-media-picture img {
  box-shadow: 0 0 0 4px #BE2C2C;
}

.text-small {
  font-size: 14px;
}

.text-muted {
  color: rgba(0, 0, 0, .4);
}

.u-margin0 {
  margin: 0;
}

.u-padding0 {
  padding: 0;
}

.u-paddingLeft20 {
  padding-left: 20px;
}




.gauge {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  color: #004033;
}

.gauge__body {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background: #b4c0be;
  position: relative;
  border-top-left-radius: 100% 200%;
  border-top-right-radius: 100% 200%;
  overflow: hidden;
}

.gauge__fill {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: 100%;
  background: #009578;
  transform-origin: center top;
  transform: rotate(0.25turn);
  transition: transform 0.2s ease-out;
}

.gauge__cover {
  width: 75%;
  height: 150%;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);

  /* Text */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 25%;
  box-sizing: border-box;
}
