﻿/*///////<summary>
        /// Author: Gerard
        /// Date: 20 March 2018
        /// Copyright: Orderwise (Pty) Ltd
        ///
        /// CSS for Circle Gauge
        ///
        ///
//////</summary>
/////Version 1.0.1
*/

.flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.single-chart {
  width: 33%;
  justify-content: space-around ;
}

.circular-chart {
  display: block;
  margin: 0px auto;
  max-width: 80%;
  max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #2b76d0;
    stroke-width: 0.8px;
}

.circle {
    fill: none;
    stroke-width: 1.8px;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 100 0;
  }
}


.percentage {
  fill: #666;
  font-family: sans-serif;
  font-size: 0.7em;
  text-anchor: middle;
}