/* Minification failed. Returning unminified contents.
(275,46): run-time error CSS1030: Expected identifier, found 'p'
(275,47): run-time error CSS1031: Expected selector, found ')'
(275,47): run-time error CSS1025: Expected comma or open brace, found ')'
 */
/* Variables
**********************************/
/* all vars, no need for @if critical */
/* breakpoints */
/* Animation - see header.scss for usage examples */
/* Form placeholders */
/* Usage:

	.foo {
	  @include placeholder {
		color: green;
	  }
	}

	@include placeholder {
	  color: red;
	}
*/
/* Flexbox 
***************************************/
/* Card */
/* Filter */
/* Gridder */
/*
	TABLE OF CONTENTS:
		- OVERALL MAP SECTION
		- OVERRIDING DEFAULT GOOGLE MAPS STYLES
			- TRIANGLE INDICATOR
		- CUSTOM CONTENT
			- INFOWINDOW CONTENT CONTAINER
			- TEXT CONTENT SECTION OF INFOWINDOW
			- MISCELLANEOUS INDIVIDUAL FIELDS
		- MAP NAVIGATION
			- DECORATIVE ELEMENT
			- DROPDOWN FOR CATEGORIES
				- TOGGLE BUTTON
				- LIST OF DROPDOWN ITEMS

*/
[hdmtype="interactivemap"] {
  outline-offset: -1px;
}

.site-map {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.site-map .gmap-wrap {
  box-sizing: border-box;
  position: relative;
  display: flex;
}

@media screen and (max-width: 767px) {
  .site-map .gmap-wrap {
    flex-direction: column;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .site-map .gmap-wrap {
    flex-direction: column;
  }
}

.site-map .gmap {
  margin-bottom: 0;
  height: 900px;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .site-map .gmap {
    width: calc(100% - 400px);
  }
}

@media screen and (max-width: 767px) {
  .site-map .gmap {
    width: 100%;
    height: 400px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .site-map .gmap {
    width: 100%;
    height: 400px;
  }
}

.site-map .absolute-img {
  z-index: 1;
  transition: left 350ms ease;
}

@media screen and (min-width: 1024px) {
  .site-map .absolute-img {
    bottom: 0;
    position: absolute;
    left: 23vw;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 605px) {
  .site-map .absolute-img {
    display: none;
  }
}

@media screen and (min-width: 605px) {
  .site-map .decorative-img {
    max-width: 200px;
    width: 20vw;
  }
}

.gm-style .gm-style-iw-c {
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  background-color: #fff;
  color: #000000;
  transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 1023px) {
  .gm-style .gm-style-iw-c {
    max-width: 80vw !important;
  }
}

.gm-style .gm-style-iw-c .gm-style-iw-chr {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.gm-style .gm-style-iw-c .gm-ui-hover-effect {
  width: 44px !important;
  height: 44px !important;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .gm-style .gm-style-iw-c .gm-ui-hover-effect {
    width: 25px !important;
    height: 25px !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .gm-style .gm-style-iw-c .gm-ui-hover-effect {
    width: 25px !important;
    height: 25px !important;
  }
}

.gm-style .gm-style-iw-c .gm-ui-hover-effect::before {
  content: '\e829';
  font-family: 'fontello';
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gm-style .gm-style-iw-c .gm-ui-hover-effect > span {
  visibility: hidden;
}

.gm-style .gm-style-iw-c .gm-ui-hover-effect:hover {
  color: #1A2F5B;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

.gm-style .gm-style-iw-tc {
  display: none;
}

.gmap-tooltip {
  box-sizing: border-box;
  line-height: 1.4em;
  font-family: "Cormorant Garamond", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  max-height: 550px;
  max-width: 400px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .gmap-tooltip {
    width: auto;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .gmap-tooltip {
    width: auto;
  }
}

.gmap-tooltip {
  box-sizing: border-box;
  line-height: 1.4em;
  font-family: "Cormorant Garamond", serif;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  max-height: 200px;
  max-width: 600px;
  color: #000;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .gmap-tooltip {
    flex-direction: column;
    max-height: none;
    width: auto;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .gmap-tooltip {
    flex-direction: column;
    max-height: none;
    width: auto;
  }
}

address {
  margin-bottom: 1em;
}

.gmap-content {
  position: relative;
  padding: 2em 1.5em 1.5em 1.5em;
  margin: 0;
  box-sizing: border-box;
  flex: 1;
  max-height: none;
  max-width: none;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .gmap-content {
    max-width: 100%;
    padding: 1.25em;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .gmap-content {
    max-width: 100%;
    padding: 1.25em;
  }
}

.gmap-content address p:not(#modal-container p) {
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-family: "Lato", sans-serif !important;
}

.gmap-content h2 {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem !important;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: .01em;
  text-transform: none;
  margin-bottom: 1rem;
}

.gmap-content a {
  display: block;
  font-size: 13px;
  margin-bottom: 0.3rem;
}

.gmap-content a:focus-visible {
  outline: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.gmap-content p, .gmap-content a:not(.gmap-directions) {
  font-weight: 500;
}

.gmap-content .distance,
.gmap-content .drive-time,
.gmap-content .gmap-distance,
.gmap-content .gmap-duration {
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}

.gmap-content .distance::before,
.gmap-content .drive-time::before,
.gmap-content .gmap-distance::before,
.gmap-content .gmap-duration::before {
  content: attr(data-label) ": ";
  font-weight: normal;
}

.gmap-addr {
  line-height: 1.5em;
}

.gmap-addr span {
  display: block;
}

.gmap-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex: 0 0 40%;
}

.gmap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flex-map-categories {
  z-index: 1;
  position: absolute;
  left: .5rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  flex-wrap: wrap-reverse;
  pointer-events: none;
}

@media screen and (max-width: 1023px) {
  .flex-map-categories {
    pointer-events: auto;
    display: none;
  }
}

.mobile-title {
  display: none;
  margin-bottom: 0;
  max-width: 6em;
  line-height: 1;
  text-indent: 1em;
  color: #006076;
}

.mobile-title span {
  color: #1A2F5B;
  position: relative;
  left: 2.5em;
}

@media screen and (max-width: 767px) {
  .mobile-title {
    display: block;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .mobile-title {
    display: block;
    position: relative;
    left: 20%;
  }
}

@media only screen and (max-width: 780px) and (orientation: landscape) {
  .mobile-title {
    position: relative;
    left: 20%;
  }
}

.map-categories {
  box-sizing: border-box;
  width: 400px;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 350ms ease;
}

@media screen and (max-width: 767px) {
  .map-categories {
    width: 100%;
    height: auto;
    max-height: 900px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .map-categories {
    width: 100%;
    height: auto;
    max-height: 900px;
  }
}

@media screen and (min-width: 769px) {
  .map-categories {
    z-index: 1;
  }
}

.map-categories.hidden {
  transform: translateX(100%);
}

.map-categories .absolute-title {
  position: absolute;
  top: 3rem;
  max-width: 6em;
  line-height: 1;
  text-indent: -1em;
  color: #006076;
}

.map-categories .absolute-title span {
  color: #1A2F5B;
}

@media only screen and (max-width: 968px) and (orientation: landscape) {
  .map-categories .absolute-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .map-categories .absolute-title {
    display: none !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .map-categories .absolute-title {
    display: none !important;
  }
}

.map-categories .accordion {
  max-height: 790px;
  overflow-y: auto;
}

@media screen and (min-width: 1024px) {
  .map-categories .accordion {
    width: 350px;
    height: 550px;
    margin: 0 auto;
  }
}

.map-categories .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid;
}

.map-categories .accordion-body {
  max-height: 300px;
  padding: .5rem 0;
}

.map-categories .accordion-body .location-link {
  display: block;
  font-family: "Lato", sans-serif;
  position: relative;
  text-align: left;
  width: 100%;
  padding: 1rem 0;
  margin: 0 0 0 1.5rem;
}

@media screen and (max-width: 991.98px) {
  .map-categories .accordion-body .location-link {
    padding: .75rem 0;
  }
}

.map-categories .accordion-body .location-link:not(:last-child) {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.25);
}

.map-categories .accordion-body .location-link.active {
  font-weight: 800;
}

.map-categories .accordion-header .accordion-button {
  text-transform: uppercase;
}

.map-categories .accordion-button {
  position: relative;
  color: #1A2F5B;
  font-family: "Lato", sans-serif;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .005em;
  text-transform: uppercase !important;
  padding: 1.1rem 0;
  background-color: transparent;
  justify-content: space-between;
  margin-bottom: 0;
}

.map-categories .accordion-button:not(.collapsed) {
  color: #000000;
  box-shadow: none;
  border-bottom: 1px solid;
}

.map-categories .accordion-button:not(.collapsed)::after {
  content: '-';
}

.map-categories .accordion-button:not(.collapsed)[data-category="dining-and-nightlife"], .map-categories .accordion-button:not(.collapsed)[data-category="dining-&-nightlife"] {
  color: #f1c43c;
}

.map-categories .accordion-button:not(.collapsed)[data-category="lifestyle-and-shopping"], .map-categories .accordion-button:not(.collapsed)[data-category="lifestyle-&-shopping"] {
  color: #f67a62;
}

.map-categories .accordion-button:not(.collapsed)[data-category="transportation"] {
  color: #88acd4;
}

.map-categories .accordion-button:not(.collapsed)[data-category="parks"] {
  color: #a2bf88;
}

.map-categories .accordion-button::after {
  content: '+';
  background-image: none;
  transform: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.map-categories .accordion-button:focus {
  box-shadow: none;
}

.accordion .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .accordion-body .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}

.accordion .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .accordion-body .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.5);
}

.accordion .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  top: 50% !important;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .accordion .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    transform: unset !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .accordion .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    transform: unset !important;
  }
}

.accordion-body .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  top: 0;
  transform: none;
}
