.maps-scene-route-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px; 
    height: 416px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(6, 1fr);
    
    background: rgba(40, 40, 40, 0.9);

    background-image: linear-gradient(
        rgba(255, 255, 255, 0.03) 1px, 
        transparent 1px
    );
    background-size: 100% 4px;
    
    overflow: visible; 
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.maps-scene-route {
	position: relative;
	width: 100%;
	height: 100%;
	
	background-size: 100% 100%; 
	background-position: center;
	background-repeat: no-repeat;

	cursor: pointer;
	outline: 1px solid black;
	box-sizing: border-box;
}

.maps-scene-route:hover {
	filter: brightness(1.2);
}

.maps-scene-route-empty {
	position: relative;
	width: 100%;
	height: 100%;
	background: #252527;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3d3d3f;
	font-size: 20px;
	font-weight: bold;
	outline: 1px solid black;
	box-sizing: border-box;
}

.maps-scene-route-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 8px;
	background: rgba(0, 0, 0, 0.8);
	color: var(--white);
	text-align: center;
	padding: 3px 0;
	opacity: 0;
	pointer-events: none;
	text-transform: uppercase;
}

.maps-scene-route:hover .maps-scene-route-name {
	opacity: 1;
}

.maps-scene-route-requires {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%);
	font-size: 12px;
	line-height: 20px;
	color: #ebbe35;
	text-shadow: 1px 1px 1px black, -1px -1px 1px black;
}

.maps-scene-route-record-container {
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
	height: 12px;
	background: #2a2a2b;
	box-shadow: 0 1px 3px black;
	display: none;
}

.maps-scene-route-record {
	position: absolute;
	width: 100%;
	top: 2px;
	font-size: 9px;
	color: #ebbe35;
	text-align: center;
	text-shadow: 1px 1px black;
}

.msrre { 
	vertical-align: middle;
	position: relative;
	top: -4px; 
}
