/*
	CARVE NOTES (Delete when done reading):
	- When targeting the editor instance use cke_editable instead of ww_editor_body to prevent issues with the sanitizer

	- Fonts must have the font-display property set. Use "block" when no fallback font exists (e.g., font awesome)
	  and "swap" when a fallback font is set (e.g., font-family: "Lato", sans-serif;)

	- Don't forget to change body and input fonts to match the default font used in the "p" tag

	- Avoid leaving old, commented-out code when it is no longer needed

	- Styles should be added following their parent elements. (e.g., body > header > .top-row a).
	  This improves readability when tracking down where an element exists on the DOM.
	  It also prevents conflicting definitions.
*/

/*************************************************
 /$$$$$$$$  /$$$$$$  /$$   /$$ /$$$$$$$$  /$$$$$$
| $$_____/ /$$__  $$| $$$ | $$|__  $$__/ /$$__  $$
| $$      | $$  \ $$| $$$$| $$   | $$   | $$  \__/
| $$$$$   | $$  | $$| $$ $$ $$   | $$   |  $$$$$$
| $$__/   | $$  | $$| $$  $$$$   | $$    \____  $$
| $$      | $$  | $$| $$\  $$$   | $$    /$$  \ $$
| $$      |  $$$$$$/| $$ \  $$   | $$   |  $$$$$$/
|__/       \______/ |__/  \__/   |__/    \______/
**************************************************/
@font-face
{
	font-family: 'font_awesome';
	font-style: normal;
	font-weight: 900;
	src: url('/fonts/fa-solid-900.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'outfit';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Outfit-VariableFont_wght.woff2') format('woff2');
	font-display: swap;
	
}

@font-face
{
	font-family: 'lato';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Lato-Regular.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'lato';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Lato-Italic.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'lato';
	font-style: italic;
	font-weight: bold;
	src: url('/fonts/Lato-BoldItalic.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'lato';
	font-style: normal;
	font-weight: bold;
	src: url('/fonts/Lato-Bold.woff2') format('woff2');
	font-display: swap;
}



/******************************************************************************************************************************
  /$$$$$$  /$$        /$$$$$$  /$$$$$$$   /$$$$$$  /$$              /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
 /$$__  $$| $$       /$$__  $$| $$__  $$ /$$__  $$| $$             /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$  \__/| $$      | $$  \ $$| $$  \ $$| $$  \ $$| $$            | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$ /$$$$| $$      | $$  | $$| $$$$$$$ | $$$$$$$$| $$            |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$|_  $$| $$      | $$  | $$| $$__  $$| $$__  $$| $$             \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$  \ $$| $$      | $$  | $$| $$  \ $$| $$  | $$| $$             /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
|  $$$$$$/| $$$$$$$$|  $$$$$$/| $$$$$$$/| $$  | $$| $$$$$$$$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
 \______/ |________/ \______/ |_______/ |__/  |__/|________/       \______/    |__/       |__/    |________/|________/ \______/
*******************************************************************************************************************************/
html
{
	margin: 0;
	padding: 0;
	width: 100%;
}

body
{
	margin: 0;
	padding: 0 !important;
	width: 100%;
	font-family: lato, sans-serif;
	font-size: 16px;
	background-color: transparent !important;
}

.container img:not(.img-non-responsive),
.container-fluid img:not(.img-non-responsive)
{
	display: inline-block;
	max-width: 100%;
	height: auto !important;
	border: none;
}

a:link,
a:visited,
a:active
{
	color: #000000;
	text-decoration: underline;
}

a:hover
{
	color: #004F3C;
}

a:focus
{
	outline-offset: 2px;
}

input:focus,
textarea:focus,
select:focus
{
	outline: 1px solid #004F3C;
}

input[type="submit"]
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: outfit, sans-serif;
	font-size: 17px;
	font-weight: 700;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #66A234;
	padding: 14px 27px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;

	/*iPad Overrides*/
	border: none;
	-webkit-appearance: none;
}

input[type="submit"]:hover
{
	background-color: #74b83c;
}

input[type="submit"]:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

input[type="text"],
input[type="password"],
select,
option,
textarea
{
	font-size: 16px;
}

hr
{
	height: 1px;
	background-color: #d7d7d7;
	border: 0;
}

.button-small,
.button-small:link,
.button-small:active,
.button-small:visited,
.button-small:hover
{
	font-size: 14px !important;
	padding: 3px 8px !important;
}

div.container-max-width
{
	max-width: 1200px;
}

div.container-max-width-extended
{
	max-width: 1440px;
}

.embeddedContent[data-resizetype="responsive"],
.rem-responsive-16x9-video
{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.embeddedContent[data-resizetype="responsive"] iframe,
.rem-responsive-16x9-video iframe,
.rem-responsive-16x9-video object,
.rem-responsive-16x9-video embed
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Uncomment for custom bullets */
/*
.container ul
{
	padding-left: 20px;
}

.container ul li
{
	position: relative;
	list-style: none;
}

.container ul li::before
{
	content: '\2022';
	position: absolute;
    display: block;
    left: -20px;
    color: #477782;
    font-size: 14pt;
    top: 0;
} */

.vertical-padding-large
{
	padding-top: 80px;
	padding-bottom: 80px;
}

.vertical-padding-medium
{
	padding-top: 60px;
	padding-bottom: 60px;
}

.vertical-padding-small
{
	padding-top: 30px;
	padding-bottom: 30px;
}

@media screen and (max-width:992px)
{
	.vertical-padding-large
	{
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.vertical-padding-medium
	{
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* col-lg and below */
@media screen and (max-width:1200px)
{
	.mobile-left
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin: 0 auto 0 0 !important;
		text-align: center!important;
	}

	.mobile-centered
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}

	.mobile-right
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin: 0 0 0 auto !important;
		text-align: center !important;
	}

	.mobile-left-flex
	{
		float: none !important;
		clear: both !important;
		display: flex !important;
		margin: 0 auto 0 0 !important;
		text-align: center !important;
	}

	.mobile-centered-flex
	{
		float: none !important;
		clear: both;
		display: flex !important;
		margin: 0 auto;
		text-align: center;
	}

	.mobile-right-flex
	{
		float: none !important;
		clear: both;
		display: flex !important;
		margin: 0 0 0 auto;
		text-align: center;
	}
}

@media screen and (min-width: 1401px)
{
	.hide-on-desktop
	{
		display: none !important;
	}

	#header-mobile-only
	{
		display: none;
	}

    #desktop_search_button
	{
		display: flex;
        align-items: center;
		font-family: font_awesome !important;
		text-decoration: none;
		font-size: 20pt;
		color: #8FC24D;
	}

	#desktop_search_button span
	{
		color: #2F2E2B;
        font-family: outfit, sans-serif;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
		margin-left: 10px;
	}

	#desktop_search_button:link,
	#desktop_search_button:visited
	{
		transition: all 200ms;
	}

	#desktop_search_button:active
	{
		transform: 	scale(0.85);
	}

	#desktop_search_button:hover
	{
		color: #004F3C !important
	}

	#search_form
	{
		position: absolute;
		right: 0;
        top: 40px;
	    z-index: 9999;
	}

	#search_form #search_field
	{
		width: 0;
		height: 100%;
		opacity: 0;
		padding: 8px 0;
		border: 0 solid #cccccc;
		border-radius: 3px;
		outline: none;
		background-color: #ffffff;
        border-radius: 3px;
        font-size: 12pt;
        color: #5a5a5a;
		box-shadow: 0 0 5px rgba(0,0,0,0.5);
        transition: all 200ms;
	}

	#search_form #search_field.open
	{
		width: 300px;
		opacity: 1;
		padding: 8px 15px;
		border: 1px solid #cccccc;
	}

	#search_form #search_field.closed
	{
		width: 0;
		opacity: 0;
		padding: 8px 0;
		border: 0 solid #cccccc;
	}

	#search_form #search_field:focus
	{
		background-color: #ffffff;
	}

    #search_form #search_field:hover
    {
        background-color: #f4f4f4;
    }
}

@media screen and (max-width: 1400px)
{
	.hide-on-mobile
	{
		display: none !important;
	}

	#block_output_container
	{		
		padding: 0;
		margin-top: 60px;
	}


	div#header-mobile-only #mobile-header-logo
	{
		display: inline-block;
		margin-left: 15px;
		margin-top: 7px;
	}

	div#header-mobile-only
	{
		display: block;
	    position: fixed;
	    top: 0;
	    height: 60px;
	    width: 100%;
	    background-color: rgba(255,255,255,1);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	    box-shadow: 0 -2px 15px #000000;
	    z-index: 10000;
	}

	div#header-mobile-only::after
	{
	    clear: both;
	    content: "\00a0";
	    display: block;
	    height: 0;
	    font: 0px/0 serif;
	    overflow: hidden;
	}

	#header-mobile-only .cart-total
	{
		position: absolute;
		top: -9px;
		right: -6px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background-color: #000000;
		font-family: "lato";
		font-weight: normal;
		font-size: 10pt;
		color: #ffffff;
	}

	#header-mobile-only .cart-total.updated
	{
		animation-name: pulse-size;
		animation-duration: 1000ms;
		animation-iteration-count: 1;
	}

   	#mobile_search_button
	{
		position: absolute;
		top: 18px;
		right: 65px;
		font-family: font_awesome;
		font-size: 24px;
		text-decoration: none;
		color: #8FC24D;
		border: none;
		background-color: transparent;
	}

    #search_form
    {
        position: fixed;
        top: 65px;
        left: 15px;
		height: 0;
        z-index: 999;
    }

    #search_form #search_field
    {
       	position: relative;
       	top: -65px;
       	height: 0;
		width: calc(100vw - 30px);
		opacity: 0;
		padding: 0 15px;
		border: 0 solid #cccccc;
		border-radius: 3px;
		outline: none;
		background-color: #ffffff;
		font-size: 12pt;
		box-shadow: 0 0 5px rgba(0,0,0,0.5);
		transition: all 200ms;
    }

    #search_form #search_field.open
	{
		transform: translateY(65px);
		height: 40px;
		opacity: 1;
		padding: 3px 15px;
		border: 1px solid #cccccc;
	}

	#search_form #search_field.closed
	{
		width: calc(100vw - 30px);
		opacity: 0;
		padding: 0 15px;
		border: 0 solid #cccccc;
	}

    #search_form #search_field:focus
    {
        background-color: #ffffff;
    }
}



/* Lightbox Styles */
.sl-overlay
{
	background: #000000 !important;
	opacity: 0.8 !important;
}

.sl-wrapper .sl-close
{
	font-size: 28pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-counter
{
	font-size: 16pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-navigation button.sl-prev,
.sl-wrapper .sl-navigation button.sl-next
{
	font-size: 30pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-image .sl-caption
{
	font-size: 16pt !important;
}

.sl-wrapper .sl-image .description
{
	font-size: 12pt !important;
}

.sl-wrapper .sl-image .lightbox-link
{
	margin-top: 10px !important;
}

.sl-wrapper .sl-image a:link,
.sl-wrapper .sl-image a:active,
.sl-wrapper .sl-image a:visited
{
	font-size: 12pt !important;
}

@media screen and (max-width:1200px)
{
	.sl-wrapper .sl-close
	{
		right: 20px !important;
    	top: 80px !important;
	}
}

.background-image-wrapper
{
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	background-size: cover;
}

.background-image-wrapper.forced-white-text
{
	background-color: #000000;
}

.forced-white-text *
{
	color: #ffffff !important;
}

/**********************************************************
 /$$   /$$ /$$$$$$$$  /$$$$$$  /$$$$$$$  /$$$$$$$$ /$$$$$$$
| $$  | $$| $$_____/ /$$__  $$| $$__  $$| $$_____/| $$__  $$
| $$  | $$| $$      | $$  \ $$| $$  \ $$| $$      | $$  \ $$
| $$$$$$$$| $$$$$   | $$$$$$$$| $$  | $$| $$$$$   | $$$$$$$/
| $$__  $$| $$__/   | $$__  $$| $$  | $$| $$__/   | $$__  $$
| $$  | $$| $$      | $$  | $$| $$  | $$| $$      | $$  \ $$
| $$  | $$| $$$$$$$$| $$  | $$| $$$$$$$/| $$$$$$$$| $$  | $$
|__/  |__/|________/|__/  |__/|_______/ |________/|__/  |__/
***********************************************************/
@media screen and (max-width: 1400px)
{
	#header-desktop #menu-builder-header-nav
	{
		position: fixed;
		top: 60px;
		z-index: 1500;
		left: 0;
		width: 100%;
		max-height: calc(100% - 60px);
		box-shadow: -1px -2px 20px 0px rgba(0,0,0,0.5);
		overflow-y: auto;
		background-color: rgba(255,255,255,0.9);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

@media screen and (min-width: 1401px)
{
	.green-outer-header-wrapper
	{
		width: 100%;
		max-width: 2000px;
		margin: 0 auto;
		background-color: #66A234;
		padding: 8px 0;
	}
	
	.green-outer-header-wrapper .header-inner-wrapper
	{	
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: calc(100% - 30px);
		margin: 0 auto;
	}

	.green-outer-header-wrapper .header-inner-wrapper button,
	.green-outer-header-wrapper .header-inner-wrapper button img
	{
		margin: 0 !important;
	}

	#greenHeaderCollapse
	{
		width: 100%;
		width: calc(100% - 60px);	
	}

	.green-header-wrapper
	{
			
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.green-header-wrapper .bell-icon-container
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-start;		
	}

	.green-header-wrapper .bell-icon-container span,
	.header-hours-container,
	.header-contact-container,
	.header-contact-container a
	{
		font-family: lato, sans-serif;
		font-weight: bold;
		font-size: 15px;
		color: #ffffff;
	}

	.header-contact-container
	{
		margin-right: 15px;
	}

	.cke_editable .green-header-wrapper .bell-icon-container span,
	.cke_editable .header-hours-container,
	.cke_editable .header-contact-container,
	.cke_editable .header-contact-container a
	{
		color: #000000;
	}

	.header-contact-container a
	{
		text-decoration: none;
	}

	.header-contact-container
	{
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	#header-desktop
	{
		width: 100%;
		max-width: 2000px;
		margin: 0 auto;
		background-image: url('/images/wood-header-bg.webp');
		background-size: cover;
	}

	#header-desktop > div:first-of-type
	{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		width: calc(100% - 100px);
		max-width: 1600px;
		margin: 0 auto;
		padding: 30px 0;
	}

	.header-top
	{
		display: flex;
		align-items: center;
		justify-content: flex-end;
		margin-bottom: 100px;
	}

	.header-top .search-wrapper
	{
		position: relative;
		display: flex;
		align-items: center;
		color: #2F2E2B;
		font-family: outfit, sans-serif;
		font-size: 17px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-right: 30px;
	}

	.header-top .search-wrapper a	
	{
		margin-right: 10px;
	}

	.header-login-wrapper
	{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.header-login-wrapper .header_account
	{
		position: relative;
		display: flex;
		align-items: center;
		color: #2F2E2B;
		font-family: outfit, sans-serif;
		font-size: 17px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}

	.header-login-wrapper .header_account:active
	{
		transform: 	scale(0.85);
	}


	.header-login-wrapper .header_account::before
	{
		content: url('/images/account-icon.svg');
		position: relative;
		display: block;
		margin-right: 10px;
	}
	

	.header-login-wrapper .header_logout
	{
		position: relative;
		display: flex;
		align-items: center;
		color: #2F2E2B;
		font-family: outfit, sans-serif;
		font-size: 17px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-left: 30px;
	}

	.header-login-wrapper .header_logout::before
	{		
		content: "\f08b";
		position: relative;
		display: block;
		margin-right: 10px;
		font-family: font_awesome;
		font-size: 20px;
		color: #8FC24D;
	}

	.cart-total
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 30px;
		margin-left: 30px;
	}

	.cart-total:hover
	{
		text-decoration: none;
	}

	.cart-total::after
	{
		content: url('/images/shopping-cart.svg');
		position: relative;
		display: block;	
		height: 30px;
		width: 30px;
		z-index: 10;
		
	}

	.cart-total span
	{
		position: absolute;
		top: 0;
		right: -8px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		width: 17px;
		height: 17px;
		line-height: 17px;
		border-radius: 50%;
		background-color: #97D92F;
		font-family: "lato";
		font-weight: normal;
		font-size: 10pt;
		color: #000000;
		transform-origin: center;
		z-index: 10;
	}

	.header-login-wrapper a
	{
		text-decoration: none !important;
	}

	#header-desktop #menu-builder-header-nav
	{
		position: relative;
		display: flex;
		align-items: center;
	}

	#block_output_container
	{
		padding: 0 50px !important;
	}

}

	@media screen and (max-width: 1600px)
	{

		.green-outer-header-wrapper 
		{			
			padding: 0;
		}

		.header-inner-wrapper button
		{
			margin-bottom: 0 !important;
		}


		.green-header-wrapper 
		{
			margin: 0 auto;
			display: flex;
			align-items: center;
			justify-content: space-between;
			flex-flow: column;
			padding-top: 5px;
			padding-bottom: 5px;
    	}
		
	}


/**********************************************************
 /$$$$$$$$ /$$$$$$   /$$$$$$  /$$$$$$$$ /$$$$$$$$ /$$$$$$$
| $$_____//$$__  $$ /$$__  $$|__  $$__/| $$_____/| $$__  $$
| $$     | $$  \ $$| $$  \ $$   | $$   | $$      | $$  \ $$
| $$$$$  | $$  | $$| $$  | $$   | $$   | $$$$$   | $$$$$$$/
| $$__/  | $$  | $$| $$  | $$   | $$   | $$__/   | $$__  $$
| $$     | $$  | $$| $$  | $$   | $$   | $$      | $$  \ $$
| $$     |  $$$$$$/|  $$$$$$/   | $$   | $$$$$$$$| $$  | $$
|__/      \______/  \______/    |__/   |________/|__/  |__/
**********************************************************/
body > footer
{
	
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
}

@media screen and (max-width: 1200px)
{
	body > footer
	{
		text-align: center;
		padding: 0;
	}	
}

.footer-wrapper
{
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #004F3C;
	max-width: 2000px;
	margin: 0 auto;
}

.footer-contact-wrapper
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-flow: column;
}

@media screen and (max-width: 1200px)
{
	.footer-contact-wrapper
	{
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}	
}

.footer-contact-wrapper .footer-contact-information
{
	display: flex;
	flex-flow: column;
}

.footer-contact-wrapper .footer-contact-information .footer-address
{
	display: block;
	line-height: 25px;
}

.footer-contact-wrapper .footer-contact-information .footer-address span
{
	display: block;
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
}

.footer-contact-wrapper .footer-contact-information .footer-address a
{
	display: block;
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
	text-decoration: none;
}

.footer-contact-wrapper .footer-contact-information .footer-phone
{
	display: flex;
	justify-content: flex-start;
	margin-top: 30px;
	margin-bottom: 10px
}

@media screen and (max-width: 1200px)
{
	.footer-contact-wrapper .footer-contact-information .footer-phone
	{
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}	
}

.footer-contact-wrapper .footer-contact-information .footer-phone span
{
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: bold;
	margin-right: 5px;
}

.footer-contact-wrapper .footer-contact-information .footer-phone a
{
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
	text-decoration: none;
}

.footer-contact-wrapper .footer-contact-information .footer-email
{
	display: flex;
	justify-content: flex-start;
}

@media screen and (max-width: 1200px)
{
	.footer-contact-wrapper .footer-contact-information .footer-email
	{
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}	
}

.footer-contact-wrapper .footer-contact-information .footer-email span
{
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: bold;
	margin-right: 5px;
}

.footer-contact-wrapper .footer-contact-information .footer-email a
{
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
}

.hours-of-operation-container
{
	display: flex;
	flex-flow: column;
	margin-top: 15px;
}

.hours-of-operation-container span:first-of-type
{
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
	line-height: 25px;
}

.hours-of-operation-container .hours-container
{
	display: flex;
	flex-flow: column;
	margin-top: 10px;
}

.hours-of-operation-container .hours-container span
{
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
	line-height: 25px;
}


body > footer .copyright-container,
body > footer .copyright-container a:link,
body > footer .copyright-container a:active,
body > footer .copyright-container a:visited
{
	font-family: lato, sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: #ffffff;
	transition: color 150ms;
}

body > footer .copyright-container a:link,
body > footer .copyright-container a:active,
body > footer .copyright-container a:visited
{
	text-decoration: underline;
}

body > footer .copyright-container a:hover
{
	text-decoration: none;
}

.footer-lower-container
{
	margin-top: 80px;
}

.footer-social-wrapper
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

@media screen and (max-width: 1200px)
{
	.footer-social-wrapper
	{
		justify-content: center;
		margin-bottom: 30px;
	}	
}

.footer-social-wrapper .footer-social-text
{
	font-family: lato, sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: 700;
	line-height: 25px;
}
/*********************************************************************************************
 /$$      /$$ /$$      /$$        /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
| $$  /$ | $$| $$  /$ | $$       /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$ /$$$| $$| $$ /$$$| $$      | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$/$$ $$ $$| $$/$$ $$ $$      |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$$$_  $$$$| $$$$_  $$$$       \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$$/ \  $$$| $$$/ \  $$$       /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
| $$/   \  $$| $$/   \  $$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
|__/     \__/|__/     \__/       \______/    |__/       |__/    |________/|________/ \______/
*********************************************************************************************/
p,
.ww_p
{
	font-family: lato, sans-serif;
	font-size: 17px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

.ww_p_double_space
{
   	font-family: lato, sans-serif;
	font-size: 17px;
	font-weight: normal;
	color: #000000;
	line-height: 2;
	margin: 0;
	padding: 0;
}

.ww_p_alternate
{
	font-family: lato, sans-serif;
	font-size: 20px;
	line-height: 37px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

.ww_p_call_out
{
	font-family: lato, sans-serif;
	font-size: 24px;
	line-height: 37px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

h1,
h1.ww_h1
{
	font-family: outfit, sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2;
	color: #66A234;
	margin: 0 0 5px 0 !important;
	padding: 0;
}

h2,
h2.ww_h2
{
	font-family: outfit, sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #004F3C;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

h2 strong,
h2.ww_h2 strong
{
	color: #66A234;
}

h3,
h3.ww_h3
{
	font-family: outfit, sans-serif;
	font-size: 33px;
	font-weight: 700;
	color: #004F3C;
	margin: 0;
	padding: 0;
}

h4,
h4.ww_h4
{
	font-family: outfit, sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #004F3C;
	margin: 0;
	padding: 0;
}

h5,
h5.ww_h5
{
	font-family: outfit, sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #004F3C;
	margin: 0;
	padding: 0;
}

h6,
h6.ww_h6
{
	font-family: outfit, sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #004F3C;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 1200px)
{
	h1.ww_h1
	{
		font-size: 32px;
	}

	h2.ww_h2
	{
		font-size: 30px;
	}

	h3.ww_h3
	{
		font-size: 26px;
	}

	h4.ww_h4
	{
		font-size: 24px;
	}

	h5.ww_h5
	{
		font-size: 22px;
	}

	h6.ww_h6
	{
		font-size: 20px;
	}
}

.ww_emphasis
{
	font-weight: bold;
	font-style: normal;
	color: #66A234;
}

.ww_strong_emphasis
{
	font-weight: bold;
	font-style: italic;
	color: #66A234;
}

.ww_action_button1
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: outfit, sans-serif;
	font-size: 17px;
	font-weight: 700;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #66A234;
	padding: 14px 27px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 1200px)
{
	.ww_action_button1
	{
		margin-bottom: 15px;
	}
}

a .ww_action_button1,
a .ww_action_button1:link,
a .ww_action_button1:visited,
.ww_action_button1 a:link,
.ww_action_button1 a:visited
{
	color: #ffffff;
	text-decoration: none !important;
}

.ww_action_button1:hover
{
	background-color: #74b83c;
}

.ww_action_button1:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_action_button2
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: outfit, sans-serif;
	font-size: 17px;
	font-weight: 700;
	font-style: normal !important;
	color: #7CC243 !important;
	text-decoration: none !important;
	background-color: #ffffff;
	padding: 14px 19px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 1200px)
{
	.ww_action_button2
	{
		margin-bottom: 15px;
	}
}

a .ww_action_button2,
a .ww_action_button2:link,
a .ww_action_button2:visited,
.ww_action_button2 a:link,
.ww_action_button2 a:visited
{
	color: #7CC243;
	text-decoration: none !important;
}

.ww_action_button2:hover
{
	background-color: #8BDA24;
	color: #ffffff !important;
}

.ww_action_button2:hover a	
{
	color: #ffffff !important;
}

.ww_action_button2:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_action_button3
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: outfit, sans-serif;
	font-size: 17px;
	font-weight: 700;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #B25E2A;
	padding: 14px 17px;
	border: 1px solid #ffffff;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 1200px)
{
	.ww_action_button3
	{
		margin-bottom: 15px;
	}
}

a .ww_action_button3,
a .ww_action_button3:link,
a .ww_action_button3:visited,
.ww_action_button3 a:link,
.ww_action_button3 a:visited
{
	color: #ffffff;
	text-decoration: none !important;
}

.ww_action_button3:hover
{
	background-color: #959597;
}

.ww_action_button3:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_editor_body
{
	background-color: #FFFFFF;
}


/*********************************************************************
  /$$$$$$   /$$$$$$  /$$   /$$ /$$$$$$$$ /$$$$$$$$ /$$   /$$ /$$$$$$$$
 /$$__  $$ /$$__  $$| $$$ | $$|__  $$__/| $$_____/| $$$ | $$|__  $$__/
| $$  \__/| $$  \ $$| $$$$| $$   | $$   | $$      | $$$$| $$   | $$
| $$      | $$  | $$| $$ $$ $$   | $$   | $$$$$   | $$ $$ $$   | $$
| $$      | $$  | $$| $$  $$$$   | $$   | $$__/   | $$  $$$$   | $$
| $$    $$| $$  | $$| $$\  $$$   | $$   | $$      | $$\  $$$   | $$
|  $$$$$$/|  $$$$$$/| $$ \  $$   | $$   | $$$$$$$$| $$ \  $$   | $$
 \______/  \______/ |__/  \__/   |__/   |________/|__/  \__/   |__/
*********************************************************************/
.callout-container-wrapper
{
	display: flex;
	justify-content: space-between;
	background-color: #ffffff;
}

@media screen and (max-width: 1200px)
{
	.callout-container-wrapper
	{	
		flex-flow: column;
	}	
}

.white-container
{
	background-color: #ffffff;
	max-width: 1470px;
	padding: 15px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px)
{
	.white-container
	{
		padding: 15px;
		max-width: 500px;
		margin: 0 auto;
	}	
}

.banner-overlap-container
{
    margin-top: -330px;
    position: relative;
    z-index: 100;
}

@media screen and (max-width: 1200px)
{
	.banner-overlap-container
	{
		margin-top: 0;
	}	
}

.cke_editable .banner-overlap-container
{
	margin-top: 0;
}

.callout-container.light-green
{
	background: #66A234;
}

.callout-container.light-green:hover
{
	background: #76bd3c;
}

.callout-container.dark-green
{
	background: #004F3C;
}

.callout-container.dark-green:hover
{
	background: #00614a;
}

.callout-container.orange
{
	background: #B25E2A;
}

.callout-container.orange:hover
{
	background: #d16f33;
}

.callout-container
{
	display: flex;
	justify-content: space-between;
	background-color: #ffffff;
	padding: 40px 70px;
	width: 100%;
	text-decoration: none;
}

@media screen and (max-width: 1200px)
{
	.callout-container
	{
		justify-content: center;
		margin: 15px 0;
	}	
}

.callout-container .callout-anchor
{
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

@media screen and (max-width: 1200px)
{
	.callout-container .callout-anchor
	{
		flex-flow: column;
		text-align: center;
	}	
}

.callout-container .callout-anchor .callout-image
{
	margin-right: 15px;
}

@media screen and (max-width: 1200px)
{
	.callout-container .callout-anchor .callout-image
	{
		margin-right: 0;
		margin-bottom: 10px;
	}
}

.callout-container .callout-anchor .callout-description
{
	display: flex;
    flex-flow: column;
}

.callout-container .callout-anchor .callout-description .callout-greater
{
	color: #FFF;
	font-family: outfit, sans-serif;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.callout-container .callout-anchor .callout-description .callout-lesser
{
	color: #FFF;
	font-family: lato, sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.stacked-image-container
{
	position: relative;	
}

@media screen and (max-width: 1200px)
{
	.stacked-image-container
	{
		margin: 100px auto;
	}	
}


.top-image-container
{
	position: absolute;
	left: -190px;
	top: -70px;
}

@media screen and (max-width: 1200px)
{
	.top-image-container
	{	
		position: relative;	
		top: 0;
		left: 0;		
		text-align: center;
		margin-bottom: 30px;

	}	

	.top-image-container img
	{		
		display: inline-block;
		max-width: 100%;
		height: auto !important;
		border: none;
	}	
}

.bottom-image-container
{
	position: relative;
}

@media screen and (max-width: 1200px)
{
	.bottom-image-container
	{
		text-align: center;
	}	
}


.top-image-container img
{
	position: relative;
	z-index: 4;
}

.bottom-image-container img
{
	position: relative;
	z-index: 2;
}

.top-image-container::before
{
	content: '';
    position: absolute;
    width: 322px;
    height: 340px;
    flex-shrink: 0;
    z-index: 3;
    right: -10px;
    bottom: -10px;
}


@media screen and (max-width: 1200px)
{
	.top-image-container::before
	{
		display: none;
	}	
}


.bottom-image-container::before
{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    z-index: 1;
    right: -10px;
    bottom: -10px;
}


@media screen and (max-width: 1200px)
{
	.bottom-image-container::before
	{
		display: none;
		
	}	
}

.top-image-container.brown-drop-background::before,
.bottom-image-container.brown-drop-background::before
{
	background-color: #B25E2A;
}

@media screen and (max-width: 1200px)
{
	.top-image-container.brown-drop-background,
	.bottom-image-container.brown-drop-background
	{
		padding: 15px;
		background-color: #B25E2A;
	}
}

.top-image-container.light-green-drop-background::before,
.bottom-image-container.light-green-drop-background::before
{
	background-color: #7CC243;
}

@media screen and (max-width: 1200px)
{
	.top-image-container.light-green-drop-background,
	.bottom-image-container.light-green-drop-background
	{
		padding: 15px;
		background-color: #7CC243;
	}
}

.seasonal-overlap-container
{
	margin-top: -25px;
}

@media screen and (max-width: 1200px)
{
	.seasonal-overlap-container
	{
		margin-top: 0;
	}	
}



@media screen and (max-width: 1200px)
{	
	.white-container.seasonal-overlap-container
	{
		width: 100%;
		max-width: 100%;
	}
}

.seasonal-overlap-container .seasonal-container
{

	background-image: url('/images/seasonal-goodness-bg.webp');
	background-size: cover;
	padding: 60px 0;
}

.seasonal-overlap-container .seasonal-container .seasonal-inner-container
{
    max-width: 520px;    
    padding-left: 118px;
	text-align: center;
}

@media screen and (max-width: 1200px)
{
	.seasonal-overlap-container .seasonal-container .seasonal-inner-container
	{
		padding: 0 20px;
		max-width: 100%;
		margin: 0 auto;
		text-align: center;
	}	
}

.seasonal-overlap-container .seasonal-container .seasonal-inner-container h2
{
    line-height: 1;
}

.coupon-container
{
	padding: 80px;
	height: 614px;
}

@media screen and (max-width: 1200px)
{
	.coupon-container
	{
		padding: 40px 20px;
		height: auto;
	}	
}

.coupon-container.veg-container
{
	background-image: url('/images/why-phennings-coupon-bg.webp');
	background-size: cover;
}

.coupon-container.fruit-container
{
	background-image: url('/images/fresh-inspiration-coupon-bg.webp');
	background-size: cover;
}

.fruit-wrapping-container
{
	position: relative;
	height: 100%;
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	display: block;
}

.fruit-wrapping-container.right-grapes::before
{
	content: '';
	position: absolute;
	width: 286px;
	height: 500px;
	flex-shrink: 0;
	z-index: 3;
	right: 0;
	bottom: -50px;
	background-image: url('/images/right-grapes.webp');
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1600px)
{
	.fruit-wrapping-container.right-grapes::before
	{
		display: none;
	}	
}

.fruit-wrapping-container.left-mandarin::before
{
	content: '';
	position: absolute;
	width: 286px;
	height: 290px;
	flex-shrink: 0;
	z-index: 3;
	left: 0;
	bottom: 0;
	background-image: url('/images/left-mandarin.webp');
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1600px)
{
	.fruit-wrapping-container.left-mandarin::before
	{
		display: none;
	}	
}

.fruit-wrapping-container.left-broccoli-tomato::before
{
	content: '';
	position: absolute;
	width: 404px;
	height: 725px;
	flex-shrink: 0;
	z-index: 3;
	left: 0;
	bottom: -360px;
	background-image: url('/images/left-broccoli-tomato.webp');
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1600px)
{
	.fruit-wrapping-container.left-broccoli-tomato::before
	{
		display: none;
	}	
}

.green-callout
{
	font-family: outfit, sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #004F3C;
	line-height: 44px;
}

.local-grower-container .local-grower-description
{
	font-family: lato, sans-serif;	
	font-size: 20px;
	color: #000000;
	line-height: 37px;
	text-align: center;
}