.pending {
	text-transform: capitalize;
	color: #f39c12;
	font-weight: bold;
}
.approved {
	text-transform: capitalize;
	color: #00a157;
	font-weight: bold;
}
.declined {
	text-transform: capitalize;
	color: #f71752;
	font-weight: bold;
}

.ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%); 
	width: 100px;
	height: 100px;
	background: transparent;
	border: 3px solid #3c3c3c;
	border-radius: 50%;
	text-align: center;
	line-height: 100px;
	font-family: 'Google Sans', sans-serif;
	color: #fff;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-shadow:0 0 10px #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.5);
}
.ring:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-top: 3px solid #348fe2;
	border-right: 3px solid #348fe2;
	border-radius: 50%;
	animation: animateCircle 1s linear infinite;
}
.loader-span {
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	width: 50%;
	height: 4px;
	background: transparent;
	transform-origin:left;
	animation: animate 1s linear infinite;
}
.loader-span:before {
	content:'';
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #348fe2;
	top: -6px;
	right: -8px;
	box-shadow: 0 0 20px #348fe2;
}

@keyframes animateCircle
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
}
@keyframes animate
{
	0%
	{
		transform: rotate(45deg);
	}
	100%
	{
		transform: rotate(405deg);
	}
}

.loader-container {
	display: none;
}

#loader_overlay {
	position: fixed;
	z-index: 99998;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.marquee {
	height: 50px;
	overflow: hidden;
	position: relative;
	color: #333;
	border: 1px solid #4a4a4a;
}

.marquee {
	margin: 0;
	line-height: 50px;
	text-align: center;
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-moz-animation: scroll-left 2s linear infinite;
	-webkit-animation: scroll-left 2s linear infinite;
	animation: scroll-left 20s linear infinite;
}

@-moz-keyframes scroll-left {
	0% {
		-moz-transform: translateX(100%);
	}
	100% {
		-moz-transform: translateX(-100%);
	}
}

@-webkit-keyframes scroll-left {
	0% {
		-webkit-transform: translateX(100%);
	}
	100% {
		-webkit-transform: translateX(-100%);
	}
}

@keyframes scroll-left {
	0% {
		-moz-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	100% {
		-moz-transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}