/* Fixes when exiting fullscreen the map becoming too vertical */
.map-gis__frame {
   width: 100%;
   height: 25em;
}

/* Fixes graphics becoming stretched */
.map-gis__frame canvas.ol-unselectable {
   width: unset !important;
}

/* Prevents the map from taking over the whole screen */
@media (max-width: 961px) {
   .map-gis__frame {
      width: 90%;
      border-right: 1em solid #f2f2f2;
      height: 20em;
   }
}