 .load {
	         width: 100%;
	         height: 100%;
	         position: absolute;
	         background-color: white;
	     }
	     
@keyframes spin {
	        to { transform: rotate(360deg);}
	     }
.spinner {
	        border: 8px solid rgba(0, 0, 0, 0.1);
	        border-left-color: #22a6b3;
	        border-radius: 50%;
	        
	        align-items:center;
			justify-content: center;
	        animation: spin 1.2s linear infinite;

			width: 50px;
            height: 50px;
			position: absolute;
  			top: 48%; /* posiciona na metade da tela */
  			left: 48%;
	    }	     