

@font-face
{
	font-family: 'Roboto Mono';
	src: local('Roboto Mono'), local('RobotoMono-Regular'), url('../fonts/RobotoMono-Regular.woff2') format('woff2');
	font-style: normal;
	font-weight: 400;
}

@font-face 
{
	font-family: 'Roboto Mono';
	src: local('Roboto Mono Medium'), local('RobotoMono-Medium'), url('../fonts/RobotoMono-Medium.woff2') format('woff2');
	font-style: normal;
	font-weight: 500;
}

html, body 
{
	height: 100%;
	margin: 0;
	font-family: 'Roboto Mono', monospace;
	overflow: hidden;
}

#xcontainer
{
	top:  0px;
	left: 520px;
	right:  0px;
	bottom:  0px;
	position: fixed;
}


.leaflet-container
{
	height: 400px;
	width: 500px;
	max-width: 100%;
	max-height: 100%;
	position:  absolute;
	bottom:  8px;
	left:  8px;
}

.left-column
{
	width: 520px;
	height: 90%;
	position: absolute;
	top: 50%; 
	transform: translateY(-50%);
	left: 16px;

	background-color:  #fff;
	border-radius:  12px;
	

}

.left-column .content
{
	padding:  8px;
}


.left-column h2
{
	text-align:  center;
}

.left-column h3
{
	text-align:  center;
}


/* For annotations */
.annotation
{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin-left: 15px;
    margin-top: 15px;
    padding: 1em;
    width: 200px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    border-radius: .5em;
    font-size: 12px;
    line-height: 1.2;
    transition: opacity .5s;
/*
    &::before {
        content: '1';
        position: absolute;
        top: -30px;
        left: -30px;
        width: 30px;
        height: 30px;
        border: 2px solid #fff;
        border-radius: 50%;
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
    }
*/    
}



/* For map location mouseover */
path.locationpoint
{
	fill:  #ff0000;;
	transition: all 0.3s;
	transform-origin: bottom left;
}

path.locationpoint:hover
{
	fill:  #ffff00;
	/*transform: scale(1.1);
	transform-origin: bottom left;*/
}

/* Disable edge outline box on markers */
path.leaflet-interactive:focus {
    outline: none;
}


/* Logo */
#project-logo
{
	width: 120px;
	height: auto;
	position:  fixed;
	right: 8px;
	bottom: 8px;
	z-index: 99999;
}