.loading {
  height: 0;
  width: 0;
  padding: 5px;
  border: 6px solid #ccc;
  border-right-color: #EA5661;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  position: absolute;
  left: 60%;
  top: 25%;
}

@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
     use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}