.spinner{
    border:5px solid rgba(222, 255, 156, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: white;

    -webkit-animation : spin 0.8s linear infinite;
     -o-animation: spin 0.8s linear infinite;
     animation: spin 0.8s linear infinite;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  @keyframes spin {
    from{transform: rotate(0deg); }
     to {transform: rotate(360deg); }
}