body {
        overflow-y:hidden;
        overflow-x:hidden;
    }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}


#map{
      position:absolute;
      height: 100%;
      width: 100%;
      top:8.5%;
      left:0%;
      z-index: -1
    }
/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/

.modal.left .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  padding: 5px 8px;
  height: 90%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  background-color: transparent;
}

.modal.left .modal-content {
  height: 90%;
  overflow-y: auto;
  overflow-x: auto;
}

.modal.left .modal-body {
  padding: 0px 0px 0px;
}


/*Left*/

.modal.left.fade .modal-dialog {
  /*left: kontolliert wie weit der dialogblock ausserhalb des sichtfeldes liegt bei load*/
  left: -100%;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
  background-color: transparent;
}

.modal.left.fade.in .modal-dialog {
  left: 0;
}
  
/*https://jsfiddle.net/m2ywpvxq/*/
/* ----- MODAL STYLE ----- */

.modal-content {
  border-radius: 0;
  border: none;
  background-color: #333;
  width:90%;
  left:10%;
  color: white;
  z-index: 10;
}

.modal-header {
  border-bottom-color: #EEEEEE;
  background-color: #FAFAFA;
}

.modal-backdrop {
  background-color: transparent;
  display: none;
}

.modal {
  pointer-events: none;
  z-index: 10000000000000;
}


.modal-content {
  pointer-events: auto;
}