/*
	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: 'rubik';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Rubik-Regular.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Rubik-Italic.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik';
	font-style: italic;
	font-weight: bold;
	src: url('/fonts/Rubik-BoldItalic.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik';
	font-style: normal;
	font-weight: bold;
	src: url('/fonts/Rubik-Bold.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik_medium';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Rubik-Medium.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik_medium';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Rubik-MediumItalic.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik_semibold';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Rubik-SemiBold.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik_semibold';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Rubik-SemiBoldItalic.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik_black';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Rubik-Black.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'rubik_black';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Rubik-BlackItalic.woff2') format('woff2');
	font-display: block;
}


/******************************************************************************************************************************
  /$$$$$$  /$$        /$$$$$$  /$$$$$$$   /$$$$$$  /$$              /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
 /$$__  $$| $$       /$$__  $$| $$__  $$ /$$__  $$| $$             /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$  \__/| $$      | $$  \ $$| $$  \ $$| $$  \ $$| $$            | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$ /$$$$| $$      | $$  | $$| $$$$$$$ | $$$$$$$$| $$            |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$|_  $$| $$      | $$  | $$| $$__  $$| $$__  $$| $$             \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$  \ $$| $$      | $$  | $$| $$  \ $$| $$  | $$| $$             /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
|  $$$$$$/| $$$$$$$$|  $$$$$$/| $$$$$$$/| $$  | $$| $$$$$$$$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
 \______/ |________/ \______/ |_______/ |__/  |__/|________/       \______/    |__/       |__/    |________/|________/ \______/
*******************************************************************************************************************************/
html
{
	margin: 0;
	padding: 0;
	width: 100%;
}

body
{
	margin: 0;
	padding: 0 !important;
	width: 100%;
	font-family: rubik, 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
{
	font-family: rubik_medium, sans-serif;
	font-weight: normal;
	color: #2E2E2E;
}

a:hover
{
	color: #E93001;
}

a:focus
{
	outline-offset: 2px;
}

input:focus,
textarea:focus,
select:focus
{
	outline: 1px solid #2684D8;
}

input[type="submit"]
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: rubik_medium, sans-serif;
	font-size: 22px;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #00589B;
	padding: 18px 23px;
	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: #007ede;
}

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: #4d4d4d;
	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;
}

.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-xl
{
	padding-top: 90px;
	padding-bottom: 90px;
}

.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-xl
	{
		padding-top: 45px;
		padding-bottom: 45px;
	}

	.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: 1201px)
{
	.hide-on-desktop
	{
		display: none !important;
	}

	#header-mobile-only
	{
		display: none;
	}

	.search-wrapping-container
	{
		background-color: #00589B;
        position: relative;
        display: flex;
        height: 80px;
        width: 100%;
        max-width: 50px;
        align-items: center;
        justify-content: center;
	}

    #desktop_search_button
	{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		width: 100%;
		background: transparent;
		border: none;
		font-family: font_awesome !important;
		text-decoration: none;
		font-size: 16px;
		color: #ffffff;
	}

	#desktop_search_button:link,
	#desktop_search_button:visited
	{
		transition: all 200ms;
	}

	#desktop_search_button:active
	{
		transform: 	scale(0.85);
	}

	#desktop_search_button:hover
	{
		color: #E93001 !important
	}

	#search_form
	{
		position: absolute;
		right: 10px;
        bottom: -20px;
	    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: 1200px)
{
	.hide-on-mobile
	{
		display: none !important;
	}

	#block_output_container
	{
		margin-top: 60px;
	}

	div#header-mobile-only #mobile-header-logo
	{
		display: inline-block;
		margin-left: 15px;
		margin-top: 7px;
	}

	div#header-mobile-only
	{
		display: flex;
		justify-content: space-between;
	    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;
	}

	/* div#header-mobile-only .mobile-right-container
	{
		position: absolute;
        top: 18px;
        right: 65px;
        font-family: font_awesome;
        font-size: 24px;
        text-decoration: none;
	} */

	div#header-mobile-only .header-cart-link
	{
		position: fixed;
		display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        right: 120px;
        top: 25px;
	}

	div#header-mobile-only .header-cart-link span
	{
		display: flex;
		justify-content: center;
		align-items: center;
		font-family: rubik, sans-serif;
		font-weight: normal !important;
		font-size: 11px;
		color: #2E2E2E;
		text-decoration: none;
	}


	div#header-mobile-only .header-cart-link:hover span
	{
		color: #E93001;
	}

	div#header-mobile-only .shopping-icon-container
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 5px;
	}

	div#header-mobile-only .shopping-icon-container::after
	{
		content: '\f291';
		position: relative;
        display: block;
        font-family: font_awesome;
        font-weight: normal !important;
        font-size: 14px;
        color: #828282;
	}

	div#header-mobile-only .header-cart-link:hover .shopping-icon-container::after
	{
		color: #E93001;
	}

	div#header-mobile-only .cart-total
	{
		position: absolute;
        top: -9px;
        right: -6px;
        background-color: #E93001;
        color: #ffffff;
        font-family: rubik, sans-serif;
        font-size: 9px;
        border-radius: 30px;
        height: 15px;
        width: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
		z-index: 10;
	}

   	#mobile_search_button:link,
	#mobile_search_button:active,
	#mobile_search_button:visited,
	#mobile_search_button:hover
	{
		position: absolute;
		top: 18px;
		right: 65px;
		font-family: font_awesome;
		font-size: 24px;
		text-decoration: none;
	}

    #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;
}

.forced-white-text *
{
	color: #ffffff !important;
}

.cke_editable .forced-white-text *
{
	color: #2E2E2E !important;
}

/**********************************************************
 /$$   /$$ /$$$$$$$$  /$$$$$$  /$$$$$$$  /$$$$$$$$ /$$$$$$$
| $$  | $$| $$_____/ /$$__  $$| $$__  $$| $$_____/| $$__  $$
| $$  | $$| $$      | $$  \ $$| $$  \ $$| $$      | $$  \ $$
| $$$$$$$$| $$$$$   | $$$$$$$$| $$  | $$| $$$$$   | $$$$$$$/
| $$__  $$| $$__/   | $$__  $$| $$  | $$| $$__/   | $$__  $$
| $$  | $$| $$      | $$  | $$| $$  | $$| $$      | $$  \ $$
| $$  | $$| $$$$$$$$| $$  | $$| $$$$$$$/| $$$$$$$$| $$  | $$
|__/  |__/|________/|__/  |__/|_______/ |________/|__/  |__/
***********************************************************/
@media screen and (max-width: 1200px)
{
	#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: 1201px)
{
	.header-popup-container-wrapper
	{
		display: flex;
		justify-content: flex-end;
		background-color: #696969;
		max-width: 2000px;
		width: 100%;
		margin: 0 auto;
	}

	#header-desktop
	{
		width: 100%;
		max-width: 2000px;
		margin: 0 auto;
		background-color: rgba(255,255,255,0.9);
		box-shadow: -1px -2px 20px 0px rgba(0,0,0,0.5);
	}

	#header-desktop > div:first-of-type
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 2000px;
		margin: 0 auto;
	}

	#header-desktop > div:first-of-type a img
	{
		margin-left: 10px;
	}

	#header-desktop #menu-builder-header-nav
	{
		position: relative;
		display: flex;
		align-items: center;
	}

	.header-right
	{
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.header-login
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: rubik, sans-serif;
		font-size: 11px;
		font-weight: normal !important;
		color: #2E2E2E;
		text-decoration: none;
		width: 120px;
	}

	.header-login::after
	{
		content: '\f007';
		position: relative;
		display: block;
		font-family: font_awesome;
		font-weight: normal !important;
		font-size: 14px;
		color: #828282;
		margin-left: 10px;

	}

	.header-login:hover::after
	{
		color: #E93001;
	}

	.header-cart-link
	{
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		width: 120px;
		margin-right: 24px;
	}

	.header-cart-link span
	{
		display: flex;
		justify-content: center;
		align-items: center;
		font-family: rubik, sans-serif;
		font-weight: normal !important;
		font-size: 11px;
		color: #2E2E2E;
		text-decoration: none;
	}


	.header-cart-link:hover span
	{
		color: #E93001;
	}

	.shopping-icon-container
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 5px;
	}

	.shopping-icon-container::after
	{
		content: '\f291';
		position: relative;
        display: block;
        font-family: font_awesome;
        font-weight: normal !important;
        font-size: 14px;
        color: #828282;
	}

	.header-cart-link:hover .shopping-icon-container::after
	{
		color: #E93001;
	}

	.cart-total
	{
		position: absolute;
        top: -9px;
        right: -6px;
        background-color: #E93001;
        color: #ffffff;
        font-family: rubik, sans-serif;
        font-size: 9px;
        border-radius: 30px;
        height: 15px;
        width: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
		z-index: 10;
	}

}


/**********************************************************
 /$$$$$$$$ /$$$$$$   /$$$$$$  /$$$$$$$$ /$$$$$$$$ /$$$$$$$
| $$_____//$$__  $$ /$$__  $$|__  $$__/| $$_____/| $$__  $$
| $$     | $$  \ $$| $$  \ $$   | $$   | $$      | $$  \ $$
| $$$$$  | $$  | $$| $$  | $$   | $$   | $$$$$   | $$$$$$$/
| $$__/  | $$  | $$| $$  | $$   | $$   | $$__/   | $$__  $$
| $$     | $$  | $$| $$  | $$   | $$   | $$      | $$  \ $$
| $$     |  $$$$$$/|  $$$$$$/   | $$   | $$$$$$$$| $$  | $$
|__/      \______/  \______/    |__/   |________/|__/  |__/
**********************************************************/
.footer-contact-wrapper
{
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
	padding-bottom: 25px;
}

@media screen and (max-width: 768px)
{
	.footer-contact-wrapper
	{
		flex-flow: column wrap;
		align-items: center;
	}
}

.footer-contact-wrapper .footer-shipping,
.footer-contact-wrapper .footer-shipping a,
.footer-contact-wrapper .footer-phone,
.footer-contact-wrapper .footer-phone a,
.footer-contact-wrapper .footer-email,
.footer-contact-wrapper .footer-email a
{
	position: relative;
	font-family: rubik, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
}

.cke_editable .footer-contact-wrapper .footer-shipping,
.cke_editable .footer-contact-wrapper .footer-shipping a,
.cke_editable .footer-contact-wrapper .footer-phone,
.cke_editable .footer-contact-wrapper .footer-phone a,
.cke_editable .footer-contact-wrapper .footer-email,
.cke_editable .footer-contact-wrapper .footer-email a
{
	color: #2E2E2E !important;
}

@media screen and (max-width: 768px)
{
	.footer-contact-wrapper .footer-shipping,
	.footer-contact-wrapper .footer-phone,
	.footer-contact-wrapper .footer-email
	{

		margin-bottom: 15px;
	}

	.footer-contact-wrapper .footer-shipping,
	.footer-contact-wrapper .footer-shipping a
	{
		text-align: center;
	}
}


.footer-contact-wrapper .footer-shipping a::before
{
	content: '\f48b';
	font-family: font_awesome;
	font-size: 13px;
	color: #FBBB00;
	margin-right: 9px;
}

.footer-contact-wrapper .footer-phone::before
{
	content: '\f095';
	font-family: font_awesome;
	font-size: 13px;
	color: #FBBB00;
	margin-right: 9px;
}

.footer-contact-wrapper .footer-email::before
{
	content: '\f0e0';
	font-family: font_awesome;
	font-size: 13px;
	color: #FBBB00;
	margin-right: 9px;
}

body > footer .footer-upper
{
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #202020;
}

@media screen and (max-width: 768px)
{
	body > footer .footer-upper
	{
		padding-top: 40px;
		padding-bottom: 30px;
		text-align: center;
	}
}


.footer-copyright-wrapping-container
{
	background-image: url('/images/footer-background.png');
	padding-top: 15px;
	padding-bottom: 15px;
}


.footer-copyright-wrapping-container .copyright-container,
.footer-copyright-wrapping-container .copyright-container a:link,
.footer-copyright-wrapping-container .copyright-container a:active,
.footer-copyright-wrapping-container .copyright-container a:visited
{
	font-family: rubik, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
	transition: color 150ms;
}

@media screen and (max-width: 991px)
{
	.footer-copyright-wrapping-container .copyright-container
	{
		text-align: center;
	}
}

.footer-copyright-wrapping-container .copyright-container a:hover
{
	color: #E93001;
}


.footer-copyright-wrapping-container .footer-policies-container
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media screen and (max-width: 768px)
{
	.footer-copyright-wrapping-container .footer-policies-container
	{
		flex-flow: column wrap;
		align-items: center;
	}

}

.footer-copyright-wrapping-container .footer-policies-container a
{
	font-family: rubik, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
	transition: color 150ms;
}

.footer-copyright-wrapping-container .footer-policies-container a:first-of-type
{
	margin-right: 30px;
}

.footer-copyright-wrapping-container .footer-policies-container a:hover
{
	color: #E93001;
}

/*********************************************************************************************
 /$$      /$$ /$$      /$$        /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
| $$  /$ | $$| $$  /$ | $$       /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$ /$$$| $$| $$ /$$$| $$      | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$/$$ $$ $$| $$/$$ $$ $$      |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$$$_  $$$$| $$$$_  $$$$       \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$$/ \  $$$| $$$/ \  $$$       /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
| $$/   \  $$| $$/   \  $$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
|__/     \__/|__/     \__/       \______/    |__/       |__/    |________/|________/ \______/
*********************************************************************************************/
p,
.ww_p
{
	font-family: rubik, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

.ww_p_double_space
{
	font-family: rubik, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 2;
	margin: 0;
	padding: 0;
}

.ww_p_alternate
{
	font-family: rubik, sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #2E2E2E;
	margin: 0;
	padding: 0;
}

.ww_p_call_out
{
	font-family: rubik, sans-serif;
	font-size: 22px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	.ww_p_call_out
	{
		font-size: 19px;
	}
}

h1,
h1.ww_h1
{
	font-family: rubik, sans-serif;
	font-size: 40px;
	font-weight: normal;
	line-height: 1.2;
	color: #2E2E2E;
	margin: 0 0 5px 0 !important;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h1,
	h1.ww_h1
	{
		font-size: 32px;
	}
}

h1 strong,
h1.ww_h1 strong
{
	font-family: rubik_medium, sans-serif;
	font-size: 40px;
	font-weight: normal;
	line-height: 1.2;
	color: #00589B;
	margin: 0 0 5px 0 !important;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h1 strong,
	h1.ww_h1 strong
	{
		font-size: 32px;
	}
}

h2,
h2.ww_h2
{
	font-family: rubik, sans-serif;
	font-size: 32px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h2,
	h2.ww_h2
	{
		font-size: 29px;
	}
}

h2 strong,
h2.ww_h2 strong
{
	font-family: rubik_medium, sans-serif;
	font-size: 32px;
	font-weight: normal;
	color: #00589B;
	margin: 0 0 5px 0 !important;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h2 strong,
	h2.ww_h2 strong
	{
		font-size: 29px;
	}
}

h3,
h3.ww_h3
{
	font-family: rubik, sans-serif;
	font-size: 28px;
	font-weight: normal;
	color: #2E2E2E;
	margin: 0;
	padding: 0;
}


@media screen and (max-width: 991px)
{
	h3,
	h3.ww_h3
	{
		font-size: 26px;
	}
}

h3 strong,
h3.ww_h3 strong
{
	font-family: rubik_medium, sans-serif;
	font-size: 28px;
	font-weight: normal;
	color: #E93001;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h3 strong,
	h3.ww_h3 strong
	{
		font-size: 24px;
	}

}

h4,
h4.ww_h4
{
	font-family: rubik_medium, sans-serif;
	font-size: 24px;
	font-weight: normal;
	color: #2E2E2E;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h4,
	h4.ww_h4
	{
		font-size: 22px;
	}
}

h5,
h5.ww_h5
{
	font-family: rubik_medium, sans-serif;
	font-size: 23px;
	font-weight: normal;
	color: #2E2E2E;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h5,
	h5.ww_h5
	{
		font-size: 21px;
	}
}

h6,
h6.ww_h6
{
	font-family: rubik_medium, sans-serif;
	font-size: 22px;
	font-weight: normal;
	color: #2E2E2E;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h6,
	h6.ww_h6
	{
		font-size: 20px;
	}
}

.ww_emphasis
{
	font-family: rubik_medium, sans-serif;
	color: #E93001;
	font-weight: normal;
	font-style: normal;
}

.ww_strong_emphasis
{
	font-family: rubik_medium, sans-serif;
	color: #00589B;
	font-weight: normal;
	font-style: normal;
}

.ww_action_button1
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: rubik_medium, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #000000 !important;
	text-decoration: none !important;
	background-color: #FBBB00;
	padding: 18px 23px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

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: #2E2E2E;
	text-decoration: none !important;
}

.ww_action_button1:hover
{
	background-color: #ffc620;
}

.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: rubik_medium, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #00589B;
	padding: 18px 23px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

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: #ffffff;
	text-decoration: none !important;
}

.ww_action_button2:hover
{
	background-color: #007ede;
}

.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: rubik_medium, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #E93001;
	padding: 18px 23px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

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: #ff3400;
}

.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;
}


/*********************************************************************
  /$$$$$$   /$$$$$$  /$$   /$$ /$$$$$$$$ /$$$$$$$$ /$$   /$$ /$$$$$$$$
 /$$__  $$ /$$__  $$| $$$ | $$|__  $$__/| $$_____/| $$$ | $$|__  $$__/
| $$  \__/| $$  \ $$| $$$$| $$   | $$   | $$      | $$$$| $$   | $$
| $$      | $$  | $$| $$ $$ $$   | $$   | $$$$$   | $$ $$ $$   | $$
| $$      | $$  | $$| $$  $$$$   | $$   | $$__/   | $$  $$$$   | $$
| $$    $$| $$  | $$| $$\  $$$   | $$   | $$      | $$\  $$$   | $$
|  $$$$$$/|  $$$$$$/| $$ \  $$   | $$   | $$$$$$$$| $$ \  $$   | $$
 \______/  \______/ |__/  \__/   |__/   |________/|__/  \__/   |__/
*********************************************************************/
/* Pop-up Styles */
/* Popup Styles */
.popup_content_window
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	height: 30px;
    width: 100% !important;
	max-width: 2000px;
	margin: 0 auto;
	background-color: #696969;
}


@media screen and (max-width: 991px)
{
	.popup_content_window
	{
		left: 0;
		top: 20px;
		width: 100%;
		/* height: 100%; */
	}
}

@media screen and (max-width: 500px)
{
	.popup_content_window_mobile
	{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100% !important;
		height: auto;
		margin-top: 0;
    	margin-bottom: 0;
	}

}

.pop_up_content
{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-right: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.pop_up_content .header-phone-container,
.pop_up_content .header-email-container,
.pop_up_content .header-shipping-container
{
	position: relative;
	font-family: rubik, sans-serif;
	font-weight: normal;
	font-size: 13px;
	color: #ffffff !important;
}

.pop_up_content .header-phone-container::before
{
	content: '\f095';
	font-family: font_awesome;
	font-size: 13px;
	color: #FBBB00;
	margin-right: 9px;
}

.pop_up_content .header-email-container::before
{
	content: '\f0e0';
	font-family: font_awesome;
	font-size: 13px;
	color: #FBBB00;
	margin-right: 9px;
}

.pop_up_content .header-shipping-container::before
{
	content: '\f48b';
	font-family: font_awesome;
	font-size: 13px;
	color: #FBBB00;
	margin-right: 9px;
}



.pop_up_content .header-phone-container a,
.pop_up_content .header-email-container a,
.pop_up_content .header-shipping-container a
{
	position: relative;
	font-family: rubik, sans-serif;
	font-weight: normal;
	font-size: 13px;
	color: #ffffff !important;
}


.cke_editable .header-phone-container,
.cke_editable .header-email-container,
.cke_editable .header-shipping-container,
.cke_editable .header-phone-container a,
.cke_editable .header-email-container a,
.cke_editable .header-shipping-container a
{
	color: #000000;
}

.header-phone
{
	margin-right: 30px;
}

.header-phone a:hover,
.header-email a:hover
{
	text-decoration: underline;
}

.pop-up-wrapping-container
{
	display: flex;
    align-items: center;
    justify-content: center;
	padding-top: 20px;
}

@media screen and (max-width: 500px)
{
	.pop-up-wrapping-container
	{
		padding-top: 80px;
		max-width: 90%;
		text-align: center;
		margin: 0 auto;
	}
}

@media screen and (max-width: 500px)
{
	.pop-up-wrapping-container
	{
		display: block;
	}
}

.pop-up-message-container
{
	padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 500px)
{
	.pop-up-message-container
	{
		display: block;
	}
}

.message-container
{
	margin-right: 10px;
}

@media screen and (max-width: 500px)
{
	.message-container
	{
		display: block;
		margin-right: 0;
	}
}

.close_button
{
	color: #ffffff !important;
    float: right;
	font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    padding: 3px;
}

@media screen and (max-width: 500px)
{
	.close_button_mobile
	{
		color: #aaa;
		float: right;
		font-size: 28px;
		font-weight: bold;
		position: absolute;
		right: 20px;
		top: 55px;
		padding: 0;
	}
}

.close_button:hover,
.close_button:focus,
.close_button_mobile:hover,
.close_button_mobile:focus
{
	color: #FBBB00 !important;
	text-decoration: none;
	cursor: pointer;
}

.hide_popup
{
	display: none !important;
}

@media screen and (max-width: 1200px)
{
	.popup_content_window
	{

	}
}
/* Pop-up styles */

.service-container
{
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 768px)
{
	.service-container
	{
		margin: 15px auto;
		align-items: flex-start;
		justify-content: flex-start;
	}
}

.service-container .service-icon img
{
	max-width: 50px;
}

.service-container .service-description
{
	display: flex;
	flex-flow: column;
	justify-content: center;
	text-align: flex-start;
	margin-left: 10px;
}

.service-container .service-description .service-title
{
	font-family: rubik_medium, sans-serif;
	font-size: 27px;
	color: #ffffff;
}

.cke_editable .service-container .service-description .service-title
{
	color: #2E2E2E !important;
}

.service-container .service-description .service-subtitle
{
	font-family: rubik, sans-serif;
	font-size: 16px;
	color: #ffffff;
}

.cke_editable .service-container .service-description .service-subtitle
{
	color: #2E2E2E !important;
}

.service-container .service-description .service-subtitle a
{
	display: block;
	font-family: rubik, sans-serif;
	font-size: 13px;
	color: #ffffff;
	text-decoration: underline;
}

.cke_editable .service-container .service-description .service-subtitle a
{
	color: #2E2E2E !important;
}

.service-container .service-description .service-subtitle a:hover
{
	color: #FE5126;
}

.left-overflow-container img
{
	margin-left: -160px;
}

@media screen and (max-width: 991px)
{
	.left-overflow-container img,
	.right-overflow-container img
	{
		display: inline-block;
		max-width: 100%;
		height: auto !important;
		border: none;
		margin-left: 0;
	}
}

.date-container
{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 30px;
}

.date-container .year-container
{
	font-family: rubik_medium, sans-serif;
	font-size: 28px;
	color: #FE5126 !important;
	width: 70px;
}

.date-container .date-description
{
	font-family: rubik, sans-serif;
	font-size: 18px;
	color: #2E2E2E;
	margin-left: 30px;
}