/* 	Fusion Widget CSS 
	
	Version 1.0.0
	
	CSS classes linked to fusion widget functionality
	Classes ideally use "fw" predix to identify as fusion widget
*/

.fwDashboardSpinner {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #DDDB39;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
