/* 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;
	}
.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;
	}

.white,
.single,
.renters,
.drive,
.english {
  background: #4d9fd7;
}
.white.average,
.single.average,
.renters.average,
.drive.average,
.english.average,
.white.lighter,
.single.lighter,
.renters.lighter,
.drive.lighter,
.english.lighter {
  background: #b5d7ee;
}
.black,
.carpool,
.married {
  background: #c1ceaf;
}
.black.average,
.carpool.average,
.married.average,
.black.lighter,
.carpool.lighter,
.married.lighter {
  background: #dae1cf;
}
.asian,
.divorced,
.transit {
  background: #ca6951;
}
.asian.average,
.divorced.average,
.transit.average,
.asian.lighter,
.divorced.lighter,
.transit.lighter {
  background: #e8bdb3;
}
.hispanic,
.widowed,
.bike,
.owners,
.nonenglish {
  background: #fcbb75;
}
.hispanic.average,
.widowed.average,
.bike.average,
.owners.average,
.nonenglish.average,
.hispanic.lighter,
.widowed.lighter,
.bike.lighter,
.owners.lighter,
.nonenglish.lighter {
  background: #fee0c0;
}
.other,
.walk {
  background: #c7bbdc;
}
.other.average,
.walk.average,
.other.lighter,
.walk.lighter {
  background: #e3dded;
}
.home {
  background: #fedbbd;
}
.home.average,
.home.lighter {
  background: #fee9d6;
}
.minors,
.low-income {
  background: #c2dcee;
}
.minors.average,
.low-income.average,
.minors.lighter,
.low-income.lighter {
  background: #e2eef7;
}
.other-age,
.other-income {
  background: #89c3ea;
}
.other-age.average,
.other-income.average,
.other-age.lighter,
.other-income.lighter {
  background: #cae4f6;
}
.seniors,
.med-income {
  background: #4d9fd7;
}
.seniors.average,
.med-income.average,
.seniors.lighter,
.med-income.lighter {
  background: #a0ccea;
}
.high-income {
  background: #2280c1;
}
.high-income.average,
.high-income.lighter {
  background: #6eb5e5;
}
.charts {
  position: relative;
}
.charts .population {
  padding-bottom: 4px;
}
.charts .name {
  padding-bottom: 5px;
  font-weight: bold;
}
.charts .candidates {
  font-weight: bold;
}
.charts .candidates ul {
  padding-left: 25px;
  margin-top: 4px;
  font-weight: 400;
  font-size: 13px;
}
.charts .candidates .fa {
  padding-left: 5px;
  color: green;
}
.charts .candidates .results-note {
  font-weight: 400;
  font-style: italic;
  padding-bottom: 5px;
}
.charts .candidates .called-key {
  font-weight: 400;
  font-size: 12px;
  padding-bottom: 5px;
}
.charts .district-chart {
  display: inline-block;
  width: 100%;
}
.charts .label {
  font-size: 10px;
  text-transform: uppercase;
}
.charts .label.district {
  padding-bottom: 2px;
}
.charts .label.average {
  padding-top: 11px;
}
.charts .chart-group {
  padding-bottom: 5px;
  display: inline-block;
  width: 100%;
}
.charts .bar {
  height: 20px;
  float: left;
  position: relative;
  cursor: pointer;
}
.charts .bar .tooltip {
  display: none;
  position: absolute;
  bottom: 25px;
  right: 50%;
  background: #f6f6f6;
  font-size: 11px;
  z-index: 999;
  cursor: default;
  min-width: 114px;
  border-radius: 3px;
}
.charts .bar .tooltip .percent {
  font-weight: bold;
  font-size: 13px;
}
.charts .bar .tooltip .demo-details {
  padding: 5px 8px;
  text-align: right;
}
.charts .bar .tooltip .demo-label {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  padding: 3px;
}
.charts .bar:hover .tooltip,
.charts .bar.active .tooltip {
  display: block;
}
.charts .bar.average {
  height: 6px;
}
.charts .bar.average .tooltip {
  bottom: -75px;
}
.average.bar:first-child .tooltip,
.district.bar:first-child .tooltip {
  left: 50%;
  right: auto;
}
.key {
  font-size: 12px;
  padding-bottom: 5px;
}
.key .swatch {
  width: 10px;
  height: 10px;
  display: inline-block;
}
.key .key-value {
  padding-right: 6px;
  display: inline-block;
  padding-bottom: 2px;
}
.divider {
  border-top: 1px solid #EEE;
  margin-bottom: 10px;
  margin-top: 6px;
}
.container:last-child {
  margin-bottom: 80px;
}
nav.bar {
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  padding: 10px;
  height: 44px;
  z-index: 99999;
}
nav.bar .logo {
  height: 100%;
}
nav.bar h2.section-title {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 4px;
  left: 0;
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-family: "Georgia";
  font-weight: normal;
}
@media (max-width: 525px) {
  nav.bar h2.section-title {
    display: none;
  }
}
nav.bar .about {
  font-size: 23px;
  color: #333;
  position: absolute;
  top: 8px;
  right: 106px;
}
nav.bar .share {
  position: absolute;
  right: 5px;
  bottom: 12px;
}
nav.bar .share label {
  background: #eee;
  border-radius: 3px;
}
nav.bar .share .social.networks-5.left {
  margin-left: -210px;
}
.frozen .leaflet-control-zoom {
  display: none;
}
.info-box {
  padding-top: 0;
}
.frozen .info-box {
  overflow: scroll;
}
@media (max-width: 525px) {
  .frozen .info-box {
    overflow: initial;
  }
  .show-back .info-box {
    -webkit-transform: translateY(-52px);
    -ms-transform: translateY(-52px);
    transform: translateY(-52px);
    height: calc(100% - 44px);
    top: 100%;
  }
  .add-transition .info-box {
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
  }
  .show-district .info-box {
    padding-top: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.legend.desktop {
  display: none;
}
.frozen.show-legend .legend.desktop {
  display: block;
}
@media (max-width: 525px) {
  .frozen.show-legend .legend.desktop {
    display: none;
  }
}
.legend.mobile {
  display: none;
}
@media (max-width: 525px) {
  .frozen.show-legend .legend.mobile {
    display: block;
  }
}
.show-locate {
  display: none;
}
@media (max-width: 525px) {
  .frozen.show-legend .show-locate {
    display: block;
  }
}
.frozen .select {
  display: none;
}
.chatter {
  display: none;
  transition: -webkit-transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
}
.frozen .chatter {
  display: block;
}
@media (max-width: 525px) {
  .chatter {
    margin-top: 102px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .frozen .chatter {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
  .show-chatter .chatter {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@media (max-width: 525px) and (max-width: 525px) and (device-aspect-ratio: 40/71) {
  .chatter {
    max-height: 300px;
  }
}
.close-chatter {
  display: none;
}
@media (max-width: 525px) {
  .show-chatter .close-chatter {
    display: block;
  }
}
.location-box {
  display: none;
}
.frozen .location-box {
  display: block;
}
.spinner {
  display: none;
}
.loading .spinner {
  display: block;
}
.result-box {
  display: none;
}
@media (max-width: 525px) {
  .result-box {
    margin-top: 15px;
  }
}
.showing-result .result-box {
  display: block;
}
.validation-box {
  display: none;
}
@media (max-width: 525px) {
  .validation-box {
    margin-top: 6px;
  }
}
.showing-validation .validation-box {
  display: block;
}
@media (max-width: 525px) {
  .search {
    display: none;
  }
}
@media (max-width: 525px) {
  .showing-search .find-by-address {
    display: block;
  }
}
.button {
  display: none;
}
@media (max-width: 525px) {
  .frozen .button {
    display: block;
  }
}
.about {
  display: none;
}
@media (max-width: 525px) {
  .frozen .about {
    display: block;
  }
}
.data-box {
  display: none;
  transition: -webkit-transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
}
.frozen .data-box {
  display: block;
}
@media (max-width: 525px) {
  .frozen .data-box {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
  .show-data .data-box {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.close-data {
  display: none;
}
.show-data .close-data {
  display: block;
}
.view-data {
  display: none;
}
@media (max-width: 525px) {
  .view-data {
    display: block;
  }
  .frozen .view-data {
    display: none;
  }
  .show-district .view-data {
    display: none;
  }
}
.frozen .district-box {
  display: none;
}
@media (max-width: 525px) {
  .district-box {
    display: none;
  }
  .show-back .district-box {
    display: block;
  }
}
.close-district {
  display: none;
}
.show-district .close-district {
  display: block;
}
.back {
  display: none;
}
.show-back .back {
  display: block;
}
.show-district .back {
  display: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100%;
  font-family: "PT Sans";
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  background: #333;
}
h4 {
  margin: 5px 0;
}
.select {
  cursor: pointer;
  margin: 17px;
  min-width: 102px;
}
.view-data {
  position: absolute;
  background: #ca6951;
  border: none;
  padding: 7px 15px;
  margin-top: 4px;
  color: white;
  cursor: pointer;
  border-radius: 3px;
  top: 7px;
  right: 75px;
  letter-spacing: 1px;
  font-size: 12px;
}
.close-district {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 99;
  color: #555;
  font-size: 18px;
}
.outer-legend {
  width: 100%;
}
.legend {
  position: absolute;
  background: white;
  border-radius: 3px;
}
.legend .legend-header {
  text-align: center;
}
.legend .canvas-container {
  clear: both;
}
.legend canvas {
  display: block;
  height: 28px;
  width: 207px;
}
@media (max-width: 525px) {
  .legend canvas {
    width: 100%;
    height: 22px;
  }
}
.legend .legend-label {
  font-weight: bold;
}
.legend .avg-container {
  position: relative;
}
.legend .tiny-label {
  text-align: center;
}
.legend .tiny-label.num {
  padding-top: 4px;
  font-size: 13px;
}
@media (max-width: 525px) {
  .legend .tiny-label.num {
    font-size: 11px;
  }
}
.legend .tiny-label.title {
  font-size: 11px;
}
@media (max-width: 525px) {
  .legend .tiny-label.title {
    font-size: 9px;
  }
}
.legend .tiny-label.min {
  float: left;
  color: #555;
  margin-left: -10px;
}
.legend .tiny-label.max {
  float: right;
  color: #555;
  margin-right: -10px;
}
.legend .tiny-label.average {
  position: absolute;
  color: #333;
  font-weight: bold;
  margin-left: -10px;
}
.legend .average {
  text-align: center;
}
.legend.desktop {
  bottom: 20px;
  left: 20px;
  padding: 15px 25px;
  z-index: 999;
}
.legend.desktop .legend-label {
  font-size: 17px;
  padding-bottom: 8px;
}
.legend.mobile {
  right: 0px;
  bottom: 0px;
  left: inherit;
  width: 60%;
  padding: 9px 19px;
  padding-left: 0;
  font-size: 12px;
  z-index: 99;
  text-align: center;
  margin-right: 6px;
  line-height: 13px;
}
.legend.mobile .legend-label {
  font-size: 12px;
  padding-bottom: 0;
}
.legend.mobile .legend-header {
  padding-bottom: 3px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.show-locate {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  background: #EEE;
  padding: 3px 9px;
  color: #4d9fd7;
  font-size: 16px;
}
.ghost-disclaimer {
  display: none;
  width: calc(100% - 350px);
  position: absolute;
  text-align: center;
  padding-top: 25%;
}
@media (max-width: 700px) {
  .ghost-disclaimer {
    padding-top: 50%;
    width: calc(100% - 220px);
  }
}
@media (max-width: 525px) {
  .ghost-disclaimer {
    width: 100%;
  }
}
.ghost-disclaimer .inner {
  background: #333;
  color: white;
  max-width: 250px;
  margin: auto;
  border-radius: 3px;
  padding: 10px;
}
.ghost-disclaimer.show-disclaimer {
  display: block;
}
.back {
  position: absolute;
  right: 12px;
  color: #555;
  top: 57px;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.1s linear;
  padding: 5px 10px;
  font-weight: bold;
  z-index: 99999;
}
@media (max-width: 525px) {
  .back {
    border-radius: 3px;
    font-weight: initial;
    right: 7px;
    bottom: 12px;
    top: inherit;
  }
}
.back .fa-chevron-right {
  font-size: 12px;
}
.back:hover {
  color: #ca6951;
}
#map {
  width: calc(100% - 350px);
  height: calc(100% - 44px);
  position: fixed;
  top: 44px;
}
@media (max-width: 700px) {
  #map {
    width: calc(100% - 220px);
  }
}
@media (max-width: 525px) {
  #map {
    width: 100%;
    height: calc(100% - 44px - 102px);
  }
  #map.bump-height {
    height: calc(100% - 44px - 52px);
  }
}
.frozen #map {
  cursor: default;
}
#map .district-label {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  font-family: "PT Sans" !important;
}
#map .my-location {
  background-color: black;
  border-radius: 9px;
  border-width: 2px;
  border-style: solid;
  border-color: white;
  width: 15px !important;
  height: 15px !important;
  margin-left: -8px !important;
  margin-top: -8px !important;
}
.info-box {
  z-index: 9999;
  position: fixed;
  right: 0px;
  top: 44px;
  height: calc(100% - 44px);
  width: 350px;
  background: white;
}
@media (max-height: 840px) {
  .info-box {
    background: linear-gradient(180deg, white, white 95%, #dddddd);
  }
}
@media (max-width: 700px) {
  .info-box {
    width: 220px;
  }
}
@media (max-width: 700px) and (max-height: 990px) {
  .info-box {
    background: linear-gradient(180deg, white, white 95%, #dddddd);
  }
}
@media (max-width: 525px) {
  .info-box {
    width: 100%;
    height: auto;
    bottom: 0;
    top: inherit;
    overflow: visible;
  }
  .info-box h2 {
    display: inline;
  }
}
.info-box .chatter {
  padding: 13px 27px;
  padding-top: 20px;
  background: white;
  z-index: 999;
}
.info-box .chatter .headline {
  font-family: Georgia;
  font-size: 24px;
  font-weight: bold;
}
.info-box .chatter .close-chatter {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 18px;
  color: #555;
}
@media (max-width: 700px) {
  .info-box .chatter {
    padding: 20px 21px 10px 21px;
  }
}
@media (max-width: 525px) {
  .info-box .chatter {
    padding-right: 40px;
    position: absolute;
  }
}
.info-box .chatter a {
  text-decoration: none;
  color: #ca6951;
  font-weight: bold;
}
.info-box .chatter a:hover {
  text-decoration: underline;
}
.info-box .chatter .credit {
  font-size: 11px;
  font-style: italic;
  color: #555;
}
.info-box .location-box {
  padding: 8px 0;
  width: 70%;
  background: #EEE;
  margin: auto;
  text-align: center;
  border-radius: 3px;
}
.info-box .location-box .inner-location-box {
  padding-top: 5px;
}
@media (max-width: 700px) {
  .info-box .location-box {
    width: 81%;
  }
}
@media (max-width: 525px) {
  .info-box .location-box {
    width: 100%;
    background: white;
  }
  .info-box .location-box .inner-location-box {
    float: right;
    width: 60%;
    padding-top: 0;
    padding-right: 17px;
  }
}
@media (max-width: 525px) {
  .info-box .location-box .inner-buttons {
    width: 40%;
    height: 59px;
  }
}
.info-box .location-box .button {
  border: none;
  padding: 6px 11px;
  margin-top: 4px;
  color: white;
  cursor: pointer;
  border-radius: 3px;
  letter-spacing: 0.5px;
  font-size: 14px;
  width: 82px;
}
.info-box .location-box .button.explore {
  background: #ca6951;
  margin: auto;
  margin-top: 27px;
}
.info-box .location-box .validation {
  font-style: italic;
}
.info-box .location-box .spinner {
  padding: 5px;
}
@media (max-width: 525px) {
  .info-box .location-box .result-box {
    font-size: 15px;
  }
}
.info-box .location-box .result {
  margin: 0;
}
@media (max-width: 525px) {
  .info-box .location-box .result {
    font-size: 15px;
  }
}
.info-box .location-box .search {
  padding: 9px 0 2px 29px;
  font-size: 10px;
  text-align: left;
}
@media (max-width: 700px) {
  .info-box .location-box .search {
    width: 200px;
    margin: auto;
    padding-left: 16px;
  }
}
.info-box .location-box .search-icon {
  color: #4d9fd7;
  padding: 3px 7px;
  font-size: 15px;
  background: #EEE;
  border-radius: 3px;
  margin-left: 3px;
}
.info-box .location-box .find-by-address {
  transition: height 0.5s linear;
  margin: auto;
  padding-bottom: 10px;
}
@media (max-width: 525px) {
  .info-box .location-box .find-by-address {
    margin-top: 4px;
  }
}
.info-box .location-box .find-by-address .address {
  display: inline-block;
  width: 106px;
  border: 1px solid #CCC;
  padding: 0.5em;
  border-radius: 3px;
}
@media (max-width: 700px) {
  .info-box .location-box .find-by-address .address {
    max-width: 85px;
  }
}
@media (max-width: 525px) {
  .info-box .location-box .find-by-address .address {
    max-width: 150px;
  }
}
.info-box .location-box .find-by-address .onward-button {
  background: #ca6951;
  border: none;
  padding: 6px;
  padding-bottom: 7px;
  margin-left: 3px;
  width: 40px;
  color: white;
  cursor: pointer;
  border-radius: 3px;
}
.info-box .location-box .find-by-address .onward-button:hover {
  background: #fcbb75;
}
@media (max-width: 700px) {
  .info-box .location-box .find-by-address .onward-button {
    width: 32px;
  }
}
.info-box .location-box .find-by-address .locate-icon {
  background: #CCC;
  color: #333;
  padding: 6px 8px;
  border-radius: 50%;
  margin-left: 5px;
  cursor: pointer;
  font-size: 16px;
}
.info-box .location-box .find-by-address .locate-icon:hover {
  background: #555;
  color: white;
}
@media (max-width: 525px) {
  .info-box .location-box .find-by-address .locate-icon {
    background: #EEE;
  }
}
.located .info-box .location-box .find-by-address .locate-icon {
  color: #4d9fd7;
}
@media (max-width: 525px) {
  .info-box .data-box {
    position: absolute;
    width: 100%;
    background: white;
    z-index: 99;
  }
}
.info-box .data-box .close-data {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 18px;
  color: #555;
}
.info-box .data-box h4 {
  padding-top: 18px;
  padding-left: 27px;
  font-size: 15px;
}
@media (max-width: 700px) {
  .info-box .data-box h4 {
    padding-left: 21px;
    padding-top: 8px;
  }
}
.info-box .data-box .demo-tile {
  border-bottom: 1px solid #EEE;
  padding: 8px 27px;
  cursor: pointer;
}
@media (max-width: 700px) {
  .info-box .data-box .demo-tile {
    padding: 8px 21px;
  }
}
.info-box .data-box .demo-tile .demo-name {
  padding-left: 4px;
  transition: padding-left 0.1s ease-in;
  font-size: 14.5px;
}
.info-box .data-box .demo-tile .fa-chevron-right {
  color: #ca6951;
  font-size: 12px;
  transition: -webkit-transform 0.1s ease-in;
  transition: transform 0.1s ease-in;
}
.info-box .data-box .demo-tile.open .fa-chevron-right {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.info-box .data-box .demo-box {
  height: 0;
  overflow: hidden;
}
.info-box .data-box .demo-box.transition-in {
  transition: height 0.5s ease-in;
}
.info-box .data-box .demo-box.transition-out {
  transition: height 0.5s ease-out;
}
.info-box .data-box .demo-box ul {
  padding: 0 0 0 20px;
  margin: 5px;
  margin-top: 0;
  list-style: none;
}
.info-box .data-box .demo-box .demo {
  cursor: pointer;
  padding-top: 5px;
}
.info-box .data-box .demo-box .demo:hover {
  color: #ca6951;
}
.info-box .data-box .demo-box .demo.active {
  font-weight: bold;
}
.info-box .data-box .demo-box .demo.active .fa-check {
  display: inline-block;
}
.info-box .data-box .demo-box .demo .fa-check {
  display: none;
}
.info-box .district-box {
  padding: 0 20px;
  overflow: scroll;
  height: calc(100% - 52px);
}
