html, body {
  height: 100%;
  padding: 0;
  margin: 0;
}
#map {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border: thin solid #333;
}
#logo { 
  position: absolute; 
  top: 10px; 
  left: 10px; 
  z-index: 99;
}
#social { 
  position:absolute;
  bottom:0px;
  right:25%;
  left:50%;
  z-index: 99; 
  cursor:pointer;
  display:inline-block;
}
.dashboard {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
  font-family: 'American Typewriter','sherif';
  font-size: 12px;
  margin: 5px;
  padding: 5px;
  display: none;
}

#coords {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
  font-family: 'American Typewriter','sherif';
  font-size: 12px;
  margin: 5px;
  padding: 5px;
  display: none;
}

.coords .coords-clear {
  position: absolute;
  bottom: 0px;
  right: 5px;
  font-size: 30px;
  margin-left: 50px;
  display: none;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  transition: 0.3s;
  display: block;
}

#searchbox {
  background-color: #fff;
  font-family: 'American Typewriter','sherif';
  font-size: 15px;
  font-weight: 300;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  width: 200px;
}

#searchbox-input:focus {
  border-color: #4d90fe;
}

.dashboard .search-clear {
  position: absolute;
  bottom: 1px;
  right: 8px;
  font-size: 30px;
  text-decoration: none;
  display: none;
  font-size: 25px;
  color: #818181;
  transition: 0.3s
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* 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-header {
  font-family: 'American Typewriter','sherif';
  font-size: 25px;
  background-color: #d40000;
  color: #fff;
  text-align:center;
  border-radius:10px;
  padding-bottom:5px;
  padding-top:5px;
  margin-bottom:25px;
}

.modal-content {
  font-family: 'American Typewriter','sherif';
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding-left: 20px;
  padding-right: 20px;
  padding-top:5px;
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
  border-radius: 10px;
  border: 1px solid #000;
}


.modal-close {
  position:absolute;
  font-size: 30px;
  text-decoration: none;
  display: block;
  color: #818181;
  transition: 0.3s
}

* {box-sizing:border-box}

.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

.slides {
    display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.slide-caption {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.slide-number {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor:pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
