/*
	Theme Name: Wonderly Starter
	Theme URI: https://withwonderly.com
	Description: Wonderly Web starter child theme for the Genesis Framework. Beaver Builder and Beaver Themer handle all front-end layout.
	Author: Wonderly Web
	Author URI: https://withwonderly.com

	Version: 1.0.0

	Template: genesis
	Template Version: 3.5.0

	License: GPL-2.0+
	License URI: https://opensource.org/licenses/gpl-license.php
*/


/* =============================================================================
   BRAND COLORS
   Define project brand colors here as CSS custom properties.
   Reference throughout stylesheet and BB Global Styles as var(--name).
   e.g. --primary: #000; --accent: #e14d43;

   Kit form color variables are also defined here — see KIT FORMS section.
   Update these to match the project's brand before building out forms.
============================================================================= */

:root {
	
	--error: Red;
	--text: #000;

    /* Kit Form defaults — update per project */
    --kit-font: sans-serif;         /* form font family */
    --kit-primary: #000;            /* main accent: button bg, borders */
    --kit-primary-text: #fff;       /* text on --kit-primary backgrounds */
    --kit-bg: #fff;                 /* input background */
    --kit-input-text: #000;         /* input and placeholder text color */
    --kit-success-bg: #fff;         /* success message background */
    --kit-success-border: #000;     /* success message border and text color */

	--cream: #FAF8EE;
	--red: #97282D;
	--dark: #1B1E29;
	--butter: #F1D9B2;
}


/* =============================================================================
   BASE RESET
   Minimal — modern browsers don't need much.
============================================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: var(--cream);
}

img,
embed,
iframe,
object,
video,
.wp-caption {
	max-width: 100%;
	height: auto;
}

a img {
	display: block;
}




/* =============================================================================
   TYPOGRAPHY DEFAULTS
   Intentionally bare — set per-project via BB Global Styles.
   These are fallback/body defaults only.
============================================================================= */

body {
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	line-height: 120%; /* 21.6px */
	letter-spacing: -0.18px;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	margin: 0 0 20px;
	font-family: 'corax';
}

h1 {
	font-size: 64px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; 
}

h2 {
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}

h3 { 
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; 
}

p {
	margin: 0 0 20px;
}

.eyebrow, 
.eyebrow p {
	font-family: "Manrope", sans-serif;
	font-size: 31px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 31px */
	letter-spacing: -0.31px;
}

p:last-child,
.fl-rich-text p:last-child,
.uabb-text-editor p:last-child {
	margin-bottom: 0 !important;
}

/* In-text link styles — scoped to paragraph context only.
   Keeps nav, buttons, and other links unaffected. */
.entry-content p a,
.fl-rich-text p a,
.fl-theme-builder-footer .fl-rich-text a {
	color: #0000EE;
	text-decoration: underline;
}

.entry-content p a:hover,
.fl-rich-text p a:hover,
.fl-theme-builder-footer .fl-rich-text a:hover {
	color: #000;
}

a {
	transition: color 0.15s ease-in-out;
}

b,
strong {
	font-weight: 700;
}

input:focus::placeholder,
input:focus::-webkit-input-placeholder { 
	color: transparent !important; 
} 


/* =============================================================================
   BUTTON DEFAULTS
   
============================================================================= */

.fl-button,
.pp-button,
.uabb-button,
.nf-form-content input[type=submit] {
	line-height: 1 !important;
	background: transparent!important;
	border-radius: 100px!important;
	padding: 10px 24px!important;
	color: var(--cream)!important;
	transition: .3s ease;
}

.fl-button:hover,
.pp-button:hover,
.uabb-button:hover,
.nf-form-content input[type=submit]:hover {
	background: var(--cream)!important;
	color: var(--red)!important;
}

.fl-button-text,
.fl-button-icon,
.fl-button:hover .fl-button-text,
.fl-button:hover .fl-button-icon {
	color: inherit !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 21.6px */
	letter-spacing: -0.18px;
}

@media only screen and (max-width: 760px) {
	.fl-button-text {
		font-size: 14px;
	}
}

/* =============================================================================
   LISTS
   Restore sensible list defaults inside content and BB rich text areas.
   (Genesis/resets strip these.)
============================================================================= */

.entry-content ol,
.entry-content ul,
.site-inner ol,
.site-inner ul,
.fl-rich-text ol,
.fl-rich-text ul {
	margin-bottom: 24px;
	margin-left: 36px;
	padding: 0;
}

.entry-content ol > li,
.site-inner ol > li,
.fl-rich-text ol > li {
	list-style-type: decimal;
	margin-bottom: 8px;
}

.entry-content ul > li,
.site-inner ul > li,
.fl-rich-text ul > li {
	list-style-type: disc;
	margin-bottom: 8px;
}

.entry-content ol ol,
.entry-content ul ul,
.fl-rich-text ol ol,
.fl-rich-text ul ul {
	margin-bottom: 0;
}


/* =============================================================================
   WORDPRESS ALIGN CLASSES
   Used by the block editor and classic editor image alignment.
============================================================================= */

.alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.aligncenter,
img.centered {
	display: block;
	margin: 0 auto 24px;
}

.alignnone {
	margin-bottom: 16px;
}

.wp-caption-text {
	font-size: 14px;
	text-align: center;
}

/* =============================================================================
   Position/Relative Over/Under
============================================================================= */
.over {
	z-index: 10;
	position: relative;
}

.under {
	z-index: 1;
	position: relative;
}


/* =============================================================================
   GENESIS CHROME
   Hide default Genesis header/footer — Beaver Themer handles all of this.
============================================================================= */

.site-header,
.site-footer {
	display: none;
}


/* =============================================================================
   BEAVER BUILDER
============================================================================= */

/* Prevents Genesis list reset from stripping menu item list styles */
.fl-menu .menu li {
	list-style-type: none;
}

/* Prevents absolutely-positioned elements and animations bleeding outside rows.
   Safe to remove on a per-row basis using overflow: visible !important if needed.  */

.hide-overflow .fl-row-content-wrap,
.no-overflow {
	overflow: hidden!important;
}


/* =============================================================================
   NINJA FORMS
============================================================================= */

.contact .nf-form-fields-required {
	display: none;
}

.contact .ninja-forms-req-symbol {
	color: var(--cream) !important;
}

/* ----------------------------------------
   ERROR STYLING
---------------------------------------- */
.contact .nf-error .nf-error-msg {
	color: var(--butter) !important;
}

.contact .nf-error.field-wrap .nf-field-element:after {
	background: transparent !important;
	color: var(--butter) !important;
}

.contact .nf-error .ninja-forms-field {
	border-color: var(--butter) !important;
}

/* ----------------------------------------
   TEXT FIELDS
---------------------------------------- */
.contact .nf-form-content .list-select-wrap .nf-field-element>div, 
.contact .nf-form-content input:not([type=button]), 
.contact .nf-form-content textarea {
	background-color: transparent !important;
}

/* ----------------------------------------
   CHECKBOXES
---------------------------------------- */
.contact .listcheckbox-wrap .nf-field-element label:after, 
.contact .checkbox-wrap .nf-field-label label:after {
	background-color: transparent !important;
}

/* Checked */
.contact .checkbox-wrap .nf-field-element label:before, 
.contact .checkbox-wrap .nf-field-label label:before, 
.contact .listcheckbox-wrap .nf-field-element label:before, 
.contact .listcheckbox-wrap .nf-field-label label:before {
}


/* =============================================================================
   ADMIN BAR FIX
   Prevents admin bar from overlapping content on mobile.
============================================================================= */

@media only screen and (max-width: 782px) {
	html {
		margin-top: 0 !important;
	}

	.admin-bar .site-container {
		padding-top: 46px !important;
	}
}


/* =============================================================================
   RESPONSIVE TYPOGRAPHY
   Uncomment and adjust per project. Values below are starting point examples.
   Primary breakpoint for heading size reduction is typically 768px.
============================================================================= */

@media only screen and (max-width: 768px) {

	h1 {
		font-size: 60px;
		font-style: normal;
		font-weight: 400;
		line-height: 110%;
	}
	
	h2 {
		font-size: 28px;
		font-style: normal;
		font-weight: 400;
		line-height: 120%;
	}
	
	h3 {
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: 120%; /* 24px */
	}
	
	/* h4 { font-size: 20px; } */
	/* h5 { font-size: 18px; } */
	/* h6 { font-size: 16px; } */
	/* body { font-size: 16px; } */
	
	p,
	body {
		font-family: "Manrope", sans-serif;
		font-size: var(--Fonts-Body, 16px);
		font-style: normal;
		font-weight: 400;
		line-height: 120%; /* 19.2px */
		letter-spacing: -0.16px;
	}

	.eyebrow, 
	.eyebrow p {
		font-family: "Manrope", sans-serif;
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 100%; /* 18px */
		letter-spacing: -0.18px;
	}

}



/* =============================================================================
   KIT FORMS
   Class-based styling system for embedded Kit (formerly ConvertKit) forms.
   Apply wrapper classes in BB to trigger variants. Colors inherit from
   --kit-* custom properties defined in :root above.

   VARIANTS:
     .kit-form-inline     — single-line input + button side by side
     .kit-form-stacked    — input and button stacked vertically

   USAGE:
     1. Set --kit-* variables in :root to match project brand colors.
     2. Wrap the Kit embed in a BB HTML module and add .kit-form-inline
        or .kit-form-stacked as a class on that module's row or column.
     3. For a color variant that differs from the project default (e.g. a
        white form on a dark background), override --kit-primary etc. with
        a project-specific selector in the PROJECT-SPECIFIC STYLES section.
     4. Per-form data-uid overrides go in PROJECT-SPECIFIC STYLES below.

   NOTE: Not using Kit? Delete this section.
============================================================================= */

/* ----------------------------------------
   SHARED — applies to all Kit form variants
---------------------------------------- */

.kit-form-inline .formkit-form,
.kit-form-stacked .formkit-form {
    max-width: 100% !important;
}

.kit-form-inline .formkit-input,
.kit-form-stacked .formkit-input {
    font-family: var(--kit-font);
    font-size: 18px;
    color: var(--kit-input-text);
    background-color: var(--kit-bg);
    height: 56px;
    padding: 12px 11px 8px !important;
}

.kit-form-inline ::placeholder,
.kit-form-stacked ::placeholder {
    font-family: var(--kit-font);
    color: var(--kit-input-text);
    opacity: 0.7;
}

.kit-form-inline .formkit-button,
.kit-form-inline .formkit-submit,
.kit-form-stacked .formkit-button,
.kit-form-stacked .formkit-submit {
    font-family: var(--kit-font) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    border: 1px solid var(--kit-primary) !important;
    background-color: var(--kit-primary) !important;
    outline: 1px solid var(--kit-primary) !important;
    outline-offset: 7px;
    padding: 8px 24px !important;
    text-transform: lowercase;
    cursor: pointer;
}

.kit-form-inline .formkit-submit > span,
.kit-form-stacked .formkit-submit > span {
    font-family: var(--kit-font);
    font-size: 18px;
    color: var(--kit-primary-text);
    padding: 0 24px;
}

.kit-form-inline .formkit-button:hover,
.kit-form-inline .formkit-submit:hover,
.kit-form-stacked .formkit-button:hover,
.kit-form-stacked .formkit-submit:hover {
    background-color: transparent !important;
}

.kit-form-inline .formkit-submit:hover > span,
.kit-form-stacked .formkit-submit:hover > span {
    color: var(--kit-primary) !important;
    background-color: transparent !important;
}

.kit-form-inline .formkit-alert-success,
.kit-form-stacked .formkit-alert-success {
    background: var(--kit-success-bg);
    border-color: var(--kit-success-border);
    color: var(--kit-success-border);
}

.kit-form-inline .formkit-alert,
.kit-form-stacked .formkit-alert {
    font-family: var(--kit-font);
}


/* ----------------------------------------
   INLINE — input + button side by side
---------------------------------------- */

.kit-form-inline .formkit-fields {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.kit-form-inline .formkit-field,
.kit-form-inline .formkit-submit {
    margin: 0;
}

@media (max-width: 445px) {
    .kit-form-inline .formkit-fields {
        grid-template-columns: 1fr;
    }
}


/* ----------------------------------------
   STACKED — input above button
---------------------------------------- */

.kit-form-stacked .formkit-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}


/* =============================================================================
   PROJECT-SPECIFIC STYLES
   Add per-project CSS below this line (or in a separate enqueued stylesheet).
   Kit data-uid overrides (per-form success messages, color variants) go here.
============================================================================= */
/* Homepage */
.hero-homepage-text {
    width: 100%;
    overflow: hidden!important;
}

.email-subscription-style .pp-ninja-form-content {
	width: 450px;
	max-width: 100%;
}

.email-subscription-style .pp-ninja-form-content .ninja-forms-form-wrap input[type='submit'] {
	width: 100%;
}

.email-subscription-style .nf-error-wrap,
.email-subscription-style .nf-error-msg {
	display: none!important;
}

.email-subscription-style .nf-error.field-wrap .nf-field-element:after {
	background: transparent;
	bottom: 0;
    color: #fff;
    content: "\f12a";
    font-family: FontAwesome;
    font-size: 20px;
    height: 50px;
    line-height: 37px;
    position: absolute;
    right: 0px;
    text-align: center;
    top: 0px;
    transition: all .5s;
    width: 50px;
}

.email-subscription-style .pp-ninja-form-content .ninja-forms-form-wrap input[type="submit"] {
	background: var(--cream)!important;
	color: var(--dark)!important;
	cursor: pointer;
}

.email-subscription-style .pp-ninja-form-content .ninja-forms-form-wrap input[type="submit"]:hover {
	background: transparent!important;
	color: var(--cream)!important;
}

.email-subscription-style .ninja-forms-field {
	padding-left: 10px!important;
}

.email-subscription-style .nf-row nf-cells {
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
	padding-top: 1px;
    margin-bottom: -4px;
    padding-right: -0;
}

.email-subscription-style .nf-multi-cell .nf-cell {
	padding-right: 0!important;
}

.email-subscription-style .nf-form-content {
	padding: 0;
}

@media only screen and (max-width: 800px) {
	.email-subscription-style .pp-ninja-form-content {
		border-color: transparent!important;
	}
	
	.email-subscription-style .nf-row nf-cells {
		flex-direction: column;
	}
	
	.email-subscription-style .nf-multi-cell .nf-cell {
		width: 100%!important;
	}
	
	.email-subscription-style .ninja-forms-field {
		border: 1px solid var(--cream)!important;
		border-radius: 100px!important;
	}
	
	.email-subscription-style .pp-ninja-form-content .ninja-forms-form-wrap input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
		padding: 10px 24px !important;
		text-align: center;
	}
	
	.email-subscription-style .pp-ninja-form-content,
	.email-subscription-style {
		width: 450px;
		max-width: 100%;
	}
	
}

/* Header */
.header-menu .menu a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.dark-header header .fl-row-content-wrap {
	border-color: var(--dark);
}

.dark-header .menu-item a,
.dark-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle {
	color: var(--dark);
}

.dark-header .pp-hamburger-inner,
.dark-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::before,
.dark-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::after {
	background-color: var(--dark)!important;
}

.dark-logo {
	display: none;
}

.dark-header .dark-logo {
	display: block;
}

.dark-header .light-logo {
	display: none;
}

.error404 {
	background-color: var(--red);
}

header .pp-hamburger-label {
	display: none;
}

header .pp-hamburger-box {
	margin-left: 0 !important;
}

@media only screen and (max-width: 480px) {
	header .reservations .fl-button {
		padding: 10px 13px !important;
	}
	
	header .reservations .fl-button-text {
		font-size: 12px !important;
	}
}


/* Mobile Menu */
.mobile-menu ul.menu {
	margin: 0!important;
}

.mobile-menu a {
	color: var(--cream);
	text-decoration: none!important;
}

.mobile-menu a:hover {
	text-decoration: underline!important;
	text-underline-offset: 2px;
}

.mobile-menu-off-canvas {
	
}

#offcanvas-kpbf0v7z3eso ul#menu-header-1.menu.fl-menu-vertical.fl-toggle-none::before,
#offcanvas-kpbf0v7z3eso ul#menu-header-1.menu.fl-menu-vertical.fl-toggle-none::after {
	display: none;
}

#offcanvas-kpbf0v7z3eso .menu-item a {
	overflow: visible;
}

#offcanvas-kpbf0v7z3eso .fl-menu {
	container-type: normal!important;
}

#offcanvas-kpbf0v7z3eso .pp-offcanvas-body,
#offcanvas-kpbf0v7z3eso .mobile-menu,
#offcanvas-kpbf0v7z3eso .mobile-menu .fl-row-content-wrap,
#offcanvas-kpbf0v7z3eso .mobile-menu .fl-row-content, 
#offcanvas-kpbf0v7z3eso .fl-builder-content,
#offcanvas-kpbf0v7z3eso .pp-offcanvas-content-inner {
	height: 100%!important;
}

#offcanvas-kpbf0v7z3eso .mobile-menu .fl-row-content-wrap {
	padding-top: 24px!important;
}

.pp-offcanvas-header .pp-offcanvas-close:before {
	content: 'Menu';
	font-size: var(--Fonts-Body, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 19.2px */
	letter-spacing: -0.16px;
	color: var(--cream);
}

/* Footer */
.footer-color-variation .fl-rich-text a {
	text-decoration: none;
}

.footer-color-variation .fl-rich-text a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* TRANSPARENT FOOTER OVERLAP */
.fl-theme-builder-footer-footer-layout-transparent .footer-color-variation {
    background: transparent !important;
}

.fl-theme-builder-footer-footer-layout-transparent footer.fl-builder-content-138500667 {
    position: relative;
    z-index: 2;
    margin-top: -113px;
    pointer-events: none;
}

.fl-theme-builder-footer-footer-layout-transparent footer.fl-builder-content-138500667 * {
    pointer-events: auto;
}

@media only screen and (max-width: 992px) {
    .fl-theme-builder-footer-footer-layout-transparent footer.fl-builder-content-138500667 {
        margin-top: -187px;
    }
}

@media only screen and (max-width: 768px) {
    .fl-theme-builder-footer-footer-layout-transparent footer.fl-builder-content-138500667 {
        margin-top: -168px;
    }
}

/* Careers */
.job-type-button .fl-callout-text p {
	padding-bottom: 0!important;
}

.job-opening-box:hover {
	opacity: .6;
}

/* About Us */

/* Contact */
.red-background {
	background: var(--red);
}

.contact-form .ninja-forms-req-symbol {
	color: var(--cream);
}

.contact-form label {
	font-family: 'corax';
	font-size: 24px!important;
	font-style: normal;
	font-weight: 400!important;
	line-height: 120%!important;
}

.contact-form .checkbox-wrap .nf-field-label label:after {
	border: 1px solid var(--cream) !important;
}

.contact-form .nf-form-content input:not([type=button]) {
	border: 1px solid var(--cream);
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.18px;
	color: var(--cream);
}

.contact-form .nf-form-content input:not([type=button]):focus {
	color: var(--cream);
	border-color: var(--cream);
}

.contact-form .nf-form-content input:not([type=button]):hover {
	background: transparent!important;
}

.contact-form #nf-field-4:hover {
	background: var(--cream)!important;
	color: var(--red)!important;
	cursor: pointer;
}

.contact-form .nf-error-msg {
	color: var(--butter);
	font-size: 14px;
}

.contact-form .checkbox-wrap .nf-field-label label.nf-checked-label:before {
	color: var(--cream);
}

.contact-form .checkbox-container.label-right label:before {
    left: -29px;
    top: -5px;
}

.contact-form .checkbox-wrap .nf-field-label label:before {
	font-size: 19px;
}

.contact-form .nf-form-content .ninja-forms-field {
	color: var(--cream);
	font-family: "Manrope", sans-serif;
	font-size: 18px;
}

.contact-form input,
.contact-form input:focus,
.contact-form input:hover {
	background-color: transparent!important;
}

.contact-form input,
.contact-form textarea {
	border-radius: 5px!important;
}

/* FAQs */
.faqs-style .pp-faq-button {
	border-top: 1px solid var(--dark);
}

:where(.fl-builder-content, .fl-page) :is(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus, 
:where(.fl-builder-content, .fl-page) :is(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):active {
	outline-width: 0!important;
}

/* Subscribe KIT Form  */
.kit-subscribe-form {
	width: 450px;
    max-width: 100%;
}

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] {
    max-width: 500px;
    width: 100%;
  }

  /* Outer pill container */
  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] [data-style="clean"] {
    background: transparent;
	  padding: 0;
	  border: none;
  }

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-fields {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
	padding: 6px;
	  border: 1px solid var(--cream);
	  border-radius: 100px;
  }

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-field {
    flex: 1 1 auto;
    margin: 0;
  }

  /* Email input - no visible border, blends into pill */
  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-input {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 15px;
    color: var(--cream);
    width: 100%;
	  padding-left: 7px;
  }

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-input:focus {
    outline: none;
    border: none;
  }

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-input::placeholder {
    color: var(--cream);
    opacity: 1;
  }

  /* Submit button - rounded pill, cream/white, dark text */
  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-submit {
    flex: 0 0 auto;
    margin: 0;
    border-radius: 999px;
    white-space: nowrap;
	padding: 10px 24px !important;
	background: var(--cream) !important;
    color: var(--dark) !important;
    cursor: pointer;
	  border: 1px solid var(--cream);
	  transition: .3s ease;
  }

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-submit > span {
    color: var(--dark) !important;
    font-size: 16px;
	font-weight: 400;
	  padding: 0!important;
  }

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-submit:hover > span {
    background-color: rgba(0,0,0,0.05);
  }

	.kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-submit:hover {
		background: transparent!important;
	}

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-submit:hover > span {
    color: var(--cream) !important;
}

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-alert {
    border-radius: 16px;
    margin: 10px 0 0 0;
  }

  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-powered-by-convertkit-container {
    justify-content: center;
    margin-top: 12px;
  }

/* Override Chrome/Safari autofill blue background */
  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-input:-webkit-autofill,
  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-input:-webkit-autofill:hover,
  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-input:-webkit-autofill:focus,
  .kit-subscribe-form .formkit-form[data-uid="3e1755f046"] .formkit-input:-webkit-autofill:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-text-fill-color: var(--cream);
  caret-color: var(--cream);
  transition: background-color 5000s ease-in-out 0s;
}