/* Minification failed. Returning unminified contents.
(221,46): run-time error CSS1030: Expected identifier, found 'p'
(221,47): run-time error CSS1031: Expected selector, found ')'
(221,47): run-time error CSS1025: Expected comma or open brace, found ')'
(345,37): run-time error CSS1030: Expected identifier, found '['
(345,51): run-time error CSS1031: Expected selector, found '='
(345,51): run-time error CSS1025: Expected comma or open brace, found '='
(349,37): run-time error CSS1030: Expected identifier, found '['
(349,51): run-time error CSS1031: Expected selector, found '='
(349,51): run-time error CSS1025: Expected comma or open brace, found '='
(353,37): run-time error CSS1030: Expected identifier, found '['
(353,51): run-time error CSS1031: Expected selector, found '='
(353,51): run-time error CSS1025: Expected comma or open brace, found '='
(357,37): run-time error CSS1030: Expected identifier, found '['
(357,51): run-time error CSS1031: Expected selector, found '='
(357,51): run-time error CSS1025: Expected comma or open brace, found '='
(361,37): run-time error CSS1030: Expected identifier, found '['
(361,51): run-time error CSS1031: Expected selector, found '='
(361,51): 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 */
/* Variables
**********************************/
/* all vars, no need for @if critical */
/* 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

*/
.site-map {
  position: relative;
  overflow: hidden;
  width: 94%;
  margin: 0 auto;
  border-radius: .75rem;
}

.site-map .gmap-wrap {
  box-sizing: border-box;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .site-map .gmap-wrap {
    display: flex;
  }
}

.site-map .gmap {
  margin-bottom: 0;
  height: 750px;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .site-map .gmap {
    width: calc(100% - 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;
  }
}

.site-map h2, .site-map .h2 {
  color: currentColor;
}

.gm-style .gm-style-iw-c {
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  background-color: #fff;
  color: #000;
  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;
}

.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: #f26f25;
}

.gm-style .gm-style-iw-c .gm-ui-hover-effect:focus-visible {
  outline: 2px solid blue;
}

.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: "Questrial", sans-serif;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 500px;
}

@media screen and (max-width: 767px) {
  .gmap-tooltip {
    width: auto;
  }
}

.gmap-tooltip .description p {
  margin-bottom: .5rem;
}

.gmap-tooltip .description p:last-of-type {
  margin-bottom: 0;
}

.gmap-content {
  position: relative;
  padding: 1rem 2rem;
  max-height: 200px;
  box-sizing: border-box;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .gmap-content {
    max-width: 100%;
  }
}

.gmap-content address p:not(#modal-container p) {
  margin-bottom: .5rem;
}

.gmap-content h2 {
  display: block;
  font-family: "Young Serif", serif;
  font-size: 1.285rem !important;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: none;
}

.gmap-content a {
  display: block;
}

.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 {
  padding: 0;
  margin: 0;
}

.gmap-content .gmap-distance, .gmap-content .gmap-duration, .gmap-content a.gmap-website-link {
  font-weight: bold;
}

.gmap-addr {
  line-height: 1.25em;
}

.gmap-img {
  flex: 0 0 40%;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 767px) {
  .gmap-img {
    display: none;
  }
}

.gmap-tel {
  text-decoration: none;
}

.gmap-tel:last-child {
  margin-bottom: .5rem;
}

.gmap-desc {
  max-height: 7em;
  overflow: auto;
}

.gmap-desc p:last-of-type {
  margin-bottom: 0;
}

.map-categories {
  box-sizing: border-box;
  padding-top: 1px;
  width: 400px;
  background-color: #4d453c;
  color: #fff;
  transition: transform 350ms ease;
}

@media screen and (max-width: 991.98px) {
  .map-categories {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .map-categories {
    z-index: 1;
  }
}

.map-categories.hidden {
  transform: translateX(100%);
}

.map-categories > h2 {
  align-self: flex-start;
  margin: 4rem 0 2rem 3rem;
}

@media screen and (max-width: 991.98px) {
  .map-categories > h2 {
    margin-top: 2rem;
  }
}

.map-categories .accordion {
  width: 100%;
  overflow-y: auto;
}

@media screen and (min-width: 1024px) {
  .map-categories .accordion {
    margin: 0 auto;
  }
}

.map-categories .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: currentColor;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.map-categories .accordion-item:has([data-category="all"][aria-expanded="true"]) {
  border-color: #f26f25;
}

.map-categories .accordion-item:has([data-category="dine"][aria-expanded="true"]) {
  border-color: #8db8be;
}

.map-categories .accordion-item:has([data-category="outdoor"][aria-expanded="true"]) {
  border-color: #ffaf40;
}

.map-categories .accordion-item:has([data-category="shopping"][aria-expanded="true"]) {
  border-color: #d9d5d0;
}

.map-categories .accordion-item:has([data-category="arts-&-culture"][aria-expanded="true"]) {
  border-color: #638c3e;
}

.map-categories .accordion-body {
  max-height: 250px;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem 0 0;
}

.map-categories .accordion-body .location-link {
  position: relative;
  padding: .5rem 0;
  text-align: left;
  width: 100%;
  padding: .5rem 1.25rem .5rem 3rem;
  margin: 0;
}

.map-categories .accordion-body .location-link::before {
  content: '\2022';
  display: inherit;
  padding-right: .5rem;
  font-size: .6rem;
  line-height: 1;
  transform: translateY(-0.15rem);
}

.map-categories .accordion-body .location-link.active {
  font-weight: 600;
}

.map-categories .accordion-header .accordion-button {
  text-transform: uppercase;
}

.map-categories .accordion-button {
  position: relative;
  color: #fff;
  gap: 1rem;
  font-family: "Young Serif", serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.3em;
  background-color: transparent;
  transition: all .35s;
}

@media screen and (max-width: 767px) {
  .map-categories .accordion-button {
    padding: 1rem .75rem;
  }
}

.map-categories .accordion-button::before {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity .35s;
}

.map-categories .accordion-button[data-category="dine"]::before {
  background-image: url(/components/maunakeabeachhotel/interactive_map/images/pins/dine-pin.png);
}

.map-categories .accordion-button[data-category="outdoor"]::before {
  background-image: url(/components/maunakeabeachhotel/interactive_map/images/pins/outdoor-pin.png);
}

.map-categories .accordion-button[data-category="shopping"]::before {
  background-image: url(/components/maunakeabeachhotel/interactive_map/images/pins/shopping-pin.png);
}

.map-categories .accordion-button[data-category="arts-&-culture"]::before {
  background-image: url(/components/maunakeabeachhotel/interactive_map/images/pins/arts-pin.png);
}

.map-categories .accordion-button[aria-expanded="true"] {
  padding-left: 3rem;
}

.map-categories .accordion-button[aria-expanded="true"]::before {
  opacity: 1;
}

.map-categories .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.map-categories .accordion-button:not(.collapsed)::after {
  content: '\00d7';
}

.map-categories .accordion-button::after {
  content: '+';
  background-image: none;
  transform: none;
  font-size: 1.5rem;
  font-weight: 700;
  opacity: .5;
}

.map-categories .accordion-button:focus {
  box-shadow: none;
}

.map-categories .accordion-button:focus-visible {
  outline: 2px solid blue;
  outline-offset: -2px;
}

.map-categories .accordion-collapse {
  margin-bottom: 1rem;
}

.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%);
}

.accordion-body .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  top: 0;
  transform: none;
}
