/*
** Easy pieChart
*/

.chart {
  position: relative;
  display: inline-block;
  min-height: 150px;
  min-width: 150px;
  margin-bottom: 10px;
  text-align: center;

  .chart-meta {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);

    h4 {
      font-family: 'Work Sans', sans-serif;
      font-size: 16px;
      margin-top: 4px;
      font-weight: 500;
      text-transform: uppercase;
      color: $darkgreyColor;
    }
  }
}

.percent {
  font-family: 'Work Sans', sans-serif;
  display: inline-block;
  font-size: 50px;
  font-weight: 500;
  z-index: 2;
  line-height: 1;
}

.percent:after {
  content: '%';
}

.angular {
  margin-top: 100px;
  .chart {
    margin-top: 0;
  }
}