
@-webkit-keyframes bake-pie {
  from {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes bake-pie {
  from {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.pie-chart--wrapper {
  width: 400px;
  margin: 0px auto;
  text-align: center;
}
.pie-chart__pie, .pie-chart__legend {
  display: inline-block;
  vertical-align: top;
}
.pie-chart__pie {
  position: relative;
  height: 200px;
  width: 200px;
}
.pie-chart__pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: #EEE;
  border-radius: 50%;
  top: 50px;
  left: 50px;
}

.pie-charts.active .slice {
  position: absolute;
  width: 200px;
  height: 200px;
  clip: rect(0px, 200px, 200px, 100px);
  -webkit-animation: bake-pie 1s;
          animation: bake-pie 1s;
}
.pie-charts.active .slice span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
}

.pie-chart__legend {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  padding: 0.75em 0.75em 0.05em;
  text-align: left;
  width: 65%;
}
.pie-chart__legend{
  text-align: center;
}
.pie-chart__legend em {
  font-style: normal;
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}
.pie-chart__legend span {
  display: block;
  font-weight: bold;
  font-size: 28px;
}

.pie-charts {
  display: flex;
  flex-direction: row;
}

.pieID--categories .pie-chart__pie .s1-1 span,
.pieID--categories .pie-chart__pie .s1-0 span{
  background: #ffd515 !important;
}
.pieID--categories .pie-chart__pie .s0-0 span{
  background: #a5d8ec !important;
}

.pie-chart{
  position: relative;
}
.pie-chart .pie-chart__legend{
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2222;
  width: 100%;
}
.pie-chart .pie-chart__legend .left{
  float: left;
}
.pieID--micro-skills .pie-chart .pie-chart__legend .left{
  color: #cd486b;
}
.pie-chart .pie-chart__legend .right{
    float: right;
    margin-right: 30px;
}
.pieID--micro-skills .pie-chart .pie-chart__legend .right{
  color: #5c3f02;
}

.pieID--categories .right{
  margin-top: -20px;
}
.pieID--categories .left{
  margin-top: 60px;
  margin-left: 20px;
}


.pieID--categories .pie-chart .pie-chart__legend .left{
  color: #4f430d;
}
.pieID--categories .pie-chart .pie-chart__legend .right{
  color: #005d9b;
}
.hideA{
  display: none !important;
}
@media (max-width: 500px) {
  .pie-charts.pc {
    flex-direction: column;
    display: none;
  }
}
