/* ======= Site Style Overrides ======= */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

/* Variables */
:root {
  /* Site Fonts */
  --siteFont: var(--siteFont1), Helvetica Neue, Helvetica, Arial, sans-serif;
  --siteFont1: 'Lato'; /* sans-serif */
  --siteFont2: 'Playfair'; /* serif */
  --siteFont3: 'Playfair'; /* sans-serif */
  --siteFont4: 'Playfair'; /* sans-serif */
  --siteFont5: 'Abel'; /* sans-serif */

  /* Colors */
	--siteColor1: 201, 64%, 25%; 	/* #174D6A - Atlantic */
	--siteColor2: 203, 37%, 76%; 	/* #ADC8D9 - Tide */
	--siteColor3: 160, 24%, 68%;   /*	#9BC1B4 - Seafoam */
	--siteColor4: 0, 0%, 80%; 		    /* #cccccc - Light Gray */
	--siteColor5: 0, 0%, 27%; 		    /* #444444 - Dark Gray */
	--siteColor6: 42, 98%, 74%; 	/* #FED87C - Shoreline */
  --bodyFontColor: 0, 0%, 20%;

	/* Header Height - used by JS and CSS */
	--headerHeight: 9rem;

  /* Border Radius Defaults */
  --borderRadius: .25rem; /* Global Radius for most if not all things (25px) */
  --borderRadiusPill: .25rem;
  --borderRadiusCircle: 100rem;
  --borderRadiusCheckbox: 0.25rem;

	/* Datepicker Day Styles */
	--dpDayRadius: 0.25rem;
	--dpDayToday: hsl(57, 100%, 78%); /* Datepicker Default Yellow */
	--dpDayOfTheWeekBGColor: hsl(0, 0%, 95%); /* black, 5% */ /* Has to be specific value because of opacity flickering bug */
	--dpDayOfTheWeekTextColor: hsl(var(--bodyFontColor));
	--dpDayHoverBGColor: hsl(var(--siteColor2));
	--dpDayHoverTextColor: hsl(var(--white));
	--dpDaySelectedBGColor: hsl(var(--siteColor2));
	--dpDaySelectedTextColor: hsl(var(--white));
	--dpDayHighlightBGColor: hsla(201, 64%, 25%, 75%); /* siteColor2, 75% */ /* Has to be specific value because of opacity flickering bug */
	--dpDayHighlightTextColor: hsl(var(--white));
	--dpDayAvailableBGColor: hsla(203, 37%, 76%, 75%); /* siteColor1, 75% */ /* Has to be specific value because of opacity flickering bug */
	--dpDayUnavailableBGColor: hsl(0, 0%, 95%); /* Has to be specific value because of opacity flickering bug */
	--dpDayUnavailableTextColor: hsla(var(--bodyFontColor), 50%);
	--dpDayCheckInBGColor: linear-gradient(to left top, var(--dpDayAvailableBGColor) 49%, var(--dpDayUnavailableBGColor) 50%);
	--dpDayCheckOutBGColor: linear-gradient(to left top, var(--dpDayUnavailableBGColor) 49%, var(--dpDayAvailableBGColor) 50%);
}

.container { max-width: 90rem; }
.row { margin-right: 0; margin-left: 0; }

/* Buttons */
.btn, button { border: none; border-radius: var(--borderRadiusPill); color: hsl(var(--bodyFontColor)); font-weight: var(--wMedium); text-transform: uppercase; }
.btn:hover, button:hover { outline: none; box-shadow: var(--focusShadow); }
.btn, button { padding: 0.9375rem 1.25rem; }
.btn-sm { padding: 0.25rem 0.75rem; }
.btn-sm .icon { width: 0.75rem; height: 0.75rem; }
.btn-md { padding: 0.75rem 1.5rem; }
.btn-lg { padding: 1.25rem 2rem; }
.btn-lg .icon { width: 1.5rem; height: 1.5rem; }
.btn-outline { color: hsl(var(--siteColor1)); background-color: hsl(var(--white)); border: 0.0625rem hsla(var(--siteColor1), 25%) solid; border-radius: var(--borderRadiusPill); transition: all ease-in-out 0.4s; }
.btn-outline:hover { color: hsl(var(--siteColor1)); }
.btn-outline .icon { width: 1rem; height: 1rem; color: hsl(var(--siteColor1)); }
.content-builder-wrap .is-btn.is-btn-ghost1 { background: hsl(var(--siteColor1)) !important; color: hsl(var(--white)) !important; }
.content-builder-wrap .is-btn.is-btn-ghost1:hover { background: hsl(var(--siteColor2)) !important; color: hsl(var(--white)) !important; }
.content-builder-wrap .is-btn.is-btn-ghost2 { background: hsl(var(--siteColor2)) !important; color: hsl(var(--white)) !important; }
.content-builder-wrap .is-btn.is-btn-ghost2:hover { background: hsl(var(--siteColor1)) !important; color: hsl(var(--white)) !important; }
body .ui-datepicker.ui-widget-content td a:hover, body .ui-datepicker.ui-widget-content td.dp-start-date a, body .ui-datepicker.ui-widget-content td.dp-end-date a { border-radius: 0;
}

/* Inputs */
input[type=text], input[type=email], input[type=search], input[type=password], input[type=number], input[type=date], input[type=tel] { padding: 0.625rem; font-size: 1rem; font-weight: var(--wNormal); color: var(--bodyFontColor); border: 0.0625rem solid #ced4da; border-radius: var(--borderRadiusCheckbox); }
textarea { min-height: 4rem; padding: 0.625rem; font-size: 1rem; font-weight: var(--wNormal); line-height: 1.5; color: var(--bodyFontColor); border: 0.0625rem solid #ced4da; border-radius: var(--borderRadiusCheckbox); }

/* Calendar Legend */
.be-calendar-legend-key-preview { border-radius: var(--borderRadiusCheckbox); margin-right: 0.75rem; width: 1.25rem; height: 1.25rem; }
.be-calendar-legend-key-preview.available { background-color: var(--dpDayAvailableBGColor); }
.be-calendar-legend-key-preview.unavailable { background-color: var(--dpDayUnavailableBGColor); }
.be-calendar-legend-key-preview.check-in { background: var(--dpDayCheckInBGColor); }
.be-calendar-legend-key-preview.check-out { background: var(--dpDayCheckOutBGColor); }


/* BASE */
html { font-size: var(--siteScale); position: relative; }
body { background: hsl(var(--white)); font-family: var(--siteFont); font-size: var(--bodyFontSize); color: hsl(var(--bodyFontColor)); font-weight: var(--wRegular); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.admin-bar-active .i-wrapper { margin-top: 2.5rem; }

/* Links */
a, a:hover, .mce-content-body a { color: hsl(var(--siteColor1)); }
.icon { display: inline-block; width: 1.25rem; height: 1.25rem; }

/* Title Tags */
h1, .h1, .mce-content-body h1, .mce-content-body .h1, .cell-block-options .h1 { font-size: 40px; font-family: var(--siteFont2), sans-serif; line-height: 1; text-transform: capitalize; font-weight: 300; }
h2, .h2, .mce-content-body h2, .mce-content-body .h2, .cell-block-options .h2 { font-size: 2.5rem; font-family: var(--siteFont1), sans-serif; line-height: 1; text-transform: capitalize; }
h3, .h3, .mce-content-body h3, .mce-content-body .h3, .cell-block-options .h3 { font-size: 2.125rem; font-family: var(--siteFont1), sans-serif; line-height: 1; text-transform: capitalize; }
h4, .h4, .mce-content-body h4, .mce-content-body .h4, .cell-block-options .h4 { font-size: 1.75rem; font-family: var(--siteFont1), sans-serif; line-height: 1; text-transform: capitalize; }
h5, .h5, .mce-content-body h5, .mce-content-body .h5, .cell-block-options .h5 { font-size: 1.3125rem; font-family: var(--siteFont1), sans-serif; line-height: 1; text-transform: capitalize; }
h6, .h6, .mce-content-body h6, .mce-content-body .h6, .cell-block-options .h6 { font-size: 1.125rem; font-family: var(--siteFont1), sans-serif; line-height: 1; text-transform: capitalize; }
.tagline, .subtitle { font-size: 1.125rem; font-family: var(--siteFont2), serif; color: hsl(var(--bodyFontColor)); line-height: 1.15; text-transform: capitalize; }

/* Horizontal Rule */
hr.light { margin: 1.5rem 0; padding: 0; height: 0.0625rem; border: none; background-color: hsla(var(--black), 15%); }
hr.medium { margin: 1.5rem 0; padding: 0; height: 0.3125rem; border: none; border-radius: var(--borderRadiusPill); background-color: hsla(var(--siteColor1), 10%); }
hr.solid { margin: 1.5rem 0; padding: 0; height: 0.625rem; border: none; border-radius: var(--borderRadiusPill); background-color: hsla(var(--siteColor1), 10%); }
.divider { display: flex; justify-content: center; align-items: center; position: relative; }
.divider:before, .divider:after { content: ""; display: block; min-width: 4rem; width: 100%; max-width: 12rem; border-bottom: 0.125rem solid hsl(var(--siteColor1)); }
.divider .icon-divider { width: 4rem; height: 4rem; margin: 0 1rem; background: url('/images/layout/RJ-Favicon.png') no-repeat center center; background-size: cover; }
.header-bar { align-items: center; }
.i-header-navigation-link { text-shadow: none; }
.i-header-logo-img { max-width: 9rem; }
.i-header-bar.active { background: linear-gradient(180deg, hsl(var(--black)) 0%, hsla(var(--black), 0) 100%); }
@media (min-width: 1025px) {
.header { z-index: 1000; height: 116px; min-height: 116px; overflow: visible; }
.header-bar { left: 50%; width: 100vw; max-width: none; height: 116px; min-height: 116px; margin-left: -50vw; padding: 0 56px; display: block; align-items: initial; justify-content: initial; overflow: visible;  }
.header-logo { position: absolute; top: 8px; left: 50%; z-index: 80; width: 150px; margin: 0; transform: translateX(-50%); text-align: center; pointer-events: auto; }
.header-logo-link { display: block; box-shadow: none; text-decoration: none; pointer-events: auto; }
.header-logo-img { width: 150px; max-width: none; height: auto; margin: 0 auto; }
.header-logo-text { display: none; }
.header .i-header-actions { display: none; }
.header-nav-wrap { position: absolute; inset: 0; z-index: 30; width: 100%; height: 116px; margin: 0; padding: 0 56px; display: block; overflow: visible; pointer-events: auto; }
.header-navigation { width: 100%; height: 100%; margin: 0; display: block; overflow: visible; pointer-events: auto; }
.header-navigation-toggle { display: none; }
.header-navigation-container { position: static; width: 100%; height: 100%; display: block; background: transparent; transform: none; visibility: visible; opacity: 1; overflow: visible; pointer-events: auto; }
.header .i-header-navigation-heading { display: none; }
.header-navigation-list-wrap { position: relative; width: 100%; height: 116px; display: block; overflow: visible; pointer-events: auto; }
.desktop-nav { width: 100%; height: 116px; display: grid; grid-template-columns: minmax(0, 1fr) 250px minmax(0, 1fr); align-items: center; overflow: visible; pointer-events: auto; }
.desktop-nav-side { height: 116px; display: flex; align-items: center; overflow: visible; pointer-events: auto; }
.desktop-nav-left { grid-column: 1; justify-content: flex-end; }
.desktop-nav-right { grid-column: 3; justify-content: flex-start; }
.desktop-nav .header-navigation-list { width: auto; height: 116px; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: clamp(22px, 2.35vw, 42px); list-style: none; overflow: visible; pointer-events: auto; }
.mobile-nav { display: none; }
.header .i-header-navigation-item { position: relative; width: auto; height: 116px; margin: 0; padding: 0; display: flex; align-items: center; list-style: none; overflow: visible; pointer-events: auto; }
.header .i-header-navigation-link { height: 116px; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 17px; font-weight: 400; line-height: 1; text-decoration: none; white-space: nowrap; background: transparent; border: 0; border-radius: 0; box-shadow: none; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55); pointer-events: auto; }
.header .i-header-navigation-link:hover, .header .i-header-navigation-link:focus { color: #d8edf5; opacity: 1; text-decoration: none; background: transparent; }
.header .i-header-navigation-sub-toggle { display: none; }
.header .i-header-navigation-sub { position: absolute; top: 100%; left: 50%; z-index: 9999; min-width: 220px; margin: 0; padding: 0; display: block; opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-50%) translateY(10px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
.header .i-header-navigation-item:hover > .i-header-navigation-sub, .header .i-header-navigation-item:focus-within > .i-header-navigation-sub { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.header .i-header-navigation-sub * { pointer-events: auto; }
.header .i-header-navigation-sub .i-header-navigation-list { width: 100%; height: auto; max-height: none; margin: 0; padding: 8px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0; background-color: #ffffff; border-radius: 4px; box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.18); list-style: none; overflow: visible; }
.header .i-header-navigation-sub .i-header-navigation-item { width: 100%; height: auto; margin: 0; padding: 0; display: block; overflow: visible; }
.header .i-header-navigation-sub .i-header-navigation-link { width: 100%; height: auto; min-height: 0; margin: 0; padding: 8px 24px; display: block; color: #333333; font-size: 16px; font-weight: 400; line-height: 1.25; text-align: left; text-shadow: none; white-space: nowrap; border-radius: 4px; }
.header .i-header-navigation-sub .i-header-navigation-link:hover, .header .i-header-navigation-sub .i-header-navigation-link:focus { color: #333333; background-color: rgba(23, 77, 106, 0.15); opacity: 1; }
.header .i-header-navigation-sub .i-header-navigation-sub { top: 0; left: 100%; transform: translateX(10px) translateY(0); }
.header .i-header-navigation-sub .i-header-navigation-item:hover > .i-header-navigation-sub, .header .i-header-navigation-sub .i-header-navigation-item:focus-within > .i-header-navigation-sub { transform: translateX(0) translateY(0); }
}

@media (min-width: 1025px) and (max-width: 1299px) {
.header-bar { padding-left: 28px; padding-right: 28px; }
.header-nav-wrap { padding-left: 28px; padding-right: 28px; }
.header-logo { width: 125px; }
.header-logo-img { width: 125px; }
.desktop-nav { grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr); }
.desktop-nav .header-navigation-list { gap: 20px; }
.header .i-header-navigation-link { font-size: 14px; }
}

/* Hero Banner */
.hero-wrap { padding: var(--headerHeight) 0 1rem; }
@media (min-width: 1025px) {
  .hero-wrap { height: 80vh; padding: 0; }
  .hero-wrap.int { max-height: 23rem; }
  .hero-wrap.int .hero-img-wrap { height: 100%; }
}

/* Hero Swiper */
.cms-hero-swiper-wrap .swiper-pagination-bullet { display: block; background: hsla(var(--white), 75%); }
.cms-hero-swiper-wrap .swiper-pagination-bullet-active { background: hsl(var(--white)); }
@media (min-width: 1025px) {
  .hero-swiper-img-wrap { display: none; height: 100vh; max-height: 42rem; }
}

/* Hero Video */
.hero-wrap .hero-video-wrap { position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; }
.hero-wrap .hero-video { display: block; width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
@media (min-width: 1025px) {
  .hero-wrap .hero-video-wrap { position: relative; height: 90vh; }
}

/* Hero Tagline */
.hero-tagline { padding: 0.9375rem 0.9375rem 1rem; font-family: var(--siteFont4); font-size: 3.5rem; color: hsl(var(--white)); font-weight: var(--wMedium); text-shadow: none; }
@media (min-width: 1025px) {
  .hero-tagline { padding: 0.9375rem; bottom: calc(25% + 3.5rem); font-size: 5rem; }
}

/* Quick Search */
.hero-quick-search-wrap { background: transparent; border-radius: 1rem; font-family: var(--siteFont2), serif; text-transform: capitalize; }
.hero-quick-search .qs-dates-wrap:before, .hero-quick-search .col-mlsNumber .input-wrap:before, .hero-quick-search .bootstrap-select .dropdown-toggle:before { display: none; }
.hero-quick-search .bootstrap-select .dropdown-toggle { padding: 1rem 1rem 1rem 1.5rem !important;}
.hero-quick-search .input-wrap, .hero-quick-search .select-wrap, .qs-dates-wrap { background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(8px); color: hsl(var(--white)) !important; }    
.qs-dates-arrival, .qs-dates-departure, div#datepickerResetInline .icon, body .hero-quick-search .bootstrap-select .dropdown-toggle .filter-option-inner-inner, body .hero-quick-search  .bootstrap-select .dropdown-toggle:after  { color: hsl(var(--white)); text-transform: uppercase; font-family: "Abel", sans-serif; }
.hero-quick-search .col-mlsNumber .input-wrap:before { width: 1.4375rem; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="hsl(198, 75.4%, 47.8%)" d="M443.524 190.109l4.286-24c1.313-7.355-4.342-14.109-11.813-14.109h-89.045l18.909-105.89c1.313-7.355-4.342-14.11-11.813-14.11h-24.38a12 12 0 00-11.813 9.89L298.192 152h-111.24l18.909-105.89c1.313-7.355-4.342-14.11-11.813-14.11h-24.38a12 12 0 00-11.813 9.89L138.192 152H44.86a12 12 0 00-11.813 9.891l-4.286 24C27.448 193.246 33.103 200 40.575 200h89.045l-20 112H16.289a12 12 0 00-11.813 9.891l-4.286 24C-1.123 353.246 4.532 360 12.003 360h89.045L82.139 465.891C80.826 473.246 86.481 480 93.953 480h24.38a12 12 0 0011.813-9.891L149.808 360h111.24l-18.909 105.891c-1.313 7.355 4.342 14.109 11.813 14.109h24.38a12 12 0 0011.813-9.891L309.808 360h93.331a12 12 0 0011.813-9.891l4.286-24c1.313-7.355-4.342-14.109-11.813-14.109H318.38l20-112h93.331a12 12 0 0011.813-9.891zM269.62 312H158.38l20-112h111.24l-20 112z"></path></svg>'); }
.hero-quick-search .col-mlsNumber .input-wrap input[type=text] { min-width: 12rem; }
.hero-quick-search button[type=submit] { background: hsl(var(--siteColor6)); font-family: var(--siteFont3); font-size: 1.25rem; font-weight: var(--wMedium); color: hsl(var(--black)); text-transform: uppercase; }
.hero-quick-search button[type=submit]:hover { background: hsl(var(--siteColor2)); color: hsl(var(--white)); }
.hero-quick-search .col-community-select .bootstrap-select .dropdown-toggle { padding: 1rem; }
.hero-quick-search .bootstrap-select .dropdown-toggle { padding: 1rem 1rem 1rem 3rem; }
.hero-quick-search .bootstrap-select .dropdown-toggle, .hero-quick-search .bootstrap-select .dropdown-toggle .filter-option, .hero-quick-search .bootstrap-select .dropdown-toggle .filter-option-inner, .hero-quick-search .bootstrap-select .dropdown-toggle .filter-option-inner-inner { justify-content: flex-start; }
.hero-quick-search .input-wrap, .hero-quick-search .select-wrap, .hero-quick-search button[type=submit] { height: 4rem; }
@media (min-width: 1025px) {
  .hero-quick-search-wrap { bottom: 25%; border-radius: var(--borderRadiusPill); }
  .hero-quick-search-wrap.int { bottom: 2.5rem; }
  .hero-quick-search .row-be { grid-template-columns: repeat(calc(var(--quickSearchFiltersCount) + 2), minmax(auto, 1fr)); }
  .hero-quick-search .row-mls { grid-template-columns: repeat(calc(var(--quickSearchFiltersCount) - 1), minmax(auto, 1fr)); }
  .hero-quick-search button[type=submit] { border-radius: 0 8px 8px 0; }
  .hero-quick-search .col:first-child > div { border-radius: 8px 0 0 8px !important; }
  .hero-quick-search [class^=col] > div:first-child .input-wrap, .hero-quick-search [class^=col] > div:first-child .select-wrap { border-radius: var(--borderRadiusPill) 0 0 var(--borderRadiusPill) !important; }
}

/* Hide MLS on HP */
.cms-mls-featured-wrap { display: none; }

/* Custom Book Section */
.custom-book-section .col-md-8 { padding: 0; }
.custom-book-section .col-md-8 img { width: 100%; height: 100%; object-fit: cover; }
.custom-book-section .title { font-size: 1.5rem; margin-bottom: 2rem; }
.custom-book-section ul li { list-style-type: none; } 
.custom-book-section ul li { position: relative; } 
.custom-book-section ul li:before { content: ''; position: absolute; top: 50%; left: -1.5rem; transform: translateY(-50%); width: 0; height:0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 12px solid hsl(var(--siteColor6)); } 
.custom-book-section .btn { padding: 1rem 2rem; font-size: 1.25rem; background: hsl(var(--siteColor6)); color: hsl(var(--siteColor1)); font-weight: var(--wMedium); letter-spacing: .1825rem; margin-top: 1.5rem; } 
.custom-book-section .btn:hover { background: hsl(var(--siteColor2)); } 

/* Custom Featured Properties */
.be-featured-properties-controls .spinnakers-btn-next,
.be-featured-properties-controls .spinnakers-btn-prev { width: 3.125rem; height: 3.125rem; margin: auto; position: relative; top: auto; right: auto; left: auto; background: transparent; border-radius: 50vw; box-shadow: none; color: hsl(var(--siteColor1)); transition: all 0.4s ease-in-out; }
.be-featured-properties-controls .spinnakers-btn-next:hover,
.be-featured-properties-controls .spinnakers-btn-prev:hover { background: hsl(var(--siteColor1)); box-shadow: var(--dropShadow); color: hsl(var(--white)); }
.be-featured-properties-controls .spinnakers-btn-next:focus,
.be-featured-properties-controls .spinnakers-btn-prev:focus { outline: none; box-shadow: var(--focusShadow); }
.be-featured-properties-controls .spinnakers-btn-next:after,
.be-featured-properties-controls .spinnakers-btn-prev:after { display: none; }
.be-featured-properties-controls .spinnakers-btn-next .icon,
.be-featured-properties-controls .spinnakers-btn-prev .icon { width: 1.75rem; height: 1.75rem; }

/* Content */
.i-content.int { padding: 3.125rem 0; background: hsl(var(--white)); }

/* Homepage Welcome */
.i-welcome { padding: 1rem 0; }
.i-welcome .container { max-width: 125rem !important; }
.i-welcome .welcome-img-wrap { height: 20rem; }
.i-welcome p { margin-bottom: 2.5rem; line-height: 2; font-weight: var(--wRegular); line-height: 25px; }
@media (min-width: 768px) {
  .i-welcome .welcome-img-wrap { height: 25rem; }
}
@media (min-width: 1025px) {
  .i-welcome { padding: 1rem 0; }
}

/* Site Search Form */
.site-search-form-wrap { max-width: 25rem; margin: 0 0 1rem; }
.site-search-form label { color: hsl(var(--gray)); }
.site-search-form label:not(.error) { display: none; }
.site-search-term[type=search] { padding: 0.625rem 0.75rem; background: transparent; border: 0.0625rem hsl(var(--gray)) solid; border-radius: var(--borderRadiusCheckbox) 0 0 var(--borderRadiusCheckbox); color: hsl(var(--bodyFontColor)); text-overflow: ellipsis; }
.site-search-term[type=search]::placeholder { color: hsl(var(--bodyFontColor)); }
.site-search-term[type=search]::-ms-input-placeholder { color: hsl(var(--bodyFontColor)); }
.site-search-term[type=search]:-webkit-autofill, .site-search-term[type=search]:-webkit-autofill:hover, .site-search-term[type=search]:-webkit-autofill:focus { -webkit-text-fill-color: hsl(var(--bodyFontColor)) !important; }
.site-search-submit { width: 3.75rem; padding: 0.625rem 0.75rem; background: hsl(var(--sitecolor1)); border: 0.0625rem hsl(var(--gray)) solid; border-left: 0 !important; border-radius: 0 var(--borderRadiusCheckbox) var(--borderRadiusCheckbox) 0 !important; color: hsl(var(--bodyFontcolor)); }
.site-search-submit:hover { background: hsl(var(--siteColor1)); border: 0.0625rem hsl(var(--siteColor1)) solid !important; border-left: 0 !important; color: hsl(var(--white)); }

/* Footer */
.i-footer { font-family: var(--siteFont1), sans-serif; background: hsl(var(--siteColor2))!important; color: hsl(var(--white)); }
.i-footer .h5 { color: hsl(var(--siteColor1))!important; border-bottom: 0.0625rem hsla(var(--siteColor1), 50%) solid; font-family: var(--siteFont1); font-size: 1.5rem; font-weight: var(--wBold); text-transform: capitalize; }
.i-footer .h5:after { display: none; }
.footer-logo-wrap { margin: 0 0 1.25rem; }
.footer-logo-img { max-width: 13.125rem; }
.i-footer .site-search-form-wrap { max-width: 18.75rem; margin: 0 auto 1rem; }
.i-footer .site-search-form label { color: hsl(var(--white)); }
.i-footer .site-search-term[type=search] { border: 0.0625rem hsl(var(--siteColor1)) solid; color: hsl(var(--bodyFontColor)); }
.i-footer .site-search-term[type=search]::placeholder { color: hsl(var(--white)); }
.i-footer .site-search-term[type=search]::-ms-input-placeholder { color: hsl(var(--white)); }
.i-footer .site-search-term[type=search]:-webkit-autofill, .i-footer .site-search-term[type=search]:-webkit-autofill:hover, .i-footer .site-search-term[type=search]:-webkit-autofill:focus { -webkit-text-fill-color: hsl(var(--white)) !important; }
.i-footer .site-search-submit { background: hsl(var(--siteColor3)); border: 0.0625rem hsl(var(--white)) solid !important; border-left: 0 !important; color: hsl(var(--white)); }
.i-footer .site-search-submit:hover { background: hsl(var(--siteColor2)) !important; border: 0.0625rem hsl(var(--white)) solid !important; border-left: 0 !important; color: hsl(var(--white)); }
.i-footer button[type="submit"] { background: hsl(var(--siteColor3))!important; transition: .4s all ease; }
.i-footer button[type="submit"]:hover { background: hsl(var(--siteColor2))!important; }
.footer-quick-links a { padding: 0; color: hsl(var(--siteColor1)); font-size: 1rem; font-weight: var(--wBold); transition: all 0.4s ease-in-out; }
.footer-quick-links a:hover { color: hsl(var(--black)); }
@media (min-width: 480px) {
  .footer-quick-links li { flex-basis: 50%; max-width: 50%; }
}
@media (min-width: 768px) {
  .footer-quick-links { max-width: 100%; }
}
@media (min-width: 1025px) {
  .footer-quick-links li { flex-basis: 100%; max-width: 100%; }
}
@media (min-width: 1025px) {
  .footer-quick-links li { flex-basis: 50%; max-width: 50%; }
}

/* Footer Newsletter */
.footer-newsletter-form label:not(.error) { display: none; }
.footer-newsletter-form:focus-within input { padding: 0.625rem 1rem; }
.footer-newsletter-form input { background-color: transparent; padding: 0.625rem 1rem; border: 0.0625rem hsl(var(--white)) solid; color: hsl(var(--white)) !important; }
.footer-newsletter-form input::placeholder { color: hsl(var(--white)); }
.footer-newsletter-form input::-ms-input-placeholder { color: hsl(var(--white)); }
.footer-newsletter-form input:-webkit-autofill, .footer-newsletter-form input:-webkit-autofill:hover, .footer-newsletter-form input:-webkit-autofill:focus { -webkit-text-fill-color: hsl(var(--white)) !important; }
.footer-newsletter-form .btn { background: hsl(var(--siteColor2)); color: hsl(var(--white)); }
.footer-newsletter-form .btn:hover { background: hsl(var(--siteColor5)); color: hsl(var(--white)); }

/* Return to Top */
.i-footer .return-to-top { opacity: 1; width: 3.125rem; height: 3.125rem; padding: 0.5rem; position: absolute; top: -1.5rem; left: 50%; z-index: 2; transform: translate(-50%,0); outline: none; background: hsl(var(--siteColor3)); border: 0.0625rem solid hsl(var(--white)); border-radius: 0; color: hsl(var(--white)); }
.i-footer .return-to-top .icon { width: 1.25rem; height: 1.25rem; }
.i-footer .return-to-top:hover { background: hsl(var(--siteColor2)); box-shadow: 0 0 0 0.125rem hsla(var(--white), 0.25); }
@media (min-width: 320px) {
  .i-footer { padding: 3.125rem 0 0; }
}
@media (min-width: 768px) {
  .i-footer { padding: 6.25rem 0 0; }
}

/* Featured Properties */
.cms-be-featured-properties-wrap { padding: 1rem 0; margin: 4rem 0 2rem; background: url(/images/layout/Spinnakers-Reach-Featured-BG.png) hsl(var(--white)) 50% / cover no-repeat; }
.cms-be-featured-properties-wrap .h1 { font-size: 40px; font-style: normal; font-weight: 300; line-height: 80px; letter-spacing: 0.8px; text-transform: capitalize; }
.cms-be-featured-properties-wrap .subtitle { color: hsl(var(--bodyFontColor)); font-weight: var(--wMedium); }

.divider, .full-callout-wrap, .cms-callouts-wrap { display: none; }

/* White Gradient */
.hero-wrap { position: relative; overflow: hidden; }
.hero-wrap::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 5.625rem; pointer-events: none; z-index: 2; background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 55%, rgba(255, 255, 255, 0.92) 80%, hsl(var(--white)) 100% ); }

/* Home Option 1 */
.be-featured-property { justify-content: flex-end; border-radius: 0; }
.be-featured-property-img-wrap { aspect-ratio: 1 / 1; width: 100%; height: 30rem !important; border-radius: 0; }
.be-featured-property-img { object-fit: cover; }
.be-featured-property-info-wrap { position: absolute; left: 0; z-index: 2; padding: 2rem; border-radius: 4px; background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(13.9px); color: hsl(var(--white)); text-align: left; transition: all 0.4s ease-in-out; }
.be-featured-property-location { display: flex; text-align: left; font-family: var(--siteFont1); font-size: 14px; font-style: normal; font-weight: 400; line-height: normal; letter-spacing: 0.28px; text-transform: uppercase; margin-bottom: 0.5rem; }
.be-featured-property-title { text-align: left; font-family: var(--siteFont2); font-size: 26px; font-style: normal; font-weight: 300; line-height: normal; letter-spacing: 0.52px; text-transform: capitalize; }
.be-featured-property-title .h3 { text-align: left;  font-size: 1.625rem !important; }
.be-featured-property-desc { display: none; line-height: 1.5; }
.be-featured-property-info { flex-wrap: wrap; flex-direction: column; justify-content: flex-start; align-items: flex-start; line-height: 1; text-transform: uppercase; }
.be-featured-property-info-item { display: block; padding-right: 1.5rem; padding-left: 0; font-size: 16px; font-style: normal; font-weight: 300; line-height: normal; text-align: left; }
.be-featured-property-info-item .icon { display: none; width: 1.5rem; height: 1.5rem; color: hsl(var(--white)); }
.be-featured-property-info-item-link { display: block; }
.text-description { font-family: var(--siteFont1); font-size: 0.875rem; font-style: normal; font-weight: 400; line-height: normal; }
.be-featured-property-link { color: hsl(var(--white)); text-decoration: none; }
.be-featured-property-link .icon { width: 1.5rem; height: 1.5rem; margin: 0 0.25rem 0.25rem 0; }
.be-featured-property-link .text { display: inline-flex; }
@media (min-width: 480px) {
  .be-featured-property-info { flex-direction: row; }
}
@media (min-width: 1025px) {
  .be-featured-property-info-item { font-size: 0.875rem; }
  .be-featured-property-img-wrap { aspect-ratio: 3 / 2; }
  .be-featured-property-info-wrap { width: calc(100% - 4rem); max-width: 35rem !important; height: auto; justify-content: flex-end; margin: 2rem; }
  .be-featured-property-info { align-items: flex-end; }
  .be-featured-property-desc { display: block; }
  .be-featured-property-link .text { font-family: var(--siteFont1); font-size: 14px; font-style: normal; font-weight: 300; line-height: normal; text-transform: uppercase; }
  .be-featured-property-info-item-link { width: auto; margin: 0; }
}

/* Home Option 1 Swiper Styles */
.be-featured-swiper { max-width: 200rem; }
.be-featured-swiper .swiper-slide { --marginRight: 1.875rem; --columns: 1; margin-right: var(--marginRight); width: calc(calc(100% / var(--columns)) - var(--marginRight) + calc(var(--marginRight) / var(--columns))); }
.be-featured-swiper .swiper-slide:after { content: ""; display: block; height: calc(100% - 4rem); position: absolute; top: 50%; left: calc(100% + 2.5rem); transform: translateY(-50%); border-right: 0.0625rem solid hsl(var(--gray70)); }
@media (min-width: 0px) {
  .be-featured-swiper .swiper-slide { --columns: 1; }
}
@media (min-width: 768px) {
  .be-featured-swiper .swiper-slide { --columns: 2; }
}
@media (min-width: 1025px) {
  .be-featured-swiper .swiper-slide { --marginRight: 5rem; --columns: 1.5; }
}
@media (min-width: 1600px) {
  .cms-specials-option-1 .be-featured-swiper .swiper-slide { --columns: 2; }
}

/* Areas hover sections */
.cms-area-hover-section { padding: clamp(2.5rem, 5vw, 5rem) 0; overflow: hidden; background-color: hsl(var(--white, 0 0% 100%)); }
.cms-area-hover-title { margin: 0; color: hsl(var(--siteColor1, 190 45% 24%)); text-align: center; font-family: var(--siteFont2); font-size: 40px; font-style: normal; font-weight: 300; line-height: normal; }
.cms-area-hover-container { width: 90rem; margin: 0 auto; }
.cms-area-hover-stage { position: relative; }
.cms-area-hover-image-wrap { position: relative; width: 100%; aspect-ratio: 1066 / 424; overflow: hidden; }
.cms-area-hover-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; }
.cms-area-hover-image-current { z-index: 1; }
.cms-area-hover-image-next { z-index: 2; opacity: 0; transform: scale(1.03); clip-path: inset(0 100% 0 0); }
.cms-area-hover-stage.is-changing .cms-area-hover-image-next { opacity: 1; animation: cmsAreaHoverReveal 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.cms-area-hover-sweep { position: absolute; inset: -10%; z-index: 3; pointer-events: none; opacity: 0; transform: translateX(-120%); background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.18) 32%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.18) 68%, transparent 100% ); mix-blend-mode: screen; }
.cms-area-hover-stage.is-changing .cms-area-hover-sweep { animation: cmsAreaHoverSweep 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.cms-area-hover-nav { position: absolute; bottom: 15%; left: 50%; z-index: 5; display: flex; align-items: stretch; justify-content: center; width: min(calc(100% - 6rem), 75rem); transform: translateX(-50%); background-color: rgba(0, 0, 0, 0.48); border: 0.0625rem solid rgba(255, 255, 255, 0.22); backdrop-filter: blur(0.125rem); }
.cms-area-hover-btn { display: inline-flex; flex: 1 1 auto; align-items: center; justify-content: center; min-width: 0; padding: 1rem 0.75rem; border: 0; background-color: transparent; color: rgba(255, 255, 255, 0.76); font: inherit; text-align: center; text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.35); transition: color 0.25s ease, font-size 0.25s ease, font-weight 0.25s ease, background-color 0.25s ease; text-transform: capitalize; font-size: 28px; font-style: normal; font-weight: 300; line-height: normal; }
.cms-area-hover-btn:first-child { border-left: 0; }
.cms-area-hover-btn:hover, .cms-area-hover-btn:focus, .cms-area-hover-btn.is-active { color: hsl(var(--white, 0 0% 100%)); }
.cms-area-hover-btn:focus { outline: 0.125rem solid rgba(255, 255, 255, 0.8); outline-offset: -0.25rem; }
.cms-area-hover-btn.is-active { font-size: 40px; font-weight: 400; }
@keyframes cmsAreaHoverReveal {
  0% { opacity: 1; transform: scale(1.03); filter: blur(0.35rem); clip-path: inset(0 100% 0 0); }
  45% { filter: blur(0.16rem); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); clip-path: inset(0 0 0 0); }
}
@keyframes cmsAreaHoverSweep {
  0% { opacity: 0; transform: translateX(-120%); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%); }
}

@media (max-width: 1024px) {
  .cms-area-hover-section { padding: 3rem 0; }
  .cms-area-hover-title { max-width: 36rem; margin-right: auto; margin-bottom: 1rem; margin-left: auto; padding: 0 1rem; }
  .cms-area-hover-container { width: min(calc(100% - 1rem), 66.625rem); }
  .cms-area-hover-image-wrap { aspect-ratio: 4 / 2.5; }
  .cms-area-hover-nav { position: relative; bottom: auto; left: auto; flex-wrap: wrap; width: calc(100% - 2rem); margin: -3rem auto 0; transform: none; }
  .cms-area-hover-btn { flex: 1 1 33.333%; padding: 0.85rem 0.5rem; border-top: 0.0625rem solid rgba(255, 255, 255, 0.16); font-size: 0.875rem; }
  .cms-area-hover-btn:nth-child(3n + 1) { border-left: 0; }
  .cms-area-hover-btn.is-active { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cms-area-hover-image-next, .cms-area-hover-sweep, .cms-area-hover-btn { animation: none !important; transition: none !important; }
}
.book-direct { position: relative; overflow: hidden; padding: 1.75rem 0 1.875rem; background: hsl(var(--white)); }
.book-direct, .book-direct * { box-sizing: border-box; }
.book-direct-container { max-width: 90rem; }
.book-direct-row { min-height: 20rem; }
.book-direct-media-col { padding-left: 0.9375rem; padding-right: 0.9375rem; }
.book-direct-image-wrap { position: relative; width: 100%; }
.book-direct-image { display: block; width: 100%; height: auto; }
.book-direct-content-col { padding-left: 0.9375rem; padding-right: 0.9375rem; }
.book-direct-content { padding-left: 1.75rem; color: hsl(var(--siteColor1)); }
.book-direct-title {     margin: 0 0 1.5rem; color: hsl(var(--siteColor1)); letter-spacing: 0.0125rem; font-family: var(--siteFont1); font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; }
.book-direct-list { margin: 0 0 1.875rem; padding: 0; list-style: none; }
.book-direct-list li { position: relative; margin: 0 0 0.9375rem; padding-left: 1.5rem; color: hsl(var(--siteColor1)); font-family: var(--siteFont1); font-size: 15px; font-style: normal; font-weight: 400; line-height: 19.5px; }
.book-direct-list li:last-child { margin-bottom: 0; }
.book-direct-list li::before { content: ""; position: absolute; top: 0.3125rem; left: 0; width: 0; height: 0; border-top: 0.25rem solid transparent; border-bottom: 0.25rem solid transparent; border-left: 0.5rem solid #ffd36a; }
.book-direct-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 8.5rem; min-height: 2rem; padding: 0.5rem 1.375rem; border: 0.0625rem solid hsla(var(--siteColor6)); border-radius: 0.1875rem; background: hsla(var(--siteColor6)); color: hsl(var(--siteColor1)); text-align: center; text-decoration: none; box-shadow: none; transition: background 250ms ease, border-color 250ms ease, color 250ms ease; font-family: var(--siteFont1); font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; letter-spacing: 2.4px; text-transform: uppercase; padding: 10px 19px 12px 19px; width: 190px; height: 45px; }
.book-direct-btn:hover, .book-direct-btn:focus { border-color: hsl(var(--siteColor1)); background: hsl(var(--siteColor1)); color: hsl(var(--white)); text-decoration: none; box-shadow: none; }
.book-direct-btn:focus-visible { outline: 0.125rem solid hsl(var(--siteColor1)); outline-offset: 0.1875rem; }
@media (max-width: 1024px) {
  .book-direct { padding: 2.125rem 0 2.625rem; }
  .book-direct-row { min-height: 0; }
  .book-direct-media-col, .book-direct-content-col { flex: 0 0 100%; max-width: 100%; }
  .book-direct-image-wrap { max-width: 47.5rem; margin: 0 auto 1.875rem; }
  .book-direct-content { max-width: 40rem; margin: 0 auto; padding-left: 0; text-align: center; place-items: center; }
  .book-direct-title { margin-bottom: 1.375rem; font-size: 1.375rem; line-height: 1.25; }
  .book-direct-list { display: inline-block; margin-bottom: 1.75rem; text-align: left; }
  .book-direct-list li { font-size: 0.75rem; }  
}

@media (prefers-reduced-motion: reduce) {
  .book-direct-btn { transition: none; }
}

/* Footer */
.footer { padding: 4.5rem 0 0; margin-top: 4rem; font-family: 'Abel'; }
.footer a:hover { color: hsl(var(--siteColor5));}
.footer .container { max-width: 90rem; }
.footer-col { padding-left: 1.25rem; padding-right: 1.25rem; margin-bottom: 2rem; }
.footer .footer-logo-wrap { display: inline-block; max-width: 11.5625rem; margin-bottom: 1.5rem; }
.footer .footer-logo-img { display: block; width: 100%; max-width: 11.5625rem; height: auto; }
.footer .h5 { margin: 0 0 1.25rem; font-family: Abel; font-size: 20px; font-style: normal; font-weight: 400; line-height: 0; letter-spacing: 0.4px;}
.footer-contact { color: hsl(var(--white)); font-size: 0.9375rem; line-height: 1.7; }
.footer .footer-quick-links { margin: 0; padding: 0; list-style: none; }
.footer .footer-quick-links a { display: inline-block; color: hsl(var(--white)); font-size: 0.9375rem; line-height: 1.45; text-decoration: none; }
.newsletter-row { position: relative; display: flex; align-items: center; max-width: 17.1875rem; }
.newsletter-input { width: 100%; height: 2.75rem; padding: 0.5rem 3rem 0.5rem 1rem; color: #222; background: hsl(var(--white)); border: 0.0625rem solid hsl(var(--white)); border-radius: 0; outline: none; }
.newsletter-input:focus { border-color: hsl(var(--siteColor2)); box-shadow: none; }
.newsletter-submit { position: absolute; top: 0; right: 0; display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; min-width: 2.75rem; padding: 0; color: hsl(var(--white)); background: hsl(var(--siteColor2)); border: 0; border-radius: 0; line-height: 1; }
.newsletter-submit:hover, .newsletter-submit:focus { color: hsl(var(--white)); background: hsl(var(--siteColor1)); box-shadow: none; }
.newsletter-submit .icon { width: 0.875rem; height: 0.875rem; fill: currentColor; }
.weather-widget { display: flex; align-items: center; gap: 0.875rem; color: hsl(var(--white)); }
.weather-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; min-width: 2.75rem; height: 2.75rem; color: hsl(var(--siteColor1)); font-size: 2rem; line-height: 1; }
.weather-copy { display: flex; flex-direction: column; color: hsl(var(--siteColor1)); line-height: 1.2; }
.weather-temp { display: block; font-size: 1.75rem; font-weight: 400; }
.weather-status { display: block; font-size: 0.9375rem; text-transform: lowercase; }
.footer .i-baseline { margin-top: 2.5rem; color: hsl(var(--siteColor1)); }
.footer a.footer-email { font-style: none; }
.footer .footer-quick-links a, .footer-contact, .footer-contact .footer-phone, .footer .footer-quick-links li { font-family: 'Abel'; font-size: 16px; font-style: normal; font-weight: 400; line-height: 24px; color: hsl(var(--siteColor1)); letter-spacing: 0.32px; }
.footer-newsletter [id^="omnisend-embedded-v2"] { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter [id^="omnisend-form-"] { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter [class^="omnisend-reset-"] { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter [class*="-content"] { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter [class*="-content-inner"] { display: block !important; width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; overflow: visible !important; }
.footer-newsletter form[id^="omnisend-form-"][id$="-submit-form"] { display: flex !important; flex-direction: row !important; align-items: stretch !important; width: 100% !important; max-width: 100% !important; height: 32px !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter form[id^="omnisend-form-"][id$="-submit-form"] > div[class*="-section-"] { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: stretch !important; width: 100% !important; height: 32px !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter form[id^="omnisend-form-"][id$="-submit-form"] > div[class*="-section-"] > div[class*="-opacity-layer"] { display: none !important; }
.footer-newsletter form[id^="omnisend-form-"][id$="-submit-form"] > div[class*="-section-"] > div[class*="-column-"] { min-width: 0 !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter form[id^="omnisend-form-"][id$="-submit-form"] > div[class*="-section-"] > div[class*="-column-"]:not(:last-child) { flex: 1 1 auto !important; width: auto !important; max-width: none !important; }
.footer-newsletter form[id^="omnisend-form-"][id$="-submit-form"] > div[class*="-section-"] > div[class*="-column-"]:last-child { flex: 0 0 34px !important; width: 34px !important; max-width: 34px !important; }
.footer-newsletter [class*="-field-container-wrapper"] { display: flex !important; width: 100% !important; height: 32px !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter [class*="-field-container-"] { display: flex !important; width: 100% !important; height: 32px !important; margin: 0 !important; padding: 0 !important; background: #CDD7E4; }
.footer-newsletter [class*="-action-container-"] { display: flex !important; width: 100% !important; height: 32px !important; margin: 0 !important; padding: 0 !important; }
.footer-newsletter input[type="email"][id^="omnisend-form-"] { width: 100% !important; height: 32px !important; min-height: 32px !important; margin: 0 !important; padding: 0.25rem 0.625rem !important; color: hsl(var(--siteColor1)) !important; background: transparent !important; border: 1px solid hsl(var(--siteColor1)) !important; border-right: 0 !important; border-radius: 3px 0 0 3px !important; box-shadow: none !important; outline: none !important; font-family: var(--siteFont) !important; font-size: 0.875rem !important; line-height: 1 !important; }
.footer-newsletter input[type="email"][id^="omnisend-form-"]::placeholder { color: hsl(var(--siteColor1)) !important; opacity: 0.65 !important; }
.footer-newsletter input[type="email"][id^="omnisend-form-"]:focus { border-color: hsl(var(--siteColor1)) !important; box-shadow: none !important; outline: none !important; }
.footer-newsletter button[type="submit"][id^="omnisend-form-"] { position: relative !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; width: 34px !important; min-width: 34px !important; max-width: 34px !important; height: 32px !important; min-height: 32px !important; margin: 0 !important; padding: 0 !important; color: transparent !important; background: hsl(var(--siteColor1)) !important; border: 1px solid hsl(var(--siteColor1)) !important; border-radius: 0 3px 3px 0 !important; box-shadow: none !important; overflow: hidden !important; font-size: 0 !important; line-height: 1 !important; text-indent: -9999px !important; }
.footer-newsletter button[type="submit"][id^="omnisend-form-"]::before { content: "\2192"; position: absolute; top: 46%; left: 50%; color: #fff; font-size: 1.25rem; font-weight: 400; line-height: 1; text-indent: 0; transform: translate(-50%, -54%); }
.footer-newsletter button[type="submit"][id^="omnisend-form-"]:hover { color: transparent !important; background: hsl(var(--siteColor1)) !important; border-color: hsl(var(--siteColor1)) !important; box-shadow: none !important; outline: none !important; }
.footer-newsletter button[type="submit"][id^="omnisend-form-"]:focus { color: transparent !important; background: hsl(var(--siteColor1)) !important; border-color: hsl(var(--siteColor1)) !important; box-shadow: none !important; outline: none !important; }
.footer-newsletter [id*="-required"] { display: none !important; }
.footer-newsletter [id*="-error"] { display: none !important; }
.footer-newsletter [class*="-submit-error"] { display: none !important; }
.footer-newsletter shark-icon-container { display: none !important; }

@media (max-width: 1024px) {   
  .desktop-nav { display: none; }
  .mobile-nav { display: block; } 
  .footer-row { row-gap: 0.5rem; text-align: -webkit-center; }
  .footer .i-baseline { flex-direction: column; color: hsl(var(--siteColor1)); }
  .footer-newsletter [id^="omnisend-embedded-v2"] { margin-left: auto !important; margin-right: auto !important; }
  .footer-newsletter [id^="omnisend-form-"] { margin-left: auto !important; margin-right: auto !important; }
  .footer-newsletter [class^="omnisend-reset-"] { margin-left: auto !important; margin-right: auto !important; }
  .footer-newsletter [class*="-content"] { margin-left: auto !important; margin-right: auto !important; }
  .footer-newsletter [class*="-content-inner"] { margin-left: auto !important; margin-right: auto !important; }
  .footer { padding-top: 3rem; text-align: center; }
  .footer-col { margin-bottom: 2.25rem; }
  .footer .footer-logo-wrap { margin-left: auto; margin-right: auto; }
  .footer .footer-newsletter-text, .newsletter-row { margin-left: auto; margin-right: auto; }
  .weather-widget { justify-content: center; }
}

/* Owner CTA */
.owner-cta { position: relative; min-height: 36.375rem; overflow: hidden; background: hsl(var(--white)); }
.owner-cta, .owner-cta * { box-sizing: border-box; }
.owner-cta-bg { position: absolute; inset: 0; z-index: 1; background-image: url("/images/layout/Spinnakers-Reach-CTA.jpg"); background-size: cover; background-position: center center; background-repeat: no-repeat; }
.owner-cta::before { content: ""; position: absolute; top: 0; left: 0; z-index: 2; width: 100%; height: 5.625rem; background: linear-gradient( to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.86) 32%, rgba(255, 255, 255, 0) 100% ); pointer-events: none; }
.owner-cta::after { content: ""; position: absolute; bottom: 0; left: 0; z-index: 2; width: 100%; height: 5.9375rem; background: linear-gradient( to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0) 100% ); pointer-events: none; }
.owner-cta-container { position: relative; z-index: 4; min-height: 36.375rem; display: flex; align-items: center; }
.owner-cta-content { padding-top: 1.875rem; padding-bottom: 2.1875rem; color: hsl(var(--white)); }
.owner-cta-title { margin: 0 0 0.5rem; color: hsl(var(--white)); font-family: var(--siteFont2); letter-spacing: 0.01875rem; text-shadow: 0 0.0625rem 0.9375rem rgba(0, 0, 0, 1); font-size: 32px; font-style: normal; font-weight: 400; line-height: normal; }
.owner-cta-text { margin: 0 0 1.5rem; color: hsl(var(--white)); text-shadow: 0 0.0625rem 0.75rem rgba(0, 0, 0, 1); font-size: 15px; font-weight: 400; line-height: 19.5px; }
.owner-cta-btn { min-width: 10.5rem; padding: 0.5625rem 1.5rem; border: 0.0625rem solid hsl(var(--siteColor1)); border-radius: 0.125rem; background: hsl(var(--white)); color: hsl(var(--siteColor1)); text-align: center; text-decoration: none; box-shadow: none; transition: background 250ms ease, color 250ms ease, border-color 250ms ease; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; letter-spacing: 2.4px; text-transform: uppercase; border-radius: 4px; }
.owner-cta-btn:hover, .owner-cta-btn:focus { border-color: hsl(var(--siteColor1)); background: hsl(var(--siteColor1)); color: hsl(var(--white)); text-decoration: none; }
@media (max-width: 1024px) {
  .owner-cta { min-height: 24.375rem;  text-align: center; }
  .owner-cta-container { min-height: 24.375rem; }
  .owner-cta-bg { background-position: center center; }
  .owner-cta-content { max-width: 31.25rem; padding-left: 0.625rem; padding-right: 0.625rem; }
  .owner-cta-title { font-size: 1.4375rem; }
  .owner-cta-text { font-size: 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .owner-cta-btn { transition: none; }
}

/* Popular Searches */
.popular-searches-wrap { position: relative; padding: 0 0 3.125rem 0; }
.popular-searches-wrap, .popular-searches-wrap * { box-sizing: border-box;  }
.popular-searches-container { max-width: 90rem; margin: 0 auto; padding: 0 0.625rem; margin-top: 1rem; }
.popular-searches-container .swiper-container .swiper-slide { transition: .6s all ease-in-out; flex: 1; }
.popular-searches-container .swiper-container:hover .swiper-slide { flex: .5; }
.popular-searches-container .swiper-container .swiper-slide:hover { flex-grow: 3; }

.popular-searches { display: flex; gap: 0.8125rem; width: 100%; height: 32.5rem; display: flex; }
.popular-search { position: relative; flex: 1 1 0; min-width: 0; height: 30rem; overflow: hidden; border-radius: 0.125rem; background: hsl(var(--white)); transition: flex-grow 600ms cubic-bezier(0.25, 0.8, 0.25, 1), opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1); display: flex; }
.popular-search:hover { flex-grow: 1; }
.popular-search::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(210, 224, 232, 0.26); pointer-events: none; transition: background 600ms cubic-bezier(0.25, 0.8, 0.25, 1); }
.popular-search-img { display: block; width: 100%; height: 100%; opacity: 0.68; filter: saturate(0.9); transform: scale(1); transition: opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1), filter 600ms cubic-bezier(0.25, 0.8, 0.25, 1), transform 600ms cubic-bezier(0.25, 0.8, 0.25, 1); }
.popular-search-link { position: absolute; inset: 0; z-index: 2; display: block; color: hsl(var(--white)); text-decoration: none; touch-action: manipulation; }
.popular-search-link:hover, .popular-search-link:focus { color: hsl(var(--white)); text-decoration: none; }
.popular-search-link:focus-visible { outline: 0.125rem solid hsl(var(--white)); outline-offset: -0.375rem; }
.popular-search-content { position: absolute; inset: 0; display: block; text-align: center; opacity: 1; transition: opacity 350ms ease, transform 350ms ease; }
.popular-search-title { position: absolute; top: 25%; left: 50%; width: 90%; max-width: 16.25rem; margin: 0; transform: translateX(-50%); color: hsl(var(--white)); text-shadow: 0 0.0625rem 0.75rem rgba(0, 0, 0, 0.3); transition: top 600ms cubic-bezier(0.25, 0.8, 0.25, 1), font-size 600ms cubic-bezier(0.25, 0.8, 0.25, 1), letter-spacing 600ms cubic-bezier(0.25, 0.8, 0.25, 1), max-width 600ms cubic-bezier(0.25, 0.8, 0.25, 1); font-family: var(--siteFont1); font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; letter-spacing: 0.96px; text-transform: uppercase; }
.popular-search-description { position: absolute; top: 39%; left: 50%; width: 80%; max-width: 35rem; margin: 0; transform: translate(-50%, 0.5rem); opacity: 0; color: hsl(var(--white)); font-size: 0.75rem; line-height: 1.45; font-weight: 300; text-shadow: 0 0.0625rem 0.625rem rgba(0, 0, 0, 0.38); transition: opacity 450ms ease, transform 450ms ease; }
.popular-search-button { position: absolute; left: 50%; bottom: 3.625rem; min-width: 15.75rem; padding: 0.5625rem 1.5rem; transform: translateX(-50%); border: 0.0625rem solid rgba(255, 255, 255, 0.88); background: rgba(40, 40, 40, 0.42); color: hsl(var(--white)); text-shadow: none; transition: min-width 600ms cubic-bezier(0.25, 0.8, 0.25, 1), background 300ms ease, border-color 300ms ease; font-family: var(--siteFont1); font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; letter-spacing: 2.4px; text-transform: uppercase; }
.popular-search-link:hover .popular-search-button, .popular-search-link:focus .popular-search-button { background: rgba(40, 40, 40, 0.55); border-color: hsl(var(--white)); }
@media (hover: hover) and (min-width: 1024px) {
  .popular-searches:hover .popular-search, .popular-searches:focus-within .popular-search { flex-grow: 1; }
  .popular-searches:hover .popular-search:hover, .popular-searches:focus-within .popular-search:focus-within { flex-grow: 6.3; }
  .popular-searches:hover .popular-search:not(:hover) .popular-search-content, .popular-searches:focus-within .popular-search:not(:focus-within) .popular-search-content { opacity: 0; transform: translateY(0.375rem); }
  .popular-search:hover::after, .popular-search:focus-within::after { background: rgba(0, 0, 0, 0.08); }
  .popular-search:hover .popular-search-img, .popular-search:focus-within .popular-search-img { opacity: 1; filter: saturate(1); transform: scale(1.02); }
  .popular-search:hover .popular-search-title, .popular-search:focus-within .popular-search-title { top: 26%; max-width: 35rem; font-size: 1.5rem; letter-spacing: 0.25rem; }
  .popular-search:hover .popular-search-description, .popular-search:focus-within .popular-search-description { opacity: 1; transform: translate(-50%, 0); }
  .popular-search:hover .popular-search-button, .popular-search:focus-within .spinnaker-popular-search-button { min-width: 15.625rem; }
}
@media (max-width: 1024px) {
  .popular-searches-container { max-width: none; padding: 0 0.9375rem; }
  .popular-searches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9375rem; height: auto; }
  .popular-search { flex: none; height: 20rem; }
  .popular-search::after { background: rgba(210, 224, 232, 0.24); }
  .popular-search-img { opacity: 0.75; filter: saturate(0.95); }
  .popular-search-title { top: 25%; width: 88%; max-width: 16.25rem; font-size: 1.0625rem; letter-spacing: 0.1rem; }
  .popular-search-description { display: none; }
  .popular-search-button { bottom: 3.125rem; min-width: 10.625rem; }
  .popular-search:hover .popular-search-img, .popular-search:focus-within .popular-search-img { opacity: 0.85; }
}
@media (max-width: 575.98px) {
  .popular-searches-container { padding: 0 0.75rem; }
  .popular-searches { grid-template-columns: 1fr; gap: 0.875rem; }
  .popular-search { height: 17.8125rem; }
  .popular-search-title { top: 24%; width: 86%; font-size: 1rem; letter-spacing: 0.0875rem; }
  .popular-search-button { bottom: 2.75rem; min-width: 10rem; padding: 0.5625rem 1.25rem; font-size: 0.75rem; letter-spacing: 0.1rem; }
}
@media (max-width: 375px) {
  .popular-search { height: 16.25rem; }
  .popular-search-title { font-size: 0.9375rem; }
  .popular-search-button { min-width: 9.375rem; padding: 0.5rem 1.125rem; font-size: 0.6875rem; }
}

@media (prefers-reduced-motion: reduce) {
  .popular-search, .popular-search::after, .popular-search-img, .popular-search-content, .popular-search-title, .popular-search-description, .popular-search-button { transition: none; }
}

/* Reviews */
.tesimonials { position: relative; overflow: hidden; padding: 1.5625rem 0 3.75rem; background: hsl(var(--white)); }
.tesimonials, .tesimonials * { box-sizing: border-box; }
.tesimonials-container { max-width: 90rem; }
.tesimonials-title { margin: 0 0 2.125rem; color: hsl(var(--siteColor1)); font-family: var(--siteFont2); text-align: center; font-size: 40px; font-style: normal; font-weight: 300; line-height: normal; text-transform: capitalize; }
.tesimonials-summary-wrap { max-width: 52rem; margin: 0 auto; }
.tesimonials-score { text-align: center; color: hsl(var(--siteColor2)); }
.tesimonials-score-main { display: flex; align-items: baseline; justify-content: center; margin-bottom: 0.3125rem; }
.tesimonials-score-number { color: hsl(var(--siteColor2)); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.tesimonials-score-label { margin-left: 0.25rem; color: hsl(var(--siteColor2)); font-size: 1rem; font-weight: 400; line-height: 1; }
.tesimonials-score-stars { color: #a7dbe0; font-size: 1.5rem; line-height: 1; letter-spacing: 0.0625rem; }
.tesimonials-score-count { margin-top: 0.25rem; color: hsl(var(--siteColor2)); font-size: 0.8rem; line-height: 1; }
.tesimonials-breakdown { width: 100%; }
.tesimonials-bar-row { display: grid; grid-template-columns: 2.625rem minmax(0, 1fr) 2.25rem; align-items: center; gap: 0.625rem; margin-bottom: 0.5625rem; }
.tesimonials-bar-row:last-child { margin-bottom: 0; }
.tesimonials-bar-label, .tesimonials-bar-percent { color: #5d6f85; font-size: 1rem; font-weight: 400; line-height: 1; white-space: nowrap; }
.tesimonials-bar-label { text-align: right; }
.tesimonials-bar-percent { text-align: left; }
.tesimonials-bar-track { position: relative; display: block; width: 100%; height: 0.5rem; overflow: hidden; border-radius: 62.4375rem; background: #f2f4f6; }
.tesimonials-bar-fill { position: absolute; top: 0; left: 0; display: block; height: 100%; border-radius: inherit; background: #b8dfe5; }
.tesimonials-bar-fill--78 { width: 78%; }
.tesimonials-bar-fill--16 { width: 16%; }
.tesimonials-bar-fill--3 { width: 3%; }
.tesimonials-bar-fill--1 { width: 1%; }

/* Source rating badges */
.tesimonials-sources { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8125rem; margin: 1.25rem 0 1.8125rem; }
.tesimonials-source-card { display: inline-flex; align-items: center; min-width: 6.625rem; min-height: 4.1875rem; padding: 0.5rem 1.5rem; border: 0.0625rem solid #e3e8ed; border-radius: 0.3125rem; background: hsl(var(--white)); color: hsl(var(--siteColor2)); }
.tesimonials-source-score { margin-right: 0.375rem; color: hsl(var(--siteColor2)); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.tesimonials-source-brand { display: inline-flex; align-items: center; color: hsl(var(--siteColor1)); font-size: 0.625rem; font-weight: 600; line-height: 1; white-space: nowrap; width: 90px; }
.tesimonials-source-count { display: block; align-self: flex-end; margin-left: -1.25rem; margin-bottom: 0.0625rem; color: hsl(var(--siteColor2)); font-size: 0.375rem; line-height: 1; transform: translateY(0.5rem); }
.tesimonials-source-brand--airbnb { color: #ff6b6b; font-weight: 500; }
.tesimonials-source-brand--google { font-weight: 600; letter-spacing: -0.025rem; }
.tesimonials-source-brand--google span:nth-child(1) { color: #4285f4; }
.tesimonials-source-brand--google span:nth-child(2) { color: #db4437; }
.tesimonials-source-brand--google span:nth-child(3) { color: #f4b400; }
.tesimonials-source-brand--google span:nth-child(4) { color: #4285f4; }
.tesimonials-source-brand--google span:nth-child(5) { color: #0f9d58; }
.tesimonials-source-brand--google span:nth-child(6) { color: #db4437; }
.tesimonials-source-brand--reva { color: #5966d8; font-weight: 700; }
.tesimonials-source-brand--vrbo { color: hsl(var(--siteColor2)); font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-style: italic; font-weight: 700; }

/* Review cards */
.tesimonials-cards-row { margin-left: -0.5rem; margin-right: -0.5rem; }
.tesimonials-card-col { padding-left: 0.5rem; padding-right: 0.5rem; }
.tesimonials-card { min-height: 5.75rem; padding: 0.875rem 1rem 0.875rem; border: 0.0625rem solid #a8ccc6; border-radius: 0.0625rem; background: hsl(var(--white)); color: hsl(var(--black)); }
.tesimonials-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.375rem; }
.tesimonials-card-name { display: inline-block; margin-right: 0.4375rem; color: hsl(var(--black)); font-family: var(--siteFont1); font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; }
.tesimonials-card-date { display: inline-block; color: hsl(var(--black)); font-family: Lato; font-size: 12px; font-style: normal; font-weight: 400; line-height: normal; }
.tesimonials-card-stars { flex: 0 0 auto; color: hsl(var(--siteColor3)); font-size: 1.2rem; line-height: 1; letter-spacing: 0.03125rem; white-space: nowrap; }
.tesimonials-card-text { margin: 0; color: hsl(var(--black)); font-family: var(--siteFont1); font-size: 14px; font-style: normal; font-weight: 400; line-height: normal; text-align: center; }
.tesimonials-more { margin-top: 0.1875rem; text-align: right; }
.tesimonials-more a { color: hsl(var(--black)); text-decoration: underline; font-family: var(--siteFont1); font-size: 15px; font-style: normal; font-weight: 400; line-height: normal; }
.tesimonials-more a:hover, .tesimonials-more a:focus { color: hsl(var(--siteColor1)); text-decoration: underline; }
@media (max-width: 1024px) {
  .tesimonials { padding: 2.125rem 0 1.75rem; }
  .tesimonials-title { margin-bottom: 1.75rem; }
  .tesimonials-summary-wrap { max-width: 42.5rem; }
  .tesimonials-score { margin-bottom: 1.125rem; }
  .tesimonials-bar-row { grid-template-columns: 2.875rem minmax(0, 1fr) 2.5rem; margin-bottom: 0.625rem; }
  .tesimonials-sources { margin: 1.5rem 0 1.75rem; }
  .tesimonials-source-card { min-width: 5.625rem; min-height: 2.5rem; }
  .tesimonials-source-score { font-size: 0.9375rem; }
  .tesimonials-source-brand { font-size: 0.6875rem; }
  .tesimonials-source-brand--vrbo { font-size: 1.0625rem; }
  .tesimonials-source-count { font-size: 0.4375rem; }
  .tesimonials-card-col { flex: 0 0 50%; max-width: 50%; margin-bottom: 1rem; }
  .tesimonials-card { min-height: 7.375rem; padding: 0.875rem 0.9375rem; }
  .tesimonials-card-name { font-size: 0.875rem; }
  .tesimonials-card-date { font-size: 0.625rem; }
  .tesimonials-card-stars { font-size: 0.8125rem; }
  .tesimonials-card-text { font-size: 0.625rem; line-height: 1.35; }
  .tesimonials-more { margin-top: 0; }
  .tesimonials-more a { font-size: 0.625rem; }
}