﻿.gauge-cont {
  position: relative;
  width: 66%;
  margin: 5% auto;
}

.gauge-cont:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 50%;
}

.gauge-cont > .gauge {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Simply targetting .inner also includes design system buttons  */
.gauge .inner {
  width: 100%;
  height: 200%;
  display: block;
  background-color: #E7E8EA;
  border-radius: 50%;
  z-index: 1;
}

.spinner-cont {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  transform: rotate(0deg);
  transition: transform 800ms ease;
  transform: translateZ(0);
  overflow: hidden;
}

.spinner {
  width: 100%;
  height: 200%;
  background-color: #ABC437;
  position: absolute;
  bottom: 0;
  z-index: 2;
  border-radius: 50%;
}

.spinner.med {
  background-color: #EE812D;
}

.spinner.low {
  background-color: #DC1E33;
}

.pointer {
  display: block;
  width: 4%;
  height: 105%;
  background-color: #000;
  border-radius: 4px 4px 0 0;
  position: absolute;
  z-index: 4;
  bottom: 0px;
  left: calc(50% - (4% / 2));
  transform: rotate(-90deg);
  transform-origin: center bottom;
  transition: transform 800ms ease; }

.pointer-knob {
  width: 12%;
  height: 24%;
  background-color: #000;
  position: absolute;
  left: calc(50% - (12% / 2));
  bottom: -12%;
  z-index: 5;
  border-radius: 50%;
}

.big-num {
  font-size: 5em;
  color: #5C9BD1;
  line-height: 1;
}

.simple-num {
  font-size: 2em;
}

.widget-logo {
  display: block;
  margin: auto;
  max-width: 90%;
}

.large-label {
  flex: 1;
  font-weight: bold;
  font-size: 2em;
}

.logo-and-gauge {
  flex: 2;
}

.links-table {
  border-collapse: separate;
  border-spacing: 8px;
}

.links-table tr {
  background-color: #f9f9f9;
}

.links-table .fa, .links-table span {
  vertical-align: middle;
}

.links-table .fa-info-circle {
  line-height: 2;
}

