/** Shopify CDN: Minification failed

Line 84:0 All "@import" rules must come first
Line 8356:0 "@charset" must be the first rule in the file
Line 9158:0 All "@import" rules must come first

**/
/*============================================================================
  604 Shop - Combined CSS Styles
  Compiled from multiple SCSS files - Duplicates removed and code cleaned
  Generated: July 23, 2025
==============================================================================*/

/*================ COLOR VARIABLES ================*/
:root {
  /* Base Colors */
  --white: #FFFFFF;
  --black: #000000;
  --grey-dark: #3b3f40;
  --grey: #E0E0E0;
  --grey-light: #efefef;
  --red: #DD1C24;
  --blue: #0C6091;
  
  /* Theme Colors */
  --color-primary: #000000;
  --color-secondary: #666666;
  --color-body-bg: #ffffff;
  --color-body-text: #333333;
  --color-headings: #000000;
  --color-borders: #efefef;
  --color-input: #ffffff;
  --color-newsletter: #f8f8f8;
  --color-sale-tag: #dd1c24;
  
  /* Button Colors */
  --color-btn-primary: var(--color-primary);
  --color-btn-primary-text: #ffffff;
  --color-btn-secondary: var(--color-secondary);
  --color-btn-secondary-text: #ffffff;
  
  /* Drawer Colors */
  --color-drawer-bg: #ffffff;
  --color-drawer-border: var(--color-borders);
  --color-drawer-text: var(--color-body-text);
  --color-drawer-button: var(--color-primary);
  --color-drawer-button-text: #ffffff;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-header-base: 24px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  
  /* Spacing */
  --gutter: 30px;
  --grid-gutter-mobile: 22px;
  --section-spacing-small: 35px;
  --content-top-margin: 80px;
  --content-top-margin-small: 35px;
  --border-radius: 0;
  
  /* Z-index */
  --z-nav-dropdowns: 5;
  --z-drawer: 10;
  --z-hero-header: 2;
  --z-drawer-overlay: 20;
  
  /* Drawer Sizes */
  --drawer-nav-width: 300px;
  --drawer-cart-width: 300px;
  --drawer-cart-width-large: 400px;
  --drawer-header-height: 80px;
  --drawer-cart-footer-height: 130px;
  
  /* Breakpoints */
  --breakpoint-small: 590px;
  --breakpoint-medium: 899px;
  --breakpoint-large: 900px;
  --breakpoint-xlarge: 1120px;
}

/*================ IMPORTS ================*/
@import url('//fonts.googleapis.com/icon?family=Material+Icons');

/*================ FONT FACES ================*/
@font-face {
  font-family: 'icons';
  src: url('icons.eot');
  src: url('icons.eot#iefix') format("embedded-opentype"),
       url('icons.woff') format("woff"),
       url('icons.ttf') format("truetype"),
       url('icons.svg#timber-icons') format("svg");
  font-weight: normal;
  font-style: normal;
}

/*================ RESET & BASE STYLES ================*/
* {
  box-sizing: border-box;
}

*:focus {
  outline: 0;
}

html {
  font-size: var(--font-size-base);
  line-height: 1.6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: var(--font-weight-normal);
  color: var(--color-body-text);
  background-color: var(--color-body-bg);
  margin: 0;
  padding: 0;
}

/*================ CLEARFIX UTILITIES ================*/
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/*================ TYPOGRAPHY ================*/
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: var(--font-weight-bold);
  color: var(--color-headings);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.75em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.25em; }
h6 { font-size: 1em; }

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/*================ FLEXBOX UTILITIES ================*/
.flex-container {
  display: flex;
  width: 100%;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-align-center {
  align-items: center;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

/*================ GRADIENT UTILITIES ================*/
.gradient-bg {
  background: linear-gradient(135deg, rgba(246,246,246,1) 0%, rgba(180,180,180,1) 100%);
}

.gradient-light-bg {
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(220,220,220,0.8) 100%);
}

/*================ ANIMATIONS ================*/
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  0%, 35% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes heroContentIn {
  0%, 35% { 
    opacity: 0; 
    transform: translateY(8px); 
  }
  60% { opacity: 1; }
  100% { transform: translateY(0); }
}

@keyframes rotateGradient {
  0% { background: conic-gradient(from 0deg, oklch(65% 0.25 29), oklch(65% 0.25 350), oklch(65% 0.25 300), oklch(65% 0.25 264), oklch(65% 0.25 29)); }
  25% { background: conic-gradient(from 90deg, oklch(65% 0.25 29), oklch(65% 0.25 350), oklch(65% 0.25 300), oklch(65% 0.25 264), oklch(65% 0.25 29)); }
  50% { background: conic-gradient(from 180deg, oklch(65% 0.25 29), oklch(65% 0.25 350), oklch(65% 0.25 300), oklch(65% 0.25 264), oklch(65% 0.25 29)); }
  75% { background: conic-gradient(from 270deg, oklch(65% 0.25 29), oklch(65% 0.25 350), oklch(65% 0.25 300), oklch(65% 0.25 264), oklch(65% 0.25 29)); }
  100% { background: conic-gradient(from 360deg, oklch(65% 0.25 29), oklch(65% 0.25 350), oklch(65% 0.25 300), oklch(65% 0.25 264), oklch(65% 0.25 29)); }
}

/*================ SINGLE PRODUCT STYLES ================*/
.single-product-wrap {
  max-width: calc(100vw - 40px);
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 30px;
}

.single-product-wrap::after,
.single-inner-wrap::after {
  clear: both;
  content: '';
  display: block;
}

.single-inner-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.single-col {
  width: 100%;
  float: left;
}

/*================ VIDEO STYLES ================*/
.product-video-container.video-playing,
.video-playing {
  position: relative !important;
  z-index: 10 !important;
}

.product-video-container.video-playing::before,
.video-playing::before {
  content: '' !important;
  position: absolute !important;
  top: -6px !important;
  left: -6px !important;
  right: -6px !important;
  bottom: -6px !important;
  z-index: 1 !important;
  border-radius: 12px !important;
  pointer-events: none !important;
  background: conic-gradient(from 0deg, oklch(65% 0.25 29), oklch(65% 0.25 350), oklch(65% 0.25 300), oklch(65% 0.25 264), oklch(65% 0.25 29)) !important;
  animation: rotateGradient 3s linear infinite;
  opacity: 0.9 !important;
  filter: blur(10px) !important;
}

.product-video-container.video-playing video,
.video-playing video,
.product-video-container.video-playing .video-thumbnail,
.video-playing .video-thumbnail {
  position: relative !important;
  z-index: 20 !important;
  border-radius: 6px !important;

}

.product-video-container.video-playing video {
  opacity: 1 !important;
}

.product-single__photos .product-video-container {
  padding: 3px;
}

/*================ FILTER MENU STYLES ================*/
.filter-menu {
  margin-bottom: 20px;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 3px;
  padding: 0px;
  border: 1px solid rgba(0, 0, 0, 0); }

.filter-menu .has_group_selected {
  display: inherit; }

.filter-group {
  position: relative;
  text-align: left; }
  .filter-group .selected a {
    font-weight: bold; }
  .filter-group .filter-clear {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 10px;
    padding: 0 5px;
    text-decoration: none;
    font-size: 12px;
    line-height: 18px;
    background-color: #eee;
    color: #222;
    overflow: hidden; }
  .filter-group .filter-clear:hover {
    background-color: #ddd;
    color: #222; }
  .filter-group .collection-container {
    position: relative; }
  .filter-group .collection-count {
    position: absolute;
    right: 0px; }
  .filter-group h4 {
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-right: 45px;
    color: #222;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    padding-top: 0;
    border-top: none; }
  .filter-group + .filter-group h4 {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0); }
  .filter-group .filter-clear {
    top: 0px; }
  .filter-group + .filter-group .filter-clear {
    top: 10px; }
  .filter-group ul {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0; }
  .filter-group ul li {
    display: block;
    font-size: 12px; }
  .filter-group li a {
    display: inline-block;
    margin-left: 6px;
    text-decoration: none;
    padding: 0;
    font-size: 13px;
    text-indent: -19px;
    padding-left: 19px; }
  .filter-group li.inactive {
    opacity: 0.6; }
  .filter-group li a, .filter-group li a:visited, .filter-group .collection-count {
    color: #222;
    font-size: 14px;
    font-weight: 300; }
  .filter-group .collection-count {
    color: #888; }
  .filter-group li div {
    line-height: 22px; }
  .filter-group li.selected a {
    color: #333; }
  .filter-group li:hover a {
    color: #444; }

.filter-menu-none-selected li a, .has_collection_counts a {
  margin-right: 35.0px; }

.sort-selector {
  margin: 0 10px; }

@font-face {
  font-family: 'pt-font';
  src: url("//604shop.com/cdn/shop/t/8/assets/pt-font.eot?v=35406046816350484391748891349");
  src: url("//604shop.com/cdn/shop/t/8/assets/pt-font.eot?v=35406046816350484391748891349#iefix") format("embedded-opentype"), url("//604shop.com/cdn/shop/t/8/assets/pt-font.ttf?v=64367270460432704271748891349") format("truetype"), url("//604shop.com/cdn/shop/t/8/assets/pt-font.woff?v=132796830189226443511748891349") format("woff"), url("//604shop.com/cdn/shop/t/8/assets/pt-font.svg?v=26104912306370647421748891349#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

i.check-icon,
.pt-display-dropdown .filter-clear,
.pt-display-dropdown .menu-trigger:after,
.filter-group h4:after {
  font-family: 'pt-font' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  text-indent: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #888; }

.selected i.check-icon {
  color: #444; }

i.check-icon:before,
.pt-display-dropdown .filter-clear:before {
  content: "\e824";
  background-repeat: no-repeat;
  display: inline-block;
  margin-top: 0px;
  vertical-align: middle;
  height: 15px;
  line-height: 15px;
  width: 15px;
  font-size: 13px; }

a:hover i.check-icon:before {
  content: "\e825"; }

.selected i.check-icon:before {
  content: "\e826"; }

.selected a:hover i.check-icon:before {
  content: "\e827"; }

.fm-search-box {
  display: none; }

.pt-display-search .fm-search-box {
  display: inherit;
  margin: 10px;
  width: calc(100% - 20px); }

.pt-filter-mode-single .has_selected .active {
  display: none; }

.pt-filter-mode-single .has_selected .selected,
.pt-filter-mode-and .has_selected .active,
.pt-filter-mode-switcher .has_selected .active {
  display: inherit; }

.filter-group .scroll-content {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden; }

.pt-display-scroll .scroll-content {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden; }

.pt-display-nocheckbox i.check-icon {
  display: none !important; }
.pt-display-nocheckbox li a {
  margin-left: 6px; }

.pt-display-smallbox ul {
  margin-left: 0px;
  padding-left: 0px; }
.pt-display-smallbox ul li {
  display: inline-block;
  margin-left: 0px !important;
  margin-bottom: 10px;
  margin-right: 5px;
  background-color: #ffffff;
  border: 1px solid #00a5fd;
  border-radius: 3px;
  box-shadow: 0 1px 0 0 rgba(110, 110, 110, 0.5); }
.pt-display-smallbox ul li i.check-icon {
  display: none; }
.pt-display-smallbox ul li .collection-name {
  min-width: 30px;
  text-align: center;
  padding: 0;
  font-size: 14px; }
.pt-display-smallbox ul li .collection-name a {
  text-align: center;
  display: block;
  min-width: 46px;
  padding: 4px 10px;
  margin: 0;
  text-indent: 0; }
.pt-display-smallbox ul li.selected {
  background-color: #00a5fd; }
.pt-display-smallbox ul li.selected a {
  color: #ffffff; }
.pt-display-smallbox ul li:hover {
  background-color: #00a5fd; }
.pt-display-smallbox ul li:hover a {
  color: #ffffff; }
.pt-display-smallbox .collection-count {
  display: none; }

.pt-display-smallbox-full-width ul li {
  width: 100%; }

@media only screen and (min-width: 992px) {
  .pt-display-twocolumn .collection-container {
    width: calc(50% - 5px);
    float: left; }
  .pt-display-twocolumn .collection-count {
    display: none; }
  .pt-display-twocolumn ul {
    overflow: auto; }
  .pt-display-twocolumn li a {
    margin-right: 0; } }

.pt-display-swatch ul {
  padding-left: 0px;
  margin: 0;
  display: inline-block; }
.pt-display-swatch ul li {
  display: inline-block;
  margin-left: 0px !important;
  padding-right: 4px; }
.pt-display-swatch ul li .collection-name {
  min-height: 15px;
  width: 27px;
  min-height: 27px;
  margin-bottom: 8px;
  margin-right: 3px; }
.pt-display-swatch .collection-count {
  display: none; }
.pt-display-swatch li a,
.pt-display-swatch li a:hover {
  color: transparent !important;
  line-height: 0px;
  margin-left: 3px;
  font-size: 0; }

/* Filter menu mobile styles */
.filter-menu .pt-mobile-header {
  display: none; }

.filter-menu .pt-mobile-header a {
  position: relative;
  top: 0;
  text-align: center; }

@media only screen and (max-width: 767px) {
  .filter-menu .pt-mobile-header {
    display: block;
    position: relative;
    height: 50px;
    float: none !important; }

  .filter-menu .filter-group h4,
  .filter-menu .filter-group .menu-trigger,
  .filter-menu .filter-group .scroll-content {
    display: none; }

  .pt-expand .filter-group h4,
  .pt-expand .filter-group .menu-trigger,
  .pt-expand .filter-group .scroll-content {
    display: inherit;
    -webkit-animation: fadeIn 0.3s;
    animation: fadeIn 0.3s; }

  .filter-menu .has_group_selected h4,
  .filter-menu .has_group_selected .menu-trigger,
  .filter-menu .has_group_selected .scroll-content {
    display: inherit; }
}

.filter-menu .pt-mobile-header a.pt-nav-toggle {
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translate(-40%, 7px);
  -webkit-transform: translate(-40%, 7px);
  cursor: pointer;
  padding: 10px 35px 16px 0px;
  line-height: 40px;
  text-decoration: none;
  white-space: nowrap; }

.filter-menu .pt-display-dropdown {
  position: relative;
  margin: 0; }
  .filter-menu .pt-display-dropdown h4 {
    min-width: 150px;
    width: 100%; }
  .filter-menu .pt-display-dropdown .menu-trigger {
    color: #222;
    font-size: 14px;
    font-weight: 300;
    border: solid 1px #CCC;
    background-color: #FFF;
    cursor: pointer;
    padding: 0 28px 0 15px;
    z-index: 5;
    line-height: 26px;
    height: 28px;
    position: relative;
    overflow: hidden; }

.pt-apply {
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  color: #ffffff;
  font-size: 18px;
  background-color: #0084ff;
  text-decoration: none;
  margin-top: 20px;
  margin-left: 0;
  width: 100%;
  font-weight: bold; }

.pt-apply:hover {
  background-color: #0670cf;
  text-decoration: none; }

.pt-apply-disabled, .pt-apply-disabled:hover {
  background-color: #cccccc; }

@media screen and (min-width: 767px) {
  .pt-sticky-mode {
    position: sticky;
    position: -webkit-sticky;
    top: 25px; } }

/*================ END FILTER MENU STYLES ================*/

/*================ CART STYLES ================*/
.cart__row {
  position: relative;
  margin-bottom: 30px;
}

.cart__row:first-child {
  border-bottom: 1px solid var(--colorBorders);
  padding-bottom: 15px;
}

.cart__row .js-qty {
  margin: 0 auto;
}

.cart__row .btn,
.cart__row .btn--secondary {
  margin-bottom: 15px;
}

@media screen and (min-width: 591px) {
  .update-cart + .cart__checkout {
    margin-left: 15px;
  }
}

.cart__row--last {
  border-top: 1px solid var(--colorBorders);
  padding-top: 15px;
}

.cart__row--table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.cart__row--table .grid__item {
  display: table-cell;
  vertical-align: middle;
  float: none;
}

@media screen and (min-width: 900px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  
  .cart__row--table-large .grid__item {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
}

.cart__image {
  display: block;
}

.cart__image img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 899px) {
  .cart__pricing {
    margin-top: 30px;
  }
}

.cart__product-name {
  margin-bottom: 0;
}

@media screen and (min-width: 899px) {
  .cart__product-name {
    width: 90%;
  }
}

.cart__product-qty {
  text-align: center;
  margin: 0 auto;
  max-width: 80px;
}

/*================ DRAWERS ================*/
.js-drawer-open {
  overflow: hidden;
}

/*================ DRAWER OVERLAY ================*/
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: oklch(0% 0 0 / 0.3);
  z-index: var(--z-drawer-overlay);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.35s cubic-bezier(0.46, 0.01, 0.32, 1), visibility 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
}

.js-drawer-open-left .drawer-overlay,
.js-drawer-open-right .drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 15px 15px;
  max-width: 95%;
  z-index: 999;
  color: var(--colorBodyText);
  background-color: var(--white);
  transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
}

@media screen and (min-width: 900px) {
  .drawer {
    padding: 0 30px 30px;
  }
}

.drawer a {
  color: var(--colorBodyText);
}

.drawer a:hover {
  color: var(--colorPrimary);
}

.drawer input[type='text'],
.drawer input[type='email'],
.drawer input[type='number'],
.drawer textarea {
  border-color: var(--colorBorders);
}

.drawer .btn--secondary {
  background-color: var(--colorPrimary);
  color: var(--white);
}

.drawer--left {
  width: 300px;
  left: -300px;
}

.js-drawer-open-left .drawer--left {
  display: block;
  -webkit-transform: translateX(300px);
  -moz-transform: translateX(300px);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
}

.drawer--right {
  width: 300px;
  right: -300px;
}

@media screen and (min-width: 591px) {
  .drawer--right {
    width: 400px;
    right: -400px;
  }
}

.js-drawer-open-right .drawer--right {
  display: block;
  -webkit-transform: translateX(-300px);
  -moz-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
}

@media screen and (min-width: 591px) {
  .js-drawer-open-right .drawer--right {
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    transform: translateX(-400px);
  }
}

.drawer__header {
  display: table;
  height: 80px;
  width: 100%;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--colorBorders);
}

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle;
}

.drawer__title {
  width: 100%;
}

.drawer__close {
  width: 1%;
  text-align: center;
}

.drawer__close-button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit;
}

.drawer__close-button:active {
  background-color: var(--greylight);
}

/*================ QUANTITY SELECTORS ================*/
.js-qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible;
}

.js-qty input[type="text"] {
  display: block;
  background: none;
  text-align: center;
  width: 100%;
  padding: 5px 25px;
  margin: 0;
}

.js-qty__adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  padding: 0 8px;
  background: none;
  text-align: center;
  overflow: hidden;
  user-select: none;
  backface-visibility: hidden;
  transition: all 0.2s ease-out;
}

.js-qty__adjust .icon {
  font-size: 8px;
  vertical-align: middle;
}

.js-qty__adjust:hover {
  background-color: var(--colorBorders);
}

.js-qty__adjust:active {
  background-color: var(--grey);
}

.js-qty__adjust--plus {
  right: 0;
  border-left: 1px solid var(--colorBorders);
}

.js-qty__adjust--minus {
  left: 0;
  border-right: 1px solid var(--colorBorders);
}

/*================ FOOTER ================*/
.site-footer {
  padding-bottom: 30px;
}

@media screen and (max-width: 590px) {
  .site-footer .grid__item {
    padding-bottom: 5px;
  }
}

.site-footer a {
  color: var(--colorBodyText);
}

.site-footer a:active {
  color: var(--colorPrimary);
}

@media screen and (min-width: 591px) {
  .site-footer__linklist {
    margin-bottom: 15px;
  }
}

/*================ PAGINATION ================*/
.pagination {
  margin: 0;
  padding: 60px 0 0;
  text-align: center;
  font-size: 14px;
}

.pagination > span {
  display: inline-block;
  line-height: 1;
}

.pagination a {
  display: block;
}

.pagination a,
.pagination .page.current {
  padding: 8px;
}

.pagination .page.current {
  color: var(--colorSecondary);
}

.pagination .next,
.pagination .prev {
  font-family: arial, helvetica, sans-serif;
}

/*================ RICH TEXT EDITOR ================*/
.rte {
  margin-bottom: 15px;
}

.rte::after {
  content: '';
  display: table;
  clear: both;
}

.rte p,
.rte ul,
.rte ol,
.rte table {
  margin-bottom: 25px;
}

.rte ul ul {
  margin-bottom: 0;
}

.rte a {
  text-decoration: none;
}

.rte .text-link {
  border-bottom: 1px solid var(--colorSecondary);
}

.rte .text-link:hover,
.rte .text-link:focus {
  border-bottom: 1px solid var(--colorPrimary);
}

.rte h1,
.rte h4,
.rte h5,
.rte h6 {
  margin-bottom: 1em;
}

.rte h2,
.rte h3 {
  margin-bottom: 1em;
}

.rte h1:first-child,
.rte h2:first-child,
.rte h3:first-child,
.rte h4:first-child,
.rte h5:first-child,
.rte h6:first-child {
  margin-top: 0;
}

.rte h1 a,
.rte h2 a,
.rte h3 a,
.rte h4 a,
.rte h5 a,
.rte h6 a {
  text-decoration: none;
}

.rte > div {
  margin-bottom: 15px;
}

.rte li {
  margin-bottom: 0;
}

.rte > p:last-child {
  margin-bottom: 0;
}

.rte table {
  table-layout: fixed;
}

.text-center .rte ul,
.text-center .rte ol,
.text-center.rte ul,
.text-center.rte ol {
  list-style-position: inside;
  margin-left: 0;
}

.rte--nomargin {
  margin-bottom: 0;
}

/*================ END OF COMBINED STYLES ================*/

/*================ TIMBER FRAMEWORK STYLES (from timber.css) ================*/
/*============================================================================
  Shopify Timber v2.1.0 | github.com/shopify/timber
  Copyright 2015 Shopify Inc.
  Author Carson Shold @cshold
  Built with Sass - http://sass-lang.com/

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - This file merges your stylesheets into one master at assets/timber.scss.liquid
==============================================================================*/
/*================ Variables, theme settings, and Sass mixins ================*/
/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix:after {
  content: '';
  display: table;
  clear: both; }

/****** Coulour Variables ****/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }
    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Functions ================*/

/*============================================================================
  Dependency-free breakpoint mixin
    - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*================ Color variables ================*/
/*================ Typography ================*/
@font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=1456bc620c204f0cb3662cc4fbdc40ccf0b3e9f882dce64c3495c0c72ecf2f8c") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=6e96ad42c9a6ac2af48ab9016eeb460dc7a886dc9f6f3e964f57ac150c5ba143") format("woff"); }

@font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=f436c4ff2f42ed1c06229674c8e240fd6ccb4b1a6ef69f747a7093ce494c1527") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=9e8fb45a073bcc134060809fdcd3f5eb5b83400ed39e25bafd1cfdc84540b627") format("woff"); }

@font-face {
  font-family: Montserrat;
  font-weight: 600;
  font-style: normal;
  src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n6.1326b3e84230700ef15b3a29fb520639977513e0.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=4697078495c853a0122e17b40af861315c26083ce48671b1b36a53ff24ff6cd4") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n6.652f051080eb14192330daceed8cd53dfdc5ead9.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=815ef4895916866c57737939a1a99b36311f78e91abd91cd3b71c8275ca9f10f") format("woff"); }

@font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=1456bc620c204f0cb3662cc4fbdc40ccf0b3e9f882dce64c3495c0c72ecf2f8c") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=6e96ad42c9a6ac2af48ab9016eeb460dc7a886dc9f6f3e964f57ac150c5ba143") format("woff"); }

@font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: italic;
  src: url("//604shop.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=f26c53c29f2ebd4195174c7c59d4ef9959691be5072cfde1facbce0f5da18583") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=74204970e3846496dbf5a3a6b89c607c36b9ed58c7cf14d1be4897cef800f79b") format("woff"); }

@font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  src: url("//604shop.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=4b296ef4effb91806fda7b2c4ed5506d472582b9eb27856713d5cc80233e920e") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=56b7065a2598b4f8302e85c2717f3d2b0d85a71ed242ba4db8edcf73d01fb008") format("woff"); }

@font-face {
  font-family: Montserrat;
  font-weight: 900;
  font-style: normal;
  src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n9.680ded1be351aa3bf3b3650ac5f6df485af8a07c.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=55bc534741be1e999e2e4a49f7e2ee57ecc3342834490aaa6ce506682708a4d0") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n9.0cc5aaeff26ef35c23b69a061997d78c9697a382.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=3fae1c02d197516e4312ee9e2ea0c34fa76d37e84de01f55e155a4bd9817a8d8") format("woff"); }

@font-face {
  font-family: 'icons';
  src: url("//604shop.com/cdn/shop/t/8/assets/icons.eot?v=112981532348062652561748891349");
  src: url("//604shop.com/cdn/shop/t/8/assets/icons.eot?v=112981532348062652561748891349#iefix") format("embedded-opentype"), url("//604shop.com/cdn/shop/t/8/assets/icons.woff?v=24089382976848351381748891349") format("woff"), url("//604shop.com/cdn/shop/t/8/assets/icons.ttf?v=177851439206450752971748891349") format("truetype"), url("//604shop.com/cdn/shop/t/8/assets/icons.svg?v=182753167674510223691748891349#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*================ Global | Normalize ================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*================ Site-wide styles ================*/
/*================ Partials | Layout Styles ================*/
html,
body {
  background-color: white; }

[tabindex="-1"]:focus {
  outline: none; }

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0px;
  width: 90%; }

.main-content {
  display: block;
  padding-top: 30px; }
  @media screen and (min-width: 591px) {
    .main-content {
      padding-bottom: 30px; } }
  @media screen and (min-width: 900px) {
    .main-content {
      padding-top: 40px; } }

hr {
  clear: both;
  border-top: solid #1c1d1d;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ Partials | Typography styles ================*/
body,
input,
textarea,
button,
select {
  font-size: 16px;
  line-height: 1.6;
  font-family: Montserrat, sans-serif;
  color: black;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility; }

h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 0.5em;
  line-height: 1.4;
  text-rendering: optimizeLegibility; }
  h1:not(.hero__title), .h1:not(.hero__title),
  h2:not(.hero__title),
  .h2:not(.hero__title),
  h3:not(.hero__title),
  .h3:not(.hero__title),
  h4:not(.hero__title),
  .h4:not(.hero__title),
  h5:not(.hero__title),
  .h5:not(.hero__title),
  h6:not(.hero__title),
  .h6:not(.hero__title) {
    color: black; }
  h1 a, .h1 a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 3.125em;
  line-height: 1.1; }
  @media screen and (max-width: 591px) {
    h1, .h1 {
      font-size: 1.75em; } }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.1; }
  @media screen and (max-width: 591px) {
    h2, .h2 {
      font-size: 1.375em; } }

h3, .h3 {
  font-size: 1.375em; }

h4, .h4 {
  font-size: 1.25em; }

h5, .h5 {
  font-size: 1em;
  text-transform: none;
  letter-spacing: normal; }

h6, .h6 {
  font-size: 0.875em; }

p {
  margin: 0 0 15px 0;
  text-rendering: optimizeLegibility; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b,
strong {
  font-weight: 700; }

small {
  font-size: 0.9em; }

sup,
sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  margin: 0;
  padding: 15px 30px 40px; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: "\2014 \0020"; }

code,
pre {
  background-color: #faf7f5;
  font-family: Consolas, monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

/*================ Partials | Lists ================*/
ul,
ol {
  margin: 0 0 15px 20px;
  padding: 0;
  text-rendering: optimizeLegibility; }

ol ol {
  list-style: lower-alpha; }

ol {
  list-style: decimal; }

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: 0.25em; }

ul.square {
  list-style: square outside; }

ul.disc {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

.no-bullets {
  list-style: none outside;
  margin-left: 0; }

.inline-list {
  margin-left: 0; }
  .inline-list li {
    display: inline-block;
    margin-bottom: 0; }

/*================ Partials | Tables ================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.table-wrap--order {
  background-color: #f6f6f6;
  padding: 1rem; }

th {
  font-weight: 700; }

th,
td {
  text-align: left;
  padding: 15px;
  border: 1px solid #1c1d1d; }

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns, a fixed gutter size, and BEM classes
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid items
==============================================================================*/
/* Force clearfix on grids */
/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0; }

.grid__item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
  vertical-align: top;
  width: 100%; }

.grid--small {
  margin-left: -10px; }
  .grid--small .grid__item {
    padding-left: 10px; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 48%; }

/* Thirds */
.one-third {
  width: 30.333%; }

.two-thirds {
  width: 62.666%; }

/* Quarters */
.one-quarter {
  width: 23%; }

.two-quarters {
  width: 48%; }

.three-quarters {
  width: 72%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 590px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 48%; }

  /* Thirds */
  .small--one-third {
    width: 30.333%; }

  .small--two-thirds {
    width: 62.666%; }

  /* Quarters */
  .small--one-quarter {
    width: 23%; }

  .small--two-quarters {
    width: 48%; }

  .small--three-quarters {
    width: 72%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }

  .small--two-sixths {
    width: 33.333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.666%; }

  .small--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }

  .small--two-eighths {
    width: 25%; }

  .small--three-eighths {
    width: 37.5%; }

  .small--four-eighths {
    width: 50%; }

  .small--five-eighths {
    width: 62.5%; }

  .small--six-eighths {
    width: 75%; }

  .small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%; }

  .small--two-tenths {
    width: 20%; }

  .small--three-tenths {
    width: 30%; }

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

  .small--seven-tenths {
    width: 70%; }

  .small--eight-tenths {
    width: 80%; }

  .small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }

  .small--two-twelfths {
    width: 16.666%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.333%; }

  .small--five-twelfths {
    width: 41.666%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.333%; }

  .small--eight-twelfths {
    width: 66.666%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.333%; }

  .small--eleven-twelfths {
    width: 91.666%; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

  .small--text-left {
    text-align: left !important; }

  .small--text-right {
    text-align: right !important; }

  .small--text-center {
    text-align: center !important; }

  .small--left {
    float: left !important; }

  .small--right {
    float: right !important; }

  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 591px) and (max-width: 899px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

  /* Halves */
  .medium--one-half {
    width: 48%; }

  /* Thirds */
  .medium--one-third {
    width: 30.333%; }

  .medium--two-thirds {
    width: 62.666%; }

  /* Quarters */
  .medium--one-quarter {
    width: 23%; }

  .medium--two-quarters {
    width: 48%; }

  .medium--three-quarters {
    width: 72%; }

  /* Fifths */
  .medium--one-fifth {
    width: 20%; }

  .medium--two-fifths {
    width: 40%; }

  .medium--three-fifths {
    width: 60%; }

  .medium--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }

  .medium--two-sixths {
    width: 33.333%; }

  .medium--three-sixths {
    width: 50%; }

  .medium--four-sixths {
    width: 66.666%; }

  .medium--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }

  .medium--two-eighths {
    width: 25%; }

  .medium--three-eighths {
    width: 37.5%; }

  .medium--four-eighths {
    width: 50%; }

  .medium--five-eighths {
    width: 62.5%; }

  .medium--six-eighths {
    width: 75%; }

  .medium--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium--one-tenth {
    width: 10%; }

  .medium--two-tenths {
    width: 20%; }

  .medium--three-tenths {
    width: 30%; }

  .medium--four-tenths {
    width: 40%; }

  .medium--five-tenths {
    width: 50%; }

  .medium--six-tenths {
    width: 60%; }

  .medium--seven-tenths {
    width: 70%; }

  .medium--eight-tenths {
    width: 80%; }

  .medium--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }

  .medium--two-twelfths {
    width: 16.666%; }

  .medium--three-twelfths {
    width: 25%; }

  .medium--four-twelfths {
    width: 33.333%; }

  .medium--five-twelfths {
    width: 41.666%; }

  .medium--six-twelfths {
    width: 50%; }

  .medium--seven-twelfths {
    width: 58.333%; }

  .medium--eight-twelfths {
    width: 66.666%; }

  .medium--nine-twelfths {
    width: 75%; }

  .medium--ten-twelfths {
    width: 83.333%; }

  .medium--eleven-twelfths {
    width: 91.666%; }

  .medium--show {
    display: block !important; }

  .medium--hide {
    display: none !important; }

  .medium--text-left {
    text-align: left !important; }

  .medium--text-right {
    text-align: right !important; }

  .medium--text-center {
    text-align: center !important; }

  .medium--left {
    float: left !important; }

  .medium--right {
    float: right !important; }

  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 899px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }

  /* Halves */
  .medium-down--one-half {
    width: 48%; }

  /* Thirds */
  .medium-down--one-third {
    width: 30.333%; }

  .medium-down--two-thirds {
    width: 62.666%; }

  /* Quarters */
  .medium-down--one-quarter {
    width: 23%; }

  .medium-down--two-quarters {
    width: 48%; }

  .medium-down--three-quarters {
    width: 72%; }

  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }

  .medium-down--two-fifths {
    width: 40%; }

  .medium-down--three-fifths {
    width: 60%; }

  .medium-down--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }

  .medium-down--two-sixths {
    width: 33.333%; }

  .medium-down--three-sixths {
    width: 50%; }

  .medium-down--four-sixths {
    width: 66.666%; }

  .medium-down--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }

  .medium-down--two-eighths {
    width: 25%; }

  .medium-down--three-eighths {
    width: 37.5%; }

  .medium-down--four-eighths {
    width: 50%; }

  .medium-down--five-eighths {
    width: 62.5%; }

  .medium-down--six-eighths {
    width: 75%; }

  .medium-down--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }

  .medium-down--two-tenths {
    width: 20%; }

  .medium-down--three-tenths {
    width: 30%; }

  .medium-down--four-tenths {
    width: 40%; }

  .medium-down--five-tenths {
    width: 50%; }

  .medium-down--six-tenths {
    width: 60%; }

  .medium-down--seven-tenths {
    width: 70%; }

  .medium-down--eight-tenths {
    width: 80%; }

  .medium-down--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }

  .medium-down--two-twelfths {
    width: 16.666%; }

  .medium-down--three-twelfths {
    width: 25%; }

  .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--five-twelfths {
    width: 41.666%; }

  .medium-down--six-twelfths {
    width: 50%; }

  .medium-down--seven-twelfths {
    width: 58.333%; }

  .medium-down--eight-twelfths {
    width: 66.666%; }

  .medium-down--nine-twelfths {
    width: 75%; }

  .medium-down--ten-twelfths {
    width: 83.333%; }

  .medium-down--eleven-twelfths {
    width: 91.666%; }

  .medium-down--show {
    display: block !important; }

  .medium-down--hide {
    display: none !important; }

  .medium-down--text-left {
    text-align: left !important; }

  .medium-down--text-right {
    text-align: right !important; }

  .medium-down--text-center {
    text-align: center !important; }

  .medium-down--left {
    float: left !important; }

  .medium-down--right {
    float: right !important; }

  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 900px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

  /* Halves */
  .large--one-half {
    width: 48%; }

  /* Thirds */
  .large--one-third {
    width: 30.333%; }

  .large--two-thirds {
    width: 62.666%; }

  /* Quarters */
  .large--one-quarter {
    width: 23%; }

  .large--two-quarters {
    width: 48%; }

  .large--three-quarters {
    width: 72%; }

  /* Fifths */
  .large--one-fifth {
    width: 20%; }

  .large--two-fifths {
    width: 40%; }

  .large--three-fifths {
    width: 60%; }

  .large--four-fifths {
    width: 80%; }

  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }

  .large--two-sixths {
    width: 33.333%; }

  .large--three-sixths {
    width: 50%; }

  .large--four-sixths {
    width: 66.666%; }

  .large--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }

  .large--two-eighths {
    width: 25%; }

  .large--three-eighths {
    width: 37.5%; }

  .large--four-eighths {
    width: 50%; }

  .large--five-eighths {
    width: 62.5%; }

  .large--six-eighths {
    width: 75%; }

  .large--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .large--one-tenth {
    width: 10%; }

  .large--two-tenths {
    width: 20%; }

  .large--three-tenths {
    width: 30%; }

  .large--four-tenths {
    width: 40%; }

  .large--five-tenths {
    width: 50%; }

  .large--six-tenths {
    width: 60%; }

  .large--seven-tenths {
    width: 70%; }

  .large--eight-tenths {
    width: 80%; }

  .large--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }

  .large--two-twelfths {
    width: 16.666%; }

  .large--three-twelfths {
    width: 25%; }

  .large--four-twelfths {
    width: 33.333%; }

  .large--five-twelfths {
    width: 41.666%; }

  .large--six-twelfths {
    width: 50%; }

  .large--seven-twelfths {
    width: 58.333%; }

  .large--eight-twelfths {
    width: 66.666%; }

  .large--nine-twelfths {
    width: 75%; }

  .large--ten-twelfths {
    width: 83.333%; }

  .large--eleven-twelfths {
    width: 91.666%; }

  .large--show {
    display: block !important; }

  .large--hide {
    display: none !important; }

  .large--text-left {
    text-align: left !important; }

  .large--text-right {
    text-align: right !important; }

  .large--text-center {
    text-align: center !important; }

  .large--left {
    float: left !important; }

  .large--right {
    float: right !important; }

  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1121px) {
  /** Whole */
  .xlarge--one-whole {
    width: 100%; }

  /* Halves */
  .xlarge--one-half {
    width: 48%; }

  /* Thirds */
  .xlarge--one-third {
    width: 30.333%; }

  .xlarge--two-thirds {
    width: 62.666%; }

  /* Quarters */
  .xlarge--one-quarter {
    width: 23%; }

  .xlarge--two-quarters {
    width: 48%; }

  .xlarge--three-quarters {
    width: 72%; }

  /* Fifths */
  .xlarge--one-fifth {
    width: 20%; }

  .xlarge--two-fifths {
    width: 40%; }

  .xlarge--three-fifths {
    width: 60%; }

  .xlarge--four-fifths {
    width: 80%; }

  /* Sixths */
  .xlarge--one-sixth {
    width: 16.666%; }

  .xlarge--two-sixths {
    width: 33.333%; }

  .xlarge--three-sixths {
    width: 50%; }

  .xlarge--four-sixths {
    width: 66.666%; }

  .xlarge--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .xlarge--one-eighth {
    width: 12.5%; }

  .xlarge--two-eighths {
    width: 25%; }

  .xlarge--three-eighths {
    width: 37.5%; }

  .xlarge--four-eighths {
    width: 50%; }

  .xlarge--five-eighths {
    width: 62.5%; }

  .xlarge--six-eighths {
    width: 75%; }

  .xlarge--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .xlarge--one-tenth {
    width: 10%; }

  .xlarge--two-tenths {
    width: 20%; }

  .xlarge--three-tenths {
    width: 30%; }

  .xlarge--four-tenths {
    width: 40%; }

  .xlarge--five-tenths {
    width: 50%; }

  .xlarge--six-tenths {
    width: 60%; }

  .xlarge--seven-tenths {
    width: 70%; }

  .xlarge--eight-tenths {
    width: 80%; }

  .xlarge--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .xlarge--one-twelfth {
    width: 8.333%; }

  .xlarge--two-twelfths {
    width: 16.666%; }

  .xlarge--three-twelfths {
    width: 25%; }

  .xlarge--four-twelfths {
    width: 33.333%; }

  .xlarge--five-twelfths {
    width: 41.666%; }

  .xlarge--six-twelfths {
    width: 50%; }

  .xlarge--seven-twelfths {
    width: 58.333%; }

  .xlarge--eight-twelfths {
    width: 66.666%; }

  .xlarge--nine-twelfths {
    width: 75%; }

  .xlarge--ten-twelfths {
    width: 83.333%; }

  .xlarge--eleven-twelfths {
    width: 91.666%; }

  .xlarge--show {
    display: block !important; }

  .xlarge--hide {
    display: none !important; }

  .xlarge--text-left {
    text-align: left !important; }

  .xlarge--text-right {
    text-align: right !important; }

  .xlarge--text-center {
    text-align: center !important; }

  .xlarge--left {
    float: left !important; }

  .xlarge--right {
    float: right !important; }

  .grid-uniform .xlarge--one-half:nth-child(2n+1),
  .grid-uniform .xlarge--one-third:nth-child(3n+1),
  .grid-uniform .xlarge--one-quarter:nth-child(4n+1),
  .grid-uniform .xlarge--one-fifth:nth-child(5n+1),
  .grid-uniform .xlarge--one-sixth:nth-child(6n+1),
  .grid-uniform .xlarge--two-sixths:nth-child(3n+1),
  .grid-uniform .xlarge--three-sixths:nth-child(2n+1),
  .grid-uniform .xlarge--two-eighths:nth-child(4n+1),
  .grid-uniform .xlarge--four-eighths:nth-child(2n+1),
  .grid-uniform .xlarge--five-tenths:nth-child(2n+1),
  .grid-uniform .xlarge--one-twelfth:nth-child(12n+1),
  .grid-uniform .xlarge--two-twelfths:nth-child(6n+1),
  .grid-uniform .xlarge--three-twelfths:nth-child(4n+1),
  .grid-uniform .xlarge--four-twelfths:nth-child(3n+1),
  .grid-uniform .xlarge--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

/* Halves */
.push--one-half {
  left: 50%; }

/* Thirds */
.push--one-third {
  left: 33.333%; }

.push--two-thirds {
  left: 66.666%; }

/* Quarters */
.push--one-quarter {
  left: 25%; }

.push--two-quarters {
  left: 50%; }

.push--three-quarters {
  left: 75%; }

/* Fifths */
.push--one-fifth {
  left: 20%; }

.push--two-fifths {
  left: 40%; }

.push--three-fifths {
  left: 60%; }

.push--four-fifths {
  left: 80%; }

/* Sixths */
.push--one-sixth {
  left: 16.666%; }

.push--two-sixths {
  left: 33.333%; }

.push--three-sixths {
  left: 50%; }

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

/* Eighths */
.push--one-eighth {
  left: 12.5%; }

.push--two-eighths {
  left: 25%; }

.push--three-eighths {
  left: 37.5%; }

.push--four-eighths {
  left: 50%; }

.push--five-eighths {
  left: 62.5%; }

.push--six-eighths {
  left: 75%; }

.push--seven-eighths {
  left: 87.5%; }

/* Tenths */
.push--one-tenth {
  left: 10%; }

.push--two-tenths {
  left: 20%; }

.push--three-tenths {
  left: 30%; }

.push--four-tenths {
  left: 40%; }

.push--five-tenths {
  left: 50%; }

.push--six-tenths {
  left: 60%; }

.push--seven-tenths {
  left: 70%; }

.push--eight-tenths {
  left: 80%; }

.push--nine-tenths {
  left: 90%; }

/* Twelfths */
.push--one-twelfth {
  left: 8.333%; }

.push--two-twelfths {
  left: 16.666%; }

.push--three-twelfths {
  left: 25%; }

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--six-twelfths {
  left: 50%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

.push--nine-twelfths {
  left: 75%; }

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 591px) and (max-width: 899px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }

  .push--medium--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }

  .push--medium--two-quarters {
    left: 50%; }

  .push--medium--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }

  .push--medium--two-fifths {
    left: 40%; }

  .push--medium--three-fifths {
    left: 60%; }

  .push--medium--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }

  .push--medium--two-sixths {
    left: 33.333%; }

  .push--medium--three-sixths {
    left: 50%; }

  .push--medium--four-sixths {
    left: 66.666%; }

  .push--medium--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }

  .push--medium--two-eighths {
    left: 25%; }

  .push--medium--three-eighths {
    left: 37.5%; }

  .push--medium--four-eighths {
    left: 50%; }

  .push--medium--five-eighths {
    left: 62.5%; }

  .push--medium--six-eighths {
    left: 75%; }

  .push--medium--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }

  .push--medium--two-tenths {
    left: 20%; }

  .push--medium--three-tenths {
    left: 30%; }

  .push--medium--four-tenths {
    left: 40%; }

  .push--medium--five-tenths {
    left: 50%; }

  .push--medium--six-tenths {
    left: 60%; }

  .push--medium--seven-tenths {
    left: 70%; }

  .push--medium--eight-tenths {
    left: 80%; }

  .push--medium--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }

  .push--medium--two-twelfths {
    left: 16.666%; }

  .push--medium--three-twelfths {
    left: 25%; }

  .push--medium--four-twelfths {
    left: 33.333%; }

  .push--medium--five-twelfths {
    left: 41.666%; }

  .push--medium--six-twelfths {
    left: 50%; }

  .push--medium--seven-twelfths {
    left: 58.333%; }

  .push--medium--eight-twelfths {
    left: 66.666%; }

  .push--medium--nine-twelfths {
    left: 75%; }

  .push--medium--ten-twelfths {
    left: 83.333%; }

  .push--medium--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 899px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }

  .push--medium-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }

  .push--medium-down--two-quarters {
    left: 50%; }

  .push--medium-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }

  .push--medium-down--two-fifths {
    left: 40%; }

  .push--medium-down--three-fifths {
    left: 60%; }

  .push--medium-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }

  .push--medium-down--two-sixths {
    left: 33.333%; }

  .push--medium-down--three-sixths {
    left: 50%; }

  .push--medium-down--four-sixths {
    left: 66.666%; }

  .push--medium-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }

  .push--medium-down--two-eighths {
    left: 25%; }

  .push--medium-down--three-eighths {
    left: 37.5%; }

  .push--medium-down--four-eighths {
    left: 50%; }

  .push--medium-down--five-eighths {
    left: 62.5%; }

  .push--medium-down--six-eighths {
    left: 75%; }

  .push--medium-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }

  .push--medium-down--two-tenths {
    left: 20%; }

  .push--medium-down--three-tenths {
    left: 30%; }

  .push--medium-down--four-tenths {
    left: 40%; }

  .push--medium-down--five-tenths {
    left: 50%; }

  .push--medium-down--six-tenths {
    left: 60%; }

  .push--medium-down--seven-tenths {
    left: 70%; }

  .push--medium-down--eight-tenths {
    left: 80%; }

  .push--medium-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }

  .push--medium-down--two-twelfths {
    left: 16.666%; }

  .push--medium-down--three-twelfths {
    left: 25%; }

  .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--five-twelfths {
    left: 41.666%; }

  .push--medium-down--six-twelfths {
    left: 50%; }

  .push--medium-down--seven-twelfths {
    left: 58.333%; }

  .push--medium-down--eight-twelfths {
    left: 66.666%; }

  .push--medium-down--nine-twelfths {
    left: 75%; }

  .push--medium-down--ten-twelfths {
    left: 83.333%; }

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 900px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

  /* Halves */
  .push--large--one-half {
    left: 50%; }

  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }

  .push--large--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }

  .push--large--two-quarters {
    left: 50%; }

  .push--large--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }

  .push--large--two-fifths {
    left: 40%; }

  .push--large--three-fifths {
    left: 60%; }

  .push--large--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }

  .push--large--two-sixths {
    left: 33.333%; }

  .push--large--three-sixths {
    left: 50%; }

  .push--large--four-sixths {
    left: 66.666%; }

  .push--large--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }

  .push--large--two-eighths {
    left: 25%; }

  .push--large--three-eighths {
    left: 37.5%; }

  .push--large--four-eighths {
    left: 50%; }

  .push--large--five-eighths {
    left: 62.5%; }

  .push--large--six-eighths {
    left: 75%; }

  .push--large--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }

  .push--large--two-tenths {
    left: 20%; }

  .push--large--three-tenths {
    left: 30%; }

  .push--large--four-tenths {
    left: 40%; }

  .push--large--five-tenths {
    left: 50%; }

  .push--large--six-tenths {
    left: 60%; }

  .push--large--seven-tenths {
    left: 70%; }

  .push--large--eight-tenths {
    left: 80%; }

  .push--large--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }

  .push--large--two-twelfths {
    left: 16.666%; }

  .push--large--three-twelfths {
    left: 25%; }

  .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--five-twelfths {
    left: 41.666%; }

  .push--large--six-twelfths {
    left: 50%; }

  .push--large--seven-twelfths {
    left: 58.333%; }

  .push--large--eight-twelfths {
    left: 66.666%; }

  .push--large--nine-twelfths {
    left: 75%; }

  .push--large--ten-twelfths {
    left: 83.333%; }

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*================ Partials | Helper Classes ================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 30px; }

.media-img-right {
  float: right;
  margin-left: 30px; }

.media-img img,
.media-img-right img {
  display: block; }

/*=============== Image Transitions ===================*/
.fade-in {
  opacity: 0;
  transition: opacity 250ms ease-out; }
  .fade-in.lazyloaded {
    opacity: 1; }
  .no-js .fade-in {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px; }

/*================ Partials | Links and Buttons ================*/
a,
.text-link {
  color: #dd1c24;
  text-decoration: none;
  background: transparent; }
  a:hover,
  .text-link:hover {
    color: #dd1c24; }

a[href^="tel"] {
  color: inherit; }

button {
  overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

.btn, .btn--secondary,
.rte .btn--secondary, .shopify-payment-button .shopify-payment-button__button--unbranded,
.rte .btn,
.rte .btn--secondary,
.rte .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .rte .shopify-payment-button__button--unbranded {
  display: inline-block;
  padding: 8px 10px;
  margin: 0;
  width: auto;
  line-height: 1.42;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  /*================ Set primary button colors - can override later ================*/
  background-color: #dd1c24;
  color: white;
  transition: background-color 0.4s ease-out;
}
  .btn:hover, .btn--secondary:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:hover {
    transition: background-color 0.15s ease-out;
    background-color: #e94e54;
    color: white;
  }
  .btn:active, .btn--secondary:active, .shopify-payment-button .shopify-payment-button__button--unbranded:active,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:active,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:active {
    transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
    background-color: #700e12;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, .btn.disabled, .disabled.btn--secondary, .shopify-payment-button .disabled.shopify-payment-button__button--unbranded,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .shopify-payment-button [disabled].shopify-payment-button__button--unbranded,
  .shopify-payment-button .rte [disabled].shopify-payment-button__button--unbranded,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  .rte .shopify-payment-button .disabled.shopify-payment-button__button--unbranded,
  .shopify-payment-button .rte .disabled.shopify-payment-button__button--unbranded {
    cursor: default;
    color: #717171;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #dd1c24; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #e7454b;
    color: white; }
  .btn--secondary:active,
  .rte .btn--secondary:active {
    background-color: #b0161d;
    color: white; }

.btn--secondary-accent {
  background-color: white;
  border: 1px solid #dd1c24;
  color: #dd1c24; }
  .btn--secondary-accent:hover, .btn--secondary-accent:focus {
    background-color: white;
    border: 1px solid #e94e54;
    color: #e94e54; }
  .btn--secondary-accent:active {
    background-color: white;
    border: 1px solid #700e12;
    color: #700e12; }
  .btn--secondary-accent[disabled], .btn--secondary-accent.disabled {
    cursor: default;
    color: #717171;
    background-color: #f6f6f6;
    border: none; }
    .btn--secondary-accent[disabled]:hover, .btn--secondary-accent.disabled:hover {
      opacity: 1; }

.btn--small {
  padding: 4px 5px;
  font-size: 0.75em; }

.btn--large {
  padding: 12px 15px;
  font-size: 1em; }

.btn--full {
  width: 100%; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*================ Partials | Images, SVG, and iframes ================*/
img {
  border: 0 none; }

svg:not(:root) {
  overflow: hidden; }

img,
iframe {
  max-width: 100%; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*================ Partials | Forms ================*/
form {
  margin: 0; }

.form-vertical {
  margin-bottom: 15px; }

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 899px) {
  input,
  textarea {
    font-size: 16px; } }
button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

fieldset {
  border: 1px solid #1c1d1d;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

button,
input[type="submit"] {
  cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #1c1d1d;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 0; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  margin: 0 10px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//604shop.com/cdn/shop/t/8/assets/ico-select.svg?v=80103462439189041331748891349");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer; }

optgroup {
  font-weight: 900; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
.hidden-label {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

label[for] {
  cursor: pointer; }

/*================ Vertical Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="checkbox"],
.form-vertical input[type="radio"],
.form-vertical .btn,
.form-vertical .btn--secondary,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: inline-block; }
.form-vertical .btn, .form-vertical .btn--secondary, .form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: inline-block; }

/*================ Error styles ================*/
input.error,
textarea.error {
  border-color: #d02e2e;
  background-color: #fff6f6;
  color: #d02e2e; }

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group .shopify-payment-button .input-group-btn:first-child > .shopify-payment-button__button--unbranded,
  .shopify-payment-button .input-group .input-group-btn:first-child > .shopify-payment-button__button--unbranded,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary,
  .input-group .shopify-payment-button input[type="hidden"]:first-child + .input-group-btn > .shopify-payment-button__button--unbranded,
  .shopify-payment-button .input-group input[type="hidden"]:first-child + .input-group-btn > .shopify-payment-button__button--unbranded {
    border-radius: 0 0 0 0; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary,
  .input-group .shopify-payment-button .input-group-btn:last-child > .shopify-payment-button__button--unbranded,
  .shopify-payment-button .input-group .input-group-btn:last-child > .shopify-payment-button__button--unbranded {
    border-radius: 0 0 0 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary, .input-group .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group .shopify-payment-button__button--unbranded,
.input-group .input-group-field {
  height: 37px; }

.input-group .input-group-field {
  width: 100%; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

/*================ Selector wrapper ================*/
.selector-wrapper label {
  margin-right: 10px; }
.selector-wrapper + .selector-wrapper {
  margin-top: 15px; }

/*================ Partials | Icons ================*/
@font-face {
  font-family: 'icons';
  src: url("//604shop.com/cdn/shop/t/8/assets/icons.eot?v=112981532348062652561748891349");
  src: url("//604shop.com/cdn/shop/t/8/assets/icons.eot?v=112981532348062652561748891349#iefix") format("embedded-opentype"), url("//604shop.com/cdn/shop/t/8/assets/icons.woff?v=24089382976848351381748891349") format("woff"), url("//604shop.com/cdn/shop/t/8/assets/icons.ttf?v=177851439206450752971748891349") format("truetype"), url("//604shop.com/cdn/shop/t/8/assets/icons.svg?v=182753167674510223691748891349#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*================ Icon mapping ================*/
.icon-arrow-down:before {
  content: '\e607'; }

.icon-arrow-left:before {
  content: '\e900'; }

.icon-arrow-right:before {
  content: '\e901'; }

.icon-cart:before {
  content: '\e600'; }

.icon-customer:before {
  content: '\e605'; }

.icon-facebook:before {
  content: '\e609'; }

.icon-fancy:before {
  content: '\46'; }

.icon-google_plus:before {
  content: '\e90a'; }

.icon-hamburger:before {
  content: '\e601'; }

.icon-instagram:before {
  content: '\e907'; }

.icon-minus:before {
  content: '\e602'; }

.icon-pause:before {
  content: "\e902"; }

.icon-pin:before {
  content: '\e90d'; }

.icon-pinterest:before {
  content: '\e608'; }

.icon-play:before {
  content: "\e904"; }

.icon-plus:before {
  content: '\e603'; }

.icon-rss:before {
  content: '\72'; }

.icon-saletag:before {
  content: "\e906"; }

.icon-search:before {
  content: '\73'; }

.icon-snapchat:before {
  content: '\e90b'; }

.icon-slide-prev:before {
  content: "\e903"; }

.icon-slide-next:before {
  content: "\e905"; }

.icon-tumblr:before {
  content: '\74'; }

.icon-twitter:before {
  content: '\54'; }

.icon-vimeo:before {
  content: '\76'; }

.icon-x:before {
  content: '\e604'; }

.icon-youtube:before {
  content: '\79'; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
  margin-bottom: 0; }
  .payment-icons li {
    margin: 0 0 7.5px 7.5px;
    cursor: default; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }
  .payment-icons .icon {
    width: 38px;
    height: 24px; }

.social-icons .icon {
  padding-right: 4px; }

.social-icons .icon-google_plus {
  font-size: 0.8em; }

/*================ Partials | Drawers ================*/
.js-drawer-open {
  overflow: hidden; }

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 15px 15px;
  max-width: 95%;
  z-index: 999;
  color: white;
  background-color: black;
  -webkit-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -moz-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -ms-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -o-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1); }
  @media screen and (min-width: 900px) {
    .drawer {
      padding: 0 30px 30px; } }
  .drawer a {
    color: white; }
    .drawer a:hover {
      color: white; }
  .drawer input[type='text'],
  .drawer input[type='email'],
  .drawer input[type='number'],
  .drawer textarea {
    border-color: #dd1c24; }
  .drawer .btn--secondary {
    background-color: #dd1c24;
    color: white; }

.drawer--left {
  width: 300px;
  left: -300px; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -ms-transform: translateX(300px);
    -o-transform: translateX(300px);
    transform: translateX(300px); }

.drawer--right {
  width: 300px;
  right: -300px; }
  @media screen and (min-width: 591px) {
    .drawer--right {
      width: 400px;
      right: -400px; } }
  .js-drawer-open-right .drawer--right {
    display: block;
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    transform: translateX(-300px); }
    @media screen and (min-width: 591px) {
      .js-drawer-open-right .drawer--right {
        -webkit-transform: translateX(-400px);
        -moz-transform: translateX(-400px);
        -ms-transform: translateX(-400px);
        -o-transform: translateX(-400px);
        transform: translateX(-400px); } }

.drawer__header {
  display: table;
  height: 80px;
  width: 100%;
  margin-bottom: 15px;
  border-bottom: 1px solid #efefef; }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center; }

.drawer__close-button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close-button:active {
    background-color: black; }

.drawer__close--left {
  text-align: left; }
  .drawer__close--left .drawer__close-button {
    right: auto;
    left: -20px; }

/*================ Cart-specific styles ================*/
.supports-csstransforms .drawer--is-loading .drawer__cart {
  min-height: 100px; }
  .supports-csstransforms .drawer--is-loading .drawer__cart:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 60px;
    margin-left: -12px;
    border-radius: 50%;
    border: 3px solid #dd1c24;
    border-top-color: transparent;
    -webkit-animation: spin 1s infinite linear;
    -moz-animation: spin 1s infinite linear;
    -o-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear; }

/*================ Partials | Ajax Cart (conditionally loaded) ================*/
.ajaxcart__inner {
  margin-bottom: 30px; }

.ajaxcart__row > .grid, .ajaxcart__row > .grid--rev, .ajaxcart__row > .grid--full {
  margin-left: -15px; }
  .ajaxcart__row > .grid > .grid__item, .ajaxcart__row > .grid--rev > .grid__item, .ajaxcart__row > .grid--full > .grid__item {
    padding-left: 15px; }

.ajaxcart__product {
  position: relative;
  max-height: 500px; }
  .ajaxcart__product.is-removed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -moz-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -ms-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -o-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }

.ajaxcart__row {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #efefef; }
  @media screen and (min-width: 591px) {
    .ajaxcart__row {
      padding-bottom: 30px;
      margin-bottom: 30px; } }

.ajaxcart__product-image {
  display: block;
  overflow: hidden;
  padding-top: 3px; }
  .ajaxcart__product-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.ajaxcart__product-name,
.ajaxcart__product-meta {
  display: block; }

.ajaxcart__product-name--wrapper {
  margin-bottom: 10px; }

.ajaxcart__product-name + .ajaxcart__product-meta {
  padding-top: 3px; }

.ajaxcart__discount {
  padding-top: 3px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input[type="text"], .ajaxcart__qty input[type="text"] {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 5px 25px;
    margin: 0; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  padding: 0 8px;
  background: none;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
  .js-qty__adjust .icon, .ajaxcart__qty-adjust .icon {
    font-size: 8px;
    vertical-align: middle; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover {
    background-color: #dd1c24; }
  .js-qty__adjust:active, .ajaxcart__qty-adjust:active {
    background-color: #b0161d; }

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  border-left: 1px solid #dd1c24; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  border-right: 1px solid #dd1c24; }

/*================ Quantity Selectors in Ajax Cart ================*/
.ajaxcart__qty {
  margin: 0; }
  .is-loading .ajaxcart__qty {
    opacity: 0.5;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none; }

.ajaxcart__qty-num[type="text"] {
  border-color: #dd1c24;
  color: white; }

.ajaxcart__qty-adjust {
  color: white;
  z-index: 1; }
  .ajaxcart__qty-adjust:hover {
    background-color: #dd1c24;
    color: white; }
  .ajaxcart__qty-adjust:active {
    background-color: #b0161d;
    color: white; }

.ajaxcart__qty--plus {
  border-color: #dd1c24; }

.ajaxcart__qty--minus {
  border-color: #dd1c24; }

/*================ Module-specific styles ================*/
/*================ Module | Footer ================*/
.site-footer {
  padding-bottom: 30px; }
  @media screen and (max-width: 590px) {
    .site-footer .grid__item {
      padding-bottom: 5px; } }
  .site-footer a {
    color: black; }
    .site-footer a:active {
      color: black; }

@media screen and (min-width: 591px) {
  .site-footer__linklist {
    margin-bottom: 15px; } }

/*================ Module | Notes and Form Feedback ================*/
.note,
.errors {
  border-radius: 0;
  padding: 6px 12px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: #1c1d1d; }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #09A67B;
  font-weight: bold;
  border: none;
  border-left: solid 2px #09A67B;
  margin-bottom: 0px; }
  .form-success a {
    text-decoration: underline; }
    .form-success a:hover {
      text-decoration: none; }

.form-error,
.errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

/*================ Module | Pagination ================*/
.pagination {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  padding: 60px 0 0;
  text-align: center;
  font-size: 0.875em; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }
  .pagination .page.current {
    color: #dd1c24; }
  .pagination .next,
  .pagination .prev {
    font-family: arial, helvetica, sans-serif; }

/*================ Module | Rich Text Editor ================*/
.rte {
  margin-bottom: 15px; }
  .rte:after {
    content: '';
    display: table;
    clear: both; }
  .rte p,
  .rte ul,
  .rte ol,
  .rte table {
    margin-bottom: 25px; }
  .rte ul ul {
    margin-bottom: 0; }
  .rte a {
    text-decoration: none; }
  .rte .text-link {
    border-bottom: 1px solid #dd1c24; }
    .rte .text-link:hover, .rte .text-link:focus {
      border-bottom: 1px solid #dd1c24; }
  .rte h1, .rte .h1,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte h6,
  .rte .h6 {
    margin-bottom: 1em; }
  .rte h2, .rte .h2,
  .rte h3,
  .rte .h3 {
    margin-bottom: 1em; }
  .rte h1:first-child, .rte .h1:first-child,
  .rte h2:first-child,
  .rte .h2:first-child,
  .rte h3:first-child,
  .rte .h3:first-child,
  .rte h4:first-child,
  .rte .h4:first-child,
  .rte h5:first-child,
  .rte .h5:first-child,
  .rte h6:first-child,
  .rte .h6:first-child {
    margin-top: 0; }
  .rte h1 a, .rte .h1 a,
  .rte h2 a,
  .rte .h2 a,
  .rte h3 a,
  .rte .h3 a,
  .rte h4 a,
  .rte .h4 a,
  .rte h5 a,
  .rte .h5 a,
  .rte h6 a,
  .rte .h6 a {
    text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0; }
  .rte > p:last-child {
    margin-bottom: 0; }
  .rte table {
    table-layout: fixed; }

.text-center .rte ul,
.text-center .rte ol,
.text-center.rte ul,
.text-center.rte ol {
  list-style-position: inside;
  margin-left: 0; }

.rte--nomargin {
  margin-bottom: 0; }

/*================ Indented article/page images and blockquotes ================*/
.rte--indented-images img:not([style]),
.rte--indented-images img[style="float: none;"] {
  max-width: 120%;
  margin-left: -10%; }
  .rte--indented-images img:not([style]).rte__no-indent,
  .rte--indented-images img[style="float: none;"].rte__no-indent {
    margin: 0 auto;
    max-width: 100%; }
.rte--indented-images img[style="float: right;"] {
  margin: 0 -10% 15px 15px; }
.rte--indented-images img[style="float: left;"] {
  margin: 0 15px 15px -10%; }

@media screen and (min-width: 900px) {
  .rte blockquote {
    width: 120%;
    margin-left: -10%;
    padding-left: 0;
    padding-right: 0; }
    .rte blockquote p {
      margin-bottom: 0; } }
/*================ Module | Site Header ================*/
.site-header {
  padding: 15px 0 0; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

.site-header__logo {
  text-align: center;
  margin: 0 auto; }
  .site-header__logo a,
  .site-header__logo a:hover {
    text-decoration: none;
    color: black; }
  .site-header__logo a.site-header__logo-link {
    margin: 0 auto; }
  .site-header__logo a,
  .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0 auto; }

.announcement-bar {
  display: block;
  text-align: center;
  position: relative;
  text-decoration: none; }

.announcement-bar__message {
  display: block;
  font-weight: 600;
  padding: 10px 30px;
  margin: 0;
  font-size: 0.75em; }

/*================ Module | Search Bar ================*/
.search-bar {
  max-width: 100%; }

.search-bar--page {
  max-width: 300px;
  margin: 0 auto; }

.search-bar--modal {
  max-width: 300px;
  margin: 20% auto 0; }

.search-bar--header {
  max-width: 300px;
  background-color: #f6f6f6; }

.search-bar--drawer {
  margin-bottom: 15px; }

/*================ Module | Section Headers ================*/
.section-header {
  margin-bottom: 30px; }
  .section-header .section-header__title {
    letter-spacing: 0; }
  @media screen and (min-width: 591px) {
    .section-header {
      margin-bottom: 25px; } }

.section-header--404 {
  margin-bottom: 0;
  padding: 80px 0; }

@media screen and (min-width: 900px) {
  .section-header {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .section-header__title {
    margin-bottom: 12px; }

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1,
    .section-header__left h2,
    .section-header__left .h2,
    .section-header__left h3,
    .section-header__left .h3,
    .section-header__left h4,
    .section-header__left .h4,
    .section-header__left .h1,
    .section-header__left .h2,
    .section-header__left .h3,
    .section-header__left .h4 {
      margin-bottom: 0; } }
/*================ Module | Site Nav and Dropdowns ================*/
.site-nav, .site-nav--mobile {
  cursor: default;
  margin: 0;
  margin-left: -15px; }
  @media screen and (min-width: 1128px) and (max-width: 1260px) {
    .site-nav > li.site-nav__item, .site-nav--mobile > li.site-nav__item {
      font-size: .78rem; } }

.site-nav__item {
  display: inline-block;
  margin: 0; }
  .site-nav__item li {
    display: block; }

.site-nav--mobile {
  margin-left: -10px; }
  .site-nav--mobile.text-right {
    margin: 0 -10px 0 0; }

.site-nav__link {
  display: inline-block;
  text-decoration: none;
  padding: 8px 14px;
  white-space: nowrap;
  color: black;
  font-size: 0.875em; }

.site-nav__dropdown-link .icon-arrow-down {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 10px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg); }
.site-nav__dropdown-grandchild .site-nav__dropdown-link {
  white-space: normal; }

.site-nav__link--icon {
  padding-left: 7.5px;
  padding-right: 7.5px; }

.site-nav--mobile .site-nav__link {
  display: inline-block; }
.site-nav--mobile .icon {
  font-size: 1.875em; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  opacity: 0;
  display: block;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 20;
  pointer-events: none; }
  .site-nav__dropdown a {
    text-align: left; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active {
      background-color: #e6e6e6; }
  .site-nav__dropdown.nav-outside {
    left: 0;
    right: 0; }

.site-nav__dropdown-grandchild a {
  background-color: white; }
  .site-nav__dropdown-grandchild a:hover, .site-nav__dropdown-grandchild a:active {
    background-color: #e6e6e6; }
.site-nav__dropdown-grandchild ul {
  background-color: white;
  padding: 10px 0;
  margin: 0 0 0 2px; }
.site-nav__dropdown-grandchild.nav-outside {
  left: -100%; }

/*================ Mobile navigation ================*/
.mobile-nav {
  margin: 0 -15px 0 -15px; }
  .mobile-nav li {
    margin-bottom: 0;
    list-style: none; }

.mobile-nav__search {
  padding: 15px; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: black; }
  .mobile-nav__item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #efefef; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block;
  font-size: 22px; }
  .mobile-nav__subsublist .mobile-nav__item a {
    padding-left: 45px;
    font-size: 16px; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: white;
  padding: 15px;
  text-decoration: none; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #d9d9d9;
    background-color: black; }

.mobile-nav__item--secondary a {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 10px; }
.mobile-nav__item--secondary:after {
  display: none; }

.mobile-nav__spacer {
  height: 0;
  padding: 5px; }

.mobile-nav__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.mobile-nav__toggle-open {
  display: block; }
  .mobile-nav--expanded .mobile-nav__toggle-open {
    display: none; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

.mobile-nav__sublist {
  margin: 0;
  display: none; }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 30px;
    font-weight: 400; }

/*================ Cart bubble for items in cart ================*/
@media screen and (min-width: 900px) {
  .site-nav__link--icon .icon {
    font-size: 1.375em; } }
.cart-link {
  position: relative; }

.cart-link__bubble {
  display: none; }

.cart-link__bubble--visible {
  display: block;
  position: absolute;
  top: 18px;
  right: 4px;
  width: 10px;
  height: 10px;
  background-color: #dd1c24;
  border-radius: 50%; }
  @media screen and (max-width: 899px) {
    .cart-link__bubble--visible {
      top: 22px;
      right: 12px; } }

/*================ View-specific styles ================*/
/*================ Templates | Cart Page ================*/
.cart__header-labels {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.cart__row {
  position: relative;
  margin-bottom: 30px; }
  .cart__row:first-child {
    border-bottom: 1px solid #1c1d1d;
    padding-bottom: 15px; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }
  .cart__row .btn, .cart__row .btn--secondary, .cart__row .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .cart__row .shopify-payment-button__button--unbranded,
  .cart__row .btn--secondary {
    margin-bottom: 15px; }

@media screen and (min-width: 591px) {
  .update-cart + .cart__checkout {
    margin-left: 15px; } }
.cart__row--last {
  border-top: 1px solid #1c1d1d;
  padding-top: 15px; }

.cart__row--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .cart__row--table .grid__item {
    display: table-cell;
    vertical-align: middle;
    float: none; }

.cart__row--table-with-discount .grid__item {
  vertical-align: top; }

@media screen and (min-width: 900px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    width: 100%;
    display: block; }

@media screen and (max-width: 899px) {
  .cart__pricing {
    margin-top: 30px; } }

.cart__product-name {
  margin-bottom: 0; }
  @media screen and (min-width: 899px) {
    .cart__product-name {
      width: 90%; } }

.cart__product-qty {
  text-align: center;
  margin: 0 auto;
  max-width: 80px; }

.cart__note-container {
  vertical-align: top !important; }

.cart__note {
  margin: 0; }
  @media screen and (min-width: 900px) {
    .cart__note {
      padding-right: 30px; } }

.cart__subtotal-container {
  margin-top: 25px; }
  @media screen and (min-width: 900px) {
    .cart__subtotal-container {
      margin: 0; } }

.cart__discounts {
  display: flex;
  justify-content: center;
  margin-bottom: 15px; }
  @media screen and (min-width: 900px) {
    .cart__discounts {
      justify-content: flex-end; } }

.cart__product-meta {
  margin-bottom: 0; }

.additional_checkout_buttons {
  margin-left: -10px; }
  .additional_checkout_buttons > *:not(script) {
    padding: 15px 0 0 15px;
    vertical-align: top;
    line-height: 1; }
    @media screen and (max-width: 590px) {
      .additional_checkout_buttons > *:not(script) {
        padding: 15px 0 0 5px; } }
    .additional_checkout_buttons > *:not(script):first-child, .additional_checkout_buttons > *:not(script):empty {
      padding-left: 0px; }

.cart--no-cookies .cart--continue-browsing {
  display: none; }

.cart--no-cookies .cart--empty-message {
  display: none; }

.cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cookie-message {
    display: block; }

/*================ Templates | Product Page ================*/
.product-single {
  text-align: left; }

.product-single__photos {
  overflow-anchor: none; }

.product-single__meta--wrapper {
  padding-left: 45px;
  padding-right: 25px; }

.product-single__vendor {
  letter-spacing: 0.2em;
  font-size: 0.75em; }

.product-single__title {
  font-size: 1.875em;
  margin-bottom: 15px;
  word-wrap: break-word; }
  @media screen and (min-width: 591px) {
    .product-single__title {
      font-size: 2.25em; } }

.product-single__quantity {
  margin-top: 10px; }

.product-single__add-to-cart {
  margin: 0 0 10px 0;
  display: inline-flex;
  flex-flow: row wrap;
  align-items: flex-start; }
  .product-single__add-to-cart.default-product {
    margin-top: 20px; }

.product-single__form--no-variants {
  margin-top: 30px; }

.product-single__add-to-cart--full-width {
  width: 100%; }

.btn--add-to-cart {
  margin: 10px 10px 0 0;
  min-width: 155px;
  flex: auto; }
  .btn--add-to-cart.btn, .btn--add-to-cart.btn--secondary, .shopify-payment-button .btn--add-to-cart.shopify-payment-button__button--unbranded {
    padding: 12px 30px; }
  .product-single__add-to-cart--full-width .btn--add-to-cart {
    flex-basis: 100%;
    margin-right: 0; }

.product-single__description {
  margin-top: 40px;
  text-align: left; }

.product-single__full-details {
  cursor: pointer;
  display: inline-block;
  margin: 30px 0; }

.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

@media screen and (min-width: 591px) {
  .product-single__photo-wrapper {
    /* margin-bottom: $gutter / 2; */
    /* Removed to show gradient */
    padding: 20px;
    /* Added padding to show gradient background */ } }
@media screen and (min-width: 591px) {
  .product-single__photo-wrapper--featured-product {
    margin-bottom: 0; } }
@media screen and (min-width: 591px) {
  .product-single__photo[data-mfp-src] {
    cursor: zoom-in; } }
.product-single__photo--flex-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative; }

.product-single__photo--flex {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.product-single__photo--container {
  margin: 0 auto;
  max-width: 100% !important; }
  .product-single__photo--container .product-single__photo-wrapper {
    max-width: 100%;
    max-height: 100%;
    width: 100%; }

.product-single__photo-wrapper {
  position: relative;
  padding: 15px;
  /* Added padding to show gradient background */ }

.product-single__photo-wrapper--featured-product {
  margin: 0 auto; }

.product-single__photos a,
.product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  background-color: white;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100% !important;
  max-height: 100% !important; }

@media screen and (max-width: 590px) {
  .product-single__meta--wrapper {
    padding-right: 30px;
    padding-left: 15px;
    margin: 0 15px; } }
.product-single__hero .grid__item {
  display: inline-block;
  float: none;
  vertical-align: middle; }
@media screen and (min-width: 900px) {
  .product-single__hero .grid__item + .grid__item {
    margin-left: -5px; } }

.product-single__thumbnails {
  margin-left: -15px; }
  .product-single__thumbnails .grid__item {
    padding-left: 15px; }
  .product-single__thumbnails li {
    margin-bottom: 15px; }

.visibility-hidden {
  visibility: hidden; }

.product-single__prices {
  margin-bottom: 15px; }

.product-single__price,
.product-single__price--compare-at {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: black;
  font-size: 1.125em;
  font-weight: 600; }
  .product-single__price.on-sale,
  .product-single__price--compare-at.on-sale {
    color: #dd1c24; }

.product-single__price--compare-at {
  padding-right: 5px;
  display: inline-block;
  text-decoration: line-through; }

.product-single__unit {
  display: none; }
  .price-container--unit-available .product-single__unit {
    display: block; }

.product-single__policies {
  margin: 15px 0 25px 0; }

.product-single__quantity .js-quantity-selector,
.product-single__quantity .js-qty,
.product-single__quantity .ajaxcart__qty {
  display: inline-block; }

.product-single__quantity-label {
  margin-right: 10px; }

#shopify-product-reviews .spr-review-content-body,
#shopify-product-reviews .spr-review-header-byline,
#shopify-product-reviews .spr-form-label {
  font-size: 16px;
  line-height: 1.563; }
#shopify-product-reviews .spr-form-label {
  display: block;
  text-align: left; }
#shopify-product-reviews .spr-summary-actions-newreview {
  float: none; }
#shopify-product-reviews .spr-summary-caption,
#shopify-product-reviews .spr-summary-actions {
  display: block; }

.product-single__thumbnails img,
.product-single__thumbnails a {
  display: block;
  position: relative;
  background-color: transparent; }

.product-single__thumbnails img {
  max-height: 85px;
  width: auto;
  overflow: hidden; }

@media screen and (max-width: 590px) {
  .product-single__photo--container-thumb {
    display: block !important; } }
.product-single__thumbnail {
  display: block; }
  .product-single__thumbnail img {
    border: 2px solid transparent; }
  .product-single__thumbnail.active-thumb img {
    border-color: black; }

.shopify-payment-button {
  margin: 10px 10px 0 0;
  min-width: 155px;
  flex: auto; }
  .product-single__add-to-cart--full-width .shopify-payment-button {
    margin-right: 0; }
  .shopify-payment-button .shopify-payment-button__button {
    border-radius: 0; }
  .shopify-payment-button .shopify-payment-button__button--unbranded {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-right: 0;
    width: 100%;
    min-height: 44px;
    font-size: 0.8125em; }
    .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
      background-color: #e94e54 !important; }
    .shopify-payment-button .shopify-payment-button__button--unbranded:active {
      background-color: #700e12 !important; }
  .shopify-payment-button .shopify-payment-button__more-options {
    font-size: 0.875em;
    color: black;
    white-space: nowrap;
    text-decoration: underline;
    padding: 0 15px; }
    .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
      color: #1f1f1f; }
    .shopify-payment-button .shopify-payment-button__more-options:active {
      color: #3d3d3d; }

.product-unit-price {
  color: black;
  display: block; }

/*================ END TIMBER FRAMEWORK STYLES ================*/

/*================ THEME STYLES (from theme.css) ================*/
/*============================================================================
  604 Shop by Shopify - Fixed CSS 2025-07-22 21:08:03
==============================================================================*/
/*================ Variables, theme settings, and Sass mixins from Timber ================*/
/*============================================================================
  #Sass Mixins
==============================================================================*/
/****** Coulour Variables ****/
.clearfix:after {
	content: '';
	display: table;
	clear: both; }
   /*============================================================================
	604Shop 2025 Video Gallery - Optimized Styles
  ==============================================================================*/
  
  @-moz-keyframes fadeIn {
	0%, 35% {
	  opacity: 0; }
  
	100% {
	  opacity: 1; } }
  
  @-ms-keyframes fadeIn {
	0%, 35% {
	  opacity: 0; }
  
	100% {
	  opacity: 1; } }
  
  @keyframes fadeIn {
	0%, 35% {
	  opacity: 0; }
  
	100% {
	  opacity: 1; } }
  
  @-webkit-keyframes heroContentIn {
	0%, 35% {
	  opacity: 0;
	  -webkit-transform: translateY(8px);
	  -moz-transform: translateY(8px);
	  -ms-transform: translateY(8px);
	  -o-transform: translateY(8px);
	  transform: translateY(8px); }
  
	60% {
	  opacity: 1; }
  
	100% {
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	  transform: translateY(0); } }
  
  @-moz-keyframes heroContentIn {
	0%, 35% {
	  opacity: 0;
	  -webkit-transform: translateY(8px);
	  -moz-transform: translateY(8px);
	  -ms-transform: translateY(8px);
	  -o-transform: translateY(8px);
	  transform: translateY(8px); }
  
	60% {
	  opacity: 1; }
  
	100% {
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	  transform: translateY(0); } }
  
  @-ms-keyframes heroContentIn {
	0%, 35% {
	  opacity: 0;
	  -webkit-transform: translateY(8px);
	  -moz-transform: translateY(8px);
	  -ms-transform: translateY(8px);
	  -o-transform: translateY(8px);
	  transform: translateY(8px); }
  
	60% {
	  opacity: 1; }
  
	100% {
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	  transform: translateY(0); } }
  
  @keyframes heroContentIn {
	0%, 35% {
	  opacity: 0;
	  -webkit-transform: translateY(8px);
	  -moz-transform: translateY(8px);
	  -ms-transform: translateY(8px);
	  -o-transform: translateY(8px);
	  transform: translateY(8px); }
  
	60% {
	  opacity: 1; }
  
	100% {
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	  transform: translateY(0); } }
  
  /*============================================================================
	Dependency-free breakpoint mixin
	  - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
  ==============================================================================*/
  /*============================================================================
	Flexbox prefix mixins from Bourbon
	  https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
  ==============================================================================*/
  /*================ The following are dependencies of csswizardry grid ================*/
  /*================ Color variables ================*/
  /*================ Typography ================*/
  @font-face {
	font-family: Montserrat;
	font-weight: 700;
	font-style: normal;
	src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=1456bc620c204f0cb3662cc4fbdc40ccf0b3e9f882dce64c3495c0c72ecf2f8c") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=6e96ad42c9a6ac2af48ab9016eeb460dc7a886dc9f6f3e964f57ac150c5ba143") format("woff"); }
  
  @font-face {
	font-family: Montserrat;
	font-weight: 400;
	font-style: normal;
	src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=f436c4ff2f42ed1c06229674c8e240fd6ccb4b1a6ef69f747a7093ce494c1527") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=9e8fb45a073bcc134060809fdcd3f5eb5b83400ed39e25bafd1cfdc84540b627") format("woff"); }
  
  @font-face {
	font-family: Montserrat;
	font-weight: 600;
	font-style: normal;
	src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n6.1326b3e84230700ef15b3a29fb520639977513e0.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=4697078495c853a0122e17b40af861315c26083ce48671b1b36a53ff24ff6cd4") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n6.652f051080eb14192330daceed8cd53dfdc5ead9.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=815ef4895916866c57737939a1a99b36311f78e91abd91cd3b71c8275ca9f10f") format("woff"); }
  
  @font-face {
	font-family: Montserrat;
	font-weight: 700;
	font-style: normal;
	src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=1456bc620c204f0cb3662cc4fbdc40ccf0b3e9f882dce64c3495c0c72ecf2f8c") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=6e96ad42c9a6ac2af48ab9016eeb460dc7a886dc9f6f3e964f57ac150c5ba143") format("woff"); }
  
  @font-face {
	font-family: Montserrat;
	font-weight: 400;
	font-style: italic;
	src: url("//604shop.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=f26c53c29f2ebd4195174c7c59d4ef9959691be5072cfde1facbce0f5da18583") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=74204970e3846496dbf5a3a6b89c607c36b9ed58c7cf14d1be4897cef800f79b") format("woff"); }
  
  @font-face {
	font-family: Montserrat;
	font-weight: 700;
	font-style: italic;
	src: url("//604shop.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=4b296ef4effb91806fda7b2c4ed5506d472582b9eb27856713d5cc80233e920e") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=56b7065a2598b4f8302e85c2717f3d2b0d85a71ed242ba4db8edcf73d01fb008") format("woff"); }
  
  @font-face {
	font-family: Montserrat;
	font-weight: 900;
	font-style: normal;
	src: url("//604shop.com/cdn/fonts/montserrat/montserrat_n9.680ded1be351aa3bf3b3650ac5f6df485af8a07c.woff2?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=55bc534741be1e999e2e4a49f7e2ee57ecc3342834490aaa6ce506682708a4d0") format("woff2"), url("//604shop.com/cdn/fonts/montserrat/montserrat_n9.0cc5aaeff26ef35c23b69a061997d78c9697a382.woff?h1=NjA0c2hvcC5jb20&h2=dGhlNjA0c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=3fae1c02d197516e4312ee9e2ea0c34fa76d37e84de01f55e155a4bd9817a8d8") format("woff"); }
  
  @font-face {
	font-family: 'icons';
	src: url("//604shop.com/cdn/shop/t/8/assets/icons.eot?v=112981532348062652561748891349");
	src: url("//604shop.com/cdn/shop/t/8/assets/icons.eot?v=112981532348062652561748891349#iefix") format("embedded-opentype"), url("//604shop.com/cdn/shop/t/8/assets/icons.woff?v=24089382976848351381748891349") format("woff"), url("//604shop.com/cdn/shop/t/8/assets/icons.ttf?v=177851439206450752971748891349") format("truetype"), url("//604shop.com/cdn/shop/t/8/assets/icons.svg?v=182753167674510223691748891349#timber-icons") format("svg");
	font-weight: normal;
	font-style: normal; }
  
  /*================ Vendor-specific styles ================*/
  /* Magnific Popup CSS */
  .mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
	filter: alpha(opacity=80); }
  
  .mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden; }
  
  .mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }
  
  .mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle; }
  
  .mfp-align-top .mfp-container:before {
	display: none; }
  
  .mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045; }
  
  .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto; }
  
  .mfp-ajax-cur {
	cursor: progress; }
  
  .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out; }
  
  .mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in; }
  
  .mfp-auto-cursor .mfp-content {
	cursor: auto; }
  
  .mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none; }
  
  .mfp-loading.mfp-figure {
	display: none; }
  
  .mfp-hide {
	display: none !important; }
  
  .mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044; }
  
  .mfp-preloader a {
	color: #CCC; }
  
  .mfp-preloader a:hover {
	color: #FFF; }
  
  .mfp-s-ready .mfp-preloader {
	display: none; }
  
  .mfp-s-error .mfp-content {
	display: none; }
  
  button.mfp-close, button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none; }
  
  button::-moz-focus-inner {
	padding: 0;
	border: 0; }
  
  .mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	filter: alpha(opacity=65);
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace; }
  
  .mfp-close:hover, .mfp-close:focus {
	opacity: 1;
	filter: alpha(opacity=100); }
  
  .mfp-close:active {
	top: 1px; }
  
  .mfp-close-btn-in .mfp-close {
	color: #333; }
  
  .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%; }
  
  .mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap; }
  
  .mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  
  .mfp-arrow:active {
	margin-top: -54px; }
  
  .mfp-arrow:hover, .mfp-arrow:focus {
	opacity: 1;
	filter: alpha(opacity=100); }
  
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent; }
  
  .mfp-arrow:after, .mfp-arrow .mfp-a {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px; }
  
  .mfp-arrow:before, .mfp-arrow .mfp-b {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7; }
  
  .mfp-arrow-left {
	left: 0; }
  
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
	border-right: 17px solid #FFF;
	margin-left: 31px; }
  
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F; }
  
  .mfp-arrow-right {
	right: 0; }
  
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
	border-left: 17px solid #FFF;
	margin-left: 39px; }
  
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
	border-left: 27px solid #3F3F3F; }
  
  .mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px; }
  
  .mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px; }
  
  .mfp-iframe-holder .mfp-close {
	top: -40px; }
  
  .mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%; }
  
  .mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000; }
  
  /* Main image in popup */
  img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto; }
  
  /* The shadow behind the image */
  .mfp-figure {
	line-height: 0; }
  
  .mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444; }
  
  .mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px; }
  
  .mfp-figure figure {
	margin: 0; }
  
  .mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto; }
  
  .mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px; }
  
  .mfp-image-holder .mfp-content {
	max-width: 100%; }
  
  .mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer; }
  
  @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
		 * Remove all paddings around the image on small screen
		 */
	.mfp-img-mobile .mfp-image-holder {
	  padding-left: 0;
	  padding-right: 0; }
  
	.mfp-img-mobile img.mfp-img {
	  padding: 0; }
  
	.mfp-img-mobile .mfp-figure:after {
	  top: 0;
	  bottom: 0; }
  
	.mfp-img-mobile .mfp-figure small {
	  display: inline;
	  margin-left: 5px; }
  
	.mfp-img-mobile .mfp-bottom-bar {
	  background: rgba(0, 0, 0, 0.6);
	  bottom: 0;
	  margin: 0;
	  top: auto;
	  padding: 3px 5px;
	  position: fixed;
	  -webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
	  box-sizing: border-box; }
  
	.mfp-img-mobile .mfp-bottom-bar:empty {
	  padding: 0; }
  
	.mfp-img-mobile .mfp-counter {
	  right: 5px;
	  top: 3px; }
  
	.mfp-img-mobile .mfp-close {
	  top: 0;
	  right: 0;
	  width: 35px;
	  height: 35px;
	  line-height: 35px;
	  background: rgba(0, 0, 0, 0.6);
	  position: fixed;
	  text-align: center;
	  padding: 0; } }
  @media all and (max-width: 900px) {
	.mfp-arrow {
	  -webkit-transform: scale(0.75);
	  transform: scale(0.75); }
  
	.mfp-arrow-left {
	  -webkit-transform-origin: 0;
	  transform-origin: 0; }
  
	.mfp-arrow-right {
	  -webkit-transform-origin: 100%;
	  transform-origin: 100%; }
  
	.mfp-container {
	  padding-left: 6px;
	  padding-right: 6px; } }
  .mfp-ie7 .mfp-img {
	padding: 0; }
  
  .mfp-ie7 .mfp-bottom-bar {
	width: 600px;
	left: 50%;
	margin-left: -300px;
	margin-top: 5px;
	padding-bottom: 5px; }
  
  .mfp-ie7 .mfp-container {
	padding: 0; }
  
  .mfp-ie7 .mfp-content {
	padding-top: 44px; }
  
  .mfp-ie7 .mfp-close {
	top: 0;
	right: 0;
	padding-top: 0; }
  
  /*================ Theme-specific partials ================*/
  /*================ Theme specific global styles ================*/
  hr, .hr--small, .hr--medium, .hr--large {
	border-width: 1px 0 0 0;
	width: 50px; }
  
  .hr--small {
	margin: 20px auto; }
  
  .hr--medium {
	margin: 35px auto; }
	@media screen and (min-width: 900px) {
	  .hr--medium {
		margin: 45px auto; } }
  
  .hr--large {
	margin: 60px auto; }
  
  .hr--left {
	margin-left: 0;
	margin-right: 0; }
  
  /*================ Table styles ================*/
  table {
	position: relative;
	border: 0 none;
	background-color: #f6f6f6; }
  
  td,
  th {
	border: 0 none; }
  
  td {
	padding: 10px 15px; }
  
  tr:first-child th,
  tr:first-child td {
	position: relative; }
	tr:first-child th:after,
	tr:first-child td:after {
	  content: '';
	  display: block;
	  position: absolute;
	  bottom: 0;
	  left: -15px;
	  right: 15px;
	  border-bottom: 1px solid #1c1d1d; }
	tr:first-child th:first-child:after,
	tr:first-child td:first-child:after {
	  left: 15px;
	  right: -15px; }
  
  /*============================================================================
	Responsive tables, defined with .table--responsive on table element.
  ==============================================================================*/
  @media screen and (max-width: 590px) {
	.table--responsive thead {
	  display: none; }
	.table--responsive tr {
	  display: block; }
	.table--responsive th,
	.table--responsive td {
	  display: block;
	  text-align: right;
	  padding: 15px; }
	.table--responsive td:before {
	  content: attr(data-label);
	  float: left;
	  font-family: Montserrat, sans-serif;
	  font-weight: 700;
	  font-style: normal;
	  letter-spacing: 0.1em;
	  text-transform: uppercase;
	  font-size: 12px;
	  padding-right: 10px; } }
  
  @media screen and (max-width: 590px) {
	.table--small-hide {
	  display: none !important; }
  
	.table__section + .table__section {
	  position: relative;
	  margin-top: 10px;
	  padding-top: 15px; }
	  .table__section + .table__section:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 15px;
		right: 15px;
		border-bottom: 1px solid #1c1d1d; } }
  /*================ Partials | Theme typography overrides ================*/
  body,
  input,
  textarea,
  button,
  select {
	line-height: 1.563; }
  
  /*================ Tables ================*/
  th,
  .table__title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.8125em;
	letter-spacing: 0.15em; }
  
  /*================ Rich Text Editor Styles ================*/
  blockquote {
	font-style: italic;
	font-size: 1.4375em;
	line-height: 1.385;
	text-align: center; }
	@media screen and (min-width: 591px) {
	  blockquote {
		font-size: 1.625em; } }
  
  .section-header .rte {
	font-style: italic;
	font-size: 1.125em; }
  
  /*================ Blog and Page Typography ================*/
  .article .rte h2,
  .article .rte h3,
  .page .rte h2,
  .page .rte h3 {
	margin-bottom: 2em; }
  
  /*================ Blog Typography ================*/
  .date {
	font-style: italic;
	display: inline-block;
	line-height: 1.7;
	margin-bottom: 5px; }
	@media screen and (min-width: 900px) {
	  .date {
		margin-bottom: 0; } }
	.section-header .date:last-child {
	  margin-bottom: 40px; }
  
  .comment-author {
	font-style: italic;
	margin-bottom: 0; }
  
  .comment-date {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.75em; }
  
  /*================ Cart Typography ================*/
  .ajaxcart__product-name,
  .cart__product-name {
	font-style: italic; }
  
  .ajaxcart__product-name {
	font-size: 1.0625em;
	line-height: 1.3; }
  
  .ajaxcart__price,
  .cart__price,
  .cart__subtotal {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase; }
  
  .cart__unit-price {
	display: block; }
  
  .ajaxcart__price {
	font-size: 0.8125em;
	display: block; }
  
  .ajaxcart__discount {
	display: block;
	font-style: italic; }
  
  .ajaxcart__subtotal {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase; }
  
  .ajaxcart__qty-num[type="text"] {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-style: normal;
	font-size: 0.8125em; }
  
  .ajaxcart__note {
	font-style: italic;
	font-weight: 400;
	opacity: 0.7; }
  
  .ajaxcart__policies {
	font-weight: 400;
	opacity: 0.7; }
  
  .ajaxcart__policies a {
	border-bottom: 1px solid white; }
	.ajaxcart__policies a:hover {
	  border-bottom: none; }
  
  /*================ Misc typography ================*/
  .drawer__title {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 1.5em; }
  
  .collection-grid__item-title {
	font-style: italic;
	font-size: 3em;
	line-height: 1.1; }
	@media screen and (max-width: 591px) {
	  .collection-grid__item-title {
		font-size: 2.375em; } }
  
  /*================ Partials | Theme Form Overrides ================*/
  label {
	font-style: italic;
	font-weight: 400; }
  
  ::-webkit-input-placeholder {
	color: black;
	opacity: 0.6; }
  
  :-moz-placeholder {
	color: black;
	opacity: 0.6; }
  
  :-ms-input-placeholder {
	color: black;
	opacity: 0.6; }
  
  ::-ms-input-placeholder {
	color: black;
	opacity: 1; }
  
  input,
  textarea,
  select {
	font-style: italic;
	font-size: 1.125em;
	border-color: transparent;
	background-color: #f6f6f6;
	color: #1c1d1d;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out; }
	input[disabled], input.disabled,
	textarea[disabled],
	textarea.disabled,
	select[disabled],
	select.disabled {
	  background-color: #f6f6f6;
	  border-color: transparent; }
	input:hover,
	textarea:hover,
	select:hover {
	  -webkit-transition: opacity 0.15s ease-out;
	  -moz-transition: opacity 0.15s ease-out;
	  -ms-transition: opacity 0.15s ease-out;
	  -o-transition: opacity 0.15s ease-out;
	  transition: opacity 0.15s ease-out;
	  opacity: 0.9; }
	input:active, input:focus,
	textarea:active,
	textarea:focus,
	select:active,
	select:focus {
	  opacity: 1; }
  
  select:hover {
	outline: 1px solid #dddddd; }
  
  input[type="number"] {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 1em; }
  
  input[type="image"] {
	background-color: transparent; }
  
  /*================ Ajax quantity selectors ================*/
  .js-qty {
	background-color: #f6f6f6;
	color: #1c1d1d; }
  
  .js-qty__adjust:hover {
	background-color: black;
	color: #dd1c24; }
  
  .js-qty__adjust--minus,
  .js-qty__adjust--plus {
	border-color: black;
	color: #1c1d1d; }
  
  /*================ Newsletter area ================*/
  .newsletter {
	background-color: #f6f6f6;
	padding: 30px 0;
	margin-top: 60px; }
	.shopify-section:first-child .newsletter {
	  margin-top: -60px; }
	  @media screen and (min-width: 591px) {
		.shopify-section:first-child .newsletter {
		  margin-bottom: -60px;
		  position: relative;
		  top: -50px; } }
	@media screen and (min-width: 591px) {
	  .newsletter {
		padding: 60px 0; } }
	@media screen and (max-width: 590px) {
	  .newsletter .section-header {
		margin-bottom: 20px; } }
	.newsletter .section-header + .section-subheading {
	  margin-bottom: 20px; }
	  @media screen and (min-width: 591px) {
		.newsletter .section-header + .section-subheading {
		  margin-top: -50px;
		  margin-bottom: 50px; } }
	@media screen and (max-width: 590px) {
	  .newsletter .rte p {
		margin-bottom: 22px; } }
	.newsletter form {
	  margin: 0 auto;
	  max-width: 520px; }
	  .newsletter form .newsletter--form {
		padding: 10px; }
	  .newsletter form .note,
	  .newsletter form .errors {
		margin-bottom: 0; }
	.newsletter form .newsletter--form,
	.newsletter .newsletter__input {
	  background-color: white;
	  color: black; }
	.newsletter .newsletter__input {
	  font-size: 1.125em;
	  -moz-appearance: textfield;
	  -webkit-appearance: textfield;
	  appearance: textfield; }
	  .newsletter .newsletter__input::-webkit-input-placeholder {
		/* WebKit browsers */
		color: black;
		opacity: 1; }
	  .newsletter .newsletter__input:-moz-placeholder {
		/* Mozilla Firefox 4 to 18 */
		color: black;
		opacity: 1; }
	  .newsletter .newsletter__input::-moz-placeholder {
		/* Mozilla Firefox 19+ */
		color: black;
		opacity: 1; }
	  .newsletter .newsletter__input:-ms-input-placeholder {
		/* Internet Explorer 10+ */
		color: black; }
	  .newsletter .newsletter__input::-ms-input-placeholder {
		/* Microsoft Edge 12+ */
		color: black;
		opacity: 1; }
	  @media screen and (min-width: 591px) {
		.newsletter .newsletter__input {
		  font-size: 1.3125em; } }
	.newsletter .newsletter__submit-text--large {
	  white-space: nowrap; }
  
  @media screen and (max-width: 590px) {
	.newsletter__submit-text--large,
	.password-page__login-form__submit-text--large {
	  display: none; }
  
	.newsletter__submit-text--small,
	.password-page__login-form__submit-text--small {
	  display: block; } }
  @media screen and (min-width: 591px) {
	.newsletter__submit-text--large,
	.password-page__login-form__submit-text--large {
	  display: block; }
  
	.newsletter__submit-text--small,
	.password-page__login-form__submit-text--small {
	  display: none; } }
  .newsletter__label {
	padding-left: 10px; }
  
  /*================ Modules | Theme product collage grid ================*/
  .grid__row-separator {
	clear: both;
	width: 100%; }
  
  .grid-collage {
	margin-bottom: -13px; }
  
  @media screen and (max-width: 590px) {
	.grid-collage .grid-product__image-link {
	  height: 310px; } }
  .grid-collage .grid-product__image-link {
	vertical-align: middle;
	display: table-cell; }
  
  @media screen and (min-width: 591px) {
	.large--two-thirds.reverse {
	  float: right; }
  
	.grid-collage .large--two-thirds {
	  clear: both; }
	  .grid-collage .large--two-thirds.reverse {
		clear: none; }
	.grid-collage .grid__item.large--one-third {
	  clear: none; }
	.grid-collage .large--one-half {
	  float: left;
	  display: inline-block; }
  
	.grid-collage .large--one-third {
	  clear: inherit; }
  
	.grid-collage .grid-product__image-link {
	  height: 670px; }
  
	.grid-collage .large--one-half .grid-product__image-link {
	  height: 310px; }
  
	.grid-collage .large--two-thirds .grid-product__image-link {
	  height: 520px; }
  
	.grid-collage .large--one-third .grid-product__image-link {
	  height: 230px; } }
  /*================ Modules | Theme collection collage grid ================*/
  .collection-grid {
	margin-bottom: -15px; }
	@media screen and (min-width: 591px) {
	  .collection-grid {
		margin-bottom: -30px; } }
  
  .collection-collage__item {
	position: relative;
	margin-bottom: 15px;
	height: 450px; }
	@media screen and (max-width: 590px) {
	  .collection-collage__item.one-whole {
		height: 190px; }
	  .collection-collage__item.one-half {
		height: 130px; } }
	@media screen and (min-width: 591px) {
	  .collection-collage__item {
		margin-bottom: 30px; } }
  
  @media screen and (min-width: 591px) {
	.collection-collage__item.large--one-half {
	  height: 310px; }
	.collection-collage__item.large--one-third {
	  height: 280px; } }
  /*================ Partials | Theme button overrides ================*/
  a {
	color: black;
	text-decoration: none;
	background: transparent; }
	a:hover {
	  color: black; }
  
  .rte a,
  .text-link {
	color: #dd1c24; }
	.rte a:hover,
	.text-link:hover {
	  color: #dd1c24; }
  
  .return-link {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.875em; }
  
  /*================ Buttons and Input Groups ================*/
  .btn,
  .btn--secondary {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 12px 20px;
	font-size: 0.8125em; }
  
  .input-group .btn,
  .input-group .btn--secondary,
  .input-group .input-group-field {
	height: 45px; }
  
  /*================ Button loading indicator, when supported ================*/
  .supports-csstransforms .btn--loading {
	position: relative;
	background-color: #c61920;
	color: #c61920; }
	.supports-csstransforms .btn--loading:hover, .supports-csstransforms .btn--loading:active {
	  background-color: #c61920;
	  color: #c61920; }
	.supports-csstransforms .btn--loading:after {
	  content: '';
	  display: block;
	  width: 24px;
	  height: 24px;
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  margin-left: -12px;
	  margin-top: -12px;
	  border-radius: 50%;
	  border: 3px solid white;
	  border-top-color: transparent;
	  -webkit-animation: spin 1s infinite linear;
	  -moz-animation: spin 1s infinite linear;
	  -o-animation: spin 1s infinite linear;
	  animation: spin 1s infinite linear; }
  
  /*================ Partials | Theme drawer overrides ================*/
  /*================ Override drawer scrolling to accommodate fixed header/footers ================*/
  .drawer {
	overflow: hidden; }
  
  .drawer__inner {
	position: absolute;
	top: 80px;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px 15px 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch; }
	@media screen and (min-width: 900px) {
	  .drawer__inner {
		padding-left: 30px;
		padding-right: 30px; } }
	.drawer--has-fixed-footer .drawer__inner {
	  overflow: hidden; }
  
  .drawer-left__inner {
	top: 0;
	padding-top: 26px; }
  
  /*================ Drawer Fixed Headers ================*/
  .drawer__fixed-header {
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	height: 80px;
	overflow: visible; }
	@media screen and (min-width: 900px) {
	  .drawer__fixed-header {
		left: 30px;
		right: 30px; } }
  
  .drawer__header {
	padding: 15px 0;
	margin: 0; }
  
  @media screen and (max-width: 899px) {
	.drawer__close-button .icon {
	  font-size: 1.375em; } }
  @media screen and (min-width: 591px) {
	.drawer__close-button {
	  right: 0; } }
  @media screen and (min-width: 1121px) {
	.drawer__close-button {
	  right: -20px; } }
  /*================ Drawer Fixed Cart Footer ================*/
  .ajaxcart__inner--has-fixed-footer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 15px 15px 0;
	bottom: 130px;
	overflow: auto;
	-webkit-overflow-scrolling: touch; }
	@media screen and (min-width: 900px) {
	  .ajaxcart__inner--has-fixed-footer {
		padding: 30px 30px 0; } }
  
  .ajaxcart__footer {
	border-top: 1px solid #dd1c24;
	padding-top: 15px; }
  
  .ajaxcart__footer--fixed {
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	min-height: 130px;
	padding-bottom: 30px; }
	@media screen and (max-width: 590px) {
	  .ajaxcart__footer--fixed {
		padding-bottom: 15px; } }
	@media screen and (min-width: 900px) {
	  .ajaxcart__footer--fixed {
		left: 30px;
		right: 30px; } }
  
  .ajaxcart__discounts {
	margin-bottom: 15px; }
  
  /*================ Drawer Quantity Selectors ================*/
  .ajaxcart__qty {
	max-width: 75px; }
	.ajaxcart__qty input[type='text'] {
	  padding: 0 20px; }
	.ajaxcart__qty .js-qty__adjust,
	.ajaxcart__qty .ajaxcart__qty-adjust {
	  padding: 0 5px;
	  line-height: 1; }
  
  /*================ Cart item styles ================*/
  .ajaxcart__product:last-child .ajaxcart__row {
	border-bottom: 0 none;
	padding-bottom: 0; }
  
  .btn--secondary {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out; }
	.btn--secondary:hover {
	  background-color: #b0161d; }
  
  /*============================================================================
	Social Icon Buttons v1.0
	Author:
	  Carson Shold | @cshold
	  http://www.carsonshold.com
	MIT License
  ==============================================================================*/
  /*================ Social share buttons ================*/
  .social-sharing {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
	/*================ Large Buttons ================*/ }
	.social-sharing * {
	  -webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
	  box-sizing: border-box; }
	.social-sharing a {
	  display: inline-block;
	  color: black;
	  border-radius: 2px;
	  margin: 5px 0;
	  height: 22px;
	  line-height: 22px;
	  text-decoration: none;
	  font-weight: 400; }
	.social-sharing span {
	  display: inline-block;
	  vertical-align: top;
	  height: 22px;
	  line-height: 22px;
	  font-size: 12px; }
	.social-sharing .icon {
	  padding: 0 5px 0 10px; }
	  .social-sharing .icon:before {
		line-height: 22px; }
	.social-sharing.is-large a {
	  height: 44px;
	  line-height: 44px; }
	  .social-sharing.is-large a span {
		height: 44px;
		line-height: 44px;
		font-size: 18px; }
	  .social-sharing.is-large a .icon {
		padding: 0 10px 0 18px; }
		.social-sharing.is-large a .icon:before {
		  line-height: 44px; }
  
  .share-title {
	font-size: 1.125em;
	padding-right: 10px; }
	.is-large .share-title {
	  padding-right: 16px; }
  
  /*================ Clean Buttons ================*/
  .social-sharing.clean a {
	background-color: white;
	color: black;
	height: 30px;
	line-height: 30px; }
	.social-sharing.clean a span {
	  height: 30px;
	  line-height: 30px;
	  font-size: 13px; }
	.social-sharing.clean a:hover {
	  opacity: 0.8; }
	.social-sharing.clean a:hover .share-count {
	  opacity: 0.8; }
	  .social-sharing.clean a:hover .share-count:after {
		border-right-color: white; }
	.social-sharing.clean a .share-title {
	  font-weight: 400; }
  .social-sharing.clean .share-count {
	top: -1px; }
  
  /*================ Partials | Theme search grid ================*/
  .grid-search {
	margin-bottom: 30px; }
  
  .grid-search__product {
	position: relative;
	text-align: center; }
  
  @media screen and (min-width: 900px) {
	.grid-search__page-link,
	.grid-search__product-link {
	  height: 280px; } }
  
  .grid-search__page-link {
	display: block;
	background-color: white;
	padding: 20px;
	color: black;
	overflow: hidden; }
	.grid-search__page-link:hover, .grid-search__page-link:focus {
	  background-color: #f7f7f7; }
  
  .grid-search__page-content {
	display: block;
	height: 100%;
	overflow: hidden; }
  
  .grid-search__image {
	display: block;
	padding: 20px;
	margin: 0 auto;
	max-height: 100%;
	max-width: 100%; }
	@media screen and (min-width: 900px) {
	  .grid-search__image {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%); } }
  
  /*================ Partials | Sections ================*/
  .index-sections .shopify-section:first-child {
	margin: 0; }
  .index-sections .shopify-section {
	margin-top: 60px; }
	@media screen and (max-width: 899px) {
	  .index-sections .shopify-section {
		margin-top: 45px; } }
  
  /*================ Partials | Sections onboarding ================*/
  .placeholder-svg {
	fill: rgba(0, 0, 0, 0.35);
	background-color: rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%; }
  
  .placeholder-background {
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0; }
	.hero .placeholder-background {
	  background-color: transparent; }
	.placeholder-background .placeholder-svg {
	  fill: rgba(0, 0, 0, 0.1);
	  background-color: transparent; }
  
  .hero__slide.slide--placeholder {
	background-color: rgba(0, 0, 0, 0.1) !important; }
  
  /*================ Partials | Featured products section onboarding ================*/
  .helper-section .grid-product__image-link, .helper .grid-product__image-link {
	background-color: transparent; }
  
  .helper-section .grid-product__image-wrapper {
	height: 275px !important; }
  
  /*================ Partials | Featured row section ================*/
  .feature-row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center; }
	@media screen and (max-width: 899px) {
	  .feature-row {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; } }
  
  .feature-row__item {
	-webkit-flex: 0 1 50%;
	-moz-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%; }
	@media screen and (max-width: 899px) {
	  .feature-row__item {
		-webkit-flex: 1 1 100%;
		-moz-flex: 1 1 100%;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		max-width: 100%; } }
  
  .feature-row__image-wrapper {
	position: relative; }
	.no-js .feature-row__image-wrapper {
	  clip: rect(0 0 0 0);
	  clip: rect(0, 0, 0, 0);
	  overflow: hidden;
	  position: absolute;
	  height: 1px;
	  width: 1px;
	  padding-top: 0 !important; }
  
  .feature-row__image-no-js {
	display: block;
	margin: 0 auto; }
	@media screen and (max-width: 899px) {
	  .feature-row__image-no-js {
		order: 1; } }
  
  .feature-row__image {
	display: block;
	margin: 0 auto;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0; }
	@media screen and (max-width: 899px) {
	  .feature-row__image {
		order: 1; } }
  
  .feature-row__text {
	padding-top: 35px;
	padding-bottom: 35px; }
	@media screen and (max-width: 899px) {
	  .feature-row__text {
		order: 2;
		padding-bottom: 0; } }
  
  @media screen and (min-width: 900px) {
	.feature-row__text--left {
	  padding-left: 35px; }
  
	.feature-row__text--right {
	  padding-right: 35px; } }
  /*================ Module-specific styles ================*/
  /*============================================================================
	To update Slick slider to a new version,
	scroll down to #Slick Slider SCSS and follow the instructions
  
	Default Slick classes all start with '.slick'
	Custom classes all start with '.hero'
  
	Extra specificity in selectors is used to override default
	styles before including the default Slick CSS
  ==============================================================================*/
  /*================ Variables ================*/
  /*================ Prev/next and pagination ================*/
  .slick-slider .slick-dots {
	margin: 0;
	bottom: 10px; }
	.slick-slider .slick-dots li {
	  margin: 0;
	  vertical-align: middle; }
	  .slick-slider .slick-dots li button {
		position: relative; }
	  .slick-slider .slick-dots li button:before,
	  .slick-slider .slick-dots li a:before {
		text-indent: -9999px;
		border-radius: 100%;
		background-color: #ffffff;
		border: 2px solid transparent;
		width: 10px;
		height: 10px;
		margin: 0.3rem 0 0 0.3rem;
		opacity: 1;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s; }
	  .slick-slider .slick-dots li.slick-active button:before {
		background-color: transparent;
		border-color: #ffffff;
		opacity: 1;
		width: 0.75rem;
		height: 0.75rem;
		margin: 0.25rem 0 0 0.25rem; }
	  .slick-slider .slick-dots li button:active:before {
		opacity: 0.5; }
  
  .hero .slick-prev,
  .hero .slick-next {
	height: 3.125rem;
	margin-top: 0;
	width: 3.125rem; }
  .hero .slick-prev {
	left: 1.1rem; }
  .hero .slick-next {
	right: 1.45rem; }
	@media only screen and (max-width: 1120px) {
	  .hero .slick-next {
		right: 1rem; } }
  
  /*============================================================================
	General slide styles
	  - Sizes based on height of image when 100% of container width
  ==============================================================================*/
  .hero__slide {
	position: relative; }
  
  .hero__image {
	position: relative;
	opacity: 0; }
	.slick-initialized .hero__image {
	  opacity: 1;
	  -webkit-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  -moz-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  -o-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
	.hero__image img {
	  display: block;
	  width: 100%; }
  
  .slideshow__overlay:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0; }
  
  .hero__slide--hidden {
	visibility: hidden; }
  
  .supports-touch .hero__slide--hidden {
	visibility: visible; }
  
  /*============================================================================
	Full screen hero styles
	  - Uses css background image
  ==============================================================================*/
  .hero {
	height: 72vh;
	max-height: 72vh;
	margin-bottom: 1.9rem; }
	@media screen and (max-width: 1120px) {
	  .hero {
		min-height: unset; } }
	.hero .slick-list,
	.hero .slick-track {
	  height: 100%; }
	  @media screen and (max-width: 1120px) {
		.hero .slick-list,
		.hero .slick-track {
		  min-height: unset; } }
	.hero .hero__image {
	  height: auto;
	  width: 63%;
	  position: absolute;
	  right: 0;
	  bottom: 0;
	  object-fit: cover;
	  font-family: "object-fit: cover"; }
	  @media screen and (max-width: 1120px) {
		.hero .hero__image {
		  display: none; } }
	  @media screen and (max-width: 590px) {
		.hero .hero__image {
		  display: inline-block;
		  max-width: 100%;
		  width: 100%;
		  position: relative; } }
  
  .hero[data-adapt="false"],
  .hero[data-adapt="false"] .slideshow__overlay:before {
	height: auto; }
  
  @media screen and (max-width: 1120px) {
	.hero[data-adapt="true"] .slideshow__overlay:before {
	  min-height: 50vw; } }
  
  .hero[data-adapt="false"],
  .hero[data-adapt="false"] .slideshow__overlay:before {
	height: 560px;
	max-height: 80vh; }
	@media screen and (max-width: 1120px) {
	  .hero[data-adapt="false"],
	  .hero[data-adapt="false"] .slideshow__overlay:before {
		height: auto;
		max-height: unset; } }
  
  @media screen and (max-width: 1120px) {
	.hero[data-adapt="true"] .slideshow__overlay:before {
	  min-height: 50vw; } }
  
  .no-js .hero__image {
	clip: rect(0 0 0 0);
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	position: absolute;
	height: 1px;
	width: 1px; }
  
  .hero__image-no-js {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	height: 100vh;
	min-height: 550px;
	opacity: 1; }
  
  /*================ Hero text/CTA ================*/
  .hero__text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0; }
	@media screen and (max-width: 1120px) {
	  .hero__text-wrap {
		position: relative;
		margin-top: 15px; } }
  
  .hero__slide:not(:first-of-type) .hero__text-wrap {
	display: none; }
	.slick-initialized .hero__slide:not(:first-of-type) .hero__text-wrap {
	  display: block; }
  
  .hero__text-align {
	display: table;
	height: 100%; }
	@media screen and (max-width: 899px) {
	  .hero--adapt .hero__text-align {
		display: none; } }
  
  .hero__text-content {
	position: relative;
	opacity: 0;
	display: table-cell;
	vertical-align: middle;
	padding: 0.94rem 0.6rem 0;
	-webkit-transition: color 0.2s ease;
	-moz-transition: color 0.2s ease;
	-ms-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease; }
	@media screen and (max-width: 899px) {
	  .hero__text-content {
		padding: 0; } }
	.slick-initialized .hero__text-content {
	  opacity: 1;
	  -webkit-animation: heroContentIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  -moz-animation: heroContentIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  -o-animation: heroContentIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  animation: heroContentIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  
  .hero__text-content .slick-dots {
	position: static; }
  
  .hero__adapt-text-wrap {
	margin-bottom: 1rem; }
	@media screen and (min-width: 900px) {
	  .hero__adapt-text-wrap {
		display: none !important; } }
	@media screen and (max-width: 899px) {
	  .hero__adapt-text-wrap {
		color: black; } }
	.hero__adapt-text-wrap .hero__text-content {
	  display: none; }
  
  .hero__text-content--adapt {
	opacity: 1; }
  
  /*================ Extra specificity to override Timber defaults ================*/
  .hero__slide .hero__title,
  .hero--adapt .hero__title {
	margin-bottom: 1.25rem;
	line-height: 1.1;
	letter-spacing: 0;
	font-style: italic; }
  .hero__slide .hero__subtitle,
  .hero--adapt .hero__subtitle {
	margin-bottom: 5px;
	text-transform: none; }
  .hero__slide a.hero__cta,
  .hero--adapt a.hero__cta {
	margin-bottom: 0; }
  
  /*================ Font sizes ================*/
  .hero__slide .hero__title,
  .hero--adapt .hero__title {
	font-size: 2.6875em; }
  .hero__slide .hero__subtitle,
  .hero--adapt .hero__subtitle {
	font-size: 2em; }
  @media screen and (min-width: 591px) {
	.hero__slide .hero__title,
	.hero--adapt .hero__title {
	  font-size: 3.25em; }
	.hero__slide .hero__subtitle,
	.hero--adapt .hero__subtitle {
	  font-size: 2.625em; } }
  @media screen and (min-width: 900px) {
	.hero__slide .hero__title,
	.hero--adapt .hero__title {
	  font-size: 2.875em; }
	.hero__slide .hero__subtitle,
	.hero--adapt .hero__subtitle {
	  font-size: 2.25em; } }
  
  /*============================================================================
	#Slick Slider overrides
	  - If upgrading Slick's styles, use the following variables/functions
		instead of the slick defaults
	  - Only overwrite slick's default styles starting at #Slick Slider SCSS
  ==============================================================================*/
  /*============================================================================
	#Slick Slider SCSS
	  - Everything below this line is unchanged from Slick's scss file
	  - When updating to a new version, don't include the variables/function
		that were modified above
  ==============================================================================*/
  .slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
	margin-bottom: 1.875rem; }
  
  .slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0; }
	.slick-loading .slick-list {
	  background: white url(//604shop.com/cdn/shop/t/8/assets/ajax-loader.gif?v=41356863302472015721748891349) center center no-repeat; }
	.slick-list.dragging {
	  cursor: pointer;
	  cursor: hand; }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); }
  
  .slick-track {
	max-height: 100vh;
	position: relative;
	left: 0;
	top: 0;
	display: block; }
	.slick-track:before, .slick-track:after {
	  content: "";
	  display: table; }
	.slick-track:after {
	  clear: both; }
	.slick-loading .slick-track {
	  visibility: hidden; }
  
  .slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none; }
	[dir="rtl"] .slick-slide {
	  float: right; }
	.slick-slide img {
	  display: block; }
	.slick-slide.slick-loading img {
	  display: none; }
	.slick-slide.dragging img {
	  pointer-events: none; }
	.slick-initialized .slick-slide {
	  display: block; }
	.slick-loading .slick-slide {
	  visibility: hidden; }
	.slick-vertical .slick-slide {
	  display: block;
	  height: auto;
	  border: 1px solid transparent; }
  
  /* Icons */
  /* Arrows */
  .slick-prev,
  .slick-next {
	position: absolute;
	display: block;
	width: 0.6rem;
	line-height: 0;
	cursor: pointer;
	padding: 0;
	border: none; }
	.slick-prev .icon:before,
	.slick-next .icon:before {
	  bottom: 0; }
  
  .slick-prev .icon:before,
  .slick-next .icon:before {
	position: relative;
	transition: top 0.1s linear;
	font-size: 0.6rem;
	color: #dd1c24;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; }
  
  .slick-prev:hover .icon:before,
  .slick-next:hover .icon:before {
	top: -0.125rem; }
  
  /* Dots */
  .slick-dots {
	position: absolute;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	width: 100%; }
	.slick-dots li {
	  position: relative;
	  display: inline-block;
	  height: 1.25rem;
	  width: 1.25rem;
	  margin: 0 5px;
	  padding: 0;
	  cursor: pointer; }
	  .slick-dots li.slick-active button:before {
		color: #dd1c24; }
	.slick-dots button,
	.slick-dots a {
	  border: 0;
	  background: transparent;
	  display: block;
	  height: 1.25rem;
	  width: 1.25rem;
	  line-height: 0;
	  font-size: 0;
	  color: transparent;
	  cursor: pointer; }
	  .slick-dots button:before,
	  .slick-dots a:before {
		position: absolute;
		top: 0;
		left: 0;
		content: "\2022";
		width: 1.25rem;
		height: 1.25rem;
		font-family: "slick-icons, sans-serif";
		font-size: 0.375rem;
		line-height: 1.25rem;
		text-align: center;
		color: #dd1c24;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale; }
  
  .hero .slick-dots {
	margin: 0 auto;
	bottom: 0.9rem;
	width: auto;
	left: 0;
	right: 0; }
	.hero .slick-dots a:hover:before {
	  top: -0.125rem; }
  
  .hero__controls {
	width: 100%;
	height: 3.125rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0; }
	.hero__controls li {
	  margin-bottom: 0;
	  list-style: none; }
  
  .hero__pause {
	position: absolute;
	right: 4.5rem;
	transition: bottom 0.1s linear;
	bottom: 0;
	height: 3.125rem;
	width: 3.125rem;
	font-size: 0.6rem;
	line-height: 0.6rem; }
	.hero__pause:hover {
	  bottom: 0.125rem; }
	.hero__pause .icon {
	  height: 0.4rem; }
  
  .icon-pause {
	display: block; }
	.is-paused .icon-pause {
	  display: none; }
  
  .icon-play {
	display: none; }
	.is-paused .icon-play {
	  display: block; }
  
  /*================ Module | Collection images at top of templates ================*/
  .collection-hero {
	margin-top: -35px;
	margin-bottom: 35px;
	overflow: hidden; }
	@media screen and (min-width: 900px) {
	  .collection-hero {
		margin-top: -65px;
		margin-bottom: 80px; } }
	@media screen and (max-width: 899px) {
	  .collection-hero {
		margin-bottom: 60px; } }
  
  .collection-hero__image-wrapper {
	position: relative; }
	.no-js .collection-hero__image-wrapper {
	  clip: rect(0 0 0 0);
	  clip: rect(0, 0, 0, 0);
	  overflow: hidden;
	  position: absolute;
	  height: 1px;
	  width: 1px; }
  
  .collection-hero__image-wrapper:after {
	padding-bottom: 70%;
	content: '';
	display: block;
	height: 0;
	width: 100%; }
	@media screen and (min-width: 900px) {
	  .collection-hero__image-wrapper:after {
		padding-bottom: 45%; } }
  
  .collection-hero__image {
	position: absolute;
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: "object-fit: cover";
	opacity: 0; }
	.collection-hero__image.is-init {
	  opacity: 1;
	  -webkit-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  -moz-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  -o-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	  animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  
  .collection-hero__image-no-js {
	padding-bottom: 70%;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	opacity: 1; }
	@media screen and (min-width: 900px) {
	  .collection-hero__image-no-js {
		padding-bottom: 45%; } }
  
  .filter-dropdown__label {
	margin-right: 0.3em; }
  
  /*================ Module | Theme Header and Navigation Overrides ================*/
  @media screen and (max-width: 899px) {
	.site-header {
	  padding: 0; }
	  .site-header .grid--table {
		height: 80px; } }
  .site-header__logo .logo--inverted {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0; }
	.is-light .site-header__logo .logo--inverted {
	  opacity: 1;
	  visibility: visible;
	  height: auto; }
  
  /*================ Text Shop Name ================*/
  .site-header__logo {
	font-size: 1.25em; }
	@media screen and (min-width: 900px) {
	  .site-header__logo {
		text-align: left;
		font-size: 1.5625em; } }

  
  .site-header__logo a,
  .header-logo a {
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-ms-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase; }
  
  /*================ Nav Links ================*/
  .site-nav,
  .site-nav--open {
	white-space: nowrap;
	opacity: 0; }
	.no-js .site-nav, .site-nav.site-nav--init, .no-js
	.site-nav--open,
	.site-nav--open.site-nav--init {
	  opacity: 1;
	  -webkit-transition: color 0.2s, opacity 0.1s;
	  -moz-transition: color 0.2s, opacity 0.1s;
	  -ms-transition: color 0.2s, opacity 0.1s;
	  -o-transition: color 0.2s, opacity 0.1s;
	  transition: color 0.2s, opacity 0.1s; }
  
  .burger-icon {
	display: block;
	height: 2px;
	width: 24px;
	left: 25px;
	margin-left: -12px;
	position: absolute;
	transition: all 0.25s ease-out;
	background: black; }
	.js-drawer-open-left .burger-icon {
	  width: 24px;
	  top: calc(50% - 1px);
	  left: calc(50% - 4px); 
  }

  
  .burger-icon--top {
	top: 15px; }
	.js-drawer-open-left .burger-icon--top {
	  top: 25px;
    left: calc(58% - 4px);
	  -webkit-transform: rotate(45deg);
	  -moz-transform: rotate(45deg);
	  -ms-transform: rotate(45deg);
	  -o-transform: rotate(45deg);
	  transform: rotate(45deg); }
  
  .burger-icon--mid {
	top: 24px; }
	.js-drawer-open-left .burger-icon--mid {
	  opacity: 0; }
  
  .burger-icon--bottom {
	top: 33px; }
	.js-drawer-open-left .burger-icon--bottom {
	  top: 25px;
    left: calc(58% - 4px);
	  -webkit-transform: rotate(-45deg);
	  -moz-transform: rotate(-45deg);
	  -ms-transform: rotate(-45deg);
	  -o-transform: rotate(-45deg);
	  transform: rotate(-45deg); }
  
  .site-nav__link--burger {
	width: 50px;
	height: 50px;
	padding: 0;
	text-align: center;
	line-height: 50px;
	background-color: transparent;
	border: 0;
	position: relative;
	transition: transform 0.15s ease-out; }
	.site-nav__link--burger svg {
	  width: 20px;
	  height: 30px; }
	.site-nav__link--burger::after {
	  border-color: #000; }
  
  .site-nav__item {
	white-space: normal; }
  
  .site-nav__link {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-ms-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
	font-size: 0.875em; }
	@media screen and (max-width: 899px) {
	  .site-nav__link {
		font-size: 1.25em; } }
  
  .site-nav--has-dropdown > a {
	z-index: 6; }
  .site-nav--has-dropdown:hover > a,
  .site-nav--has-dropdown > a.nav-focus, .site-nav--has-dropdown.nav-hover > a {
	font-weight: bold;
	opacity: 1;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
	background-color: black;
	color: white; }
	.site-nav--has-dropdown:hover > a:before,
	.site-nav--has-dropdown > a.nav-focus:before, .site-nav--has-dropdown.nav-hover > a:before {
	  content: "";
	  position: absolute;
	  left: 15px;
	  right: 30px;
	  bottom: 0;
	  display: block;
	  background-color: black;
	  height: 1px;
	  z-index: 6; }
  .site-nav--has-dropdown.site-nav--has-dropdown-grandchild a:before {
	display: none; }
  .site-nav--has-dropdown ul {
	padding-left: 0px; }
  
  /*================ Dropdown Animation ================*/
  .site-nav__dropdown {
	background-color: black;
	min-width: 100%;
	left: 0;
	width: 100vw;
	padding: 25px;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translate3d(0px, -12px, 0px);
	-moz-transform: translate3d(0px, -12px, 0px);
	-ms-transform: translate3d(0px, -12px, 0px);
	-o-transform: translate3d(0px, -12px, 0px);
	transform: translate3d(0px, -12px, 0px); }
	.supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
	  opacity: 1;
	  transition: all 0.3s ease-in-out;
	  pointer-events: auto;
	  -webkit-transform: translate3d(0px, 0px, 0px);
	  -moz-transform: translate3d(0px, 0px, 0px);
	  -ms-transform: translate3d(0px, 0px, 0px);
	  -o-transform: translate3d(0px, 0px, 0px);
	  transform: translate3d(0px, 0px, 0px); }
	.supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown {
	  -webkit-transition: all 0.3s ease-in-out;
	  -moz-transition: all 0.3s ease-in-out;
	  -ms-transition: all 0.3s ease-in-out;
	  -o-transition: all 0.3s ease-in-out;
	  transition: all 0.3s ease-in-out; }
	.site-nav__dropdown > .wrapper {
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
	  width: 100%;
	  justify-content: flex-end; }
	  .site-nav__dropdown > .wrapper > li {
		border-right: solid 1px rgba(255, 255, 255, 0.5);
		padding-left: 15px;
		padding-right: 15px;
		max-width: 40%;
		margin-top: 15px; }
		.site-nav__dropdown > .wrapper > li:last-child {
		  border-right: none; }
		.site-nav__dropdown > .wrapper > li > a {
		  color: white;
		  font-size: 14px;
		  letter-spacing: .1em;
		  text-transform: uppercase;
		  font-weight: bold;
		  margin-top: -5px;
		  margin-bottom: 15px; }
		  .site-nav__dropdown > .wrapper > li > a:hover {
			color: #dd1c24; }
		.site-nav__dropdown > .wrapper > li ul {
		  padding-left: 0px;
		  margin-left: 0px;
		  column-count: 2; }
		  .site-nav__dropdown > .wrapper > li ul li a {
			font-weight: normal;
			white-space: normal; }
		  .site-nav__dropdown > .wrapper > li ul#MenuChildren-2-3 {
			column-count: 1; }
  
  #MenuParent-3 > .wrapper > li {
	width: auto !important; }
	#MenuParent-3 > .wrapper > li div {
	  column-count: 1 !important; }
  
  /*================ Submenu items ================*/
  .site-nav__dropdown a,
  .site-nav__grandchild-dropdown a {
	background-color: transparent;
	color: white;
	font-size: 0.875em;
	font-weight: bold;
	letter-spacing: .05em; }
	.site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus,
	.site-nav__grandchild-dropdown a:hover,
	.site-nav__grandchild-dropdown a:active,
	.site-nav__grandchild-dropdown a:focus {
	  background-color: transparent;
	  color: #dd1c24;
	  font-weight: bold; }
  
  .site-nav__dropdown-link {
	display: block;
	white-space: nowrap;
	padding: 5px 15px;
	font-size: 1em; }
	.site-nav--has-grandchildren .site-nav__dropdown-link {
	  padding-right: 15px; }
  
  /*================ Compressed nav if too many links ================*/
  .site-nav--compress .site-nav__item:not(.site-nav__item--compressed) {
	display: none; }
  
  @media screen and (min-width: 900px) {
	.site-nav--open {
	  display: block;
	  display: none; } }
  .site-nav--open.site-nav--open__display {
	display: inline-block; }
  
  /*================ Search bar ================*/
  .site-nav--search__bar {
	vertical-align: middle;
	padding: 0 10px 7px 0; }
	.site-nav--search__bar input {
	  background-color: #f6f6f6; }
  
  /*================ Module | Theme Tags ================*/
  .tags a {
	padding: 4px 15px;
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.8125em;
	letter-spacing: 0.15em; }
  
  .tags--collection {
	max-width: 75%;
	margin: 0 auto 25px; }
	@media screen and (min-width: 900px) {
	  .tags--collection li {
		display: inline-block; } }
	@media screen and (max-width: 590px) {
	  .tags--collection li {
		display: block; } }
  
  .tags--article a {
	padding-right: 15px;
	padding-left: 0; }
  
  .tags__title {
	margin-right: 15px; }
  
  .tag--active a {
	color: #dd1c24; }
  
  .single-option-radio {
	border: 0;
	padding-top: 0;
	position: relative;
	background-color: white;
	padding: 0px; }
	.single-option-radio input {
	  clip: rect(0 0 0 0);
	  clip: rect(0, 0, 0, 0);
	  overflow: hidden;
	  position: absolute;
	  height: 1px;
	  width: 1px; }
	.single-option-radio label {
	  font-family: Montserrat, sans-serif;
	  font-weight: 700;
	  font-style: normal;
	  letter-spacing: 0.1em;
	  text-transform: uppercase;
	  position: relative;
	  display: inline-block;
	  line-height: 1;
	  padding: 9px 11px;
	  margin: 3px 4px 17px 3px;
	  font-size: 0.8125em;
	  font-style: normal;
	  text-align: center;
	  background-color: white;
	  border: 1px solid #efefef;
	  color: #efefef;
	  width: 100%; }
	  .single-option-radio label.disabled:before {
		position: absolute;
		content: "";
		left: 50%;
		top: 0;
		bottom: 0;
		border-left: 1px solid;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg); }
	  .single-option-radio label:active, .single-option-radio label:focus {
		background-color: #f2f2f2;
		border-color: black;
		color: black; }
	.single-option-radio input[type='radio']:checked + label {
	  border-color: black;
	  color: black; }
	.single-option-radio input[type='radio']:focus + label {
	  background-color: #f2f2f2; }
  
  .radio-wrapper .single-option-radio__label {
	display: block;
	margin-bottom: 10px;
	cursor: default;
	font-style: normal; }
  
  .product-form__item {
	margin-bottom: 13px; }
  
  /*================ Module | Product Lightbox ================*/
  .mfp-bg {
	background-color: white; }
	.mfp-bg.mfp-fade {
	  -webkit-backface-visibility: hidden;
	  opacity: 0;
	  -webkit-transition: all 0.3s ease-out;
	  -moz-transition: all 0.3s ease-out;
	  -ms-transition: all 0.3s ease-out;
	  -o-transition: all 0.3s ease-out;
	  transition: all 0.3s ease-out; }
	  .mfp-bg.mfp-fade.mfp-ready {
		opacity: 1;
		filter: alpha(opacity=100); }
	  .mfp-bg.mfp-fade.mfp-removing {
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		opacity: 0;
		filter: alpha(opacity=0); }
  
  .mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out; }
  .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1; }
  .mfp-fade.mfp-wrap.mfp-removing {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out; }
	.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	  opacity: 0; }
	.mfp-fade.mfp-wrap.mfp-removing button {
	  opacity: 0; }
  
  .mfp-counter {
	display: none; }
  
  .mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: zoom-out; }
  .mfp-figure:after {
	box-shadow: none; }
  
  .mfp-img {
	background-color: white; }
  
  button.mfp-close {
	margin: 30px;
	font-size: 2.5em;
	font-weight: 300px;
	opacity: 1;
	filter: alpha(opacity=100);
	color: black; }
  
  button.mfp-arrow {
	top: 0;
	height: 100%;
	width: 20%;
	margin: 0;
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 1045; }
	button.mfp-arrow:after, button.mfp-arrow .mfp-a {
	  display: none; }
	button.mfp-arrow:before, button.mfp-arrow .mfp-b {
	  display: none; }
	button.mfp-arrow:active {
	  margin-top: 0; }
  
  .mfp-chevron {
	position: absolute;
	pointer-events: none; }
	.mfp-chevron:before {
	  content: '';
	  display: inline-block;
	  position: relative;
	  vertical-align: top;
	  height: 25px;
	  width: 25px;
	  border-style: solid;
	  border-width: 4px 4px 0 0;
	  -webkit-transform: rotate(-45deg);
	  -moz-transform: rotate(-45deg);
	  -ms-transform: rotate(-45deg);
	  -o-transform: rotate(-45deg);
	  transform: rotate(-45deg); }
	.mfp-chevron.mfp-chevron-right {
	  right: 55px; }
	  .mfp-chevron.mfp-chevron-right:before {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg); }
	.mfp-chevron.mfp-chevron-left {
	  left: 55px; }
	  .mfp-chevron.mfp-chevron-left:before {
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg); }
  
  .grid-product__wrapper {
	margin-bottom: 30px; }
	.grid-collage .grid-product__wrapper {
	  margin-bottom: 0; }
  
  .grid-product__image-wrapper {
	position: relative;
	width: 100%;
	display: table;
	table-layout: fixed; }
  
  .grid-product__image-link {
	position: relative;
	display: block;
	width: 100%;
	background-color: white;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out; }
	.grid-collage .grid-product__image-link {
	  padding: 0 20px; }
	.grid-product__image-link:hover, .grid-product__image-link:focus {
	  opacity: 0.9;
	  -webkit-transition: opacity 0.15s ease-in;
	  -moz-transition: opacity 0.15s ease-in;
	  -ms-transition: opacity 0.15s ease-in;
	  -o-transition: opacity 0.15s ease-in;
	  transition: opacity 0.15s ease-in; }
	.grid-uniform .grid-product__image-link {
	  display: table-cell;
	  vertical-align: middle;
	  overflow: hidden; }
  
  .grid-product__image-link--loading {
	background-color: black;
	-webkit-animation: placeholder-background-loading 1.5s infinite linear;
	-moz-animation: placeholder-background-loading 1.5s infinite linear;
	-o-animation: placeholder-background-loading 1.5s infinite linear;
	animation: placeholder-background-loading 1.5s infinite linear; }
  
  .grid-product__image {
	display: block;
	margin: 0 auto; }
  
  @media screen and (max-width: 590px) {
	.grid-uniform .grid-product__image-wrapper {
	  height: auto !important; } }
  .grid-collage .grid-product__image {
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 100%;
	max-width: 100%;
	padding: 20px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden; }
  
  .product--wrapper {
	margin: 0 auto;
	position: relative;
	width: 100%; }
  
  .product--image {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0; }
	.product--image.lazyload {
	  opacity: 0; }
	.is-sold-out .product--image {
	  opacity: 0.5; }
  
  .grid-product__meta {
	position: relative;
	display: block;
	padding: 13px 0;
	text-align: left; }
  
  .grid-product__price-wrap {
	white-space: nowrap; }
  
  .long-dash {
	margin: 0 4px; }
  
  .grid-product__title {
	font-style: italic;
	font-size: 1em; }
  
  .grid-product__vendor {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.6875em;
	margin: 1px 0; }
  
  .grid-product__price {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.875em; }
  
  .grid-product__price-min {
	position: relative;
	top: -1px;
	font-size: 0.625em;
	margin-left: -4px; }
  
  .grid-product__sold-out,
  .grid-product__on-sale {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.6875em;
	line-height: 1.3;
	position: absolute;
	width: 54px;
	height: 54px;
	top: -8px;
	left: -8px;
	transform: rotate(45deg); }
	.grid-product__sold-out p,
	.grid-product__on-sale p {
	  padding: 12px 8px 10px 9px;
	  margin: 0;
	  letter-spacing: 1px;
	  text-align: center;
	  transform: rotate(-45deg); }
	.grid-product__sold-out sup,
	.grid-product__on-sale sup {
	  display: none; }
  
  .grid-product__sold-out {
	color: white;
	background-color: black;
	border: 1px solid black; }
  
  .grid-product__on-sale {
	color: white;
	background-color: #dd1c24;
	border: 1px solid #dd1c24; }
  
  @-webkit-keyframes placeholder-background-loading {
	0% {
	  opacity: 0.02; }
  
	50% {
	  opacity: 0.05; }
  
	100% {
	  opacity: 0.02; } }
  
  @-moz-keyframes placeholder-background-loading {
	0% {
	  opacity: 0.02; }
  
	50% {
	  opacity: 0.05; }
  
	100% {
	  opacity: 0.02; } }
  
  @-ms-keyframes placeholder-background-loading {
	0% {
	  opacity: 0.02; }
  
	50% {
	  opacity: 0.05; }
  
	100% {
	  opacity: 0.02; } }
  
  @keyframes placeholder-background-loading {
	0% {
	  opacity: 0.02; }
  
	50% {
	  opacity: 0.05; }
  
	100% {
	  opacity: 0.02; } }
  
  /*================ Product Carousel ================*/
  @media screen and (max-width: 590px) {
	.product-single__photos {
	  margin-top: -35px;
	  margin-left: -15px;
	  margin-right: -15px;
	  padding-bottom: 5px; } }
  .product-single__photos .slick-dots {
	background-color: white;
	bottom: 0;
	padding: 15px; }
  .product-single__photos .slick-dots li button:before {
	background-color: black;
	opacity: 0.2;
	width: 9px;
	height: 9px; }
  .product-single__photos .slick-dots li.slick-active button:before {
	background-color: black;
	border-color: black;
	opacity: 1;
	width: 11px;
	height: 11px; }
  
  .product-recommendations {
	margin-top: 90px; }
	@media screen and (max-width: 899px) {
	  .product-recommendations {
		margin-top: 45px; } }
  
  /*================ Rich text section ================*/
  .rich-text .section-header {
	margin-bottom: 12px; }
  
  .rich-text__heading--large {
	font-size: 2.25em; }
  
  .rich-text__heading--small {
	font-size: 1.5em; }
  
  .rich-text__text--large {
	font-size: 1.1875em; }
  
  .rich-text__text--small {
	font-size: 0.875em; }
  
  /*================ Modules | Theme collection grid item ================*/
  .collection-collage__item {
	overflow: hidden; }
  
  .collection-collage__item-wrapper {
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%; }
	.collection-collage__item-wrapper .collection-grid__item-overlay {
	  position: relative;
	  -webkit-transition: all 0.8s ease;
	  -moz-transition: all 0.8s ease;
	  -ms-transition: all 0.8s ease;
	  -o-transition: all 0.8s ease;
	  transition: all 0.8s ease; }
	  .collection-collage__item-wrapper .collection-grid__item-overlay:after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: 0.25;
		background-color: #000;
		-webkit-transition: all 0.8s ease;
		-moz-transition: all 0.8s ease;
		-ms-transition: all 0.8s ease;
		-o-transition: all 0.8s ease;
		transition: all 0.8s ease; }
	  .collection-collage__item-wrapper .collection-grid__item-overlay:hover, .collection-collage__item-wrapper .collection-grid__item-overlay:focus {
		-webkit-transform: scale(1.03);
		-moz-transform: scale(1.03);
		-ms-transform: scale(1.03);
		-o-transform: scale(1.03);
		transform: scale(1.03); }
		.collection-collage__item-wrapper .collection-grid__item-overlay:hover:after, .collection-collage__item-wrapper .collection-grid__item-overlay:focus:after {
		  opacity: 0.5; }
  
  .collection-grid__item-link {
	display: block;
	width: 100%;
	height: 100%; }
  
  .collection-grid__item-overlay {
	display: block;
	overflow: hidden;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center; }
  
  .collection-grid__item-title--wrapper {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	pointer-events: none;
	display: table;
	table-layout: fixed;
	cursor: pointer; }
	.collection-grid__item-title--wrapper .collection-grid__item-title {
	  display: table-cell;
	  vertical-align: middle;
	  margin: 0 auto;
	  color: white;
	  font-style: normal;
	  font-weight: bold;
	  text-transform: uppercase;
	  font-size: 2.625em; }
	  @media screen and (max-width: 590px) {
		.collection-grid__item-title--wrapper .collection-grid__item-title {
		  font-size: 1.75em; } }
  
  .custom-content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	-moz-align-items: stretch;
	-ms-align-items: stretch;
	-o-align-items: stretch;
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: auto;
	margin-bottom: -30px;
	margin-left: -30px; }
	@media screen and (max-width: 590px) {
	  .custom-content {
		margin-bottom: -22px;
		margin-left: -22px; } }
  
  .custom__item {
	-webkit-flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin-bottom: 30px;
	padding-left: 30px;
	max-width: 100%; }
	@media screen and (max-width: 590px) {
	  .custom__item {
		-webkit-flex: 0 0 auto;
		-moz-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		padding-left: 22px;
		margin-bottom: 22px; }
		.custom__item.small--one-half {
		  -webkit-flex: 1 0 50%;
		  -moz-flex: 1 0 50%;
		  -ms-flex: 1 0 50%;
		  flex: 1 0 50%;
		  max-width: 400px;
		  margin-left: auto;
		  margin-right: auto; } }
  
  .custom__item-inner {
	position: relative;
	display: inline-block;
	text-align: left;
	max-width: 100%; }
  
  .custom__item-inner--video,
  .custom__item-inner--html {
	display: block; }
  
  /*================ Flex item alignment ================*/
  .align--top-middle {
	text-align: center; }
  
  .align--top-right {
	text-align: right; }
  
  .align--middle-left {
	-ms-flex-item-align: center;
	-webkit-align-self: center;
	align-self: center; }
  
  .align--center {
	-ms-flex-item-align: center;
	-webkit-align-self: center;
	align-self: center;
	text-align: center; }
  
  .align--middle-right {
	-ms-flex-item-align: center;
	-webkit-align-self: center;
	align-self: center;
	text-align: right; }
  
  .align--bottom-left {
	-ms-flex-item-align: flex-end;
	-webkit-align-self: flex-end;
	align-self: flex-end; }
  
  .align--bottom-middle {
	-ms-flex-item-align: flex-end;
	-webkit-align-self: flex-end;
	align-self: flex-end;
	text-align: center; }
  
  .align--bottom-right {
	-ms-flex-item-align: flex-end;
	-webkit-align-self: flex-end;
	align-self: flex-end;
	text-align: right; }
  
  .featured-blog__post,
  .featured-blog__meta,
  .title--one-post {
	margin-bottom: 52.5px; }
	@media screen and (max-width: 590px) {
	  .featured-blog__post,
	  .featured-blog__meta,
	  .title--one-post {
		margin-bottom: 38.5px; } }
  
  .featured-blog__author {
	display: inline-block;
	font-style: italic;
	line-height: 1.7; }
	.featured-blog__author:after {
	  content: '\2022';
	  margin: 0 5px; }
  
  .featured-blog__date {
	display: inline-block; }
  
  .article__heading-link {
	color: black; }
  
  .map-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 90px 0;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row; }
	@media screen and (max-width: 899px) {
	  .map-section {
		min-height: auto;
		padding: 0 30px;
		margin-top: 45px; } }
	@media screen and (max-width: 590px) {
	  .map-section {
		padding: 0 15px; } }
	.shopify-section:first-child .map-section {
	  margin-top: -110px; }
	  @media screen and (max-width: 899px) {
		.shopify-section:first-child .map-section {
		  margin-top: inherit; } }
  
  .map-section__wrapper {
	height: 100%;
	flex-shrink: 0;
	flex-grow: 1;
	-ms-flex-preferred-size: 100%;
	-webkit-flex-basis: 100%;
	-moz-flex-basis: 100%;
	flex-basis: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row; }
	@media screen and (max-width: 899px) {
	  .map-section__wrapper {
		padding: 0; } }
  
  .map-section--load-error {
	height: auto; }
  
  .map-section__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	z-index: 0; }
  
  .map-section__error {
	position: relative;
	z-index: 3; }
	@media screen and (max-width: 899px) {
	  .map-section__error {
		position: absolute;
		margin: 0 2rem;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%); } }
  
  .map-section__content-wrapper {
	position: relative;
	text-align: center;
	height: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	flex-grow: 0; }
  
  .map-section__content {
	position: relative;
	display: inline-block;
	background-color: white;
	padding: 35px;
	width: 100%;
	text-align: center;
	z-index: 3;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	min-height: 350px; }
	.map-section__content > * {
	  width: 100%; }
	@media screen and (max-width: 899px) {
	  .map-section__content {
		background-color: #f6f6f6;
		min-height: auto;
		display: block; } }
	.map-section--load-error .map-section__content {
	  position: static;
	  transform: translateY(0); }
  
  .map-section__link {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	max-width: none;
	width: 100%;
	height: 100%;
	z-index: 2;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%); }
  
  .map-section__container {
	position: absolute;
	height: 100%;
	min-height: auto;
	left: 0;
	top: 0;
	width: 130%; }
	@media screen and (max-width: 899px) {
	  .map-section__container {
		position: relative;
		max-width: 1120px;
		width: 100%;
		height: 55vh; } }
  
  .map_section__directions-btn [class^="icon"] {
	height: 1em; }
  .map_section__directions-btn * {
	vertical-align: middle; }
  
  .map-section__background-wrapper {
	-ms-flex-preferred-size: 100%;
	-webkit-flex-basis: 100%;
	-moz-flex-basis: 100%;
	flex-basis: 100%;
	flex-grow: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%; }
	@media screen and (max-width: 899px) {
	  .map-section__background-wrapper {
		overflow: hidden;
		position: relative;
		-ms-flex-preferred-size: 100%;
		-webkit-flex-basis: 100%;
		-moz-flex-basis: 100%;
		flex-basis: 100%; } }
	.map-section--onboarding .map-section__background-wrapper {
	  min-height: 350px; }
	.map-section__background-wrapper .placeholder-background {
	  height: 100%; }
	.no-js .map-section__background-wrapper .js {
	  clip: rect(0 0 0 0);
	  clip: rect(0, 0, 0, 0);
	  overflow: hidden;
	  position: absolute;
	  height: 1px;
	  width: 1px; }
  
  .map-section__image {
	height: 100%;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; }
	@media screen and (max-width: 899px) {
	  .map-section__image {
		position: relative; } }
	.map-section--display-map .map-section__image {
	  display: none !important; }
	.map-section--load-error .map-section__image {
	  display: block !important; }
  
  .gm-style-cc,
  .gm-style-cc + div {
	visibility: hidden; }
  
  .flex--third {
	-ms-flex-preferred-size: 33%;
	-webkit-flex-basis: 33%;
	-moz-flex-basis: 33%;
	flex-basis: 33%; }
	@media screen and (max-width: 899px) {
	  .flex--third {
		-ms-flex-preferred-size: 100%;
		-webkit-flex-basis: 100%;
		-moz-flex-basis: 100%;
		flex-basis: 100%; } }
  
  .index-newsletter-section + .index-map-section {
	margin-top: 0; }
  
  .index-map-section + .index-newsletter-section {
	margin-top: -60px; }
	@media screen and (max-width: 899px) {
	  .index-map-section + .index-newsletter-section {
		margin-top: 30px; } }
  
  /*================ View-specific styles ================*/
  /*================ Templates | Theme Blog ================*/
  .article {
	margin-bottom: -15px; }
  
  .article__featured-image-wrapper {
	position: relative; }
	.no-js .article__featured-image-wrapper {
	  clip: rect(0 0 0 0);
	  clip: rect(0, 0, 0, 0);
	  overflow: hidden;
	  position: absolute;
	  height: 1px;
	  width: 1px; }
  
  .article__featured-image {
	display: block;
	margin: 0 auto;
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0; }
  
  .article__featured-image-link {
	display: block;
	margin-bottom: 30px; }
  
  /*================ RSS ================*/
  .rss-link {
	font-size: 0.6em; }
  
  /*================ Comments ================*/
  .comment.last {
	margin-bottom: -15px; }
  
  /*============= Templates | Password page =============*/
  .template-password {
	height: 100vh;
	text-align: center; }
  
  .password-page__wrapper {
	display: table;
	height: 100%;
	width: 100%;
	background-color: #efefef;
	color: black; }
	.password-page__wrapper a.js-toggle-login-modal {
	  color: #dd1c24 !important; }
	.password-page__wrapper .rte a:hover {
	  color: #dd1c24;
	  border-bottom: 1px solid #dd1c24; }
	.password-page__wrapper .social-sharing.clean a {
	  color: inherit;
	  background: transparent; }
  
  .password-header-section {
	display: table-row; }
  
  .password-page__header {
	display: table-cell;
	height: 1px; }
  
  .password-page__header__inner {
	padding: 15px 30px; }
  
  .password-page__logo {
	margin-top: 90px; }
	.password-page__logo .logo {
	  max-width: 100%; }
  
  .password-page__main {
	display: table-row;
	width: 100%;
	height: 100%;
	margin: 0 auto; }
  
  .password-page__main__inner {
	display: table-cell;
	vertical-align: middle;
	padding: 15px 30px; }
  
  .password-page__hero {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 2.625em;
	line-height: 1.25;
	text-transform: none;
	letter-spacing: 0;
	text-rendering: optimizeLegibility; }
	@media screen and (min-width: 591px) {
	  .password-page__hero {
		font-size: 3.75em; } }
	@media screen and (min-width: 900px) {
	  .password-page__hero {
		font-size: 4em; } }
  
  .password-page__message {
	font-style: italic;
	font-size: 120%; }
	.password-page__message img {
	  max-width: 100%; }
  
  .password-page__hr {
	margin: 30px auto; }
  
  .password-page__message,
  .password-page__login-form,
  .password-page__signup-form {
	max-width: 500px;
	margin: 0 auto; }
  
  .password-page__login-form {
	text-align: center;
	padding: 30px; }
  
  @media screen and (min-width: 590px) {
	.password-page__login-form,
	.password-page__signup-form {
	  padding: 0 30px; } }
  .password-page__login-form .input-group,
  .password-page__signup-form .input-group {
	width: 100%; }
  .password-page__login-form .errors ul,
  .password-page__signup-form .errors ul {
	list-style-type: none;
	margin-left: 0; }
  
  .password-page__signup-form__heading {
	margin-bottom: 0.8em; }
  
  .password-page__social-sharing {
	margin-top: 30px; }
  
  .password-page__social-sharing__heading {
	margin-bottom: 0; }
  
  .password-login,
  .admin-login {
	margin-top: 15px; }
	.password-login a:hover,
	.admin-login a:hover {
	  color: inherit; }
  
  .password-login {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.8em;
	line-height: 12.8px; }
  
  .lock-icon-svg {
	width: 12.8px;
	height: 12.8px;
	display: inline-block;
	vertical-align: baseline; }
	.lock-icon-svg path {
	  fill: currentColor; }
  
  .admin-login {
	font-size: 95%; }
  
  .password-page__footer {
	display: table-row;
	height: 1px; }
  
  .password-page__footer_inner {
	display: table-cell;
	vertical-align: bottom;
	padding: 30px;
	line-height: 24px;
	font-size: 95%; }
  
  .shopify-link {
	color: inherit; }
	.shopify-link:hover {
	  color: inherit; }
  
  .shopify-logo-svg {
	width: 82.28571px;
	height: 24px;
	display: inline-block;
	line-height: 0;
	vertical-align: top; }
	.shopify-logo-svg path {
	  fill: currentColor; }
  
  /* =========
	 Hiding the word 'Shopify' but not from screen readers.
	 ========= */
  .shopify-name {
	clip: rect(0 0 0 0);
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	position: absolute;
	height: 1px;
	width: 1px; }
  
  .order-table tbody tr + tr {
	border-top: lightgray; }
  .order-table thead {
	border-bottom: 1px solid black; }
  .order-table tfoot {
	border-top: 1px solid black; }
	.order-table tfoot tr:first-child th, .order-table tfoot tr:first-child td {
	  padding-top: 1.5em; }
	.order-table tfoot tr:nth-last-child(2) th, .order-table tfoot tr:nth-last-child(2) td {
	  padding-bottom: 1.5em; }
	.order-table tfoot tr:last-child th, .order-table tfoot tr:last-child td {
	  border-top: 1px solid black;
	  font-weight: normal;
	  padding-top: 1.5em;
	  padding-bottom: 1em;
	  font-size: 0.8125em;
	  letter-spacing: 0.15em;
	  font-family: Montserrat, sans-serif;
	  font-weight: 700;
	  font-style: normal;
	  letter-spacing: 0.1em;
	  text-transform: uppercase; }
  .order-table td,
  .order-table th {
	padding: 0.5em 1em; }
  .order-table tbody th,
  .order-table tfoot th {
	font-family: Montserrat, sans-serif;
	font-weight: normal;
	text-transform: none;
	font-size: 16px;
	letter-spacing: 0; }
  .order-table tr th:first-child {
	padding-left: 0; }
  .order-table tr th:last-child,
  .order-table tr td:last-child {
	padding-right: 0; }
  .order-table tr:first-child th::after,
  .order-table tr:first-child td::after {
	display: none; }
  @media screen and (min-width: 591px) {
	.order-table tbody tr:first-child th, .order-table tbody tr:first-child td {
	  padding-top: 1.25em; }
	.order-table tbody tr:last-child th, .order-table tbody tr:last-child td {
	  padding-bottom: 1.25em; }
	.order-table tfoot tr td,
	.order-table tfoot tr th {
	  vertical-align: bottom; } }
  @media screen and (max-width: 590px) {
	.order-table {
	  border: 0; }
	  .order-table thead {
		display: none; }
	  .order-table th,
	  .order-table td {
		float: left;
		clear: left;
		width: 100%;
		text-align: right;
		padding: 0.5rem 0;
		border: 0;
		margin: 0; }
	  .order-table th::before,
	  .order-table td::before {
		content: attr(data-label);
		float: left;
		text-align: left;
		padding-right: 2em;
		max-width: 80%; }
	  .order-table tbody th::before,
	  .order-table tbody td::before {
		font-size: 0.8125em;
		letter-spacing: 0.15em;
		font-family: Montserrat, sans-serif;
		font-weight: 700;
		font-style: normal;
		letter-spacing: 0.1em;
		text-transform: uppercase; }
	  .order-table tbody tr td:first-child {
		padding-top: 1.5em; }
	  .order-table tbody tr td:last-child {
		padding-bottom: 1.5em; } }
  
  @media screen and (max-width: 590px) {
	.order-table__product {
	  display: flex;
	  justify-content: space-between; } }
  
  .order-discount {
	text-transform: uppercase;
	color: #dd1c24;
	display: block;
	line-height: 1.2em; }
	.order-discount .icon-saletag {
	  margin-right: 0.5em;
	  font-size: 0.75em; }
  
  .order-discount--title {
	word-break: break-word;
	padding-right: 1em; }
  
  .order-discount--list {
	margin: 0.3em 0 0 1.3em;
	list-style: none;
	padding: 0; }
  
  .order-discount--cart {
	text-align: right; }
  
  .order-discount--cart-list {
	display: inline-block;
	width: 80%;
	margin-top: 1em; }
  
  .order-discount--ajax-cart {
	color: inherit;
	font-size: 0.9em; }
  
  .order-discount--ajax-cart-list {
	width: 60%;
	display: block;
	margin-top: 0.8em;
	margin-left: auto;
	line-height: 1.1; }
  
  .order-discount__item {
	text-indent: -1.3em;
	margin-bottom: 0; }
	.order-discount__item + .order-discount__item {
	  margin-top: 0.6em; }
  
  @media screen and (max-width: 590px) {
	.order-discount-wrapper {
	  display: flex;
	  justify-content: space-between;
	  width: 100%; } }
  
  /* Added by Bruno B @ Shopify - June 24 2021 */
  .grid-product__image-link,
  .mfp-img,
  .mfp-figure:after,
  .product-single__photos a,
  .product-single__photos img,
  .product-single__thumbnails a,
  .product-single__thumbnails img {
	background-color: unset; }
  
  /* Added by Mike V. @ Shopify Theme Support - July 6 2021 */
  @media screen and (max-width: 590px) {
	.site-nav__link.site-nav__link--icon.js-toggle-search-modal {
	  padding: 0; } }
  /* 604Shop 2025: Mobile Drawer Menu Styling */
  .mobile-drawer__search, .mobile-drawer__record-labels {
	margin: 1rem 0 0 0;
	padding: 1rem 0;
	border-top: 1px solid #efefef; }
  
  .mobile-drawer__main-logo {
	text-align: center;
	padding: 1rem 0;
	border-bottom: 1px solid #efefef; }
  
  .mobile-drawer__logo-image {
	max-width: 150px;
	height: auto; }
  
  .mobile-drawer__logo-text {
	font-size: 1.5rem;
	font-weight: bold;
	color: #000;
	text-decoration: none; }
  
  .mobile-drawer__record-logos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	justify-items: center;
	align-items: center;
	padding: 0.5rem 1rem; }
  
  .mobile-drawer__record-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	padding: 0.5rem;
	min-height: 60px;
	width: 100%; }
  
  .mobile-drawer__record-logo {
	display: block;
	max-width: 76px;
	height: 40px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease; }
  
  .mobile-drawer__record-link:hover .mobile-drawer__record-logo {
	filter: grayscale(0%);
	opacity: 1; }
  
  /* 604Shop 2025: Hamburger Icon Consistent Width */
  .nav-trigger {
	width: 20px !important;
	/* Force desktop width on mobile */
	min-width: 20px !important; }
  
  .nav-trigger .icon {
	width: 20px !important;
	height: 20px !important; }
  
/*================ END THEME STYLES ================*/

/*================ ECSTATIC STYLES (from ecstatic.css) ================*/
@charset "UTF-8";
/****** Coulour Variables ****/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
 Start Styles
==============================================================================*/
html, body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden; }

body {
  min-height: 100vh;
  background-color: rgba(240, 240, 240, 0.4); }
  body button, body input {
    outline: none; }
    body button:focus, body input:focus {
      outline: none; }
  body .mfp-bg {
    background-color: rgba(240, 240, 240, 0.96); }
  body .search-bar {
    border: solid 1px black; }
    body .search-bar button {
      margin-right: -1px; }
  body #customer_login input {
    border: solid 1px black; }
  body p a {
    color: #dd1c24;
    text-decoration: underline; }

.grid,
.grid-uniform {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto; }
  .grid.product__grid,
  .grid-uniform.product__grid {
    justify-content: flex-start; }
    .grid.product__grid .grid__item,
    .grid-uniform.product__grid .grid__item {
      margin: 0 1.5%; }
  @media screen and (max-width: 899px) {
    .grid.product__grid,
    .grid-uniform.product__grid {
      margin: 0;
      justify-content: space-between; }
      .grid.product__grid .grid__item,
      .grid-uniform.product__grid .grid__item {
        margin: 0; } }

header.site-header {
  padding: 25px 0px 15px; }
header .brand_logos {
  z-index: 300;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: left; }
  @media screen and (max-width: 899px) {
    header .brand_logos {
      justify-content: center;
      margin-left: 0px; }
      header .brand_logos .site-header__logo {
        margin: 0px auto; } }
  header .brand_logos h1 {
    margin: 0px;
    margin-right: 18px; }
  header .brand_logos .secondary_logos {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    align-items: center;
    margin-left: 15px; }
    header .brand_logos .secondary_logos a {
      height: 36px; }
    header .brand_logos .secondary_logos img {
      height: 32px;
      width: auto;
      margin: 0px 15px;
      max-width: 64px; }
    @media screen and (max-width: 899px) {
      header .brand_logos .secondary_logos {
        display: none; } }

#NavDrawer .mobile-nav .mobile-nav__item a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 600; }
#NavDrawer .mobile-nav .mobile-nav__item:after {
  border-color: #3b3f40; }

#CartDrawer {
  background-color: black; }
  #CartDrawer .drawer__header {
    border-color: white; }
    #CartDrawer .drawer__header .drawer__title {
      text-transform: uppercase;
      font-weight: normal;
      font-size: 14px; }
    #CartDrawer .drawer__header .drawer__close button {
      border: none; }
      #CartDrawer .drawer__header .drawer__close button:before {
        content: none; }
  #CartDrawer .drawer__cart .ajaxcart__row {
    border-color: white; }
    #CartDrawer .drawer__cart .ajaxcart__row .ajaxcart__price {
      text-align: left;
      margin-top: 15px; }
  #CartDrawer .drawer__cart .btn--secondary {
    background-color: #dd1c24;
    color: white; }
  #CartDrawer .ajaxcart__footer {
    border-color: white;
    padding-bottom: 73px; }
    #CartDrawer .ajaxcart__footer .ajaxcart__subtotal {
      font-size: 14px;
      text-transform: uppercase;
      font-weight: normal; }
    #CartDrawer .ajaxcart__footer .grid__item:last-child .ajaxcart__subtotal {
      font-size: 22px; }

#PageContainer {
  padding-top: 35px; }
  @media screen and (max-width: 899px) {
    #PageContainer .section-header {
      text-align: center;
      margin-bottom: 15px; } }
  #PageContainer .btn--action {
    position: relative;
    border: solid 1px #dd1c24;
    color: #dd1c24;
    background-color: transparent;
    transition: color .6s; }
    #PageContainer .btn--action .btn__text {
      z-index: 10;
      position: relative; }
    #PageContainer .btn--action:focus {
      outline: none; }
    #PageContainer .btn--action:before {
      position: absolute;
      content: '';
      display: block;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      background-color: #dd1c24;
      -webkit-transform-origin: right center;
      transform-origin: right center;
      -webkit-transform: scale(0, 1);
      transform: scale(0, 1);
      z-index: 1; }
    #PageContainer .btn--action:hover {
      background-color: transparent !important;
      color: white;
      transition: color .6s; }
      #PageContainer .btn--action:hover:before {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1); }

.template-index #PageContainer {
  padding-top: 0px; }
@media screen and (max-width: 899px) {
  .template-index .main-content {
    padding-top: 45px;
    margin-top: 5px; } }

@media screen and (max-width: 1120px) {
  #shopify-section-slideshow {
    background-color: white;
    padding: 35px 0; } }

.hero-slideshow {
  position: relative; }
  @media screen and (max-width: 899px) {
    .hero-slideshow {
      margin-left: -20px;
      margin-right: -20px;
      margin-bottom: 0px; } }
  .hero-slideshow .hero__slide .hero__text-align {
    display: flex;
    align-items: center; }
  .hero-slideshow .hero__slide .hero__text-content {
    color: black;
    max-width: 36%; }
    @media screen and (max-width: 1120px) {
      .hero-slideshow .hero__slide .hero__text-content {
        max-width: 100%;
        width: 100%;
        margin: 0px 20px 20px;
        padding: 15px; } }
    @media screen and (max-width: 899px) {
      .hero-slideshow .hero__slide .hero__text-content {
        text-align: center; } }
    .hero-slideshow .hero__slide .hero__text-content .hero__title {
      color: #dd1c24; }
  .hero-slideshow .hero__controls {
    align-items: center;
    justify-content: center;
    display: inline-flex;
    position: relative;
    bottom: 0px;
    left: 37%;
    background-color: white;
    border: solid 1px black;
    color: #dd1c24;
    width: auto;
    padding: 0px 55px;
    transform: translateY(-100%); }
    @media screen and (max-width: 1120px) {
      .hero-slideshow .hero__controls {
        transform: none;
        top: 80%;
        right: 0;
        left: unset;
        position: absolute; } }
    @media screen and (max-width: 899px) {
      .hero-slideshow .hero__controls {
        transform: none;
        bottom: -12px;
        left: 50%;
        top: unset;
        position: absolute;
        transform: translate(-50%, 100%); } }
    .slick-initialized + .hero-slideshow .hero__controls {
      display: flex; }
    .hero-slideshow .hero__controls > ul {
      height: 100%;
      margin: 0px; }
  .hero-slideshow button:hover .icon:before {
    color: black; }
  .hero-slideshow .slick-prev {
    left: 0;
    margin-right: 15px;
    height: 48px; }
  .hero-slideshow .slick-next {
    right: 0;
    margin-left: 15px;
    height: 48px; }
  .hero-slideshow .slick-dots {
    bottom: unset;
    position: relative; }
    .hero-slideshow .slick-dots li {
      margin: 0px 8px; }
    .hero-slideshow .slick-dots li button::before,
    .hero-slideshow .slick-dots li a::before {
      height: 16px;
      width: 16px;
      color: #dd1c24;
      margin-top: 2px;
      border: solid 1px black;
      opacity: 1; }
    .hero-slideshow .slick-dots li.slick-active-mobile button::before,
    .hero-slideshow .slick-dots li.slick-active-mobile a::before {
      background-color: #dd1c24; }
    .hero-slideshow .slick-dots li.slick-active button::before,
    .hero-slideshow .slick-dots li.slick-active a::before {
      background-color: #dd1c24;
      border: solid 1px #dd1c24; }

.record_labels {
  border: solid 1px black;
  padding-top: 35px;
  background: white; }
  .record_labels .record-header {
    text-align: center;
    padding: 35px; }
  .record_labels .grid {
    padding: 0px 35px 35px;
    justify-content: center; }
    .record_labels .grid img {
      margin: 0px 35px;
      width: 140px;
      height: auto; }
  .record_labels:after {
    display: block;
    margin-top: 15px;
    content: " ";
    height: 6px;
    background-color: #dd1c24;
    bottom: 0px;
    width: 100%; }
  @media screen and (max-width: 899px) {
    .record_labels {
      padding-top: 5px; }
      .record_labels .record-header {
        text-align: center;
        padding: 25px; }
      .record_labels .grid {
        padding: 25px; }
        .record_labels .grid img {
          margin: 10px; } }

@media screen and (max-width: 899px) {
  #shopify-section-1576607907623 {
    margin-top: 25px; } }

@media screen and (max-width: 899px) {
  .collection-grid .collection-collage__item {
    height: 240px;
    margin-bottom: 35px; }
    .collection-grid .collection-collage__item .collection-grid__item-title {
      padding: 25px; } }

@media screen and (max-width: 899px) {
  #shopify-section-featured-collections > .wrapper {
    max-width: 100%;
    width: 100%; } }

.grid-product__wrapper .grid-product__on-sale {
  border-radius: 50%; }
  .grid-product__wrapper .grid-product__on-sale .cad_code {
    display: none; }
  .grid-product__wrapper .grid-product__on-sale.pre-sale {
    background-color: #3b3f40;
    border-radius: 0;
    border-color: #3b3f40; }
  .grid-product__wrapper .grid-product__on-sale.online-exclusive {
    background-color: black;
    border-color: black;
    border-radius: 0; }
.grid-product__wrapper .product-card__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 15px; }
  .grid-product__wrapper .product-card__content > div {
    padding-right: 10px; }
    @media screen and (max-width: 899px) {
      .grid-product__wrapper .product-card__content > div {
        padding-right: 0px; }
        .grid-product__wrapper .product-card__content > div h5 {
          font-size: 13px; }
        .grid-product__wrapper .product-card__content > div p {
          font-size: 12px; } }
  .grid-product__wrapper .product-card__content h5 {
    margin-bottom: 2px; }
  .grid-product__wrapper .product-card__content .record_company {
    margin-left: 10px;
    height: 20px;
    width: auto; }
  .grid-product__wrapper .product-card__content .price {
    padding-right: 0px;
    margin-top: -3px;
    text-align: right;
    color: #3b3f40; }
    .grid-product__wrapper .product-card__content .price .cad_code {
      font-size: 8px;
      margin-left: -5px; }
    .grid-product__wrapper .product-card__content .price .price_variant .cad_code {
      display: none; }
  @media screen and (max-width: 899px) {
    .grid-product__wrapper .product-card__content {
      flex-wrap: wrap; }
      .grid-product__wrapper .product-card__content .product-card__artist {
        flex-wrap: wrap; } }
.grid-product__wrapper .product-card__artist {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: center; }
  .grid-product__wrapper .product-card__artist p {
    margin-bottom: 0px; }
  .grid-product__wrapper .product-card__artist a {
    color: black;
    text-decoration: none; }
  .grid-product__wrapper .product-card__artist img {
    height: 20px;
    width: auto; }

.pagination {
  padding: 40px 15px 30px; }
  .pagination .page.current {
    color: #dd1c24; }
  .pagination .icon {
    color: #dd1c24; }

.filter-menu {
  border-radius: 0px !important; }
  .filter-menu .filter-group li a {
    font-weight: bold; }
  .filter-menu .filter-group .selected i.check-icon {
    color: #dd1c24; }
  .filter-menu .filter-group .filter-clear {
    background-color: transparent;
    border-radius: 0px;
    border: solid 1px #dd1c24;
    text-transform: capitalize;
    right: 0px; }
    .filter-menu .filter-group .filter-clear:hover {
      background-color: #dd1c24;
      color: white; }
  .filter-menu .filter-group h4 {
    border-bottom: solid 1px black;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 12px;
    padding-bottom: 10px; }
  .filter-menu .pt-mobile-header {
    cursor: pointer; }
    @media screen and (max-width: 899px) {
      .filter-menu .pt-mobile-header {
        display: inline-block !important;
        height: auto !important;
        width: 100%; } }
    .filter-menu .pt-mobile-header a#pt-nav-toggle {
      position: relative;
      left: unset;
      top: 0px;
      -webkit-transform: none;
      padding: 0px;
      line-height: normal;
      transform: none;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      background-color: #dd1c24;
      color: white;
      padding: 6px 10px; }
      .filter-menu .pt-mobile-header a#pt-nav-toggle:after {
        content: "+";
        margin-left: 10px;
        font-size: 1.5em; }
      .filter-menu .pt-mobile-header a#pt-nav-toggle > span {
        display: none; }
      .filter-menu .pt-mobile-header a#pt-nav-toggle p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .02em;
        font-size: 14px !important;
        line-height: normal;
        color: white;
        top: 0; }
  @media screen and (max-width: 899px) {
    .filter-menu {
      padding: 0px !important;
      border: solid 1px #dd1c24 !important;
      background-color: white; }
      .filter-menu .refine-header {
        display: none; }
      .filter-menu .filter-group {
        margin: 0px 15px; }
        .filter-menu .filter-group.has_group_selected {
          display: none; } }
  .filter-menu.active {
    padding-bottom: 25px !important; }
    .filter-menu.active .filter-group h4, .filter-menu.active .filter-group .menu-trigger, .filter-menu.active .filter-group .scroll-content {
      display: inherit !important; }
    .filter-menu.active .filter-group.has_group_selected {
      display: inherit !important; }
    .filter-menu.active a#pt-nav-toggle:after {
      content: "–"; }

.template-collection #PageContainer .main-content {
  padding-top: 0px; }
.template-collection .nothing_to_show {
  padding-top: 25px; }
.template-collection #CollectionSection_Header {
  padding-top: 220px;
  margin-top: -210px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  background-color: #efefef; }
  @media screen and (max-width: 899px) {
    .template-collection #CollectionSection_Header {
      padding-top: 180px; } }
  .template-collection #CollectionSection_Header > .grid {
    align-items: flex-end; }
  .template-collection #CollectionSection_Header .collection-hero__content > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    height: 100%; }
    .template-collection #CollectionSection_Header .collection-hero__content > div h1,
    .template-collection #CollectionSection_Header .collection-hero__content > div p {
      width: 100%; }
  @media screen and (max-width: 899px) {
    .template-collection #CollectionSection_Header .collection-hero__content {
      width: 100%; }
      .template-collection #CollectionSection_Header .collection-hero__content div {
        width: 100%;
        text-align: center; }
        .template-collection #CollectionSection_Header .collection-hero__content div .rte {
          font-size: 13px;
          text-align: left; } }
  .template-collection #CollectionSection_Header .collection-hero__image-size img {
    width: 100%;
    margin-bottom: -60px; }
.template-collection #CollectionSection {
  margin-top: 80px; }
  @media screen and (max-width: 899px) {
    .template-collection #CollectionSection {
      margin-top: 35px; } }
.template-collection .collection-sorting {
  padding: 0px 15px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px; }
  .template-collection .collection-sorting:after {
    content: none; }
  .template-collection .collection-sorting #sortBy {
    border: solid 1px black;
    background-color: white;
    font-size: 14px;
    padding: 3px 26px 3px 6px; }
  @media screen and (max-width: 899px) {
    .template-collection .collection-sorting {
      text-align: center;
      border-top: solid 1px black;
      padding: 25px 0px 0px;
      margin-top: 15px;
      font-size: 12px; }
      .template-collection .collection-sorting > div {
        margin: 0px auto 15px;
        width: 100%; } }

.template-product #PageContainer {
  position: relative;
  z-index: 10;
  overflow: hidden; }
@media screen and (max-width: 899px) {
  .template-product .product-single__meta--wrapper {
    padding: 15px 0px;
    margin: 0px; } }
.template-product .product_info {
  background: transparent;
  padding-bottom: 35px;
  position: relative; }
  .template-product .product_info h1 {
    margin-bottom: 5px; }
  .template-product .product_info:after {
    content: " ";
    background-color: #efefef;
    width: 200vw;
    height: 100vh;
    left: -100vw;
    bottom: 0;
    position: absolute;
    z-index: -1; }
    @media screen and (max-width: 899px) {
      .template-product .product_info:after {
        content: none; } }
  .template-product .product_info .price-container {
    margin-bottom: 35px; }
    .template-product .product_info .price-container .cad_code {
      font-size: .5em; }
    .template-product .product_info .price-container #ComparePrice .cad_code {
      display: none; }
  .template-product .product_info form .radio-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    align-items: center; }
    @media screen and (max-width: 899px) {
      .template-product .product_info form .radio-wrapper {
        flex-wrap: wrap; } }
  .template-product .product_info form label {
    font-weight: normal;
    margin-right: 15px;
    font-size: 14px;
    min-width: 110px; }
    @media screen and (max-width: 899px) {
      .template-product .product_info form label {
        margin-bottom: 10px; } }
  .template-product .product_info form select {
    border: solid 1px black;
    background-color: white;
    min-width: 220px; }
  .template-product .product_info form .product-single__quantity .js-qty {
    min-width: 220px;
    margin-left: -4px; }
    @media screen and (max-width: 899px) {
      .template-product .product_info form .product-single__quantity .js-qty {
        margin-left: 0px; } }
    .template-product .product_info form .product-single__quantity .js-qty .js-qty__adjust--minus, .template-product .product_info form .product-single__quantity .js-qty .js-qty__adjust--plus {
      z-index: 50; }
  .template-product .product_info form .product-single__quantity input {
    border: solid 1px black;
    background-color: white;
    width: 100%; }
  .template-product .product_info form .product-single__add-to-cart {
    width: 100%;
    max-width: 344px; }
    .template-product .product_info form .product-single__add-to-cart button.btn--add-to-cart {
      background-color: transparent; }
    .template-product .product_info form .product-single__add-to-cart button.disabled {
      border: solid 2px #e0e0e0; }
      @media screen and (max-width: 899px) {
        .template-product .product_info form .product-single__add-to-cart button.disabled {
          width: 100%; } }
.template-product .shopify-payment-button__more-options {
  display: none; }
.template-product .product-thumbnail__photos .product-single__thumbnails {
  justify-content: flex-start; }
  .template-product .product-thumbnail__photos .product-single__thumbnails li img {
    margin: 0px; }
  .template-product .product-thumbnail__photos .product-single__thumbnails li:first-child {
    padding-left: 0px;
    margin-left: 0px; }
.template-product .product-recommendations > .wrapper {
  border-top: solid 1px black;
  padding-top: 45px; }
.template-product .back_link {
  margin-bottom: 15px; }
.template-product .social-sharing > a {
  margin-right: 25px;
  background-color: transparent; }
.template-product .social-sharing .icon {
  font-size: 20px;
  padding-left: 0px;
  color: #dd1c24; }

.cc-window {
  border-top: solid 1px white; }

#newsletter__footer {
  margin-top: 40px; }
  #newsletter__footer .wrapper {
    padding: 25px 25px;
    background-color: white;
    border: solid 1px #dd1c24; }
    #newsletter__footer .wrapper .grid {
      align-items: center; }
    #newsletter__footer .wrapper h4 {
      color: black;
      margin-bottom: 5px;
      text-transform: uppercase; }
    #newsletter__footer .wrapper p {
      margin-bottom: 0px; }
    #newsletter__footer .wrapper form {
      width: 50%; }
      @media screen and (max-width: 899px) {
        #newsletter__footer .wrapper form {
          width: 100%;
          margin-top: 15px; } }
    #newsletter__footer .wrapper .newsletter--form {
      border: none; }
      #newsletter__footer .wrapper .newsletter--form button {
        background-color: black;
        color: white;
        margin-right: -2px;
        text-transform: capitalize; }
      #newsletter__footer .wrapper .newsletter--form input {
        margin-right: 15px;
        border-bottom: solid 1px #3b3f40;
        background-color: transparent;
        font-size: 14px; }
    #newsletter__footer .wrapper .errors {
      background-color: transparent;
      border: none;
      color: #dd1c24;
      padding: 3px 0px; }

.template-page .page-template-content {
  max-width: 720px;
  margin: 0 auto 45px; }
.template-page#contact-us .form-vertical #contact_form {
  margin-bottom: 45px; }
  .template-page#contact-us .form-vertical #contact_form .grid__item {
    padding-left: 0px; }

form input, form textarea {
  border: solid 1px black;
  background-color: white;
  font-size: 14px;
  font-style: normal; }
form input[type="submit"] {
  width: 100%;
  max-width: 330px;
  color: white;
  border: solid 1px #dd1c24;
  background-color: #dd1c24; }

@media screen and (max-width: 899px) {
  body .cc-window {
    background-color: rgba(0, 0, 0, 0.75) !important;
    padding: 15px;
    font-size: 14px;
    line-height: 1.4; } }

.site-footer {
  margin-top: 55px; }
  .site-footer > .wrapper {
    border-top: solid 1px black;
    padding-top: 55px; }
  .site-footer .grid_footer {
    padding-right: 12.5%; }
    @media screen and (max-width: 899px) {
      .site-footer .grid_footer {
        padding: 0px; }
        .site-footer .grid_footer > div {
          width: 100%;
          margin-bottom: 25px; } }
  .site-footer .footer_logo img {
    width: 80px; }
  .site-footer .footer_604_logos {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    flex-wrap: wrap; }
    @media screen and (max-width: 899px) {
      .site-footer .footer_604_logos {
        justify-content: center; } }
    .site-footer .footer_604_logos a {
      margin: 0px 15px 15px 0px; }
    .site-footer .footer_604_logos img {
      max-height: 36px;
      font-size: 10px; }
  .site-footer .copyright {
    padding-top: 35px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end; }
    .site-footer .copyright p {
      font-size: 12px;
      margin-bottom: 0px; }
    .site-footer .copyright a {
      width: 100px;
      height: auto; }
    .site-footer .copyright img {
      max-width: 80px; }
    @media screen and (max-width: 899px) {
      .site-footer .copyright {
        flex-wrap: wrap; }
        .site-footer .copyright p {
          text-align: center;
          width: 100%;
          margin-bottom: 25px; }
        .site-footer .copyright a {
          margin: auto; } }

/*================ END ECSTATIC STYLES ================*/

/*================ SINGLE PRODUCT STYLES (from single.css) ================*/
/*
Copyright (c) 2019 Single, LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/* Icons */
@import url('//fonts.googleapis.com/icon?family=Material+Icons');

/* Resets */
*:focus {
  outline: 0;
}

/* Layout */
.single-product-wrap {
  max-width: calc(100vw - 40px);
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 30px;
}

.single-product-wrap:after,
.single-inner-wrap:after {
  clear: both;
  content: '';
  display: block;
}

.single-inner-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.single-col {
  float: left;
  box-sizing: border-box;
}

.single-col-l {
  width: 40%;
}

.single-col-r {
  width: 60%;
  padding-left: 30px;
}

/* Left Column */
.single-album-art {
  margin-bottom: 26px;
}

.single-album-art img {
  max-width: 100%;
  height: auto;
}

.single-album-release-date {
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.single-album-description {
  font-size: 0.9em;
}

.single-album-description.mobile-desc {
  display: none;
}

.single-field-label {
  font-size: .75em;
  margin-bottom: .25em;
  font-weight: bold;
}

.single-share-menu {
  margin-bottom: 2em;
}

.single-share-link {
  display: inline-block;
  margin-right: 0.25em;
}

.single-share-link img {
  height: 20px;
  width: 20px;
}

/* Right Column */
.single-album-header {
  margin-bottom: 4em;
}

h1.single-album-title {
  margin: 0 0 5px;
}

p.single-album-artist {
  font-size: 90%;
  font-style: italic;
}

.single-album-track-play {
  cursor: pointer;
  opacity: 0.5;
}

.single-album-price {
  margin-bottom: 1.5em;
  display: block;
  font-weight: 400;
}

.single-album-price p {
  margin: 0;
  padding: 0;
}

.single-select-field {
  margin-bottom: 1em;
  display: block;
  width: 100%;
}

.single-album-add-to-cart .btn {
  display: block;
  width: 100%;
}

.single-presale-note {
  font-size: 0.9em;
  margin-bottom: 15px;
}

.single-ajaxified-cart-feedback {
  margin-top: 15px;
  display: block !important;
}

.single-ajaxified-cart-feedback i {
  vertical-align: top;
}

.single-ajaxified-cart-feedback a {
  text-decoration: underline;
}

/* Tracklist / Audio Player */
h3.single-tracklist-title {
  margin-bottom: 0.5em;
}

.single-track {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.single-track-preview.single-track-available {
  cursor: pointer;
}

.single-track div {
  display: table-cell;
  padding: 10px 10px 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-track div:last-of-type {
  padding-right: 0;
}

.single-track p {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-track i {
  vertical-align: middle;
  font-size: 20px;
}

.single-track-order {
  width: 45px;
  text-align: right;
  opacity: 0.5;
  padding-right: 15px !important;
}

.single-track-preview.single-track-available:hover .single-play-icon {
  display: block;
}

.single-track-preview.single-track-available:hover .single-track-number {
  display: none;
}

.single-play-icon {
  display: none;
}

.single-track-title {
  font-weight: bold;
}

.single-track-time {
  font-weight: normal;
  font-size: 0.8em;
  margin-left: 1em;
  opacity: 0.5;
}

.single-track-artist {
  font-weight: normal;
  opacity: 0.75;
}

.single-track-time {
  font-weight: normal;
  font-size: 0.8em;
  margin-left: 1em;
  opacity: 0.5;
}

.single-track-explicit {
  width: 20px;
  text-overflow: initial !important;
}

.single-track-explicit span {
  background-color: red;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  padding: 0 2px;
  font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: inline !important;
}

.single-track-price {
  width: 100px;
  text-align: right;
}

.single-album-price span {
  vertical-align: middle;
  display: inline-block;
  width: auto;
}

.single-album-price span i {
  display: block;
}

.single-album-only {
  text-align: right;
  padding-right: 10px !important;
  opacity: 0.5;
  width: 150px;
}

.single-track-add-to-cart {
  text-align: center;
  width: 50px;
  cursor: pointer;
}

/* Tracklist Footer */
hr.single-hr {
  margin: 4px 0;
  padding: 0;
}

.single-branding {
  float: right;
  padding-right: 12px;
  padding-top: 4px;
}

.single-branding img {
  height: 16px;
  width: 16px;
}

/** Animations **/
.animated {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/** Theme-Specific Styles **/

/* Boundless & Narrative */
.single-product-wrap.boundless,
.single-product-wrap.narrative {
  padding: 80px 0;
}

/* Jumpstart */
.single-product-wrap.jumpstart {
  padding: 150px 0;
}

/** Responsive Styles **/

/* Tablet */
@media screen and (max-width: 767px) {
  .single-col-r {
    width: 100%;
    float: none;
    padding: 0;
  }

  .single-album-header {
    float: left;
    width: 60%;
    padding-left: 2em;
  }

  .single-album-description.desktop-desc {
    display: none;
  }

  .single-album-description.mobile-desc {
    display: block;
  }

  .single-tracklist {
    clear: both;
  }

  .single-track div {
    padding: 14px 10px 14px 0;
  }

  .single-tracklist-footer {
    padding-bottom: 40px;
  }
}

/* Mobile */
@media screen and (max-width: 640px) {

  .single-album-header,
  .single-col-l {
    float: none;
    width: 100%;
    padding-left: 0;
  }

  .single-album-art,
  .single-album-description {
    float: none;
    width: 100%;
    padding: 0;
  }

  .single-track-price {
    width: 60px;
  }

  .single-album-only {
    width: 110px;
  }

  .single-track-time {
    display: none;
  }

  .single-presale-note {
    margin-left: 0;
    display: block;
    padding-top: 1em;
  }
}
/*================ END SINGLE PRODUCT STYLES ================*/
