
/* Progressbar */

#ajax_loading b {
	font-size: 10pt;
	width: 100%;
}
#ajax_loading div.left {
	float: left;
	margin-left: 10px;
	margin-right: 10px;
}
.progress {
	width: 300px;
	margin-top: 2px;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.progress-bar {	
	height: 10px;
	background-color: #ee303c;  
	border-radius: 4px; 
	transition: 0.4s linear;  
	transition-property: width, background-color;    
}

.progress-striped .progress-bar { 	
	background-color: #FCBC51; 
	width: 100%; 
	background-image: linear-gradient(
        45deg, rgb(252,163,17) 25%, 
        transparent 25%, transparent 50%, 
        rgb(252,163,17) 50%, rgb(252,163,17) 75%,
        transparent 75%, transparent); 
	animation: progressAnimationStrike 6s;
}

@keyframes progressAnimationStrike {
     from { width: 0 }
     to   { width: 100% }
}
 
