/* hides map from smaller screen sizes */
@media screen and (max-width: 1024px) {
    .map {
      visibility: hidden;
      display: none;
    }
  }

/* hides panel links from desktop screen sizes */
@media screen and (min-width: 1025px) {
    .mobile {
      visibility: hidden;
      display: none;
    }
  }