
.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid #2BABD3;
    border-radius: 50%;
    border-top-color: #2BABD3;
    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);
  }
}