div, h1, input {
    font-family: 'Lato', sans-serif;
 }

.header {
  width: 100%;
  display: inline-flex;
  justify-content: space-evenly;
  padding: 20px;
  background-color: #f2f2f2;
}

.explanation {
  width: 260px;
  float: right;
  padding: 10px;
  margin: 10px;
  border: 1px solid gray;
}

.container {
  margin-left: 20px;
  margin-right: 20px;
  max-width: initial;		/* also try revert */
}

.footer {
  padding: 20px;
  background-color: #f2f2f2;
}

/* Popup container */
.popup {
  position: absolute;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  background-color: rgba(225,225,225,0.8);
  border-radius: 6px;
  padding: 8px;
  z-index: 1;
}

.popup .doc {
    font-size: smaller;
    padding-left: 10px;
    max-width: 400px;
}

/* TODO these aren't used yet and maybe shouldn't  */
/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

#mapping-area-wrapper {
	margin: auto; 
	text-align: center;
}
		
#mapping-area {
	position: relative;
	display: inline-block;
}			
			
#dynamic_image {
	width: 100%; 
	max-width: 1024px;
	position: relative;
}

.kind_doc {
  border: 1px solid gray;
  background-color: #f2f2f2;
  padding: 10px;
}
