.map-overlay {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all .2s linear;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
}

.map-overlay.opacity-0 {
  height: 0;
  width: 0;
}

.map-overlay.opacity-100 {
  height: auto;
  width: 100%;
}

.map-panel {
  padding: 2rem;
  box-shadow: 0px 1px 8px #1a2727;
  border-radius: 2rem 2rem 0 0;
  -webkit-border-radius: 2rem 2rem 0 0;
  -moz-border-radius: 2rem 2rem 0 0;
  -ms-border-radius: 2rem 2rem 0 0;
  -o-border-radius: 2rem 2rem 0 0;
}

@media (min-width: 768px) {
  .map-panel {
    border-radius: 2rem 0 0 2rem;
  }
}