html, body {
    height: 100%;
}

.map {
    height: 100%;
    z-index: 0;
}

.onMap {
  position: absolute;
  font-family: "Roboto";
  left: 1em;
  top: 1em;
  z-index: 10;
}

.ol-scale-line{
    left: 5em;
}

.layers-div{
    padding: 2px 2px 2px 2px;
    width: 40px;
    height: 40px;
    background: rgba(0,60,136,.3);
    border-radius: 4px;
    bottom: 8px;
    left: 8px;
    z-index: 1000;
    position: absolute;
}

.layers-div-list{
    padding: 5px 5px 5px 5px;
    min-width: 100px;
    min-height: 100px;
    background: rgba(255,255,255,1);
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
    border-radius: 4px;
    bottom: 8px;
    left: 8px;
    z-index: 1000;
    position: absolute;
	font-family: "Verdana";
	font-size: 0.9em;
}

.layer-list-content{
    display: none;
}

.separator{
	height: 0;
    border-top: 1px solid #cccccc;
    margin: 5px 5px 5px 5px;
}

.sublist_disabled {
  padding-left: 10px;  
  color: #666666;
}

.sublist_enabled {
  padding-left: 10px;  
  color: #000000;
}

.scale-value {
    position: absolute;
    display: inline;
    bottom: 0;
    height: 16px;
    vertical-align: top;
}

.leaflet-control-color-scale-line {
    margin: 15px 5px 5px;
    position: inherit;
    height: 5px;
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    right: 0;
}

.scale-min-value {
    left: 0;
}

.scale-max-value {
    right: 0;
}

.ol-popup {
  position: absolute;
  background-color: white;
  -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 300px;
}
.ol-popup:after, .ol-popup:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.ol-popup:after {
  border-top-color: white;
  border-width: 10px;
  left: 48px;
  margin-left: -10px;
}
.ol-popup:before {
  border-top-color: #cccccc;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}
.ol-popup-closer {
  text-decoration: none;
  position: absolute;
  top: 2px;
  right: 8px;
}
.ol-popup-closer:after {
  content: "✖";
}

/* The Modal (background) */
.eventsModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    border-radius: 10px;
}

/* Modal Content/Box */
.eventsModal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}