/*html, body {
  width: 100%; 
  height: 100%;
  margin: 0;
  font-family: 'Proxima Nova', 'Helvetica', sans-serif;
  letter-spacing: 1px;
  background: #F0F0F0;
  text-align: center;
}*/

button {
  font-size: 18px;
  padding: .5em 1em;
  border-radius: 10px;
  background-color: transparent;
  color: #000;
  transition: all .2s ease;
  
}

button.active {
  background-color: #F2AE1C;
  border-color: #F2AE1C;
}

button:hover {
  cursor: pointer;
}

@keyframes fillup {
  from { stroke-dasharray: 0 100; }
}

.pie__container--chart svg {
  width: 100%; 
  height: 100%;
  transform: rotate(0deg);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.pie__container--chart .circle {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(0, 0, 0, 0.8);
  stroke-width: 20;
  stroke-dasharray: 0 100; 
  transition: stroke-dasharray .5s ease;
}

.pie__container--chart {
  margin-bottom: 2em;
}

.pie__container {
  position: relative;
}

.pie__container--percent {
  position:absolute;
  right:10%;
  top:60%;
  font-size: 32px;
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  transition: opacity 1s ease;
}

@keyframes animated {
  from {opacity: .25;}
  to {opacity: 1;}
}

.pie__container--percent.animated {
  animation: animated 1s ease;
}