/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
}
body {
    overflow : hidden;
}
	
#map{
	height: 100vh;
	max-width: 1920px;
	width: 100%;
	max-height: 1080px;
	background-color: white;
	z-index:1;
	position: fixed;
	top:0;
	left: 0;
}
.fa-map-marker, .fa-spinner, .fa-spin  {
    background-image: url(../img/locator.png);
    background-size: 25px;
    width: 28px;
    height: 28px;
    display: block;
}
.leaflet-control-locate-location {
	pointer-events: none !important;
}
.leaflet-control-attribution {
	max-height: 16px;
}
.searchlocationresult{
    width: 300px;
    height: 40px;
    border: 1px solid lightgrey;
    margin-left: 25px;
    background-color: white;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font: normal 10px Arial;
    cursor: pointer;
}
.searchlocationresult:hover{
    background-color: lightgrey;
}
#search-location-input{
    width:  272px;
    float: left;
    border: 1px solid transparent;
    height: 26px;
    padding-left: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 4px 1px;
    margin-left: 25px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
#searchlocationresults li.selected {
    background-color: lightgrey;
}
#search-button{
    display : block;
    float : left;
    width : 26px;
    height : 26px;	
    background :  url('../img/search-icon.png') no-repeat 2px 2px #fff;
    border  :  1px solid transparent;
    box-shadow :  rgba(0, 0, 0, 0.3) 1px 1px 4px 1px;
    pointer-events: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.leaflet-touch .leaflet-bar a{
	width: 28px !important;
	height: 28px !important;
	line-height: 28px !important;
}

@media screen and (max-width: 800px) {
	.fa-map-marker, .fa-spinner, .fa-spin  {
		background-size: 28px;
		width: 30px;
		height: 30px;
	}
}

