/*
 Theme Name:   WebsiteValet GeneratePress Child Theme
 Theme URI:    http://generatepress.com
 Description:  A child theme customized for: SammamishChamber.org
 Author:       Tim Taricco
 Author URI:   http://www.timtaricco.com
 Template:     generatepress
 Version:      10.17.24
 Tags: none
*/

/*** Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
1  - Load Fonts
2  - Website Variables
3  - General WordPress Global Customizations
4  - GeneratePress Global Customizations
5  - Custom Links & Buttons styling outside of the customizer
6  - GenerateBlocks Custom Styles
7  - Kadence Blocks Custom Styles
8  - Gravity Forms plugin custom CSS
9  - Custom CSS for WSV Functions and WSV Utility Classes
10 - Website specific CSS
***/


/*** 1 - Load Fonts
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/poppins-v20-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/poppins-v20-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* noto-serif-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/noto-serif-v22-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/noto-serif-v22-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


/*** 2 - Website Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

:root {
	--body-wrapper-desktop: 1920px;
	--body-wrapper-mobile: 550px;
	--border-radius-1: 0;
	--link-border-bottom-1: 2px;
	--nav-border-bottom-1: 2px;
	--button-border-1: 2px;
	--p-list-margin-bottom: 16px;
}

/*** Container Sizes ***/
body {
	background-color: var(--light-2);
}
.body-wrapper {
	max-width: var(--body-wrapper-desktop);
	margin: auto;
	background-color: var(--light-1);
} /* Control maximum width of body/content */
.header-wrap .site-header {
	max-width: var(--body-wrapper-desktop);
	margin: auto;
} /* Control maximum width of merged/transparent header */
@media (max-width: 767px) {
	.body-wrapper {
		max-width: var(--body-wrapper-mobile);
	} /* Control maximum width of body/content */
	.header-wrap .site-header {
		max-width: var(--body-wrapper-mobile);
		margin: auto;
	} /* Control maximum width of merged/transparent header */
}

/*** Website Logo Sizes ***/
@media (max-width: 1024px) {
	.site-header .header-image {
		width: 70px;
	} /* Website logo size */
}
@media (max-width: 768px) and (min-width: 768px) {
	.site-header .header-image {
		position: relative;
		top: -20px;
	} /* Website logo size */
}
@media (max-width: 767px) {
	.site-logo.mobile-header-logo img {
		height: 70px !important;
	} /* Website logo size */
}

/*** Website Scrollbar Styles ***/
::-webkit-scrollbar {
	width: .75em;
	height: .75em;
}
::-webkit-scrollbar-track {
	background: var(--light-1);
	border-radius: 100vw;
	margin-block: 0.5em;
}
::-webkit-scrollbar-thumb {
	background: var(--accent-1);
	border: 0.15em solid var(--light-1);
	border-radius: 100vw;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--accent-2);
}
@supports (scrollbar-color: var(--accent-1) var(--light-1)) {
	* {
		scrollbar-color: var(--accent-1) var(--light-1);
		scrollbar-width: auto;
	}
} /* For Firefox */


/*** 3 - General WordPress Global Customizations
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

/*** WordPress General Styling Custom CSS ***/
.entry-content p:last-child:last-of-type {
	margin-bottom: 0;
} /* Remove bottom margin from last paragraph in a container */
.entry-content sup {
    position: relative;
    font-size: 70%;
    line-height: 0;
    vertical-align: baseline;
    top: -.5em;
} /* Style Superscript */

/*** WordPress Table Block Custom CSS ***/
.wp-block-table {
	margin: 0;
} /* Table block formatting */
figure.wp-block-table {
	overflow-x: auto;
	overflow-y: hidden;
} /* Allow sideways scroll for table block on mobile */
.wp-block-table table {
	min-width: 688px;
	margin: 0;
} /* Allow sideways scroll for table block on mobile */

/*** Horizontal Line Styling ***/
hr {
	margin-top: 20px;
	margin-bottom: 20px;
} /* Adjust HR styling */
.wp-block-separator {
	border: .5px solid;
} /* Adjust HR styling */

/*** WordPress Lists Block Custom CSS ***/
.entry-content ul {
	margin: 0 0 var(--p-list-margin-bottom) 12px;
}
.entry-content ul:last-child {
	margin-bottom: 0;
}
.entry-content ul li {
	padding-left: 10px;
}
.entry-content ul li::marker {
  color: var(--accent-1);
  font-size: 17px;
  content: "\25A0";
  font-weight: 700;
}
.entry-content ul li li {
	padding-left: 10px;
}
.entry-content ul li li::marker {
	color: var(--dark-1);
}
.entry-content ul li li:first-child {
	padding-top: 3px;
}
.entry-content ul li li:last-child {
	padding-bottom: 3px;
}
.entry-content ol {
	margin: 0 0 var(--p-list-margin-bottom) 30px;
}
.entry-content ol:last-child {
	margin-bottom: 0;
}
.entry-content ol li {
	padding-left: 5px;
}
.entry-content ol li::marker {
  color: var(--accent-1);
}
.entry-content ol li li {
	padding-left: 10px;
}
.entry-content ol li li::marker {
	color: var(--dark-1);
}
.entry-content ol li li:first-child {
	padding-top: 3px;
}
.entry-content ol li li:last-child {
	padding-bottom: 3px;
}

/*** WordPress Blockquote Block Custom CSS ***/
.entry-content blockquote {
	border: none;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 1.2em;
}
.entry-content blockquote::before {
	content: "\201C";
	display: block;
	font-size: 100px;
	color: var(--accent-1);	
	top: -60px;
	left: -48px;
	position: relative;
	height: 0;
}
.entry-content blockquote p {
	margin-bottom: .5em;
}
.entry-content .wp-block-quote {
	border-left: 0 !important;
}
@media (max-width: 767px) {
	.entry-content blockquote::before {
		left: -28px;
	}
}

/*** Post/Page Password Protected Page styling custom CSS ***/
.post-password-required .inside-article .entry-content {
	max-width: 1200px;
	margin: auto;
	padding: 80px 40px;
	min-height: 700px;
} /* Post/Page Password Protected Page Styling */
@media (max-width: 1024px) {
	.post-password-required .inside-article .entry-content {
		padding: 60px 40px;
		min-height: 400px;
	} /* Post/Page Password Protected Page Styling */
}
@media (max-width: 767px) {
	.post-password-required .inside-article .entry-content {
		padding: 40px 20px;
	} /* Post/Page Password Protected Page Styling */
}
.post-password-form {
	max-width: 300px;
	margin: auto;
} /* Post/Page Password Protected Page Styling */
.post-password-form label {
	padding: 0;
} /* Post/Page Password Protected Page Styling */
.post-password-form label input[type="password"] {
	display: block;
	width: 300px;
	font-size: inherit;
	line-height: inherit;
	color: var(--dark-2);
	padding: 12px 20px !important;
	border: var(--button-border-1) solid var(--dark-2);
	background-color: var(--light-1);
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
} /* Post/Page Password Protected Page Styling */
.post-password-form input[type="submit"] {
	font-size: inherit;
	font-weight: 600;
	line-height: inherit;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--light-1);
	padding: 8px 30px;
	border: var(--button-border-1) solid var(--accent-2);
	background-color: var(--accent-2);
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition:all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
	min-width: 300px;
	margin-top: 20px;
} /* Post/Page Password Protected Page Button Styling */
.post-password-form input[type="submit"]:hover,
.post-password-form input[type="submit"]:focus {
	background-color: var(--accent-1);
	color: var(--light-1);
	text-decoration: none;
	border: var(--button-border-1) solid var(--accent-1);
} /* Post/Page Password Protected Page Button Styling */
@media (max-width: 460px) {
	.post-password-form,
	.post-password-form label input[type="password"],
	.post-password-form input[type="submit"] {
		min-width: 100%;
	}
}

/*** Query Loop Block styling custom CSS ***/
.wp-block-query ul {
	margin: 0;
}
.wp-block-query ul li {
	padding-left: 0;
}
.wp-block-query ul li::marker {
	content: none;
}
@media (max-width: 1024px) and (min-width: 768px) {
	.wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li {
		width: calc(50% - .7em);
	}
}
@media (max-width: 767px) {
	.wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li {
		margin: 0;
		width: 100%;
	}
}


/*** 4 - GeneratePress Global Customizations
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

#content {
	max-width: 100%;
}

.separate-containers .paging-navigation {
	padding: 0;
} /* Footer pagination container styling for GenerateBlocks */

/*** Back-to-Top Button Styling ***/
a.generate-back-to-top,
a.generate-back-to-top:visited,
a.generate-back-to-top:link {
	border-radius: 3px 0 0 3px;
	right: 0;
	bottom: 100px;
	border-bottom: none !important;
} /* Adjust back-to-top button */
a.generate-back-to-top:focus,
a.generate-back-to-top:hover {
	cursor: pointer;
	border-bottom: none !important;
} /* Adjust back-to-top button */

/*** GeneratePress General Styling Custom CSS - Dynamic Content Block ***/
.dynamic-entry-content p:last-child:last-of-type {
	margin-bottom: 0;
} /* Remove bottom margin from last paragraph in a container */
.dynamic-entry-content sup {
    position: relative;
    font-size: 70%;
    line-height: 0;
    vertical-align: baseline;
    top: -.5em;
} /* Style Superscript */

/*** GeneratePress Lists Block Custom CSS - Dynamic Content Block ***/
.dynamic-entry-content ul {
	margin: 0 0 var(--p-list-margin-bottom) 12px;
}
.dynamic-entry-content ul:last-child {
	margin-bottom: 0;
}
.dynamic-entry-content ul li {
	padding-left: 10px;
}
.dynamic-entry-content ul li::marker {
  color: var(--accent-1);
  font-size: 17px;
  content: "\25A0";
  font-weight: 700;
}
.dynamic-entry-content ul li li {
	padding-left: 10px;
}
.dynamic-entry-content ul li li::marker {
	color: var(--dark-1);
}
.dynamic-entry-content ul li li:first-child {
	padding-top: 3px;
}
.dynamic-entry-content ul li li:last-child {
	padding-bottom: 3px;
}
.dynamic-entry-content ol {
	margin: 0 0 var(--p-list-margin-bottom) 30px;
}
.dynamic-entry-content ol:last-child {
	margin-bottom: 0;
}
.dynamic-entry-content ol li {
	padding-left: 5px;
}
.dynamic-entry-content ol li::marker {
  color: var(--accent-1);
}
.dynamic-entry-content ol li li {
	padding-left: 10px;
}
.dynamic-entry-content ol li li::marker {
	color: var(--dark-1);
}
.dynamic-entry-content ol li li:first-child {
	padding-top: 3px;
}
.dynamic-entry-content ol li li:last-child {
	padding-bottom: 3px;
}

/*** GeneratePress Blockquote Block Custom CSS - Dynamic Content Block ***/
.dynamic-entry-content blockquote {
	border: none;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 1.2em;
}
.dynamic-entry-content blockquote::before {
	content: "\201C";
	display: block;
	font-size: 100px;
	color: var(--accent-1);	
	top: -60px;
	left: -48px;
	position: relative;
	height: 0;
}
.dynamic-entry-content blockquote p {
	margin-bottom: .5em;
}
.dynamic-entry-content .wp-block-quote {
	border-left: 0 !important;
}
@media (max-width: 767px) {
	.dynamic-entry-content blockquote::before {
		left: -28px;
	}
}

/*** GeneratePress Navigation Styling custom CSS ***/
.main-navigation .main-nav a,
.main-navigation .main-nav a:visited,
.main-navigation .main-nav a:link {
	padding-left: 0;
	padding-right: 0;
	margin-left: 20px;
	margin-right: 20px;
} /* Add colored underlink to primary menu link styling */
.main-navigation .sub-menu a,
.main-navigation .sub-menu a:visited,
.main-navigation .sub-menu a:link {
	padding-left: 20px;
	padding-right: 20px;
	margin-left: 0;
	margin-right: 0;
} /* Add colored underlink to primary menu link styling */
.main-navigation .main-nav ul li[class*="current-menu-"] > a,
.main-navigation .sub-menu ul li[class*="current-menu-"] > a {
	color: var(--accent-2);
} /* Add colored underlink to primary menu link styling */
.main-navigation li:last-child {
	padding-top: 0;
} /* Remove default li bottom padding for last menu item */
.menu-item-has-children .dropdown-menu-toggle {
	padding-right: 0;
	margin-right: -10px;
} /* Dropdown menu icon customization */
.main-navigation .sub-menu {
	padding: 0;
	background-color: var(--light-1);
} /* Dropdown menu customization */
.main-navigation .sub-menu a:hover,
.main-navigation .sub-menu a:focus {
    color: var(--accent-1) !important;
	background-color: var(--light-2) !important;
} /* Dropdown menu customization */

/*** GeneratePress Mobile Navigation Styling custom CSS ***/
.mobile-menu-control-wrapper .menu-toggle,
.main-navigation.has-sticky-branding.navigation-stick .menu-toggle {
	font-size: 26px;
	color: var(--accent-1);
	background-color: transparent;
	padding: 0 5px 3px;
	padding-right: 5px !important;
} /* Mobile hamburger menu customization */
.mobile-menu-control-wrapper .menu-toggle:hover,
.mobile-menu-control-wrapper .menu-toggle:focus,
.has-inline-mobile-toggle #site-navigation.toggled,
.main-navigation.has-sticky-branding.navigation-stick .menu-toggle:hover {
	color: var(--light-1);
	background-color: var(--accent-1);
} /* Mobile hamburger menu customization */
.main-navigation.toggled > .inside-navigation {
	background-color: var(--light-1);
	padding-top: 10px;
	padding-bottom: 10px;
} /* Mobile hamburger menu customization */
.main-navigation.toggled .main-nav li:hover,
.main-navigation.toggled .main-nav li:focus {
	background-color: var(--light-2);
}
.main-navigation.toggled .main-nav ul ul {
	border-bottom: none;
} /* Mobile hamburger menu customization */
.main-navigation.toggled .main-nav ul ul li a {
	padding-top: 0;
	padding-bottom: 0;
} /* Mobile hamburger menu customization */
.main-navigation.toggled ul ul.sub-menu {
	padding-top: 0;
	padding-bottom: 0;
} /* Mobile hamburger menu customization */
@media (max-width: 768px) {
	.menu-toggle {
		font-size: 26px;
		padding: 10px 20px 5px;
	} /* Mobile hamburger menu customization */
	#mobile-header {
		max-width: 550px;
		margin: auto;
	}
}

/*** Sticky Navigation Styling custom CSS ***/
/***.navigation-branding img {
	padding: 10px 0 !important;
	width: 300px !important;
	height: 65px !important;
} /* Sticky website logo size */
@media (max-width: 1024px) {
	/***.navigation-branding img {
		padding: 0 !important;
		width: 220px !important;
		height: 55px !important;
	} /* Sticky website logo size */
}
@media (max-width: 767px) {
	/***.navigation-branding img {
		padding: 0 !important;
		width: 200px !important;
		height: 50px !important;
	} /* Sticky website logo size */
	/***#sticky-navigation {
		max-width: var(--body-wrapper-mobile);
		margin-left: auto;
		margin-right: auto;
	} /* Sticky navigation width */
}

/*** Shortcode Footer Menu Styling custom CSS ***/
.footer-menu {
	margin: 0 !important;
	list-style: none;
} /* Styling for footer menu */
.footer-menu li > ul {
	margin-left: 15px;
	list-style: none;
} /* Styling for footer menu */
.footer-menu .menu-item-home {
	display: none;
} /* Hide home link */
.footer-menu li:last-child {
	padding-bottom: 0;
} /* Styling for footer menu */
.site-footer .gb-container .footer-menu a,
.site-footer .gb-container .footer-menu a:visited,
.site-footer .gb-container .footer-menu a:link {
	color: var(--light-1);
	border-bottom: var(--link-border-bottom-1) solid transparent;
} /* Add colored underlink to default link styling */
.site-footer .gb-container .footer-menu a:hover,
.site-footer .gb-container .footer-menu a:focus {
	color: var(--light-1);
	border-bottom: var(--link-border-bottom-1) solid var(--light-1);
} /* Add colored underlink to default link styling */
.privacy-menu {
	margin: 0 !important;
	list-style: none;
	text-align: right;
} /* Styling for privacy menu */
.privacy-menu li > ul {
	margin-left: 15px;
	list-style: none;
} /* Styling for privacy menu */
.privacy-menu li {
	display: inline-block;
	margin-left: 20px;
} /* Styling for privacy menu */
.privacy-menu li:last-child {
	padding-bottom: 0;
} /* Styling for privacy menu */
.site-footer .gb-container .privacy-menu a,
.site-footer .gb-container .privacy-menu a:visited,
.site-footer .gb-container .privacy-menu a:link {
	color: var(--light-1);
	border-bottom: var(--link-border-bottom-1) solid transparent;
} /* Add colored underlink to default link styling */
.site-footer .gb-container .privacy-menu a:hover,
.site-footer .gb-container .privacy-menu a:focus {
	color: var(--light-1);
	border-bottom: var(--link-border-bottom-1) solid var(--light-1);
} /* Add colored underlink to default link styling */
@media (max-width: 1024px) {
	.footer-menu {
		font-size: 0.9rem;
	}
}
@media (max-width: 767px) {
	.footer-menu li {
		text-align: center;
	} /* Styling for footer menu */
	.privacy-menu {
		text-align: center;
	} /* Styling for privacy menu */
	.privacy-menu li {
		text-align: center;
		margin-left: 10px;
		margin-right: 10px;
	} /* Styling for privacy menu */
}

/*** Wordpres Core Pagination Block - Add "core-pagination" class ***/
.core-pagination {}
.core-pagination > a.wp-block-query {}
.core-pagination > a.wp-block-query:hover,
.core-pagination > a.wp-block-query:focus {}
.core-pagination > .wp-block-query > a.page-numbers {}
.core-pagination > .wp-block-query > a.page-numbers:hover,
.core-pagination > .wp-block-query > a.page-numbers:focus {}
.core-pagination > .wp-block-query > .page-numbers.current {}


/*** 5 - Custom Links & Buttons styling outside of the customizer
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

/*** Change cursor to hand on hover ***/
.site-logo a,
a.gb-button,
.main-navigation .main-nav ul li a {
    cursor: pointer;
}

/*** Hyperlink styling custom CSS ***/
.entry-content a:not(.gb-button),
.entry-content a:visited:not(.gb-button),
.entry-content a:link:not(.gb-button) {
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
	border-bottom: var(--link-border-bottom-1) solid transparent;
} /* Add colored underlink to default link styling, exclude GenerateBlocks buttons */
.entry-content a:hover:not(.gb-button) {
	text-decoration: none;
	border-bottom: var(--link-border-bottom-1) solid var(--accent-2);
	cursor: pointer;
} /* Add colored underlink to default link styling, exclude GenerateBlocks buttons */
.entry-content a:focus:not(.gb-button) {
	text-decoration: none;
	border-bottom: var(--link-border-bottom-1) solid var(--accent-2);
} /* Add colored underlink to default link styling, exclude GenerateBlocks buttons */

/*** WordPress Image Block custom CSS ***/
.entry-content .wp-block-image a,
.entry-content .wp-block-image a:visited,
.entry-content .wp-block-image a:link,
.entry-content .wp-block-image a:hover,
.entry-content .wp-block-image a:focus {
	border-bottom: var(--link-border-bottom-1) solid transparent;
} /* Remove colored underlink from images */

/*** Headings custom CSS ***/
h1 a, h1 a:visited, h1 a:link, h1 a:hover, h1 a:focus,
h2 a, h2 a:visited, h2 a:link, h2 a:hover, h2 a:focus,
h3 a, h3 a:visited, h3 a:link, h3 a:hover, h3 a:focus,
h4 a, h4 a:visited, h4 a:link, h4 a:hover, h4 a:focus,
h5 a, h5 a:visited, h5 a:link, h5 a:hover, h5 a:focus,
h6 a, h6 a:visited, h6 a:link, h6 a:hover, h6 a:focus {
	border-bottom: none !important;
} /* Remove colored underlink from images */

/*** GeneratePress Logo Styling custom CSS ***/
.site-logo a,
.site-logo a:visited,
.site-logo a:link,
.site-logo a:hover
.site-logo a:focus {
	border-bottom: none;
} /* Remove colored underlink from default link styling */

@media (max-width: 767px) {
	.site-footer .gb-grid-wrapper {
		max-width: 450px;
		margin: auto;
	} /* Set footer content maximum width */
}


/*** 6 - GenerateBlocks Custom Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

.gb-container p:last-child:last-of-type {
	margin-bottom: 0;
} /* Remove bottom margin from last paragraph in a container */
.gb-container sup {
    position: relative;
    font-size: 70%;
    line-height: 0;
    vertical-align: baseline;
    top: -.5em;
} /* Style Superscript */

/*** GenerateBlocks Container Custom CSS ***/
.gb-container a:not(.gb-button),
.gb-container a:visited:not(.gb-button),
.gb-container a:link:not(.gb-button) {
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
	border-bottom: var(--link-border-bottom-1) solid transparent;
} /* Add colored underlink to default link styling for GenerateBlocks outside entry-content, exclude GenerateBlocks buttons */
.gb-container a:hover:not(.gb-button) {
	text-decoration: none;
	border-bottom: var(--link-border-bottom-1) solid var(--accent-2);
	cursor: pointer;
} /* Add colored underlink to default link styling for GenerateBlocks outside entry-content, exclude GenerateBlocks buttons */
.gb-container a:focus:not(.gb-button) {
	text-decoration: none;
	border-bottom: var(--link-border-bottom-1) solid var(--accent-2);
} /* Add colored underlink to default link styling for GenerateBlocks outside entry-content, exclude GenerateBlocks buttons */
.site-footer .gb-container a:not(.gb-button),
.site-footer .gb-container a:visited:not(.gb-button),
.site-footer .gb-container a:link:not(.gb-button) {
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
	border-bottom: var(--link-border-bottom-1) solid transparent;
} /* Add colored underlink to default link styling for GenerateBlocks outside entry-content, exclude GenerateBlocks buttons */
.site-footer .gb-container a:hover:not(.gb-button) {
	text-decoration: none;
	border-bottom: var(--link-border-bottom-1) solid var(--light-1);
	cursor: pointer;
} /* Add colored underlink to default link styling for GenerateBlocks outside entry-content, exclude GenerateBlocks buttons */
.site-footer .gb-container a:focus:not(.gb-button) {
	text-decoration: none;
	border-bottom: var(--link-border-bottom-1) solid var(--light-1);
} /* Add colored underlink to default link styling for GenerateBlocks outside entry-content, exclude GenerateBlocks buttons */

.gb-container a.gb-container,
.gb-container a.gb-container:visited,
.gb-container a.gb-container:link {
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
	border-bottom: 0 solid transparent !important;
} /* GenerateBlocks linked container styling */
.gb-container a.gb-container:hover {
	border-bottom: 0 solid transparent !important;
	cursor: pointer;
} /* GenerateBlocks linked container styling */
.gb-container a.gb-container:focus {
	border-bottom: 0 solid transparent !important;
} /* GenerateBlocks linked container styling */

.gb-container a.gb-container-link,
.gb-container a.gb-container-link:visited,
.gb-container a.gb-container-link:link {
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
	border-bottom: 0 solid transparent !important;
} /* GenerateBlocks linked container styling */
.gb-container a.gb-container-link:hover {
	border-bottom: 0 solid transparent !important;
	cursor: pointer;
} /* GenerateBlocks linked container styling */
.gb-container a.gb-container-link:focus {
	border-bottom: 0 solid transparent !important;
} /* GenerateBlocks linked container styling */

/*** WordPress Image Block Custom CSS ***/
.gb-container .wp-block-image a,
.gb-container .wp-block-image a:visited,
.gb-container .wp-block-image a:link,
.gb-container .wp-block-image a:hover,
.gb-container .wp-block-image a:focus {
	border-bottom: 0 solid transparent;
} /* Remove colored underlink from images for GenerateBlocks outside entry-content */

/*** GenerateBlocks Image Block Custom CSS ***/
.gb-block-image a,
.gb-block-image a:visited,
.gb-block-image a:link,
.gb-block-image a:hover,
.gb-block-image a:focus {
	border-bottom: 0 solid transparent !important;
} /* Remove colored underlink from GenerateBlocks images */

/*** GenerateBlocks Dynamic Image Block Custom CSS ***/
.gb-dynamic-image a,
.gb-dynamic-image a:visited,
.gb-dynamic-image a:link,
.gb-dynamic-image a:hover,
.gb-dynamic-image a:focus {
	border-bottom: 0 solid transparent;
} /* Remove colored underlink from GenerateBlocks dynamic images */

/*** GenerateBlocks Buttons Custom CSS ***/
.gb-button {
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition:all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
}
.gb-container-buttons-fixed .gb-button {
	min-width: 200px;
} /* Set button width for ""Buttons – Styles" GenerateBlocks Global Style */
@media (max-width: 460px) {
	.gb-container-buttons-variable-text .gb-button {
		min-width: 100%;
	} /* Set button width for "Buttons – Styles" GenerateBlocks Global Style */
	.gb-container-buttons-variable-text {
		flex-direction: column !important;
	} /* Stack text buttons on phone */
	[class*="gb-button-text-"],
	[class*="gb-button-solid-"],
	[class*="gb-button-transparent-"] {
		margin-right: 0 !important;
	} /* Remove right margin for text buttons on phone */
}

/*** GenerateBlocks Pagination styling tweaks ***/
.gb-query-loop-pagination > span:first-of-type {
	display: none;
}
.gb-query-loop-pagination > span.page-numbers:first-of-type {
	margin-right: 10px;
	display: block;
}
.gb-query-loop-pagination > span.gb-block-is-current:first-of-type {
	margin-right: 10px;
	display: block;
}
.gb-query-loop-pagination > span:last-of-type {
	display: none;
}
.gb-query-loop-pagination > span.page-numbers:last-of-type {
	display: block;
}
.gb-query-loop-pagination > a.gb-button-text {
	margin-right: 10px;
}
.gb-query-loop-pagination > a.gb-button-text:hover,
.gb-query-loop-pagination > a.gb-button-text:focus {
	
}
.gb-query-loop-pagination > .gb-button-text.gb-block-is-current {
	margin-right: 10px;
	margin-bottom: 20px;
	font-size: 1rem;
}
.gb-query-loop-pagination > [class*="gb-button-pill-"].gb-block-is-current {
	margin-top: 15px;
	margin-right: 15px !important;
	margin-left: 5px;
	font-size: .875rem;
}
.gb-query-loop-pagination > [class*="gb-button-solid-"].gb-block-is-current,
.gb-query-loop-pagination > [class*="gb-button-transparent-"].gb-block-is-current {
	margin-right: 35px !important;
	margin-left: 25px;
}


/*** 7 - Kadence Blocks Custom Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

/*** Kadence Slider Block Custom CSS ***/
.kt-blocks-carousel {
	padding: 0 !important;
} /* Remove default 20px padding */
.kt-blocks-carousel .slick-dotted.slick-slider {
	margin-bottom: 50px !important;
} /* Add margin to bottom of dot navigation */
.kb-advanced-slide-inner-wrap {
	text-align: inherit !important;
} /* Remove forced alignment from Slider Block settings */
@media (max-width: 767px) {
	.kt-blocks-carousel .kt-carousel-dotstyle-light .splide__pagination__page {
		opacity: .25 !important;
		background-color: var(--accent-1) !important;
	} /* Styling for Dots navigation - Not Active */
	.kt-blocks-carousel .kt-carousel-dotstyle-light .splide__pagination__page:hover {
		opacity: 1 !important;
		background-color: var(--accent-1) !important;
	} /* Styling for Dots navigation - Not Active */
	.kt-blocks-carousel .kt-carousel-dotstyle-light .splide__pagination__page.is-active {
		opacity: 1 !important;
		background-color: var(--accent-1) !important;
	} /* Styling for Dots navigation - Active */
}


/*** Kadence Modal Block Custom CSS ***/
.wp-block-kadence-modal {
	margin-bottom: 0 !important;
} /* Remove bottom margin of modal div */

/*** Kadence Repeater Block Custom CSS ***/
.kadence-repeater-wrapper {
	line-height: 1;
} /* Control height */
.kadence-repeater-wrapper ul li::marker {
    color: transparent;
} /* Remove list bullet */
.kadence-repeater-wrapper ul li {
	padding-left: 3px;
} /* Adjust list placement */

/*** Kadence Advanced Gallery Block Custom CSS ***/
.wp-block-kadence-advancedgallery ul li::marker {
    color: transparent;
} /* Remove list bullet */


/*** 8 - Gravity Forms plugin custom CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/
fieldset > * {
	padding-left: 0;
}
.gform_wrapper.gravity-theme .gfield_label {
	font-size: inherit !important;
}
.gform_footer input[type="button"],
.gform_footer input[type="reset"],
.gform_footer input[type="submit"] {
	font-size: 1rem;
	font-weight: normal;
	line-height: inherit !important;
	text-decoration: none;
	color: var(--accent-1);
	padding: 8px 20px;
	border: var(--button-border-1) solid var(--accent-1);
	background-color: transparent;
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition:all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
	min-width: 200px;
} /* Default Theme Button Styling */
.gform_footer input[type="button"]:hover,
.gform_footer input[type="button"]:focus,
.gform_footer input[type="reset"]:hover,
.gform_footer input[type="reset"]:focus,
.gform_footer input[type="submit"]:hover,
.gform_footer input[type="submit"]:focus {
	background-color: transparent;
	color: var(--accent-2);
	text-decoration: none;
	border: var(--button-border-1) solid var(--accent-2);
} /* Default Theme Button Styling */
.gform_body input[type="text"],
.gform_body input[type="email"],
.gform_body input[type="url"],
.gform_body input[type="password"],
.gform_body input[type="search"],
.gform_body input[type="tel"],
.gform_body input[type="number"],
.gform_body textarea {
	font-size: inherit !important;
	line-height: inherit;
	color: var(--dark-2);
	padding: 12px 20px !important;
	border: 1px solid var(--accent-1);
	background-color: var(--light-1);
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
} /* Default Theme Form Field Styling */
.gform_body input[type="text"],
.gform_body input[type="email"],
.gform_body input[type="url"],
.gform_body input[type="password"],
.gform_body input[type="search"],
.gform_body input[type="tel"],
.gform_body input[type="number"] {
	height: 50px;
} /* Field height styling */
div.gform_confirmation_message {
    background: var(--accent-1);
    color: var(--light-1);
    padding: 20px;
    margin: 20px 0;
    border-radius: var(--border-radius-1);
} /* Confirmation message field styling */
.gform_wrapper.gravity-theme .gfield_required {
	color: var(--accent-1);
} /* "Required" notice styling */
.gform_wrapper.gravity-theme .ginput_container_time {
	min-width: 100px;
	max-width: 100px;
} /* Time field styling */
.ginput_container_fileupload {
	background: transparent;
} /* File Upload Field Styling */
.gform_drop_area {
	border: 0 !important;
	background: transparent !important;
} /* File Upload Field Styling */
.gform_button_select_files {
	width: 100%;
} /* File Upload Field Styling */
@media (max-width: 767px) {
	.gform_wrapper.gravity-theme .ginput_complex span {
		margin-bottom: 15px !important;
	} /* Name and email field fix for mobile styling */
	.gform_wrapper.gravity-theme .ginput_complex span:last-of-type {
		margin-bottom: 0 !important;
	} /* Name and email field fix for mobile styling */
	.name_first,
	.name_last,
	.ginput_left,
	.ginput_right {
		min-width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
	} /* Name and email field fix for mobile styling */
	.name_first,
	.ginput_left {
		margin-bottom: 15px;
	} /* Name and email field fix for mobile styling */
	.gform_wrapper.gravity-theme .ginput_container_address span,
	.gform_wrapper.gravity-theme .ginput_container_city span,
	.gform_wrapper.gravity-theme .ginput_container_state span,
	.gform_wrapper.gravity-theme .ginput_container_zip span {
		padding-left: .9804% !important;
		padding-right: .9804% !important;
	} /* Address field fix for mobile styling */
}

/*** Custom radio and checkbox styling ***/
.gchoice {
	display: inline;
} /* Radio button styling: side-by-side display */
.gchoice input {
	display: none !important;
} /* Radio button styling */
.gchoice label {
	font-size: 16px;
	padding: 10px 20px;
	background-color: var(--light-1);
	color: var(--accent-1);
	border: 1px solid var(--accent-1);
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
	margin-bottom: 10px !important;
	text-align: center;
	/* width: 100%;
	max-width: 100% !important; */
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition:all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
} /* Radio button styling */
.gchoice input[type="radio"]:hover + label,
.gchoice input[type="radio"]:checked + label,
.gchoice input[type="checkbox"]:hover + label,
.gchoice input[type="checkbox"]:checked + label{
	border: 1px solid var(--accent-2);
	background-color: var(--accent-2);
	color: var(--light-1);
	cursor: pointer;
} /* Radio button styling */
@media (max-width: 460px) {
	.gchoice {
		display: block;
	} /* Radio button styling: force radio buttons full width on mobile */
	.gchoice label {
		min-width: 100%;
		margin-bottom: 0;
	} /* Fix for full width on mobile */
}

/*** Custom dropdown menu styling ***/
.gform_body select,
.gform_wrapper.gravity-theme select {
	font-size: inherit !important;
	line-height: inherit;
	height: 50px;
	color: var(--dark-2);
	padding: 12px 20px !important;
	background-color: var(--light-1);
	border: 1px solid var(--accent-1);
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none;
} /* Dropdown menu styling */
.ginput_container_select {
	position: relative;
	display: block;
	overflow: hidden;
} /* Dropdown menu styling */
.ginput_container_select select::-ms-expand {
	display: none;
} /* Dropdown menu styling */
.ginput_container_select::after {
	content: '\25BC';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 12px 15px;
	height: 50px;
	color: var(--light-1);
	background: var(--accent-1);
	pointer-events: none;
	border-radius: 0 var(--border-radius-1) var(--border-radius-1) 0;
} /* Dropdown menu styling */1
.ginput_address_state::after {
	right: 2%;
}
.ginput_container_select:hover::after {
	color: var(--light-1);
	background: var(--accent-2);
} /* Dropdown menu styling */
.ginput_container_select::after {
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
} /* Dropdown menu styling */
@media (max-width: 767px) {
	.ginput_address_state::after {
		right: 1%;
	}
}

/*** Form styling for phones ***/
@media (max-width: 460px) {
	.gform_body input[type="text"],
	.gform_body input[type="email"],
	.gform_body input[type="url"],
	.gform_body input[type="password"],
	.gform_body input[type="search"],
	.gform_body input[type="tel"],
	.gform_body input[type="number"],
	.gform_body textarea,
	.gform_body select {
		width: 100% !important;
	} /* Force form fields full width on mobile */
	.gform_footer input[type="button"],
	.gform_footer input[type="reset"],
	.gform_footer input[type="submit"] {
		width: 100% !important;
		text-align: center;
	} /* Force buttons full width on mobile */
}

/*** Use Gravity Forms Conditional Logic to disable submit button ***/
.gform_wrapper.gravity-theme .gform_footer button.button:disabled,
.gform_wrapper.gravity-theme .gform_footer input.button:disabled,
.gform_wrapper.gravity-theme .gform_page_footer button.button:disabled,
.gform_wrapper.gravity-theme .gform_page_footer input.button:disabled {
	display: block !important;
	cursor: not-allowed;
}


/*** 9 - WSV Custom Functions
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

/*** ACF Notification Bar CSS ***/
.gb-container a.notification-bar-link,
.gb-container a.notification-bar-link:visited,
.gb-container a.notification-bar-link:link {
	color: var(--light-1);
	white-space: nowrap;
	margin-left: 20px;
	margin-right: 20px;
	border-bottom: var(--link-border-bottom-1) solid var(--light-2);
} /* ACF Alert Message styling */
.gb-container a.notification-bar-link:hover,
.gb-container a.notification-bar-link:focus {
	color: var(--light-1);
	border-bottom: var(--link-border-bottom-1) solid var(--light-1);
} /* ACF Alert Message styling */

/*** ACF Cookies Notice CSS ***/
#cookie-notice {
	color: var(--light-1);
	font-family: inherit;
	background: var(--accent-1);
	padding: 20px;
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 100%;
	max-width: 300px;
	box-shadow: 0 10px 20px rgba(0,0,0,.2);
	border-radius: var(--border-radius-1);
	margin: 0px;
	visibility: hidden;
	z-index: 1000000;
	box-sizing: border-box;
}
#cookie-notice button {
	color: var(--accent-2);
	background: var(--light-1);
	border: 0;
	padding: 10px;
	margin-top: 10px;
	width: 100%;
	cursor: pointer;
	border-radius: var(--border-radius-1);
}
#cookie-notice button:hover {
	color: var(--light-1);
	background: var(--accent-2);
}
#cookie-notice p {
	margin-bottom: 10px;
}
#cookie-notice a,
#cookie-notice a:visited {
	color: var(--light-1); !important;
	text-decoration: underline;
}
#cookie-notice a:hover,
#cookie-notice a:focus {
	color: var(--light-2); !important;
}
@media only screen and (max-width:600px) {
	#cookie-notice {
		max-width: 100%;
		bottom: 0;
		left: 0;
		border-radius: 0;
	}
}

/*** ACF Photo Credit CSS ***/
.photo-credit {
    display: flex;
    justify-content: left;
}
.photo-credit .span-wrapper {
	display: inline-block;
	padding-right: 5px;
}
.photo-credit .span-wrapper:last-of-type .span-comma {
	display: none;
}
@media (max-width: 767px) {
	.photo-credit {
    	justify-content: center;
	}
}


/*** 10 - Website Specific CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/

/* Navigation Styling */
body:not(.home) #masthead,
#mobile-header {
	box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.1);
}
@media(min-width: 768px) {
	body:not(.home) #masthead {
		height: 65px;
	}
}
@media(min-width: 1025px) {
	body:not(.home) #masthead {
		height: 85px;
	}
}

/* Center Navigation Logo */
@media(min-width: 768px) {
    .inside-header>.site-branding,
    .inside-header>.navigation-branding,
    .inside-header>.site-logo,
    .site-branding-container,
    #site-navigation .navigation-branding .site-logo,
    #sticky-navigation .navigation-branding {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
    #site-navigation {
        margin-left: unset !important;
        display: flex;
    }
    .site-header .main-navigation:not(#sticky-navigation) .inside-navigation {
        margin: unset;
    }
    #site-navigation,
    #primary-menu,
    .main-navigation .inside-navigation {
        flex: 1;
    }
	.inside-header {
		padding-top: 25px;
		padding-bottom: 25px;
		max-width: 850px;
	}
    .main-navigation ul:not(ul.sub-menu) > li:nth-child(3) {
		padding-right: 30px;
    }
	.main-navigation ul:not(ul.sub-menu) > li:nth-child(4) {
        margin-left: auto;
		padding-left: 40px;
    }
}
@media(max-width: 1024px) {
	.inside-header {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media(min-width: 1025px) {
	.inside-header {
		padding-top: 40px;
		padding-bottom: 40px;
		max-width: 950px;
	}
	.main-navigation a {
		font-size: 1.25rem;
	}
}

/* Homepage Navigation */
.header-wrap #mobile-header:not(.toggled):not(.navigation-stick) {
	background: var(--light-1);
}
@media(min-width: 768px) {
	.home .main-navigation .main-nav a,
	.home .main-navigation .main-nav a:visited,
	.home .main-navigation .main-nav a:link {
		color: var(--light-1);
	} /* Add colored underlink to primary menu link styling */
	.home .main-navigation .main-nav .sub-menu a,
	.home .main-navigation .main-nav .sub-menu a:visited,
	.home .main-navigation .main-nav .sub-menu a:link {
		color: var(--accent-1);
	} /* Add colored underlink to primary menu link styling */
	.home .main-navigation .main-nav a:hover,
	.home .main-navigation .main-nav a:focus,
	.home .main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a {
		color: var(--light-2);
	} /* Add colored underlink to primary menu link styling */
	.home .main-navigation .main-nav .current-menu-item ul li a {
		color: var(--accent-1);
	} /* Add colored underlink to primary menu link styling */
	.home .main-navigation .main-nav .sub-menu .current-menu-item ul li a {
		color: var(--accent-1) !important;
	} /* Add colored underlink to primary menu link styling */
}

/* Footer Custom Styling */
@media (max-width: 1280px) and (min-width: 1025px) {
	.footer-menu-grid > .gb-grid-wrapper > .gb-grid-column {
		width: 50%;
	}
}
@media (max-width: 1024px) and (min-width: 768px) {
	.footer-container {
		padding-left: 137px !important;
	}
}
@media(min-width: 1025px) {
	.footer-address-container {
		padding-left: 125px;
	}
}
@media(max-width: 767px) {
	.footer-logo-container {
		background-image: linear-gradient(to bottom, var(--light-1) 0%, var(--light-1) 46px, var(--accent-1) 46px, var(--accent-1) 100%) !important;
	}
}

/* Diamond Grid Styling */
.diamond-icon {
	line-height: 0.5;
}
.diamond-icon-image {
	line-height: 0;
}

/* SEOPress Styling */
.breadcrumb {
	font-size: .9rem;
}

/* Pie Calendar Styling */

.piecal-wrapper .piecal-controls__view-chooser select {
	color: var(--accent-1);
	background-color: var(--light-1);
	border-color: var(--accent-1);
	border: var(--button-border-1) solid var(--accent-1);
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
	margin-left: 8px;
	cursor: pointer;
}
.piecal-wrapper .fc .fc-toolbar-title {
	font-size: 2.5rem;
	line-height: 1.2;
}
.piecal-wrapper .fc .fc-toolbar.fc-header-toolbar {
	margin-bottom: 10px;
}
.piecal-wrapper .fc .fc-daygrid-day.fc-day-today {
	background-color: var(--light-2);
}
.piecal-wrapper .fc .fc-prev-button,
.piecal-wrapper .fc .fc-next-button,
.piecal-wrapper .fc .fc-button-primary {
	font-size: 1rem;
	font-weight: normal;
	line-height: inherit !important;
	text-decoration: none;
	color: var(--accent-1);
	padding: 8px 20px;
	border: var(--button-border-1) solid var(--accent-1);
	background-color: transparent;
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition:all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
}
.piecal-wrapper .fc .fc-prev-button:hover,
.piecal-wrapper .fc .fc-next-button:hover,
.piecal-wrapper .fc .fc-button-primary:hover {
	background-color: transparent;
	color: var(--accent-2);
	text-decoration: none;
	border: var(--button-border-1) solid var(--accent-2);
}
.piecal-wrapper .fc .fc-next-button {
	margin-left: .75em !important;
}
.piecal-wrapper .fc .fc-button:disabled {
	background-color: var(--accent-1);
	border-color: var(--accent-1);
	color: var(--light-1);
	opacity: 1;
	padding: 9px 20px;
}
.piecal-wrapper .fc .fc-button {
	font-size: 1rem;
	font-weight: normal;
	line-height: inherit !important;
	text-decoration: none;
	color: var(--accent-1);
	padding: 8px 20px;
	border: var(--button-border-1) solid var(--accent-1);
	background-color: transparent;
	-webkit-border-radius: var(--border-radius-1);
	-moz-border-radius: var(--border-radius-1);
	border-radius: var(--border-radius-1);
	-webkit-transition: all 0.2s ease-in 0s;
	-moz-transition: all 0.2s ease-in 0s;
	-o-transition: all 0.2s ease-in 0s;
	-ms-transition:all 0.2s ease-in 0s;
	transition: all 0.2s ease-in 0s;
}
.piecal-wrapper .fc .fc-button:nth-child(2) {
	margin-right: 8px;
}
.piecal-wrapper .fc-daygrid-dot-event:hover {
	background-color: var(--light-2) !important;
}
.piecal-wrapper table,
.piecal-wrapper table.fc-col-header,
.piecal-wrapper table.fc-scrollgrid-sync-table {
	margin-bottom: 0;
}
.piecal-wrapper .piecal-popover {
	backdrop-filter: none;
	z-index: 1000;
}
.piecal-wrapper .piecal-popover__inner {
	padding: 0 32px 32px;
	border-radius: 0;
}
.piecal-wrapper .fc .fc-list-sticky .fc-list-day > * {
	background: var(--light-2);
}
.piecal-wrapper .fc-event {
	white-space: normal;
}
.piecal-wrapper .fc-daygrid-dot-event {
	display: flex;
	flex-wrap: wrap; /* Allow wrapping */
	align-items: center;
	padding: 2px 0;
}
.piecal-wrapper .fc-daygrid-event-dot {
	flex: 0 0 auto; /* Keep the dot in its own space */
}
.piecal-wrapper .fc-event-time {
	flex: 1 0 auto; /* Allow the time to take up the remaining space next to the dot */
	margin-left: 4px; /* Add some space between the dot and the time */
}
.piecal-wrapper .fc-event-title {
	flex-basis: 100%; /* Force the title to take up the entire width and appear below the previous two divs */
}
@media(max-width: 767px) {
	.piecal-wrapper .fc .fc-toolbar-title {
		font-size: 2.25rem;
		line-height: 1.2;
	}
	.piecal-wrapper .fc .fc-toolbar.fc-header-toolbar {
		display: block;
	}
	.piecal-wrapper .fc-toolbar-chunk {
		min-width: 100%;
		margin-bottom: 10px;
	}
}
@media(max-width: 768px) {
	.piecal-wrapper--responsive-widget[data-view="dayGridMonth"] .fc-daygrid-day-frame:has(.fc-daygrid-event-harness)::after {
		box-shadow: none !important;
		background-color: var(--light-2);
		width: 42px !important;
		height: 42px !important;
	}
}

/* Pseudo Tabs Stylying */
@media (max-width: 1160px) and (min-width: 768px) {
	.pseudo-tabs-5 .gb-button {
		min-width: 32%;
	}
}
@media (max-width: 1024px) and (min-width: 768px) {
	.pseudo-tabs-2 .gb-button {
		min-width: 48%;
	}
	.pseudo-tabs-3 .gb-button {
		min-width: 32%;
	}
	.pseudo-tabs-4 .gb-button {
		min-width: 48%;
	}
}
@media(max-width: 767px) {
	.pseudo-tabs-2 .gb-button,
	.pseudo-tabs-3 .gb-button,
	.pseudo-tabs-4 .gb-button,
	.pseudo-tabs-5 .gb-button {
		min-width: 100%;
	}
}

/* Events Calendar Custom Styling */
.category-arts .gb-icon {
	color: #ff0000;
}
.category-recreation-sports .gb-icon {
	color: #ff9900;
}
.category-clubs-organizations .gb-icon {
	color: #33cc00;
}
.cateogry-tourism .gb-icon {
	color: #33ccff;
}
.category-community .gb-icon {
	color: #0033cc;
}
.category-festivals-celebrations .gb-icon {
	color: #6600cc;
}
.category-schools .gb-icon {
	color: #ff00ff;
}

/* Custom Styling */
.shadowed-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

