.chart {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 10px;
  text-align: center;
  float: right;
  &.total {
    width: 100px;
    height: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 20px;
    text-align: center;
    float: left;
  }
}
.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.percent {
  display: inline-block;
  line-height: 70px;
  z-index: 2;
  font-size: .6em;
  color: $white;
  font-weight: 900;
  &.total {
    color: $salescrowd-green;
    font-size: 2.6em;
    font-weight: 900;
    padding-top: 13px;
    &:after {
      content: '';
    }
  }
}

.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .6em;
}