
/*Setting the section padding as a variable*/
:root {
  --section-padding: 90px;
}

/*Background colour on locations entry focus*/
article.timeline.highlighted > div > div > section {
  background-color: rgba(149, 201, 204, 0.6) !important;
}

/*Adding variable margin before entry*/
.location-on-map::before {
  display: block; 
  content: " "; 
  margin-top: calc(-1 * var(--section-padding));
  height: var(--section-padding);
  visibility: hidden; 
  pointer-events: none;
}

/*Setting the map wrapper size and relative position*/
.map-explorer-wrapper {
  position: relative;
  height: 100vh;
  width: auto;
}

/*Setting the size of the map itself*/
#map_explorer {
  width: 100%;
  height: 100%;
}

/*Custom style for the markers on map*/
.marker-cluster-small {background-color: rgba(149, 201, 204, 0.6);}
.marker-cluster-small div {background-color: rgba(149, 201, 204);}
.marker-name {
	display: block;
	font-family: 'Old Standard TT';
	font-size: 1.3em;
	line-height: 1.2em;
	color: #606060;
}

.marker-address {
  display: block;
  font-family: 'lato';
  font-size: 1em;
  color: #29739b;
  padding-top: 5px;
}



/*#map_explorer {
  height: 100%;
  min-height: 540px;
}*/

/*@media all and (max-width: 767px) {
  :root {
    --section-padding: 340px;
  }
}*/