@keyframes bake-pie {
  0% {
	transform:rotate(0deg) translate3d(0,0,0);
	-ms-transform:rotate(0deg) translate3d(0,0,0); /* IE 9 */
	-webkit-transform:rotate(0deg) translate3d(0,0,0); /* Opera, Chrome, and Safari */
	-moz-transform:rotate(0deg) translate3d(0,0,0); /* Opera, Chrome, and Safari */
  }
}

@-webkit-keyframes bake-pie {
  0% {
	transform:rotate(0deg) translate3d(0,0,0);
	-ms-transform:rotate(0deg) translate3d(0,0,0); /* IE 9 */
	-webkit-transform:rotate(0deg) translate3d(0,0,0); /* Opera, Chrome, and Safari */
	-moz-transform:rotate(0deg) translate3d(0,0,0); /* Opera, Chrome, and Safari */
  }
}

.pieID {
  display: inline-block;
  vertical-align: top;
  font-size: 0.8vw;
}

.pie {
  border-radius: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
  float: left;
  height: 8.2rem;
  margin: 1.25vw 0;
  position: relative;
  width: 8.2rem;
}

.pie:before {
  background: none repeat scroll 0 0 #fff;
  border-radius: 50%;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.75);
  content: "";
  display: block;
  height: 70%;
  left: 15%;
  position: absolute;
  top: 15%;
  width: 70%;
  z-index: 1;
}

.slice {
  animation: 2s ease 0s normal none 1 bake-pie;
  -webkit-animation: 1s ease 0s normal none 1 bake-pie;
  -ms-animation: 2s ease 0s normal none 1 bake-pie;
  -moz-animation: 2s ease 0s normal none 1 bake-pie;
  clip: rect(0px, 8.2rem, 8.2rem, 4.1rem);
  height: 8.2rem;
  position: absolute;
  width: 8.2rem;
}

.slice span {
  background-color: black;
  border-radius: 50%;
  clip: rect(0px, 8.2rem, 8.2rem, 4.1rem);
  display: block;
  height: 8.2rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 8.2rem;
}


.pie-total {
  display: block;
  font-size: 5vw;
  left: 0;
  margin-top: -3.4vw;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  z-index: 10;
}

.pie-total.small {
  font-size: 2.5vw;
  margin-top: -2vw;
}

.content-container.head .pie-total {
	color: #a5491d;
}

.content-container.feed .pie-total {
	color: #c99815;
}

.content-container.subs .pie-total {
	color: #087aa6;
}

.content-container.prov .pie-total {
	color: #ae9073;
}

.content-container.geo .pie-total {
	color: #524538;
}

