.tooltip {
	padding: 5px;
	position: absolute;
	opacity: 0;
	border: 1px solid black;
	background-color: white;
	cursor: default;
	/* no select */
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

#map {
	position: relative;
	top: -80px;
}

#map path {
	fill: steelblue;
	stroke: green;
	stroke-width: 2px;
}

#map .region.Boreal {
	fill: #55ff00;
}

#map .region.Boreal:hover {
	fill: #41c200;
}

#map .region.Canadian.Shield {
	fill: #ffbee8;
}

#map .region.Canadian.Shield:hover {
	fill: #ff3dbb;
}

#map .region.Parkland {
	fill: #704f00;
}
#map .region.Parkland:hover {
	fill: #523900;
}

#map .region.Grassland {
	fill: #ffdbcb;
}
#map .region.Grassland:hover {
	fill: #ff8957
}

#map .region.Rocky.Mountain {
	fill: #e8befe;
}
#map .region.Rocky.Mountain:hover {
	fill: #c254fc;
}

#map .region.Foothills {
	fill: #00aab2;
}
#map .region.Foothills:hover {
	fill: #007980
}

#description {
	position: relative;
	top: -80px;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  margin-bottom: 40px;
}

.container .description {
  padding-left: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: black;
  max-width: 600px;
}

.container .description h3 {
  color: #00427f;
  font-size: 24px;
  margin-bottom: 6px;
}

.container .description h4 {
    color: #00427f;
    font-size: 18px;
    margin-bottom: 6px;
}

.container .description p {
  margin-top: 2px;
  margin-bottom: 6px;
  font-size: 16px;
  font-family: 'Fira Sans', sans-serif;
  line-height: 20px;
}