/****************/
/* BisQuick 0.3 */
/****************/

/* Variables / Custom Properties */
:root {

  /*  Brand Colours*/
  --primary:   #D6392B;
  --secondary: #FDB813;
  
  /* Font Stacks */
  --font--primary:     'Roboto Slab', serif;
  --font--secondary:   'Work Sans', sans-serif;
  
  /* Colours */
  --action:               var(--secondary);
  --action--hover:        var(--primary);
  --base:               #231F20;
  --light-white:        rgba(255,255,255,.95);
  --light:              #F6F6F6;
  --xmedium:            #B4B8B9;
  --medium:             #4f4f4f;
  
  --border--lighter:      #EAEAEA;
  --border--light:        #D8D8D8;
  
  /* Overrides */
  --text--dark:  var(--base);
  --text--light: var(--light);
  --price:       var(--base);
  --sale:        var(--primary);
  --sku:         var(--xmedium);
  --success:     #008000;
  --warning:     #D22229;
  --caution:     #FFCA00;

  /* Dimensions and Spacing */
  
  --container: 1200px;
  --container--l: 1300px;
  
  --text-medium: 500;
  --text--bold:  700;
  --text--xbold: 800;
  
  --text--xs:  12px;
  --text--s:   14px;
  --text--m:   clamp(0.875rem, calc(0.875rem + ((1vw - 0.3rem) * 0.4167)), 1rem); /* 14-16px */
  --text--xm:  clamp(1rem, calc(1rem + ((1vw - 0.3rem) * 0.5556)), 1.25rem); /* 16-20px */
  --text--l:   24px;
  --text--xl:  28px;
  --text--2xl: 32px;
  --text--3xl: 40px;
  
  --gap:      2rem;
  --gap--xxs: calc(var(--gap) / 8 );
  --gap--xs:  calc(var(--gap) / 4 );
  --gap--s:   calc(var(--gap) / 2 );
  --gap--m:   calc(var(--gap) / 1.25 );
  --gap--l:   calc(var(--gap) * 2 );
  
  --pad--xs:    calc(var(--gap) / 4 );
  --pad--s:     calc(var(--gap) / 2 );
  --pad--m:          var(--gap);
  --pad--l:     calc(var(--gap) * 2 );
  --pad--xl:    calc(var(--gap) * 4 );

  --margin--xs:    calc(var(--gap) / 4 );
  --margin--s:     calc(var(--gap) / 2 );
  --margin--m:          var(--gap);
  --margin--l:     calc(var(--gap) * 2 );
  --margin--xl:    calc(var(--gap) * 4 );
  
  /* Flair */
  --rounded:            4px;
  --text-shadow:        0px 0px 8px rgba(35, 31, 32, 0.7);
  --box-shadow:         0px 0px 32px rgba(0, 0, 0, 0.45);
  --box-shadow--light:  0px 0px 16px rgba(0, 0, 0, 0.1);
  --transition:      all 0.3s;
}

.box-shadow {
  box-shadow: var(--box-shadow);
}

/* Global */
* { 
  font-family: var(--font--primary);
  transition: var(--transition);
}

html {
  scroll-behavior: smooth;
}

.font--secondary {
  font-family: var(--font--secondary);
}

main > section,
main > form > section,
.product > form {
  padding: var(--gap);
}

@media screen and (max-width: 1200px) {
  main > section,
  main > form > section,
  .product > form {
    padding: var(--gap--s);
  }
}

@media screen and (max-width: 406px) {
  main > section,
  main > form > section,
  .product > form {
    padding: var(--gap--xxs);
  }
}

main, .container { max-width: var(--container); margin: 0 auto !important; }

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media screen and (max-width: 1200px) {
  .full-width:not(.hero.full-width) {
    padding: var(--gap);
  }
}

@media screen and (max-width: 576px) {
  .hide-s {
    display: none;
  }
}

@media screen and (max-width: 939px) {
  .hide-m {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .hide-xm {
    display: none;
  }
}

@media screen and (min-width: 938px) {
  .hide-l {
    display: none !important;
  }
}

.bg--primary {   background: var(--primary); }
.bg--secondary { background: var(--secondary); }
.bg--action {    background: var(--action); }
.bg--light {     background: var(--light); }
.bg--white {     background: #fff; }

.text--primary { color: var(--primary); }
.text--secondary { color: var(--secondary); }

.text--title-case { text-transform: initial !important; }
.text--upper-case { text-transform: uppercase; }
.text--lower-case { text-transform: lowercase; }

.rounded {
  border-radius: var(--rounded);
}

nav {
  font-family: var(--font--secondary);
}

fieldset {
  border: none;
  padding: 0;
}

hr {
  max-width: 230px;
  border: 3px solid var(--primary);
  margin-top: var(--gap);
  margin-bottom: var(--gap);
}

.hr--alt {
  max-width: 331px;
  border: 1px solid var(--border--light);
  margin-top: var(--gap);
  margin-bottom: var(--gap);
  margin: var(--gap--l) 0 var(--gap--l) 0;
}

/* Typography */

p, span, em, nav, li, a, select, button { 
  font-family: var(--font--secondary);
  color: var(--medium);
  line-height: 1.4;
  font-size: 15px;
}

h1, .h--1, h2, .h--2, h3, .h--3, h4, .h--4 { 
  font-weight: var(--text--bold);
  line-height: 1.2; 
  text-transform: uppercase;
  color: var(--base);
}
h1, h1 span, .h--1, .h--1 span { font-size: clamp(2.375rem, calc(2.375rem + ((1vw - 0.3rem) * 1.6667)), 3.125rem); } /* 38-50 */
h2, h2 span, .h--2, .h--2 span { font-size: 40px; }
h3, h3 span, .h--3, .h--3 span { font-size: 30px; }
h4, h4 span, .h--4, .h--4 span { font-size: 20px; }

h1 span, h2 span, h3 span, h4 span {
  font-family: var(--font--primary);
}

.text--xs {  font-size: var(--text--xs) }
.text--s {   font-size: var(--text--s) }
.text--m {   font-size: var(--text--m) }
.text--xm {  font-size: var(--text--xm) }
.text--l {   font-size: var(--text--l) }
.text--xl {  font-size: var(--text--xl) }
.text--xxl { font-size: var(--text--xxl) }

.text--center { text-align: center; }
.text--right {  text-align: right; }

.text--medium { font-weight: var(--text--medium);}
.text--bold {   font-weight: var(--text--bold);}
.text--xbold {  font-weight: var(--text--xbold);}

.flex, .flex--column, .flex--center { display: flex; }
.flex--column { flex-direction: column; }
.flex--space-between { justify-content: space-between; }

@media screen and (max-width: 938px) {
  .flex-m--column { flex-direction: column !important; } 
  .flex-m--start { align-items: flex-start !important; }
  .flex-m--end { align-items: flex-start !important; }
}

@media screen and (max-width: 765px) {
  .flex-s--column { flex-direction: column !important; } 
  .flex-s--start { align-items: flex-start !important; }
  .flex-s--end { align-items: flex-start !important; }
}

.grid {         display: grid; }
.block {        display: block; }
.inline-block { display: inline-block; }
.sticky {       position: sticky; }

.col--2, .col--3, .col--4, .col--5, .col--1-2, .col--1-3, .col--2-1, .col--3-1, .col--4-1, .col--1-4, .col--2-1-1 { display: grid; gap: var(--gap); } 

.col--2 {   grid-template-columns: repeat(2, 1fr); }
.col--3 {   grid-template-columns: repeat(3, 1fr); }
.col--4 {   grid-template-columns: repeat(4, 1fr); }
.col--5 {   grid-template-columns: repeat(5, 1fr); }
.col--1-2 { grid-template-columns: 1fr 2fr; }
.col--1-3 { grid-template-columns: 1fr 3fr; }
.col--2-1 { grid-template-columns: 2fr 1fr; }
.col--3-1 { grid-template-columns: 3fr 1fr; }
.col--4-1 { grid-template-columns: 4fr 1fr; }
.col--1-4 { grid-template-columns: 1fr 4fr; }
.col--2-1-1 { grid-template-columns: 2fr 1fr 1fr; }

@media screen and (max-width: 938px) {
  .col-m--1 {   grid-template-columns: 1fr; }
  .col-m--2 {   grid-template-columns: repeat(2, 1fr); }
  .col-m--3 {   grid-template-columns: repeat(3, 1fr); }
  .col-m--4 {   grid-template-columns: repeat(4, 1fr); }
}

@media screen and (max-width: 576px) {
  .col-s--1 {   grid-template-columns: 1fr; }
  .col-s--2 {   grid-template-columns: repeat(2, 1fr); }
  .col-s--3 {   grid-template-columns: repeat(3, 1fr); }
  .col-s--4 {   grid-template-columns: repeat(4, 1fr); }
}

.gap {     gap: var(--gap); }
.gap--xs { gap: var(--gap--xs); }
.gap--s {  gap: var(--gap--s); }
.gap--m {  gap: var(--gap--m); }
.gap--l {  gap: var(--gap--l); }
.no-gap {  gap: 0; }

@media screen and (max-width: 938px) {
  .gap-m {     gap: var(--gap); }
  .gap-m--xs { gap: var(--gap--xs); }
  .gap-m--s {  gap: var(--gap--s); }
  .gap-m--m {  gap: var(--gap--m); }
  .gap-m--l {  gap: var(--gap--l); }
  .no-gap-m {  gap: 0; }  
}

@media screen and (max-width: 576px) {
  .gap-s {     gap: var(--gap); }
  .gap-s--xs { gap: var(--gap--xs); }
  .gap-s--s {  gap: var(--gap--s); }
  .gap-s--m {  gap: var(--gap--m); }
  .gap-s--l {  gap: var(--gap--l); }
  .no-gap-s {  gap: 0; }  
}

.no--list {
  list-style-type: none;
  padding-left: 0;
}

.margin-top--xs { margin-top: var(--margin--xs); }
.margin-top--s {  margin-top: var(--margin--s); }
.margin-top--m {  margin-top: var(--margin--m); }
.margin-top--l {  margin-top: var(--margin--l); }
.margin-top--xl { margin-top: var(--margin--xl); }

.margin-right--xs { margin-right: var(--margin--xs); }
.margin-right--s {  margin-right: var(--margin--s); }
.margin-right--m {  margin-right: var(--margin--m); }
.margin-right--l {  margin-right: var(--margin--l); }
.margin-right--xl { margin-right: var(--margin--xl); }

.margin-bottom--xs { margin-bottom: var(--margin--xs); }
.margin-bottom--s {  margin-bottom: var(--margin--s); }
.margin-bottom--m {  margin-bottom: var(--margin--m); }
.margin-bottom--l {  margin-bottom: var(--margin--l); }
.margin-bottom--xl { margin-bottom: var(--margin--xl); }

.margin-left--xs { margin-left: var(--margin--xs); }
.margin-left--s {  margin-left: var(--margin--s); }
.margin-left--m {  margin-left: var(--margin--m); }
.margin-left--l {  margin-left: var(--margin--l); }
.margin-left--xl { margin-left: var(--margin--xl); }

.no-margin-top {    margin-top: 0; }
.no-margin-bottom { margin-bottom: 0; }

.pad--xs { padding: var(--pad--xs); }
.pad--s {  padding: var(--pad--s); }
.pad--m {  padding: var(--pad--m); }
.pad--l {  padding: var(--pad--l); }
.pad--xl { padding: var(--pad--xl); }

.pad-top--xs { padding-top: var(--pad--xs); }
.pad-top--s {  padding-top: var(--pad--s); }
.pad-top--m {  padding-top: var(--pad--m); }
.pad-top--l {  padding-top: var(--pad--l); }
.pad-top--xl { padding-top: var(--pad--xl); }

.pad-bottom--xs { padding-bottom: var(--pad--xs); }
.pad-bottom--s {  padding-bottom: var(--pad--s); }
.pad-bottom--m {  padding-bottom: var(--pad--m); }
.pad-bottom--l {  padding-bottom: var(--pad--l); }
.pad-bottom--xl { padding-bottom: var(--pad--xl); }

.no-pad-top {    padding-top: 0; }
.no-pad-bottom { padding-bottom: 0; }

button,
input[type = "submit"],
#place_order_button,
body #mc_embed_signup .button {
  font-family: var(--font--secondary);
  border: none;
}

button:hover {
  cursor: pointer;
}

button, .button,
input[type = "submit"],
body #mc_embed_signup .button {
  display: inline-block;
  padding: var(--gap--s) var(--gap);
  text-decoration: none;
}

.button--primary {
  background: var(--primary);
  color: var(--light-white);
  border-radius: var(--rounded);
}
.button--secondary {
  background: var(--secondary);
  color: var(--base);
  border-radius: var(--rounded);
}

.button--primary:hover {
  background: var(--base);
  color: var(--light-white);
}

.button--secondary:hover,
.button--subtle:hover,
.button--copy:hover {
  background: var(--base);
  color: var(--light-white);
}

.button--action,
input[type = "submit"],
#place_order_button,
body #mc_embed_signup .button {
  background: var(--action);
  color: var(--base);
}

.button--action:hover,
input[type = "submit"]:hover,
#place_order_button:hover,
body #mc_embed_signup .button:hover {
  background: var(--primary);
  color: var(--light-white);
}

body #mc_embed_signup .button {
  height: initial;
  line-height: 1.4;
}

.button--subtle,
.button--copy {
  background: var(--light);
  color: var(--base);
  border-radius: var(--rounded);
}

.button--more {
  background: var(--primary);
  border-radius: var(--rounded);
  color: var(--light-white) !important;
  margin-top: var(--gap--m);
}

.button--more:hover {
  background: var(--base);
}

.center--h { justify-content: center !important; }
.center--v { align-items: center; }

/* Accessibility */
.visually-hidden,
#account h1 {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Header */
header {
  background: #fff;
}
header .container {
  width: 100%;
  max-width: var(--container);
}

header > .container {
  padding-top:    var(--pad--m);
  padding-bottom: var(--pad--m);
}

@media screen and (max-width: 1226px) {
  header > .container {
    padding: var(--pad--s);
  }
}

@media screen and (max-width: 938px) {
  header > div {
    justify-content: space-between;  
  }
}

/* Screen Reader Text*/

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Hide/Show */

.nav--mobile-toggle svg {
  color: var(--base);
}

@media screen and (min-width: 938px) {
  .nav--mobile-toggle {
    display: none;
  }
  .nav--desktop {
    display: block;
  }
}

/*Mobile*/
#mobile-nav-btns-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mobile-nav-btns-links li {
  display: inline-block;
  margin-top: 20px;
}
/* Resets */
@media screen and (max-width: 938px) {
  .nav--mobile ul ul {
    list-style: none;
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .nav--mobile .container {
    width: auto !important;
    height: calc(100% - 72px);
    overflow: scroll;
  }
}

/* Controls */
@media screen and (max-width: 937px) {
  .my-account__modal {
    transform: unset !important;
  }
  .nav--mobile .nav-btns {
    position: relative;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    height: 70px;
    padding: 10px 15px;
  }
  .nav--mobile .nav-btns .nav-close,
  .nav--mobile .nav-btns .nav-back {
    height: 50px;
    border-radius: 5px;
    padding: var(--gap--s) var(--gap--s);
  }
  .nav--mobile .nav-btns .nav-close {
    /*margin-left: auto;*/
  }
  .nav--mobile .nav-btns .nav-back {
    display: none;
  }
  body.mega-menu--open .nav--mobile .nav-btns .nav-back {
    display: block;
  }  
}

@media screen and (min-width: 938px) {
  .nav--mobile .nav-btns {
    display: none;
  }
}

/* Base */

@media screen and (max-width: 937px) {
  
  .search--results a {
    padding: 0 !important;
    background: transparent !important;
  }
  
  .nav--mobile {  
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    transform: translateX(-100%);  
    height: 100vh;
    overflow: auto;
    visibility: hidden;
  }
  .nav--mobile[aria-hidden="false"] {
    transform: translateX(0);
    transition: ease all 0.3s;
    visibility: visible;
  }
  
  .nav--mobile .container {
    max-width: none;
    position: relative;
    right: 0;  
  }
   
  .nav--mobile .mega-menu {
    border-top: 1px solid var(--border--lighter);
  }
  
  .nav--mobile[data-level="1"] .container {
    right: 100vw;
  }
  .nav--mobile[data-level="2"] .container {
    right: 200vw;
  }
  
  .nav--mobile > ul > li > a {
    display: block;  
  }
  
  
  .nav--mobile li {  
    border-bottom: 1px solid var(--border--lighter);
  }
  .nav--mobile a {
    padding: 1rem;
    text-decoration: none;    
    color: var(--base);
    background-color: #FFF;
  }
}

/* Mega Menu */

.mega-menu .mega-menu-scroll {
  height: calc( 100vh - 72px );
}

.mega-menu--open .mega-menu {
  position: fixed;
}

@media screen and (max-width: 937px) {
  .nav--mobile .mega-menu {  
    position: absolute;
    z-index: 100;
    width: 100vw;
    height: 100%;    
    background: #fff;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    overflow: auto;
  }
  .nav--mobile > ul > li .mega-menu[aria-hidden="false"] {    
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .nav--mobile .mega-menu > li > a {
    display: block;
    padding: 1rem;
  }
}

/* Panels */

@media screen and (max-width: 937px) {
  .nav--mobile .mega-menu-panel {
    position: fixed;
    z-index: 150;
    width: 100vw;    
    background: #fff;
    top: 0;
    opacity: 0;
    visibility: hidden;
    height: 100%;  
    min-height: 100vh;
    border-bottom: 1px solid var(--border--light);
    transform: translateX(-100%);
  }
  .nav--mobile .has-mega-panel .mega-menu-panel[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);    
  }
  .nav--mobile .mega-menu-panel li.has-mega-dropdown > ul[aria-hidden="true"] {
    display: none;
  }
  .nav--mobile .mega-menu-panel li.has-mega-dropdown > ul[aria-hidden="false"] {
    display: block;
  }
}


/* Dropdown */

@media screen and (max-width: 937px) {
  .nav--mobile li.has-mega-dropdown ul {
    padding-left: 2rem;
    padding-bottom: 1rem;
  }
  .nav--mobile li.has-mega-dropdown li {
    border: none;
  }
  .nav--mobile li.has-mega-dropdown ul a {
    padding: 0.5rem 0;
  }
  li.has-mega-dropdown a:hover span,
  li.has-mega-dropdown ul a:hover {
    color: var(--primary);
  }
}

/* Arrows */

@media screen and (max-width: 937px) {
  .nav--mobile > ul > li.has-mega-menu a {
    display: flex;
    justify-content: space-between;
  }
}


/*  Desktop Menu*/

@media screen and (min-width: 938px) {
  body.mega-menu--open header {
    position: relative;
    z-index: 200;    
  }
  
  body.mega-menu--open::after {
    content: "";
    background: rgba(0,0,0,0.7);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 110;
  }
}

.mega-menu-panel a:hover,
.mega-menu-panel a:hover span {
  color: var(--primary);
}

/* Resets */

@media screen and (min-width: 938px) {
  .nav--desktop ul ul {
    list-style: none;
    padding: 0;
  }
}

/* Base */

@media screen and (min-width: 938px) {
  .nav--desktop img {
    display: block;
  }
  .nav--desktop {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--base);
  }
  .nav--desktop > ul {
    display: flex;
    right: 0;
  }
  .nav--desktop > ul > li {    
    flex-grow: 1;
  }
  .nav--desktop > ul > li.has-mega-menu > .mega-menu {
    top: 100%;
    left: 0;    
    background: #fff;
    pointer-events: none;
    height: 100vh;
  }  
  
  .nav--desktop > ul > li.has-mega-menu > .mega-menu[aria-hidden="true"] {
    height: 0 !important;
  }
  
  .nav--desktop > ul > li.has-mega-menu > .mega-menu[aria-hidden="false"] {
    display: block;
    height: 100vh;
    pointer-events: all;
  }
  .nav--desktop > ul > li > a,
  .nav--desktop > ul > li.current > a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: var(--gap--m) var(--gap--s);
  }
  .nav--desktop > ul > li:hover > a {
    background: var(--secondary);
    color: var(--base);
  }
  .nav--desktop > ul > li > .current {
    color: var(--primary);
    padding: var(--gap--m);
    display: inline-block;
  }
}

@media screen and (max-width: 1170px) {
  .nav--desktop > ul > li > a,
  .nav--desktop > ul > li.current > a {
    padding: var(--gap--s);
  }  
}

@media screen and (max-width: 1000px) {
  .nav--desktop > ul > li > a,
  .nav--desktop > ul > li.current > a,
  .nav--desktop > ul > li > .current {
    padding: var(--gap--s) var(--gap--xs);
  }
  .nav--desktop > ul > li > .current {
    display: inline-block;
    color: var(--border--light);
  }
}

/* Mega Menu */

@media screen and (min-width: 938px) {
  .nav--desktop .mega-menu {
    position: absolute;    
    top: 0;
    display: none;
    height: 0;
  }
  .nav--desktop .mega-menu .mega-menu-scroll {
    overflow: hidden auto;
  }  
  .nav--desktop .mega-menu a {
    text-decoration: none;
  }
  .nav--desktop .mega-menu::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 300px;
    width: 1px;
    height: 100%;
    background-color: var(--border--light);    
  }
  .nav--desktop .mega-menu > .mega-menu-scroll > li {
    width: 300px;
    border-bottom: 1px solid var(--border--light);
  } 
  .nav--desktop .mega-menu > .mega-menu-scroll > li > a {
    display: block;
    padding: var(--gap--s);
  }
  .nav--desktop .mega-menu > .mega-menu-scroll > li > a:hover,
  .nav--desktop .mega-menu > .mega-menu-scroll > li.is-open > a {
    background: #e6e6e6;
  }
}


/* Panels */

@media screen and (min-width: 938px) {
  .nav--desktop .mega-menu-panel {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    z-index: -1;
    background: #FFF;
    width: 500px;
    height: 100%;
  }
  .nav--desktop .mega-menu-panel[aria-hidden="false"] {
    display: block;
    left: 300px;
    transition: ease left 0.4s;
    overflow: scroll;
  }
  .nav--desktop .mega-menu-panel > ul {   
    overflow: auto;
    padding: 2rem 2rem 6rem;
  }
  .nav--desktop .mega-menu-panel > ul > li > a {
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    margin-top: var(--gap--s);
    display: inline-block;
  }
  .nav--desktop .mega-menu-panel > ul > li > a > img {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .nav--desktop .mega-menu-panel > ul > li > ul {
    display: block;
    font-size: 0.875rem;
  }
}

.mega-menu-panel > ul > li:first-of-type {
  grid-column: 1/5;
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
  padding: var(--gap--s);
  align-items: center;
  margin-bottom: 0;
}
@media screen and (min-width: 938px) {
  .mega-menu-panel > ul > li:first-of-type {
    padding: 0;
    margin-bottom: 1rem;
  }
}

.mega-menu-panel > ul > li:first-of-type a {
  color: var(--primary);
}

.mega-menu-panel > ul > li:first-of-type a:hover {
  color: var(--action);
}

/* Hide Arrows */

@media screen and (min-width: 938px) {
  .nav--desktop .mega-menu-panel > ul > li > a > svg,
  .nav--desktop .mega-menu-panel > ul > li > svg,
  .nav--desktop > ul > li.has-mega-menu > a > svg,
  .nav--desktop .mega-menu > .mega-menu-scroll > li.has-mega-panel > a > svg,
  .nav--desktop .mega-menu-panel > ul > li.has-mega-dropdown > a > svg,
  .nav--desktop .mega-menu-panel > ul > li.has-mega-dropdown > svg.fa-minus {
    display: none;
  }
  .nav--desktop .mega-menu-panel > ul > li > a span {
    font-size: 18px;
  }
  .nav--desktop .mega-menu-panel > ul > li.has-mega-dropdown > svg.fa-plus {
    display: inline-block;
  }
  .nav--desktop .mega-menu-panel > ul > li.has-mega-dropdown > svg.fa-minus:hover, .nav--desktop .mega-menu-panel > ul > li.has-mega-dropdown > svg.fa-plus:hover {
    cursor: pointer; 
    color: var(--primary);
    transition: all 0s;
  }
  .nav--desktop .mega-menu-panel > ul > li > ul {
    transition: 0s;
  }
}

@media screen and (max-width: 937px) {
  .mega-menu .mega-menu-scroll {    
    overflow: auto;
  }
}
@media screen and (max-width: 937px) {
  body.mega-menu-panel--open .nav--mobile .container {
    overflow: hidden;
  }
}


header form {
  margin-top: var(--gap--s);
}

header form input[type = "text"], 
.mobile--search form input[type = "text"] {
  padding: var(--gap--s);
  height: 49px;
  width: 100%;
  border: 2px solid var(--border--light);
  border-top-left-radius:    10px;
  border-bottom-left-radius: 10px;
  font-family: var(--font--secondary);
  margin-bottom: 0;
}

.mobile--search form input[type = "text"] {
  border-top-right-radius:    0;
  border-bottom-right-radius: 0;
}

header form button[type = "submit"],
.mobile--search form button[type = "submit"] {
  border-top-right-radius:    10px;
  border-bottom-right-radius: 10px;
  background: var(--primary);
  border: 0;
  height: 49px;
  width: 75px;
  float: right;
  color: var(--light-white);
  font-size: 18px;
  transition: var(--transition);
  padding: 0;
}

header form button[type = "submit"]:hover,
.mobile--search header form button[type = "submit"]:hover {
  cursor: pointer;
  background: var(--base);
}

.mobile--search {
  padding: var(--gap--s);
}

.search--wrapper,
.mobile--search,
.search--wrapper form,
.mobile--search form {
  position: relative;
}

.search--results,
.cart--contents {
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: var(--gap--s);
  position: absolute;
  z-index: 10000;
  border-radius: 10px;
  display: none;
}

.search--results {
  left: 0;
  width: 100%;
}

@media (min-width: 938px) {
  .search--results {
    top: 121px;
  }
}

@media (min-width: 1123px) {
  .search--results {
    top: 117px;
  }
}

@media (min-width: 1227px) {
  .search--results {
    top: 93px;
  }
  _::-webkit-full-page-media, _:future, :root .search--results {
    top: 117px;
  }
}


.mobile--search .search--results {
  top: 65px;
  margin: 0 20px;
  width: calc( 100% - 40px);
}
.search--results input {
 display:none;
}

header .search--results form {
 margin-top:0;
}
header .search--results form button,
.mobile--search .search--results form button {
 padding: 0 !important;
 background: transparent !important;
 color: var(--base);
 float:none;
 width:auto;
 height:auto;
}
header .search--results form button:disabled,
.mobile--search .search--results form button:disabled {
	opacity: 0.25;
	cursor: not-allowed;
}


.nav--desktop .container {
  /* position: relative; */
  overflow: show;
}

.nav--desktop > ul > li:last-child {
  position: relative;
}

.cart--contents {
  top: 62px;
  right: 0;
  width: 400px;
}

.search--results ul,
.cart--contents ul {
  list-style-type: none;
  padding-left: 0;
}

.search--results li,
.cart--contents li {
  margin-top: var(--margin--xs);
  margin-bottom: var(--margin--xs);
  display: grid;
  align-items: center;
  gap: var(--gap--s);
  padding-bottom: var(--margin--xs);
}

.search--results li {
  grid-template-columns: 55px 1fr 32px;
}

.cart--contents li {
  grid-template-columns: 55px 1fr;
}

.search--results li:first-child,
.cart--contents li:first-child {
  margin-top: 0;
}

#cart--items + ul li {
  display: flex;
  margin-top: var(--gap);
}

.cart--contents li:last-child a {
  margin-left: auto;
  margin-right: auto;
}

.search--results a,
.cart--contents a {
  color: var(--base);
  text-decoration: underline;
  font-weight: 700;
}

.search--results a:hover,
.cart--contents a:hover {
  color: var(--primary);
}

.search--results .price.regular,
.cart--contents .price.regular {
  color: var(--medium);
  text-decoration: line-through;
  font-size: var(--text--xs);
}

.cart--contents img {
  max-height: 55px;
  margin: 0 auto;
}

/* Slider */
.slider,
.blocks--feature {
  background-image: url("/img/wood-bg.jpg");
  padding: var(--gap--l) var(--gap);
}

.blocks--feature > div {
  display: flex;
  flex-direction: column;
  gap: var(--gap--l);
}

.blocks--feature article {
  padding: var(--gap);
  background-size: cover;
  display: flex;
}

.blocks--feature article.feature--right {
  justify-content: flex-end;
}

.blocks--feature article.feature--centre {
  justify-content: center;
  padding: var(--gap--l);
}

.blocks--feature article.feature--image {
  justify-content: center;
  padding: 0;
}

.blocks--feature article div {
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  max-width: 500px;
  padding: var(--gap);
  box-shadow: var(--box-shadow--light);
}

.blocks--feature h1,
.blocks--feature h2 {
  text-transform: initial;
  max-width: 500px;
}

.blocks--feature hr {
  margin-left: 0;
}

.blocks--feature a {
  text-decoration: none;
}

.blocks--feature a:hover h1 {
  color: var(--action);
}

.blocks--feature h1 {
  font-size: var(--text--3xl);
}

.blocks--feature h2 {
  margin-top: var(--margin--m);
  font-size: var(--text--l);
  font-weight: 400;
  font-family: var(--font--secondary);
}

.slider img {
  margin: var(--gap) auto;
  box-shadow: var(--box-shadow);
}

@media screen and (max-width: 576px) {
  .blocks--feature { background: none; padding: 0 0 var(--gap); }
  .blocks--feature > div { gap: 0; } 
  .blocks--feature h1 { font-size: var(--text--l); }
  .blocks--feature h2 { font-size: var(--text--xm); }
}

/* Store Locator */
.store--locator {
  border-radius: var(--rounded);
  background: var(--light);
  padding: var(--gap);
  max-width: 292px;
}

@media screen and (max-width: 937px) {
  .search--wrapper,
  .store--locator {
    display: none;
  }  
  .mobile--store.store--locator {
    display: block;
    max-width: 100%;
  }
  .mobile--store.store--locator span {
    display: block;
  }
}

.store--locator a {
  text-decoration: none;
  background: var(--primary);
  padding: .25rem 1rem;
  color: var(--light-white);
  margin-top: var(--margin--s);
}

.store--locator a:hover {
  background: var(--secondary);
  color: var(--base);
}

.store--open {
  color: var(--success);
}

.store--closed {
  color: var(--error);
}

.store-chooser__overlay,
.my-account__overlay,
.consultation__overlay,
.quote__overlay {
  position: fixed;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: rgba(35,31,32,0.8);
  transition: ease all 0.3s;
}

.store-chooser__overlay.is-open,
.my-account__overlay.is-open,
.consultation__overlay.is-open,
.quote__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

@media screen and (max-width: 699px) {
  .store-chooser__overlay,
  .my-account__overlay,
  .consultation__overlay,
  .quote__overlay {
    align-items: flex-start;
  }
  .store-chooser__modal,
  .my-account__modal,
  .consultation__modal,
  .quote__modal {  
    top: 2rem;
    height: calc(100vh - 4rem);
  }
}

.store-chooser__modal {
  width: 782px;  
}

.my-account__modal {
  width: 389px;  
}

.my-account__modal p a:hover {
  color: var(--primary);
}

.consultation__modal,
.quote__modal {
  width: 640px;  
}

.store-chooser__modal,
.my-account__modal,
.consultation__modal,
.quote__modal {
  max-width: 90%;
  position: relative;
  background: #fff;
  padding: 32px;
  transition: ease all 0.3s;
  transform: translateY(-100px);
  border-radius: var(--rounded);
}
.store-chooser__modal > div,
.my-account__modal > div,
.consultation__modal > div,
.quote__modal > div {
  overflow: auto;
  height: 100%;
}

.store-chooser__modal .locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

@media screen and (max-width: 576px) {
  .store-chooser__modal .locations {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }  
}

.store-chooser__modal .locations ul {
  list-style-type: none;
  padding-left: 0;
}

.store-chooser__modal .locations li:first-of-type a {
  text-decoration-color: var(--primary);
}

.store-chooser__modal .locations li:first-of-type a:hover h4 {
  color: var(--action);
}

.store-chooser__modal .locations li:first-of-type a:hover {
  text-decoration-color: var(--action);
}

.store-chooser__modal .locations h4 {
  color: var(--primary);
  margin-bottom: var(--gap--s);
}

.store-chooser__modal .locations li:last-of-type {
  margin-top: var(--margin--s);
}

.store-chooser__overlay.is-open .store-chooser__modal,
.my-account__overlay.is-open .my-account__modal,
.consultation__overlay.is-open .consultation__modal,
.quote__overlay.is-open .quote__modal {
  transform: translateY(0);
}

.store-chooser__close,
.my-account__close,
.consultation__close,
.quote__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.store-chooser__close svg:hover,
.my-account__close svg:hover,
.consultation__close svg:hover,
.quote__close svg:hover {
  color: var(--primary);
}

.store-chooser__modal h3,
.my-account__modal h3,
.consultation__modal h3,
.quote__modal h3 {  
  text-transform: uppercase;
  font-size: clamp(1.75rem, calc(1.75rem + ((1vw - 0.3rem) * 1.2821)), 2.25rem);
}

.log-in--form,
.consultation--form {
  margin-top: var(--gap);
}

.log-in--links {
  display: flex;
  justify-content: space-between;
  margin-top: var(--gap--m);
}

.log-in--links a {
  font-family: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.log-in--links a:hover {
  color: var(--primary);
}

.log-in--submit {
  margin-top: var(--gap-m);
}

.log-in--submit button {
  width: 100%;
}

.mobile--cart svg {
  color: var(--base);
  font-size: 1.5em;
}

.items svg {
  color: var(--primary);
  scale: 1.25;
}

.items:hover svg {
  color: var(--base);
}

@media screen and (min-width: 938px) {
  .mobile--items {
    display: none;
  }  
}

/* Indexes */
.products,
.departments,
.filters + section .products,
.products.related--products {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap--s);
}

.loading {
  color: var(--xmedium);
  text-align: center;
  margin-top: var(--gap--m);
}

@media screen and (min-width: 376px) {
  .products,
  .departments,
  .filters + section .products,
  .products.related--products {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .loading {
    grid-column: 1/3;
  }
}

@media screen and (min-width: 767px) {
  .products,
  .departments,
  .filters + section .products,
  .products.related--products {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .loading {
    grid-column: 1/4;
  }
}

@media screen and (min-width: 1051px) {
  .products,
  .departments,
  .products.related--products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.products article,
.departments article,
.product .product--thumbs img,
.blogs article,
.product-alikes article {
  border: 1px solid var(--border--light);
}

.products article > div,
.departments article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap);
}

.departments article img {
  width: 100%;
  height: 262.3px;
  object-fit: contain;
}

.products article > div {
  padding: var(--gap--s);
  height: 100%;
}

@media screen and (max-width: 576px) {
  .products article > div {
    padding: var(--gap--xs);
  }
}

.products article:hover,
.departments article:hover,
.blogs article:hover {
  box-shadow: var(--box-shadow--light);
}

.products article a,
.departments article a,
.product-in-cart a {
  text-decoration: none;
}

.products article a:hover h3,
.departments article a:hover h2,
.product-in-cart a:hover h3,
.blogs article a:hover h3 {
  color: var(--primary);
}

.product-attributes {
  margin-top: var(--margin--m);
}

.product-attributes table {
  border-collapse: collapse;
}

.product-attributes table tr td,
.product-attributes table tr td strong {
  font-family: var(--font--secondary);
}

.product-attributes table tr td {
  font-weight: 400;
  border: 1px solid var(--border--light);
  padding: var(--gap--xs);
}

.product-attributes table tr td:first-child {
  text-align: right;
}
.product-alike-wrapper {
  margin-bottom: var(--gap--m);
}
.product-alikes {
  display: flex;
  column-gap: var(--gap--xs);
  row-gap: var(--gap--xs);
  flex-wrap: wrap;
}
.product-alikes article:hover {
  border-color: var(--primary);
}
.product-alikes .selected {
  background-color: var(--primary);
}
.product-alikes .selected h3 {
  color: #fff;
}
.product-alikes .selected p {
  color: var(--light);
  margin-top: 0;
  text-align: center;
}
.product-alikes .selected p span {
  color: var(--light);
}

.product-alikes .selected a {
  pointer-events: none;
}
.product-alikes a {
  text-decoration: none;
  text-align: center;
}
.product-alikes h3 {
  font-size: 16px;
  color: var(--primary); 
  text-transform: none; 
}
.product-alikes article {
  padding: var(--gap--xs) var(--gap--s);
  border-radius: var(--rounded);
}
.product--bug {
  margin-top: var(--gap--l);
  text-align: right;
}

.product--bug a {
  font-size: var(--text--xs);
}

.product--bug a:hover {
  color: var(--primary);
}

.bulk--discount {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--light);
}

@media screen and (min-width: 900px) {
  .bulk--discount {
    flex-direction: row;
  }  
}
@media screen and (max-width: 899px) {
  .bulk--discount img {
    margin-left: 1rem;
  }
  .bulk--discount {
    margin-top: var(--gap--s);
    padding-top: .5rem;    
    align-items: flex-start;
  }
}

.bulk--discount p {
  background: var(--light);
  padding: 0.5rem 1rem;
  font-size: 14px;
}

.bulk--discount strong {
  color: var(--primary);
  text-decoration: underline;
}

.bulk--discount span {
  font-size: 14px;
  text-decoration: underline;
}

.bulk--discount img {
  max-width: 180px;
}

/* Filters */

@media screen and (min-width: 939px) {
  .filters > button {
    display: none;   
  }
}

@media screen and (max-width: 938px) {
  .filters > div {
    display: none;
    padding: var(--pad--m);
    background: var(--light);
    border-radius: var(--rounded);
  }
}

.filters fieldset legend {
  font-size: var(--text--xm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters .filter-toggle:hover legend {
  color: var(--primary);
}

.filters .filter-toggle + div {
  transition: var(--transition);
}

.filters .filter-toggle + div.is-closed {
  display: none;
}

.filters .filter-toggle + div.is-open {
  display: block;
}

.filters fieldset > div {
  margin-top: var(--gap--xs);
  display: none;
}

.filters fieldset:not(:first-child) {
  margin-top: var(--gap--m);
}

.filters fieldset label {
  line-height: 1.5;
  text-indent: -21px;
  padding-left: 23px;
}

.filters fieldset label:not(:first-child) {
  margin-top: var(--gap--xs);
}

.filters label:hover {
  color: var(--primary);
  cursor: pointer;
}

.results {
  display: flex;
  gap: var(--gap);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--gap--l);
  margin-bottom: var(--gap--m);
  flex-wrap: wrap;
}

.results span {
  text-decoration: underline;
}

.clear--filters {
  margin-top: var(--gap--m);
  display: block;
  text-align: center;
}

/* Products */

.sku,
.mfr-code {
  text-transform: uppercase;
  color: var(--sku);
  font-size: var(--text--s);
  display: inline-block;
  letter-spacing: -0.5px;
}

.products article.sale,
.products article.clearance,
.products article.delivery,
.product .wrapper--zoom {
  position: relative; 
}

.icon--sale,
.icon--clearance {
  position: absolute;
  top: 0.5rem;
  z-index: 2;
}

.icon--sale,
.icon--clearance {
  max-width: 45px;
  left: 0.5rem;
  rotate: -15deg;
}

.products article.sale {
  border: 1px solid var(--primary);
}

.products article.clearance {
  border: 1px solid var(--secondary);
}

.products article h3,
.product-in-cart h3 {
  font-size: var(--text--xm);
  text-transform: none;
}

.products article h3 {
  margin-top: var(--gap--m);
  overflow-wrap: anywhere;
}

.product > .col--1-2 {
  grid-template-columns: 1fr 2.0fr;
}

@media screen and (max-width: 1024px) {
  .product > .col--1-2 {
    grid-template-columns: 1fr;
  }  
}


.product > form > section {
  padding: 0;
}

.products article em,
.product .wrapper--price em,
.banner--notice .wrapper--price em,
.banner--top .wrapper--price em {
  font-style: normal;  
}

.price,
.uom {
  line-height: 1;
}

.products article img,
.product .product--thumbs img,
.search--results li img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.products article .wrapper--price,
.product .wrapper--price,
.banner--notice .wrapper--price {
  display: grid;
  grid-template-columns: auto 2fr;
  gap: var(--gap--s);
  margin-bottom: var(--gap--xs);
  align-items: flex-end;
}

.products article .wrapper--price.account,
.product .wrapper--price.account {
  grid-row-gap: var(--gap--xs);
}

.products article .wrapper--price + div {
  display: flex;
  gap: 2px;
}

.product .wrapper--price {
  margin: var(--gap--m) 0;
}

@media screen and (max-width: 576px) {
  .products article .wrapper--price {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap--xs);
  }
  
  .product .wrapper--price {
    margin: var(--gap--m) 0 0;
  }
}

.products article .price,
.product .price,
.product-in-cart .price,
.product-in-cart .subtotal {
  font-size: var(--text--l);
  font-weight: var(--text--bold);
  line-height: 1;
}

.products article .account em:not(.price.regular),
.product .account em:not(.price.regular) {
  color: var(--success) !important;
}

.products article .price.regular,
.product .price.regular,
.product-in-cart .price.regular {
  color: var(--medium);
  font-size: var(--text--m);
  text-decoration: line-through;
  display: flex;
  align-items: flex-end;
}

.products article .account:after,
.product .account:after {
  content: "(Your Account Price)";
  color: var(--xmedium);
  font-size: var(--text--s);
  font-weight: 500;
  display: block;
  grid-column-start: 1;
  grid-column-end: 3;
}

.product .account:after {
  text-align: right;
}
.product article.product-alike .account:after {
  display: none;
}
@media screen and (max-width: 600px) {
  .products article .account:after,
  .product .account:after {
    text-align: center;
    font-size: var(--text--xs);
  }
}

.product .price.regular {
  font-size: var(--text--xl);
}

.price.regular + .price {
  color: var(--primary);
}

.product .price {
  font-size: var(--text--3xl);
}

.products article form {
  display: flex;
  gap: 0;
}

.products article input[type="number"],
.product input[type="number"],
.product-in-cart input[type="number"] {
  width: 75px;
  font-family: var(--font--secondary);
  text-align: center;
  height: 40px;
  border: 1px solid var(--border--light);
  border-top-left-radius:    var(--rounded);
  border-bottom-left-radius: var(--rounded);
  padding: var(--gap--xs);
}

@media screen and (max-width: 640px) {
  .products article input[type="number"] {
    width: 45px;
  }
}

.product input[type="number"] {
  width: 105px;
}

.products article button,
.product button {
  background: var(--action);
  padding: var(--pad--xs) var(--pad--s);
  border-top-right-radius:    var(--rounded);
  border-bottom-right-radius: var(--rounded);
}

.products article button[disabled],
.product button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

@media screen and (max-width: 1024px) {
  .products article button,
  .product button {
    padding: var(--pad--xs);
    font-size: var(--text--m);
  }  
}

.products article button:hover,
.product button:hover {
  background: var(--action--hover);
  color: var(--light-white);
}

#content.product #cart--add {
  display: flex;
  gap: 3px;
}

#content.product #qty {
  height: 50px;
}

#content.product #cart--add-button {
  font-size: 24px;
  padding: var(--pad--xs) var(--pad--m);
  color: var(--base);
}

#content.product #cart--add-button:hover {
  color: var(--light-white);
}

.add-all-to-cart {
  display: none;
}

@media screen and (min-width: 768px) {
  .add-all-to-cart {
    display: block;
    position: sticky;
    z-index: 3;
    bottom: 0;
    padding: var(--gap--s);
    text-align: right;
    grid-column: 1/4;
  }
}

#product-zoom {
  border: solid 1px var(--border--light) !important;
  width: 100%;
  height: auto;
}
.product .wrapper--zoom {
  max-width: 350px;
}
.product .wrapper--zoom.sale #product-zoom {
  border: 1px solid var(--primary);
}

.product .wrapper--zoom.clearance #product-zoom {
  border: 1px solid var(--secondary);
}

#product-zoom figure {
  display: flex;
}

@media screen and (max-width: 939px) {
  #product-zoom {
    width: auto;
  }
  
  #product-zoom figure {
    max-height: 30vh;
    max-width: 30vh;
    margin: 0 auto;
  }
}

#product-zoom figure img {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mz-hint-message {
  color: var(--light-white);
}

.product .product--thumbs {
  margin-top: var(--margin--s);
}

@media screen and (max-width: 1024px) {
  .product--thumbs {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mz-thumb.mz-thumb-selected img,
.mz-thumb:hover{
  outline: 1px solid var(--primary) !important;
  border: 0px solid transparent !important;
}

a[data-zoom-id] img:hover,
a[data-zoom-id]:hover,
.mz-thumb img:hover,
.mz-thumb:hover{
  border-bottom: 0px solid transparent;
}

.mz-thumb.mz-thumb-selected:hover{
   border-bottom: 1px solid transparent !important; 
}

.mz-thumb:not(.mz-thumb-selected):hover img {
  border-bottom-color: transparent;
}

.MagicZoom { display:inline-block; }
.MagicZoom, .MagicZoom img, .mz-zoom-window img { aspect-ratio:1 /1 !important;
object-fit:contain; max-height:none !important; }
.mz-zoom-window img { height:auto !important; }

.MagicZoom { display:block; width:100%;height:100%; aspect-ratio: 1 / 1; }
.MagicZoom figure { display:block; width:100%;height:100%; aspect-ratio: 1 / 1;
}
.MagicZoom figure img { display:block; width:100%;height:100%; aspect-ratio: 1 /
1; max-height:100% !important;max-width:100% !important; }
.MagicZoom, .MagicZoom img, .mz-zoom-window img { aspect-ratio:1 /1 !important;
object-fit:contain; max-height:none !important; }
.MagicZoomPlus figure .mz-zoom-window img { height:auto !important; min-width:
100%; min-height: 100%; max-width:none !important; max-height:none !important;
width:auto !important; }
.mz-zoom-window.mz-magnifier { background:#fff;}

.product--videos {
  display: block;
}

@media screen and (min-width: 660px) {
  .product--videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }
}

.product .video > div {
 margin-top: var(--margin--m);
 padding-top: 56.25%; /* 16:9 */
 position: relative;
}
.product .video > div > iframe {
 position:absolute;
 top:0; left:0; right:0; bottom:0;
 width:100%;
 height: 100%;
}

.product .variations {
  margin: var(--margin--m) auto;
}

.variations ul {
  list-style-type: none;
  padding-left: 0;
}

.variations li {
  text-align: center;
  border: 1px solid var(--xmedium);
  border-radius: var(--rounded);
  padding: 0;
  transition: var(--transition);
}

.variations li:hover {
  border: 1px solid var(--primary);
}

.variations li:hover {
  border: 1px solid var(--primary);
}

.variations li a {
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 0.5rem;
}

.variations li a:hover .product__variation__title,
.variations li a:hover .product__variation__price {
  color: var(--light-white);
}

.variations .title {
  color: var(--base);
  display: block;
}

.variations .price {
  color: var(--medium-gray);
  display: block;
  font-size: var(--text--l);
  margin-top: var(--margin--xs);
}

.product .attributes {
  color: var(--black);
  margin-top: 2rem;
}

.product .attributes table {
  border-collapse: collapse;
}

.product .attributes table td {
  border: 1px solid var(--border--light);
  padding: 0.5rem;
  margin: 0;
  font-size: 15px;
}

.product .attributes table td,
.product .attributes table td strong {
  font-family: var(--font--secondary);
}

.product .attributes table tr:nth-child(odd) {
  background-color: var(--border--lighter);
}

.product .inventory {
  padding: var(--pad--s);
  background: var(--light);
  margin-top: var(--margin--xs);
  width: 100%;
}

.product form > section:last-child .inventory {
  display: none;
}

@media screen and (max-width: 1024px) {
  .product form > section:first-child .inventory {
    display: none;
  }
  .product form > section:last-child .inventory {
    display: block;
  }
}

.product .inventory ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  /*gap: 8px;*/
}

.product .inventory li {
  line-height: 1.75;
  display: flex;
  justify-content: space-between;/*
  display: flex;
  flex-direction: column;*/
}
.product .inventory li .inventory--location {
  min-width: 115px; 
}
/*.product .inventory li .inventory--location {
  font-weight: bold;
  margin-right: 1em;
}*//*
.product .inventory li .inventory--location span {
  font-weight: normal;
}*/
.product .inventory li.no-stock, .product .inventory li.no-stock span {
  color: var(--xmedium);
}

.product .inventory li.loading, .product .inventory li.loading span {
  color: var(--base);
  text-align: left;
  margin-top: 0;
}

.product .inventory li.loading {
  color: var(--base);
  text-align: left;
  margin-top: 0;
}

.wrapper--sku-print {
  display: flex;
  align-items: center;
  gap: var(--gap--s);
  margin-top: var(--margin--xs);
  flex-wrap: wrap;
}

.wrapper--sku-print > div {
  display: flex;
  gap: var(--gap--m);
}

.product--print {
  text-decoration: none;
  font-size: var(--text--s);
  margin-left: auto;
}

@media screen and (max-width: 640px) {
  .wrapper--sku-print {
    flex-direction: column;
    align-items: flex-start;
  }
  .product--print {
    margin-left: inherit;
  }
}

.product--print:hover {
  text-decoration: underline;
}

/* Messages and Alerts */

.success,
.warning,
.error{
  padding: var(--gap--xs);
  font-family: var(--font--secondary);
  background: var(--light);
  margin: var(--gap--m) 0;
}

.success {
  border-left: 4px solid var(--success);
}

.warning{
  border-left: 4px solid var(--caution);
}

.error {
  border-left: 4px solid var(--warning);
}

/* Departments Index */

.departments article h2 {
  font-size: var(--text--m);
  text-transform: initial;
  padding: var(--gap--s);
  text-align: center;
  line-height: 1.3;
}

.expanded-search {
  margin-top: var(--gap--l);
}

.expanded-search .departments {
  margin-top: var(--gap--m);
  display: flex;
  flex-wrap: wrap;
}

.expanded-search .departments article img {
  height: auto;
}

/* Brands */
.brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap--l);
  padding: var(--gap);
  align-items: center;
}

@media screen and (max-width: 938px) {
  .brands {
    grid-template-columns: repeat(3, 1fr);
    padding: var(--gap--s);
  }  
}

@media screen and (max-width: 938px) {
  .brands {
    grid-template-columns: repeat(3, 1fr);
    padding: var(--gap--s);
  }  
}

@media screen and (max-width: 600px) {
  .brands {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap--m);
  }  
}


/* Newsletter */
.newsletter {
  background-image: url("/img/wood-bg.jpg");
  padding-top:    var(--pad--l);
  padding-bottom: var(--pad--l);
}

@media screen and (max-width: 1200px) {
  .newsletter {
    padding: var(--gap);
  }
}

@media screen and (max-width: 576px) {
  .newsletter h3 {
    margin-top: var(--gap--s);
    font-size: var(--text--m);
  }
}

/* Form Inputs (forms) */

input[type = "text"],
input[type = "tel"],
input[type = "email"],
input[type = "password"],
textarea {
  padding: var(--gap--s);
}

input[type = "text"],
input[type = "tel"],
input[type = "email"],
input[type = "password"],
textarea,
#account select,
#account input[type = "date"] {
  width: 100%;
  border: 2px solid var(--border--light);
  font-family: var(--font--secondary) !important;
  margin-bottom: var(--gap--s);
}

input[type = "text"],
input[type = "tel"],
input[type = "email"],
input[type = "password"],
#account select,
#account input[type = "date"] {
  height: 38px;
}

input[type = "submit"]:hover,
#place_order_button:hover {
  cursor: pointer;
}

select {
  background: #fff;
  border: 1px solid var(--border--light);
  padding: 4px 16px;
  border-radius: var(--rounded);
  overflow: hidden;
}

select:hover {
  box-shadow: var(--box-shadow--light);
  border: 1px solid var(--primary);
  cursor: pointer;
}

label {
  font-family: var(--font--secondary);
  color: var(--base);
  line-height: 1.4;
  display: block;
}

label span {
  color: var(--xmedium);
}

input[type=checkbox] {
  accent-color: var(--primary);
}

input[type=checkbox]:hover {
  border-color: var(--primary);
}

.required-field {
  color: var(--warning);
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox],
  input[type=radio] {
    --active: var(--primary);
    --active-inner: #FFF;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: var(--border--light);
    --border-hover: var(--primary);
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 18px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type=checkbox]:after,
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=checkbox]:checked,
  input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type=checkbox]:disabled,
  input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=checkbox]:disabled:checked,
  input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=checkbox]:disabled + label,
  input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  
  input[type=checkbox]:hover:not(:checked):not(:disabled),
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:focus,
  input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type=checkbox]:not(.switch),
  input[type=radio]:not(.switch) {
    width: 18px;
  }
  input[type=checkbox]:not(.switch):after,
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.switch):checked,
  input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  input[type=checkbox] + label,
  input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  input[type=checkbox]:not(.switch) {
    border-radius: var(--rounded);
  }
  input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  input[type=checkbox].switch {
    width: 38px;
    border-radius: 4px;
  }
  input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: var(--rounded);
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }

  input[type=radio] {
    border-radius: 50%;
  }
  input[type=radio]:after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  input[type=radio]:checked {
    --s: .5;
  }
  
  input[type=checkbox]:hover,
  input[type=radio]:hover,
  .filter-wrapper label:hover {
    cursor: pointer !important;
  }
}
.klaviyo-form {
  max-width: 640px;
  margin: var(--gap) auto; 
}
/* Breadcrumbs */
.breadcrumbs {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  padding: var(--gap) var(--gap) var(--gap--s);
  gap: var(--gap--xs);
  font-weight: 400;
  font-family: var(--font--secondary);
  flex-wrap: wrap;
}

.breadcrumbs,
.breadcrumbs a {
  color: rgba(79, 79, 79, 0.5);
  line-height: 1.1;
}

.breadcrumbs a:hover {
  color: var(--primary);
}


@media screen and (max-width: 576px) {
  .breadcrumbs {
    padding: var(--gap--s);
  }
  .breadcrumbs,
  .breadcrumbs a {
    line-height: 1;
  }
}

/* Footer */

footer {
  background: var(--base);
  padding-top:    var(--pad--l);
  padding-bottom: var(--pad--m);
}

@media screen and (max-width: 1200px) {
  footer {
    padding: var(--pad--m);
  }
}

footer > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

footer h2 {
  color: var(--primary);
  font-size: var(--text--m);
}

footer ul {
  list-style-type: none;
  padding-left: 0;
}

footer p,
footer li,
footer a {
  color: var(--light-white);
}

footer a:hover {
  color: var(--primary);
}

footer .locations li:first-of-type {
  margin-bottom: var(--margin--m);
}

footer .locations li:last-of-type {
  margin-top: var(--margin--m);
}

footer aside {
  margin-top: var(--margin--m);
}

footer aside > div {
  justify-content: space-between;
}

footer aside p,
footer aside p a,
footer aside p .current {
  font-size: var(--text--xs);
}

footer aside p .current {
  color: var(--light-white);
}

footer hr {
  max-width: 100%;
  border: 1px solid var(--border--lighter);
}

.icons--social {
  display: flex;
  flex-direction: row;
  gap: var(--gap--s);
}

.banner--notice {
  background: var(--primary);
  padding: var(--gap);
}

.banner--notice:after {
  clear: both;
  content: "";
  height: 0;
  display: block;
}

.banner--notice h2,
.banner--notice h3 {
  color: var(--light-white);
  text-transform: initial;
}

.banner--notice h2 {
  font-size: var(--text--m);
  display: inline-block;
  font-family: var(--font--secondary);
  background: rgba(58, 0, 15, 0.4);
  border-radius: var(--rounded);
  padding: var(--gap--xs) var(--gap--s);
}

.banner--notice h3 {
  font-size: var(--text--3xl);
  margin-top: var(--gap--s);
}

.banner--notice p {
  color: var(--light-white);
  margin-top: var(--gap--xs);
}

.banner--notice img {
  margin-top: var(--gap--s);
  margin-bottom: var(--gap--s);
}

@media screen and (min-width: 767px) {
  .banner--notice img {
    float: right;
    margin: 0 var(--gap--s);
  }
}

.banner--notice .wrapper--price {
  margin-top: var(--gap--s);
}

.banner--notice .price.regular {
  color: rgba(256,256,256,.5);
  font-weight: var(--text--bold);
  font-size: var(--text--m);
  text-decoration: line-through;
  font-family: var(--font--secondary);
}

.banner--notice .price.regular + .price {
  color: var(--light-white);
  font-size: var(--text--l);
  font-weight: var(--text--bold);
  font-family: var(--font--secondary);
}

.banner--notice .button {
  padding: var(--gap--xs) var(--gap--s);
}

.banner--top {
  background: var(--primary);
  padding: var(--gap--xs);
  display: flex;
  gap: var(--gap--s);
  align-items: center;
  justify-content: center;
  margin-top: -4px;
}

.banner--top > span:first-of-type {
  display: inline-block;
  font-family: var(--font--secondary);
  background: rgba(58, 0, 15, 0.4);
  border-radius: var(--rounded);
  padding: var(--gap--xs) var(--gap--s);
}

.banner--top span {
  color: var(--light-white);
}

.banner--top .button {
  padding: 4px var(--gap--xs);
}

.banner--top .price.regular {
  color: rgba(256,256,256,.5);
  font-weight: var(--text--bold);
  font-size: var(--text--s);
  text-decoration: line-through;
  font-family: var(--font--secondary);
}

.banner--top .price.regular + .price {
  color: var(--light-white);
  font-size: var(--text--m);
  font-weight: var(--text--bold);
  font-family: var(--font--secondary);
}

.banner--top .close {
  position: absolute;
  right: var(--gap--s);
  color: rgba(58, 0, 15, 0.4);
}

.banner--top .close:hover {
  color: var(--base);
}

.skip-link {
  display: inline-block;
  background: #fff;
  color: var(--black);
  padding: 1rem;
  font-size: 22px;
  margin: 0.5rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.skip-link:focus {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

/*Back to top link*/

.back-to-top-wrapper {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 0;
  width: 3em;
  pointer-events: none;
}

@media screen and (max-width: 576px) {
  .back-to-top-wrapper {
    bottom: 4rem;
  }
}

.back-to-top-wrapper:hover {
  opacity: 1;
}

.back-to-top-link {
  position: absolute;
  bottom: 0;
  display: inline-block;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  width: 3rem;
  height: 45px;
  border-top-left-radius: var(--rounded);
  border-bottom-left-radius: var(--rounded);
  background-color: var(--base);
  color: var(--secondary);
  padding: 0.25rem;
  pointer-events: all;
}

.back-to-top-link:hover{
  background: var(--secondary);
  color: var(--base);
}

/* Cart */

.cart-content {
  padding-top: 0;
  padding-bottom: 0;
}

.cart-column-headings {
  display: none;
}

.product-in-cart {
  display: grid;
  grid-template-columns: 1fr 3fr 2fr;
  grid-column-gap: var(--gap);
  padding: 0.5rem;
}

.product-in-cart > a {
  display: flex;
  align-items: center;
}

.product-in-cart img {
  max-height: 75px;
  margin: 0 auto;
}

.product-in-cart > div {
  margin-top: 0;
}

.product-in-cart.notice {
  background: var(--border--lighter);
}

.cart-details.container{
  padding-right: 0;
}

@media screen and (min-width: 900px) {
  .cart-column-headings {
    display: grid;
    grid-column-gap: var(--gap);
    color: var(--medium);
    font-size: var(--text--s);
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
  }
  
  .cart-column-headings span:first-child {
    grid-column: 2;
  }
  
  .cart-column-headings,
  .product-in-cart {
    grid-template-columns: 75px 3fr 1fr 1fr;
  }
}

.product-in-cart .s {
  font-size: 11px;
  margin-top: 1rem;
  text-decoration: none;
  color: var(--primary);
}

.product-in-cart .s:hover {
  text-decoration: underline;
}

.product-in-cart input[type="number"] {
  border-radius: var(--rounded);
  float: right;
  margin-top: var(--gap--xs);
}

.product-in-cart .wrapper--price,
.product-in-cart .wrapper--subtotal {
  text-align: right;
}

.product-in-cart .subtotal,
.cart-total {
  color: var(--base);
}

.cart-total {
  margin-left: 2rem;
}

.cart-details.cart-total {
  margin-left: 0;
}

.cart-details:last-of-type {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75)
}

.cart-details div,
.pricing-note {
  text-align: right;
}

.pricing-note {
  padding: 0 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.cart-details .button-large {
  padding: 0.5rem .5rem;
}

.cart-details button {
  border: 0;
}

.wrapper--subtotal {
    display: none;
}

@media screen and (min-width: 900px) {
  .cart-details .button-large {
    padding: 0.5rem 1.75rem;
  }
  .wrapper--subtotal {
    display: block;
  }
}

.cart-details fieldset {
  display: flex;
  gap: var(--gap--s);
  justify-content: flex-end;
  align-items: center;
}
.impulse-cart {
  background: var(--light);
  padding: var(--gap);
  border-radius: var(--rounded);
  max-width: 90%;
  margin: var(--gap) auto;
}
.impulse-cart .product-in-cart {
  align-items: center;
}
.impulse-cart h2 {
  text-align: center;
}
.impulse-cart .button--action {
  border-radius: var(--rounded);
  padding: var(--gap--xs) var(--gap--s);
}
.impulse-cart .wrapper--impulse-action {
  text-align: center;
}
@media screen and (max-width: 899px) {
  .back-to-shopping {
    order: 1;
  }
  .cart-title.page-title {
    order: 2;
  }
  .impulse-cart {
    max-width: 100%;
  }
  .impulse-cart .product-in-cart {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    margin-bottom: var(--gap--s);
    gap: var(--gap--s);
  }
}

.back-to-shopping .button-small {
  padding: 0.5rem;
  margin-top: 0;
}

.total-cart-weight {
  display: flex;
  justify-content: flex-end;
  color: var(--gray);
    font-size: 12px;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}

.weight {
  color: var(--base);
  font-family: var(--font--primary);
}

.continue-shopping {
  margin-bottom: 1rem;
}

.product-in-cart .wrapper--price > div {
  display: flex;
  gap: var(--gap--xs);
  margin-bottom: var(--gap--xs);
  justify-content: flex-end;
  align-items: flex-end;
}

.product-in-cart .wrapper--qty {
  margin-top: var(--gap--xs);
  text-align: right;
}

.button--clear-cart:hover {
  background: var(--primary);
  color: var(--light-white);
}

/* Checkout */

.checkout__total__wrapper {
  text-align: right;
}

.checkout__total__wrapper > div {
  margin-top: 0;
}

.checkout__label {
  font-weight: 400;
  font-size: var(--text--m);
}

.checkout__total,
.checkout__taxes,
.checkout__order-total {
  min-width: 140px;
  display: inline-block;
}

.checkout__total,
.checkout__taxes,
.checkout__order-total {
  font-size: var(--text--l);
  font-weight: var(--text--bold);
}

.checkout__total,
.checkout__taxes {
  color: var(--base);
}

.checkout__order-total {
  color: var(--success);
}

.weight {
  font-family: var(--font--secondary);
  font-weight: var(--text--bold);
}

.checkout__billing__wrapper.checkout--1,
.checkout__billing__wrapper.checkout--2,
.checkout__billing__wrapper form {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

@media screen and (min-width: 767px) {
  .checkout__billing__wrapper.checkout--1,
  .checkout__billing__wrapper.checkout--2,
  .checkout__billing__wrapper form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkout__billing__wrapper h2 {
  font-size: var(--text--xl);
  color: var(--primary);
  margin-bottom: var(--gap--s);
}

.checkout__order__type label {
  line-height: 2;
}

.checkout__order__type p strong {
  font-family: var(--font--secondary);
  margin-bottom: var(--gap--m);
}

#pickupDate p,
#deliveryAddress p {
  margin-bottom: var(--gap--m);
}

.id-required {
  font-family: var(--font--secondary);
  color: var(--base);
}

.existing-customer > p {
  font-weight: var(--text--bold);
}

.checkout__billing__wrapper input[type="text"],
.checkout__billing__wrapper input[type="email"],
.checkout__billing__wrapper input[type="tel"],
.checkout__billing__wrapper select {
  margin-top: 0;
}

.checkout__billing__wrapper select,
.form--pay-now select {
  border-width: 2px;
  display: block;
  border-radius: 0;
  width: 100%;
  height: 38px;
  text-align: left;
  margin-bottom: var(--gap--s);
}

.product-in-cart select {
  margin-top: var(--margin--xs);
}

.cart > section:first-of-type {
  padding-top: var(--gap--s);
  padding-bottom: 0;
}

.cart .warning:not(.notice),
.cart .warning:not(.notice) a,
.cart .error,
.cart .error a,
.error--404 + .error{
  font-size: var(--text--xm);
}

.cart .warning--product {
  background: var(--light);
  border-left: 4px solid var(--caution);
}

.user--first-name-label,
.user--last-name-label,
.user--email-label {
  margin-bottom: var(--gap--s);
}

.user--first-name-label label,
.user--last-name-label label,
.user--email-label label {
  display: inline-block;
}

.checkout__billing__wrapper .is-error {
  border-color: var(--warning);
}

.checkout--header .order-success-message br {
  margin-bottom: var(--gap--s);
}

.checkout--header div > * {
  margin-bottom: var(--gap--s);
}

.checkout--header h1 {
  text-align: center;
  margin-top: var(--gap--l);
}

/* Snackbar/Toast */

#snackbar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 100;
  width: 100vw;
  min-width: 250px;
  transform: translateX(-50%);
  padding: var(--gap--s);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  font-family: var(--font--secondary);
  color: var(--light-white);
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(35, 31, 32, 0.9));
}

#snackbar.show {
  opacity: 1;
  visibility: visible;
}

#snackbar #snackbar--message p {
  box-shadow: var(--box-shadow--light);
  margin: var(--gap--s) auto;
  background: #fff;
  max-width: 640px;
}

#snackbar .button,
.cart--contents .button {
  margin-top: 0;
  padding: var(--gap--xs) var(--gap--s);
}

/*******************/
/* Copp's Specific */
/*******************/

html {
  overflow-x: hidden;
  border-top: 4px solid var(--primary);
}

@media screen and (max-width: 938px) {
  html {
    border-top: 8px solid var(--primary);
  }
}


.title--small {
  font-family: var(--font--secondary);
  color: var(--medium);
  font-size: var(--text--l);
  font-weight: 500;
}

#logo {
  width: 66%;
  max-width: 319px;
}

.blocks--shop {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-bottom: var(--gap--l);
}

@media screen and (max-width: 1200px) {
  .blocks--shop {
    display: none;
  }  
}

.blocks--shop article section {
  position: absolute;
  width: 100%;
  left: 0;
  margin: 0;
  padding: 2rem;
  background-color: #FFF;
  box-shadow: 0 6px 8px 0 rgba(0,0,0,0.2);
}
.blocks--shop article section {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
}

.blocks--shop article section > div:first-of-type {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.blocks--shop article section h4 {
  font-family: var(--font--secondary);
}

.blocks--shop article section h4 + a {
  color: var(--primary);
}

.blocks--shop article section h4 + a:hover {
  color: var(--action);
}

.blocks--shop article:hover section {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  z-index: 3;
}

.blocks--shop > article > a {
  border: 1px solid var(--border--light);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: var(--gap--s);
  gap: var(--gap--s);
  align-items: center;
  justify-content: center;
  align-content: stretch;
  height: 165px;
  text-decoration: none;
  color: var(--base);
}

.blocks--shop h3 {
  font-size: var(--text--l);
}

.blocks--shop article a:hover h3 {
  color: var(--primary); 
}

.blocks--shop img {
  max-height: 125px;
  width: auto;
}

.blocks--shop .departments {
  grid-template-columns: repeat(6, 1fr);
}

.blocks--services {
  display: grid;
  grid-template-columns: repeat(2 ,1fr);
  gap: var(--gap--xs);
}

@media screen and (max-width: 768px) {
  .blocks--services {
    grid-template-columns: 1fr;
  }  
  .blocks--shop > article div {
    padding: var(--gap);
  }
}

.blocks--services article {
  position: relative;
  text-align: center;
}

.blocks--services article div {
  position: absolute;
  margin-top: 0;
  width: 100%;
  height: 100%;
  top:  0%;
  left: 0%;
  transform: translate(-0%, -0%);
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
}

.blocks--services article div h3,
.blocks--services article div p {
  color: #fff;
  max-width: 350px;
}

.blocks--services article div h3 {
  font-size: var(--text--l);
}

.blocks--inspiration {
  border-top: 2px solid var(--border--lighter); 
  margin-top: var(--margin--l);
  padding-top: var(--pad--l);
  align-items: flex-end;
}

/* Newsletter */
.newsletter .fa-envelope {
  color: #000;
}

body #mc_embed_signup {
  clear: left;
  font-size: var(--text--s);
  font-family: var(--font--secondary);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--rounded);
  padding: var(--gap--s);
}

body #mc_embed_signup form {
  margin: 0;
}

body #mc_embed_signup label {
  font-family: var(--font--secondary);
  position: absolute;
  top: -9999px;
  left: -9999px;
}

body #mc_embed_signup input[type="submit"] {
  margin-top: var(--margin--s);
}

body #mc_embed_signup input.mce_inline_error {
  border-color: var(--warning) !important;
}

body #mc_embed_signup div.mce_inline_error {
  background-color: var(--warning) !important;
  margin-top: -16px !important;
}

ul.order--types {
  display: flex;
  gap: var(--gap);
  justify-content: space-between;
  margin-top: var(--gap--s);
  margin-bottom: var(--gap--m);
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  ul.order--types {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 576px) {
  ul.order--types,
  .results {
    gap: var(--gap--s);
  }
}

.order--types a {
  text-decoration-line: underline;
  text-decoration-style: dotted; 
}

.order--types a:hover {
  color: var(--primary);
  cursor: help;
}

.order--types li {
  font-size: var(--text--m);
  font-weight: 700;
}

.order--types svg {
  color: var(--success);
}

.order--types a.no-stock,
.order--types a.no-stock svg {
  color: var(--xmedium);
}

/* Tooltips */

.tippy-content p,
.tippy-content strong,
.tippy-content em {
  font-family: var(--font--secondary);
  color: var(--light-white);
}

.tippy-content strong {
  color: var(--primary);
}

.page section:first-of-type {
  padding-top: 0;
}

.page article a {
  color: var(--primary);
}

.page article a:hover {
  color: var(--action);
}

.page article a.button.button--primary {
  color: var(--light-white);
}

.page article a.button.button--primary:hover {
  color: var(--base);
  background: var(--secondary);
}

.page article a.button.button--secondary {
  color: var(--base);
}

.page article a.button.button--secondary:hover {
  color: var(--light-white);
  background: var(--primary);
}

.hero {
  position: relative;
  text-align: center;
  background: var(--base);
  min-height: 400px;
}

.hero img {
  object-fit: cover;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

@media screen and (min-width: 766px) {
  .hero img {
    aspect-ratio: 16 / 9;
  }
}

.hero div {
  padding: var(--gap);
}

@media screen and (min-width: 1596px) {
  .hero img {
    aspect-ratio: 16 / 4;
  }
}

.hero div {
  position: absolute;
  margin-top: 0;
  width: 100%;
  height: 100%;
  top:  0%;
  left: 0%;
  transform: translate(-0%, -0%);
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
}

.hero h1,
.hero h2 {
  color: #fff !important;
  max-width: calc(var(--container) * 0.9);
  text-transform: initial;
}

.hero h2 {
  font-family: var(--font--secondary);
  font-weight: 400;
}

.hero div h2 {
  font-size: var(--text--l);
}

.hero.error--404 {
  position: relative !important;
  min-height: 200px;
}

.page article strong {
  font-family: var(--font--secondary);
}

blockquote {
  font-family: var(--font--secondary);
  font-size: var(--text--xm);
}

.icons--social-contact {
  font-size: var(--text--l);
}

.contact--locations {
  background: var(--border--lighter);
  padding: var(--gap--l) 0;
}

.contact--locations article {
  background: var(--light-white);
  border: 1px solid var(--border--light);
  padding: var(--gap);
}

.contact--locations article > div {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--gap);
}

@media screen and (max-width: 1200px) {
  .contact--locations article > div {
    grid-template-columns: 1fr;
  }  
}

.contact--locations ul {
  list-style-type: none;
  padding: 0;
}

.contact--locations h2 {
  text-transform: none;
  font-size: 32px;
}

.contact--locations li {
  display: flex;
  gap: var(--gap--xs);
  margin-bottom: var(--gap--s);
}

.contact--locations article a {
  color: var(--base);
}

.contact--locations svg {
  color: var(--primary);
}

.contact--locations img {
  max-width: 120px;
}

.careers {
  background: var(--border--light);
  padding: var(--gap--l) 0;
}

.careers article {
  border-radius: var(--rounded);
  border-top: 3px solid var(--primary);
  padding: var(--gap);
  background: var(--light-white);
  margin-top: var(--margin--m);
}

.careers article div {
  display: flex;
  flex-direction: column;
  gap: var(--gap--s);
}

@media screen and (max-width: 939px) {
  .product h1 {
    font-size: 24px;
  }
}

/* Pay Now Form */
.form--pay-now {
  width: 500px;
  max-width: 100%;
  margin: var(--gap--l) auto;
}

.form--pay-now input[type="number"] {
  font-family: var(--font--secondary);
  height: 40px;
  border: 2px solid var(--border--light);
  padding: var(--gap--s);
  margin-bottom: var(--gap--s);
  width: 100%;
  text-align: initial;
}

.success--pay-now tr td:first-child {
  text-align: right;
}

.success--pay-now tr td:last-child {
  font-family: var(--font--secondary);
  padding-left: var(--gap--s);
}

/* Flyer */
.flyer article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flyer--mailchimp {
  box-shadow: var(--box-shadow--light);
  max-width: 480px;
  border: 2px solid var(--primary);
  padding: var(--gap--s);
}

/* Blog */
.blog .results {
  justify-content: flex-end;
}

.blog--posts {
  display: flex;
  gap: var(--gap--l);
  flex-direction: column;
}

.blog--posts article {
  align-items: center;
}

.blog--posts article h2 {
  color: var(--primary);
}

.blog--posts article span {
  color: var(--xmedium);
}

.blog--posts article div {
  display: flex;
  flex-direction: column;
  gap: var(--gap--s);
  align-items: flex-start;
}

.blogs article a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap--s);
  text-decoration: none;
  padding: var(--gap--s);
}

.blogs article img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.blogs article h3 {
  font-size: var(--text--xm);
  text-transform: none;
}

nav.product-pagination ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  justify-content: center;
  
}

nav.product-pagination li {
  padding: 0.5rem;
}

nav.product-pagination li.active {
  font-weight: 800;
  color: var(--primary);
}

nav.product-pagination a {
  color: var(--base);
}

nav.product-pagination a:hover {
  color: var(--primary);
  text-decoration: none !important;
}


.products article .account.too-low::after,
.product .account.too-low::after {
  content: "Special Pricing";
  /* content: "Price Too Low To Show"; */
  color: var(--success);
  font-size: var(--text--m);
  font-weight: 500;
  display: block;
}

/* Invoices */

#account,
#account .my--account.container {
  max-width: 1600px;
}

#account h1 {
  margin-bottom: var(--gap);
}

#account > section > article {
  padding: var(--gap--l) 0;
}

#account nav {
  position: relative;
}

#account nav ul {
  position: sticky;
  top: 6rem;
  left: 0;
  flex-direction: column;
  gap: var(--gap--xs);
  margin: 0 auto;
}

.my--account {
  grid-template-columns: 183px 1fr;
}

@media screen and (max-width: 765px) {
  .my--account {
    display: flex;
    flex-direction: column;
  }
  #account nav ul {
    flex-direction: row;
    gap: var(--gap--m) var(--gap--s);
  } 
  .product--pricing {
    gap: var(--gap--xs);
    margin-bottom: var(--gap--m);
  }
}

.my--account table {
  width: 100%;
  box-sizing: border-box;
  border-collapse: collapse;
  border-spacing: 0;
}

.my--account table * {
  font-family: var(--font--secondary);
}

@media screen and (max-width: 765px) {
  .my--account table {
    max-width: 98vw;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .my--account table tbody {
    display: table;
    width: 100%;
  }
}

.my--account table tr:has(th) {
  background: var(--primary);
  color: #fff;
}

.my--account table th,
.my--account table td {
  padding: 6px;
}

.my--account table th {
  background: var(--primary-100);
  color: #fff;
  font-weight: 500;
}

.my--account table th a {
  color: #fff;
}

.my--account table td {
  border: 1px solid var(--border--light);
}

.my--account table td a {
  color: var(--base);
  transition: var(--transition);
}

.my--account table td a:hover {
  color: var(--primary);
}

.table--account-activity {
  table-layout: fixed;
}

.table--account-activity td {
  max-width: 50%;
}

.my--account h3 {
  margin-top: var(--gap);
  margin-bottom: var(--gap--s);
}

.my--account nav ul {
  display: flex;
  list-style-type: none;
  gap: var(--gap--s);
  flex-wrap: wrap;
  padding-left: 0;
}

.my--account nav li span,
.my--account nav a {
  display: block;
}

.my--account nav li span {
  color: var(--primary);
  font-weight: 400;
  background: #f7f7f7;
  padding: var(--gap--xs) var(--gap--s);
  border-radius: var(--rounded);
}

.my--account nav a {
  text-decoration: none;
  color: var(--base);
  font-weight: 400;
  background: var(--border--lighter);
  padding: var(--gap--xs) var(--gap--s);
  border-radius: var(--rounded);
}

.my--account nav a:hover {
  color: #fff !important;
  background: var(--primary) !important;
}

.my--account nav .account--reset,
.my--account nav .account--logout,
.my--account .button--action {
  background: none;
  outline: 2px solid var(--border--lighter);
}

.my--account .button--action {
  color: var(--base);
}

.my--account nav .account--reset:hover,
.my--account nav .account--logout:hover,
.my--account .button--action:hover {
  outline-color: var(--primary);
}

.my--account .button--action:hover {
  color: var(--primary);
}

#account .prev {
  float: left;
}

#account .next {
  float: right;
}

/* Landing Pages */

.landing-page {
  padding-top: 40px;
}
.landing-page article {
  padding: 0;
}
.landing-page article > .container, .landing-page article > section > .container {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  max-width: 1302px;
}
.landing-page > section > .container, .landing-page > .container.col--3 {
  max-width: 1302px;
}
.landing-page .dark-gradient-block {
  background: linear-gradient(149.86deg, #565B62 0%, #0B0C0F 100%);
  border-radius: 15px;
  color: #fff;
}
.landing-page .dark-gradient-block a.button {
  max-width: 100%;
}
.landing-page .book-block, .landing-page img {
  border-radius: 15px;
}
.landing-page .book-block, .landing-page .book-block .form-all {
  background: var(--light);
}
.landing-page .book-block .form-submit-button {
  width: 100%;
}
body:has(.landing-page){
  background-color: var(--light);
}
.landing-page .full-width .container.flex--column {
  flex-direction: row;
}
.landing-page .full-width .container.flex--column .grid.col--1-4 {
  grid-template-columns: 1;
  display: block;
}
.landing-page .col--3 img {
  margin-bottom: 20px;
}
.landing-page .col--3 section > div.container {
  border-radius: 20px;
  padding: 30px !important;
  background-color: #fff;
}
.landing-page .col--3 section > div.container a {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary);
  padding: 14px;
  display: inline-block;
  margin-top: 45px;
  font-weight: 400;
  border-radius: 4px;
}
.landing-page .map-link {
  background-color: var(--base);
  color: #fff;
  text-decoration: none;
  padding: 16px 100px;
  display: inline-block;
  margin-top: 45px;
  font-weight: 400;
  border-radius: 4px;
}
.landing-page .col-span-2 {
  grid-column: span 2;
  border-radius: 30px;
}
@media screen and (max-width: 576px) {
  .landing-page .col-span-2 {
      grid-column: span 1;
  }
  .landing-page article > .container, .landing-page article > section > .container {
      padding: 30px;
      max-width: 100%;
  }
  .landing-page .pad--m,.landing-page .full-width:not(.hero.full-width) {
      padding: 0px;
  }
  .landing-page .book-block {
      background-color: #fff;
  }
  .landing-page .dark-gradient-block {
      padding: 10px;
  }
}

.landing-page .full-width {
  padding: 0px;
}
.landing-page .section-header, .landing-page .section-header .container {
  padding: 0 !important;
  background: transparent !important;
}
.landing-page .section-header h3 {
  color: #D6392B;
}
.landing-page .visit_cta {
  max-width: 1302px;
  margin: 40px auto 20px;
  border-radius: 30px;
  text-align: center;
}
.landing-page .visit_cta img {
  margin: 0 auto 20px;
}
.landing-page .col--3 > div {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}
.landing-page h2 {
  color: #D6392B;
}

.landing-page .visit_cta {
  max-width: 1302px;
  margin: 0px auto;
  border-radius: 30px;
  text-align: center;
}