width: $circleNumber*$circleBaseSize;
height: $circleNumber*$circleBaseSize;
@for $i from 1 through $circleNumber {
.circle:nth-child(#{$i}) {
width: $i*$circleBaseSize;
height: $i*$circleBaseSize;
border-width: $circleBorderWidth;
border-color: transparent;
-webkit-transform-origin: center center;
-webkit-animation: wave#{$i} 1.8s ease-in infinite;
-webkit-animation-delay: $i*0.1s;
top: ($circleNumber*$circleBaseSize/2)-($i*$circleBaseSize/2);
left: ($circleNumber*$circleBaseSize/2)-($i*$circleBaseSize/2);
@-webkit-keyframes wave#{$i}{
-webkit-transform: scale(1);
-webkit-transform: scale(1+0.3/$i);
border-color: $circleColor;
-webkit-transform: scale(1);
-webkit-transform: scale(1);
border-color: transparent;