.loader{
		font-size: inherit;
		color: inherit;
		display: inline-block;
		font-family: Arial, Helvetica, sans-serif;
		position: relative;
}
.loader:after{
		content: '';
		height: 5px;
		width:0%;
		display: block;
		background: #FF3D00;
		animation: 2s lineGrow linear infinite;
}

.loader-white{
		font-size: inherit;
		color: inherit;
		display: inline-block;
		font-family: Arial, Helvetica, sans-serif;
		position: relative;
}
.loader-white:after{
		content: '';
		height: 5px;
		width:0%;
		display: block;
		background: #FFFFFF;
		animation: 2s lineGrow linear infinite;
}

.loader-content{
		font-size: inherit;
		color: inherit;
		display: inline-block;
		font-family: Arial, Helvetica, sans-serif;
		position: relative;
}
.loader-content:after{
		content: '';
		height: 5px;
		width:0%;
		display: block;
		background: #FFFFFF;
		animation: 2s lineGrow linear infinite;
}

@keyframes lineGrow {to{width: 100%;}}
