@charset "UTF-8";
/* CSS Document */

.chart {
  position: absolute;
  width: 450px;
  height: 450px;
  top: 50%;
  left: 50%;
  margin: -225px 0 0 -225px;
  /*! z-index: 100; */
}
#chart_key {
  position: absolute;
  left: 0;
  text-align: center;
  /*! margin-right: 20px; */
  /*! height: 100%; */
  top: 0;
  /*! bottom: 0; */
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#key-content {
  height: 100%;
  vertical-align: middle;
}

.chart_key {
  white-space: nowrap;
  text-align: center;
  padding: 0 5px;
  display: inline-block;
  line-height: 2;
  margin: 2px;
  color: #ffffff;
  /*! float: left; */
  /*! clear: left; */
  border-radius: 3px;
  /*! display: inline-block; */
}
.chart_key_holder {
  display: block;
}

.doughnutTip {
  position: absolute;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 15px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.8);
  color: #ddd;
  font-size: 17px;
  text-shadow: 0 1px 0 #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .06em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.doughnutTip::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 0;
  margin: 0 0 0 -6px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.7);
  line-height: 0;
}

.doughnutSummary {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #d5d5d5;
  text-align: center;
  text-shadow: 0 -1px 0 #111;
  cursor: default;
}

.doughnutSummaryTitle {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -27%;
  font-size: 22px;
  letter-spacing: .06em;
}

.doughnutSummaryNumber {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -15%;
  font-size: 55px;
}

.chart path:hover {
  opacity: 0.65;
}
