:root {
	/* BREAKPOINTS */
	--breakpoint-small: 640;
	--breakpoint-medium: 768;
	--breakpoint-large: 960;
	--breakpoint-x-large: 1200;
	--breakpoint-wide: 1440;
    
    /* SECTION HEIGHTS */
    --theme-section-height-xs: 300px;
    --theme-section-height-s: 420px;
    --theme-section-height-m: 560px;
    --theme-section-height-l: 640px;
    --theme-section-height-xl: 720px;
    --theme-section-height-xxl: 960px;
    
    --theme-section-height-xs-m: 300px;
    --theme-section-height-s-m: 420px;
    --theme-section-height-m-m: 560px;
    --theme-section-height-l-m: 640px;
    --theme-section-height-xl-m: 720px;
    --theme-section-height-xxl-m: 960px;
    
    --theme-section-height-xs-s: 300px;
    --theme-section-height-s-s: 420px;
    --theme-section-height-m-s: 560px;
    --theme-section-height-l-s: 640px;
    --theme-section-height-xl-s: 720px;
    --theme-section-height-xxl-s: 960px;
    
    --theme-section-height-viewport: 100vh;
    --theme-section-height-auto: auto;
    
    
    /* THEME COLORS */
    --theme-primary-color: rgba(190,58,58,1.0);
    --theme-secondary-color: rgba(190,58,115,1.0);
    --theme-accent-color: rgba(35,100,145,1.0);
    
    --theme-body-color: rgba(46,45,44,1.0);
    
    /* COLORS */
	--black: #111;
	--blue-100: #f3f9fe;
	--blue-200: #8fbbe6;
	--blue-400: #2e669e;
	--focus: #3a58fc;
	--gray-100: #f5f5f5;
	--gray-200: #eaeaea;
	--gray-300: #ddd;
	--gray-400: #ccc;
	--gray-500: #767676;
	--gray-600: #575a5d;
	--green-100: #daf5eb;
	--green-200: #bbe1d3;
	--green-400: #0a7448;
	--red-100: #fbe3e3;
	--red-200: #f9c4c7;
	--red-400: #b13138;
	--transparent: transparent;
	--yellow-100: #f8f8e1;
	--yellow-200: #e6e086;
	--yellow-400: #65602e;
	--white: #fff;
    
	/* BUTTON HOVER COLORS */
	--black--tinted: #4d4d4d;
	--blue-400--shaded: #234d77;
	--gray-100--shaded: #b8b8b8;
	--gray-200--shaded: #b0b0b0;
	--gray-300--shaded: #a6a6a6;
	--gray-400--tinted: #d9d9d9;
	--gray-500--shaded: #595959;
	--gray-600--shaded: #414446;
	--green-400--shaded: #085736;
	--red-400--shaded: #85252a;
	--yellow-400--shaded: #4c4823;
	--white--shaded: #f5f5f5;
    
    
    
	/* DEFAULTS */
	--default-border-radius: 0.25rem;
	--default-border-width: 1px;
	--default-content-width: 90rem;
	--default-font-size: var(--paragraph-small);
	--default-input-font-size: 0.875rem;
	--default-line-height: 1.8;
	--default-spacing-unit: 1rem;
    
    /* BORDER RADIUS */
    --xsmall-border-radius: 0.5rem;
    --small-border-radius: 0.625rem;
    --medium-border-radius: 0.75rem;
    --large-border-radius: 1rem;
    --xlarge-border-radius: 1.25rem;
    
    --default-site-width: 100vw;
    --default-wrapper-width: 100rem;
    --half-column-max-width: calc(var(--default-wrapper-width) * 0.5);
    
    
   /* TYPOGRAPHY */
    --font-ultra-light: 100;
    --font-light: 200;
    --font-book: 300;
	--font-regular: 400;
    --font-medium: 500;
	--font-semibold: 600;
    --font-bold: 700;
    --font-black: 900;
	--message-one: 0.75rem;
    
    --primary-font-family: "Inter", "Helvetica", "Arial", sans-serif;
	--secondary-font-family: "Sora", "Helvetica", "Arial", sans-serif;
    --accent-font-family: "Zilla Slab", "Apple Garamond", "Baskerville", "Times New Roman", "Droid Serif", "Times", "Source Serif Pro", serif;
    
    --display-one: clamp(2.675rem, 1.467rem + 3.913vw, 5rem);
    --display-two: clamp(2.25rem, 1.467rem + 3.913vw, 4.5rem);
    --display-three: clamp(1.875rem, 1.44rem + 2.174vw, 3.125rem);
    --title-one: clamp(1.75rem, 1.428rem + 1.609vw, 2.675rem);
	--title-two: clamp(1.5rem, 1.283rem + 1.087vw, 2.125rem);
	--title-three: clamp(1.125rem, 0.995rem + 0.652vw, 1.5rem);
	--title-four: clamp(1rem, 0.913rem + 0.435vw, 1.25rem);
    
    --paragraph-large: clamp(1rem, 1.467rem + 3.913vw, 1.125rem);
	--paragraph-small: clamp(0.875rem, 1.467rem + 3.913vw, 1rem);
    
    --subheading-large: clamp(1rem, 0.913rem + 0.435vw, 1.25rem);
	--subheading-small: clamp(1rem, 1.467rem + 3.913vw, 1.125rem);
	--subheading-x-small: clamp(0.875rem, 1.467rem + 3.913vw, 1rem);
    
    /* CAROUSEL */
    --default-carousel-nav-color-light: rgba(255,255,255,1.0);
    --default-carousel-nav-color-dark: rgba(0,0,0,1.0);
    
    --default-carousel-dots-color-light: rgba(255,255,255,1.0);
    --default-carousel-dots-color-dark: rgba(0,0,0,1.0);
    
    /* REVEAL */
    --reveal-dur: .6s;
    --reveal-ease: cubic-bezier(.22,.61,.36,1);
}


/* ==========================================================================
   SITE FONTS / COLORS
   ========================================================================== */

/*** Fonts ***/
html, 
body{
 color: var(--theme-body-color);    
}

/* PAGEWRAPPER
   =========================================== */
html.mm-background .mm-page,
#pagewrapper{
    background: var(--white);
}

/* FULL-WIDTH PAGES
   =========================================== */
.t-page-sfnt .t-main-content-element,
.t-page-fullwidth .t-main-content-element{
    width: 100%;
    max-width: 100%;
    padding:0 0 !important;
}
.x-breadcrumbs{
    display:none;
}

html, 
body,
.c-font--primary{
    font-family: var(--primary-font-family); 
}
.c-font--secondary{
    font-family: var(--secondary-font-family); 
}
.c-font--accent{
    font-family: var(--accent-font-family); 
}

/*** Content Wrapper Headings ***
.content-wrapper h1{
    font-size: var(--display-two);
    font-weight: var(--font-bold);
    line-height: calc(var(--display-two) * 1.2);
}
.content-wrapper h2{
    font-size: var(--display-three);
	font-weight: var(--font-bold);
	line-height: calc(var(--display-three) * 1.08);
}
.content-wrapper h3{
    font-size: var(--title-one);
	font-weight: var(--font-bold);
	line-height: calc(var(--title-one) * 1.2);
}
.content-wrapper h4{
    font-size: var(--title-two);
	font-weight: var(--font-bold);
	line-height: calc(var(--title-two) * 1.25);
}
.content-wrapper h5{
    font-size: var(--title-three);
	font-weight: var(--font-bold);
	line-height: calc(var(--title-three) * 1.33);
}
.content-wrapper h6{
    font-size: var(--title-four);
	font-weight: var(--font-bold);
	line-height: calc(var(--title-four) * 1.4);
}
**/


/*** Colors ***/
.c-color--primary{
    color: var(--theme-primary-color);
}
.c-color--primary-background{
    background-color: var(--theme-primary-color);
}
.c-color--secondary{
    color: var(--theme-secondary-color);
}
.c-color--secondary-background{
    background-color: var(--theme-secondary-color);
}
.c-color--accent{
    color: var(--theme-accent-color);
}
.c-color--accent-background{
    background-color: var(--theme-accent-color);
}

.o-layout--height-xs{
    height:var(--theme-section-height-xs);
}
.o-layout--height-s{
    height:var(--theme-section-height-s);
}
.o-layout--height-m{
    height:var(--theme-section-height-m);
}
.o-layout--height-l{
    height:var(--theme-section-height-l);
}
.o-layout--height-xl{
    height:var(--theme-section-height-xl);
}
.o-layout--height-xxl{
    height:var(--theme-section-height-xxl);
}
.o-layout--height-viewport{
    height:var(--theme-section-height-viewport);
}
.o-layout--height-auto{
    height:var(--theme-section-height-auto);
}
@media screen and (max-width: 959px) {
    .o-layout--height-xs-m{
        height:var(--theme-section-height-xs-m);
    }
    .o-layout--height-s-m{
        height:var(--theme-section-height-s-m);
    }
    .o-layout--height-m-m{
        height:var(--theme-section-height-m-m);
    }
    .o-layout--height-l-m{
        height:var(--theme-section-height-l-m);
    }
    .o-layout--height-xl-m{
        height:var(--theme-section-height-xl-m);
    }
    .o-layout--height-xxl-m{
        height:var(--theme-section-height-xxl-m);
    } 
    .o-layout--height-viewport-m{
    height:var(--theme-section-height-viewport);
    }
}

@media screen and (max-width: 767px) {
.o-layout--height-xs-s{
    height:var(--theme-section-height-xs-m);
}
.o-layout--height-s-s{
    height:var(--theme-section-height-s-m);
}
.o-layout--height-m-s{
    height:var(--theme-section-height-m-m);
}
.o-layout--height-l-s{
    height:var(--theme-section-height-l-m);
}
.o-layout--height-xl-s{
    height:var(--theme-section-height-xl-m);
}
.o-layout--height-xxl-s{
    height:var(--theme-section-height-xxl-m);
} 
.o-layout--height-viewport-s{
    height:var(--theme-section-height-viewport);
}
}


.o-layout--justify-start {
	justify-content: flex-start;
}
.o-layout--justify-end {
	justify-content: flex-end;
}
.o-layout--justify-evenly {
	justify-content: space-evenly;
}
.order-first {
  order: -1 !important; }

.order-0 {
  order: 0 !important; }

.order-1 {
  order: 1 !important; }

.order-2 {
  order: 2 !important; }

.order-3 {
  order: 3 !important; }

.order-4 {
  order: 4 !important; }

.order-5 {
  order: 5 !important; }

.order-last {
  order: 6 !important; }

@media screen and (min-width: 48em) {
.o-layout--justify-start--m {
	justify-content: flex-start;
}

.o-layout--justify-center--m {
	justify-content: center;
}

.o-layout--justify-end--m {
	justify-content: flex-end;
}

.o-layout--justify-around--m {
	justify-content: space-around;
}

.o-layout--justify-between--m {
	justify-content: space-between;
}
.o-layout--justify-evenly--m {
	justify-content: space-evenly;
}
.order-first--m {
  order: -1 !important; }

.order-0--m {
  order: 0 !important; }

.order-1--m {
  order: 1 !important; }

.order-2--m {
  order: 2 !important; }

.order-3--m {
  order: 3 !important; }

.order-4--m {
  order: 4 !important; }

.order-5--m {
  order: 5 !important; }

.order-last--m {
  order: 6 !important; }
}
@media screen and (min-width: 60em) {
.o-layout--justify-start--l {
	justify-content: flex-start;
}

.o-layout--justify-center--l {
	justify-content: center;
}

.o-layout--justify-end--l {
	justify-content: flex-end;
}

.o-layout--justify-around--l {
	justify-content: space-around;
}

.o-layout--justify-between--l {
	justify-content: space-between;
}
.o-layout--justify-evenly--l {
	justify-content: space-evenly;
}
.order-first--l {
  order: -1 !important; }

.order-0--l {
  order: 0 !important; }

.order-1--l {
  order: 1 !important; }

.order-2--l {
  order: 2 !important; }

.order-3--l {
  order: 3 !important; }

.order-4--l {
  order: 4 !important; }

.order-5--l {
  order: 5 !important; }

.order-last--l {
  order: 6 !important; }
}
@media screen and (min-width: 75em) {
.o-layout--justify-start--xl {
	justify-content: flex-start;
}

.o-layout--justify-center--xl {
	justify-content: center;
}

.o-layout--justify-end--xl {
	justify-content: flex-end;
}

.o-layout--justify-around--xl {
	justify-content: space-around;
}

.o-layout--justify-between--xl {
	justify-content: space-between;
}
.o-layout--justify-evenly--xl {
	justify-content: space-evenly;
}
.order-first--xl {
  order: -1 !important; }

.order-0--xl {
  order: 0 !important; }

.order-1--xl {
  order: 1 !important; }

.order-2--xl {
  order: 2 !important; }

.order-3--xl {
  order: 3 !important; }

.order-4--xl {
  order: 4 !important; }

.order-5--xl {
  order: 5 !important; }

.order-last--xl {
  order: 6 !important; }
    
}

@media screen and (min-width: 90em) {
.o-layout--justify-start--w {
	justify-content: flex-start;
}

.o-layout--justify-center--w {
	justify-content: center;
}

.o-layout--justify-end--w {
	justify-content: flex-end;
}

.o-layout--justify-around--w {
	justify-content: space-around;
}

.o-layout--justify-between--w {
	justify-content: space-between;
}
.o-layout--justify-evenly--w {
	justify-content: space-evenly;
}   
    

.order-first--w {
  order: -1 !important; }

.order-0--w {
  order: 0 !important; }

.order-1--w {
  order: 1 !important; }

.order-2--w {
  order: 2 !important; }

.order-3--w {
  order: 3 !important; }

.order-4--w {
  order: 4 !important; }

.order-5--w {
  order: 5 !important; }

.order-last--w {
  order: 6 !important; }
}    



.u-text-ultra-light {
	font-weight: var(--font-ultra-light);
}
.u-text-light {
	font-weight: var(--font-light);
}
.u-text-book {
	font-weight: var(--font-book);
}
.u-text-regular{
    font-weight: var(--font-regular);
}
.u-text-regular-medium {
	font-weight: var(--font-medium);
}
.u-text-medium{
    font-weight: var(--font-semibold);
}
.u-text-bold{
    font-weight: var(--font-bold);
}
.u-text-boldest{
    font-weight: var(--font-black);
}


.u-text-spacing--s{
    letter-spacing:1.125pt;
}
.u-text-spacing--m{
    letter-spacing:1.875pt;
}
.u-text-spacing--l{
    letter-spacing:2.75pt;
}
.u-text-spacing--xl{
    letter-spacing:3.5pt;
}

.u-padding-top--xxs{
    padding-top:0.5rem;
}
.u-padding-bottom--xxs{
    padding-bottom:0.5rem;
}
.u-padding-top--xs{
    padding-top:1rem;
}
.u-padding-bottom--xs{
    padding-bottom:1rem;
}
.u-padding-top--s{
    padding-top:2rem;
}
.u-padding-bottom--s{
    padding-bottom:2rem;
}
.u-padding-top--m{
    padding-top:4rem;
}
.u-padding-bottom--m{
    padding-bottom:4rem;
}
.u-padding-top--l{
    padding-top:6rem;
}
.u-padding-bottom--l{
    padding-bottom:6rem;
}
.u-padding-top--xl{
    padding-top:9rem;
}
.u-padding-bottom--xl{
    padding-bottom:9rem;
}
.u-padding-top--xxl{
    padding-top:12rem;
}
.u-padding-bottom--xxl{
    padding-bottom:12rem;
}
.u-padding-top--n{
    padding-top:0;
}
.u-padding-bottom--n{
    padding-bottom:0;
}
@media screen and (min-width: 48em) {
    
}
@media screen and (min-width: 60em) {
    .u-padding-top--xxs{
        padding-top:1rem;
    }
    .u-padding-bottom--xxs{
        padding-bottom:1rem;
    }
    .u-padding-top--xs{
        padding-top:2rem;
    }
    .u-padding-bottom--xs{
        padding-bottom:2rem;
    }
    .u-padding-top--s{
        padding-top:4rem;
    }
    .u-padding-bottom--s{
        padding-bottom:4rem;
    }
    .u-padding-top--m{
        padding-top:8rem;
    }
    .u-padding-bottom--m{
        padding-bottom:8rem;
    }
    .u-padding-top--l{
        padding-top:12rem;
    }
    .u-padding-bottom--l{
        padding-bottom:12rem;
    }
    .u-padding-top--xl{
        padding-top:16rem;
    }
    .u-padding-bottom--xl{
        padding-bottom:16rem;
    }
    .u-padding-top--xxl{
        padding-top:20rem;
    }
    .u-padding-bottom--xxl{
        padding-bottom:20rem;
    }
}
@media screen and (min-width: 75em) {
    
}
@media screen and (min-width: 90em) {
    
}

/**
 * Offset size modifiers.
 */
.u-offset-1-r {
	margin-right: 8.333%;
}

.u-offset-2-r {
	margin-right: 16.666%;
}

.u-offset-3-r {
	margin-right: 25%;
}

.u-offset-4-r {
	margin-right: 33.333%;
}

.u-offset-5-r {
	margin-right: 41.666%;
}

.u-offset-6-r {
	margin-right: 50%;
}

.u-offset-7-r {
	margin-right: 58.333%;
}

.u-offset-8-r {
	margin-right: 66.666%;
}

.u-offset-9-r {
	margin-right: 75%;
}

.u-offset-10-r {
	margin-right: 83.333%;
}

.u-offset-11-r {
	margin-right: 91.666%;
}

/* Small Breakpoint [40em = 640px]
   =========================================== */
@media screen and (min-width: 40em) {
	
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1-r--s {
		margin-right: 8.333%;
	}
	.u-offset-2-r--s {
		margin-right: 16.666%;
	}
	.u-offset-3-r--s {
		margin-right: 25%;
	}
	.u-offset-4-r--s {
		margin-right: 33.333%;
	}
	.u-offset-5-r--s {
		margin-right: 41.666%;
	}
	.u-offset-6-r--s {
		margin-right: 50%;
	}
	.u-offset-7-r--s {
		margin-right: 58.333%;
	}
	.u-offset-8-r--s {
		margin-right: 66.666%;
	}
	.u-offset-9-r--s {
		margin-right: 75%;
	}
	.u-offset-10-r--s {
		margin-right: 83.333%;
	}
	.u-offset-11-r--s {
		margin-right: 91.666%;
	}
}

/* Medium Breakpoint [48em = 768px]
   =========================================== */
@media screen and (min-width: 48em) {
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1-r--m {
		margin-right: 8.333%;
	}
	.u-offset-2-r--m {
		margin-right: 16.666%;
	}
	.u-offset-3-r--m {
		margin-right: 25%;
	}
	.u-offset-4-r--m {
		margin-right: 33.333%;
	}
	.u-offset-5-r--m {
		margin-right: 41.666%;
	}
	.u-offset-6-r--m {
		margin-right: 50%;
	}
	.u-offset-7-r--m {
		margin-right: 58.333%;
	}
	.u-offset-8-r--m {
		margin-right: 66.666%;
	}
	.u-offset-9-r--m {
		margin-right: 75%;
	}
	.u-offset-10-r--m {
		margin-right: 83.333%;
	}
	.u-offset-11-r--m {
		margin-right: 91.666%;
	}
}

/* Large Breakpoint [60em = 960px]
   =========================================== */
@media screen and (min-width: 60em) {
	
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1-r--l {
		margin-right: 8.333%;
	}
	.u-offset-2-r--l {
		margin-right: 16.666%;
	}
	.u-offset-3-r--l {
		margin-right: 25%;
	}
	.u-offset-4-r--l {
		margin-right: 33.333%;
	}
	.u-offset-5-r--l {
		margin-right: 41.666%;
	}
	.u-offset-6-r--l {
		margin-right: 50%;
	}
	.u-offset-7-r--l {
		margin-right: 58.333%;
	}
	.u-offset-8-r--l {
		margin-right: 66.666%;
	}
	.u-offset-9-r--l {
		margin-right: 75%;
	}
	.u-offset-10-r--l {
		margin-right: 83.333%;
	}
	.u-offset-11-r--l {
		margin-right: 91.666%;
	}
}

/* Extra-Large Breakpoint [75em = 1200px]
   =========================================== */
@media screen and (min-width: 75em) {
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1-r--xl {
		margin-right: 8.333%;
	}
	.u-offset-2-r--xl {
		margin-right: 16.666%;
	}
	.u-offset-3-r--xl {
		margin-right: 25%;
	}
	.u-offset-4-r--xl {
		margin-right: 33.333%;
	}
	.u-offset-5-r--xl {
		margin-right: 41.666%;
	}
	.u-offset-6-r--xl {
		margin-right: 50%;
	}
	.u-offset-7-r--xl {
		margin-right: 58.333%;
	}
	.u-offset-8-r--xl {
		margin-right: 66.666%;
	}
	.u-offset-9-r--xl {
		margin-right: 75%;
	}
	.u-offset-10-r--xl {
		margin-right: 83.333%;
	}
	.u-offset-11-r--xl {
		margin-right: 91.666%;
	}
}

/* Wide-Screen Breakpoint [90em = 1440px]
   =========================================== */
@media screen and (min-width: 90em) {
	/**
	 * Offset size modifiers.
	 */
	.u-offset-1-r--w {
		margin-right: 8.333%;
	}
	.u-offset-2-r--w {
		margin-right: 16.666%;
	}
	.u-offset-3-r--w {
		margin-right: 25%;
	}
	.u-offset-4-r--w {
		margin-right: 33.333%;
	}
	.u-offset-5-r--w {
		margin-right: 41.666%;
	}
	.u-offset-6-r--w {
		margin-right: 50%;
	}
	.u-offset-7-r--w {
		margin-right: 58.333%;
	}
	.u-offset-8-r--w {
		margin-right: 66.666%;
	}
	.u-offset-9-r--w {
		margin-right: 75%;
	}
	.u-offset-10-r--w {
		margin-right: 83.333%;
	}
	.u-offset-11-r--w {
		margin-right: 91.666%;
	}
}



.u-margin-top--xxs{
    margin-top:0.5rem;
}
.u-margin-bottom--xxs{
    margin-bottom:0.5rem;
}
.u-margin-top--xs{
    margin-top:1rem;
}
.u-margin-bottom--xs{
    margin-bottom:1rem;
}
.u-margin-top--s{
    margin-top:2rem;
}
.u-margin-bottom--s{
    margin-bottom:2rem;
}
.u-margin-top--m{
    margin-top:4rem;
}
.u-margin-bottom--m{
    margin-bottom:4rem;
}
.u-margin-top--l{
    margin-top:6rem;
}
.u-margin-bottom--l{
    margin-bottom:6rem;
}
.u-margin-top--xl{
    margin-top:9rem;
}
.u-margin-bottom--xl{
    margin-bottom:9rem;
}
.u-margin-top--xxl{
    margin-top:12rem;
}
.u-margin-bottom--xxl{
    margin-bottom:12rem;
}

.u-center-item{
    margin-left: auto;
    margin-left: auto;
}

/* ==========================================================================
   NOTE - ADJUST THESE/ BUILD OUT NEEDED
   ========================================================================== */

.u-padding-lr--xxs{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.u-padding-lr--xs{
    padding-left: 1rem;
    padding-right: 1rem;
}
.u-padding-lr--s{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.u-padding-lr--m{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.u-padding-lr--l{
    padding-left: 3rem;
    padding-right: 3rem;
}
.u-padding-lr--xl{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}
.u-padding-lr--xxl{
    padding-left: 4.5rem;
    padding-right: 4.5rem;
}


/* ==========================================================================
   NOTE - ADJUST THESE/ BUILD OUT NEEDED
   ========================================================================== */
.u-inner-padding-lr--xxs .o-layout__item-inner{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.u-inner-padding-lr--xs .o-layout__item-inner{
    padding-left: 1rem;
    padding-right: 1rem;
}
.u-inner-padding-lr--s .o-layout__item-inner{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.u-inner-padding-lr--m .o-layout__item-inner{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.u-inner-padding-lr--l .o-layout__item-inner{
    padding-left: 3rem;
    padding-right: 3rem;
}
.u-inner-padding-lr--xl .o-layout__item-inner{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}
.u-inner-padding-lr--xxl .o-layout__item-inner{
    padding-left: 4.5rem;
    padding-right: 4.5rem;
}



.u-width-half-column-max{
    max-width: var(--half-column-max-width);
}

.u-column-inner-padding--s{
    padding:2rem 2rem 2rem 2rem;
}
@media screen and (min-width: 60em) {
.u-column-inner-padding--s{
    padding:3.5rem 3.5rem 3.5rem 3.5rem;
}
}


/* ==========================================================================
   COMPONENTS / BUTTONS
   ========================================================================== */
.c-button,
.c-button--primary{
	align-items: center;
	align-self: start;
	background-color: var(--theme-primary-color);
	border: var(--default-border-width) solid var(--transparent);
	border-radius: var(--default-border-radius);
	color: var(--white);
	cursor: pointer;
	display: inline-flex;
	font-size: var(--default-input-font-size);
	font-weight: 500;
	justify-content: center;
	padding: calc(1.23em - var(--default-border-width)) calc(2.15em - var(--default-border-width));
	text-decoration: none;
	transition: background-color 100ms, color 125ms ease-in-out;
	-webkit-user-select: none;
	        user-select: none;
}
.c-button--primary-outline{
    background-color: transparent;
    border: var(--default-border-width) solid var(--theme-primary-color);
    color: var(--theme-primary-color);
}

.c-button--secondary {
	background-color: var(--theme-secondary-color);
	color: var(--white);
}
.c-button--secondary-outline{
    background-color: transparent;
    border: var(--default-border-width) solid var(--theme-secondary-color);
    color: var(--theme-secondary-color);
}

.c-button--accent {
	background-color: var(--theme-accent-color);
	color: var(--white);
}
.c-button--accent-outline{
    background-color: transparent;
    border: var(--default-border-width) solid var(--theme-accent-color);
    color: var(--theme-accent-color);
}

.c-button--white{
    background-color: var(--white);
	color: var(--black); 
}
.c-button--white-outline{
    background-color: transparent;
    border: var(--default-border-width) solid var(--white);
    color: var(--white);
}

.c-button--light{
    background-color: var(--gray-200);
	color: var(--black); 
}
.c-button--light-outline{
    background-color: transparent;
    border: var(--default-border-width) solid var(--gray-200);
    color: var(--gray-200);
}
.c-button--dark{
    background-color: var(--gray-600);
	color: var(--white); 
}
.c-button--dark-outline{
    background-color: transparent;
    border: var(--default-border-width) solid var(--gray-600);
    color: var(--gray-600);
}

.c-button--black {
	background-color: var(--black);
	color: var(--white);
}

.c-button--black-outline {
	background-color: var(--transparent);
	border: var(--default-border-width) solid var(--black);
	color: var(--black);
}
    
/* Button sizing modifiers
   =========================================== */
.c-button--xsmall {
	font-size: 0.675rem;
	padding: calc(0.85em - var(--default-border-width)) calc(1.25em - var(--default-border-width));
}
.c-button--small {
	font-size: 0.75rem;
	padding: calc(0.923em - var(--default-border-width)) calc(1.54em - var(--default-border-width));
}
.c-button--medium {
	font-size: var(--default-input-font-size);
	padding: calc(1.23em - var(--default-border-width)) calc(2.15em - var(--default-border-width));
}
.c-button--large {
	font-size: 1rem;
	padding: calc(1.35em - var(--default-border-width)) calc(2.35em - var(--default-border-width));
}
.c-button--xlarge {
	font-size: 1.25rem;
	padding: calc(1.5em - var(--default-border-width)) calc(2.5em - var(--default-border-width));
}

.c-button--flush {
	padding-left: 0;
	padding-right: 0;
}
.c-button--full {
	width: 100%;
}

@media screen and (max-width: 47.999em) {
	.c-button--full-small {
		width: 100%;
	}
}

/* Button shape modifiers
   =========================================== */

.c-button.c-button--squared{
    border-radius: 0;
}

.c-button--xsmall.c-button--rounded{
	border-radius: var(--xsmall-border-radius);
}
.c-button--small.c-button--rounded{
	border-radius: var(--small-border-radius);
}
.c-button.c-button--rounded,
.c-button--medium.c-button--rounded{
	border-radius: var(--medium-border-radius);
}
.c-button--large.c-button--rounded{
	border-radius: var(--large-border-radius);
}
.c-button--xlarge.c-button--rounded{
	border-radius: var(--xlarge-border-radius);
}


.c-button--xsmall.c-button--pill{
	border-radius: 1.875em;
}
.c-button--small.c-button--pill{
	border-radius: 2em;
}
.c-button.c-button--pill,
.c-button--medium.c-button--pill{
	border-radius: 2.25em;
}
.c-button--large.c-button--pill{
	border-radius: 2.75em;
}
.c-button--xlarge.c-button--pill{
	border-radius: 3.25em;
}



/* Button state modifiers
   =========================================== */
.c-button:active,
.c-button:focus,
.c-button:hover {
	text-decoration: none;
	transition-duration: 250ms;
}

.c-button:disabled,
.c-button[aria-disabled=true] {
	background-color: var(--gray-400);
	cursor: not-allowed;
}

.c-button:focus:not(:focus-visible) {
	outline: none;
}

.c-button:focus-visible {
	outline: calc(var(--default-border-width) * 2) solid var(--focus);
	outline-offset: var(--default-border-width);
	transition: none;
}

@media (hover: hover) and (pointer: fine) {
	.c-button:hover:not(:disabled):not([aria-disabled=true]):not(.c-button--as-link),
	.c-button--secondary:hover:not(:disabled):not([aria-disabled=true]):not(.c-button--as-link) {
		background-color: var(--white);
		border-color: var(--black);
		color: var(--black);
	}
	.c-button-dark:hover:not(:disabled):not([aria-disabled=true]):not(.c-button--as-link) {
		background-color: var(--transparent);
		border-color: var(--white);
		color: var(--white);
	}
	.c-button-dark--secondary:hover:not(:disabled):not([aria-disabled=true]):not(.c-button--as-link) {
		background-color: var(--white);
		border-color: var(--transparent);
		color: var(--black);
	}
}
/* Button shape modifiers
   =========================================== */
.c-button--circle {
	border-radius: 50%;
}

.c-button--circle,
.c-button--square {
	padding: calc(1em - var(--default-border-width));
}


/* Button aesthetic modifier
   (For buttons you want to look like normal links)
   =========================================== */
.c-button--as-link {
	background-color: rgba(0, 0, 0, 0);
	border: none;
	color: currentColor;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	padding: 0;
	text-decoration: underline;
	text-decoration-thickness: from-font;
	-webkit-user-select: auto;
	        user-select: auto;
}

.c-button--as-link:active,
.c-button--as-link:focus,
.c-button--as-link:hover {
	background-color: rgba(0, 0, 0, 0);
	text-decoration: underline;
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.15em;
}


button.x-toggle-password{
 border: 0 none !important;
    border-radius: 0;
    color: var(--gray-800);
    font-size: 1.5em;
    margin-top: -0.125em;
    padding: 0.25em;
    position: absolute;
    right: 0.5em;
    top: calc(50% - 1px);
    background-color:transparent;
    
}
button.x-toggle-password:hover{
    color: var(--gray-800);
    outline: none !important;
    border:none !important;
}
button.u-icon-cross{
    padding:0.75rem !important;
    margin:0 !important;
}
#global_account button.x-toggle-password{
    top:20%;
}



/* HEADER
    =========================================== 
.t-site-header__search-form .t-site-header__search-button {
    display: none;
}
*/





/* Button state overrides
   =========================================== */
.c-button.c-button--secondary.u-icon-subtract,
.c-button.c-button--secondary.u-icon-add{
    background-color:var(--white) !important;
    border:none !important;
    outline:none !important;
}
.c-button.c-button--secondary.u-icon-subtract:active,
.c-button.c-button--secondary.u-icon-subtract:focus,
.c-button.c-button--secondary.u-icon-subtract:hover,
.c-button.c-button--secondary.u-icon-add:active,
.c-button.c-button--secondary.u-icon-add:focus,
.c-button.c-button--secondary.u-icon-add:hover{
    background-color:var(--gray-200) !important;
    border:none !important;
    outline:none !important;
}


.c-button.c-button--secondary.u-icon-subtract{
    border-radius:var(--default-border-radius) 0 0 var(--default-border-radius) !important;
}
.c-button.c-button--secondary.u-icon-add{
    border-radius:0 var(--default-border-radius) var(--default-border-radius) 0 !important;
}
.c-button.c-button--secondary.u-icon-subtract,
.c-button.c-button--secondary.u-icon-subtract:active,
.c-button.c-button--secondary.u-icon-subtract:focus,
.c-button.c-button--secondary.u-icon-subtract:hover{
    border-right:solid 1px var(--gray-400) !important;
}
.c-button.c-button--secondary.u-icon-add,   
.c-button.c-button--secondary.u-icon-add:active,
.c-button.c-button--secondary.u-icon-add:focus,
.c-button.c-button--secondary.u-icon-add:hover{
    border-left:solid 1px var(--gray-400) !important;
}

.u-button--sep{
    display:inline-block;
    width:var(--default-spacing-unit);
    height:1px;
    } 

.u-button-stacked .u-button--sep{
    display:inline-block;
    width:100%;
    height:var(--default-spacing-unit);
}
@media screen and (max-width: 47.99em) {
    .u-button-stacked--s .u-button--sep{
    display:inline-block;
    width:100%;
    height:var(--default-spacing-unit);
    }
}
@media screen and (max-width: 59.99em) {
   .u-button-stacked--m .u-button--sep{
    display:inline-block;
    width:100%;
    height:var(--default-spacing-unit);
    } 
}
@media screen and (max-width: 74.99em) {
   .u-button-stacked--l .u-button--sep{
    display:inline-block;
    width:100%;
    height:var(--default-spacing-unit);
    } 
}
@media screen and (max-width: 89.99em) {
   .u-button-stacked--xl .u-button--sep{
    display:inline-block;
    width:100%;
    height:var(--default-spacing-unit);
    } 
}
@media screen and (min-width: 90em) {
   .u-button-stacked--w .u-button--sep{
    display:inline-block;
    width:100%;
    height:var(--default-spacing-unit);
    } 
}





/* DATA ITEMS
   =========================================== */
/* Select any element that has a data-url attribute */
[data-url]:hover {
  cursor: pointer;
}
 
[data-reveal]{
  opacity: 0;
  transform: translate3d(var(--rx,0), var(--ry,0), 0) scale(var(--rscale,1));
  filter: var(--rfilter, none);
  transition:
    transform var(--reveal-dur) var(--reveal-ease),
    opacity var(--reveal-dur) var(--reveal-ease),
    filter var(--reveal-dur) var(--reveal-ease);
  will-change: transform, opacity, filter;
  transition-delay: 0.35s;
}

[data-reveal].is-revealed{
  opacity: 1;
  transform: none;
  filter: none;
}

[data-reveal="up"]      { --ry: 16px; }
[data-reveal="down"]    { --ry: -16px; }
[data-reveal="left"]    { --rx: -18px; }
[data-reveal="right"]   { --rx: 18px; }
[data-reveal="fade"]    { --rx: 0; --ry: 0; }
[data-reveal="scale"]   { --rscale: .9; }
[data-reveal="float"]   { --ry: 14px; --rfilter: blur(.2px); }

@keyframes bob {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
[data-reveal="float"].is-revealed{
  animation: bob 3.8s ease-in-out .2s 1;
}

@media (prefers-reduced-motion: reduce){
  [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* Form Elements State Modifiers
   =========================================== */
.c-form-input:focus-visible,
.c-form-select__dropdown:focus-visible,
.c-form-checkbox:focus-within {
    /*
	outline: calc(var(--default-border-width) * 2) solid var(--focus);
	outline-offset: var(--default-border-width);
	transition: none;
    */
    outline:none !important;
}



/* OWL CAROUSEL
   =========================================== */

.dwg-carousel .owl-theme{
}
.dwg-carousel .owl-theme .owl-dots{
    position:absolute;
    width:100%;
    text-align:center;
    z-index:5;
    bottom:0px;
    margin:0 auto;
}

.dwg-carousel .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    opacity:0.5;
}
.dwg-carousel .owl-theme .owl-dots .owl-dot.active span, 
.dwg-carousel .owl-theme .owl-dots .owl-dot:hover span {
    opacity:1;
}
.dwg-carousel .owl-carousel-prev-next{
    display:block;
    position:absolute;
    z-index:10;
    top:50%;
    transform:translateY(-50%);
    
    text-decoration:none;
    
    font-size:1.25rem;
    line-height:50px;
    text-align:center;
    
    width:36px;
    height:48px;
    
}
.dwg-carousel .owl-carousel-prev-next.owl-carousel-prev-trigger{
    left:0px;
    float:left;
}
.dwg-carousel .owl-carousel-prev-next.owl-carousel-next-trigger{
    right:0px;
    float:right;
}



/* MOBILE NAV
   =========================================== */

#mobile-nav-trigger{
    display: block;
    align-items: center;
    align-self: start;
    justify-content: center;
    position:relative;
    float:left;
    margin:4px 0 0 4px;
        /*
        position:absolute;
        z-index:9999;
        float:right;
        right:1rem;
        top:50%;
        */
    
        width:26px;
        height:26px;
        text-decoration:none;
        /* transform:translateY(-50%); */
        background-color:transparent;
}
@media (min-width: 60em) {
    #mobile-nav-trigger{
        display:none;
    }
}
#mobile-nav-trigger span{
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    background-color: var(--black);
    border-radius:2px;
    transform: rotate(0deg);
    transition: .2s ease-in-out;
}
#mobile-nav-trigger span:nth-child(1) {
	top: 0px;
}
#mobile-nav-trigger span:nth-child(2),
#mobile-nav-trigger span:nth-child(3){
     top: 9px;
}
#mobile-nav-trigger span:nth-child(4) {
    top: 18px;
                
}
#mobile-nav-trigger.open{
   background-color:transparent;
}
#mobile-nav-trigger.open span{
    background-color:var(--black);
}
#mobile-nav-trigger.open span:nth-child(1) {
				top: 8px;
				width: 0%;
				left: 50%;
}
#mobile-nav-trigger.open span:nth-child(2) {
				transform: rotate(45deg);
}	
#mobile-nav-trigger.open span:nth-child(1) {
				top: 8px;
				width: 0%;
				left: 50%;
}
#mobile-nav-trigger.open span:nth-child(3) {
				transform: rotate(-45deg);
}	
#mobile-nav-trigger.open span:nth-child(4) {
	  			top: 8px;
	  			width: 0%;
	  			left: 50%;
}



.mm-navbar.mm-navbar-top{
    height:60px !important;
}
.mm-navbar.mm-navbar-top .mmenu-custom-header{
    
    padding:10px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.mm-navbar.mm-navbar-top .mmenu-logo,
.mm-navbar.mm-navbar-top .mmenu-signin{
    display:block;
    flex-basis:49%;
    
}
.mm-navbar.mm-navbar-top .mmenu-logo{
 text-align:left;   
}
.mm-navbar.mm-navbar-top .mmenu-signin{
text-align:right;
}
.mm-navbar.mm-navbar-top .mmenu-signin .mmenu-signin-link{
    position:relative;
    padding:0.25rem;
    margin:0.5rem;
    color:var(--black);
    font-size:0.75rem;
    line-height:1.2;
    text-transform:uppercase;
    font-weight:700;
    text-align:right;
    
}
.mm-navbar.mm-navbar-top .mmenu-logo-link{
    display:inline-block;
    margin:0.5rem;
}
.mm-navbar.mm-navbar-top .mmenu-logo-link img{
   height:20px;
    width:auto;
    max-width:auto; 
}
.mm-panels{
  top:60px; 
  text-align:left;
}

.mm-hasnavbar-top-1 .mm-panels, 
.mm-navbar-top-2 {
    top: 60px !important;
}
.mm-navbar a.mm-title{
    text-align:left;
}
.mm-navbar a.mm-title:first-of-type{
   margin-left: -20px;  
}


.u-image-width--xs > img{
    max-width:64px;
    margin-bottom:1rem;
}
.u-image-width--s > img{
    max-width:96px;
    margin-bottom:1rem;
}
.u-image-width--m > img{
    max-width:128px;
    margin-bottom:1rem;
}
.u-image-width--l > img{
    max-width:156px;
    margin-bottom:1rem;
}
.u-image-width--xl > img{
    max-width:192px;
    margin-bottom:1rem;
}






/* PRODUCT ITEM
   =========================================== */

.product-item{
    text-align:center;
}
.product-item .padding{
    background-color:var(--white);
    /* border:solid 1px var(--gray-100); */
    padding:0 0 0 0;
    margin:1rem 0.75rem;
    transition: box-shadow .2s ease;
    
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
.product-item .padding:hover{
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
}
.product-item .product-details{
    padding:0;
}
.product-item .product-thumbnail{
    padding:0;
}
.product-item .product-name,
.product-item .product-code,
.product-item .product-price,
.product-item .product-quantity{
    padding-left:1rem;
    padding-right:1rem;
}
.product-item .product-name{
    padding-top:1rem;
    padding-bottom:0.5rem;
}

.product-item .product-name a{
    font-size:var(--subheading-large);
    font-weight:var(--font-bold);
    line-height:1.2;
    letter-spacing:0;
    text-decoration:none;
    margin:0 0 0 0;
    padding:0 0 0 0;
}
.product-item .product-name a:hover{
    text-decoration:none;
}
.product-item .product-code{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
}
.product-item .product-code span{
    display:inline-block;
}
.product-item .product-code-label{
    
}
.product-item .product-code-value{
  font-weight:var(--font-bold);  
}
.product-item .product-price{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
}
.product-item .product-price span{
    display:inline-block;
}
.product-item .product-price-label{
    
}
.product-item .product-price-base_price{
    font-weight:var(--font-bold);
}
.product-item .product-quantity{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
    display:none;
}
.product-item .purchase-buttons{
    padding-top:0.5rem;
    padding-bottom:0.25rem;
}

/* PRODUCT THUMBNAIL OWL CAROUSEL
   =========================================== */
.product-thumbnail.owl-carousel{
    
}
.product-thumbnail.owl-carousel a{
    display:block;
    position:relative;
    z-index:0;
}
.product-thumbnail.owl-carousel .owl-dots{
    position:absolute;
    width:100%;
    text-align:center;
    z-index:5;
    bottom:0.25rem;
    margin:0 auto;
}

.product-thumbnail.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 4px 6px;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    opacity:0.5;
}
.product-thumbnail.owl-carousel .owl-dots .owl-dot.active span, 
.product-thumbnail.owl-carousel .owl-dots .owl-dot:hover span {
    opacity:1;
}

.product-thumbnail.owl-carousel .owl-nav{
    
    text-align:center;
    z-index:5;
    bottom:0;
    margin:0 auto;
}

.product-thumbnail.owl-carousel .owl-nav .owl-prev,
.product-thumbnail.owl-carousel .owl-nav .owl-next{
    display:block;
    position:absolute;
    z-index:10;
    top:50%;
    transform:translateY(-50%);
    
    text-decoration:none;
    text-align:center;
    
    width:32px;
    height:40px;
    
    background-color:var(--gray-100);
}
.product-thumbnail.owl-carousel .owl-nav .owl-prev:hover,
.product-thumbnail.owl-carousel .owl-nav .owl-prev:focus,
.product-thumbnail.owl-carousel .owl-nav .owl-next:hover,
.product-thumbnail.owl-carousel .owl-nav .owl-next:focus{
    background-color:var(--gray-600);
}
.product-thumbnail.owl-carousel .owl-nav .owl-prev span,
.product-thumbnail.owl-carousel .owl-nav .owl-next span{
    display:block;
    font-size:1.25rem;
    line-height:40px;
}
.product-thumbnail.owl-carousel .owl-nav .owl-prev{
    left:0px;
    float:left;
}
.product-thumbnail.owl-carousel .owl-nav .owl-next{
    right:0px;
    float:right;
}

/* PRODUCT THUMBNAIL HOVER
   =========================================== */
.product-item-hover-thumb{
    
}
.product-item-hover-thumb .product-thumbnail a{
    display:block;
    position:relative;
}
.product-item-hover-thumb .product-thumbnail [data-thumbnail-id="1"]{
    position:relative;
}
.product-item-hover-thumb .product-thumbnail [data-thumbnail-id="2"]{
    position:absolute;
    z-index:1;
    top:0px;
    left:0px;
    opacity:0;
    
    transition: opacity .2s ease;
}
.product-item-hover-thumb:hover [data-thumbnail-id="2"]{
    opacity:1;
}





/* ACCORDION ITEM
   =========================================== */

.accordion-group .accordion-item{
    border-bottom-style:solid;
    border-bottom-width:1px;
}
.accordion-item .accordion-item-header{
}
.accordion-item .accordion-item-header-inner{    
}
.accordion-item .accordion-item-trigger{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items: center;
    gap:10px;
    
    text-decoration:none;
    
    padding:0.5rem 0.5rem;
}
.accordion-item .accordion-item-trigger:hover{
    text-decoration:none;
}

.accordion-item .accordion-item-trigger span{
    display:block;
}
.accordion-item .accordion-item-trigger span.accordion-head-title{
}
.accordion-item .accordion-item-trigger span.accordion-head-icon{
    font-size:14px;
    width:22px;
    text-align:center;
    
    -webkit-transition:all 0.2s linear;
  -moz-transition:all 0.2s linear;
  -ms-transition:all 0.2s linear;
  -o-transition:all 0.2s linear;
  transition:all 0.2s linear;
    transform:rotate(0deg);
}

.accordion-item.a-u-icon-add .accordion-item-trigger span.accordion-head-icon{
    transform:rotate(0deg);
}

.accordion-item.active .accordion-item-trigger span.accordion-head-icon{
  -webkit-transform:rotate(-180deg);
  -moz-transform:rotate(-180deg);
  -ms-transform:rotate(-180deg);
  -o-transform:rotate(-180deg);
  transform:rotate(-180deg);
}
.accordion-item.a-u-icon-add.active .accordion-item-trigger span.accordion-head-icon{
    transform:rotate(-45deg);
}

.accordion-item .accordion-item-content-inner{
    padding:0.5rem 0.5rem;
}
.accordion-item .accordion-item-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -moz-transition: max-height 0.2s ease-out;I’m 
  -ms-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}
.accordion-item.active .accordion-item-content {
  max-height:auto;
}

.accordion-item.u-left-icon .accordion-item-trigger{
    justify-content:flex-start;
}
.accordion-item.u-left-icon .accordion-item-trigger span.accordion-head-title{
    order:2;
}
.accordion-item.u-left-icon .accordion-item-trigger span.accordion-head-icon{
    order:1;
}
.accordion-item.u-left-icon .accordion-item-content-inner{
    padding:0.5rem 0.5rem 0.5rem 40px;
}


/* COLUMN CAROUSEL ITEM
   =========================================== */
.dwg-column-carousel-section{
    
}
.dwg-column-carousel-item{
    
}
.dwg-column-carousel-item-inner{
    
}
.dwg-column-carousel-item .column-media-wrapper{
    
}
.dwg-column-carousel-item .column-media-wrapper-inner{
    
}

.dwg-column-carousel-item .column-content-wrapper{
    
}
.dwg-column-carousel-item .column-content-wrapper-inner{
    padding:1rem;
}



/* LOCATION ITEM
   =========================================== */

.dwg-flex-locations-layout-style-2 .dwg-locations-content-layout-item-inner{
    padding:0 1.5rem;
}
@media (min-width: 48em) {
.dwg-flex-locations-layout-style-2 .dwg-locations-content-layout-item-inner{
    padding:0 2.5rem;
}  
}
@media (min-width: 60em) {
.dwg-flex-locations-layout-style-2 .dwg-locations-content-layout-item-inner{
    padding:0 3.5rem;
}  
}
.location-item{
    
}
.location-item .location-item-inner{
   margin:0.5rem; 
   background-color:var(--gray-100);
}

.location-item span:not([class^="u-icon-"]){
    display:block;
}
.location-item .location-item-wrapper{
    display:flex;
    flex-wrap:nowrap;
    justify-content:flex-start;
    align-items:flex-start;
    gap:1rem;
    
}
.location-item .location-item-media-wrapper{
    
}
.location-item .location-item-content-wrapper{
    padding:1rem 1.25rem 1rem 1.25rem;
}

.location-item .location-item-title{
    font-size:1.125rem;
}
.location-item .location-item-wrapper-icon{
}
.location-item .location-item-wrapper-icon span{
}
.location-item .location-item-wrapper-content{ 
}
.location-item .location-item-wrapper-content span{
}
.location-item .location-item-image-sep{
   height:0.5rem;  
}
.location-item .location-item-title-sep{
  margin:0.375rem 0;
  border-bottom:solid 1px var(--gray-400);
}
.location-item .location-item-address-sep{
  height:0.5rem;  
}
.location-item .location-item-phone-sep{
  height:0.5rem;  
}
.location-item .location-item-hours-sep{
}






/* TESTIMONIAL ITEM
   =========================================== */
.testimonial-item{
    
}
.testimonial-item .testimonial-item-inner{
    margin:0.5rem;
    padding:1rem;
}
.testimonial-item p{
    margin:0;
    padding:0;
}
.testimonial-item .testimonial-item-content{
    padding:0.5rem;
}
.testimonial-item .testimonial-item-desc{
    font-style:italic;
}
.testimonial-item .testimonial-item-desc .testimonial-desc-quote{
    display:inline-block;
    
}
.testimonial-item .testimonial-item-desc .testimonial-desc-quote-start{
    margin-right:0.065rem;
}
.testimonial-item .testimonial-item-desc .testimonial-desc-quote-end{
    margin-left:0.065rem;
}
.testimonial-item .testimonial-item-desc p{
    
}
.testimonial-item p.testimonial-item-name{
    font-weight:700;
}
.testimonial-item p.testimonial-item-title{
}
.testimonial-item p.testimonial-item-location{
}
.testimonial-item p.testimonial-item-date{
}
.testimonial-stars .testimonial-stars-row span{
    display:inline-block;
    margin:0 0.125rem;
}
.dwg-testimonials-content-layout-item-inner{
    padding-bottom:1.5rem;
}
.dwg-testimonials-button-layout-item-inner{
    padding-top:1.5rem;
}




/* FLEX TAB ITEM
   =========================================== */
.dwg-tabs-section .tab-header-list {
    display: none;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dwg-tabs-section .tab-header-list a.tab-header-list-link {
    line-height:1;
    font-size: 0.85rem;
    text-decoration: none;
    padding:0.875rem 1.675rem;
}
.dwg-tabs-section .tab-content a.tab-header-list-link--s{
   line-height:1;
    font-size: 0.85rem;
    text-decoration: none;
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items: center;
    gap:10px;
    
    text-decoration:none;
    
    padding:1rem 1.125rem 1rem 1.125rem;
}
.dwg-tabs-section .tab-content a.tab-header-list-link--s span{
    display:block;
}
.dwg-tabs-section .tab-content a.tab-header-list-link--s span.tab-header-list-link--title{
    
}
.dwg-tabs-section .tab-content a.tab-header-list-link--s span.tab-header-list-link--icon{
    font-size:14px;
    width:22px;
    text-align:center;
    
    -webkit-transition:all 0.2s linear;
  -moz-transition:all 0.2s linear;
  -ms-transition:all 0.2s linear;
  -o-transition:all 0.2s linear;
  transition:all 0.2s linear;
    transform:rotate(0deg);
}
.dwg-tabs-section .tab-content a.tab-header-list-link--s.active span.tab-header-list-link--icon{
    transform:rotate(-45deg);
}

.dwg-tabs-section .tab-content{
}
.dwg-tabs-section .tab-content a.tab-header-list-link--s,
.dwg-tabs-section .tab-content .tab-content-item{
    border-bottom:solid 1px var(--gray-400);
}
.dwg-tabs-section .tab-content a.tab-header-list-link--s.active{
    border-bottom:solid 1px transparent;
}
.dwg-tabs-section .tab-content .tab-content-item-inner{
    padding:1rem 1.125rem;
}


@media (min-width: 48em) {
.dwg-tabs-section .tab-header-list {
    display:flex;
    }
.dwg-tabs-section .tab-content a.tab-header-list-link--s{
    display:none;
    }
.dwg-tabs-section .tab-header-list a.tab-header-list-link {
    font-size: 0.875rem;
    padding:0.875rem 1.675rem;
} 
.dwg-tabs-section .tab-content .tab-content-item-inner{
    padding:1rem 1.675rem;
}
}

@media (min-width: 60em) {
.dwg-tabs-section .tab-header-list a.tab-header-list-link {
    font-size: 1rem;
    padding:1rem 2.5rem;
} 
.dwg-tabs-section .tab-content .tab-content-item-inner{
    padding:1.25rem 2rem;
}
}





/***** HEADING BUTTON INLINE *********/
.u-heading-button-inline .section-header-layout-item-inner {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items: center;
    gap:1rem;
}
.u-heading-button-inline .section-header-layout-item-inner > * {
    /*
    flex: 1;
    */
}
.u-heading-button-inline .heading-wrapper > *{
    line-height:1;
    margin: 0;
}
.u-heading-button-inline .heading-wrapper{
    flex-grow: 2;
}
.u-heading-button-inline .button-wrapper{
    flex-grow: 1;
}







/***** PRODUCT CAROUSEL 001 *********/
.u-pc-style--1{
    
}
.u-pc-style--1 .product-item{
    text-align:left;
}
.u-pc-style--1 .product-item .padding{
    background-color:var(--white);
    /* border:solid 1px var(--gray-100); */
    padding:0 0 0 0;
    margin:1rem 0.75rem;
    
    transition: box-shadow .2s ease;
    
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
.u-pc-style--1 .product-item .padding:hover{
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
}
.u-pc-style--1 .product-item .product-details{
    padding:0;
}
.u-pc-style--1 .product-item .product-thumbnail{
    padding:0;
}
.u-pc-style--1 .product-item .product-name,
.u-pc-style--1 .product-item .product-code,
.u-pc-style--1 .product-item .product-price,
.u-pc-style--1 .product-item .product-quantity{
    padding-left:1rem;
    padding-right:1rem;
}
.u-pc-style--1 .product-item .product-name{
    padding-top:0.5rem;
    padding-bottom:0rem;
}

.u-pc-style--1 .product-item .product-name a{
    font-size:0.875rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1pt;
    line-height:1.1;
    text-decoration:none;
    margin:0 0 0 0;
    padding:0 0 0 0;
}
.u-pc-style--1 .product-item .product-name a:hover{
    text-decoration:none;
}
.u-pc-style--1 .product-item .product-code{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
    
    display:none;
}
.u-pc-style--1 .product-item .product-code span{
    display:inline-block;
}
.u-pc-style--1 .product-item .product-code-label{
    
}
.u-pc-style--1 .product-item .product-code-value{
  font-weight:var(--font-bold);  
}
.u-pc-style--1 .product-item .product-price{
    padding-top:0rem;
    padding-bottom:0.75rem;
    font-size:0.75rem;
    font-weight:500;
    text-transform:uppercase;
}
.u-pc-style--1 .product-item .product-price span.price-label{
    display:none;
}
.u-pc-style--1 .product-item .product-price-label{
    
}
.u-pc-style--1 .product-item .product-price-base_price{
    font-weight:var(--font-bold);
}
.u-pc-style--1 .product-item .product-quantity{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
    display:none;
}


.u-pc-style--1 .product-item .purchase-buttons{
    padding-top:0rem;
    padding-bottom:0rem;
    
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items: center;
}
.u-pc-style--1 .product-item .purchase-buttons > * {
    flex: 1;
}
.u-pc-style--1 .product-item .purchase-buttons form{
    display:block;
    margin:0px;
}
.u-pc-style--1 .product-item .purchase-buttons .c-button{
    width:100% !important;
    display:block;
    border-radius:0px !important;
    font-weight:var(--font-bold);
    text-transform:uppercase;
    letter-spacing:1pt;
    

    border: none !important;
    outline:none !important;
    background-color: var(--gray-200);
	color: var(--gray-600);
    
    padding-top:1rem;
    padding-bottom:1rem;
}
.u-pc-style--1 .product-item .purchase-buttons .c-button:hover,
.u-pc-style--1 .product-item .purchase-buttons .c-button:focus,
.u-pc-style--1 .product-item .purchase-buttons .c-button:active{
    background-color: var(--gray-600);
	color: var(--white); 
}





/***** PRODUCT CAROUSEL 002 *********/
.u-pc-style--2{
    
}
.u-pc-style--2 .product-item{
    text-align:left;
}
.u-pc-style--2 .product-item .padding{
    background-color: var(--black);
    color:var(--white);
    /* border:solid 1px var(--gray-100); */
    padding:0 0 0 0;
    margin:1rem 0.75rem;
    
    
    transition: box-shadow .2s ease, background-color .2s ease;
    
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
.u-pc-style--2 .product-item .padding:hover{
    background-color: var(--gray-600);
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
}
.u-pc-style--2 .product-item .product-details{
    padding:0;
    position:relative;
    
}
.u-pc-style--2 .product-item .product-thumbnail{
    padding:0;
    position:relative;
}
.u-pc-style--2 .product-item .product-thumbnail:after{
    content:'';
    position:absolute;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    background-color:var(--white);
    opacity:0;
    
    transition: opacity .2s ease-in;
}
.u-pc-style--2 .product-item .padding:hover .product-thumbnail:after{
    opacity:0.4;
}

.u-pc-style--2 .product-item .product-name,
.u-pc-style--2 .product-item .product-code,
.u-pc-style--2 .product-item .product-price,
.u-pc-style--2 .product-item .product-quantity{
    padding-left:1rem;
    padding-right:1rem;
}
.u-pc-style--2 .product-item .product-name{
    padding-top:0.5rem;
    padding-bottom:0rem;
}

.u-pc-style--2 .product-item .product-name a{
    font-size:0.875rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1pt;
    line-height:1.1;
    text-decoration:none;
    margin:0 0 0 0;
    padding:0 0 0 0;
}
.u-pc-style--2 .product-item .product-name a:hover{
    text-decoration:none;
}
.u-pc-style--2 .product-item .product-code{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
    
    display:none;
}
.u-pc-style--2 .product-item .product-code span{
    display:inline-block;
}
.u-pc-style--2 .product-item .product-code-label{
    
}
.u-pc-style--2 .product-item .product-code-value{
    font-weight:var(--font-bold);  
}
.u-pc-style--2 .product-item .product-price{
    padding-top:0rem;
    padding-bottom:0.75rem;
    font-size:0.75rem;
    font-weight:500;
    text-transform:uppercase;
}
.u-pc-style--2 .product-item .product-price span.price-label{
    display:none;
}
.u-pc-style--2 .product-item .product-price-label{
    
}
.u-pc-style--2 .product-item .product-price-base_price{
    font-weight:var(--font-bold);
}
.u-pc-style--2 .product-item .product-quantity{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
    display:none;
}
.u-pc-style--2 .product-item .purchase-buttons{
    /*
    padding-top:0rem;
    padding-bottom:0rem;
    
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items: center;
    */
    
    position:absolute;
    top:60%;
    left:50%;
    
    
    opacity:0;
    transform:translate(-50% , -50%);
    
    transition: opacity .2s ease-out, top .2s ease-out;
    /* transition-delay: 0.2s; */
    
}
.u-pc-style--2 .product-item .padding:hover .purchase-buttons{
    top:50%;
    opacity:1;
}
.u-pc-style--2 .product-item .purchase-buttons


.u-pc-style--2 .product-item .purchase-buttons > * {
    /*
    flex: 1;
    */
}
.u-pc-style--2 .product-item .purchase-buttons form{
    display:block;
    margin:0.75rem 0;
}
.u-pc-style--2 .product-item .purchase-buttons .c-button{
    width:100% !important;
    display:block;
    font-weight:var(--font-bold);
    border-radius:0px !important;
    
    
    background-color: var(--black);
	color: var(--white);
    
    border: none !important;
    outline:none !important;
    
    padding:0.75rem 1.375rem;
    /*
    width:100% !important;
    display:block;
    border-radius:0px !important;
    font-weight:var(--font-bold);
    text-transform:uppercase;
    letter-spacing:1pt;
    

    border: none !important;
    outline:none !important;
    background-color: var(--gray-200);
	color: var(--gray-600);
    
    padding-top:1rem;
    padding-bottom:1rem;
    */
}
.u-pc-style--2 .product-item .purchase-buttons .c-button:hover,
.u-pc-style--2 .product-item .purchase-buttons .c-button:focus,
.u-pc-style--2 .product-item .purchase-buttons .c-button:active{
    
    background-color: var(--gray-600);
	color: var(--white);
}


/***** PRODUCT CAROUSEL 003 *********/
.u-pc-style--3{
    
}
.u-pc-style--3 .product-item{
    text-align:center;
}

.u-pc-style--3 .product-item .padding{
    background-color:var(--white);
    border-radius: var(--default-border-radius);
    overflow:hidden;
    border:solid var(--default-border-width) var(--gray-400);
    padding:0 0 0 0;
    margin:1rem 0.75rem;
    
    transition: box-shadow .2s ease, background-color .2s ease;
    
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  
    
}
.u-pc-style--3 .product-item .padding:hover{
    
    background-color:var(--gray-100);
    
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.4);
    
    
}

.u-pc-style--3 .product-item .product-thumbnail{
    padding:0;
}
.u-pc-style--3 .product-item .product-name,
.u-pc-style--3 .product-item .product-code,
.u-pc-style--3 .product-item .product-price,
.u-pc-style--3 .product-item .product-quantity{
}
.u-pc-style--3 .product-item .product-name{
    padding-top:0.5rem;
    padding-bottom:0.75rem;
}

.u-pc-style--3 .product-item .product-name a{
    font-size:1rem;
    font-weight:700;
    /* 
    text-transform:uppercase;
    letter-spacing:1pt;
    */
    
    line-height:1.1;
    text-decoration:none;
    margin:0 0 0 0;
    padding:0 0 0 0;
}
.u-pc-style--3 .product-item .product-name a:hover{
    text-decoration:none;
}
.u-pc-style--3 .product-item .product-code{
    padding-top: 0rem;
    padding-bottom: 0.5rem;
    font-size: 0.675rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
    line-height: 1;
    /*
    background-color:yellow;
    width:50%;
    float:left;
    */
    
}
.u-pc-style--3 .product-item .product-code span{
    display:inline-block;
}
.u-pc-style--3 .product-item .code-label{
    display:none;
}
.u-pc-style--3 .product-item .code-value{
}
.u-pc-style--3 .product-item .product-price{
    padding-top: 0rem;
    padding-bottom: 0rem;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
    line-height: 1;
    /*
    background-color:pink;
    width:50%;
    float:left;
    */
    
}
.u-pc-style--3 .product-item .product-price span.price-label{
    display:none;
}
.u-pc-style--3 .product-item .product-price-label{
    
}
.u-pc-style--3 .product-item .product-price-base_price{
    font-weight:var(--font-bold);
}
.u-pc-style--3 .product-item .product-quantity{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
    display:none;
}
.u-pc-style--3 .product-item .product-details{
    padding:0.5rem 0 0 0;
    
    width:49%;
    display:inline-block;
    
}
.u-pc-style--3 .product-item .purchase-buttons{
    /*
    padding-top:0rem;
    padding-bottom:0rem;
    
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items: center;
    */
    
    width:49%;
    display:inline-block;
    text-align:right;
    
    vertical-align:top;
    
    padding:0 0.5rem 0.5rem 0;
}

.u-pc-style--3 .product-item .purchase-buttons > * {
    /*
    flex: 1;
    */
}
.u-pc-style--3 .product-item .purchase-buttons form{
    display:block;
    margin:0rem 0rem;
}
.u-pc-style--3 .product-item .purchase-buttons > :first-child {
    display:none;
}
.u-pc-style--3 .product-item .purchase-buttons .c-button{

    display:inline-block;
    /* border-radius:0px !important; */
    font-weight:var(--font-bold);
    text-transform:uppercase;
    letter-spacing:1pt;
    

    border: none !important;
    outline:none !important;
    background-color: var(--gray-600);
	color: var(--white);
    
    padding:0.75rem 1.25rem;
    margin:0;
  
}
.u-pc-style--3 .product-item .purchase-buttons .c-button:hover,
.u-pc-style--3 .product-item .purchase-buttons .c-button:focus,
.u-pc-style--3 .product-item .purchase-buttons .c-button:active{
   
    background-color: var(--black);
	color: var(--white); 
    
}




/***** HOT SPOTS ITEMS  *********/
.hot-spot-trigger{
    display:block;
    font-size:1rem;

    width:44px;
    height:44px;
    line-height:44px;


    margin-left:-22px;
    margin-top:-22px;

    text-align:center;
    text-decoration:none;

    border-radius:50%;
    transition: all 0.35s ease;
}

.hotspot-content-item-title-trigger{
    display:block;
    font-size:0.875rem;

    width:36px;
    height:36px;
    line-height:36px;


    margin-left:0px;
    margin-top:0px;

    text-align:center;
    text-decoration:none;

    border-radius:50%;
    transition: all 0.35s ease;
}

.hotspot-content-item-title-trigger{
    position:relative;
}

.hot-spot-trigger span,
.hotspot-content-item-title-trigger span{
    transition: opacity 0.35s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.dwg-hot-spots-layout-style-1 .hot-spot-trigger span.u-icon-add,
.dwg-hot-spots-layout-style-1 .hotspot-content-item-title-trigger span.u-icon-add{
    opacity:1;
}
.dwg-hot-spots-layout-style-1 .hot-spot-trigger span.u-icon-subtract,
.dwg-hot-spots-layout-style-1 .hotspot-content-item-title-trigger span.u-icon-subtract{
    opacity:0;
}
.dwg-hot-spots-layout-style-1 .hot-spot-trigger.active span.u-icon-add,
.dwg-hot-spots-layout-style-1 .hotspot-content-item.active .hotspot-content-item-title-trigger span.u-icon-add{
    opacity:0;
}
.dwg-hot-spots-layout-style-1 .hot-spot-trigger.active span.u-icon-subtract,
.dwg-hot-spots-layout-style-1 .hotspot-content-item.active .hotspot-content-item-title-trigger span.u-icon-subtract{
    opacity:1;
}


.dwg-hot-spots-layout-style-1 .hotspot-content-item{
    margin-bottom:0.5rem;
}
.dwg-hot-spots-layout-style-1 .hotspot-content-item-head{
    padding:0.25rem 0;
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items:center;
    gap:1rem;
}
.dwg-hot-spots-layout-style-1 .hotspot-content-item .hotspot-content-item-title{
    display:block;
    font-size:1rem;
    line-height:1.2;
    font-weight:700;
    text-decoration:none;
}
.dwg-hot-spots-layout-style-1 .hotspot-content-item .hotspot-content-item-title:hover{
    text-decoration:none;
}
.dwg-hot-spots-layout-style-1 .hotspot-content-item-body-inner{
    padding:0.25rem 0;
}
.dwg-hot-spots-layout-style-1 .hotspot-content-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.dwg-hot-spots-layout-style-1 .hotspot-content-item.active .hotspot-content-item-body {
    max-height: 600px; /* large enough to fit your content */
}


#hotspot_active_overlay{
    position:fixed;
    width:100%;
    height:100%;
    left:0;
    top:0;
    z-index:25;
    display:none;
}
#hotspot_active_overlay.active {
  display: block;
}

#hotspot_active_content_item{
    position:fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index:26;
    width:86%;
    max-width:640px;
}

#hotspot_active_content_item {
  display:none;
  opacity: 0;
  transition: opacity .35s ease;
}

#hotspot_active_content_item.active {
    display:block;
    opacity: 0;
}

#hotspot_active_content_item.active-show {
    opacity: 1;
}

#hotspot_active_content_item .hotspot-content-item-inner{
    padding:2.75rem;
}

#hotspot_active_content_item .hotspot-content-item-close-trigger{
    display:block;
    font-size:0.875rem;

    width:2.75rem;
    height:2.75rem;
    line-height:2.75rem;

    position:absolute;
    top:0;
    right:0;
    float:right;
    text-align:center;
    text-decoration:none;

    transition: all 0.35s ease;
    color:var(--white);
}
#hotspot_active_content_item .hotspot-content-item-close-trigger:hover{
    color:var(--white);
}
#hotspot_active_content_item .hotspot-content-item-head{
    padding:0.25rem 0 0.5rem 0;
}
#hotspot_active_content_item .hotspot-content-item-title{
    font-size:1.125rem;
    font-weight:700;
    margin:0;
    padding:0;
}




/***** TESTING FLEX COMPONENTS *********/
.dwg-product-carousel-item-wrapper,
.dwg-testimonials-carousel-item-wrapper{
    padding:0rem 2.125rem 1rem 2.125rem;
}

.dwg-icon-columns-section{
    
}





/***** TESTING FLEX HERO *********/
.dwg-hero-slider-section .dwg-carousel .owl-nav{
    margin:0;
}
.dwg-hero-slider-section .dwg-carousel .owl-nav button{
    display:block;
    position:absolute;
    z-index:10;
    top:50%;
    transform:translateY(-50%);
    
    text-decoration:none;
    
    font-size:1.25rem;
    line-height:50px;
    text-align:center;
    
    width:36px;
    height:48px;
    margin:0;
    padding:0;
    background:transparent;
    cursor: pointer;
    border-radius:0;
    
}
.dwg-hero-slider-section .dwg-carousel .owl-nav button:hover{
    background:transparent;
}
.dwg-hero-slider-section .dwg-carousel .owl-nav button.owl-prev{
     left:0px;
    float:left;
}
.dwg-hero-slider-section .dwg-carousel .owl-nav button.owl-next{
    right:0px;
    float:right;
}









/* CATEGORY FILTERING
    =========================================== */
.c-control-grid-toggle{
    border:solid 1px var(--theme-primary-color) !important;
    border-radius:4px;
}
button.c-button.grid-toggle{
    
    color:var(--theme-primary-color) !important;
    background-color:var(--gray-200) !important;
    
    padding:10px 6px 8px 6px;
    border:none !important;
    outline:none !important;
}
button.c-button.grid-toggle.grid-toggle--1-col{
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}
button.c-button.grid-toggle.grid-toggle--2-col{
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}
button.c-button.grid-toggle.grid-toggle--3-col{
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}
button.c-button.grid-toggle.grid-toggle--5-col{
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}


button.c-button.grid-toggle.grid-toggle--s{
    display:block;
}
button.c-button.grid-toggle.grid-toggle--l{
    display:none;
}
@media screen and (min-width: 60em) {
    button.c-button.grid-toggle.grid-toggle--s{
        display:none;
    }
    button.c-button.grid-toggle.grid-toggle--l{
        display:block;
    }
}

button.c-button.grid-toggle:hover,
button.c-button.grid-toggle:focus{
    color:var(--gray-100) !important;
    background-color:var(--theme-primary-color) !important;
}
button.c-button.grid-toggle.active,
button.c-button.grid-toggle.active:hover,
button.c-button.grid-toggle.active:focus{
    color:var(--gray-100) !important;
    background-color:var(--theme-primary-color) !important;
}


button.c-button.c-button--filters{
    border-width:1px  !important;
    outline:none !important;
}
button.c-button.c-button--filters:hover,
button.c-button.c-button--filters:focus{
    outline:none !important;
    border-color:var(--theme-primary-color) !important;
    color:var(--theme-primary-color) !important;
    background-color:var(--gray-200) !important;
}


#product_grid.fade-out {
  opacity: 0;
  transition: opacity .25s ease;
}

#product_grid.fade-in {
  opacity: 1;
  transition: opacity .25s ease;
}
#product_sorting{
    margin-left:0px;
    padding-left:0px;
}
#product_sorting form{
    margin-bottom:0;
}
#product_sorting .c-form-select{
    margin-bottom:0;
}
#product_sorting .c-form-select::before {
    display:none;
}
#product_sorting .c-form-select::after {
	height: 0.75em;
	margin-bottom: 0.25em;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
	width: 0.75em;
}

#product_sorting .c-form-select__dropdown--small {
    font-size: inherit;
    padding: 0.6125rem 0.825rem 0.6125rem 0.675rem;
    width: 100%;
    font-size: 0.75rem;
}



#product_filters{
    
}
.product-filters-inner{
    padding:1rem;
    position:relative;
}
@media screen and (min-width: 60em) {
   .product-filters-inner{
    padding:0.5rem 0.5rem 0.5rem 0.125rem;
    } 
}
.product-filters-header{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items:flex-start;
}
.product-filters-header span,
.product-filters-header a{
    display:block;
}
.product-filters-header span.product-filters-header-title{
}



#product_filters_close{
    line-height:1;
    color:var(--theme-body-color);
    font-size:1rem;
    text-decoration:none;
    margin:0;
    padding:0.25rem;
}
#product_filters_close:hover,
#product_filters_close:focus{
    color:var(--theme-primary-color);
}



.js-filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;

  height: 100%;
  width: 100%;
  background:var(--white);
  transform: translateX(-102%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 25;
}


/* When open */
.js-filter-sidebar.is-open {
  transform: translateX(0);
}
.js-products-col{
    padding-bottom:3rem;
}
/* Product column default (padding = 0) */
.js-products-col {
  transition: padding-left 0.35s ease;
    
}

.js-products-col.with-sidebar-padding {
  padding-left: 0px;
}
@media screen and (min-width: 60em) {
.js-filter-sidebar {
  position: absolute;
  height: 100%;
  width: 320px;
}
.js-products-col.with-sidebar-padding {
  padding-left: 340px;
}  
    
}




/* Category Tree
    =========================================== */
.x-category-tree{
    
}
@media screen and (min-width: 48em) {
.x-category-tree{
}  
}
@media screen and (min-width: 60em) {
.x-category-tree{
}  
}

.x-category-tree .x-category-tree__title{
  display:block !important;  
}
.x-category-tree__heading{
}

.x-category-tree__row{
    visibility: visible !important;
    max-height: none !important;
    opacity: 1 !important;
}
.x-category-tree__row li{
    display:block;
    margin:0;
    padding:0;
}
.x-category-tree__row li.x-category-tree__list--level-1{
    border-top:solid 1px var(--gray-200);
    padding-top:0.375rem;
    margin-top:0.25rem;
}
.x-category-tree__row li.x-category-tree__list--level-2{
    
}

.x-category-tree__row li a.x-category-tree__link{
    margin:0;
    padding:0.25rem 0.25rem;
}
.x-category-tree__row li a.x-category-tree__link:hover{
    text-decoration:none;
}
.x-category-tree__row li.x-category-tree__list--level-1 a{
    font-size:0.875rem;
}
.x-category-tree__row li.x-category-tree__list--level-2 a{
    padding:0.25rem 0.5rem;
    font-size:0.775rem;
}

.x-category-tree__row li.x-category-tree__list--level-1 a.x-category-tree__link.x-category-tree__link--current{
    color:var(--theme-primary-color);
    text-decoration:none;
}

.x-category-tree__row li.x-category-tree__list--level-2 a.x-category-tree__link.x-category-tree__link--current{
    color:blue;
    text-decoration:none;
}
.x-category-tree__row li a.x-category-tree__link:hover{
    color:red;
}




/* Facets Tree
    =========================================== */

.facets-tree{
    border-top:solid 1px var(--gray-200);
    margin-bottom:2.5rem;
}
.facets-tree .facet-item{
    border-bottom:solid 1px var(--gray-200);
    padding-bottom:0.25rem;
    margin-bottom:0.25rem;
}
.facet-item .facet-header{
    margin:0;
    padding:0.3875rem 0.25rem;
}
.facet-item h4.facets-name{
    font-size:0.875rem;
    line-height: 1.2;
    margin:0px;
    padding:3px 30px 0px 0px;
    position:relative;
    color: var(--gray-600);
    
}
.facet-item h4.facets-name:hover{
    cursor:pointer;
}

.facet-item h4.facets-name:after{
    content: "\3d";
    font-family:"ReadyTheme Icons", sans-serif;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    float: right;
    text-align: center;
    font-size:0.775rem;
    line-height: 20px;
    transform: rotate(0deg);
    transition: all .2s ease-in-out;
    
    color:var(--theme-primary-color);
    
}
.facets-tree .facet-item.active h4.facets-name:after{
    transform: rotate(45deg);
}
.facet-item .facet-content{
    margin:0;
    padding:0rem 0.25rem;
    display:none;
}
.facet-item .facet-content label{
    display:block;
    margin-bottom:0.25rem;
}
.facet-item .facet-content input[type="checkbox"]{
    margin-right:0.5rem;
}

.facets-wrapper{
  
}
.facets-wrapper a.facets-view-trigger{
    display:block;
    font-size:1rem;
    text-transform:uppercase;
    line-height:1.2;
    font-weight:700;
    margin:0 0 1rem 0;
    padding:0.75rem;
    
    color:var(--theme-primary-color);
    text-decoration:none;
    
}



/* Small Icons
    =========================================== */

.section-icons--s .media-wrapper{
    max-width:120px;
    margin-left:auto;
    margin-right:auto;
}

.section-divider-half .o-wrapper:before{
    content:'';
    position:absolute;
    left:50%;
    top:5%;
    width:2px;
    height:90%;
    background-color:var(--gray-200);
}

.section-portraits--m .media-wrapper{
    max-width:260px;
    margin-left:auto;
    margin-right:auto;
}

/*
.klaviyo-form-SG4fJ7 .needsclick.kl-private-reset-css-Xuajs1:not([data-testid="form-component"]){
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100%;
    margin: 0px;
    padding: 0px;
    min-height: none !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
}
.klaviyo-form-SG4fJ7 .needsclick.kl-private-reset-css-Xuajs1 [data-testid="form-row"]{
    display: flex;
    flex-direction: row;
    align-items: none !important;
    position: relative;
    flex-basis: 50% !important;
}
*/