.progress-bar.indeterminate 
{
  position: relative;
  animation: progress-indeterminate 2s linear infinite;
}

.progress-bar-gray
{
	background-color: #3B95FF;
}

.progress-light-gray
{
	background-color: #d8d8d8;
}

.pbi-container
{
	margin-top: 20px !important;
}

@keyframes progress-indeterminate 
{
   from { left: -45%; width: 45%; }
   to { left: 100%; width: 45%;}
}
