    /* Map Specific Styling below */
    #map {
      height: 100%;
      z-index: 1;
      width: 100%;
    }

    #map-wrapper {
      //position: -webkit-sticky;
      //position: sticky;
      position: fixed;
      bottom: 0;
      right: 0;
      width: 40%;
      height: 40%;
      background-color:#d2f0c6;
      border-style: solid;
      border-radius: 10px;
      border-color: #bbb;
      z-index: 2;
    }

    #switch {
      display: none;
    }

    /* Mobile Small Screen*/
    @media only screen and (max-width: 768px) {
    	
      #map-wrapper {
        position: fixed;
        height: 50%;
        bottom: 0;
        width: 100%;
        background-color: #d2f0c6;
      }

      #title {
        margin-top: -60px;
        width: 100%;
        color: #fff;
        text-shadow: 2px 2px 5px #222;
        font-size: 30px;
      }

      #switch {
        display: inline-block;
        background-color: #018701;
        color: white
      }

      .map-hidden {
        transform: translate3d(0, 80%, 0);
        transition: transform 0.9s;
      }
    }