.g5plus-counter .ct-icon-shape {
  display: table-cell;
  vertical-align: top;
  text-align: center;
}
.g5plus-counter .ct-icon-shape .ct-icon {
  width: 78px;
  height: 78px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 3s;
  -moz-transition: all 3s;
  -ms-transition: all 3s;
  -o-transition: all 3s;
}
.g5plus-counter .ct-icon-shape .ct-icon i {
  line-height: 78px;
  color: #fff;
}
.g5plus-counter .ct-icon-shape .ct-icon i:before {
  font-size: 40px;
}
.g5plus-counter .ct-content {
  display: table-cell;
  vertical-align: top;
  padding-left: 20px;
  line-height: 1.29;
}
.g5plus-counter .ct-content h4 {
  letter-spacing: 0.1em;
}
.g5plus-counter:hover .ct-icon-shape .ct-icon {
  -webkit-animation-name: Shaky;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1.5s;
  /* Safari 4.0 - 8.0 */
  animation-name: Shaky;
  animation-duration: 1.5s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes Shaky {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-30deg);
  }
}
/* Standard syntax */
@keyframes Shaky {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0);
  }
}
