/* ----- VARIABLES ----- */
:root
{
	--featured-bg-color: black;
	--featured-text-color: white;
	--fastest-personal-color: #00ff00;
	--fastest-overall-color: #ff24ff;
}



/* ----- GLOBAL STYLES ----- */
body
{
	margin: 0;
	padding: 0;
	font-family: 'Open Sans Condensed', 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
	font-size: 20px;
	font-stretch: condensed;
	background-color: none;
	color: white;
}

h1
h2
h3
h4
h5
{
	letter-spacing: 0px;
	line-height: 1em;
	color: white !important;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
}

#lrm-connection-status
{
	position: fixed;
	top: 0;
	right: 0;
	width: 7px;
	height: 7px;
	background-color: red;
	color: white;
	z-index: 9999;
}



 /* ----- LOADING SCREEN ----- */
#loading
{
	position: fixed;
	top: 50%;
	width: 100%;
	transform: translate(0, -50%);
	background-color: var(--featured-bg-color);
}
#loading-text
{
	color: var(--featured-text-color);
	text-align: center;
	font-size: 3em;
}



/* ----- MAP SCREEN ----- */
#map_container
{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	scale: 100%;
	transform-origin: 0 0;
}
#map_container.overscan
{
	scale: 95%;
}
.layout_image
{
	position: absolute;
	top: 0;
	left: 0;
	display: inline;
}
#map_containerX
{
	position: relative;
	overflow: hidden;
	transform-origin: 0 0;
}


#message
{
	display: block;
	position: absolute;
	top: 20%;
	left: 60px;
	right: 250px;
	background: black;
	color: white;
	text-align: center;
	font-weight: bold;
	font-size: 2em;
	padding: 10px;
	border-radius: 20px;
	border: 5px white solid;
	opacity: 0.7;
}

.x
{
	position: absolute;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	margin-top: -20px;
	margin-left: -20px;
	color: white;
	background: black;
	font-weight: bold;
	padding: 2px;
	border: 2px white solid;
	white-space: nowrap;
	text-align: center;
	line-height: 28px;
}
.x .info
{
	position: absolute;
	border-radius: 24px;
	margin-left: 22px;
	margin-top: -56px;
	background: inherit;
	color: inherit;
	border: inherit;
	border-color: inherit !important;
	line-height: 24px;
	padding: 2px 6px;
}
.leader
{
	animation: blink-effect 1s infinite alternate;
}
@keyframes blink-effect
{
	0%
	{
		border: 5px solid white;
	}
	100%
	{
		border: 5px solid red;
	}
}
