@import "../bower_components/normalize-css/normalize.css";
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600);
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  overflow: hidden;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  max-width: 64rem;
}
text {
  text-anchor: middle;
  alignment-baseline: central;
}
#map_items {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
  margin: 20px auto;
  padding: 0;
  list-style-type: none;
  -webkit-column-count: 4;
  /* Chrome, Safari, Opera */
  -moz-column-count: 4;
  /* Firefox */
  column-count: 4;
  color: #999;
  font-size: .85em;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 300;
}
#map_items li {
  counter-increment: customlistcounter;
  cursor: pointer;
}
#map_items li:before {
  content: counter(customlistcounter) " ";
  font-weight: 400;
  float: left;
  width: 1.5em;
  color: #41759A;
}
#map_items li:hover {
  font-weight: 400;
}
#map_items:first-child {
  counter-reset: customlistcounter;
}
.container {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #eee;
  border-top: none;
}
.details-panel {
  position: absolute;
  display: none;
  background-color: #fff;
  overflow: auto;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #41759A;
  font-size: .9em;
  box-shadow: 4px 4px 20px -12px black;
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
}
.details-panel h1 {
  font-size: 2.5em;
  line-height: 1em;
  margin-bottom: 7px;
}
.details-panel .photo {
  display: block;
  margin: -25px -20px 0px -20px;
}
.details-panel img {
  display: block;
  margin: -25px -10px -10px 0;
  max-width: 100%;
}
.details-panel .address,
.details-panel .phone,
.details-panel .website {
  font-size: .85em;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  color: #7aa7c7;
}
.details-panel .address a,
.details-panel .phone a,
.details-panel .website a {
  color: #7aa7c7;
}
.details-panel p {
  color: #999;
  font-size: .95em;
  line-height: 1.2em;
  margin-top: 7px;
}
.details-panel-close {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  cursor: pointer;
}
.details-panel-close rect {
  fill: #fff;
}
.details-panel-close text {
  fill: #325a76;
  stroke: none;
  font-weight: 300;
  letter-spacing: .3px;
}
.canvas {
  width: 100%;
  height: 100%;
}
.canvas #timeline-background {
  fill: #fff;
}
.canvas #timeline-marker {
  fill: #f7f7f7;
  stroke: none;
}
.canvas #marker-details-button {
  fill: #f7f7f7;
  cursor: pointer;
}
.canvas #marker-details-button text {
  stroke: none;
  fill: #41759A;
  font-size: .7em;
  font-weight: 300;
  letter-spacing: .05px;
}
.canvas .timeline-controls {
  position: relative;
  width: 100%;
  overflow: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.canvas .timeline-controls .timeline-point {
  fill: none;
}
.canvas .timeline-controls .timeline-point .accent {
  fill: #41759A;
}
.canvas .timeline-controls .timeline-point .button {
  fill: #fff;
}
.canvas .timeline-controls .timeline-point text {
  fill: #41759A;
  stroke: none;
  font-size: 1.2em;
  font-weight: 300;
  letter-spacing: .3px;
}
.canvas #content-background {
  fill: #eee;
}
.canvas .content .marker {
  fill: #F0B05C;
  stroke: none;
}
.d3-tip {
  font-size: .8em;
  line-height: 1em;
  padding: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 2px;
  /* Creates a small triangle extender for the tooltip */
  /* Style northward tooltips differently */
}
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  content: "\25BC";
  position: absolute;
  text-align: center;
}
.d3-tip.n:after {
  margin: -1px 0 0 0;
  top: 100%;
  left: 0;
}
