.mapZone{
    border:solid 1px black;
    position: absolute;
    left: 0.01%;
    top:0.01%;
    width: 79.9%;
    height:99%;
    overflow:hidden;
}
.mappDiv{
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    zz-index: 1;
}
.buttonDiv{
    position: absolute;
    width: 4%;
    height: 14%;
    top: 0%;
    left: 0%;
    z-index: 2;
}


.infoZone{
    border:solid 1px black;
    position: absolute;
    top:0.01%;
    left:80%;
    width: 19.9%;
    height:99%;
    overflow:hidden;
    z-index: 3;
}
.mapButton{
    color: white;
    font-size: 1.5em;
    position: float;
    height:0;
    width:100%;
    padding-bottom: 100%;
    text-align: center;
    margin: 1px;
}



.infoTable{
    width: 95%;
}

.infoTable > tbody > tr > th{
    text-align: center;
    font-size: calc(1vw + 1vh);
}
input[type='button']{
font-size: calc(1vw + 1vh);
}
.locationTable{
    display: flex;
    flex-direction: column;
    height: 95%;
}

.row{
display: flex;
flex-direction: row;
height:12%
}
.rowHeader{
    display: flex;
    flex-direction: row;
    height: 8%;
}
.col{
    flex: 1 0 50%;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    font-size: calc(0.7vw + 0.7vh);
    text-align: center;
    overflow: hidden;
    border: solid blue 2px;
    opacity: 50%;
}

@keyframes locationAnim {
    0%{
        fill:gray
    }
    100%{
        fill:rgba(0,0,0,0)
    }
}
.locationAnimate{
    animation: locationAnim 2s forwards;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 80%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
  text-align:center;
}

.modal-body {
padding: 2px 16px;
font-size:20px;
text-align:center;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
  text-align:center;
}
.logo {
  position: absolute;
  top: 1rem;
  left: 5rem;
  height: 10%;
  pointer-events: none;
}