/* required styles */

.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	-webkit-user-drag: none;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
	max-width: none !important;
	}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
	max-width: 15000px !important;
	}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-tile-pane    { z-index: 2; }
.leaflet-objects-pane { z-index: 3; }
.leaflet-overlay-pane { z-index: 4; }
.leaflet-shadow-pane  { z-index: 5; }
.leaflet-marker-pane  { z-index: 6; }
.leaflet-popup-pane   { z-index: 7; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 7;
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-clickable {
	cursor: pointer;
	}
.leaflet-container {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}


/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: content-box;
	     box-sizing: content-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	margin: 0 auto;
	width: 40px;
	height: 20px;
	position: relative;
	overflow: hidden;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;

	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}

html,
body,
.map {
  margin: 0;
  width: 100%;
  height: 100%;
}
.info {
  z-index: 1000;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  padding: 10px;
  width: 260px;
  min-height: 150px;
  max-height: 70%;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #dfdfdf;
  font-size: 12px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.info .header span {
  font-size: 45px;
  color: #fff;
  font-weight: 100;
  vertical-align: top;
  line-height: 70px;
}
.info ul {
  padding: 0;
  list-style: none;
}
.info .container .name {
  margin-right: 20px;
}
.info .container .distance {
  float: right;
}
.info .container ul li {
  margin-top: 5px;
}
.info .search-loading {
  display: none;
}
.info.loading .search-loading {
  display: block;
}
.info.loading .container {
  opacity: 0.5;
}
.info .nav {
  margin-left: 20%;
}
.info .nav > li {
  display: inline-block;
  padding: 1em 18px;
  cursor: pointer;
}
.info .nav > li:hover {
  background: #ebebeb;
}
.info .drop {
  position: relative;
}
.info .drop ul {
  position: absolute;
  left: 0;
  top: 3em;
  transition: all 0.3s ease;
  transform: scale(0);
  transform-origin: 0 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}
.info .drop ul li {
  display: block;
  width: 100%;
}
.info .drop ul li a {
  width: 100%;
  padding: 1em 18px;
  display: inline-block;
  white-space: pre;
  box-sizing: border-box;
}
.info .drop ul li a:hover {
  background: #ebebeb;
}
.info .drop:hover ul {
  transform: scale(1);
}
.shares {
  position: absolute;
  top: 32px;
  left: 310px;
}
.search-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 20px;
  margin-left: -35px;
  padding: 5%;
}
.search-loading .loader {
  position: relative;
  margin: 0px auto;
  width: 30px;
}
.search-loading .loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.search-loading .circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.search-loading .path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
  stroke-width: 5;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes color {
  100%,
  0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%,
  90% {
    stroke: #ffa700;
  }
}
@keyframes color {
  100%,
  0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%,
  90% {
    stroke: #ffa700;
  }
}
.searchbox {
  margin-bottom: 10px;
}
.searchbox .search-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 20px;
  padding: 5px 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}
.searchbox .search-input:focus {
  outline: none;
}
.searchbox .search-input:focus,
.searchbox .search-input:hover {
  color: #ffffff;
}
.searchbox .search-icon {
  -webkit-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  z-index: 5;
  cursor: pointer;
  position: absolute;
  height: 50px;
  width: 50px;
  right: 0;
  top: 70px;
}
.searchbox .search-icon:before,
.searchbox .search-icon:after {
  content: "";
  position: absolute;
}
.searchbox .search-icon:before {
  -webkit-transform: translate(-60%, -60%);
  -ms-transform: translate(-60%, -60%);
  -o-transform: translate(-60%, -60%);
  transform: translate(-60%, -60%);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid white;
  left: 50%;
  top: 50%;
}
.searchbox .search-icon:after {
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: white;
  margin-top: 3px;
  margin-left: 2px;
  width: 2px;
  height: 8px;
  top: 50%;
  left: 50%;
}
.searchbox.enter-search .search-icon {
  opacity: 0;
  pointer-events: none;
}
.info .deselect {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
.info .search {
  -webkit-transition: all 0.4s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.4s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  z-index: 2;
  color: white;
  overflow: hidden;
  display: inline-block;
  padding: 20px;
  border-radius: 300px;
  position: relative;
  max-height: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.info .search i {
  -webkit-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  z-index: 5;
  cursor: pointer;
  position: absolute;
  height: 40px;
  width: 40px;
  right: 0;
  top: 0;
}
.info .search i:before,
.info .search i:after {
  content: "";
  position: absolute;
}
.info .search i:before {
  -webkit-transform: translate(-60%, -60%);
  -ms-transform: translate(-60%, -60%);
  -o-transform: translate(-60%, -60%);
  transform: translate(-60%, -60%);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid white;
  left: 50%;
  top: 50%;
}
.info .search i:after {
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: white;
  margin-top: 3px;
  margin-left: 2px;
  width: 2px;
  height: 8px;
  top: 50%;
  left: 50%;
}
.info .search label {
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  white-space: nowrap;
  opacity: 0.5;
  z-index: 2;
  position: absolute;
  font-size: 0;
  font-weight: 400;
  left: 0;
  top: 16px;
}
.info .search label span {
  -webkit-transform: translate(4px, -4px);
  -ms-transform: translate(4px, -4px);
  -o-transform: translate(4px, -4px);
  transform: translate(4px, -4px);
  position: relative;
  z-index: 4;
  font: inherit;
  font-size: 15px;
  display: inline-block;
}
.info .search label aside {
  -webkit-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  content: "";
  display: inline-block;
  position: relative;
  max-width: 0;
  overflow: hidden;
  font-size: 17px;
  opacity: 0;
}
.info .search input[type="text"] {
  -webkit-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  display: inline-block;
  background-color: transparent;
  outline: none;
  z-index: 3;
  color: white;
  font-size: 17px;
  font-weight: 400;
  padding: 5px;
  line-height: 60px;
  height: 40px;
  width: 100%;
  right: 0;
  left: 0;
  top: 0;
}
.info .search input[type="text"]:focus ~ label,
.info .search input[type="text"]:valid ~ label {
  letter-spacing: 0.15em;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transform: translate(5px, -14px);
  -ms-transform: translate(5px, -14px);
  -o-transform: translate(5px, -14px);
  transform: translate(5px, -14px);
}
.info .search input[type="text"]:focus ~ label aside,
.info .search input[type="text"]:valid ~ label aside {
  max-width: 140px;
  opacity: 1;
}
.info .search ul {
  padding-top: 30px;
  -webkit-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.25s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  position: relative;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 900;
  perspective: 900;
  left: -14px;
  width: 100%;
  max-height: 0;
}
.info .search ul li {
  -webkit-transition: all 0.4s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -o-transition: all 0.4s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.2, 1.31) 0s;
  -webkit-transform: rotate(40px);
  -ms-transform: rotate(40px);
  -o-transform: rotate(40px);
  transform: rotate(40px);
  -webkit-transform: translate(0, 40px);
  -ms-transform: translate(0, 40px);
  -o-transform: translate(0, 40px);
  transform: translate(0, 40px);
  position: relative;
  line-height: 18px;
  padding: 10px 20px;
  border-top: 1px solid white;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.info .search ul li:hover span {
  text-decoration: underline;
}
.info .search ul li em {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  font-weight: 900;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  color: #fff;
  border: 1px solid white;
  line-height: 10px;
  font-size: 10px;
  text-align: center;
  left: 18px;
  top: 50%;
}
.info .search.enter-search {
  border-radius: 0;
  padding: 30px 0 20px 0;
}
.info .search.enter-search input[type="text"] {
  opacity: 1;
}
.info .search.enter-search label {
  opacity: 1;
}
.info .search.enter-search i {
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  opacity: 0;
}
.info .search.submitted {
  width: 100%;
  border-radius: 0;
  padding: 30px 0 0 0;
  max-height: 550px;
}
.info .search.submitted i {
  right: 10px;
  top: 12px;
}
.info .search.submitted input[type="text"] {
  -webkit-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  -o-transform: translate(0, -2px);
  transform: translate(0, -2px);
  opacity: 1;
  font-size: 33px;
  height: 60px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.info .search.submitted label {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transform: translate(5px, -50px);
  -ms-transform: translate(5px, -50px);
  -o-transform: translate(5px, -50px);
  transform: translate(5px, -50px);
  opacity: 0;
}
.info .search.submitted ul {
  max-height: 400px;
}
.info .search.submitted ul li {
  -webkit-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  height: 100%;
}
.address-tooltip a.leaflet-popup-close-button,
.address-tooltip .leaflet-popup-content {
  font-size: 15px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #dfdfdf;
  font-weight: 300;
}
.address-tooltip .leaflet-popup-tip,
.address-tooltip .leaflet-popup-content-wrapper {
  background: rgba(0, 0, 0, 0.5);
}
.leaflet-container .github-button img {
  width: 12px;
  height: 12px;
  vertical-align: text-bottom;
  margin-right: 4px;
}
.leaflet-container .github-button,
.leaflet-container .github-button:hover {
  color: #000;
}
