
 .loader {
  position: relative;
  text-align: center;
  margin: 15px auto 35px auto;
  z-index: 9999;
  display: block;
  width: 80px;
  height: 80px;
  border: 10px solid #29cf16;
  border-radius: 50%;
  border-top-color: #d2d6de;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}
    @keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
    @-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}