#wrapper {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

#header {
  background: #e6ffe6;
  height: 60px;
  display: flex;
}

#map-body {
  flex: 1;
  // background: orange;
  position: relative;
}

#footer {
  background: #e6ffe6;
}

#footer-obs {
        overflow:hidden;
        overflow-y: scroll;
        height: 100%;
}

#map-canvas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

