html, body, .map {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Droid Sans", Tahoma, Geneva, sans-serif;
}

#map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.yearControl {
  z-index: 4;
  background-color: #b3bab5;
  opacity: 0.9;
  color: white;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 3%;
  width: 40%;
  text-align: center;
  font-size: 2rem;
  height: 10%;
  padding: 0 5%;
  display:table;
}

.yearControl span {
    display:table-cell; /* god css why is it so difficult to center */
    vertical-align:middle;
}

.year {
    color: #333;
    text-decoration: none;
    -webkit-transition: color .5s linear; 
    -moz-transition: color .5s linear; 
    -ms-transition: color .5s linear; 
    transition: color .5s linear;
}

.year:hover {
    color: #fff;
}

.active {
    color: #fff;
    -webkit-transition: color .5s linear; 
    -moz-transition: color .5s linear; 
    -ms-transition: color .5s linear; 
    transition: color .5s linear;
}

/* credit http://codepen.io/stevenfabre/pen/DvBei */
.play {
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 15.6px solid #333;
  margin: auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  left: 2.6px;
}
.play:before {
  content: '';
  position: absolute;
  top: -19.5px;
  left: -29.9px;
  bottom: -19.5px;
  right: -9.1px;
  border-radius: 50%;
  border: 2.6px solid #333;
  z-index: 2;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.play:after {
  content: '';
  opacity: 0;
  transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
}
.play:hover:before, .play:focus:before {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.play.active {
  border-color: transparent;
}
.play.active:after {
  content: '';
  opacity: 1;
  width: 13px;
  height: 20.8px;
  background: #333;
  position: absolute;
  right: 1.3px;
  top: -10.4px;
  border-left: 5.2px solid #333;
  box-shadow: inset 7.8px 0 0 0 #b3bab5;
}

.icon {
  height: 36px;
  width: 36px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-top: -0.2em;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon:before, .icon:after {
  content: "";
  position: absolute;
  display: block;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon:hover {
  border-color: #fff;
  cursor: pointer;
}
.icon:hover:before, .icon:hover:after {
  background: #fff;
}

.info {
  -moz-border-radius: 36px;
  -webkit-border-radius: 36px;
  border-radius: 36px;
  border: 2.6px solid #333;
  width: 36px;
  height: 36px;
  color: #333;
}
.info:before {
  -moz-border-radius: 36px;
  -webkit-border-radius: 36px;
  border-radius: 36px;
  background: #333;
  height: 5.25px;
  top: 50%;
  left: 50%;
  margin-left: -10.5px;
  width: 21px;
  margin-top: -2.625px;
}
.info:after {
  width: 5.25px;
  top: 50%;
  background: #333;
  margin-top: -10.5px;
  left: 50%;
  margin-left: -2.625px;
  height: 21px;
}

.info:before, .warning:before {
  height: 5.25px;
  width: 5.25px;
  left: 50%;
  margin-left: -2.625px;
  top: 50%;
  margin-top: -10.5px;
}
.info:after, .warning:after {
  height: 14px;
  top: 50%;
  margin-top: -2.625px;
}

.btn {
  background: #428bca;
  border: #357ebd solid 1px;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 8px 15px;
  text-decoration: none;
  text-align: center;
  min-width: 60px;
  position: relative;
  transition: color .1s ease;
  /* top: 40em;*/
}
.btn:hover {
  background: #357ebd;
}
.btn.btn-big {
  font-size: 18px;
  padding: 15px 20px;
  min-width: 100px;
}
.btn-close {
  color: #aaaaaa;
  font-size: 30px;
  text-decoration: none;
  position: absolute;
  right: 5px;
  top: 0;
}
.btn-close:hover {
  color: #919191;
}
.modal:before {
  content: "";
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.modal:target:before {
  display: block;
}
.modal:target .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  top: 20%;
}
.modal-dialog {
  background: #fefefe;
  border: #333333 solid 1px;
  border-radius: 5px;
  margin-left: -200px;
  position: fixed;
  left: 50%;
  top: -100%;
  z-index: 11;
  width: 360px;
  -webkit-transform: translate(0, -500%);
  -ms-transform: translate(0, -500%);
  transform: translate(0, -500%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-body {
  padding: 20px;
}
.modal-header,
.modal-footer {
  padding: 10px 20px;
}
.modal-header {
  border-bottom: #eeeeee solid 1px;
}
.modal-header h2 {
  font-size: 20px;
}
.modal-footer {
  border-top: #eeeeee solid 1px;
  text-align: right;
}

#overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.loading,
.loading::before,
.loading::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
}

.loading {
  margin: -25px 0 0 -25px;
  height: 50px;
  width: 50px;
  -webkit-animation: animation-rotate 1000ms linear infinite;
  -moz-animation: animation-rotate 1000ms linear infinite;
  -o-animation: animation-rotate 1000ms linear infinite;
  animation: animation-rotate 1000ms linear infinite;
}

.loading::before {
  content: "";
  margin: -23px 0 0 -23px;
  height: 44px;
  width: 44px;
  -webkit-animation: animation-rotate 1000ms linear infinite;
  -moz-animation: animation-rotate 1000ms linear infinite;
  -o-animation: animation-rotate 1000ms linear infinite;
  animation: animation-rotate 1000ms linear infinite;
}

.loading::after {
  content: "";
  margin: -29px 0 0 -29px;
  height: 56px;
  width: 56px;
  -webkit-animation: animation-rotate 2000ms linear infinite;
  -moz-animation: animation-rotate 2000ms linear infinite;
  -o-animation: animation-rotate 2000ms linear infinite;
  animation: animation-rotate 2000ms linear infinite;
}

@-webkit-keyframes animation-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes animation-rotate {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes animation-rotate {
  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes animation-rotate {
  100% {
    transform: rotate(360deg);
  }
}
