/* ========================================================================
 * EASY PIE CHART
 * ======================================================================= */
.easy-pie-chart{
  text-align: center;
  margin: 10px;
  display: inline-block;
  &.easy-pie-xs{
    .percentage{
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 9px;
      img{
        margin: 0 auto;
        padding: 15px;
      }
      i{
        font-size: 13px;
      }
    }
    .title{
      margin-top: 5px;
    }
  }
  &.easy-pie-sm{
    .percentage{
      width: 100px;
      height: 100px;
      line-height: 100px;
      font-size: 15px;
      img{
        margin: 0 auto;
        padding: 25px;
      }
      i{
        font-size: 23px;
      }
    }
    .title{
      margin-top: 10px;
    }
  }
  &.easy-pie-md{
    .percentage{
      width: 150px;
      height: 150px;
      line-height: 150px;
      font-size: 20px;
      img{
        margin: 0 auto;
        padding: 35px;
      }
      i{
        font-size: 33px;
      }
    }
  }
  &.easy-pie-lg{
    .percentage{
      width: 200px;
      height: 200px;
      line-height: 200px;
      font-size: 25px;
      img{
        margin: 0 auto;
        padding: 45px;
      }
      i{
        font-size: 43px;
      }
    }
  }
  &.easy-pie-xl{
    .percentage{
      width: 250px;
      height: 250px;
      line-height: 250px;
      font-size: 30px;
      img{
        margin: 0 auto;
        padding: 55px;
      }
      i{
        font-size: 53px;
      }
    }
  }
  .percentage {
    color: #333;
    font-weight: 100;
    font-size: 1em;
    margin: 0 auto;
    position: relative;
    text-align: center;
    canvas {
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  .title{
    display: block;
    text-align: center;
    color: #333;
    font-weight: 300;
    font-size: 16px;
    margin-top: 20px;
    text-decoration: none;
    &.up{
      margin-top: 0;
      margin-bottom: 10px;
    }
  }
}