body .v-loading-indicator, 
body .v-loading-indicator-delay, 
body .v-loading-indicator-wait,
body .v-loading-indicator.first,
body .v-loading-indicator.second,
body .v-loading-indicator.third,
body vaadin-connection-indicator[offline] .v-status-message, vaadin-connection-indicator[reconnecting] .v-status-message {
	position: fixed !important;
	width: 100vw !important;
	right: 0;
	top: 0;
	height: 4px !important;
	margin: 0;

	background-size: 20px 20px;
	background-image: linear-gradient(135deg, rgba(255,255,255,0.5) 25%, rgba(0,0,0,0.15) 25%, rgba(0,0,0,0.15) 50%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 75%, rgba(0,0,0,0.15) 75%);
	
	animation: animate-loading-indicator 2s linear infinite;
	-webkit-animation: animate-loading-indicator 2s linear infinite;
	background-color: var(--session-color) ! important;
	
	opacity: 1;
	display: block!important;
	transition: opacity 250ms;
}
vaadin-connection-indicator {
	z-index: 20000;
	position: fixed;
	top: 0;
	left: 0;
}
vaadin-connection-indicator .v-status-message {
	display: none;
}

vaadin-connection-indicator[offline] .v-status-message, vaadin-connection-indicator[reconnecting] .v-status-message .text {
	font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif;
	font-size: 12px;
	width: 350px;
	color: white;
	min-height: 32px;
	padding: 12px 8px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px 0px !important;
	box-sizing: border-box;
	transition: all 0.1s, background 0.5s;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(0%);
	opacity: 1;
	border-top: 4px var(--red-support) solid;
	background: var(--red-S70);
	color: white;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px 0px !important;
}

body .v-loading-indicator[style*=none] {
	opacity: 0;
	display: block!important;
	transition: opacity 1s;
}

body .v-loading-indicator.has_session_color  {
	background-color: transparent;
} 

/* Animate the stripes */  
@-webkit-keyframes animate-loading-indicator {
	0% {background-position: 0 0; }
	100% { background-position: 80px 0;}
}

@keyframes animate-loading-indicator {
	0% {background-position: 0 0; }
	100% { background-position: 80px 0;}
}