
#t42as-reading-indicator-wrapper {
	position: relative;
	z-index: 999999;
}

.t42as-style-default>div {
	box-shadow: 1px 1px 5px #1976d2;
}

.t42as-style-rounded #t42as-reading-indicator {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

.t42as-style-plastic #t42as-reading-indicator {
	box-shadow: inset 0 2px 9px rgba(255, 255, 255, .3), inset 0 -2px 6px rgba(0, 0, 0, .4) !important;
}

.t42as-style-animated #t42as-reading-indicator {
	position: relative;
}

.t42as-style-animated #t42as-reading-indicator:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
	z-index: 1;
	background-size: 50px 50px;
	animation: t42as-reading-indicator-animated 2s linear infinite;
	overflow: hidden;
}

@keyframes t42as-reading-indicator-animated {
	0% {
		background-position: 0 0;
	}
	
	100% {
		background-position: 50px 50px;
	}
}

.t42as-style-shine #t42as-reading-indicator {
	position: relative;
}

.t42as-style-shine #t42as-reading-indicator:after {
	content: "";
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	border-radius: 3px;
	animation: t42as-reading-indicator-animate-shine 2s ease-out infinite;
}

@keyframes t42as-reading-indicator-animate-shine {
	0% {
		opacity: 0;
		width: 0;
	}
	
	50% {
		opacity: .5;
	}
	
	100% {
		opacity: 0;
		width: 95%;
	}
}

.t42as-style-glow #t42as-reading-indicator {
	position: relative;
}

.t42as-style-glow #t42as-reading-indicator:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-shadow: 0 5px 5px rgba(255, 255, 255, .7) inset, 0 -5px 5px rgba(255, 255, 255, .7) inset;
	animation: t42as-reading-indicator-animate-glow 1s ease-out infinite;
}

@keyframes t42as-reading-indicator-animate-glow {
	0% {
		box-shadow: 0 5px 5px rgba(255, 255, 255, .7) inset, 0 -5px 5px rgba(255, 255, 255, .7) inset;
	}
	
	50% {
		box-shadow: 0 5px 5px rgba(255, 255, 255, .3) inset, 0 -5px 5px rgba(255, 255, 255, .3) inset;
	}
	
	100% {
		box-shadow: 0 5px 5px rgba(255, 255, 255, .7) inset, 0 -5px 5px rgba(255, 255, 255, .7) inset;
	}
}
