/**
 * Theme Name:      Good Geeb
 * Author: 		    Alexander Gilbert
 * Tested up to:    6.8.1
 * Version:         1.0.0
 * License:         GNU General Public License v2 or later
 * License URI:     https://www.gnu.org/licenses/gpl-2.0.html
 */

/* Appearance > Menus > Experience > CSS */
.temp-experience-greyed a {
	color: #999999 !important;
	pointer-events: none !important;
}
@keyframes backgroundGlow {
    0%, 100% { border-color: #15173D; }
    50% { border-color: #87CCB0; }
}

/* Stay page hidden section */
.temp-hidden-section {
	display: none !important;
}

#dash-nav-highlights {
	filter: saturate(0);
}


/**
 *
 * Global
 * 
 */

/* Lazy Load fade-in */
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity 0.5s linear 0.2s;
    -moz-transition: opacity 0.5s linear 0.2s;
    transition: opacity 0.5s linear 0.2s;
    opacity: 1;
}

/* Change Wordpress nav menu breakpoint from 600px default */
@media (max-width: 768px) {
    .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display:block !important;
    }
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        display: none;
    }
}

:root {--default-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);}
:root {--close-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);}

html {
	scroll-behavior: smooth;
	/* scroll-padding-top: 100px; /* Match your header height */
}
body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

a, button, input, textarea, select, [role="button"], [tabindex], [onclick], [data-toggle], [data-menu], [data-target] {
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
    /* user-select: none !important; */
    /* outline: none !important; */
    border: none !important;
}
a {
	display: inline-block;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
}
@media (hover: hover) {
	a:hover {
		transition: color 0.2s ease, transform 0.2s ease;
	}
}
a:focus-visible,
a:active {
	transform: scale(0.9);
}

/**
 *
 * Page loading
 * 
 */
/*
#loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	background-color: #FFFAF0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;
	opacity: 1;
    animation: loading-overlay-fadeout 1.5s ease-out forwards;*/ /*1.75s ease-out forwards;*/ /*
    pointer-events: auto;
}
@keyframes loading-overlay-fadeout {
	0%, 60% {opacity: 1; pointer-events:auto;}
    100% {opacity: 0; pointer-events:none;}
}
#loading-icon {
	position: relative;
    width: 64px;
    height: 64px;
	filter: drop-shadow(var(--close-shadow));
    background-size: contain;
    transform-style: preserve-3d;
    z-index: 10;
}
#loading-icon::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 3px solid #15173D;
    animation: loading-icon-progress-circle 0.875s linear forwards;*/ /*1.125s linear forwards;*/ /*
    transform: rotate(45deg);
}
@keyframes loading-icon-progress-circle {
    0%   {clip-path:polygon(50% 50%,0 0,0    0,0    0   ,0    0   ,0    0   )}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0   ,100% 0   ,100% 0   )}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    0   )}
}

.stay-page-loading-icon {
	background: url('/wp-content/uploads/logo5cccr.webp') no-repeat center center/contain;
}
.booking-page-loading-icon {
	background: url('/wp-content/uploads/logo5cccr.webp') no-repeat center center/contain;
}
.experience-page-loading-icon {
	background: url('/wp-content/uploads/paper-castle2.webp') no-repeat center center/contain;
}
.golf-page-loading-icon {
	background: url('/wp-content/uploads/paper-golf.webp') no-repeat center center/contain;
}
.help-page-loading-icon {
	background: url('/wp-content/uploads/paper-message.webp') no-repeat center center/contain;
}

*/

/**
 *
 * Header, Footer, & Floaters
 * 
 */
.site-header-background-container {
	border-bottom: 1.5px solid #fffaf0;
}
.site-logo {
	transition: opacity 0.2s ease;
}
@media (max-width: 359px) {
    .site-title {
        font-size: 20px !important;
    }
}
@media (min-width: 360px) and (max-width: 399px) {
    .site-title {
        font-size: 24px !important;
    }
}
.site-title-top {
	margin: 0px;
	font-style: italic;
}
.site-title-bottom {
	margin: -16px 0 0 0;
	letter-spacing: 6px;
}
@media (hover: hover) {
	.site-logo:hover {
		opacity: 0;
	}
	.primary-menu:hover svg {
		fill: #87CCB0 !important;
	}
	.primary-menu a:hover {
		color: #87CCB0 !important;
	}
}
.site-logo:focus-visible,
.site-logo:active {
	opacity: 0;
}
.primary-menu:focus-visible svg,
.primary-menu:active svg {
	fill: #87CCB0 !important;
}
.primary-menu a:focus-visible,
.primary-menu a:active {
	color: #87CCB0 !important;
}
.menu-stay.wp-block-navigation-submenu {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}
.menu-stay.wp-block-navigation-submenu li {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}
.submenu-item a {
	position: relative;
	font-size: 16px;
	font-family: "Cormorant Garamond";
	font-weight: 600;
    display: block;
    padding: 10px 0 10px 36px !important;
}

.submenu-item > a::before {
    content: "";
	border: 1px solid #fffaf0;
	border-radius: 50%;
    background-size: 101%;
	background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
	transition: background-image 0.3s ease;
}
.submenu-item.item-cw > a::before {
    background-image: url('/wp-content/uploads/logo5cb-p3.svg');
}
.submenu-item.item-pm > a::before {
    background-image: url('/wp-content/uploads/logo5cb-g3.svg');
}
.submenu-item.item-dv > a::before {
    background-image: url('/wp-content/uploads/logo5cb-y3.svg');
}
.submenu-item.item-we > a::before {
    background-image: url('/wp-content/uploads/logo5cb-b3.svg');
}
@media (hover: hover) {
    .submenu-item.item-cw > a:hover::before {
        background-image: url('/wp-content/uploads/logo5cb-p3press.svg');
		border-color: #87ccb0;
    }
    .submenu-item.item-pm > a:hover::before {
        background-image: url('/wp-content/uploads/logo5cb-g3press.svg');
		border-color: #87ccb0;
    }
    .submenu-item.item-dv > a:hover::before {
        background-image: url('/wp-content/uploads/logo5cb-y3press.svg');
		border-color: #87ccb0;
    }
    .submenu-item.item-we > a:hover::before {
        background-image: url('/wp-content/uploads/logo5cb-b3press.svg');
		border-color: #87ccb0;
    }
}
.submenu-item.item-cw > a:active::before,
.submenu-item.item-cw > a:focus-visible::before {
	background-image: url('/wp-content/uploads/logo5cb-p3press.svg');
	border-color: #87ccb0;
}
.submenu-item.item-pm > a:active::before,
.submenu-item.item-pm > a:focus-visible::before {
	background-image: url('/wp-content/uploads/logo5cb-g3press.svg');
	border-color: #87ccb0;
}
.submenu-item.item-dv > a:active::before,
.submenu-item.item-dv > a:focus-visible::before {
	background-image: url('/wp-content/uploads/logo5cb-y3press.svg');
	border-color: #87ccb0;
}
.submenu-item.item-we > a:active::before,
.submenu-item.item-we > a:focus-visible::before {
	background-image: url('/wp-content/uploads/logo5cb-b3press.svg');
	border-color: #87ccb0;
}
.submenu-item > a::after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 170px;
    top: 60%;
    transform: translateY(-50%);
	transition: background-image 0.3s ease;
}
#mobile-menu-content .submenu-item > a::after {
    top: 80%;
}
.submenu-item.item-cw > a::after {
    background-image: url('/wp-content/uploads/guest-num2.svg');
}
.submenu-item.item-pm > a::after {
    background-image: url('/wp-content/uploads/guest-num4.svg');
}
.submenu-item.item-dv > a::after {
    background-image: url('/wp-content/uploads/guest-num5.svg');
}
.submenu-item.item-we > a::after {
    background-image: url('/wp-content/uploads/guest-num4.svg');
}
@media (hover: hover) {
    .submenu-item.item-cw > a:hover::after {
        background-image: url('/wp-content/uploads/guest-num2press.svg');
    }
    .submenu-item.item-pm > a:hover::after {
        background-image: url('/wp-content/uploads/guest-num4press.svg');
    }
    .submenu-item.item-dv > a:hover::after {
        background-image: url('/wp-content/uploads/guest-num5press.svg');
    }
    .submenu-item.item-we > a:hover::after {
        background-image: url('/wp-content/uploads/guest-num4press.svg');
    }
}
.submenu-item.item-cw > a:active::after,
.submenu-item.item-cw > a:focus-visible::after {
	background-image: url('/wp-content/uploads/guest-num2press.svg');
}
.submenu-item.item-pm > a:active::after,
.submenu-item.item-pm > a:focus-visible::after {
	background-image: url('/wp-content/uploads/guest-num4press.svg');
}
.submenu-item.item-dv > a:active::after,
.submenu-item.item-dv > a:focus-visible::after {
	background-image: url('/wp-content/uploads/guest-num5press.svg');
}
.submenu-item.item-we > a:active::after,
.submenu-item.item-we > a:focus-visible::after {
	background-image: url('/wp-content/uploads/guest-num4press.svg');
}

#mobile-menu-content .submenu {
	width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 0;
    margin: 0 0 0 0;
}
#mobile-menu-content .has-submenu.open .submenu {
    max-height: 300px;
}
#mobile-menu-content .submenu-item {
    margin: 10px 0 10px 0;
}
#mobile-menu-content .submenu-item a {
    padding: 0 0 0 36px !important;
}
.menu-item-stay {
    position: relative;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
}
.submenu-toggle {
    margin-left: 10px;
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    position: relative;
    padding: 0;
}
.submenu-toggle::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fffaf0;
    border-bottom: 2px solid #fffaf0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin: 0;
}
.has-submenu.open .submenu-toggle::before {
    transform: rotate(225deg) translateX(-3px) translateY(-3px);
}
@media (hover: hover) {
    .submenu-toggle:hover::before {
        border-color: #87CCB0;
    }
}
.submenu-toggle:active::before {
	border-color: #87CCB0;
}
.submenu-toggle:focus-visible::before {
	border-color: #87CCB0;
}

.menu-stay.active,
.menu-experience.active,
.menu-golf.active,
.menu-help.active,
.menu-booking.active {
  color: #87CCB0 !important;
}

.language-switcher {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    padding: 4px;
    text-align: center; /* Ensures proper centering */
}
@media (min-width: 769px) {
	#switcherMobile {
		display: none;
	}
    .language-switcher {
        padding-left: 26px;
        padding-right: 26px;
    }
}
@media (max-width: 768px) {
	#switcherDesktop {
		display: none;
	}
}
.current-flag {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
    width: 28px;
    height: auto;
    transition: transform 0.2s;
    display: block; /* Ensures proper centering */
    margin: 0 auto; /* Centers the flag horizontally */
}

.current-flag:hover {
    transform: scale(1.05);
}

.flags-dropdown {
    display: none;
    position: absolute;
    background-color: #FFFAF0;
    box-shadow: 4px 4px 6px rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 4px 8px; /* Adjusted padding */
    z-index: 100;
    left: 50%; /* Start from center */
    transform: translateX(-50%); /* Shift back by half width */
    top: 100%;
    width: auto; /* Let content determine width */
    min-width: 28px; /* Minimum width */
}

.language-switcher:hover .flags-dropdown,
.language-switcher.open .flags-dropdown {
    display: block;
}

.flag-option {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
    padding: 0; /* Vertical padding only */
}

.flag-option img {
    width: 28px;
    height: auto;
    display: block;
    margin: 0 auto; /* Center flags in dropdown */
}

.flag-option:hover {
    background-color: #f8f8f8;
    border-radius: 4px;
}




/* Mobile Menu Toggle */
#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFAF0;
    margin: 5px 0;
    transition: transform 0.5s ease, opacity 0.5s ease, background 0.2s ease;
}
@media (hover: hover){
	#mobile-menu-toggle:hover .toggle-bar {
	background: #87CCB0;
	}
}
#mobile-menu-toggle:focus-visible .toggle-bar,
#mobile-menu-toggle:active .toggle-bar {
	background: #87CCB0;
}

/* Menu Overlay */
#mobile-menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100% - var(--header-height));
    background: rgba(0,0,0,0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -2;
}

/* Menu Content */
#mobile-menu-content {
    position: fixed;
    top: var(--header-height);
	left: 0;
    width: 100%;
    background: #15173D;
	border-bottom: 1px solid #0d0e26;
	filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
	transform: translateY(-100%);
    transition: all 0.8s ease;
    z-index: -1;
    padding: 0px 40px 20px 34px;
}

#mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu-content li {
    font-size: 20px;
    margin: 20px 0;
}
.mobile-menu-booknow-placeholder {
	visibility: hidden;
	pointer-events: none;
	user-select: none;
	opacity: 0;
}
/* Active state */
.mobile-menu-active #mobile-menu-toggle .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-active #mobile-menu-toggle .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active #mobile-menu-toggle .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-active #mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-active #mobile-menu-content {
    transform: translateY(0);
}

/* Show toggle on mobile */
@media (max-width: 768px) {
    #mobile-menu-toggle {
        display: block;
    }
    
    /* Hide default navigation on mobile */
    .wp-block-navigation:not(.custom-mobile-menu nav) {
        display: none;
    }
}




/* Promo banner */
.promo-wrapper {
  display: none;
}
/*
.promo-wrapper {
  position: absolute;
  top: 85px;
  padding: 0px 16px;
}

.promo-banner {
  display: none;
  width: fit-content;
  max-width: 768px;
  background-color: #C7EEF3;
  border: 1px solid #15173D;
  padding: 8px 8px 8px 16px;
  font-size: 16px;
  font-weight: 600;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  box-shadow: var(--default-shadow);
  z-index: 4;
  overflow: visible;
  transition: opacity 0.3s ease;
}
.banner-close {
  background: none;
  border: none;
  margin-top: 4px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.3s ease;
  will-change: fill, opacity;
}
.banner-close svg {
    width: 12px;
    height: 12px;
    fill: #15173D;
	transition: fill 0.2s ease, transform 0.2s ease, opacity 0.3s ease;
	will-change: transform;
}
@media (hover: hover){
    .banner-close:hover svg {
	fill: #87CCB0;
	}
}
.banner-close:focus-visible svg,
.banner-close:active svg {
	width: 10px;
	height: 10px;
	transform: scale(1);
	fill: #87CCB0;
}
*/


#floaters-container {
	position: fixed;
	bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 1200px;
	justify-content: space-between;
	pointer-events: none;
	will-change: bottom, top, transform;
}

#book-now-cta,
.book-now-generic {
    background: #15173D;
    color: #FFFAF0;
    font-size: 20px;
	text-align: center;
	border: 1.5px solid #FFFAF0 !important;
    border-radius: 999px;
    box-shadow: var(--default-shadow);
    padding: 6px 16px;
    will-change: color, bottom;
	pointer-events: auto;
	transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.2s ease;
	z-index: 9;
}
#book-now-cta.dark-underneath {
    background: #FFFAF0;
    color: #15173D;
	border: 1.5px solid #15173D !important;
}
@media (hover: hover){ #book-now-cta:hover, .book-now-generic:hover {
	transform: scale(1.1);
    color: #87CCB0;
	border: 1.5px solid #87CCB0 !important;
}}
#book-now-cta:focus-visible,
#book-now-cta:active,
.book-now-generic:focus-visible,
.book-now-generic:active {
	transform: scale(0.9);
    color: #87CCB0;
	border: 1.5px solid #87CCB0 !important;
}

#scrolltop {
    background: #15173D;
	border: 1.5px solid #FFFAF0 !important;
    border-radius: 50%;
    box-shadow: var(--default-shadow);
    padding: 9px 10px 11px;
    transition: border 0.2s ease, opacity 0.3s ease, background 0.3s ease, width 0.2s ease, height 0.2s ease;
    will-change: fill, bottom, opacity;
    cursor: pointer;
    opacity: 0;
	z-index: 7;
}
#scrolltop svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: #FFFAF0; 
    transition: fill 0.2s ease, width 0.2s ease, height 0.2s ease, transform 0.2s ease;
    will-change: width, height, transform;
}
#scrolltop.dark-underneath {
    background: #FFFAF0;
	border: 1.5px solid #15173D !important;
}
#scrolltop.dark-underneath svg {
	fill: #15173D;
}
@media (hover: hover){ #scrolltop:hover svg {
	width: 19px;
	height: 19px;
	transform: scale(1);
	fill: #87CCB0;
}}
@media (hover: hover){ #scrolltop:hover {
	border: 1.5px solid #87CCB0 !important;
}}
#scrolltop:active svg {
	width: 13px;
	height: 13px;
	transform: scale(1);
	fill: #87CCB0;
}
#scrolltop:active {
	border: 1.5px solid #87CCB0 !important;
}
.site-footer {
	margin-top: 0px;
}
.footer-silhouette {
    margin-top: 10px;
    left: 0;
    width: 100%;
    height: auto; /* Let height be determined by aspect ratio */
    aspect-ratio: 830 / 162; /* Uses SVG's natural dimensions */
    background: url('/wp-content/uploads/castle-silhouette-v3.svg') center bottom no-repeat;
    background-size: 100% 100%;
    transform: translateY(6px);
}
.footer-card-payment-additional-blurb {
	z-index: 2;
}
.footer-placeholder-counterweight {
	visibility: visible;
}
/**
 *
 * Hero header
 * 
 */
.hero-picture {
    position: relative;
}
.hero-picture::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(255,250,240,1) 0%,
		rgba(255,250,240,0.6) 40%,
        rgba(255,250,240,0.4) 70%,
        rgba(255,250,240,0) 100%
    );
    pointer-events: none;
    z-index: 1;
}
.hero-picture.golf::after {
    background: linear-gradient(
        to top,
        rgba(255,250,240,1) 0%,
		rgba(255,250,240,0.5) 30%,
		rgba(255,250,240,0.3) 40%,
		rgba(255,250,240,0.2) 50%,
        rgba(255,250,240,0.1) 70%,
        rgba(255,250,240,0) 100%
    );
}
.hero-picture.dark::after {
    background: linear-gradient(
        to top,
        rgba(21,23,61,1) 0%,
		rgba(21,23,61,0.6) 40%,
        rgba(21,23,61,0.4) 70%,
        rgba(21,23,61,0) 100%
    );
}


/* Hero title */

@media (min-width: 769px) {
	#hero-title-wrapper {
		margin-bottom: 80px !important;
	}
}

#hero-title {
	position: relative;
	z-index: 2;
}
/*
#hero-title span > span {
    display: inline-block;
    text-shadow: var(--default-shadow);
    animation: hero-title-reveal 0.5s ease-out forwards;
    opacity: 0;
    animation-delay: calc(var(--char-index) * 0.025s + var(--default-hero-title-delay));
	z-index: 2;
}
@keyframes hero-title-reveal {
    0% { opacity: 0; transform: scale(0.1); }
    100% { opacity: 1; transform: scale(1); }
}
:root {
    --default-hero-title-delay: 1.2s;
}
.word {
	white-space: nowrap;
}
*/

/* Scroll down */
.scrolldown-wrapper {
	display: flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
}
#hero-scrolldown {
    position: relative;
    background: #15173D;
	border: 1.5px solid #FFFAF0 !important;
    border-radius: 50%;
    box-shadow: var(--default-shadow);
    padding: 11px 10px 9px;
    transition: border 0.2s ease, opacity 0.3s ease, width 0.2s ease, height 0.2s ease;
    animation: bounceScroll 0.8s infinite alternate;
	cursor: pointer;
	z-index: 2;
}
#hero-scrolldown svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: #FFFAF0; 
    transition: fill 0.2s, width 0.2s ease, height 0.2s ease, transform 0.2s ease;
    will-change: width, height, transform;
}
@media (hover: hover){ #hero-scrolldown:hover svg { 
	width: 19px;
	height: 19px;
	transform: scale(1);
	fill: #87CCB0;
}}
@media (hover: hover){ #hero-scrolldown:hover { 
	border: 1.5px solid #87CCB0 !important;
}}
#hero-scrolldown:active {
	border: 1.5px solid #87CCB0 !important;
}
/*
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
*/
@keyframes bounceScroll {
	0% { transform: translateY(0); }
	100% { transform: translateY(10px); }
}
/**
 *
 * Page content
 * 
 */
.heading-dropdown {
	display: flex;
	align-items: center;
	text-align: center;
	font-family: 'Sacramento';
	font-style: italic;
	color: #15173D;
	transition: color 0.2s ease;
	cursor: pointer;
}

.heading-dropdown .arrow svg {
    display: block;
    width: 20px;
    height: 20px;
	margin-left: 12px;
	margin-top: 6px;
    fill: #15173D;
	transition: fill 0.2s ease, transform 0.3s ease;
}
@media (hover: hover){
	.heading-dropdown:hover,
	.heading-dropdown:hover .arrow svg {
	color: #87CCB0 !important;
	fill: #87CCB0;
	}
}
.heading-dropdown:focus-visible,
.heading-dropdown:focus-visible .arrow svg,
.heading-dropdown:active,
.heading-dropdown:active .arrow svg {
	color: #87CCB0 !important;
	fill: #87CCB0;
}
/* Dropdown Menu */
.cottage-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; /* Fixed width (adjust as needed) */
  background: #FFFAF0;
  border: 2px solid #15173D;
  border-radius: 8px;
  box-shadow: var(--default-shadow);
  z-index: 1;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  display: flex; /* Add this */
  flex-direction: column; /* Stack vertically */
}

/* Show dropdown */
.cottage-dropdown[aria-expanded="true"] {
  max-height: 300px;
  opacity: 1;
}

/* Dropdown Buttons */
.cottage-dropdown button {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Sacramento', cursive;
  font-style: italic;
  color: #15173D;
  font-size: 24px;
  border: none;
  border-bottom: 5px solid #15173D; /* Separator line */
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover/Active States */
.cottage-dropdown button:hover,
.cottage-dropdown button:focus {
  background: #f0f0f0;
  color: #87CCB0;
}

/* Remove border from last button */
.cottage-dropdown button:last-child {
  border-bottom: none;
}

/**
 *
 * Cottage dashboard
 * 
 */
#under-fold.dash-background::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -100px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(21,23,61,1) 0%,
    rgba(21,23,61,0.5) 50%,
    rgba(21,23,61,0) 100%
  );
}
#loading-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 100%;
  margin: 0 -16px;
  background-color: #15173D;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}
@keyframes overlay-fadeout {
	0% {opacity: 1;}
    100% {opacity: 0;}
}

#loading-map-icon-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
	filter: drop-shadow(var(--close-shadow));
	background: url('/wp-content/uploads/logo5cb.svg') no-repeat center center/contain;
    transform-style: preserve-3d;
    z-index: 2;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#fffaf0 94%,#0000) top/6px 6px no-repeat,
    conic-gradient(#0000 60%,#fffaf0);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 6px),#000 0);
  animation: loader-spin 1.5s infinite linear;
}
@keyframes loader-spin{ 
  100%{transform: translate(-50%, -50%) rotate(1turn)}
}
#loading-timeout-message {
  position: absolute;
  bottom: 20%;
  width: 65%;
  text-align: center;
  color: #FFFAF0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#loading-timeout-message.show {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover){
	#loading-timeout-message:hover {
	color: #87CCB0;
	}
}
#loading-timeout-message:focus-visible,
#loading-timeout-message:active {
	color: #87CCB0;
}


/* Map wrapper */
.gm-style * {
  outline: none !important;
  tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: transparent !important;
}
#map-stay-wrapper {
	position: relative;
	width: auto;
	height: 650px; /*calc(80vh - var(--header-height));*/
    /* max-width: 600px !important;*/
	max-height: 650px; /* 800px !important; */
	user-select: none;
	overflow: hidden;
	margin: 0px -16px;
}
@media (min-width: 769px) {
    #map-stay-wrapper {
		height: 700px;
    	max-height: 700px;
    }
}
@media (min-width: 1024px) {
    #map-stay-wrapper {
		height: 750px;
    	max-height: 750px;
    }
}
#map-stay-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
	linear-gradient(
        to bottom,
        rgba(21,23,61,1) 0%,
        rgba(21,23,61,0) 100%
    ) top -2px center / 100% 12%,
	linear-gradient(
        to left,
        rgba(21,23,61,1) 0%,
        rgba(21,23,61,0) 100%
    ) right -2px center / 2% 100%,
	linear-gradient(
        to top,
        rgba(21,23,61,1) 0%,
        rgba(21,23,61,0) 100%
    ) bottom -2px center / 100% 2%,
	linear-gradient(
        to right,
        rgba(21,23,61,1) 0%,
        rgba(21,23,61,0) 100%
    ) left -2px center / 2% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
/*
@media (min-height: 800px) and (max-height: 899px) {
    #map-stay-wrapper {
		height: 650px;
    }
}
@media (min-height: 900px) and (max-height: 1023px) {
    #map-stay-wrapper {
		height: 700px;
    }
}
@media (min-height: 1024px) {
    #map-stay-wrapper {
    	height: 800px;
    }
}
*/
@media (min-width: 769px) {
    #map-stay-wrapper {
    	border-radius: 24px;
    }
}
/* Dash title */
#dash-title {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
    max-width: 1200px !important;
	padding: 0px 0px 6px 0px;
	line-height: 1.2;
    margin: 0;
	transform: translateX(-50%);
    background: #15173D;
	color: #FFFAF0;
	text-align: center;
    transition: color 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
    will-change: color, opacity;
	z-index: 1;
	pointer-events: none;
}
/* Dash nav container */
/*
#dash-nav-views-container {
	opacity: 0;
	display: inline-flex;
	position: absolute;
	top: 8px;
	left: 50%;
	width: 250px;
	height: 37px;
	border: 1.5px solid #fffaf0;
	border-radius: 999px;
	background: #15173D;
	justify-content: center;
	align-items: center;
	box-shadow: var(--default-shadow);
    transition: transform 2s ease, opacity 0.3s ease;
	transform: translateX(100vw);
    will-change: transform, opacity;
	z-index: 1;
    pointer-events: none;
	overflow: hidden;
}
#dash-nav-views-container.visible {
    opacity: 1;
    transform: translateX(-50%);
    pointer-events: auto;
}
#dash-nav-cottages-view, #dash-nav-attractions-view {
	position: relative;
    flex: 1;
    display: flex;
	width: 125px;
	height: 36px;
    align-items: center;
    justify-content: center;
	background: transparent;
	color: #FFFAF0;
	font-size: 18px;
    cursor: pointer;
	will-change: color;
	transition: all 0.3s ease;
}
#dash-nav-cottages-view {
  border-right: 0.75px solid #fffaf0 !important;
  border-radius: 999px 0 0 999px;
}
#dash-nav-attractions-view {
  border-left: 0.75px solid #fffaf0 !important;
  border-radius: 0 999px 999px 0;
}
@media (hover: hover){
	#dash-nav-cottages-view:hover, 
	#dash-nav-attractions-view:hover {
	color: #87CCB0;
	}
}
#dash-nav-cottages-view:focus-visible,
#dash-nav-cottages-view:active,
#dash-nav-attractions-view:focus-visible,
#dash-nav-attractions-view:active {
	color: #87CCB0;
}
#dash-nav-cottages-view.active, #dash-nav-attractions-view.active {
	color: #87CCB0;
}
*/

#dash-nav-container {
	display: inline-flex;
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	/*
	background: rgba(21, 23, 61, 0.7);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
	padding: 8px 16px;
	*/
	
	justify-content: center;
	align-items: center;
	gap: 16px;

    transition: transform 0.3s ease;
	z-index: 1;
    pointer-events: none;
}
#dash-nav-container.visible {

    pointer-events: auto;
}
@media (min-width: 769px) and (max-width: 1024px) {
    #dash-nav-container {
		/*
		left: 20% !important;
		right: 12% !important;
		*/
		left: 64px;
		right: 64px;
		gap: 24px;
    }
}
@media (min-width: 1024px) {
    #dash-nav-container {
		/*
		left: 24% !important;
		right: 16% !important;
		*/
		left: 128px;
		right: 128px;
		gap: 32px;
    }
}

#dash-left-wrapper {
	/*
	position: absolute;
	top: 8px;
	left: 8px;
	*/
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(calc(-100% - 70px));
	transition: transform 0.6s ease;
	z-index: 1;
	pointer-events: none;
}
#dash-left-wrapper.visible {
    transform: translateY(0);
	pointer-events: auto;
}
/*
@media (min-width: 769px) and (max-width: 1024px) {
    #dash-left-wrapper {
		left: 16px !important;
    }
}
@media (min-width: 1025px) {
    #dash-left-wrapper {
		left: 24px !important;
    }
}
*/
#dash-left, #dash-close {
	display: inline-flex;
    background: #15173D;
	border: 1.5px solid #fffaf0 !important;
    border-radius: 50%;
	padding: 10px 9px;
    transition: border 0.2s ease;
    will-change: fill, border;
	box-shadow: var(--default-shadow);
	cursor: pointer;
}
#dash-close {
	left: auto !important;
	right: 8px !important;
	padding: 9.5px !important;
}
#dash-left svg, #dash-close svg {
    width: 16px;
    height: 16px;
	margin-right: 2px;
    fill: #FFFAF0;
	transition: fill 0.2s ease, width 0.2s ease, height 0.2s ease, transform 0.2s ease;
	will-change: width, height, transform;
}
#dash-close svg {
	margin-right: 0px !important;
}

@media (hover: hover){
	#dash-left:hover, #dash-close:hover {
	border: 1.5px solid #87CCB0 !important;
	}
}
#dash-left:focus-visible,
#dash-left:active,
#dash-close:focus-visible,
#dash-close:active {
	border: 1.5px solid #87CCB0 !important;
}
@media (hover: hover){
	#dash-left:hover svg, #dash-close:hover svg {
	width: 19px;
	height: 19px;
	transform: scale(1), rotate(90);
	fill: #87CCB0;
	}
}
#dash-left:focus-visible svg,
#dash-left:active svg,
#dash-close:focus-visible svg,
#dash-close:active svg {
	width: 13px;
	height: 13px;
	transform: scale(1), rotate(90);
	fill: #87CCB0;
}




#dash-nav-wrapper-dv,
#dash-nav-wrapper-we,
#dash-nav-wrapper-pm,
#dash-nav-wrapper-cw {
	transform: translateY(calc(-100% - 70px));
  	transition: transform 0.6s ease;
	pointer-events: none;
}
#dash-nav-wrapper-dv.visible,
#dash-nav-wrapper-we.visible,
#dash-nav-wrapper-pm.visible,
#dash-nav-wrapper-cw.visible {
    transform: translateY(0);
    pointer-events: auto;
}
#dash-nav-wrapper-dv.faded,
#dash-nav-wrapper-we.faded,
#dash-nav-wrapper-pm.faded,
#dash-nav-wrapper-cw.faded {
	  filter: brightness(0.7) saturate(0.7);
	  transition: filter 0.3s ease;
}

.dash-nav-cottage {
    display: flex;
    align-items: center;
    justify-content: center;
  	width: 42px;
  	height: 42px;
	border-radius: 50%;
  	cursor: pointer;
  	filter: drop-shadow(var(--default-shadow));
	will-change: content, transform, opacity;
  	transition: content 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
	box-sizing: content-box;
	padding: 0;
}
.dash-nav-cottage img {
  	width: 41px;
  	height: 41px;
	object-fit: contain;
	object-position: center;
}
#dash-nav-dv {
  border: 1px solid #fffaf0; /* #e0b56b !important; */
  background: #fffaf0;
}
#dash-nav-we {
  border: 1px solid #fffaf0; /* #5da0cc !important; */
  background: #fffaf0;
}
#dash-nav-pm { 
  border: 1px solid #fffaf0; /* #6cb280 !important; */
  background: #fffaf0;
}
#dash-nav-cw { 
  border: 1px solid #fffaf0; /* #b58cc8 !important; */
  background: #fffaf0;
}

.dash-nav-spec {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -36px;
	display: flex;
	gap: 10px;
	pointer-events: auto;
	cursor: pointer;
	will-change: transform;
	transition: transform 0.3s ease;
	z-index: -1;
}
.dash-nav-spec .name {
	font-family: "Cormorant Garamond";
	/*font-style: italic;*/
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	/*letter-spacing: 0.6px;*/
	line-height: 1;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 2px #fffaf0;
	paint-order: stroke fill;
	white-space: nowrap;
}
#dash-nav-wrapper-dv .dash-nav-spec .name {
	color: #d7a042; /* colours offset the default by -10L HSL */
}
#dash-nav-wrapper-we .dash-nav-spec .name {
	color: #3b87ba;
}
#dash-nav-wrapper-pm .dash-nav-spec .name {
	color: #519a66;
}
#dash-nav-wrapper-cw .dash-nav-spec .name {
	color: #9f6bb8;
}
.dash-nav-spec .guest-count {
	font-size: 12px;
	margin-left: 2px;
	font-family: "Source Sans 3";
}
.dash-nav-spec .name img {
  	width: 10px;
  	height: 10px;
	vertical-align: baseline;
	object-fit: contain;
	object-position: center;
    filter: 
        drop-shadow(0 0 0.25px #fffaf0) 
        drop-shadow(0 0 0.25px #fffaf0)
        drop-shadow(0 0 0.25px #fffaf0)
        drop-shadow(0 0 0.25px #fffaf0)
        drop-shadow(0 0 0.25px #fffaf0)
        drop-shadow(0 0 0.25px #fffaf0);
    stroke: #fffaf0;
    stroke-width: 3px;
    paint-order: stroke;
}
/*
.dash-nav-spec .guests,
.dash-nav-spec .pets {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  	width: 14px;
  	height: 14px;
	border-radius: 50%;
	box-sizing: content-box;
	padding: 0;
}
.dash-nav-spec .guests img {
  	width: 12px;
  	height: 12px;
	object-fit: contain;
	object-position: center;
}
.dash-nav-spec .pets img {
  	width: 14px;
  	height: 14px;
	object-fit: contain;
	object-position: center;
}
*/
@media (min-width: 769px) and (max-width: 1024px) {
	.dash-nav-cottage {
		width: 44px;
		height: 44px;
	}
	.dash-nav-cottage img {
		width: 43px;
		height: 43px;
	}
	.dash-nav-spec {
		bottom: -40px;
	}
	.dash-nav-spec .name {
		font-size: 15px;
	}
	.dash-nav-spec .guest-count img {
		width: 11px;
		height: 11px;
	}
	.dash-nav-spec .guest-count {
	font-size: 13px;
	}
	/*
	.dash-nav-spec .guests,
	.dash-nav-spec .pets {
		width: 16px;
		height: 16px;
	}
	.dash-nav-spec .guests img {
		width: 13px;
		height: 13px;
	}
	.dash-nav-spec .pets img {
		width: 16px;
		height: 16px;
	}
	*/
}
@media (min-width: 1025px) {
	.dash-nav-cottage {
		width: 48px;
		height: 48px;
	}
	.dash-nav-cottage img {
		width: 47px;
		height: 47px;
	}
	.dash-nav-spec {
		bottom: -44px;
	}
	.dash-nav-spec .name {
		font-size: 16px;
	}
	.dash-nav-spec .guest-count img {
		width: 12px;
		height: 12px;
	}
	.dash-nav-spec .guest-count {
		font-size: 14px;
	}
	/*
	.dash-nav-spec .guests,
	.dash-nav-spec .pets {
		width: 18px;
		height: 18px;
	}
	.dash-nav-spec .guests img {
		width: 14px;
		height: 14px;
	}
	.dash-nav-spec .pets img {
		width: 18px;
		height: 18px;
	}
	*/
}



@media (hover: hover){
	#dash-nav-wrapper-dv:hover #dash-nav-dv,
	#dash-nav-wrapper-we:hover #dash-nav-we,
	#dash-nav-wrapper-pm:hover #dash-nav-pm,
	#dash-nav-wrapper-cw:hover #dash-nav-cw { 
	  transform: scale(1.1);
	  border: 1px solid #87CCB0;
	  background: #87CCB0;
	}
	#dash-nav-wrapper-dv:hover .dash-nav-cottage img { 
	  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-y3press.svg');
	}
	#dash-nav-wrapper-we:hover .dash-nav-cottage img { 
	  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-b3press.svg');
	}
	#dash-nav-wrapper-pm:hover .dash-nav-cottage img { 
	  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-g3press.svg');
	}
	#dash-nav-wrapper-cw:hover .dash-nav-cottage img { 
	  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-p3press.svg');
	}
	#dash-nav-wrapper-dv:hover .dash-nav-spec,
	#dash-nav-wrapper-we:hover .dash-nav-spec,
	#dash-nav-wrapper-pm:hover .dash-nav-spec,
	#dash-nav-wrapper-cw:hover .dash-nav-spec {
	  transform: scale(1.1) translateX(-50%);
	}
}
#dash-nav-wrapper-dv:focus-visible #dash-nav-dv,
#dash-nav-wrapper-dv:active #dash-nav-dv,
#dash-nav-wrapper-we:focus-visible #dash-nav-we,
#dash-nav-wrapper-we:active #dash-nav-we,
#dash-nav-wrapper-pm:focus-visible #dash-nav-pm,
#dash-nav-wrapper-pm:active #dash-nav-pm,
#dash-nav-wrapper-cw:focus-visible #dash-nav-cw,
#dash-nav-wrapper-cw:active #dash-nav-cw { 
  transform: scale(0.9);
  border: 1px solid #87CCB0;
  background: #87CCB0;
  -webkit-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
}
#dash-nav-wrapper-dv:focus-visible .dash-nav-cottage img ,
#dash-nav-wrapper-dv:active .dash-nav-cottage img { 
  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-y3press.svg');
}
#dash-nav-wrapper-we:focus-visible .dash-nav-cottage img ,
#dash-nav-wrapper-we:active .dash-nav-cottage img { 
  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-b3press.svg');
}
#dash-nav-wrapper-pm:focus-visible .dash-nav-cottage img ,
#dash-nav-wrapper-pm:active .dash-nav-cottage img { 
  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-g3press.svg');
}
#dash-nav-wrapper-cw:focus-visible .dash-nav-cottage img ,
#dash-nav-wrapper-cw:active .dash-nav-cottage img { 
  content: url('https://www.christonbank.com/wp-content/uploads/logo5cb-p3press.svg');
}
#dash-nav-wrapper-dv:focus-visible .dash-nav-spec,
#dash-nav-wrapper-dv:active .dash-nav-spec,
#dash-nav-wrapper-we:focus-visible .dash-nav-spec,
#dash-nav-wrapper-we:active .dash-nav-spec,
#dash-nav-wrapper-pm:focus-visible .dash-nav-spec,
#dash-nav-wrapper-pm:active .dash-nav-spec,
#dash-nav-wrapper-cw:focus-visible .dash-nav-spec,
#dash-nav-wrapper-cw:active .dash-nav-spec {
	transform: scale(0.9) translateX(-50%);
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
}

#dash-nav-highlights-wrapper {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(calc(-100% - 70px));
	transition: transform 0.6s ease;
	z-index: 1;
	pointer-events: none;
}
#dash-nav-highlights-wrapper.visible {
    transform: translateY(0);
	pointer-events: auto;
}

/*
.curved-label {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 59px;
  height: 100px;
  z-index:-1;
  pointer-events: none;
}
.curved-label svg {
  overflow: visible;
}
.curved-label text {
  fill: #FFFAF0;
  font-family: "Sacramento";
  font-size: 32px;
  letter-spacing: 0.5px;
}
.curved-label svg path {
  stroke: #15173D;
  stroke-width: 32px;
  stroke-linecap: butt;
  fill: none;
}
#dash-nav-dv .curved-label svg path {
  stroke: #e0b56b;
  filter: brightness(0.9);
}
#dash-nav-we .curved-label svg path {
  stroke: #5da0cc;
}
#dash-nav-pm .curved-label svg path {
  stroke: #6cb280;
}
#dash-nav-cw .curved-label svg path {
  stroke: #b58cc8;
  filter: brightness(0.9);
}
*/
#dash-nav-highlights {

	/*
	filter: saturate(0%);
	pointer-events: none;
	*/

    display: flex;
    align-items: center;
    justify-content: center;
  	width: 39px;
  	height: 39px;
	padding-top: 2px;
	background: #15173d;
	border: 1.5px solid #fffaf0 !important;
	border-radius: 50%;
  	cursor: pointer;
  	box-shadow: var(--default-shadow); /*filter: drop-shadow(var(--default-shadow));*/
  	transition: border 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
	box-sizing: border-box;
}
#dash-nav-highlights img {
	height: 24px;
	width: 24px;
	object-fit: contain;
	object-position: center;
}
@media (hover: hover){
	#dash-nav-highlights:hover { 
	  border: 1.5px solid #87ccb0 !important;
	  transform: scale(1.1);
	}
}
#dash-nav-highlights:focus-visible,
#dash-nav-highlights:active { 
  border: 1.5px solid #87ccb0 !important;
  transform: scale(0.9);
}


/*
.dash-nav-experience {
	position: absolute;
	right: 0px;
  	width: 48px;
  	height: 48px;
	padding: 0px;
	background: transparent !important;
	border-radius: 50%;
  	cursor: pointer;
  	box-shadow: var(--default-shadow);
  	transition: opacity 0.3s ease;
}
.dash-nav-experience img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#dash-nav-pets { 
  top: 14%; 
  background: #15173d;
}
#dash-nav-beaches { 
  top: 28%;
  background: #15173d;
}
#dash-nav-castles { 
  top: 42%;
  background: #15173d;
}
#dash-nav-nature { 
  top: 56%;
  background: #15173d;
}
#dash-nav-golf { 
  top: 70%;
  background: #15173d;
}
#dash-nav-delicacies { 
  top: 84%;
  background: #15173d;
}
*/


#dash-cottage-board {
  position: absolute;
  top: 100px;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 400%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 1s ease;
  z-index: 1;
  opacity: 1;
}
@media (min-width: 769px) and (max-width: 1024px) {
    #dash-cottage-board {
		top: 110px;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
    }
}
@media (min-width: 1024px) {
    #dash-cottage-board {
		top: 120px;
  		border-bottom-left-radius: 24px;
  		border-bottom-right-radius: 24px;
    }
}
#board-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
#panel-dv,
#panel-we,
#panel-pm,
#panel-cw {
  position: relative;
  width: 25%;
  height: 100%;
  padding: 20px;
  color: #fffaf0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  overflow-y: hidden;
}
@media (min-width: 769px) {
	#panel-dv,
	#panel-we,
	#panel-pm,
	#panel-cw {
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
    }
}
#dash-cottage-board.visible-shadow #panel-dv,
#dash-cottage-board.visible-shadow #panel-we,
#dash-cottage-board.visible-shadow #panel-pm,
#dash-cottage-board.visible-shadow #panel-cw {
	box-shadow: 0px -4px 4px rgba(0,0,0,0.4),
				inset -4px 0px 4px rgba(0,0,0,0.6),
				inset 4px 0px 4px rgba(0,0,0,0.6);
}
#map-stay-wrapper.visible-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0px -4px 4px rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 2;
}

#panel-dv {
	background: #15173d;/*#e0b56b;*/
	border: 2px solid #e0b56b;/*#d7a042;*/
	border-bottom: none;
}
#panel-we {
	background: #15173d;/*#5da0cc;*/
	border: 2px solid #5da0cc;/*#3b87ba;*/
	border-bottom: none;
}
#panel-pm {
	background: #15173d;/*#6cb280;*/
	border: 2px solid #6cb280;/*#519a66;*/
	border-bottom: none;
}
#panel-cw {
	background: #15173d;/*#b58cc8;*/
	border: 2px solid #b58cc8;/*#9f6bb8;*/
	border-bottom: none;
}

#dash-cottage-board.active-cw{
	transform: translateX(0) translateY(100%);
}
#dash-cottage-board.active-pm{
	transform: translateX(-25%) translateY(100%);
}
#dash-cottage-board.active-dv{
	transform: translateX(-50%) translateY(100%);
}
#dash-cottage-board.active-we{
	transform: translateX(-75%) translateY(100%);
}
#dash-cottage-board.visible.active-cw{
	transform: translateX(0) translateY(0);
}
#dash-cottage-board.visible.active-pm{
	transform: translateX(-25%) translateY(0);
}
#dash-cottage-board.visible.active-dv{
	transform: translateX(-50%) translateY(0);
}
#dash-cottage-board.visible.active-we{
	transform: translateX(-75%) translateY(0);
}
.panel-title {
	margin: -3px 0 -3px 0;
	/*font-family: "Sacramento";*/
	/*font-style: italic;*/
	font-size: 24px;/*font-size: 28px;*/
	font-weight: 600;
	color: #fffaf0;
}
.panel-intro-blurb {
	margin: 0;
	font-size: 18px;
	font-style: italic;
	color: #fffaf0;/*#15173D;*/
}

.panel-spec-summary {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3px 0 6px 0;
	color: #fffaf0;
}
.panel-spec-item {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 10px;
}
.panel-spec-item img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	object-position: center;
}
.panel-spec-item .label {
	font-size: 18px;
}


/* Gallery */
.panel-photos-wrapper {
	max-width: 450px;
	margin: 0 auto;
}
.panel-photos {
	position: relative;
	width: 100%; /*calc(100% + 40px);*/
	max-width: 450px;
	margin: 16px auto 0 auto;
	height: auto;
	border-radius: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	overflow: hidden;

}
@media (min-width: 450px) {
	.panel-photos {
		border-radius: 16px;
	}
}

.slides-container {
	height: 100%;
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	position: relative;
	min-width: 100%;
	height: 100%;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.caption {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: #FFFAF0;
	font-size: 16px;
	padding: 28px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.slide.active .caption {
	opacity: 1;
}

.nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #15173d;
	width: 30px;
	height: 30px;
	border: 1px solid #fffaf0 !important;
	border-radius: 50%;
	font-size: 18px;
	color: #fffaf0;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (hover: hover){
	.nav-button:hover {
		color: #87ccb0;
		border-color: #87ccb0 !important;
		transform: translateY(-50%) scale(1.1);
	}
}
.nav-button:active,
.nav-button:focus-visible {
	color: #87ccb0;
	border-color: #87ccb0 !important;
	transform: translateY(-50%) scale(1.1);
}

.prev {
	left: 10px;
	padding-bottom: 3px;
	padding-right: 8px;
}

.next {
	right: 10px;
	padding-bottom: 3px;
	padding-left: 8px;

}

.nav-button.hidden {
	opacity: 0;
	pointer-events: none;
}

.indicators {
	position: absolute;
	bottom: 6px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	padding: 6px;
	background-color: transparent;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FFFAF0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	margin: 0 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background-color: #15173d;
	transform: scale(1.4);
}
@media (hover: hover){
	.indicator:hover {
		transform: scale(1.4);
		background-color: #87ccb0;
	}
}
.indicator:active,
.indicator:focus-visible {
	transform: scale(1.4);
	background-color: #87ccb0;
}

.expand-button-wrapper {
	display: flex;
	align-items: center; 
	justify-content: center; 
}
.expand-button {
	display: flex; 
	font-size: 18px; 
	align-items: center; 
	justify-content: center; 
	text-align: center; 
	background-color: #15173D; 
	color: #FFFAF0; 
	border: 1.5px solid #fffaf0 !important;
	border-radius: 999px; 
	margin: 12px 8px 12px 8px;
	padding: 4px 12px;
	gap: 8px;
	cursor: pointer; 
	box-sizing: border-box; 
	box-shadow: var(--default-shadow);
	transition: border 0.2s ease, color 0.2s ease;
}
.expand-button.expand-panel-btn {
	margin: 12px 8px 12px 8px;
}
.expand-label {
	font-size: 18px;
	text-decoration: underline;
}
.expand-button svg {
  display: block;
  fill: none;
  height: 18px;
  width: 18px;
  stroke: #FFFAF0;
  stroke-width: 4;
  overflow: visible;
  transition: stroke 0.2s ease;
}
@media (hover: hover){
	.expand-button:hover {
		border: 1.5px solid #87ccb0 !important;
	}
}
.expand-button:active {
	border: 1.5px solid #87ccb0 !important;
}
@media (hover: hover){
	.expand-button:hover {
		color: #87CCB0;
	}
	.expand-button:hover svg {
		stroke: #87CCB0;
	}
}
.expand-button:active,
.expand-button:focus-visible {
	color: #87CCB0;
}
.expand-button:active svg,
.expand-button:focus-visible svg {
	stroke: #87CCB0;
}
.expand svg {
    width: 16px;
    height: 16px;
    fill: #FFFAF0;
	transition: fill 0.2s ease, width 0.2s ease, height 0.2s ease, transform 0.2s ease;
	will-change: width, height, transform;
}


/* Overlay styles */
#overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
	background: #15173d;
    max-width: 1000px;
    margin-top: 0;
    z-index: 2;
    overflow-y: auto;
	pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Overlay visible state */
#overlay.active {
    opacity: 1;
    visibility: visible;
	pointer-events: auto;
}
.overlay-content {
    position: relative;
    margin: 0;
	padding: 16px 16px 60px 16px;
	border-radius: 16px;
    text-align: center;
    box-sizing: border-box;
}

#overlay-close {
	position: fixed;
	top: calc(var(--header-height) + 10px);
  	right: max(16px, calc(50% - 600px));
	display: flex; 
	width: 36px; 
	height: 36px; 
	font-size: 16px; 
	align-items: center; 
	justify-content: center; 
	text-align: center; 
	background-color: #fffaf0; 
	color: #15173d; 
	border: 1.5px solid #15173d !important;
	border-radius: 50%; 
	margin: 0px;
	padding: 0px; 
	cursor: pointer; 
	box-sizing: border-box; 
	box-shadow: var(--default-shadow);
	transition: border 0.2s ease;
}

#overlay-close svg {
    display: block;
    fill: #15173d;
    height: 18px;
    width: 18px;
    overflow: visible;
    transition: fill 0.2s ease;
}
@media (hover: hover){
	#overlay-close:hover {
		border: 1.5px solid #87ccb0 !important;
	}
}
#overlay-close:active {
	border: 1.5px solid #87ccb0 !important;
}
@media (hover: hover){ 
	#overlay-close:hover svg {
		fill: #87CCB0;
	}
}
#overlay-close:active svg {
	fill: #87CCB0;
}

/* Expanded content styles */
.expanded-gallery {
    width: auto;
    height: auto;
    margin: 0px -16px;
}
.expanded-gallery .panel-photos {
	border-radius: 0;
}
@media (min-width: 467px) {
	.expanded-gallery .panel-photos {
		border-radius: 16px;
	}
}
.panel-blurb-full {
	position: relative;
	align-items: center;
}
.panel-blurb-full .content {
  	flex: 1; 
	font-size: 16px;
	color: #fffaf0;
	transition: all 0.3s ease;
}

.panel-spec-full {
	position: relative;
}
.panel-spec-full .content {
	font-size: 16px;
	color: #fffaf0;
	text-align: left;
}

.panel-location {
	margin: 2px 0 10px 0;	
}
.panel-location-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	padding: 0 10px;
}
.panel-location-item img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	object-position: center;
}
.panel-location-item .label {
	font-size: 16px;
	color: #fffaf0;
	max-width: 40%;
}
.panel-location-item a {
	font-size: 14px;
}

/* Google Maps - Stay */
#map-stay {
    position: relative;
	width: auto;
	height: 100%;
	pointer-events: none !important;
	transition: all 0.3s ease;
}

/* Lower */
#dash-lower-container {
	opacity: 0;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease;
	user-select: none;
	pointer-events: none;
}
#dash-legend {
	opacity: 1;
	transition: opacity 1s ease;
	pointer-events: auto;
}
.legend-aonb,
.legend-park {
  width: 18px;
  height: 12px;
  background-color: #59a699;
  border-radius: 6px;
}
.legend-park {
  background-color: #59a659;
}

.info-icon-wrapper {
  position: relative;
  display: inline-block;
}
.info-icon {
  display: inline-flex;
  width: 12px;
  height: 12px;
  border: 1.5px solid #FFFAF0;
  border-radius: 50%;
  color: #FFFAF0;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
  z-index: 1;
}
.info-icon.light-background {
  border: 1.5px solid #15173D;
  color: #15173D;	
}
.info-icon-wrapper.footer .info-icon {
    margin-bottom: 1px;
	width: 11px;
	height: 11px;
	font-size: 11px;
}
.info-icon::before {
  content: "i";
  position: relative;
  top: 0.5px;
}
@media (hover: hover){
	.info-icon:hover {
	color: #87CCB0;
	border-color: #87CCB0;
	}
}
.info-icon:focus-visible,
.info-icon:active {
	color: #87CCB0;
	border-color: #87CCB0;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}


.speech-bubble {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFAF0;
  border: 1px solid #15173D;
  border-radius: 16px;
  padding: 4px 8px;
  box-shadow: var(--default-shadow);
  max-width: 200px;
  width: max-content;
  display: none;
  margin-bottom: 10px;
  color: #15173D;
  font-size: 14px;
}
.speech-bubble a {
	color: #008080;
}
.speech-bubble a:hover,
.speech-bubble a:focus-visible,
.speech-bubble a:active {
	color: #87CCB0;
}

/* Default center positioning */
.speech-bubble.center {
  left: 50%;
  transform: translateX(-50%);
}

/* Left-aligned when too far right */
.speech-bubble.left {
  left: 0;
  transform: none;
}

/* Right-aligned when too far left */
.speech-bubble.right {
  right: 0;
  transform: none;
  left: auto;
}

/* Pointer positions */
.speech-bubble.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.speech-bubble.center::before {
  left: 50%;
  transform: translateX(-50%);
}

.speech-bubble.left::after {
  left: 20px;
  transform: none;
}

.speech-bubble.left::before {
  left: 20px;
  transform: none;
}

.speech-bubble.right::after {
  right: 20px;
  transform: none;
  left: auto;
}

.speech-bubble.right::before {
  right: 20px;
  transform: none;
  left: auto;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  border: 6px solid transparent;
  border-top-color: white;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  top: 100%;
  border: 7px solid transparent;
  border-top-color: #ccc;
}

.speech-bubble.active {
  display: block;
}

#dash-cottage-booking-wrapper {
	opacity: 0;
	position: absolute;
	margin-top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: opacity 1s ease;
	white-space: nowrap; 
}
#dash-cottage-booking {
	color: #15173D;
	pointer-events: none;
}
#dash-cottage-booking.active-cw {
	pointer-events: none;
	background: #b58cc8 !important;
}
#dash-cottage-booking.active-pm {
	pointer-events: none;
	background: #6cb280;
}
#dash-cottage-booking.active-dv {
	pointer-events: none;
	background: #e0b56b;
}
#dash-cottage-booking.active-we {
	pointer-events: none;
	background: #5da0cc;
}


/**
 *
 * Help
 * 
 */
.faq-question {
	display: flex;
	align-items: center;
	transition: color 0.2s ease;
	cursor: pointer;
}
.faq-question .arrow svg {
    display: block;
    width: 20px;
    height: 20px;
	margin-left: 12px;
    fill: #FFFAF0;
	transition: fill 0.2s ease, transform 0.3s ease;
}
@media (hover: hover){
	.faq-question:hover,
	.faq-question:hover .arrow svg {
	color: #87CCB0;
	fill: #87CCB0;
	}
}
.faq-question:focus-visible,
.faq-question:focus-visible .arrow svg
.faq-question:active,
.faq-question:active .arrow svg {
	color: #87CCB0;
	fill: #87CCB0;
}
.faq-answer {
  font-style: italic;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer[aria-expanded="true"] {
  max-height: 500px; /* Adjust to your content's needs */
}
.faq-answer a {
	color: #008080;
}
.faq-answer a:hover,
.faq-answer a:active,
.faq-answer a:focus-visible {
	color: #87CCB0;
}

/* Google Maps - Golf, Contact*/
#map-help,
#map-golf {
    border-radius: 16px;
	height: 400px;
    max-width: 800px !important;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}
.zoom-button {
  display: flex;
  width: 36px;
  height: 36px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #15173D;
  color: #FFFAF0;
  border: 1.5px solid #fffaf0 !important;
  border-radius: 50%;
  margin: 8px;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: var(--default-shadow);
  transition: border 0.2s ease, color 0.2s ease;
}
@media (hover: hover){ 
	.zoom-button:hover {
		color: #87CCB0;
		border: 1.5px solid #87ccb0 !important;
	}
}
.zoom-button:active {
	color: #87CCB0;
	border: 1.5px solid #87ccb0 !important;
}
.fullscreen-button {
	display: flex; 
	width: 36px; 
	height: 36px; 
	font-size: 20px; 
	align-items: center; 
	justify-content: center; 
	text-align: center; 
	background-color: #15173D; 
	color: #FFFAF0; 
	border: 1.5px solid #fffaf0 !important;
	border-radius: 50%; 
	margin: 8px; 
	padding: 0px; 
	cursor: pointer; 
	box-sizing: border-box; 
	box-shadow: var(--default-shadow);
	transition: border 0.2s ease;
}
.fullscreen-button svg {
  display: block;
  fill: none;
  height: 18px;
  width: 18px;
  stroke: #FFFAF0;
  stroke-width: 4;
  overflow: visible;
  transition: stroke 0.2s ease;
}
@media (hover: hover){
	.fullscreen-button:hover {
		border: 1.5px solid #87ccb0 !important;
	}
}
.fullscreen-button:active {
	border: 1.5px solid #87ccb0 !important;
}
@media (hover: hover){ 
	.fullscreen-button:hover svg {
		stroke: #87CCB0;
	}
}
.fullscreen-button:active svg {
	stroke: #87CCB0;
}
.info-window {
  padding: 0;
  font-family: 'Roboto', sans-serif;
}
.info-window p {
  margin: 2px 0;
}
.info-window a {
  color: #1a73e8;
  text-decoration: none;
}
.intro-message, .explore-prompt {
	position: relative;
	background-color: #f4d194;
	color: #15173D;
	padding: 0px 4px;
	border: 1.5px solid #d1ad70;
	border-radius: 8px;
	font-family: "Source Sans 3";
	font-size: 14px;
	font-weight: bold;

	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
	white-space: nowrap;
	animation: bounceRight 0.8s infinite alternate;
	cursor: pointer;
}
.explore-prompt {
	opacity: 0;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
	border: 1.5px solid #d1ad70;
    justify-items: center;
    align-items: center;
    user-select: none !important;
    animation: bounceUp 0.8s infinite alternate !important;
	cursor: default !important;
}
.intro-message-arrow {
	padding-left: 2px;
	font-family: "Noto Sans Symbols 2";
	font-style: normal;
	font-size: 14px;
	line-height: 1;
}
.explore-prompt-arrow {
	padding-top: 6px;
	font-family: "Noto Sans Symbols 2";
	font-size: 12px;
	line-height: 0.8;
}
@keyframes bounceRight {
	0% { transform: translateX(0); }
	100% { transform: translateX(10px); }
}
@keyframes bounceUp {
  0% { transform: translate(-50%, 0); }
  100% { transform: translate(-50%, -10px); }
}
.start-marker-label {
	position: absolute;
	right: -107px;
	top: -27px;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
}
.start-marker-label .line1 {
	font-family: "Sacramento";	
	font-size: 24px;
	font-style: italic;
	color: #f4d194;
	margin: 0px;
}
.start-marker-label .line2 {
	letter-spacing: 5px;
	font-family: "Cormorant Garamond";
	font-size: 13px;
	color: #f4d194;
	margin: -13px 0 0 1px;
}
.roadsign-content {
	color: #ffd41b;
	background: #016a41;
	filter: saturate(0.5) brightness(1.4);
	padding: 0px 2px;
	border: 0.5px solid #fffaf0;
	border-radius: 4px;
	font-weight: 300;
	font-size: 11px;
}
.placesign-content {
	display: flex;
	width: 110px;
	font-weight: 500;
	font-size: 14px;
	font-style: italic;
	text-align: center;
	letter-spacing: 0.6px;
    -webkit-text-stroke: 1.5px #fffaf0;
	paint-order: stroke fill;
}




/**
 *
 * Booking
 * 
 */

/* Page Loading Overlay */
.page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 250, 240, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-loading-overlay.active {
    display: flex;
    opacity: 1;
}
.page-loading-icon-container {
	position: relative;
  width: 64px;
  height: 64px;
	filter: drop-shadow(var(--close-shadow));
  background-size: contain;
  transform-style: preserve-3d;
	background: url('/wp-content/uploads/logo5cb.svg') no-repeat center center/contain;
  z-index: 2;
}
.page-loading-icon-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#15173d 94%,#0000) top/6px 6px no-repeat,
    conic-gradient(#0000 60%,#15173d);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 6px),#000 0);
  animation: page-loading-icon-loader-spin 1.5s infinite linear;
}
@keyframes page-loading-icon-loader-spin{ 
  100%{transform: translate(-50%, -50%) rotate(1turn)}
}
/*
.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 250, 240, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-loading-overlay.active {
    display: flex;
    opacity: 1;
}

.page-loading-icon {
	position: relative;
    width: 64px;
    height: 64px;
	filter: drop-shadow(var(--close-shadow));
    background-size: contain;
    transform-style: preserve-3d;
	background: url('/wp-content/uploads/logo5cccr.webp') no-repeat center center/contain;
}
.page-loading-icon::before {
	content: "";
	position: absolute;
	inset: -2px;
    border: 4px solid #15173D;
    border-radius: 50%;
    animation: loading-icon-progress-circle 1s linear infinite;
	transform: rotate(45deg);
}
@keyframes loading-icon-progress-circle {
    0%   {clip-path:polygon(50% 50%,0 0,0    0,0    0   ,0    0   ,0    0   )}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0   ,100% 0   ,100% 0   )}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    0   )}
}
*/
#panel-dv-booking,
#panel-we-booking,
#panel-pm-booking,
#panel-cw-booking {
  position: relative;
  width: 100%;
  height: 250px;
  padding: 8px;
  color: #fffaf0;
  /*border: 1px solid #15173D !important;*/
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
}
#panel-dv-booking,
#panel-dv-booking .panel-photos {
	border: 2px solid #e0b56b;
	border-radius: 16px;
}
#panel-we-booking,
#panel-we-booking .panel-photos {
	border: 2px solid #5da0cc;
	border-radius: 16px;
}
#panel-pm-booking,
#panel-pm-booking .panel-photos {
	border: 2px solid #6cb280;
	border-radius: 16px;
}
#panel-cw-booking,
#panel-cw-booking .panel-photos {
	border: 2px solid #b58cc8;
	border-radius: 16px;
}
#panel-dv-booking .booking-panel-header .panel-title,
#panel-we-booking .booking-panel-header .panel-title,
#panel-pm-booking .booking-panel-header .panel-title,
#panel-dv-booking .booking-panel-header .panel-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-grid .panel-title {
	font-size: 18px;
}
.booking-grid .panel-spec-item .label {
	font-size: 14px;
}
.booking-grid .panel-spec-item img {
	width: 14px;
	height: 14px;
}
.booking-grid .panel-photos {
	max-width: 200px;
	height: 150px;
	margin: 8px auto 0px auto;
}

@media (min-width: 769px) {
	.booking-grid .panel-title {
		font-size: 22px;
	}
	.booking-grid .panel-spec-item .label {
		font-size: 18px;
	}
	.booking-grid .panel-spec-item img {
		width: 16px;
		height: 16px;
	}
	.booking-grid .panel-photos {

	}
	#panel-dv-booking,
	#panel-we-booking,
	#panel-pm-booking,
	#panel-cw-booking {
	  height: 260px;
	}
}

.booking-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
	padding: 8px;
	background: #15173d;
	border-radius: 16px;
	box-shadow: var(--default-shadow);
}
.booking-grid > * {
    flex: 1 1 calc(50% - 8px);
}
@media (max-width: 300px) {
    .booking-grid {
        max-width: 300px;
    }
    .booking-grid > * {
        flex: 1 1 100%;
    }
}
.booking-panel.selected {
    border-color: #15173D;
    /*box-shadow: 0 8px 25px rgba(43, 95, 138, 0.2);*/
}

.booking-panel-header {
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 8px;
}

.select-indicator {
	display: inline-block;
    width: 14px;
    height: 14px;
	margin-bottom: 0px;
    border-radius: 50%;
    border: 1px solid #15173d;
    background: #fffaf0;
    transition: all 0.3s ease;
}

.booking-panel.selected .select-indicator {
    border-color: #2b5f8a;
    background: #2b5f8a;
    box-shadow: inset 0 0 0 3px white;
}

.select-button {
    width: 100px;
    padding: 4px 2px;
	margin: 4px 0px;
    background: #e2e8f0;
    color: #4a5568;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-panel.selected .select-button {
    background: #2b5f8a;
    color: #fffaf0;;
}
.select-button:hover {
    background: #cbd5e0;
}
.booking-panel.selected .select-button:hover {
    background: #1e4a6e;
}

/* some direct WPBS css extra */
.wpbs-main-wrapper {
	margin-top: 12px;
}
.wpbs-form-field-payment_method {
	display: none;
}
.wpbs-legend {
	margin-top: 0;
}