#lb-container {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-property: opacity;
    z-index:-1;
    opacity: 0;
}

#lb-content {
    background: rgba(255,255,255,255);
    max-width: 80vw;
    max-height: 80vh;
    margin: 20px auto;
    border: 8px solid white;
    box-shadow: 0px 0px 50px #111;
    border-radius: 4px;
    overflow-y: auto;
    padding: 10px;
}

#map {
    height: 80vh;
    width: 80vw;
    background: rgba(255,255,255,255);
    margin: 20px auto;
    border: 18px solid white;
    box-shadow: 0px 0px 50px #111;
    border-radius: 4px;
    overflow-y:auto;
    padding: 0px;
    overflow: hidden;
    position: relative;
}

#leafletMap {
    height:100%;
}

#btnValidate {
    background: #fff;
    border-left: 8px solid white;
    border-bottom: 4px solid white;
    border-bottom-left-radius: 8px;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 999;
}
#btnValidate:after {
    display: inline-block;
    font-size : 1.5em;
    color: #000;
    content: "\00d7"; /* This will render the 'X' */
}

#selCoord {
    background: rgba(255, 255, 255, 0.75); 
    position : absolute;
    bottom: 0px;
    Left: 0px;
    z-index: 999;
}


/*Slider*/

.slidecontainer {
    width: 100%; /* Width of the outside container */
}

.slider {
    display:inline;
    -webkit-appearance: none; /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 10px; /* Specified height */
    border-radius: 5px;
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 15px; /* Set a specific slider handle width */
    height: 15px;
    border-radius: 50%;
    height: 25px; /* Slider handle height */
    background: rgba(210, 99, 79, 1);
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 15px; /* Set a specific slider handle width */
    height: 15px; /* Slider handle height */
    border-radius: 50%;
    background: rgba(210, 99, 79, 1);
    cursor: pointer; /* Cursor on hover */
}