/**
* jQuery asPieProgress v0.4.7
* https://github.com/amazingSurge/jquery-asPieProgress
*
* Copyright (c) amazingSurge
* Released under the LGPL-3.0 license
*/
.pie_progress {
  position: relative;
  text-align: center;

  -webkit-transform-style: preserve-3d;

          transform-style: preserve-3d;
}
.pie_progress__svg {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  vertical-align: middle;
}
.pie_progress__svg svg {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block; 
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.pie_progress__number, .pie_progress__label, .pie_progress__icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pie_progress__content{
  position: absolute;
  top:127%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pie_progress__number {
  font-size: 42px;
}

.pie_progress__label {
  font-size: 42px;
  color:#fff;
}
.pie_progress__content {
  font-size: 30px;
  color:#fff;
}
.pie_progress {
        width:28%;
		float:left;
		margin:0 2%;
      }
@media only screen and (min-width: 500px) and (max-width: 650px) {
.pie_progress__content{bottom:-50%;}
}
@media only screen and  (max-width: 499px) {
.pie_progress {
    float: none;
    margin: 0 auto 20%;
    max-width: 175px;
	width:auto;
}
}
@media only screen and  (max-width: 400px) {
.pie_progress {margin:0 auto 25%;}
}
@media only screen and  (max-width: 500px) {
.progress-circle {padding: 70px 0 ;}
}