/** Shopify CDN: Minification failed

Line 83:0 "@charset" must be the first rule in the file
Line 83:30 Expected identifier but found whitespace
Line 84:13 Expected identifier but found whitespace
Line 87:13 Expected identifier but found whitespace
Line 88:13 Expected identifier but found whitespace
Line 93:13 Expected identifier but found whitespace
Line 94:13 Expected identifier but found whitespace
Line 97:13 Expected identifier but found whitespace
Line 98:13 Expected identifier but found whitespace
Line 767:2 Expected identifier but found "*"
... and 6 more hidden warnings

**/
@font-face {
  font-family: 'cdp-regular';
  src: url(/cdn/shop/files/HendersonSans.woff2?v=1680727798) format('woff2');
}

@font-face {
  font-family: 'cdp-bold';
  src: url(/cdn/shop/files/HendersonSans-SmBd.woff2?v=1680729134) format('woff2');
}

@font-face {
  font-family: 'cdp-italic';
  src: url(/cdn/shop/files/HendersonSans-It.woff2?v=1681356051) format('woff2');
}

@font-face {
  font-family: 'cdp-thin';
  src: url(/cdn/shop/files/HendersonSans-Thin.woff2?v=1681356052) format('woff2');
}

@font-face {
  font-family: 'cdp-thinitalic';
  src: url(/cdn/shop/files/HendersonSans-LtIt.woff2?v=1681356051) format('woff2');
}

@font-face {
  font-family: 'cdp-extralight';
  src: url(/cdn/shop/files/HendersonSans-ExLt.woff2?v=1681356051) format('woff2');
}

@font-face {
  font-family: 'cdp-extralightitalic';
  src: url(/cdn/shop/files/HendersonSans-BasExLtIt.woff2?v=1681356051) format('woff2');
}

@font-face {
  font-family: 'cdp-light';
  src: url(/cdn/shop/files/HendersonSans-Lt.woff2?v=1681356051) format('woff2');
}

@font-face {
  font-family: 'cdp-lightitalic';
  src: url(/cdn/shop/files/HendersonSans-LtIt.woff2?v=1681356051) format('woff2');
}

@font-face {
  font-family: 'cdp-semibold';
  src: url(/cdn/shop/files/HendersonSans-SmBd.woff2?v=1680729134) format('woff2');
}

@font-face {
  font-family: 'cdp-semibolditalic';
  src: url(/cdn/shop/files/HendersonSans-BdIt.woff2?v=1680727798) format('woff2');
}

@font-face {
  font-family: 'cdp-black';
  src: url(/cdn/shop/files/HendersonSans-Blk.woff2?v=1681356051) format('woff2');
}

@font-face {
  font-family: 'cdp-blackitalic';
  src: url(/cdn/shop/files/HendersonSans-BlkIt.woff2?v=1681356051) format('woff2');
}



@charset "UTF-8";Liquid error: font_face can only be used with a font dropLiquid error: font_modify can only be used with a font drop
  Liquid error: font_face can only be used with a font dropLiquid error: font_modify can only be used with a font drop
  
  Liquid error: font_face can only be used with a font dropLiquid error: font_modify can only be used with a font drop
  Liquid error: font_face can only be used with a font dropLiquid error: font_modify can only be used with a font drop
  
  
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: rgb(50, 205, 50);
  --surface-pick-up-embed-theme-error-color: rgb(179, 58, 58);
  --surface-pick-up-embed-theme-paragraph-font-size: 16px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: calc(var(--surface-pick-up-embed-theme-paragraph-font-size) - 4px);
  --surface-pick-up-embed-theme-body-font-weight-bold: 600;
  --surface-pick-up-embed-theme-body-text-color: #808080;
  --surface-pick-up-embed-theme-link-text-decoration: underline;
  --surface-pick-up-embed-row-gap: 10px;
  --surface-pick-up-embed-column-gap: 10px;
  display: grid;
  grid-template-columns: min-content auto;
  row-gap: var(--surface-pick-up-embed-row-gap);
  column-gap: var(--surface-pick-up-embed-column-gap);
  justify-content: flex-start;
  text-align: left;
}

.surface-pick-up-embed__in-stock-icon,
.surface-pick-up-embed__out-of-stock-icon {
  grid-column-start: 1;
  grid-column-end: 2;
  margin-top: 3px;
}

.surface-pick-up-embed__in-stock-icon {
  fill: var(--surface-pick-up-embed-theme-success-color);
}

.surface-pick-up-embed__out-of-stock-icon {
  fill: var(--surface-pick-up-embed-theme-error-color);
}

.surface-pick-up-embed__location-info,
.surface-pick-up-embed__modal-btn {
  grid-column-start: 2;
  grid-column-end: 3;
}

.surface-pick-up-embed__location-info {
  grid-row-start: 1;
  grid-row-end: 2;
}

.surface-pick-up-embed__location-availability {
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
  font-size: var(--surface-pick-up-embed-theme-paragraph-font-size);
  font-weight: inherit;
  color: var(--surface-pick-up-embed-theme-body-text-color);
}
.surface-pick-up-embed__location-availability b {
  font-weight: var(--surface-pick-up-embed-theme-body-font-weight-bold);
}

.surface-pick-up-embed__location-pick-up-time {
  font-size: var(--surface-pick-up-embed-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-embed-theme-body-text-color);
}

.surface-pick-up-embed__modal-btn {
  grid-row-start: 2;
  grid-row-end: 3;
  justify-self: start;
  padding: 0;
  font-size: var(--surface-pick-up-embed-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-embed-theme-body-text-color);
  text-align: left;
  -webkit-text-decoration: var(--surface-pick-up-embed-theme-link-text-decoration);
          text-decoration: var(--surface-pick-up-embed-theme-link-text-decoration);
  cursor: pointer;
  background-color: initial;
  border: 0;
}

.surface-pick-up-items {
  padding: 0;
  margin: 0;
}

.surface-pick-up-item {
  --surface-pick-up-item-theme-success-color: rgb(50, 205, 50);
  --surface-pick-up-item-theme-error-color: rgb(179, 58, 58);
  --surface-pick-up-item-theme-paragraph-font-size: 16px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: calc(var(--surface-pick-up-item-theme-paragraph-font-size) - 4px);
  --surface-pick-up-item-theme-body-font-weight-bold: 600;
  --surface-pick-up-item-theme-body-text-color: #808080;
  --surface-pick-up-item-theme-border-color: #d9d9d9;
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-row-gap: 10px;
  --surface-pick-up-item-column-gap: 5px;
  --surface-pick-up-item-gap: 28px;
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
  row-gap: var(--surface-pick-up-item-row-gap);
  column-gap: var(--surface-pick-up-item-column-gap);
  justify-content: flex-start;
  padding-bottom: var(--surface-pick-up-item-gap);
  margin: var(--surface-pick-up-item-gap) 0 0;
  text-align: left;
  border-bottom: 1px solid var(--surface-pick-up-item-theme-border-color);
}
.surface-pick-up-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.surface-pick-up-item__header {
  display: flex;
  grid-column: span 3;
  align-items: flex-end;
}

.surface-pick-up-item__pick-up-location {
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
  font-size: var(--surface-pick-up-item-theme-paragraph-font-size);
  font-weight: var(--surface-pick-up-item-theme-body-font-weight-bold);
  color: var(--surface-pick-up-item-theme-body-text-color);
}

.surface-pick-up-item__pick-up-distance {
  padding-left: 2rem;
  margin: 0 0 0 auto;
}

.surface-pick-up-item__in-stock-icon,
.surface-pick-up-item__out-of-stock-icon {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-top: 1px;
}

.surface-pick-up-item__in-stock-icon {
  fill: var(--surface-pick-up-item-theme-success-color);
}

.surface-pick-up-item__out-of-stock-icon {
  fill: var(--surface-pick-up-item-theme-error-color);
}

.surface-pick-up-item__availability {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
  font-size: var(--surface-pick-up-item-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-item-theme-body-text-color);
}

.surface-pick-up-item__address-info {
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 3;
  font-size: var(--surface-pick-up-item-theme-paragraph-smaller-font-size);
  font-style: normal;
  line-height: 1.4;
  color: var(--surface-pick-up-item-theme-body-text-color);
}
.surface-pick-up-item__address-info p {
  margin: 0;
}
.surface-pick-up-item__address-info a,
.surface-pick-up-item__address-info a:visited {
  color: inherit;
  text-decoration: none;
}
.surface-pick-up-item__address-info a:focus,
.surface-pick-up-item__address-info a:active,
.surface-pick-up-item__address-info a:hover {
  color: inherit;
}

.surface-pick-up-item__confirm-address {
  margin-top: var(--surface-pick-up-item-row-gap);
}

.surface-pick-up-item__confirm-address-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}



  


  

  
  

  
  
  

  
  
  

  
  
  

  

  
  

  
  

  
  
  

  
  

  
  


@keyframes placeholder-pulse {
  from {
    background-color: 






#f2f2f2




;
  }
  to {
    background-color: ;
  }
}
img[data-rimg=lazy], img[data-rimg=loading] {
  background-size: cover;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: placeholder-pulse;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

html .shopify-payment-button .shopify-payment-button__button--unbranded, .collections .collection .browse,
.featured-collections .collection .browse, .cart-mini__continue-shopping, .back-to-top--mobile .back-to-top__button, .age-gate__confirm_btn, .subcollection-link, .pxs-newsletter-form-button, .predictive-search__footer-button, .newsletter-wrap .submit, .shopify-challenge__button, .action-button, .promo-block--button, .promo-block--secondary .promo-block--button, .product-card-interaction, .disclosure__submit, .cart-mini-actions .action-button, html .shopify-payment-button .shopify-payment-button__button, .product-form-has-spb .submit, .product-form .product-submit, .password-page-field-wrap .submit, .cart-submit, .cart-update, .customer.addresses .edit-add-address .submit-wrap .action-button, .customer .account-form .submit-button, .slide .content .call-to-action, .countdown-timer__caption-button, .action-button.submit, .action-button.unavailable {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #8a2432;
  border: 1px solid #8a2432;
  border-radius: 0;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) background-color, 0.15s cubic-bezier(0.4, 0, 0.2, 1) border-color;
}
html .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .collections .collection .browse:hover,
.featured-collections .collection .browse:hover, .cart-mini__continue-shopping:hover, .back-to-top--mobile .back-to-top__button:hover, .age-gate__confirm_btn:hover, .subcollection-link:hover, .pxs-newsletter-form-button:hover, .predictive-search__footer-button:hover, .newsletter-wrap .submit:hover, .shopify-challenge__button:hover, .action-button:hover, .promo-block--button:hover, .product-card-interaction:hover, .disclosure__submit:hover, html .shopify-payment-button .shopify-payment-button__button:hover, .product-form-has-spb .submit:hover, .product-form .product-submit:hover, .password-page-field-wrap .submit:hover, .cart-submit:hover, .cart-update:hover, .customer.addresses .edit-add-address .submit-wrap .action-button:hover, .customer .account-form .submit-button:hover, .slide .content .call-to-action:hover, .countdown-timer__caption-button:hover {
  color: #000000;
  background-color: 










#781f2b




;
  border-color: 










#781f2b




;
}

html .shopify-payment-button .shopify-payment-button__button, .age-gate__confirm_btn, .product-form-has-spb .submit, .product-form .product-submit, .password-page-field-wrap .submit, .cart-submit, .cart-update, .customer.addresses .edit-add-address .submit-wrap .action-button, .customer .account-form .submit-button, .slide .content .call-to-action, .countdown-timer__caption-button, .action-button.submit, .action-button.unavailable {
  padding: 15px 24px;
}

.promo-block--button, .promo-block--secondary .promo-block--button, .product-card-interaction, .disclosure__submit, .cart-mini-actions .action-button {
  font-size: 12px;
}

.product-card-interaction-quickshop, .complementary-products .flickity-prev-next-button, .collections .collection .browse,
.featured-collections .collection .browse, .back-to-top--mobile .back-to-top__button, .back-to-top--desktop, .product-form-has-spb .submit, .predictive-search__footer-button, .action-button.desaturated, .promo-block--secondary .promo-block--button, .cart-mini__continue-shopping, .countdown-timer__caption-button.countdown-timer__caption-button--secondary {
  color: #8a2432;
  background-color: #000000;
}
.product-card-interaction-quickshop:hover, .complementary-products .flickity-prev-next-button:hover, .collections .collection .browse:hover,
.featured-collections .collection .browse:hover, .back-to-top--mobile .back-to-top__button:hover, .back-to-top--desktop:hover, .product-form-has-spb .submit:hover, .predictive-search__footer-button:hover, .action-button.desaturated:hover, .promo-block--secondary .promo-block--button:hover, .cart-mini__continue-shopping:hover, .countdown-timer__caption-button.countdown-timer__caption-button--secondary:hover {
  color: #8a2432;
  background-color: #150508;
}

.promo-block--secondary .promo-block--button, .cart-mini__continue-shopping, .countdown-timer__caption-button.countdown-timer__caption-button--secondary {
  color: #8a2432;
  background-color: #fff;
}

.search-filters__filter-group-title, .option-value-name, .recipient-form__input, .collection-filters__filter-group-title, .age-gate__select-wrapper .age-gate__select, .product-quantity-input, .password-page-field-wrap .password-page-input, .pxs-newsletter-form-input, .comments-wrap textarea,
.comments-wrap input[type=text], .newsletter-wrap .email, .field, .select-wrapper, .age-gate__select-wrapper {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: relative;
  display: inline-block;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  border: 1px solid #eeeeee;
  border-radius: 0;
  outline: 0;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) border;
}
.search-filters__filter-group-title::-webkit-input-placeholder, .option-value-name::-webkit-input-placeholder, .recipient-form__input::-webkit-input-placeholder, .collection-filters__filter-group-title::-webkit-input-placeholder, .age-gate__select-wrapper .age-gate__select::-webkit-input-placeholder, .product-quantity-input::-webkit-input-placeholder, .password-page-field-wrap .password-page-input::-webkit-input-placeholder, .pxs-newsletter-form-input::-webkit-input-placeholder, .comments-wrap textarea::-webkit-input-placeholder,
.comments-wrap input[type=text]::-webkit-input-placeholder, .newsletter-wrap .email::-webkit-input-placeholder, .field::-webkit-input-placeholder, .select-wrapper::-webkit-input-placeholder, .age-gate__select-wrapper::-webkit-input-placeholder {
  color: #eeeeee;
}
.search-filters__filter-group-title:-moz-placeholder, .option-value-name:-moz-placeholder, .recipient-form__input:-moz-placeholder, .collection-filters__filter-group-title:-moz-placeholder, .age-gate__select-wrapper .age-gate__select:-moz-placeholder, .product-quantity-input:-moz-placeholder, .password-page-field-wrap .password-page-input:-moz-placeholder, .pxs-newsletter-form-input:-moz-placeholder, .comments-wrap textarea:-moz-placeholder,
.comments-wrap input[type=text]:-moz-placeholder, .newsletter-wrap .email:-moz-placeholder, .field:-moz-placeholder, .select-wrapper:-moz-placeholder, .age-gate__select-wrapper:-moz-placeholder {
  color: #eeeeee;
}
.search-filters__filter-group-title::-moz-placeholder, .option-value-name::-moz-placeholder, .recipient-form__input::-moz-placeholder, .collection-filters__filter-group-title::-moz-placeholder, .age-gate__select-wrapper .age-gate__select::-moz-placeholder, .product-quantity-input::-moz-placeholder, .password-page-field-wrap .password-page-input::-moz-placeholder, .pxs-newsletter-form-input::-moz-placeholder, .comments-wrap textarea::-moz-placeholder,
.comments-wrap input[type=text]::-moz-placeholder, .newsletter-wrap .email::-moz-placeholder, .field::-moz-placeholder, .select-wrapper::-moz-placeholder, .age-gate__select-wrapper::-moz-placeholder {
  color: #eeeeee;
}
.search-filters__filter-group-title:-ms-input-placeholder, .option-value-name:-ms-input-placeholder, .recipient-form__input:-ms-input-placeholder, .collection-filters__filter-group-title:-ms-input-placeholder, .age-gate__select-wrapper .age-gate__select:-ms-input-placeholder, .product-quantity-input:-ms-input-placeholder, .password-page-field-wrap .password-page-input:-ms-input-placeholder, .pxs-newsletter-form-input:-ms-input-placeholder, .comments-wrap textarea:-ms-input-placeholder,
.comments-wrap input[type=text]:-ms-input-placeholder, .newsletter-wrap .email:-ms-input-placeholder, .field:-ms-input-placeholder, .select-wrapper:-ms-input-placeholder, .age-gate__select-wrapper:-ms-input-placeholder {
  color: #eeeeee;
}
.search-filters__filter-group-title:focus, .option-value-name:focus, .recipient-form__input:focus, .collection-filters__filter-group-title:focus, .age-gate__select-wrapper .age-gate__select:focus, .product-quantity-input:focus, .password-page-field-wrap .password-page-input:focus, .pxs-newsletter-form-input:focus, .comments-wrap textarea:focus,
.comments-wrap input[type=text]:focus, .newsletter-wrap .email:focus, .field:focus, .select-wrapper:focus, .age-gate__select-wrapper:focus {
  border: 1px #000000 solid;
}
.search-filters__filter-group-title:focus, .option-value-name:focus, .recipient-form__input:focus, .collection-filters__filter-group-title:focus, .age-gate__select-wrapper .age-gate__select:focus, .product-quantity-input:focus, .password-page-field-wrap .password-page-input:focus, .pxs-newsletter-form-input:focus, .comments-wrap textarea:focus,
.comments-wrap input[type=text]:focus, .newsletter-wrap .email:focus, .field:focus, .select-wrapper:focus, .age-gate__select-wrapper:focus, .search-filters__filter-group-title:invalid, .option-value-name:invalid, .recipient-form__input:invalid, .collection-filters__filter-group-title:invalid, .age-gate__select-wrapper .age-gate__select:invalid, .product-quantity-input:invalid, .password-page-field-wrap .password-page-input:invalid, .pxs-newsletter-form-input:invalid, .comments-wrap textarea:invalid,
.comments-wrap input[type=text]:invalid, .newsletter-wrap .email:invalid, .field:invalid, .select-wrapper:invalid, .age-gate__select-wrapper:invalid {
  background-color: transparent;
}

.option-name, .recipient-form__label, .product-quantity-label, .sidebar-title, .cart-tools .instructions label, .comments-wrap label, .customer.addresses .edit-add-address .wrap > label, .customer .account-form .field-wrap label {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-weight: helvetica_n4;
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  color: #000000;
}

.sidebar-drawer__header-container, .promo-block--content, .product .brand,
.quick-shop-content .brand,
.product-area .brand, .template-search .result .details .brand, .product-tabs__label, .collapsible-tab__heading, .product__description .go-to-product, .password-page-logo .store-title, .template-page .sidebar .title, .template-contact .sidebar .title, .order-item-label-mobile, .customer.order .order-history .table td.product-item .label.vendor, .sidebar-title, .template-cart .table td.product-item .label.vendor, .template-cart .table th, .comments .date, .comments-wrap .title, .article-date, .article-author-writtenby,
.article-tags-filedunder,
.article-comments-discussion, .blog-sidebar-recentposts-title,
.blog-sidebar-tags-title, .customer.account .title, .customer .table th, .predictive-search__title, .featured-blog__article-date, .rte .tabs > li:not(.grouped-content-content), .pxs-newsletter-text .tabs > li:not(.grouped-content-content), .mobile-dropdown .list .list-item a, .mega-nav .list .label, .main-header nav.full .nav-item > .label,
.main-header nav.full .nav-item > details .label, .main-footer .connect .title, .complementary-product__link, .product-callout {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-header nav.full .nav-item > .label,
.main-header nav.full .nav-item > details .label, .main-header .social-links {
  position: relative;
}
.main-header nav.full .nav-item > .label::before,
.main-header nav.full .nav-item > details .label::before, .main-header .social-links::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 23px;
  background-color: #ebe5d8;
  content: "";
  transform: translateY(-50%);
}

.main-header nav.full .nav-item .svg-icon, .ls-form-button-close .svg-icon, .ls-form-button-search .svg-icon, .ls-button-search .svg-icon, .rs-form-button-search .svg-icon, .main-header .social-links .svg-icon, .main-header--tools-icon .svg-icon, .main-header--tools .search .svg-icon,
.main-header--tools .menu .svg-icon,
.main-header--tools .mini-cart-wrap .svg-icon,
.main-header--tools .account-options .svg-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.ls-form-button-close .svg-icon, .ls-form-button-search .svg-icon, .ls-button-search .svg-icon, .rs-form-button-search .svg-icon, .main-header .social-links .svg-icon, .main-header--tools-icon .svg-icon, .main-header--tools .search .svg-icon,
.main-header--tools .menu .svg-icon,
.main-header--tools .mini-cart-wrap .svg-icon,
.main-header--tools .account-options .svg-icon {
  width: 20px;
  height: 20px;
}

.main-header nav.full .nav-item .svg-icon {
  width: 10px;
  height: 8px;
}

.complementary-product__link, .product-callout {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: #8a2432;
}
.complementary-product__link:hover, .product-callout:hover {
  color: #000000;
}
.complementary-product__link span, .product-callout span {
  margin-left: 5px;
}

.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "henderson-sans-basic", sans-serif;
  color: #222;
}

body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}

.js body:not(.user-is-tabbing) a:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a:hover,
a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #ccc;
}

ins {
  color: #000;
  text-decoration: none;
  background: #ff9;
}

mark {
  font-style: italic;
  font-weight: bold;
  color: #000;
  background: #ff0;
}

pre,
code,
kbd,
samp {
  font-family: "henderson-sans-basic", sans-serif;
  font-size: 1em;
}

pre {
  word-wrap: break-word;
  white-space: pre-wrap;
}

q {
  quotes: none;
}

q::before,
q::after {
  content: none;
}

small {
  font-size: 85%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul,
ol {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

dd {
  margin: 0 0 0 40px;
}

nav ul,
nav ol {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-image: none;
}

img {
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  padding: 0;
  white-space: normal;
  border: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
          appearance: button;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  box-sizing: border-box;
}

input[type=search] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
          appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}

input {
  background: none;
  border: 0;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

.chromeframe {
  padding: 0.2em 0;
  margin: 0.2em 0;
  color: #000;
  background: #ccc;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url("") 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url("");
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url("") 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
  	The idea of animating inner circle is based on Polymer ("material") loading indicator
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

.no-js .js-required {
  display: none;
}

.js .no-js-required {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}

.uc-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.select-wrapper, .age-gate__select-wrapper {
  color: #000000;
  width: 235px;
  border-radius: 0;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) border;
}
.select-wrapper:focus-within, .age-gate__select-wrapper:focus-within {
  border: 1px solid #000000;
}
.select-wrapper::before, .age-gate__select-wrapper::before, .select-wrapper::after, .age-gate__select-wrapper::after {
  position: absolute;
  width: 7px;
  height: 7px;
  top: calc(50% - 7px);
  right: 18px;
  display: block;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  background: none;
  content: "";
  transform: rotate(315deg);
}
.select-wrapper::after, .age-gate__select-wrapper::after {
  margin-top: -1px;
  pointer-events: none;
  border-color: #ffffff transparent transparent;
}
.select-wrapper label.select-text, .age-gate__select-wrapper label.select-text {
  width: 100%;
  max-width: 82%;
  margin: 0;
  text-align: left;
}
.select-wrapper select, .age-gate__select-wrapper select {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: #000000;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) border;
  -webkit-appearance: none;
          appearance: none;
}
@media (max-width: 719px) {
  .select-wrapper select, .age-gate__select-wrapper select {
    font-size: 16px;
  }
}
.address-list .select-wrapper, .address-list .age-gate__select-wrapper, .add-address .select-wrapper, .add-address .age-gate__select-wrapper, .product-list-sidebar .select-wrapper, .product-list-sidebar .age-gate__select-wrapper, .collection-header .select-wrapper, .collection-header .age-gate__select-wrapper {
  width: auto;
  padding: 0;
}
.address-list .select-wrapper select, .address-list .age-gate__select-wrapper select, .add-address .select-wrapper select, .add-address .age-gate__select-wrapper select, .product-list-sidebar .select-wrapper select, .product-list-sidebar .age-gate__select-wrapper select, .collection-header .select-wrapper select, .collection-header .age-gate__select-wrapper select {
  position: static;
  padding: 12px;
  background-color: transparent;
  border: 0;
  opacity: 1;
  box-sizing: content-box;
}
.product-list-sidebar .select-wrapper, .product-list-sidebar .age-gate__select-wrapper, .collection-header .select-wrapper, .collection-header .age-gate__select-wrapper {
  width: 100%;
}

.empty {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 40px auto 60px;
  font-size: 15px;
  text-align: center;
}
@media (max-width: 719px) {
  .empty {
    width: 100%;
    padding: 0 30px;
  }
}
.empty a {
  color: #8a2432;
}
.empty a:hover {
  color: 










#781f2b




;
}
.collection-header .empty {
  margin-bottom: 0;
  text-align: center;
}

.error-message,
.alert-message {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  color: #ee575a;
  background-color: #ffeaeb;
  border: 1px solid #ee575a;
}
.error-message.success,
.alert-message.success {
  color: #66b544;
  background-color: #f2f9ed;
  border-color: #66b544;
}

.content-area, .collection-title-header, .marquee.marquee--is-wide-false {
  position: relative;
  display: block;
  width: 92%;
  max-width: 1430px;
  min-width: 690px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .content-area, .collection-title-header, .marquee.marquee--is-wide-false {
    width: 95%;
  }
}
@media (max-width: 719px) {
  .content-area, .collection-title-header, .marquee.marquee--is-wide-false {
    width: 100%;
    min-width: 290px;
  }
}

.faq__section-heading {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding: 45px 0 0;
  margin: 0 0 45px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}

.section-title{
   font-family: 'cdp-simibold', ,;
  font-style: ;
  font-weight: 0;
  padding: 45px 0 0;
  margin: 0 0 45px;
  font-size: 2.0rem;

  color: #000000;
  text-align: center;

}

.section-border {
  border-top: 1px solid #eeeeee;
}
main section:first-child .section-border {
  border-top: 0;
}

.action-button:hover {
  background-color: 










#781f2b




;
}
.field {
  transition: box-shadow 250ms, border 250ms, color 250ms;
}
.field.error {
  color: #ffeaeb;
  border: 1px solid #ee575a;
  box-shadow: 0 0 7px rgba(238, 87, 90, 0.4);
}
.field.error::-webkit-input-placeholder {
  color: #ffeaeb;
}
.field.error:-moz-placeholder {
  color: #ffeaeb;
}
.field.error::-moz-placeholder {
  color: #ffeaeb;
}
.field.error:-ms-input-placeholder {
  color: #ffeaeb;
}
@media (max-width: 719px) {
  .field {
    font-size: 16px;
  }
}

.page-title {
  padding: 16px 0 35px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .page-title {
    padding: 35px 0;
    border-bottom: 0;
  }
}
.page-title .label {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 35px;
  color: #000000;
}.page-title .label {
    font-size: 30.625px;
    text-transform: uppercase;
  }@media (max-width: 719px) {
  .page-title .label {
    display: block;
    white-space: pre-line;
  }
}
.page-title .label a {
  color: #000000;
}

.load-up {
  padding: 0 30px;
  font-size: 14px;
  color: #4d4d4d;
}
.featured-collections .load-up {
  padding-bottom: 65px;
}

.slideshow .placeholder-svg {
  min-height: 100%;
}
.slideshow--desktop-height-natural .slideshow .placeholder-svg {
  min-height: 66vh;
}
@media screen and (max-width: 720px) {
  .slideshow--mobile-height-natural .slideshow .placeholder-svg {
    min-height: 25vh;
  }
}

.placeholder-background {
  background-color: 






#f2f2f2




;
}

.placeholder-svg {
  background-color: 






#f2f2f2




;
  fill: #eeeeee;
}

.money.no-price,
.money[data-orig-price=none] {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}


  


  
  
.main-footer {
  padding: 0 15px;
  margin-top: 65px;
}
.main-footer .footer-message {
  overflow-wrap: break-word;
}
.main-footer .footer-message,
.main-footer .email {
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
  color: #4d4d4d;
}
.main-footer .footer-message a,
.main-footer .email a {
  color: #4d4d4d;
  text-decoration: underline;
}
.main-footer .footer-message a:hover,
.main-footer .email a:hover {
  color: 










#434343




;
}
.main-footer .connect {
  display: block;
  font-size: 0;
  text-align: center;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.main-footer .connect > li {
  display: inline-block;
  width: 33.3333333333%;
  height: 185px;
  text-align: center;
  vertical-align: top;
  border-left: 1px solid #eeeeee;
}
.main-footer .connect > li:first-child {
  border-left: 0;
}
@media screen and (max-width: 910px) {
  .main-footer .connect > li {
    width: 100%;
    height: auto;
    border-top: 1px solid #eeeeee;
    border-left: 0;
  }
  .main-footer .connect > li:first-child {
    border-top: 0;
  }
}
.main-footer .connect.module-count-1 > li, .main-footer .connect.module-count-2 > li {
  width: 50%;
}
.main-footer .connect.module-count-1 > li {
  border-left: 0;
}
.main-footer .connect .title {
  font-size: 14px;
  color: #4d4d4d;
}
.main-footer .connect .contact .title {
  margin-bottom: 20px;
}
.main-footer .connect .contact p {
  margin: 0;
}
.main-footer .connect .social .title {
  margin-bottom: 30px;
}
.main-footer .connect .social > ul {
  padding: 0 20px;
  font-size: 0;
}
.main-footer .connect .social .social-link {
  position: relative;
  display: inline-block;
  width: auto;
  height: 24px;
  margin: 0 8px;
  border-radius: 4px;
}
.main-footer .connect .social .social-link a {
  color: #4d4d4d;
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.15s color;
}
.main-footer .connect .social .social-link a:hover {
  color: 










#434343




;
}
.main-footer .connect .social .social-link svg {
  width: auto;
  height: 100%;
  color: #8a2432;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.main-footer .connect .social .social-link svg:hover {
  color: 










#434343




;
}
.main-footer .connect .newsletter .title {
  margin-bottom: 20px;
}
.main-footer .shopify-localization-form {
  display: flex;
}

.sub-footer {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  font-size: 14px;
  color: #808080;
}
@media (max-width: 959px) {
  .sub-footer {
    gap: 2rem;
  }
}
.sub-footer nav {
  padding: 0;
  margin: 0;
}
.sub-footer nav li {
  display: inline-block;
  margin: 0 10px;
}
.sub-footer nav li:first-child {
  margin-left: 0;
}
.sub-footer nav a {
  color: #4d4d4d;
}
.sub-footer nav a:hover {
  color: 










#434343




;
}
.sub-footer nav .social-link {
  display: inline-block;
  width: auto;
  height: 24px;
  margin: 0 7px;
}
.sub-footer nav svg {
  width: auto;
  height: 100%;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-footer nav svg:hover {
  color: 










#434343




;
}
.sub-footer p {
  margin: 0;
}
.sub-footer p a {
  color: #4d4d4d;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-footer p a:hover {
  color: 










#434343




;
}
.sub-footer nav ~ p {
  color: #4d4d4d;
}
.sub-footer nav ~ p a {
  color: #4d4d4d;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-footer nav ~ p a:hover {
  color: 










#6f6f6f




;
}
.sub-footer .sub-footer__copyright {
  color: #000000;
}
.sub-footer .sub-footer__copyright a {
  color: inherit;
}
.sub-footer .payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 959px) {
  .sub-footer .payment-options {
    justify-content: center;
  }
}
.sub-footer .payment-options li {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 42px;
  max-height: 34px;
}
.sub-footer .payment-options svg {
  width: auto;
  height: 34px;
  max-width: 42px;
  max-height: 34px;
}

@media (max-width: 959px) {
  .sub-footer--desktop {
    display: none;
  }
}

.sub-footer--mobile {
  align-items: center;
  text-align: center;
}
@media (min-width: 960px) {
  .sub-footer--mobile {
    display: none;
  }
}

.sub-footer__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.75rem;
}
@media (max-width: 959px) {
  .sub-footer__row {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }
}
@media (min-width: 960px) {
  .main-footer:not(.main-footer-alt) .sub-footer__row:last-of-type {
    align-items: flex-start;
  }
}
.sub-footer__row > :nth-child(1) {
  flex: 1 1 50%;
}
@media (max-width: 959px) {
  .sub-footer__row > :nth-child(1) {
    flex: initial;
  }
}
.sub-footer__row > :nth-child(2) {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 959px) {
  .sub-footer__row > :nth-child(2) {
    margin-inline: auto;
    text-align: center;
  }
}

@media (min-width: 960px) {
  .sub-footer__row--first .sub-footer-right > :nth-child(1) {
    display: flex;
    justify-content: flex-end;
  }
}
.sub-footer__row--first .sub-footer-right > :nth-child(2):not(:only-child) {
  display: none;
}
.sub-footer__row--first .sub-footer-right--selectors-only {
  display: none;
}
@media (max-width: 959px) {
  .sub-footer__row--first .sub-footer-right--selectors-only {
    display: block;
  }
}
.sub-footer__row--first .sub-footer-right--payments-only {
  display: none;
}

.sub-footer__row--second .copyright {
  margin: 0;
}
@media (min-width: 960px) {
  .sub-footer__row--second .sub-footer-right > :nth-child(1) {
    display: flex;
    justify-content: flex-end;
  }
}
.sub-footer__row--second .sub-footer-right > :nth-child(1):not(:only-child) {
  display: none;
}
.sub-footer__row--second .sub-footer-right--selectors-only {
  display: block;
}
@media (max-width: 959px) {
  .sub-footer__row--second .sub-footer-right--selectors-only {
    display: none;
  }
}
.sub-footer__row--second .sub-footer-right--payments-only {
  display: block;
}

.site-footer__row-inner-wrapper-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#main-footer {
  line-height: 22px;
}
#main-footer .module-count-0 {
  border-bottom: 0;
}
#main-footer .newsletter,
#main-footer .contact,
#main-footer .footer-menu, #main-footer:not(.main-footer-alt) .social {
  padding-top: 50px;
  padding-bottom: 55px;
  color: #4d4d4d;
}
@media screen and (max-width: 910px) {
  #main-footer .newsletter,
  #main-footer .contact,
  #main-footer .footer-menu, #main-footer:not(.main-footer-alt) .social {
    padding-top: 40px;
  }
}
#main-footer .newsletter li,
#main-footer .contact li,
#main-footer .footer-menu li, #main-footer:not(.main-footer-alt) .social li {
  font-size: 15px;
  line-height: 2em;
}
#main-footer .newsletter a,
#main-footer .contact a,
#main-footer .footer-menu a, #main-footer:not(.main-footer-alt) .social a {
  color: #4d4d4d;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#main-footer .newsletter a:hover,
#main-footer .contact a:hover,
#main-footer .footer-menu a:hover, #main-footer:not(.main-footer-alt) .social a:hover {
  color: 










#434343




;
}
#main-footer .connect {
  display: table;
  width: 100%;
}
@media screen and (max-width: 910px) {
  #main-footer .connect {
    display: block;
  }
}
#main-footer .connect > li {
  padding-right: 20px;
  padding-left: 20px;
  display: table-cell;
  vertical-align: middle;
}
@media (min-width: 1000px) {
  #main-footer .connect > li {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 910px) {
  #main-footer .connect > li {
    display: block;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.main-footer-alt .connect .newsletter .wrap {
  width: 100%;
}
.main-footer-alt .connect > li:first-of-type {
  border: 0;
}
.main-footer-alt .footer-message + form {
  margin-top: 40px;
}
.main-footer-alt .module-count-2 > li {
  width: 50%;
}
.main-footer-alt .module-count-3 > li.first {
  width: 50%;
}
.main-footer-alt .module-count-3 > li:not(.first) {
  width: 25%;
}

.newsletter-wrap {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-wrap .email {
  flex-grow: 1;
  width: 125px;
  margin: 0;
}
.newsletter-wrap .submit {
  flex-shrink: 0;
  margin-left: 12px;
}
.alert-message + .newsletter-wrap {
  margin-top: 25px;
}

a {
  color: #8a2432;
}

a:hover {
  color: 










#781f2b




;
}

* {
  box-sizing: border-box;
}

input::-ms-clear {
  display: block;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #808080;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #808080;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #808080;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #808080;
}

textarea {
  background-color: #ffffff;
}

body,
html {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto; /* iOS position:fixed; elements fix (not 100%) */
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
  body,
  html {
    scroll-behavior: auto;
  }
}

html::before {
  display: none;
  content: "S,M,L";
}
html::after {
  display: none;
  content: "S";
}
@media (min-width: 720px) and (max-width: 960px) {
  html::after {
    content: "M";
  }
}
@media (min-width: 960px) {
  html::after {
    content: "L";
  }
}
html.scroll-locked {
  overflow: hidden;
}

body {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
.scroll-locked body {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'cdp-semibold', sans-serif;
  text-transform:uppercase;
  font-style: ;
  font-weight: 0;
}
h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b,
h6 strong {
  font-weight: 700;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  font-style: ;
}
h1 b em,
h1 strong em,
h1 em b,
h1 em strong,
h2 b em,
h2 strong em,
h2 em b,
h2 em strong,
h3 b em,
h3 strong em,
h3 em b,
h3 em strong,
h4 b em,
h4 strong em,
h4 em b,
h4 em strong,
h5 b em,
h5 strong em,
h5 em b,
h5 em strong,
h6 b em,
h6 strong em,
h6 em b,
h6 em strong {
  font-style: ;
}

th,
b,
strong {
  font-weight: 700;
}

em {
  font-style: ;
}

th em,
b em,
strong em,
em b,
em strong {
  font-style: ;
}

mark {
  font-style: ;
  color: #000;
  background: #ff0;
}

@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.shopify-section--header {
  display: contents;
}

.main-header-wrap {
  position: relative;
  z-index: 5000;
}
.main-header-wrap .main-header {
  position: relative;
  background: #ffffff;
}
.main-header-wrap .main-header::after {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
}
.main-header--minimal .main-header-wrap .main-header::after, .main-header--minimal-sticky .main-header-wrap .main-header::after {
  top: 100px;
}
.main-header-wrap .main-header.search-active::after {
  display: block;
}
@media (min-width: 720px) {
  .main-header-wrap.main-header--minimal {
    background-color: #ffffff;
  }
}
.main-header-wrap.main-header--minimal-sticky {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  background-color: #ffffff;
}
.no-js .main-header-wrap.main-header--minimal-sticky {
  position: relative;
}
@media (min-width: 720px) {
  .main-header-wrap.main-header--minimal-sticky {
    right: 0;
    left: 0;
    background-color: #ffffff;
  }
}

@media (max-width: 719px) {
  .main-header--normal,
  .main-header--expanded {
    border-bottom: 1px solid #ebe5d8;
  }
}

.action-links {
  position: relative;
  z-index: 2000;
  padding: 0 15px;
}
@media (max-width: 719px) {
  .action-links {
    min-width: 0;
  }
}
.main-header--normal:not(.main-header--centered) .action-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 719px) {
  .main-header--normal:not(.main-header--centered) .action-links {
    display: block;
  }
}
.main-header--normal:not(.main-header--centered) .action-links::before {
  order: 1;
}

@media screen and (max-width: 719px) {
  .header-mobile-stick .action-links {
    display: none;
  }
  .header-mobile-stick + * {
    padding-top: 175px;
  }
}
.main-header--minimal .main-header nav.full.multi-line::before {
  display: none;
}
.main-header--minimal ~ .page-body-content {
  padding-top: 1px;
}

.header-minimal {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 0 1.25rem;
}
.main-header--centered .header-minimal {
  text-align: center;
}
.header-minimal nav.full,
.header-minimal .store-title,
.header-minimal .main-header--tools {
  padding: 30px 0;
}
.main-header--minimal .header-minimal nav.full,
.main-header--minimal .header-minimal .store-title,
.main-header--minimal .header-minimal .main-header--tools {
  padding: 0;
}
.main-header--minimal .header-minimal .store-title {
  text-align: left;
}
@media (max-width: 959px) {
  .main-header--minimal .header-minimal .store-title {
    text-align: center;
  }
}
.main-header--centered .header-minimal .store-title {
  text-align: center;
}
@media (max-width: 719px) {
  .main-header--centered .header-minimal .store-title {
    z-index: 1;
    width: calc(100% - 200px);
  }
}
.main-header--minimal .header-minimal .store-title {
  padding: 20px 0;
}
.header-minimal nav.full {
  text-align: center;
}
@media (max-width: 719px) {
  .header-minimal nav.full {
    display: none;
  }
}
@media (max-width: 959px) {
  .main-header--minimal .header-minimal nav.full {
    display: none;
  }
}
.header-minimal nav.full.bordered {
  border: 0;
}
.header-minimal nav.full ul {
  text-align: left;
  white-space: normal;
}
.header-minimal nav.full .nav-item .label::before {
  display: none;
}
@media (max-width: 959px) {
  .main-header--minimal .header-minimal .main-header--tools {
    width: 100%;
  }
  .main-header--minimal .header-minimal .main-header--tools .main-header--tools-group {
    justify-content: space-between;
  }
}
.main-header--centered .header-minimal .main-header--tools {
  width: 33.33333%;
}
@media (max-width: 719px) {
  .main-header--centered .header-minimal .main-header--tools {
    width: 100%;
  }
  .main-header--centered .header-minimal .main-header--tools .main-header--tools-group {
    justify-content: space-between;
  }
}
@media (max-width: 959px) {
  .main-header--minimal .header-minimal .main-header--tools {
    width: 100%;
  }
  .main-header--minimal .header-minimal .main-header--tools .main-header--tools-group {
    justify-content: space-between;
  }
}

@media (max-width: 719px) {
  .main-header .main-header--tools {
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
  }
  .main-header .main-header--tools .main-header--tools-group {
    justify-content: space-between;
  }
}

nav.full {
  flex: 1;
}
.header-minimal-centered nav.full {
  flex: initial;
  width: 33.33333%;
}
@media (max-width: 1159px) {
  nav.full {
    display: none;
  }
}

.store-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: block;
  max-width: 48%;
  overflow: hidden;
  clear: left;
  font-size: 28px;
  word-break: break-word;
}
@media (max-width: 719px) {
  .store-title {
    max-width: 100%;
    margin: 50px 0 40px;
    font-size: 23px;
    text-align: center;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal.live-search-visible .store-title {
    display: none;
  }
}
.main-header--centered .store-title {
  float: none;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.main-header--minimal .store-title {
  margin: 0 auto;
}
@media (max-width: 959px) {
  .main-header--minimal .store-title {
    position: relative;
    z-index: 3;
    display: block;
    width: calc(100% - 200px);
    max-width: 100%;
  }
}
.main-header--minimal:not(.main-header--centered) .store-title {
  padding-left: 0;
  margin: 0;
}
@media screen and (min-width: 960px) {
  .main-header--minimal:not(.main-header--centered) .store-title {
    padding-right: 20px;
    padding-left: 10px;
    text-align: left;
  }
}
@media (max-width: 959px) {
  .main-header--minimal:not(.main-header--centered) .store-title {
    margin: 0 auto;
  }
}
.store-title img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 107px;
}
.store-title a {
  display: inline-block;
  color: #8a2432;
}
.store-title a:hover {
  color: 










#781f2b




;
}
@media (max-width: 719px) {
  .store-title a {
    display: inline;
    word-break: break-word;
  }
}
.main-header--normal .store-title:focus-within, .main-header--expanded .store-title:focus-within {
  outline: auto 5px Highlight;
  outline: auto 5px -webkit-focus-ring-color;
}
@media (max-width: 719px) {
  .main-header--normal .store-title.store-title--hidden-on-mobile, .main-header--expanded .store-title.store-title--hidden-on-mobile {
    display: none;
  }
}
@media (min-width: 720px) {
  .main-header--normal .store-title.store-title--hidden-on-desktop, .main-header--expanded .store-title.store-title--hidden-on-desktop {
    display: none;
  }
}

.store-logo {
  line-height: 0;
}
@media (max-width: 719px) {
  .store-logo {
    line-height: 1;
  }
}

.main-header--tools {
  position: relative;
  order: 2;
  float: right;
  max-width: 70%;
}
@media (max-width: 719px) {
  .main-header--tools {
    float: none;
  }
  .main-header--normal .main-header--tools::after, .main-header--expanded .main-header--tools::after {
    position: absolute;
    right: -15px;
    bottom: -14px;
    width: 100vw;
    height: 1px;
    background: #ebe5d8;
    content: "";
  }
}
.main-header--tools.search-active {
  z-index: 999;
}
.main-header--centered .main-header--tools, .main-header--expanded .main-header--tools {
  float: none;
  width: 100%;
  max-width: none;
  margin-top: 20px;
  margin-bottom: 15px;
}
@media (max-width: 719px) {
  .main-header--centered .main-header--tools, .main-header--expanded .main-header--tools {
    margin-top: 14px;
  }
}
.main-header--minimal .main-header--tools {
  float: none;
  text-align: right;
  visibility: visible;
}
@media (max-width: 959px) {
  .main-header--minimal .main-header--tools {
    position: absolute;
    top: calc(50% - 10px);
    left: 15px;
    width: 100%;
    max-width: calc(100% - 30px);
    margin: 0;
  }
}

.main-header--tools-group {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.main-header--minimal .main-header--tools-group {
  justify-content: flex-end;
}

.main-header--tools-left,
.main-header--tools-right {
  display: flex;
  align-items: center;
}

.tool-container {
  display: flex;
}

@media (max-width: 1200px) {
  .main-header--centered.main-header--minimal .main-header--tools-left {
    justify-content: space-between;
  }
  .main-header--centered.main-header--minimal .main-header--tools-left .social-links {
    flex-basis: 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 959px) {
  .main-header--minimal .main-header--tools-left {
    justify-content: space-between;
    width: 100%;
  }
}

.search {
  cursor: pointer;
}

.main-header--tools .search,
.main-header--tools .menu,
.main-header--tools .mini-cart-wrap,
.main-header--tools .account-options {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  align-items: center;
  margin: 0 6px;
  font-size: 14px;
  color: #8a2432;
}
.main-header--minimal .main-header--tools .search .svg-icon:only-child,
.main-header--minimal .main-header--tools .menu .svg-icon:only-child,
.main-header--minimal .main-header--tools .mini-cart-wrap .svg-icon:only-child,
.main-header--minimal .main-header--tools .account-options .svg-icon:only-child {
  margin: 0;
}
.main-header--tools .search:hover, .main-header--tools .search.active,
.main-header--tools .menu:hover,
.main-header--tools .menu.active,
.main-header--tools .mini-cart-wrap:hover,
.main-header--tools .mini-cart-wrap.active,
.main-header--tools .account-options:hover,
.main-header--tools .account-options.active {
  color: 










#781f2b




;
}
.main-header--tools .search.active,
.main-header--tools .menu.active,
.main-header--tools .mini-cart-wrap.active,
.main-header--tools .account-options.active {
  z-index: 5000;
}
.main-header--tools .account-options .svg-icon {
  width: 21px;
}
.main-header--tools .mini-cart-wrap {
  margin-right: 0;
  background: none;
  border: 0;
}
.main-header--tools .mini-cart-wrap .svg-icon {
  width: auto;
}
.main-header--tools .mini-cart-wrap _:-ms-fullscreen, :root .main-header--tools .mini-cart-wrap {
  width: 21px;
}
.main-header--tools .menu {
  display: none;
  margin-left: 0;
}
@media (max-width: 1159px) {
  .main-header--tools .menu {
    display: flex;
  }
}
@media (max-width: 959px) {
  .main-header--minimal .main-header--tools .menu {
    display: flex;
  }
}
.main-header--tools .mini-cart-wrap {
  position: relative;
  cursor: pointer;
      padding: 0;
}
.main-header--tools .mini-cart-wrap .icon-bag,
.main-header--tools .mini-cart-wrap .icon-cart {
  padding-right: 12px;
}
.main-header--tools .mini-cart-wrap .item-count {
  position: absolute;
  top: 50%;
  left: calc(100% - 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 3px;
  font-size: 10px;
  line-height: 1;
  color: #ffffff;
  background-color: #8a2432;
  border-radius: 50%;
  transform: translateY(-50%);
}
.main-header--tools .mini-cart-wrap .item-count:empty {
  display: none;
}
.main-header--tools .mini-cart-wrap .item-count:empty + .icon-bag,
.main-header--tools .mini-cart-wrap .item-count:empty + .icon-cart {
  padding-right: 0;
}
.no-js .main-header--tools .mini-cart-wrap.mini-cart-wrap--no-js-hidden {
  display: none;
}

.main-header--tools-icon {
  display: block;
  margin: 0 8px;
}
.main-header--minimal .main-header--tools-icon {
  width: 1.32em;
  height: 1.32em;
  margin-right: 0.5em;
  vertical-align: middle;
}

.main-header--tools-label {
  margin-right: 6px;
  margin-left: 6px;
}
@media (max-width: 719px) {
  .main-header--tools-label {
    display: none;
  }
}
.main-header--minimal .main-header--tools-label {
  display: none;
}

@media (max-width: 719px) {
  .main-header .mobile-dropdown .social-links {
    display: flex;
    order: 1;
  }
}
@media (max-width: 959px) {
  .main-header--minimal .main-header .mobile-dropdown .social-links {
    display: flex;
    order: 1;
  }
}
.main-header .mobile-dropdown .social-links .social-link {
  margin-top: 6px;
  margin-bottom: 6px;
  margin-right: 12px;
  color: #8a2432;
}

.main-header .social-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  float: left;
  padding-right: 20px;
  margin-right: 10px;
}
@media (max-width: 719px) {
  .main-header .social-links {
    display: none;
  }
}
@media (max-width: 959px) {
  .main-header--minimal .main-header .social-links {
    display: none;
  }
}
.main-header--minimal .main-header .social-links {
  order: -1;
}
.main-header .social-links .social-link {
  color: #8a2432;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header .social-links .social-link:hover, .main-header .social-links .social-link.active {
  color: 










#781f2b




;
}
.main-header .social-links .social-link .svg-icon {
  width: 18px;
  height: 18px;
}
.main-header .social-links .social-link .svg-icon.icon-facebook {
  margin: 0 1px;
}
.main-header .social-links .social-link .svg-icon.icon-tumblr {
  margin: 0 -1px;
}

.section__header--video {
  max-width: 1430px;
  padding: 0 30px;
  margin: 50px auto;
  text-align: center;
}
.pxs-video-content-width .section__header--video {
  padding: 0;
}

.section__heading--video {
  margin-bottom: 20px;
  font-size: 2.5rem;
}
@media (max-width: 719px) {
  .section__heading--video {
    font-size: 1.875rem;
  }
}

.section__subheading--video {
  font-size: 1.25rem;
}
@media (max-width: 719px) {
  .section__subheading--video {
    font-size: 1.125rem;
  }
}

.pxs-video-content-width {
  max-width: 1430px;
  padding: 0 30px 50px;
  margin-right: auto;
  margin-left: auto;
}
.pxs-video-content-width .video-section__wrapper:first-child {
  margin-top: 50px;
}

.video-section__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-section__wrapper.video-section__wrapper--aspect-ratio-16-9 {
  padding-bottom: 56.25%;
}
.video-section__wrapper.video-section__wrapper--aspect-ratio-21-9 {
  padding-bottom: 42.8571428571%;
}

.video-section__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
}

.video-section__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
[data-video-transitioning=true] .video-section__overlay, [data-video-playing=true] .video-section__overlay {
  pointer-events: none;
  visibility: none;
  opacity: 0;
}

.video-section__overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  margin: auto;
  text-align: center;
  background-color: var(--overlay-color);
}
.video-section__overlay-header.video-section__overlay-header--text-position-below-button .video-section__overlay-heading, .video-section__overlay-header.video-section__overlay-header--text-position-below-button .video-section__overlay-subheading {
  order: 2;
}
[data-video-transitioning=true] .video-section__wrapper--show-text-while-playing-false .video-section__overlay-header, [data-video-playing=true] .video-section__wrapper--show-text-while-playing-false .video-section__overlay-header {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
[data-video-playing=true] .video-section__wrapper--show-text-while-playing-false .video-section__overlay-header {
  z-index: 0;
}

.video-section__overlay-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-section__overlay-image-wrapper {
  height: 100%;
}
[data-video-transitioning=true] .video-section__overlay-image-wrapper, [data-video-playing=true] .video-section__overlay-image-wrapper {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
[data-video-playing=true] .video-section__overlay-image-wrapper {
  z-index: 0;
}

.video-section__play-button {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: 0;
  border-radius: 25px;
  outline: none;
}
[data-video-transitioning=true] .video-section__play-button, [data-video-playing=true] .video-section__play-button {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
[data-video-playing=true] .video-section__play-button {
  display: none;
}
.video-section__play-button .video-section__play-icon svg path {
  fill: currentColor;
}

.video-section__play-button--primary {
  color: #000000;
  background-color: #8a2432;
}
.video-section__play-button--primary:hover {
  background-color: 










#781f2b




;
}

.video-section__play-button-text {
  display: none;
}

.video-section__play-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: auto;
  margin-left: 2px;
  color: inherit;
  opacity: 1;
  transform: translate(-50%, -50%);
}
[data-video-loading=true] .video-section__play-icon {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.video-section__overlay-heading {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 20px 0;
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--overlay-text-color);
}
@media (max-width: 719px) {
  .video-section__overlay-heading {
    font-size: 1.875rem;
  }
}.video-section__overlay-heading {
    text-transform: uppercase;
  }.video-section__overlay-subheading {
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: var(--overlay-text-color);
}
@media (max-width: 719px) {
  .video-section__overlay-subheading {
    display: none;
    font-size: 1.125rem;
  }
}

.video-section__overlay-subheading p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
.video-section__overlay-subheading p:first-child {
  margin-top: 0;
}
.video-section__overlay-subheading p:last-child {
  margin-bottom: 0;
}

.video-section__loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  opacity: 0;
  transform: translate(-50%, -50%);
}
[data-video-loading=true] .video-section__loading-icon {
  opacity: 1;
  transition: opacity 200ms ease-in-out;
}

.live-search-visible .main-header--minimal:not(.main-header--centered) nav {
  pointer-events: none;
  opacity: 0;
}
.live-search-visible .main-header--minimal .social-links {
  pointer-events: none;
  opacity: 0;
}
.live-search-visible .main-header--minimal .tool-container > :not(.live-search) {
  pointer-events: none;
  opacity: 0;
}

.main-header nav {
  border-top: 1px solid #ebe5d8;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header nav.bordered {
  border-bottom: 1px solid #ebe5d8;
}
.main-header nav .dropdown > details[open] + .dropdown-wrap {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.main-header--nav-links summary {
  list-style: none;
  cursor: pointer;
}
.main-header--nav-links summary::-webkit-details-marker {
  display: none;
}
.main-header--nav-links .has-mega-nav > details[open] + .mega-nav {
  top: auto;
  display: block;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.main-header--minimal nav.compact {
  display: none;
}
@media screen and (max-width: 1200px) {
  .main-header--minimal nav.compact {
    display: block;
  }
}

.main-header--centered:not(.main-header--minimal) nav.full > ul {
  text-align: center;
}

.main-header--normal:not(.main-header--centered) .main-header--nav-links,
.main-header--expanded:not(.main-header--centered) .main-header--nav-links {
  margin-left: -23px;
}
.main-header--normal:not(.main-header--centered) .main-header--nav-links > li.first.dropdown,
.main-header--expanded:not(.main-header--centered) .main-header--nav-links > li.first.dropdown {
  margin-left: 23px;
}

.main-header nav.full {
  position: relative;
  z-index: 1000;
}
.main-header--minimal .main-header nav.full {
  position: static;
}
.main-header nav.full.multi-line {
  text-align: center;
}
.main-header nav.full.multi-line::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  height: 1px;
  background-color: #eeeeee;
  content: "";
}
.main-header nav.full.compress .nav-item > .label,
.main-header nav.full.compress .nav-item > details .label {
  padding: 25px 15px;
}
.main-header--minimal .main-header nav.full.compress .nav-item > .label,
.main-header--minimal .main-header nav.full.compress .nav-item > details .label {
  padding: 15px;
}
.main-header nav.full.compress .nav-item.dropdown > a .icon, .main-header nav.full.compress .nav-item.has-mega-nav > a .icon {
  right: 12px;
  line-height: 14px;
}
.main-header nav.full .nav-item {
  position: relative;
  display: inline-block;
  text-align: left;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color, 0.15s cubic-bezier(0.4, 0, 0.2, 1) background-color, 0.15s cubic-bezier(0.4, 0, 0.2, 1) border;
}
.main-header nav.full .nav-item .icon-wrapper {
  display: flex;
  align-items: center;
}
.main-header nav.full .nav-item svg {
  margin-left: 6px;
}
.main-header nav.full .nav-item > .label,
.main-header nav.full .nav-item > details .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 13px;
  font-size: 12px;
  color: #8a2432;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header nav.full .nav-item > .label:hover,
.main-header nav.full .nav-item > details .label:hover {
  color: 










#53161e




;
}
.main-header nav.full .nav-item > .label::before, .main-header nav.full .nav-item > .label::after,
.main-header nav.full .nav-item > details .label::before,
.main-header nav.full .nav-item > details .label::after {
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color, 0.15s cubic-bezier(0.4, 0, 0.2, 1) background-color, 0.15s cubic-bezier(0.4, 0, 0.2, 1) border, 0.15s cubic-bezier(0.4, 0, 0.2, 1) opacity;
}
.main-header nav.full .nav-item > .label::after,
.main-header nav.full .nav-item > details .label::after {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background-color: #ebe5d8;
  content: "";
  opacity: 0;
}
.main-header nav.full .nav-item.last a::before {
  display: none;
}
.main-header nav.full .nav-item.dropdown {
  position: relative;
}
.main-header nav.full .nav-item.dropdown.has-mega-nav {
  position: static;
}
.main-header nav.full .nav-item.dropdown > .label::after,
.main-header nav.full .nav-item.dropdown > details .label::after {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background-color: #ebe5d8;
  content: "";
}
.main-header nav.full .nav-item .dropdown:hover .dropdown-wrap {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.main-header nav.full .nav-item.dropdown:hover, .main-header nav.full .nav-item.has-mega-nav.active,
.main-header nav.full .nav-item > details[open] {
  background-color: #ebe5d8;
}
.main-header nav.full .nav-item.dropdown:hover > .label,
.main-header nav.full .nav-item.dropdown:hover > details .label, .main-header nav.full .nav-item.has-mega-nav.active > .label,
.main-header nav.full .nav-item.has-mega-nav.active > details .label,
.main-header nav.full .nav-item > details[open] > .label,
.main-header nav.full .nav-item > details[open] > details .label {
  color: #8a2432;
}
.main-header nav.full .nav-item.dropdown:hover > .label::before,
.main-header nav.full .nav-item.dropdown:hover > details .label::before, .main-header nav.full .nav-item.has-mega-nav.active > .label::before,
.main-header nav.full .nav-item.has-mega-nav.active > details .label::before,
.main-header nav.full .nav-item > details[open] > .label::before,
.main-header nav.full .nav-item > details[open] > details .label::before {
  background-color: #ebe5d8;
}
.main-header nav.full .nav-item.dropdown:hover > .label::after,
.main-header nav.full .nav-item.dropdown:hover > details .label::after, .main-header nav.full .nav-item.has-mega-nav.active > .label::after,
.main-header nav.full .nav-item.has-mega-nav.active > details .label::after,
.main-header nav.full .nav-item > details[open] > .label::after,
.main-header nav.full .nav-item > details[open] > details .label::after {
  opacity: 1;
}
.main-header--minimal .main-header nav.full .nav-item.dropdown:hover > .label::after,
.main-header--minimal .main-header nav.full .nav-item.dropdown:hover > details .label::after, .main-header--minimal .main-header nav.full .nav-item.has-mega-nav.active > .label::after,
.main-header--minimal .main-header nav.full .nav-item.has-mega-nav.active > details .label::after,
.main-header--minimal .main-header nav.full .nav-item > details[open] > .label::after,
.main-header--minimal .main-header nav.full .nav-item > details[open] > details .label::after {
  display: none;
}
.main-header nav.full .nav-item.dropdown:hover > .dropdown-wrap,
.main-header nav.full .nav-item.dropdown:hover > .mega-nav, .main-header nav.full .nav-item.has-mega-nav.active > .dropdown-wrap,
.main-header nav.full .nav-item.has-mega-nav.active > .mega-nav,
.main-header nav.full .nav-item > details[open] > .dropdown-wrap,
.main-header nav.full .nav-item > details[open] > .mega-nav {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.main-header nav.full .nav-item .icon {
  position: absolute;
  top: 12px;
  right: 22px;
}
.main-header nav.full .nav-item .dropdown-wrap {
  position: absolute;
  top: 100%;
  left: -1px;
  z-index: 1000;
  width: 218px;
  padding-top: 15px;
  padding-bottom: 18px;
  pointer-events: none;
  visibility: hidden;
  background-color: #ebe5d8;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) opacity;
}
.main-header--minimal .main-header nav.full .nav-item .dropdown-wrap {
  left: 0;
}
.main-header nav.full .nav-item .dropdown-wrap.child {
  top: -15px;
  right: -218px;
  left: auto;
}
.main-header nav.full .nav-item .dropdown-wrap.dropdown-right {
  right: 0;
  left: auto;
}
.main-header nav.full .nav-item .dropdown-wrap.dropdown-right.child {
  right: 218px;
}
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item {
  position: relative;
}
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item:hover > a .label,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item:hover > a .icon,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item:hover > details .label,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item:hover > details .icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item a,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item details {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: block;
  padding: 4px 42px 7px 25px;
  font-size: 15px;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item a:hover,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item details:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item a .label,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item a .icon,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item details .label,
.main-header nav.full .nav-item .dropdown-wrap .dropdown-item details .icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  color: #8a2432;
  background-color: #ebe5d8;
}

.mega-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: -1px;
  z-index: 1000;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  background-color: #ebe5d8;
  box-shadow: 0 1px 0 0 rgba(235, 229, 216, 0.2);
  opacity: 0;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) opacity;
}
.mega-nav.visible {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.main-header--minimal .mega-nav {
  top: auto;
  left: 0;
  margin-top: 0;
}
.mega-nav .mega-nav-wrap {
  position: relative;
  left: -5px;
  padding: 0;
}
.mega-nav .mega-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mega-nav .back {
  transform: scale(1.05);
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  position: absolute;
  top: 47px;
  left: 50%;
  z-index: 5000;
  display: none;
  width: 0;
  height: 0;
  margin-left: -2px;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #8a2432;
  border-left: 5px solid transparent;
}
.mega-nav .back:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.mega-nav .list {
  display: inline-block;
  align-content: stretch;
  flex-grow: 1;
  flex-shrink: 0;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 25px;
  margin-bottom: 30px;
  vertical-align: top;
  background-color: #ebe5d8;
}
.mega-nav .list.one-col {
  width: 100%;
}
.mega-nav .list.one-col .list-item {
  width: 150px;
}
.mega-nav .list.two-col {
  flex-basis: 45%;
}
.mega-nav .list.three-col {
  flex-basis: 28%;
}
.mega-nav .list.two-columns {
  flex-basis: 100%;
}
.mega-nav .list .label {
  width: 100%;
  padding: 10px 0 10px;
  margin: 0 0 16px;
  font-size: 14px;
  color: #8a2432;
  border-bottom: 1px solid rgba(138, 36, 50, 0.15);
}
.mega-nav .list .label a {
  display: block;
  color: #8a2432;
}
.mega-nav .list .list-item {
  display: inline-block;
  width: 50%;
  padding-right: 10px;
  margin: 0 -4px 9px 0;
  vertical-align: top;
}
.mega-nav .list .list-item.one-column {
  display: block;
  width: 100%;
}
.mega-nav .list .list-item a {
  display: block;
  font-size: 13px;
  color: #8a2432;
  background-color: #ebe5d8;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.mega-nav .list .list-item a:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.mega-nav .list .list-item a.show-more {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.mega-nav .list .list-item .more-icon {
  position: relative;
  top: -1px;
  margin-left: 6px;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 100;
}
.mega-nav .expanded-list,
.mega-nav .category-list {
  position: relative;
  display: none;
}
.mega-nav .expanded-list .list,
.mega-nav .category-list .list {
  display: none;
  width: 100%;
  margin-left: 0;
}
.mega-nav .expanded-list .list.active,
.mega-nav .category-list .list.active {
  display: block;
}
.mega-nav .expanded-list .list-item,
.mega-nav .category-list .list-item {
  width: 150px;
}

.mobile-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100vw;
  height: 100vh;
  height: var(--mobile-nav-height);
  overflow-y: scroll;
  pointer-events: none;
  background-color: rgba(235, 229, 216, 0);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1) background-color, 0s 0.35s cubic-bezier(0.4, 0, 0.2, 1) transform, 0s 0.35s cubic-bezier(0.4, 0, 0.2, 1) opacity;
}
.mobile-dropdown .mobile-dropdown--wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 350px;
  background-color: #ebe5d8;
  transform: translateX(-100%);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1) transform;
}
.mobile-dropdown.active .mobile-dropdown--wrapper {
  transform: translateX(0);
}
.mobile-dropdown.active .mobile-dropdown--wrapper .list.primary {
  -webkit-overflow-scrolling: touch;
}
.mobile-dropdown.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transform: translateX(0);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1) background-color, 0s cubic-bezier(0.4, 0, 0.2, 1) opacity;
}
.mobile-dropdown .mobile-dropdown--content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
}
.mobile-dropdown .mobile-dropdown--tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 14px 18px;
  margin: 0 auto;
}
.mobile-dropdown .mobile-dropdown--close {
  position: relative;
  cursor: pointer;
}
.mobile-dropdown .mobile-dropdown--close .icon-close {
  width: 14px;
  height: 14px;
  color: #8a2432;
}
.mobile-dropdown .list.primary {
  width: 100%;
  overflow-y: auto;
  background-color: #ebe5d8;
}
.mobile-dropdown .list.secondary, .mobile-dropdown .list.tertiary {
  display: none;
  overflow: hidden;
}
.mobile-dropdown .list.secondary {
  background-color: 






#e2dac7




;
}
.mobile-dropdown .list.secondary .list-item a {
  background-color: 






#e2dac7




;
}
.mobile-dropdown .list.tertiary {
  background-color: 






#ddd3bd




;
}
.mobile-dropdown .list.tertiary .list-item a {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 24px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  background-color: 






#ddd3bd




;
}
.mobile-dropdown .list.tertiary .list-item:first-child a {
  padding-top: 20px;
}
.mobile-dropdown .list.tertiary .list-item:last-child a {
  padding-bottom: 20px;
}
.mobile-dropdown .list.quaternary {
  display: none;
  background-color: 






#ddd3bd




;
}
.mobile-dropdown .list.quaternary .list-item a {
  background-color: 






#ddd3bd




;
}
.mobile-dropdown .list .list-item {
  width: 100%;
}
.mobile-dropdown .list .list-item a {
  position: relative;
  display: block;
  padding: 16px 18px;
  margin: 0 auto;
  font-size: 13px;
  color: #8a2432;
}
.mobile-dropdown .list .list-item .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  text-align: center;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) background-color;
  -webkit-tap-highlight-color: rgba(138, 36, 50, 0.2);
}
.mobile-dropdown .list .list-item .icon svg {
  max-width: 100%;
  max-height: 100%;
}
.mobile-dropdown .list .list-item .icon:active {
  background-color: rgba(138, 36, 50, 0.1);
}
.mobile-dropdown .list .list-item.expanded > a .plus,
.mobile-dropdown .list .list-item.expanded > a .minus {
  transform: translate(-50%, -50%) rotate(0deg);
}
.mobile-dropdown .list .list-item.expanded > a .plus {
  opacity: 0;
}
.mobile-dropdown .list .list-item.expanded > a .minus {
  opacity: 1;
}
.mobile-dropdown .list .list-item .plus,
.mobile-dropdown .list .list-item .minus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1) opacity, 0.25s cubic-bezier(0.4, 0, 0.2, 1) transform;
  transform-origin: 50% 65%;
}
.mobile-dropdown .list .list-item .minus {
  opacity: 0;
}
.mobile-dropdown .social-links {
  justify-content: flex-start;
  padding: 20px 18px;
}
.mobile-dropdown .social-links::before {
  display: none;
}
@media (min-width: 960px) {
  .main-header--minimal .mobile-dropdown {
    display: none;
  }
}
@media (min-width: 1200px) {
  .main-header--normal .mobile-dropdown {
    display: none;
  }
}
.no-js .mobile-dropdown {
  display: none;
}

.rte, .pxs-newsletter-text {
  font-size: 15px;
}
.rte p, .pxs-newsletter-text p,
.rte blockquote,
.pxs-newsletter-text blockquote,
.rte h1,
.pxs-newsletter-text h1,
.rte h2,
.pxs-newsletter-text h2,
.rte ul,
.pxs-newsletter-text ul,
.rte ol,
.pxs-newsletter-text ol {
  margin: 0 0 20px;
}
.rte p, .pxs-newsletter-text p,
.rte blockquote,
.pxs-newsletter-text blockquote,
.rte li,
.pxs-newsletter-text li,
.rte a,
.pxs-newsletter-text a {
  font-size: 15px;
  line-height: 22px;
}
.rte > table:first-child, .pxs-newsletter-text > table:first-child {
  margin-top: 0;
}
.rte > p:first-child .image-wrap, .pxs-newsletter-text > p:first-child .image-wrap {
  margin-top: 6px;
}
.rte ul, .pxs-newsletter-text ul,
.rte ol,
.pxs-newsletter-text ol {
  padding-left: 20px;
}
.rte ul, .pxs-newsletter-text ul {
  list-style-type: disc;
}
.rte ol, .pxs-newsletter-text ol {
  list-style-type: decimal;
}
.rte li, .pxs-newsletter-text li {
  margin: 8px 0;
}
.rte blockquote, .pxs-newsletter-text blockquote {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding-left: 20px;
  margin-left: 0;
  color: #4d4d4d;
  border-left: 2px solid #fbfbfb;
}
.rte img, .pxs-newsletter-text img {
  max-width: 100%;
}
.rte iframe, .pxs-newsletter-text iframe,
.rte object,
.pxs-newsletter-text object,
.rte embed,
.pxs-newsletter-text embed {
  border: 0;
  outline: 0;
}
.rte a, .pxs-newsletter-text a {
  color: #8a2432;
}
.rte a:hover, .pxs-newsletter-text a:hover {
  color: 










#781f2b




;
}
.rte h1, .pxs-newsletter-text h1,
.rte h2,
.pxs-newsletter-text h2,
.rte h3,
.pxs-newsletter-text h3,
.rte h4,
.pxs-newsletter-text h4,
.rte h5,
.pxs-newsletter-text h5,
.rte h6,
.pxs-newsletter-text h6 {
  font-weight: 7000;
  color: #000000;
}
.rte h1, .pxs-newsletter-text h1 {
  margin: 40px 0 20px;
  font-size: 28px;
}
.rte h2, .pxs-newsletter-text h2 {
  margin: 40px 0 20px;
  font-size: 21px;
}
.rte h3, .pxs-newsletter-text h3 {
  margin: 40px 0 18px;
  font-size: 18px;
}
.rte h4, .pxs-newsletter-text h4 {
  margin: 40px 0 16px;
  font-size: 16px;
}
.rte h5, .pxs-newsletter-text h5 {
  margin: 40px 0 14px;
  font-size: 14px;
}
.rte h6, .pxs-newsletter-text h6 {
  margin: 40px 0 12px;
  font-size: 12px;
}
.rte hr, .pxs-newsletter-text hr {
  width: 100%;
  height: 1px;
  margin: 40px 0;
  background-color: #fbfbfb;
  border: 0;
  outline: 0;
}
@media (max-width: 719px) {
  .rte hr, .pxs-newsletter-text hr {
    margin: 20px 0;
  }
}
.rte .caption, .pxs-newsletter-text .caption {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 15px;
  color: #4d4d4d;
}
.rte .image-wrap, .pxs-newsletter-text .image-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.rte .image-wrap img, .pxs-newsletter-text .image-wrap img,
.rte .image-wrap svg,
.pxs-newsletter-text .image-wrap svg {
  position: relative;
  z-index: -2;
  display: block;
}
.rte table, .pxs-newsletter-text table {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  overflow-x: auto;
  white-space: nowrap;
  border: 1px solid #eeeeee;
}
.rte table td, .pxs-newsletter-text table td,
.rte table th,
.pxs-newsletter-text table th {
  padding: 18px 20px;
  border: 1px solid #fbfbfb;
}
.rte table thead td, .pxs-newsletter-text table thead td,
.rte table thead th,
.pxs-newsletter-text table thead th {
  background-color: #fbfbfb;
}
.rte .tabs, .pxs-newsletter-text .tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
  list-style: none;
}
@media (min-width: 960px) {
  .rte .tabs, .pxs-newsletter-text .tabs {
    border-bottom: 1px solid #eeeeee;
  }
}
body:not(.user-is-tabbing) .rte .tabs :focus, body:not(.user-is-tabbing) .pxs-newsletter-text .tabs :focus {
  outline: 0;
}
.rte .tabs > li:not(.grouped-content-content), .pxs-newsletter-text .tabs > li:not(.grouped-content-content) {
  display: block;
  width: auto;
  margin: 0;
  color: #000000;
  cursor: pointer;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) border, 0.15s cubic-bezier(0.4, 0, 0.2, 1) opacity;
}
.rte .tabs > li:not(.grouped-content-content).active, .pxs-newsletter-text .tabs > li:not(.grouped-content-content).active {
  opacity: 1;
}
@media (max-width: 959px) {
  .rte .tabs > li:not(.grouped-content-content), .pxs-newsletter-text .tabs > li:not(.grouped-content-content) {
    font-size: 13px;
    border-top: 1px solid #eeeeee;
  }
}
@media (min-width: 960px) {
  .rte .tabs > li:not(.grouped-content-content), .pxs-newsletter-text .tabs > li:not(.grouped-content-content) {
    display: inline-block;
    padding: 0 0 12px;
    margin: 10px 20px 0 0;
    font-size: 12px;
    border-bottom: 1px solid transparent;
    transform: translateY(1px);
  }
  .rte .tabs > li:not(.grouped-content-content).active, .pxs-newsletter-text .tabs > li:not(.grouped-content-content).active {
    border-bottom-color: #000000;
  }
}
.rte .tabs-content, .pxs-newsletter-text .tabs-content {
  display: none;
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .rte .tabs-content, .pxs-newsletter-text .tabs-content {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
    text-align: left;
    list-style: none;
  }
  .rte .tabs-content > li, .pxs-newsletter-text .tabs-content > li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 30px 0 20px;
    pointer-events: none;
    opacity: 0;
    transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) opacity;
  }
  .no-js .rte .tabs-content > li, .no-js .pxs-newsletter-text .tabs-content > li {
    position: relative;
    opacity: 1;
  }
  .rte .tabs-content > li.active, .pxs-newsletter-text .tabs-content > li.active {
    position: relative;
    pointer-events: all;
    opacity: 1;
    transition: 0.15s 0.15s cubic-bezier(0.4, 0, 0.2, 1) opacity;
  }
}
.no-js .rte .tabs-content, .no-js .pxs-newsletter-text .tabs-content {
  display: block;
}
.rte .grouped-content-layout-accordion .grouped-content-triggers, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-triggers {
  display: block;
  border-bottom: 0;
}
.rte .grouped-content-layout-accordion .grouped-content-trigger, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger {
  position: relative;
  display: block;
  padding: 14px 22px 14px 0;
  margin: 0;
  font-size: 13px;
  border-top: 1px solid #eeeeee;
}
.rte .grouped-content-layout-accordion .grouped-content-trigger:before, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger:before, .rte .grouped-content-layout-accordion .grouped-content-trigger:after, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1) opacity, 0.25s cubic-bezier(0.4, 0, 0.2, 1) transform;
}
.rte .grouped-content-layout-accordion .grouped-content-trigger:before, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger:before {
  content: url("data:image/svg+xml;utf8, <svg fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"10\" height=\"10\" viewBox=\"0 0 13 13\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.69225 5.69225V0H7.07107V5.69225H12.7633L12.7633 7.07107L7.07107 7.07107L7.07107 12.7633H5.69225L5.69225 7.07107L5.91697e-07 7.07107L0 5.69225H5.69225Z\" fill=\"%23liquid-object(\"settings.title-colour | color_to_hex | replace: '#', ''\")\"/></svg>");
}
.rte .grouped-content-layout-accordion .grouped-content-trigger:after, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger:after {
  content: url("data:image/svg+xml;utf8, <svg fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"10\" height=\"10\" viewBox=\"0 0 13 13\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7633 0L12.7633 1.37882H0V0H12.7633Z\" transform=\"translate(0 5.69238)\" fill=\"%23liquid-object(\"settings.title-colour | color_to_hex | replace: '#', ''\")\"/></svg>");
  opacity: 0;
}
.rte .grouped-content-layout-accordion .grouped-content-trigger.active:before, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger.active:before, .rte .grouped-content-layout-accordion .grouped-content-trigger.active:after, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger.active:after {
  transform: translateY(-50%) rotate(0deg);
}
.rte .grouped-content-layout-accordion .grouped-content-trigger.active:before, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger.active:before {
  opacity: 0;
}
.rte .grouped-content-layout-accordion .grouped-content-trigger.active:after, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-trigger.active:after {
  opacity: 1;
}
.rte .grouped-content-layout-accordion .grouped-content-content, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-content {
  display: block;
  height: 0;
  margin: 0;
  overflow: hidden;
  white-space: normal;
  opacity: 0;
}
.rte .grouped-content-layout-accordion .grouped-content-content p:first-child, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-content p:first-child {
  margin-top: 10px;
}
.rte .grouped-content-layout-accordion .grouped-content-content.active, .pxs-newsletter-text .grouped-content-layout-accordion .grouped-content-content.active {
  height: auto;
  margin-bottom: 12px;
  opacity: 1;
}
.rte.rte--faq, .rte--faq.pxs-newsletter-text {
  padding: 60px 0;
}
.rte.rte--faq :last-child, .rte--faq.pxs-newsletter-text :last-child {
  margin-bottom: 0;
}
@media (max-width: 719px) {
  .rte.rte--faq, .rte--faq.pxs-newsletter-text {
    padding: 10px 0 50px;
  }
}

.column-title {
  display: none;
}

table.mobile-layout {
  border-bottom: 0;
}
table.mobile-layout .column-title {
  font-family: ,;
  font-style: ;
  font-weight: 700;
  display: inline-block;
  width: 114px;
  padding-right: 23px;
  font-weight: 700;
}
table.mobile-layout thead {
  display: none;
}
table.mobile-layout tr td {
  display: block;
  width: 100%;
  text-align: left;
  border-top: 1px solid #eeeeee !important;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
table.mobile-layout tr td:first-child {
  border-top: 0 !important;
}
table.mobile-layout tr td:last-child {
  border-bottom: 1px solid #eeeeee !important;
}
table.mobile-layout tr:nth-child(even) td {
  background: #fbfbfb;
}

.featured-blog__articles {
  display: grid;
  grid-template-columns: repeat(var(--article-limit), 1fr);
  gap: 30px;
}
@media (max-width: 959px) {
  .featured-blog__articles.featured-blog__articles-limit-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 719px) {
  .featured-blog__articles.featured-blog__articles-limit-2, .featured-blog__articles.featured-blog__articles-limit-3, .featured-blog__articles.featured-blog__articles-limit-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 720px) {
  .featured-blog__articles {
    margin-bottom: -40px;
  }
}

.featured-blog__article {
  display: flex;
  flex-direction: column;
}
.featured-blog__articles-limit-1 .featured-blog__article {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.featured-blog__article-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: block;
  margin-bottom: 18px;
  font-size: 21px;
  color: #000000;
}.featured-blog__article-title {
    font-size: 21px !important;
    text-transform: uppercase;
  }.featured-blog__article-title:hover {
  color: #8a2432;
}

.featured-blog__article-date {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #4d4d4d;
}

.featured-blog__article-rte {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}
.featured-blog__article-rte img {
  width: 100%;
}

.featured-blog__article-image {
  display: block;
  margin-bottom: 1.25rem;
}

.featured-blog__article-excerpt {
  margin-bottom: 1.25rem;
}

.featured-blog__article-continue-reading {
  display: block;
}

.featured-collections {
  text-align: left;
}
.featured-collections.first .section-title, .featured-collections.first .faq__section-heading {
  padding-top: 75px;
  border-top: 0;
}
.featured-collections .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0;
}
@media (max-width: 719px) {
  .featured-collections .wrap {
    width: 100%;
    margin-left: 0;
  }
}
.featured-collections .wrap.wrap--1 {
  justify-content: center;
}
.featured-collections .wrap.wrap--2 .collection-wrap {
  width: calc(50% - 15px);
  margin: 0;
}
@media (max-width: 719px) {
  .featured-collections .wrap.wrap--2 .collection-wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
.featured-collections .wrap.wrap--1 .collection-wrap {
  width: 100%;
  margin: 0;
}

.featured-collection {
  text-align: center;
}
.featured-collection.first .section-title, .featured-collection.first .faq__section-heading {
  padding-top: 75px;
  border-top: 0;
}
.featured-collection .product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-left: 0;
}
.featured-collection .product-list.row-of-2 .product {
  width: calc(50% - 12px);
}
.featured-collection .product-list.row-of-3 .product {
  width: calc(33.3333333333% - 15px);
}
.featured-collection .product-list.row-of-4 .product {
  width: calc(25% - 20px);
}
@media (max-width: 1200px) {
  .featured-collection .product-list.row-of-4 .product {
    width: calc(50% - 12px);
  }
}
@media (max-width: 940px) {
  .featured-collection .product-list.row-of-2 .product,
  .featured-collection .product-list.row-of-2 .promo-block, .featured-collection .product-list.row-of-3 .product,
  .featured-collection .product-list.row-of-3 .promo-block, .featured-collection .product-list.row-of-4 .product,
  .featured-collection .product-list.row-of-4 .promo-block {
    width: calc(50% - 7.5px);
    min-width: calc(50% - 7.5px);
    text-align: left;
  }
}
@media (max-width: 719px) {
  .featured-collection .product-list.row-of-2 .product,
  .featured-collection .product-list.row-of-2 .promo-block, .featured-collection .product-list.row-of-3 .product,
  .featured-collection .product-list.row-of-3 .promo-block, .featured-collection .product-list.row-of-4 .product,
  .featured-collection .product-list.row-of-4 .promo-block {
    margin-bottom: 35px;
  }
}
.featured-collection .product-list .product {
  padding-left: 0;
  margin-bottom: 50px;
}
@media (min-width: 720px) {
  .featured-collection .product-list .product.product-card-alt {
    margin: 0 0 30px;
  }
}
@media (max-width: 719px) {
  .featured-collection .product-list .product {
    margin: 0 0 35px;
  }
}
@media (max-width: 719px) {
  .featured-collection {
    margin-bottom: -20px;
  }
}

.countdown-timer {
  --section-height-small: 200px;
  --section-height-medium: 350px;
  --section-height-large: 450px;
  --product-card-padding: 2rem;
  --countdown-item-padding: 1rem;
  --countdown-item-gap: 2rem;
  --countdown-items-message-gap: 1rem;
  --countdown-background-color: 255, 255, 255;
  --caption-gap: 1.75rem;
  --caption-max-width: 75%;
  --overlay-padding: 3.75rem;
  display: flex;
}

.countdown-timer--complete .countdown--hide-items .countdown__items {
  display: none;
}
.countdown-timer--complete .countdown--hide-items .countdown__message {
  margin-top: 0;
}
.countdown-timer--complete .countdown__message {
  display: block;
}

.countdown-timer__content {
  position: relative;
  flex: 1 1 75%;
}
.countdown-timer--small .countdown-timer__content {
  min-height: var(--section-height-small);
}
.countdown-timer--medium .countdown-timer__content {
  min-height: var(--section-height-medium);
}
.countdown-timer--large .countdown-timer__content {
  min-height: var(--section-height-large);
}
.countdown-timer--natural .countdown-timer__content {
  aspect-ratio: var(--image-aspect-ratio);
}

.countdown-timer__overlay {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  padding: var(--overlay-padding);
  background-color: var(--overlay-background-color);
}

.countdown-timer__caption {
  flex: 1;
  color: var(--text-color);
}
.countdown-timer--product-enabled .countdown-timer__caption {
  max-width: var(--caption-max-width);
}
.countdown-timer--product-disabled .countdown-timer__caption {
  display: flex;
  align-items: center;
  column-gap: var(--caption-gap);
}

.countdown-timer--product-disabled .countdown-timer__caption-header {
  flex: 1;
}
.countdown-timer--product-enabled .countdown-timer__caption-header .countdown-timer__caption-button {
  display: none;
}

.countdown-timer__caption-heading {
  margin: 0 0 0.5rem;
  color: inherit;
}

.countdown-timer__caption-text p:first-child {
  margin-top: 0;
}
.countdown-timer__caption-text p:last-child {
  margin-bottom: 0;
}

.countdown-timer__caption-button {
  display: inline-block;
  margin-top: 1.75rem;
}
.countdown-timer__caption-button:focus {
  outline: none;
}
.countdown-timer__caption-button:focus-visible {
  outline: solid;
}

.countdown-timer--product-disabled .countdown-timer__caption-footer {
  display: none;
}

.countdown-timer__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.countdown-timer__image-element {
  width: 100%;
  height: 100%;
}

.countdown-timer__product-card {
  display: flex;
  flex: 1 1 25%;
  flex-direction: column;
  justify-content: center;
  padding: var(--product-card-padding);
  background-color: var(--product-card-background-color);
}

.countdown {
  flex: 1;
}
.countdown-timer--product-enabled .countdown {
  margin-top: 1.25rem;
}

.countdown__items {
  display: grid;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  gap: var(--countdown-item-gap);
  padding: var(--countdown-item-padding);
  border: 1px solid var(--text-color-alpha);
}
.countdown--has-background .countdown__items {
  color: #000000;
  background-color: rgba(var(--countdown-background-color), 0.85);
  border: 1px solid transparent;
}

.countdown__item {
  position: relative;
  text-align: center;
}
.countdown__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--countdown-item-gap) / 2 * -1);
  width: 1px;
  height: 100%;
  background-color: var(--text-color-alpha);
}
.countdown--has-background .countdown__item:after {
  background-color: rgba(0, 0, 0, 0.1);
}
.countdown__item:last-child:after {
  display: none;
}
.countdown__item.countdown__item--datetime {
  /* Visually hide the countdown datetime */
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}

.countdown__item-heading {
  margin: 0 0 0.5rem;
  font-size: 1.625rem;
  line-height: 1;
  color: inherit;
}
.countdown__item-heading:empty {
  height: 1em;
}

.countdown__item-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown__message {
  display: none;
  margin-top: var(--countdown-items-message-gap);
}
.countdown__message p:last-child {
  margin-bottom: 0;
}
.countdown-timer--complete .countdown__message p {
  margin-top: 0;
}
.countdown-timer--product-disabled .countdown__message {
  text-align: center;
}

.countdown-timer {
  --overlay-padding: 2.5rem;
}
@media (max-width: 719px) {
  .countdown-timer {
    --countdown-item-gap: 1rem;
    --countdown-item-padding: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .countdown-timer {
    --countdown-item-padding: 0.5rem;
  }
}
.countdown-timer.content-area, .countdown-timer.collection-title-header, .countdown-timer.marquee.marquee--is-wide-false, .countdown-timer:not(.content-area):not(.collection-title-header):not(.marquee.marquee--is-wide-false) {
  padding-top: 0;
}
@media (max-width: 719px) {
  .countdown-timer.countdown-timer--product-enabled {
    flex-direction: column;
  }
}
@media (min-width: 960px) {
  .countdown-timer.countdown-timer--product-disabled {
    --caption-gap: 3.5rem;
  }
}

@media (max-width: 719px) {
  .countdown-timer__content {
    flex: 1 1 50%;
  }
}
@media (max-width: 719px) {
  .countdown-timer--natural .countdown-timer__content {
    aspect-ratio: auto;
  }
}

@media (max-width: 719px) {
  .countdown {
    margin-top: 1.75rem;
  }
}
@media (max-width: 719px) {
  .countdown-timer--product-enabled .countdown {
    margin-top: 1.75rem;
  }
}

@media (max-width: 719px) {
  .countdown-timer--product-enabled .countdown__items {
    width: 100%;
  }
}

.countdown__item-text {
  font-family: ,;
  font-style: ;
  font-weight: 0;
}
@media (max-width: 719px) {
  .countdown__item-text {
    font-size: 0.625rem;
  }
}

@media (max-width: 719px) {
  .countdown-timer__caption {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 719px) {
  .countdown-timer--product-enabled .countdown-timer__caption {
    max-width: 100%;
  }
}
@media (max-width: 719px) {
  .countdown-timer--product-disabled .countdown-timer__caption {
    align-items: normal;
  }
}

@media (max-width: 719px) {
  .countdown-timer__caption-header .countdown-timer__caption-button {
    display: none;
  }
}

@media (max-width: 719px) {
  .countdown-timer__overlay {
    padding: 1.75rem 1.25rem;
  }
}

.countdown-timer__image {
  overflow: hidden;
}

.countdown-timer__caption-heading {
  font-size: 2rem;
}
@media (max-width: 719px) {
  .countdown-timer__caption-heading {
    margin: 0 0 0.25rem;
  }
}

@media (max-width: 719px) {
  .countdown-timer__caption-footer .countdown-timer__caption-button, .countdown-timer--product-disabled .countdown-timer__caption-footer {
    display: inline-block;
  }
}

.countdown__message {
  font-size: 15px;
}
@media (max-width: 719px) {
  .countdown-timer--product-enabled .countdown__message {
    max-width: 100%;
  }
}

.countdown-timer__product-card .product {
  width: 100%;
  min-width: auto;
  margin: 0;
  padding: 0;
}
@media (max-width: 719px) {
  .countdown-timer__product-card .product {
    max-width: 300px;
    margin: 0 auto;
  }
}
.countdown-timer__product-card .product-card-overlay {
  display: none;
  background-color: var(--product-card-background-color);
}
.countdown-timer__product-card .product-card-overlay.product-card-overlay--has-quickshop {
  display: block;
}
@media (max-width: 719px) {
  .countdown-timer__product-card .product-item__price {
    justify-content: center;
  }
}

.faq.home-section {
  padding-top: 3.125rem;
}

.faq__page {
  width: 90%;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 719px) {
  .faq__page {
    width: 100%;
  }
}

.faq__container {
  max-width: 680px;
  margin: 0 auto;
}

.faq__block {
  padding: 2rem 0;
}
.faq .faq__block:first-child {
  padding-top: 0;
}
.faq__block:not(:first-of-type) {
  border-top: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .faq__block {
    padding: 1.75rem 0;
  }
}

.faq__heading,
.faq__content {
  width: 100%;
  margin: 0;
}

.faq__heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  height: auto;
  font-size: 21px;
  color: #000000;
  word-break: break-word;
  cursor: pointer;
}
.faq__heading.active .icon-minus {
  opacity: 1;
}
.faq__heading.active .icon-down-arrow {
  opacity: 0;
}
@media (max-width: 719px) {
  .faq__heading {
    font-size: 18px;
  }
}

.faq__icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0.5rem;
}
.faq__icon .icon-minus,
.faq__icon .icon-down-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 50%;
  fill: #000000;
  transform: translate(-50%, -50%);
}
.faq__icon .icon-minus {
  opacity: 0;
}

.faq__content {
  display: none;
  padding: 0;
  margin-top: 1.25rem;
  word-wrap: break-word;
}
.faq__content.active {
  display: block;
}

.logo-list-container {
  margin: 0 -20px;
}
@media (max-width: 719px) {
  .logo-list-container {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.logo-list {
  font-size: 0;
  text-align: center;
}

.logo-list-item {
  display: inline-block;
  padding: 10px 20px;
  vertical-align: middle;
}
.rows-of-3 .logo-list-item {
  width: 33.333%;
}
.rows-of-4 .logo-list-item {
  width: 25%;
}
.rows-of-5 .logo-list-item {
  width: 20%;
}
@media (max-width: 719px) {
  .rows-of-3 .logo-list-item, .rows-of-4 .logo-list-item, .rows-of-5 .logo-list-item {
    width: calc(50% - 7.5px);
  }
}
.logo-list-item .logo-list-item-wrap {
  max-width: 240px;
  margin: 0 auto;
}
.logo-list-item img,
.logo-list-item svg {
  max-width: 100%;
}
@media (max-width: 719px) {
  .logo-list-item {
    padding: 0;
    margin-bottom: 1rem;
  }
}

.featured-text-container {
  padding: 55px 15px 0;
  text-align: center;
}
@media (max-width: 719px) {
  .featured-text-container {
    padding: 30px 15px 0;
  }
}
.featured-text-container.feature-borders .featured-text {
  padding: 55px 0;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .featured-text-container.feature-borders .featured-text {
    padding: 30px 15px 0;
  }
}
.featured-text-container.feature-borders .featured-text:first-of-type {
  padding-top: 0;
  border: 0;
}
.featured-text-container.feature-borders .featured-text:last-of-type {
  padding-bottom: 0;
}

.featured-text + .featured-text {
  margin-top: 30px;
}

.feature-borders .featured-text + .featured-text {
  margin-top: 0;
}

.marquee {
  --marquee-text-size: 1rem;
  --marquee-padding: 1rem;
  --marquee-gap: 4rem;
  padding: var(--marquee-padding) 0;
  color: var(--marquee-text-color);
  background-color: var(--marquee-background-color);
}
.marquee.marquee--is-animated:hover .marquee__items {
  animation-play-state: var(--marquee-play-state);
}
.marquee.marquee--is-animated:focus-within .marquee__items {
  animation-play-state: paused;
}

.marquee__container {
  position: relative;
  display: flex;
  gap: var(--marquee-gap);
  width: 100%;
  overflow: hidden;
}

.marquee__items {
  display: flex;
  flex-shrink: 0;
  gap: var(--marquee-gap);
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
}
.marquee--is-animated .marquee__items {
  animation: var(--marquee-scroll-direction) scroll var(--marquee-scroll-speed) linear infinite;
  /* Minimize non-essential motion (based on device settings) */
}
@media (prefers-reduced-motion: reduce) {
  .marquee--is-animated .marquee__items {
    transform: none !important;
    animation: none !important;
  }
}

.marquee__item {
  font-size: var(--marquee-text-size);
  color: var(--marquee-text-color);
  white-space: nowrap;
}
.marquee__item p {
  margin: 0;
}
.marquee__item ul,
.marquee__item ol {
  list-style-position: inside;
}
.marquee__item ul {
  list-style-type: disc;
}
.marquee__item ol {
  list-style-type: decimal;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--marquee-gap)));
  }
}
.marquee.marquee--is-spaced-true {
  margin-top: 65px;
}
.marquee.marquee--is-wide-false {
  padding: 0 15px;
  background-color: transparent;
}
@media (max-width: 719px) {
  .marquee {
    --marquee-gap: 2rem;
  }
}
.marquee.marquee--text-size-1 {
  --marquee-text-size: 14px;
}
.marquee.marquee--text-size-2 {
  --marquee-text-size: 18px;
}
.marquee.marquee--text-size-3 {
  --marquee-text-size: 28px;
}
@media (max-width: 719px) {
  .marquee.marquee--text-size-3 {
    --marquee-text-size: 24px;
  }
}
.marquee.marquee--text-size-4 {
  --marquee-text-size: 40px;
}
@media (max-width: 719px) {
  .marquee.marquee--text-size-4 {
    --marquee-text-size: 28px;
  }
}
.marquee.marquee--text-size-5 {
  --marquee-text-size: 54px;
}
@media (max-width: 719px) {
  .marquee.marquee--text-size-5 {
    --marquee-text-size: 30px;
  }
}
.marquee.marquee--text-size-6 {
  --marquee-text-size: 60px;
}
@media (max-width: 719px) {
  .marquee.marquee--text-size-6 {
    --marquee-text-size: 32px;
  }
}

.marquee--is-wide-false .marquee__container {
  padding: 1rem 0;
  background-color: var(--marquee-background-color);
}

.slideshow {
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 719px) {
  .slideshow.content-area, .slideshow.collection-title-header, .slideshow.marquee.marquee--is-wide-false {
    padding: 0;
    box-sizing: content-box;
  }
}
@media (max-width: 719px) {
  .slideshow:after {
    position: absolute;
    bottom: 0;
    left: 15px;
    display: block;
    width: calc(100% - 30px);
    content: "";
    border-top: 1px solid #eeeeee;
  }
}

.slideshow-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.jump-to-slide {
  position: absolute;
  top: -44px;
  left: 50%;
  z-index: 4000;
  display: block;
  height: 32px;
  max-width: 150px;
  overflow: hidden;
  transform: translateX(-50%);
}
.no-js .jump-to-slide {
  display: none;
}
@media (max-width: 480px) {
  .jump-to-slide {
    top: -38px;
  }
}
.jump-to-slide li {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px;
  cursor: pointer;
  background-color: transparent;
  border: 1.5px solid #fff;
  border-radius: 8px;
  opacity: 0.5;
  transform: scale(1);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.jump-to-slide li:hover {
  opacity: 1;
  transform: scale(1.2);
}
.jump-to-slide li.active {
  background-color: #fff;
  opacity: 1;
}
@media (max-width: 480px) {
  .jump-to-slide li {
    margin: 0 6px;
  }
}

.prev,
.previous,
.next {
  position: absolute;
  top: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  color: #fff;
  cursor: pointer;
}
.no-js .prev,
.no-js .previous,
.no-js .next {
  display: none;
}
.prev svg,
.previous svg,
.next svg {
  width: 40%;
  height: 40%;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.prev:hover svg,
.previous:hover svg,
.next:hover svg {
  transform: scale(1.15);
}
@media (max-width: 719px) {
  .prev,
  .previous,
  .next {
    width: 45px;
  }
  .prev svg,
  .previous svg,
  .next svg {
    width: 18px;
    height: 22px;
  }
}

.prev {
  left: 0;
}
.prev svg {
  margin-left: -4px;
}

.next {
  right: 0;
}
.next svg {
  margin-right: -4px;
}

.slideshow--viewport {
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slideshow--viewport.slideshow--position-1 {
  transform: translateX(-100%);
}
.slideshow--viewport.slideshow--position-2 {
  transform: translateX(-200%);
}
.slideshow--viewport.slideshow--position-3 {
  transform: translateX(-300%);
}
.slideshow--viewport.slideshow--position-4 {
  transform: translateX(-400%);
}
.slideshow--viewport.slideshow--position-5 {
  transform: translateX(-500%);
}

.slide {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  position: relative;
  z-index: 1000;
  float: left;
  width: 100%;
  height: 100%;
  margin-right: -100%;
  overflow: hidden;
  text-align: center;
}
.slide.active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  z-index: 2000;
  display: block;
}
.slide:not(.active) {
  display: none;
}
.no-js .slide {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.no-js .slide:not(:first-of-type) {
  display: none;
}
.no-js .slide svg {
  position: relative;
  top: 0;
  transform: translate(-50%, 0);
}
@media (min-width: 720px) {
  .slide {
    aspect-ratio: var(--image-aspect-ratio);
  }
}

.slideshow--transition-slide .slide:nth-of-type(2) {
  opacity: 1;
  transform: translateX(100%);
}

.slideshow--transition-slide .slide:nth-of-type(3) {
  opacity: 1;
  transform: translateX(200%);
}

.slideshow--transition-slide .slide:nth-of-type(4) {
  opacity: 1;
  transform: translateX(300%);
}

.slideshow--transition-slide .slide:nth-of-type(5) {
  opacity: 1;
  transform: translateX(400%);
}

.slide .image-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  font-size: 0;
}

@media (min-width: 720px) {
  .slideshow--desktop-height-natural .image-wrap img,
  .slideshow--desktop-height-natural .image-wrap svg {
    max-width: 100%;
    min-height: auto;
  }
  @supports (-webkit-appearance: none) {
    .slideshow--desktop-height-natural .image-wrap img {
      width: 100%;
      height: auto;
    }
  }
}
.slideshow--desktop-height-small .image-wrap {
  height: 500px;
}

.slideshow--desktop-height-medium .image-wrap {
  height: 600px;
}

.slideshow--desktop-height-large .image-wrap {
  height: 700px;
}

.slideshow--desktop-height-extra-large .image-wrap {
  height: 800px;
}

@media (max-width: 719px) {
  .slideshow--mobile-height-natural .image-wrap {
    height: auto;
  }
  .slideshow--mobile-height-natural .image-wrap img,
  .slideshow--mobile-height-natural .image-wrap svg {
    max-width: 100%;
    min-height: auto;
  }
  @supports (-webkit-appearance: none) {
    .slideshow--mobile-height-natural .image-wrap img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  }
  .slideshow--mobile-height-small .image-wrap {
    height: 300px;
  }
  .slideshow--mobile-height-medium .image-wrap {
    height: 400px;
  }
  .slideshow--mobile-height-large .image-wrap {
    height: 500px;
  }
  .slideshow--mobile-height-natural .image-wrap {
    height: auto;
  }
}
.slide img,
.slide svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

@supports (-webkit-appearance: none) {
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.slide .image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 719px) {
  .slide .image-overlay {
    display: none;
  }
}

.slide .content-outer-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 92%;
  max-width: 1430px;
}
@media (max-width: 719px) {
  .slide .content-outer-wrap {
    position: relative;
    left: 0;
    width: 100%;
  }
}

.slide .mobile-link {
  display: none;
}
@media (max-width: 719px) {
  .slide .mobile-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
  }
}

.slide .content-inner-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50%;
  width: 100%;
  display: flex;
}
@media (max-width: 719px) {
  .slide .content-inner-wrap {
    position: static;
  }
}
.slide .content-inner-wrap.left {
  justify-content: flex-start;
}
.slide .content-inner-wrap.bottom {
  align-items: flex-end;
  bottom: 15%;
}
.slide .content-inner-wrap.top {
  align-items: flex-start;
  top: 12%;
}
.slide .content-inner-wrap.center {
  justify-content: center;
}
.slide .content-inner-wrap.center .content {
  text-align: center;
}
.slide .content-inner-wrap.center-center {
  justify-content: center;
  align-items: center;
}
.slide .content-inner-wrap.center-center .content {
  text-align: center;
}
.slide .content-inner-wrap.middle {
  align-items: center;
}
.slide .content-inner-wrap.right {
  justify-content: flex-end;
}
.slide .content-inner-wrap.right .content {
  text-align: right;
}
@media (max-width: 719px) {
  .slide .content-inner-wrap.right .content {
    text-align: center;
  }
}

.slide .content {
  width: 70%;
  max-width: 70%;
  padding: 0 15px;
  text-align: left;
}
@media (min-width: 720px) and (max-width: 960px) {
  .slide .content {
    width: 85%;
    max-width: 85%;
    padding: 0 25px;
  }
}
@media (max-width: 719px) {
  .slide .content {
    position: static;
    width: 100%;
    max-width: 550px;
    padding: 35px 30px 45px;
    margin: 0 auto;
    text-align: center;
  }
}
.slide .content .title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 54px;
  color: #fff;
  cursor: default;
}.slide .content .title {
    text-transform: uppercase;
    font-size: 49px !important;
  }@media (max-width: 959px) {
  .slide .content .title {
    font-size: 48px;
  }
}
@media (max-width: 719px) {
  .slide .content .title {
    overflow-x: hidden;
    font-size: 30px;
    color: #000000;
  }.slide .content .title {
      font-size: 28px !important;
    }}
.slide .content .tagline {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 4px;
  font-size: 20px;
  color: #fff;
  cursor: default;
}
@media (max-width: 959px) {
  .slide .content .tagline {
    font-size: 18px;
  }
}
@media (max-width: 719px) {
  .slide .content .tagline {
    margin-top: 10px;
    overflow-x: hidden;
    color: #000000;
  }
}
.slide .content .call-to-action {
  margin-top: 35px;
}
@media (max-width: 719px) {
  .slide .content .call-to-action {
    padding: 10px 18px;
    margin-top: 30px;
  }
}
.slide .content .title,
.slide .content .tagline,
.slide .content .call-to-action-wrap {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.45s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.45s;
  will-change: opacity, transform;
}
.no-js .slide .content .title,
.no-js .slide .content .tagline,
.no-js .slide .content .call-to-action-wrap {
  opacity: 1;
  transition: none;
}
.slide .content .tagline {
  transition-delay: 0.5s;
}
.slide .content .call-to-action-wrap {
  transition-delay: 0.55s;
}

.slideshow--loaded .slide.active .title,
.slideshow--loaded .slide.active .tagline,
.slideshow--loaded .slide.active .call-to-action-wrap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.predictive-search {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .predictive-search {
    position: absolute;
    width: 100%;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .predictive-search {
    position: absolute;
    width: 100%;
  }
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .predictive-search {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .predictive-search {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.predictive-search__title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 12px;
  color: #000000;
  border-bottom: 1px solid #eeeeee;
}

.predictive-search__header {
  width: 100%;
}

.predictive-search__header-column {
  padding: 1.25rem;
}

.predictive-search__no-results {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 18px;
  color: #000000;
  text-align: center;
}

.predictive-search__column {
  flex: 1;
  padding: 1.25rem;
  border-top: 1px solid #eeeeee;
}
.predictive-search__column:last-child {
  border-left: 1px solid #eeeeee;
}
.predictive-search__column:only-child {
  border: none;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .predictive-search__column {
    border: none;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .predictive-search__column {
    border: none;
  }
}

.predictive-search__main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .predictive-search__main {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .predictive-search__main {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.predictive-search__query-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 15px;
}

.predictive-search__query-suggestion-link {
  display: block;
  color: #000000;
}
.predictive-search__query-suggestion-link span {
  font-weight: bold;
}
.predictive-search__query-suggestion-link mark {
  font-style: normal;
  font-weight: normal;
  color: inherit;
  background: none;
}

.predictive-search__product-suggestions {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.25rem;
}

.predictive-search__product-suggestion-link {
  display: flex;
  gap: 1rem;
  color: inherit;
}

.predictive-search__product-suggestion-image {
  flex-shrink: 0;
  width: 50px;
  height: auto;
}
.predictive-search__product-suggestion-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.predictive-search__product-suggestion-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  font-size: 14px;
}

.predictive-search__product-suggestion-vendor {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 0.25rem;
  font-size: 12px;
  color: #4d4d4d;
}

.predictive-search__product-suggestion-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 0.25rem;
}

.predictive-search__product-suggestion-price {
  font-family: ,;
  font-style: ;
  font-weight: 0;
}
.predictive-search__product-suggestion-price .original {
  margin-right: 2px;
  text-decoration: line-through;
}

.predictive-search__article-and-page-suggestions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.predictive-search__page-suggestion-link,
.predictive-search__article-suggestion-link {
  display: block;
  font-size: 15px;
}

.predictive-search__page-date,
.predictive-search__article-date {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: block;
  font-size: 13px;
  color: #4d4d4d;
}

.predictive-search__footer {
  display: flex;
  width: 100%;
  padding: 1.25rem;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .predictive-search__footer {
    position: fixed;
    bottom: 0;
    padding: 10px;
    border-top: 0;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .predictive-search__footer {
    position: fixed;
    bottom: 0;
    padding: 10px;
    border-top: 0;
  }
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .live-search-results-placeholder .predictive-search__footer {
    display: none;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .live-search-results-placeholder .predictive-search__footer {
    display: none;
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .live-search-results-placeholder .predictive-search__footer {
    display: none;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .live-search-results-placeholder .predictive-search__footer {
    display: none;
  }
}

.predictive-search__footer-button {
  width: 100%;
}

.template-404 .content {
  padding-bottom: 60px;
}
.template-404 .message {
  width: 50%;
  margin: 40px auto;
  text-align: center;
}
@media (max-width: 719px) {
  .template-404 .message {
    width: 100%;
    margin-top: 0;
  }
}

.customer .empty {
  margin-top: 0;
}
.customer .message {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 20px 0 50px;
  font-size: 14px;
  color: #4d4d4d;
}
@media (max-width: 719px) {
  .customer .page-title {
    border-bottom: 1px solid #eeeeee;
  }
}
.customer .back-link {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: none;
  margin-bottom: 20px;
  font-size: 15px;
  color: #4d4d4d;
}
@media (max-width: 719px) {
  .customer .back-link {
    display: inline-block;
  }
}
.customer .header-link {
  float: right;
  margin-top: 20px;
  margin-left: -100%;
  font-size: 15px;
  color: #4d4d4d;
  text-decoration: underline;
}
@media (max-width: 719px) {
  .customer .header-link {
    display: inline-block;
    float: none;
    margin-top: 25px;
    margin-left: 0;
  }
}
.customer .account-form {
  width: 38%;
  padding: 25px 0 100px;
}
@media (max-width: 719px) {
  .customer .account-form {
    width: 100%;
    padding: 10px 0 55px;
    text-align: center;
  }
}
.customer .account-form .error-message {
  width: 100%;
  height: auto;
  margin: 0 0 25px;
  text-align: center;
}
@media (max-width: 719px) {
  .customer .account-form .error-message {
    margin-top: 25px;
  }
}
.customer .account-form .error-message span {
  display: inline-block;
  margin-top: 12px 0;
}
.customer .account-form .field-wrap {
  margin-top: 20px;
}
.customer .account-form .field-wrap.author {
  margin-top: 0;
}
@media (max-width: 719px) {
  .customer .account-form .field-wrap label {
    text-align: left;
  }
}
.customer .account-form .field-wrap .field {
  width: 100%;
}
.customer .account-form .field-wrap textarea {
  min-height: 210px;
}
.customer .account-form .submit-button {
  margin-top: 30px;
}
@media (max-width: 719px) {
  .customer .account-form .submit-button {
    width: 100%;
    margin-top: 35px;
  }
}
.customer .account-form .helper {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: inline-block;
  margin: 0 0 8px 15px;
  font-size: 15px;
  color: #4d4d4d;
  vertical-align: bottom;
}
@media (max-width: 719px) {
  .customer .account-form .helper {
    margin: 30px 0 0;
  }
}
.customer .table {
  width: 100%;
  margin-top: 28px;
}
.customer .table th {
  padding: 22px 2vw 16px;
  font-size: 12px;
}
.customer .table th.first {
  text-align: left;
  padding-left: 0;
}
.customer .table th.last {
  text-align: right;
  padding-right: 0;
}
.customer .table td {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: relative;
  padding: 28px 2vw;
  font-size: 14px;
  color: #000000;
  text-align: center;
  vertical-align: middle;
}
.customer .table td.first {
  padding-left: 0;
  text-align: left;
}
.customer .table td.last {
  padding-right: 0;
  text-align: right;
}
.customer .table td::before {
  display: none;
  width: 25%;
  margin-right: 20px;
  color: #4d4d4d;
  text-align: right;
}
.customer .orders-history th,
.customer .orders-history td {
  width: 23%;
}
.customer .orders-history th.first,
.customer .orders-history td.first {
  width: 31%;
}
.customer thead tr {
  border: 0;
}
.customer tr {
  border-top: 1px solid #eeeeee;
}
.customer tr.last {
  border-bottom: 1px solid #eeeeee;
}

.customer.account .content-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  min-height: 200px;
  margin: 50px 0 85px;
}
@media (max-width: 719px) {
  .customer.account .content-wrap {
    flex-direction: column;
  }
}
.customer.account .title {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}
@media (max-width: 719px) {
  .customer.account .title {
    text-align: center;
  }
}
.customer.account .account-info {
  padding-right: 30px;
  font-size: 14px;
}
@media (max-width: 719px) {
  .customer.account .account-info {
    width: 100%;
    padding-right: 0;
    margin-top: 50px;
    margin-bottom: 40px;
    text-align: center;
  }
}
.customer.account .account-info .name,
.customer.account .account-info .email,
.customer.account .account-info .address,
.customer.account .account-info .city,
.customer.account .account-info .country,
.customer.account .account-info .view-addresses {
  display: block;
}
.customer.account .account-info .name {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
}.customer.account .account-info .name {
    font-size: 15.75px !important;
    text-transform: uppercase;
  }.customer.account .account-info .email {
  margin-bottom: 25px;
}
.customer.account .account-info .email a {
  font-size: 15px;
  color: #8a2432;
}
.customer.account .account-info .address-wrap {
  margin-bottom: 25px;
}
.customer.account .account-info .address-wrap span + span {
  margin-top: 2px;
}
.customer.account .account-info .view-addresses {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 13px;
  color: #4d4d4d;
}
.customer.account .order-history,
.customer.account .orders-history {
  width: 72%;
}
@media (max-width: 719px) {
  .customer.account .order-history,
  .customer.account .orders-history {
    width: 100%;
  }
}
.customer.account .order-history-title {
  color: #000000;
}
@media (max-width: 719px) {
  .customer.account .order-history-title {
    text-align: center;
  }
}

.customer.addresses {
  padding-bottom: 80px;
}
@media (max-width: 719px) {
  .customer.addresses {
    padding-bottom: 50px;
  }
}
.customer.addresses .address-list {
  width: 75%;
  padding: 15px 0 0;
}
@media (max-width: 719px) {
  .customer.addresses .address-list {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
}
.customer.addresses .address-list .list li {
  padding: 35px 0;
  border-bottom: 1px solid #fbfbfb;
}
.customer.addresses .address-list .list li.last {
  padding-bottom: 40px;
}
.customer.addresses .address-list .name {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 0 0 25px;
  font-size: 14px;
  color: #000000;
}.customer.addresses .address-list .name {
    font-size: 12.25px !important;
    text-transform: uppercase;
  }.customer.addresses .address-list .name .default {
  font-style: ;
  font-weight: 0;
  margin-left: 2px;
  font-size: 15px;
  color: #4d4d4d;
}
.customer.addresses .address-list .address-1, .customer.addresses .address-list .address-2, .customer.addresses .address-list .address-3 {
  margin: 3px 0;
  font-size: 14px;
}
.customer.addresses .address-list .action {
  display: block;
  margin-top: 25px;
}
.customer.addresses .address-list .action a {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 15px;
  color: #4d4d4d;
}
.customer.addresses .address-list .action a:first-child {
  margin-right: 15px;
}
.customer.addresses .add-new {
  display: block;
  margin-top: 45px;
  font-size: 14px;
  color: #8a2432;
}
@media (max-width: 719px) {
  .customer.addresses .add-new {
    text-align: center;
  }
}
.customer.addresses .add-address {
  width: 75%;
  padding-top: 40px;
  margin-top: 45px;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .customer.addresses .add-address {
    width: 100%;
  }
}
.customer.addresses .add-address.new-user {
  display: block !important;
  padding-top: 0;
  border-top: 0;
}
@media (max-width: 719px) {
  .customer.addresses .edit-add-address {
    text-align: left;
  }
}
.customer.addresses .edit-add-address .wrap {
  width: 75%;
  margin-bottom: 22px;
}
@media (max-width: 719px) {
  .customer.addresses .edit-add-address .wrap {
    width: 100%;
  }
}
.customer.addresses .edit-add-address .wrap .field {
  display: block;
  width: 100%;
}
.customer.addresses .edit-add-address .wrap .styled-select {
  top: 5px;
  display: block;
  width: 330px;
  height: 32px;
}
@media (max-width: 719px) {
  .customer.addresses .edit-add-address .wrap .styled-select {
    width: 100%;
  }
}
.customer.addresses .edit-add-address .default-wrap {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  align-items: center;
  margin: 35px 0 45px;
  font-size: 15px;
  color: #4d4d4d;
}
.customer.addresses .edit-add-address .default-wrap input {
  margin-right: 5px;
}
.customer.addresses .edit-add-address .submit-wrap span {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-left: 15px;
  font-size: 15px;
  color: #4d4d4d;
}
.customer.addresses .edit-add-address .submit-wrap span a {
  color: #000000;
}
@media (max-width: 719px) {
  .customer.addresses .edit-add-address .submit-wrap .submit-wrap {
    text-align: center;
  }
  .customer.addresses .edit-add-address .submit-wrap .submit-wrap .action-button {
    width: 100%;
  }
  .customer.addresses .edit-add-address .submit-wrap .submit-wrap span {
    display: block;
    margin: 25px 0 15px;
  }
}
.customer.addresses .edit-add-address .submit-wrap .submit-wrap span {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-left: 15px;
  font-size: 15px;
  color: #4d4d4d;
}
.customer.addresses .edit-add-address .submit-wrap .submit-wrap span a {
  color: #000000;
}

.pxs-announcement-bar {
  display: block;
  padding: 16px 15px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .pxs-announcement-bar {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.pxs-announcement-bar-text-mobile + .pxs-announcement-bar-text-desktop {
  display: none;
}
@media (min-width: 768px) {
  .pxs-announcement-bar-text-mobile + .pxs-announcement-bar-text-desktop {
    display: block;
  }
}

@media (min-width: 768px) {
  .pxs-announcement-bar-text-mobile {
    display: none;
  }
}

@media (max-width: 959px) {
  html.header-layout-minimal.live-search-visible .pxs-announcement-bar {
    display: none;
  }
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal).live-search-visible .pxs-announcement-bar {
    display: none;
  }
}

.pxs-announcement-bar-text-desktop {
  display: inline-block;
  max-width: 1430px;
  margin: 0 auto;
}

#shopify-section-pxs-announcement-bar:focus-within {
  outline: auto 5px -webkit-focus-ring-color;
}

@media (max-width: 719px) {
  .template-article .page-title {
    padding: 30px 0 20px;
  }
  .template-article .page-title .label {
    font-size: 22px;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .template-article .page-title {
    padding: 30px 0 20px;
  }
  .blog-sidebar-active .template-article .page-title .label {
    font-size: 22px;
  }
}

.blog {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 719px) {
  .blog {
    flex-direction: column;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .blog {
    flex-direction: column;
  }
}

.blog-articles,
.blog-article {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  width: 20%;
  padding-left: 78px;
  margin-top: 45px;
}
@media (max-width: 719px) {
  .blog-sidebar {
    width: 100%;
    padding-top: 28px;
    padding-left: 0;
    margin-top: 0;
    text-align: center;
    border-top: 1px solid #eeeeee;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .blog-sidebar {
    width: 100%;
    padding-top: 28px;
    padding-left: 0;
    margin-top: 0;
    text-align: center;
    border-top: 1px solid #eeeeee;
  }
}
.blog-sidebar > div {
  padding-top: 28px;
  margin-top: 45px;
  border-top: 1px solid #eeeeee;
}
.blog-sidebar > div:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
@media (max-width: 719px) {
  .blog-sidebar > div {
    padding-right: 5%;
    padding-left: 5%;
    margin-top: 28px;
  }
}

.blog-sidebar-recentposts-title,
.blog-sidebar-tags-title {
  display: block;
  margin-bottom: 30px;
  font-size: 14px;
  color: #000000;
}

.blog-sidebar-recentposts-posts {
  display: flex;
  flex-direction: column;
}

.blog-sidebar-recentposts-post {
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}
.blog-sidebar-recentposts-post:last-child {
  margin-bottom: 0;
}

.blog-sidebar-recentposts-post-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 6px;
  font-size: 16px;
  color: #000000;
}
.blog-sidebar-recentposts-post-title a {
  color: inherit;
}

.blog-sidebar-recentposts-post-date {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 13px;
  color: #4d4d4d;
}

.blog-sidebar-tags-tag {
  margin-bottom: 6px;
}
.blog-sidebar-tags-tag a {
  font-size: 15px;
  color: inherit;
}
.blog-sidebar-tags-tag a:hover {
  color: #8a2432;
}
.blog-sidebar-tags-tag a span {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-left: 2px;
  font-size: 12px;
  color: #4d4d4d;
}

.article {
  display: flex;
  justify-content: space-between;
  padding-top: 45px;
  padding-bottom: 55px;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .article {
    flex-direction: column;
    padding-top: 30px;
  }
  .article:first-of-type {
    border-top: 1px solid #eeeeee;
  }
}
.home-section .article {
  border-bottom: none;
}
@media (max-width: 719px) {
  .home-section .article:first-of-type {
    border-top: none;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article {
    flex-direction: column;
    padding-top: 30px;
  }
}
.article:last-of-type {
  border-bottom: 0;
}
@media (min-width: 720px) {
  .article:last-of-type {
    padding-bottom: 0;
  }
}

.article-meta {
  display: flex;
  flex-direction: column;
  order: 0;
  width: 11%;
}
@media (max-width: 719px) {
  .article-meta {
    align-items: center;
    justify-content: center;
    order: 1;
    width: 100%;
    text-align: center;
  }
}
.blog-sidebar-active .article-meta {
  width: 13.75%;
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-meta {
    align-items: center;
    justify-content: center;
    order: 1;
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}
.article-meta > div {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 23px;
}
.article-meta > div::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  border-bottom: 1px solid #eeeeee;
  content: "";
}
@media (max-width: 719px) {
  .article-meta > div::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-meta > div::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 719px) {
  .article-meta > div:nth-child(2), .article-meta > div:nth-child(3) {
    padding-top: 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-meta > div:nth-child(2), .blog-sidebar-active .article-meta > div:nth-child(3) {
    padding-top: 30px;
    margin-top: 40px;
  }
}
.article-meta > div:nth-child(2)::before, .article-meta > div:nth-child(3)::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: none;
  width: 54px;
  border-bottom: 1px solid #eeeeee;
  content: "";
  transform: translateX(-50%);
}
@media (max-width: 719px) {
  .article-meta > div:nth-child(2)::before, .article-meta > div:nth-child(3)::before {
    display: block;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-meta > div:nth-child(2)::before, .blog-sidebar-active .article-meta > div:nth-child(3)::before {
    display: block;
  }
}
.article-meta > div:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
.article-meta > div:last-of-type::after {
  display: none;
}
.article-meta .sharethis-title {
  font-size: 14px;
}
.article-meta .sharethis-trigger svg {
  width: 14px;
  height: 17px;
  margin-right: 8px;
}

.article-author,
.article-share {
  display: flex;
  flex-direction: column;
}

.article-author + .article-tags {
  margin-top: 0;
}
.article-header .article-author {
  display: none;
}
@media (max-width: 719px) {
  .article-author {
    display: none;
  }
  .article-header .article-author {
    display: flex;
    align-items: center;
    margin-top: 21px;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-author {
    display: none;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-header .article-author {
    display: flex;
    align-items: center;
    margin-top: 21px;
  }
}

.article-author-avatar {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 30px;
}

.article-author-image {
  display: block;
  width: 60px;
  height: 60px;
}

.article-author-writtenby,
.article-tags-filedunder,
.article-comments-discussion {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  color: #4d4d4d;
}

.article-author-name,
.article-tags-tags,
.article-comments-count {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 14px;
}

.article-tags {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  color: #000000;
}
.article-tags a {
  color: inherit;
}

.article-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  order: 1;
  width: 80%;
  padding-left: 71px;
}
@media (max-width: 719px) {
  .article-content {
    justify-content: center;
    order: 0;
    width: 100%;
    padding-left: 0;
  }
}
.blog-sidebar-active .article-content {
  width: 75%;
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-content {
    justify-content: center;
    order: 0;
    width: 100%;
    padding-left: 0;
  }
}
.article-content > * {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 719px) {
  .article-content > * {
    max-width: none;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-content > * {
    max-width: none;
  }
}

.article-rte-continuereading {
  display: block;
}

.article-header {
  position: relative;
  margin-bottom: 33px;
}
@media (max-width: 719px) {
  .article-header {
    padding-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-header {
    padding-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
  }
}

.article-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 8px;
  font-size: 32px;
  color: #000000;
}
@media (max-width: 719px) {
  .article-title {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-title {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
  }
}
.article-title a {
  color: inherit;
}
.article-title a:hover {
  color: #8a2432;
}

.article-date {
  font-size: 12px;
  color: #4d4d4d;
}

.article-image {
  display: block;
  margin-bottom: 33px;
}
.article-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 950px) {
  .article-image img {
    width: 100%;
  }
}

.blog-articles .pagination {
  width: 76%;
  max-width: 760px;
  margin-top: 50px;
  margin-left: 24%;
}
@media (max-width: 719px) {
  .blog-articles .pagination {
    width: 100%;
    max-width: none;
    margin-top: 40px;
    margin-left: 0;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .blog-articles .pagination {
    width: 100%;
    max-width: none;
    margin: 40px auto;
  }
}

.comments-wrap {
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid #eeeeee;
}
.comments-wrap .title {
  margin-bottom: 30px;
  font-size: 14px;
  color: #000000;
}
.comments-wrap .title .count {
  color: #4d4d4d;
}

.comments .date {
  font-size: 12px;
  color: #4d4d4d;
}
.comments .comment {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #fbfbfb;
}
.comments .comment.last {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.comments .body {
  font-family: ,;
  font-style: ;
  font-weight: 0;
}
.comments .body p {
  margin: 20px 0;
  font-size: 15px;
  line-height: 23px;
}
.comments .author {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 14px;
  color: #4d4d4d;
}

.comment-form {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.comment-form .field-wrap {
  width: 50%;
}
.comment-form .field-wrap.body {
  width: 100%;
}
.comment-form .field-wrap.author {
  padding-right: 10px;
}
.comment-form .field-wrap.email {
  padding-left: 10px;
}
@media (max-width: 719px) {
  .comment-form .field-wrap.author {
    padding-right: 7.5px;
  }
  .comment-form .field-wrap.email {
    padding-left: 7.5px;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .comment-form .field-wrap.author {
    padding-right: 7.5px;
  }
  .blog-sidebar-active .comment-form .field-wrap.email {
    padding-left: 7.5px;
  }
}
@media (max-width: 480px) {
  .comment-form .field-wrap {
    width: 100%;
  }
  .comment-form .field-wrap.author, .comment-form .field-wrap.email, .blog-sidebar-active .comment-form .field-wrap.author, .blog-sidebar-active .comment-form .field-wrap.email {
    padding: 0;
  }
}
.comment-form .field-wrap > * {
  width: 100%;
}
.comment-form .field-wrap textarea {
  height: 180px;
}
.comment-form .alert-message {
  width: 100%;
}

.article-pagination--prev,
.article-pagination--next {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: absolute;
  top: calc(100% - 25px);
  width: 18px;
  height: 18px;
  font-size: 14px;
  transform: translateY(-50%);
}
@media (max-width: 719px) {
  .article-pagination--prev,
  .article-pagination--next {
    display: block;
    height: 16px;
    color: #4d4d4d;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-pagination--prev,
  .blog-sidebar-active .article-pagination--next {
    display: block;
    color: #4d4d4d;
  }
}
.article-pagination--prev .svg-icon,
.article-pagination--next .svg-icon {
  width: 100%;
  height: 100%;
}

.article-pagination--prev {
  left: 0;
}

.article-pagination--next {
  right:25px;
}

.article-meta .article-pagination,
.article-meta .article-pagination--prev,
.article-meta .article-pagination--next {
  position: static;
  display: inline-block;
  width: auto;
  transform: translateY(0);
}
@media (max-width: 719px) {
  .article-meta .article-pagination,
  .article-meta .article-pagination--prev,
  .article-meta .article-pagination--next {
    display: none;
  }
}
@media screen and (max-width: 950px) {
  .blog-sidebar-active .article-meta .article-pagination,
  .blog-sidebar-active .article-meta .article-pagination--prev,
  .blog-sidebar-active .article-meta .article-pagination--next {
    display: none;
  }
}
.article-meta .sep {
  padding-right: 2px;
  padding-left: 2px;
}

.comments-wrap .field-wrap,
.comments-wrap input[type=submit] {
  margin-top: 20px;
}
.comments-wrap textarea,
.comments-wrap input[type=text] {
  cursor: text;
}
.template-cart .breadcrumb-navigation {
  padding: 45px 0 5px;
}
.template-cart .breadcrumb-navigation,
.template-cart .page-title {
  text-align: center;
}
.template-cart .page-title {
  border-bottom: 0;
}
.template-cart .table {
  width: 100%;
}
@media (max-width: 719px) {
  .template-cart .table {
    margin-top: 0;
  }
}
.template-cart .table .error-message {
  padding: 0;
  margin-top: 8px;
  background-color: transparent;
  border: 0;
}
.template-cart .table .cart-item {
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.template-cart .table .faded {
  pointer-events: none;
  opacity: 0.1;
}
.template-cart .table th {
  padding: 22px 2vw 16px;
  font-size: 12px;
}
@media (max-width: 719px) {
  .template-cart .table th {
    display: none;
  }
}
.template-cart .table th.first {
  text-align: left;
  padding-left: 0;
}
.template-cart .table th.last {
  padding-right: 0;
}
.template-cart .table td {
  position: relative;
  padding: 25px 2vw;
  vertical-align: middle;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .template-cart .table td {
    border-top: 0;
  }
}
.template-cart .table td.first {
  padding-left: 0;
}
.template-cart .table td.last {
  padding-right: 0;
}
.template-cart .table td.product-image {
  width: 13.4%;
  grid-area: image;
}
@media (max-width: 719px) {
  .template-cart .table td.product-image {
    width: 100%;
    text-align: left;
  }
}
.template-cart .table td.product-image .image-wrap .image {
  position: relative;
  display: inline-block;
  width: 100%;
}
.template-cart .table td.product-image .image-wrap .image .outline {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.template-cart .table td.product-image .image-wrap .image img {
  width: 100%;
}
.template-cart .table td.product-item {
  width: 44.7%;
  font-size: 1rem;
  vertical-align: middle;
  grid-area: details;
}
@media (max-width: 719px) {
  .template-cart .table td.product-item {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 20px;
    padding-left: 20px;
    align-self: center;
  }
}
.template-cart .table td.product-item .label {
  display: block;
}
.template-cart .table td.product-item .label.vendor {
  margin-bottom: 3px;
  font-size: 11px;
  color: #4d4d4d;
  word-break: break-word;
}
.template-cart .table td.product-item .label.title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 6px;
  font-size: 21px;
  color: #000000;
}
.template-cart .table td.product-item .label.title a {
  color: #8a2432;
}
.template-cart .table td.product-item .label.title a:hover {
  color: 










#781f2b




;
}.template-cart .table td.product-item .label.title {
    text-transform: uppercase;
    font-size: 18.375px !important;
  }.template-cart .table td.product-item .label.cart-item__selling-plan {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 13px;
  color: #4d4d4d;
}
.template-cart .table td.price {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  width: 17%;
  font-size: 15px;
  grid-area: price;
}
@media (max-width: 719px) {
  .template-cart .table td.price {
    width: 100%;
    padding-top: 12px;
    padding-left: 0;
    text-align: left;
    border-top: 1px solid rgba(238, 238, 238, 0.65);
  }
}
@media (max-width: 480px) {
  .template-cart .table td.price {
    padding-bottom: 12px;
    padding-left: 0;
  }
}
.template-cart .table td.quantity {
  width: 14.7%;
  grid-area: quantity;
}
@media (max-width: 719px) {
  .template-cart .table td.quantity {
    width: 100%;
    padding-top: 12px;
    text-align: left;
    border-top: 1px solid rgba(238, 238, 238, 0.65);
    padding-left: 20px;
  }
}
.template-cart .table td.quantity .field {
  width: 54px;
  height: 36px;
  padding: 10px 2px 10px 10px;
}
.template-cart .table td.total {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  width: 14.7%;
  font-size: 15px;
  grid-area: total;
}
@media (max-width: 719px) {
  .template-cart .table td.total {
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(238, 238, 238, 0.65);
  }
}
.template-cart .table td::before {
  display: none;
  width: 25%;
  margin-right: 30px;
  font-size: 14px;
  color: #4d4d4d;
  text-align: right;
}
@media (max-width: 719px) {
  .template-cart .table td::before {
    display: inline-block;
    vertical-align: top;
  }
}
.template-cart .item-properties {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 15px;
  font-size: 13px;
  color: #4d4d4d;
}
.template-cart .item-property {
  margin-top: 5px;
}

.cart {
  display: flex;
  flex-direction: column;
}
.cart .cart-table {
  order: 0;
}
.cart .cart-tools {
  order: 1;
}
.cart .cart-shipping-calculator {
  order: 2;
}

.cart-tools {
  padding-top: 36px;
  border-top: 1px solid #eeeeee;
}
.cart-shipping-calculator ~ .cart-tools {
  padding-bottom: 40px;
  border-bottom: 1px solid #fbfbfb;
}
.no-js .cart-shipping-calculator ~ .cart-tools {
  padding-bottom: 0;
  border-bottom: none;
}
.cart-tools .instructions {
  float: left;
  width: 48.5%;
}
@media (max-width: 719px) {
  .cart-tools .instructions {
    display: block;
    width: 100%;
    margin-bottom: 35px;
  }
}
.cart-tools .instructions p {
  margin: 0 0 15px;
}
.cart-tools .instructions .field {
  width: 100%;
  min-height: 86px;
}
.cart-tools .totals {
  float: right;
  width: 48.5%;
  text-align: right;
}
@media (max-width: 719px) {
  .cart-tools .totals {
    width: 100%;
    text-align: left;
  }
}
.cart-tools .totals .price {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 0;
  font-size: 24px;
  color: #000000;
}
@media (max-width: 719px) {
  .cart-tools .totals .price {
    text-align: right;
  }
}
.cart-tools .totals .message {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 7px;
  font-size: 14px;
  color: #4d4d4d;
}
@media (max-width: 719px) {
  .cart-tools .totals .message {
    text-align: right;
  }
}
.cart-tools .totals .checkout {
  width: 100%;
  padding-top: 20px;
}
.no-js .cart-tools .totals .checkout {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 719px) {
  .no-js .cart-tools .totals .checkout {
    flex-direction: column;
  }
  .no-js .cart-tools .totals .checkout noscript {
    width: 100%;
  }
}
.cart-tools .totals .checkout .action-button {
  margin-bottom: 10px;
}
@media (max-width: 719px) {
  .cart-tools .totals .checkout .action-button {
    width: 100%;
  }
}
.no-js .cart-tools .totals .checkout .action-button {
  margin-left: 10px;
}
@media (max-width: 719px) {
  .no-js .cart-tools .totals .checkout .action-button {
    margin-left: 0;
  }
}

.cart-update {
  min-width: 150px;
}

@media (max-width: 719px) {
  .cart-item {
    display: grid;
    width: 100%;
    grid-template-areas: "image details details" "price quantity total";
    grid-template-columns: 33.3333333333% 33.3333333333% 33.3333333333%;
    border-top: 1px solid #eeeeee;
    padding-bottom: 30px;
  }
}

.cart-item-original-price,
.cart-item-final-price {
  display: block;
}

.cart-item__product-options {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 0;
  font-size: 13px;
  color: #4d4d4d;
}
.cart-item__product-options:empty {
  display: none;
}

.product-option {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.25rem;
  word-break: break-word;
}

.product-option__value {
  margin: 0;
}

.cart-item-label-mobile {
  display: none;
}
@media (max-width: 719px) {
  .cart-item-label-mobile {
    font-family: ,;
    font-style: ;
    font-weight: 0;
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #4d4d4d;
  }
}

.cart-item-column-price,
.cart-item-column-quantity,
.cart-item-column-total {
  text-align: right;
}

.cart-item-quantity {
  display: block;
  margin-left: auto;
}
@media (max-width: 719px) {
  .cart-item-quantity {
    margin-left: 0;
  }
}

.cart-item-remove {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: block;
  margin-top: 7px;
  font-size: 14px;
  text-decoration: underline;
}

.cart-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}
.cart-submit svg {
  margin: -10px 8px -10px 0;
}

.cart-item-discounts {
  font-size: 13px;
  color: #8a2432;
}
.cart-item-discounts li {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 0.5rem;
}
.cart-item-discounts .icon-sale-tag {
  width: 11px;
  height: 11px;
  margin-right: 0.15rem;
  margin-bottom: -1px;
}

.cart-discounts {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 20px;
  color: #8a2432;
}
.cart-discounts .icon-sale-tag {
  width: 12px;
  height: 12px;
  margin-right: 0.15rem;
  margin-bottom: -1px;
}

.cart-discount {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 719px) {
  .cart-discount {
    justify-content: space-between;
  }
}
.cart-discount:not(:first-child) {
  margin-top: 0.5rem;
}

.cart-discount-price {
  flex-shrink: 0;
  padding-left: 30px;
}

.cart-item-original-price + .cart-item-final-price {
  color: #8a2432;
}

[data-shopify-buttoncontainer] {
  justify-content: flex-end;
}
@media (max-width: 719px) {
  [data-shopify-buttoncontainer] {
    justify-content: center;
  }
}

.cart-item__unit-price {
  margin-top: 2px;
  font-size: 13px;
  color: #4d4d4d;
}

.template-collection {
  /* Add padding to the first shopify section above the collection banner */
}
.template-collection .page-title {
  position: relative;
  white-space: nowrap;
}
.template-collection .page-title .label {
  display: inline;
  white-space: normal;
}.template-collection .page-title .label {
    position: relative;
    top: 4px;
  }@media (max-width: 719px) {
  .template-collection .page-title .label {
    display: block;
  }
}
.template-collection .page-title .tags-wrap {
  display: inline-block;
  margin-top: 18px;
  vertical-align: top;
}
@media (max-width: 719px) {
  .template-collection .page-title .tags-wrap {
    margin-top: 30px;
  }
}
.template-collection .page-title .tags-wrap.preload {
  position: absolute;
  left: -99999px;
}
.template-collection .page-title .tags {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  margin-left: 28px;
  vertical-align: top;
}
@media (max-width: 719px) {
  .template-collection .page-title .tags {
    display: none !important;
  }
}
.template-collection .page-title .tags::before {
  position: absolute;
  top: -12px;
  bottom: -8px;
  left: 0;
  width: 1px;
  background: #fbfbfb;
  content: "";
}
.template-collection .page-title .tags .tag {
  display: none;
  margin: 0 12px;
  font-size: 14px;
}
.template-collection .page-title .tags .tag.show {
  display: inline-block;
}
.template-collection .page-title .tags .tag a {
  color: #000000;
}
.template-collection .page-title .tags .tag a:hover {
  color: #8a2432;
}
.template-collection .collection-header {
  float: left;
  width: 100%;
}
.template-collection .collection-header .description {
  max-width: 90%;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 719px) {
  .template-collection .collection-header .description {
    float: none;
    width: 100%;
    padding-right: 0;
    margin-top: 0;
    text-align: center;
  }
}
@media screen and (min-width: 400px) {
  .template-collection .collection-header .description {
    max-width: 80%;
  }
}
@media screen and (min-width: 800px) {
  .template-collection .collection-header .description {
    max-width: 60%;
  }
}
@media screen and (min-width: 1100px) {
  .template-collection .collection-header .description {
    max-width: 550px;
  }
}
.template-collection .collection-header .select-wrapper select, .template-collection .collection-header .age-gate__select-wrapper select {
  min-width: max-content;
}
@media (max-width: 719px) {
  .template-collection .collection-header .select-wrapper select, .template-collection .collection-header .age-gate__select-wrapper select {
    box-sizing: border-box;
  }
}
.template-collection .collection-header .pagination {
  float: right;
  text-align: right;
}
@media (max-width: 719px) {
  .template-collection .collection-header .pagination {
    display: none;
  }
}
.template-collection .product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0 0;
  margin-left: 0;
}
@media screen and (max-width: 940px) {
  .template-collection .product-list {
    min-width: 100%;
  }
}
.template-collection .product-list.row-of-2 .product, .template-collection .product-list.row-of-2 .promo-block {
  width: calc(50% - 12px);
}
.template-collection .product-list.row-of-3 .product, .template-collection .product-list.row-of-3 .promo-block {
  width: calc(33.3333333333% - 30px);
}
@media (max-width: 1200px) {
  .template-collection .product-list.row-of-3 .product, .template-collection .product-list.row-of-3 .promo-block {
    width: calc(33.3333333333% - 15px);
  }
}
.template-collection .product-list.row-of-4 .product, .template-collection .product-list.row-of-4 .promo-block {
  width: calc(25% - 20px);
}
@media (max-width: 1200px) {
  .template-collection .product-list.row-of-4 .product, .template-collection .product-list.row-of-4 .promo-block {
    width: calc(33.3333333333% - 15px);
  }
}
@media (max-width: 940px) {
  .template-collection .product-list.row-of-2 .product, .template-collection .product-list.row-of-3 .product, .template-collection .product-list.row-of-4 .product {
    width: calc(50% - 7.5px);
    min-width: calc(50% - 7.5px);
    text-align: left;
  }
  .template-collection .product-list.row-of-2 .promo-block, .template-collection .product-list.row-of-3 .promo-block, .template-collection .product-list.row-of-4 .promo-block {
    width: 100%;
    min-width: 100%;
    text-align: left;
  }
}
@media (max-width: 719px) {
  .template-collection .product-list.row-of-2 .product,
  .template-collection .product-list.row-of-2 .promo-block, .template-collection .product-list.row-of-3 .product,
  .template-collection .product-list.row-of-3 .promo-block, .template-collection .product-list.row-of-4 .product,
  .template-collection .product-list.row-of-4 .promo-block {
    margin-bottom: 35px;
  }
}
.template-collection .product-list .product {
  padding-left: 0;
  margin-bottom: 50px;
}
@media (min-width: 720px) {
  .template-collection .product-list .product.product-card-alt {
    margin: 0 0 30px;
  }
}
@media (max-width: 719px) {
  .template-collection .product-list .product {
    margin: 0 0 35px;
  }
}
.template-collection .collection-content__wrapper {
  width: 100%;
}
.template-collection .product-list-withsidebar {
  width: calc(80% - 30px);
  padding-top: 50px;
}
.template-collection .product-list-withsidebar .product-list {
  padding: 20px 0 0;
}
.template-collection .product-list-withsidebar .row-of-3 .product,
.template-collection .product-list-withsidebar .row-of-3 .promo-block {
  width: calc(33.3333333333% - 15px);
}
@media screen and (max-width: 1200px) {
  .template-collection .product-list-withsidebar .row-of-4 .product,
  .template-collection .product-list-withsidebar .row-of-4 .promo-block {
    width: calc(33.3333333333% - 15px);
  }
}
@media (max-width: 719px) {
  .template-collection .product-list-withsidebar .row-of-3 .product,
  .template-collection .product-list-withsidebar .row-of-4 .product {
    width: calc(50% - 7.5px);
  }
}
.template-collection .product-list-sidebar {
  order: -1;
  float: left;
  width: calc(20% - 30px);
  padding-top: 50px;
  font-size: 15px;
}
@media (min-width: 1200px) {
  .template-collection .product-list-sidebar {
    width: calc(20% - 30px);
  }
}
@media (max-width: 940px) {
  .template-collection .product-list-sidebar {
    padding-top: 0px;
  }
}
.template-collection .product-list-sidebar a .remove {
  padding-left: 10px;
  color: #4d4d4d;
}
.template-collection .product-list-sidebar a:hover .remove {
  color: inherit;
}
@media (max-width: 940px) {
  .template-collection .product-list-sidebar,
  .template-collection .product-list-withsidebar {
    width: 100%;
  }
}
.template-collection .shopify-section:not(.shopify-section--featured-collection,
.shopify-section--image-with-text,
.shopify-section--slideshow,
.shopify-section--video) + .shopify-section--static-collection {
  margin-top: 50px;
}

.sidebar-menu--desktop {
  display: block;
}
@media (max-width: 940px) {
  .sidebar-menu--desktop {
    display: none;
  }
}

.sidebar-menu--mobile {
  display: none;
  line-height: 25px;
}
@media (max-width: 940px) {
  .sidebar-menu--mobile {
    display: block;
    margin-top: 50px;
    text-align: center;
  }
}

.sort-by-box-okay {
  cursor: pointer;
}

.collection-heading-tools {
  position: relative;
  padding-top: 20px;
}
@media (min-width: 940px) {
  .collection-heading-tools .collection-sorter .select-wrapper, .collection-heading-tools .collection-sorter .age-gate__select-wrapper {
    margin-top: -20px;
    border: 0;
  }
  .collection-heading-tools .collection-sorter .select-wrapper::before, .collection-heading-tools .collection-sorter .age-gate__select-wrapper::before, .collection-heading-tools .collection-sorter .select-wrapper::after, .collection-heading-tools .collection-sorter .age-gate__select-wrapper::after {
    display: none;
  }
  .collection-heading-tools .collection-sorter select {
    padding: 0;
  }
  .collection-heading-tools .sidebar-title {
    margin-bottom: 5px;
    cursor: default;
  }
}
@media (max-width: 719px) {
  .collection-heading-tools {
    padding-top: 0;
  }
}

.collection-heading-details {
  margin-top: 30px;
  margin-bottom: 30px;
}

.collection-heading-details,
.collection-title {
  width: 100%;
  padding-top: 40px;
}
@media (max-width: 719px) {
  .collection-heading-details,
  .collection-title {
    padding-top: 35px;
  }
}
.collection-heading-details .description,
.collection-title .description {
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 800px) {
  .collection-heading-details .description,
  .collection-title .description {
    max-width: 60%;
  }
}
@media screen and (min-width: 1100px) {
  .collection-heading-details .description,
  .collection-title .description {
    max-width: 550px;
  }
}
.collection-heading-details .rte, .collection-heading-details .pxs-newsletter-text,
.collection-title .rte,
.collection-title .pxs-newsletter-text {
  padding-top: 20px;
  word-wrap: break-word;
  white-space: normal;
}
.collection-heading-details .rte :last-child, .collection-heading-details .pxs-newsletter-text :last-child,
.collection-title .rte :last-child,
.collection-title .pxs-newsletter-text :last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .collection-title-header {
    width: 95%;
  }
}
@media (max-width: 719px) {
  .collection-title-header {
    width: 100%;
    min-width: 290px;
  }
}
.collection-title-header.page-title .label {
  font-size: 11vw;
  line-height: 0.825em;
  color: #8a2432;
  word-break: break-word;
}
@media screen and (max-width: 400px) {
  .collection-title-header.page-title .label {
    font-size: 42px;
  }
}
@media screen and (min-width: 1400px) {
  .collection-title-header.page-title .label {
    font-size: 160px;
  }
}

.collection-title .label,
.template-collection .page-title.collection-title .label {
  display: block;
  margin-top: 16px;
  font-size: 35px;
  color: #000000;
}

.tools-wrap {
  display: inline-block;
}
.tools-wrap select::-ms-expand {
  display: none;
}
.tools-wrap svg {
  display: none;
}
@media (min-width: 940px) {
  .tools-wrap {
    margin-right: 1em;
  }
}

.collection-tools-left,
.collection-tools-right {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 940px) {
  .collection-tools-left,
  .collection-tools-right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .collection-tools-left .tools-wrap,
  .collection-tools-right .tools-wrap {
    width: auto;
  }
  .collection-tools-left .tools-wrap:not(:first-child),
  .collection-tools-right .tools-wrap:not(:first-child) {
    margin-left: 24px;
  }
  .collection-tools-left .tools-wrap:only-child,
  .collection-tools-right .tools-wrap:only-child {
    width: 100%;
  }
  .collection-tools-left .sidebar-title:last-of-type,
  .collection-tools-right .sidebar-title:last-of-type {
    margin-top: 20px;
  }
}

.collection-tools-left {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  justify-content: flex-start;
  font-size: 16px;
}

.collection-tools-right {
  justify-content: flex-end;
}

.product-list-sidebar {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  line-height: 25px;
}
.product-list-sidebar .select-wrapper select, .product-list-sidebar .age-gate__select-wrapper select {
  box-sizing: border-box;
}
.product-list-sidebar .collection-sorter .sidebar-title {
  cursor: text;
}
@media (min-width: 720px) and (max-width: 940px) {
  .product-list-sidebar .collection-sorter {
    margin-top: 20px;
  }
}
@media (max-width: 940px) {
  .product-list-sidebar {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-list-sidebar .collection-sorter {
    width: 100%;
  }
  .product-list-sidebar .collection-sorter:first-child:nth-last-child(1), .product-list-sidebar .collection-sorter:first-child:nth-last-child(2) {
    width: 100%;
  }
  .product-list-sidebar.filters-enabled .collection-sorter:first-child, .product-list-sidebar.filters-enabled .collection-sorter:last-child {
    width: 100%;
  }
}
@media (max-width: 940px) and (max-width: 480px) {
  .product-list-sidebar.filters-enabled .collection-sorter:first-child, .product-list-sidebar.filters-enabled .collection-sorter:last-child {
    width: 100%;
  }
  .product-list-sidebar.filters-enabled .collection-sorter:first-child .sidebar-title, .product-list-sidebar.filters-enabled .collection-sorter:last-child .sidebar-title {
    margin: 20px 0 10px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .product-list-sidebar {
    flex-direction: column;
  }
  .product-list-sidebar .collection-sorter {
    width: 100%;
  }
}
.product-list-sidebar .collection-sorter select::-ms-expand {
  display: none;
}
.product-list-sidebar .collection-sorter:first-of-type .sidebar-title {
  margin-top: 0;
}

.sidebar-title {
  display: block;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  color: #4d4d4d;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .sidebar-title:last-of-type, .collection-sorter + .collection-sorter .sidebar-title {
    margin-top: 20px;
  }
}
.collection-sorter + .collection-sorter .sidebar-title {
  margin-top: 20px;
}
.collection-sorter + .sidebar-menu--desktop .sidebar-title {
  margin-top: 30px;
}
@media (max-width: 940px) {
  .sidebar-title {
    margin-top: 0;
  }
  .sidebar-active + .content-area .sidebar-title, .sidebar-active + .marquee.marquee--is-wide-false .sidebar-title, .sidebar-active + .collection-title-header .sidebar-title {
    margin-bottom: 6px;
  }
  .collection-sorter + .collection-sorter .sidebar-title {
    margin-top: 0;
  }
}
.collection-heading-tools .sidebar-title {
  margin-top: 5px;
}
@media (max-width: 480px) {
  .collection-sorter + .collection-sorter .sidebar-title {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
}

.collection-sidebar-menu {
  font-family: ,;
  font-style: ;
  font-weight: 0;
}
.collection-sidebar-menu ul {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 4px;
  margin-bottom: 12px;
  margin-left: 8px;
  font-size: 14px;
  color: #333333;
}
.sidebar-menu--mobile .collection-sidebar-menu ul {
  margin-left: 0;
}
.collection-sidebar-menu li {
  margin-bottom: 3px;
}

.product-list-sidebar a,
.sidebar-menu--mobile a {
  color: inherit;
}

.home-section {
  position: relative;
  padding-top: 65px;
  margin-top: 65px;
}
@media (max-width: 719px) {
  .home-section {
    padding-top: 40px;
    margin-top: 40px;
  }
}
.slideshow-sibling-section .home-section {
  margin-top: 0;
}
.home-section > .section-title, .home-section > .faq__section-heading {
  padding-top: 0;
}
.home-section.has-heading, .home-section.home-section--has-heading {
  padding-top: 50px;
}
.home-section.has-border::before {
  position: absolute;
  top: 0;
  display: block;
  width: calc(100% - 30px);
  border-top: 1px solid #eeeeee;
  content: "";
}
.home-section.has-border > .section-title, .home-section.has-border > .faq__section-heading {
  padding-top: 0;
}
.home-section.multi-row {
  margin-bottom: -50px;
}
.home-section.picture-block, .home-section.slideshow:not(.content-area):not(.marquee.marquee--is-wide-false):not(.collection-title-header) {
  padding-top: 0;
}
.home-section.picture-block::before, .home-section.slideshow:not(.content-area):not(.marquee.marquee--is-wide-false):not(.collection-title-header)::before {
  display: none;
}
.home-section.slideshow.content-area, .home-section.slideshow.marquee.marquee--is-wide-false, .home-section.slideshow.collection-title-header {
  padding-top: 0;
}

.template-page .shopify-section:not(:first-of-type) .slide::before,
.template-product .shopify-section:not(:first-of-type) .slide::before,
.template-index .shopify-section:not(:first-of-type) .slide::before {
  display: none;
}
.template-page .shopify-section:first-of-type .home-section,
.template-product .shopify-section:first-of-type .home-section,
.template-index .shopify-section:first-of-type .home-section {
  margin-top: 0;
}
.template-page .shopify-section:first-of-type .home-section.has-border::before,
.template-product .shopify-section:first-of-type .home-section.has-border::before,
.template-index .shopify-section:first-of-type .home-section.has-border::before {
  display: none;
}
.template-page .shopify-section:first-of-type .home-section.slideshow,
.template-product .shopify-section:first-of-type .home-section.slideshow,
.template-index .shopify-section:first-of-type .home-section.slideshow {
  margin-top: 0;
}
.template-page .shopify-section:first-of-type .home-section.slideshow::before,
.template-product .shopify-section:first-of-type .home-section.slideshow::before,
.template-index .shopify-section:first-of-type .home-section.slideshow::before {
  display: none;
}
.template-page .shopify-section:first-of-type .home-video:first-of-type,
.template-product .shopify-section:first-of-type .home-video:first-of-type,
.template-index .shopify-section:first-of-type .home-video:first-of-type {
  padding-top: 0;
}

html:not(.header-layout-minimal) .shopify-section:first-of-type .home-section.slideshow[data-full-width=false] {
  padding-top: 65px;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .shopify-section:first-of-type .home-section.slideshow[data-full-width=false] {
    padding-top: 0;
  }
}

.customer.login #recover-password {
  display: none;
}
.customer.login .secondary-wrap {
  width: 100%;
  padding-top: 35px;
  margin-top: 35px;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .customer.login .secondary-wrap {
    text-align: center;
  }
  .customer.login .secondary-wrap .action-button {
    width: 100%;
  }
}
.customer.login .secondary-wrap p {
  margin: 0 0 20px;
  font-size: 14px;
}

.pxs-map {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 720px) {
  .pxs-map {
    flex-wrap: wrap;
  }
}

.pxs-map-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  padding: 0;
  background-size: cover;
}
@media (min-width: 720px) {
  .pxs-map-wrapper {
    height: 400px;
  }
  .pxs-map-section-layout-x-outside-left .pxs-map-wrapper, .pxs-map-section-layout-x-outside-right .pxs-map-wrapper {
    width: calc(50% - 10px);
  }
}
.pxs-map-wrapper.pxs-map-wrapper-height-medium {
  height: 392px;
}
@media (min-width: 720px) {
  .pxs-map-wrapper.pxs-map-wrapper-height-medium {
    height: 560px;
  }
}
.pxs-map-wrapper.pxs-map-wrapper-height-large {
  height: 504px;
}
@media (min-width: 720px) {
  .pxs-map-wrapper.pxs-map-wrapper-height-large {
    height: 720px;
  }
}
.pxs-map-wrapper .pxs-map-image {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.pxs-map-wrapper .pxs-map-image[data-rimg=noscript] {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
}

.pxs-map-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pxs-map-section-layout-x-outside-left .pxs-map-overlay, .pxs-map-section-layout-x-outside-right .pxs-map-overlay {
  display: none;
}
@media (max-width: 720px) {
  .pxs-map-overlay {
    display: none;
  }
}

.pxs-map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.pxs-map-error-message {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.pxs-map-error-message p {
  margin: 0;
  text-align: center;
}
.pxs-map-error-message a {
  color: inherit;
}

.pxs-map-card-wrapper {
  width: 100%;
}
@media (max-width: 720px) {
  .pxs-map-section-layout-mobile-above .pxs-map-card-wrapper {
    order: -1;
    margin-bottom: 20px;
  }
  .pxs-map-section-layout-mobile-below .pxs-map-card-wrapper {
    margin-top: 20px;
  }
}
@media (min-width: 720px) {
  .pxs-map-card-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 20px;
  }
  .pxs-map-section-layout-x-outside-left .pxs-map-card-wrapper, .pxs-map-section-layout-x-outside-right .pxs-map-card-wrapper {
    position: static;
    width: calc(50% - 10px);
    padding: 0;
    background-color: #fff;
  }
  .pxs-map-section-layout-x-outside-left .pxs-map-card-wrapper {
    order: -1;
  }
  .pxs-map-section-layout-y-outside-center .pxs-map-card-wrapper, .pxs-map-section-layout-y-overlay-center .pxs-map-card-wrapper {
    align-items: center;
  }
  .pxs-map-section-layout-y-outside-bottom .pxs-map-card-wrapper, .pxs-map-section-layout-y-overlay-bottom .pxs-map-card-wrapper {
    align-items: flex-end;
  }
  .pxs-map-section-layout-x-overlay-center .pxs-map-card-wrapper {
    justify-content: center;
  }
  .pxs-map-section-layout-x-overlay-right .pxs-map-card-wrapper {
    justify-content: flex-end;
  }
}
@media (min-width: 1080px) {
  .pxs-map-card-wrapper {
    top: 30px;
    bottom: 30px;
    padding: 0 30px;
  }
}

.pxs-map-card {
  width: 100%;
  padding: 30px;
  background-color: #fff;
}
@media (max-width: 720px) {
  .pxs-map-card {
    max-width: 100%;
  }
}
@media (min-width: 720px) {
  .pxs-map-card {
    right: auto;
    bottom: 30px;
    left: 30px;
    width: auto;
    max-width: 40%;
    min-width: 280px;
  }
  .pxs-map-section-layout-x-outside-left .pxs-map-card, .pxs-map-section-layout-x-outside-right .pxs-map-card {
    width: 100%;
    max-width: 100%;
  }
}

.pxs-map-card-text-alignment-left {
  text-align: left;
}

.pxs-map-card-text-alignment-center {
  text-align: center;
}

.pxs-map-card-text-alignment-right {
  text-align: right;
}

.pxs-map-card-heading {
  margin: 0 0 26px;
}

.pxs-map-card-content p:last-child {
  margin-bottom: 0;
}

.pxs-map {
  margin-top: 0;
}

.pxs-map-section {
  width: 92%;
  max-width: 1430px;
  min-width: 690px;
  padding: 50px 15px 0;
  margin: 65px auto 0;
}
@media (max-width: 1199px) {
  .pxs-map-section {
    width: 95%;
  }
}
@media (max-width: 719px) {
  .pxs-map-section {
    width: 100%;
    min-width: 100%;
    padding-top: 0;
  }
}

@media (max-width: 719px) {
  .pxs-map-card {
    padding-right: 0;
    padding-left: 0;
  }
  .pxs-map-section-layout-x-outside-left .pxs-map-card, .pxs-map-section-layout-x-outside-right .pxs-map-card {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .pxs-map-card {
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  .pxs-map-card-wrapper {
    top: 40px;
    bottom: 40px;
    padding: 0 40px;
  }
}

@media (max-width: 719px) {
  .pxs-map-section-layout-mobile-above .pxs-map-card, .pxs-map-section-layout-mobile-below .pxs-map-card,
  .pxs-map-section-layout-mobile-above .pxs-map-card-wrapper,
  .pxs-map-section-layout-mobile-below .pxs-map-card-wrapper {
    margin: 0;
  }
}
.pxs-map-section-layout-x-outside-left .pxs-map-card, .pxs-map-section-layout-x-outside-right .pxs-map-card,
.pxs-map-section-layout-x-outside-left .pxs-map-card-wrapper,
.pxs-map-section-layout-x-outside-right .pxs-map-card-wrapper {
  margin: 0;
}

.pxs-map-section-layout-x-outside-left .pxs-map-wrapper, .pxs-map-section-layout-x-outside-right .pxs-map-wrapper,
.pxs-map-section-layout-x-outside-left .pxs-map-card-wrapper,
.pxs-map-section-layout-x-outside-right .pxs-map-card-wrapper {
  width: 50%;
}
@media (max-width: 719px) {
  .pxs-map-section-layout-x-outside-left .pxs-map-wrapper, .pxs-map-section-layout-x-outside-right .pxs-map-wrapper,
  .pxs-map-section-layout-x-outside-left .pxs-map-card-wrapper,
  .pxs-map-section-layout-x-outside-right .pxs-map-card-wrapper {
    width: 100%;
  }
}

.pxs-map-card-heading {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #000000;
  text-transform: uppercase;
}

.menu-list-link {
  display: block;
  font-size: 16px;
  color: #000000;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-list-link:not(:first-of-type) {
  margin-top: 14px;
}

.menu-list-link-more {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding: 0;
  margin-top: 16px;
  font-size: 14px;
  color: #8a2432;
  text-decoration: underline;
  background-color: transparent;
  border: 0;
  outline: 0;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
          appearance: none;
}
.menu-list-link-more:hover {
  color: 










#781f2b




;
}

.menu-list-link-hidden {
  display: none;
}

.collections .label.menu-list-heading {
  padding-bottom: 16px;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .collections .label.menu-list-heading {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .collections .label.menu-list-heading {
    text-align: center;
  }
}

.menu-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}
.menu-list-container::before, .menu-list-container::after {
  display: none;
}
.menu-list-container .collection-wrap {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .menu-list-container .collection-wrap {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 50px;
    text-align: center;
  }
}
.menu-list-container .collection-wrap img {
  position: static;
  width: 100%;
  height: auto;
  opacity: 1;
  object-fit: cover;
}
.menu-list-container .collection-wrap li:not(:first-of-type) {
  margin-top: 10px;
}
@media (max-width: 480px) {
  .menu-list-container .collection-wrap li:not(:first-of-type) {
    margin-top: 8px;
  }
}

.subcollection-menu-list-container::before, .subcollection-menu-list-container::after {
  display: none;
}
.subcollection-menu-list-container .collection-wrap {
  margin-bottom: 50px;
}

@media (min-width: 720px) {
  .menu-list-container.menu-list-count-1 .collection-wrap,
  .menu-list-count-2 .collection-wrap:last-of-type,
  .menu-list-count-2 .collection-wrap:nth-last-of-type(2),
  .menu-list-container.menu-list-count-4 .collection-wrap,
  .menu-list-count-5 .collection-wrap:last-of-type,
  .menu-list-count-5 .collection-wrap:nth-last-of-type(2) {
    width: calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .menu-list-container.menu-list-count-1 .collection-wrap,
  .menu-list-count-2 .collection-wrap:last-of-type,
  .menu-list-count-2 .collection-wrap:nth-last-of-type(2),
  .menu-list-container.menu-list-count-4 .collection-wrap,
  .menu-list-count-5 .collection-wrap:last-of-type,
  .menu-list-count-5 .collection-wrap:nth-last-of-type(2) {
    width: 100%;
  }
}

.menu-list-count-1 .collection-wrap:last-of-type {
  width: 100%;
}

.menu-list-count-2 .collection-wrap:last-of-type,
.menu-list-count-2 .collection-wrap:nth-last-of-type(2) {
  width: calc(50% - 15px);
}

.pxs-newsletter-section {
  position: relative;
  width: 100%;
}
.pxs-newsletter-section .newsletter-success {
  font-weight: bold;
  text-align: center;
}

.pxs-newsletter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 50px 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .pxs-newsletter {
    flex-direction: column;
  }
}
@media (min-width: 1080px) {
  .pxs-newsletter {
    max-width: 65%;
    padding-top: 68px;
  }
}

.pxs-newsletter-figure {
  position: relative;
  flex-shrink: 1;
  order: 0;
  margin: 0;
  background-size: cover;
}
@media screen and (max-width: 720px) {
  .pxs-newsletter-mobile-alignment-bottom .pxs-newsletter-figure {
    order: 1;
  }
}
@media screen and (min-width: 720px) {
  .pxs-newsletter-desktop-alignment-right .pxs-newsletter-figure {
    order: 1;
  }
}

.pxs-newsletter-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  order: 0;
  padding: 0 20px;
}
@media screen and (min-width: 720px) {
  .pxs-newsletter-content {
    padding: 0 50px;
  }
}

.pxs-newsletter-image {
  display: block;
  width: 100%;
  opacity: 0;
}
.pxs-newsletter-image[data-rimg=noscript] {
  opacity: 1;
}

.pxs-newsletter-header {
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 720px) {
  .pxs-newsletter-header {
    max-width: 80%;
  }
}

.pxs-newsletter-heading {
  margin-top: 0;
  margin-bottom: 12px;
}

.pxs-newsletter-text {
  margin-top: 0;
  margin-bottom: 36px;
}

.pxs-newsletter-form .contact-form {
  margin: 0;
}

.pxs-newsletter-form-fields {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.pxs-newsletter-form-label {
  display: none;
}

.pxs-newsletter-form-input {
  height: 100%;
  margin: 0;
}

.pxs-newsletter-form-button {
  height: 100%;
}

.pxs-newsletter {
  width: 92%;
  max-width: 1430px;
  min-width: 690px;
  padding: 50px 15px 0;
  margin: 65px auto 0;
}
@media (max-width: 1199px) {
  .pxs-newsletter {
    width: 95%;
  }
}
@media (max-width: 719px) {
  .pxs-newsletter {
    width: 100%;
    min-width: 100%;
    padding-top: 0;
  }
}

.pxs-newsletter-header,
.pxs-newsletter-form {
  width: 100%;
  max-width: 100%;
}

.pxs-newsletter-heading {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}

.pxs-newsletter-form-field:nth-of-type(1) {
  width: 67%;
}

.pxs-newsletter-figure {
  width: 50%;
  margin: 0;
}
@media (max-width: 719px) {
  .pxs-newsletter-figure {
    width: 100%;
    margin-bottom: 50px;
  }
  .pxs-newsletter-mobile-alignment-bottom .pxs-newsletter-figure {
    margin-top: 50px;
    margin-bottom: 0;
  }
}

.pxs-newsletter-content {
  padding: 0 30px;
}

.pxs-newsletter-figure + .pxs-newsletter-content {
  width: 50%;
}
@media (max-width: 719px) {
  .pxs-newsletter-figure + .pxs-newsletter-content {
    width: 100%;
  }
}

.pxs-newsletter-form-input {
  width: calc(100% - 8px);
}

.customer.order .content-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  min-height: 200px;
  margin: 50px 0 85px;
}
@media (max-width: 719px) {
  .customer.order .content-wrap {
    flex-direction: column;
    margin: 50px 0 55px;
  }
}
.customer.order .shipping-info {
  width: 28%;
  padding-right: 30px;
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 719px) {
  .customer.order .shipping-info {
    display: flex;
    width: 100%;
    padding-right: 0;
    margin: 40px 0;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .customer.order .shipping-info {
    display: block;
  }
}
.customer.order .shipping-info .shipping-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  color: #000000;
}.customer.order .shipping-info .shipping-title {
    font-size: 15.75px !important;
    text-transform: uppercase;
  }.customer.order .shipping-info .address,
.customer.order .shipping-info .city,
.customer.order .shipping-info .country {
  display: block;
}
.customer.order .shipping-info .address-wrap {
  margin-bottom: 30px;
}
@media (max-width: 719px) {
  .customer.order .shipping-info .address-wrap {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .customer.order .shipping-info .address-wrap {
    margin-right: auto;
    margin-left: auto;
  }
}
.customer.order .order-history {
  width: 72%;
}
@media (max-width: 719px) {
  .customer.order .order-history {
    width: 100%;
  }
}
.customer.order .order-history .order-history-title {
  color: #000000;
}
@media (max-width: 719px) {
  .customer.order .order-history .order-history-title {
    text-align: center;
  }
}
.customer.order .order-history .product-item-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 719px) {
  .customer.order .order-history .table {
    margin-top: 50px;
  }
}
.customer.order .order-history .table th,
.customer.order .order-history .table td {
  text-align: right;
}
.customer.order .order-history .table th.price,
.customer.order .order-history .table td.price {
  width: 23%;
}
.customer.order .order-history .table th.quantity,
.customer.order .order-history .table td.quantity {
  width: 12%;
}
.customer.order .order-history .table th.total,
.customer.order .order-history .table td.total {
  width: 18%;
}
.customer.order .order-history .table th.first,
.customer.order .order-history .table td.first {
  width: 43%;
  text-align: left;
}
@media (max-width: 719px) {
  .customer.order .order-history .table th.first,
  .customer.order .order-history .table td.first {
    width: 100%;
  }
}
@media (max-width: 719px) {
  .customer.order .order-history .table th {
    display: none;
  }
}
.customer.order .order-history .table td {
  border: 0;
}
@media (max-width: 719px) {
  .customer.order .order-history .table td {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
  }
  .customer.order .order-history .table td.first, .customer.order .order-history .table td.price, .customer.order .order-history .table td.quantity, .customer.order .order-history .table td.total {
    width: 100%;
  }
  .customer.order .order-history .table td.first {
    padding-top: 30px;
  }
  .customer.order .order-history .table td.last {
    padding-bottom: 30px;
  }
}
.customer.order .order-history .table td.product-item .wrap {
  flex-shrink: 1;
  width: 100%;
  padding-left: 30px;
}
@media (max-width: 959px) {
  .customer.order .order-history .table td.product-item .wrap {
    padding-left: 0;
  }
}
@media (max-width: 719px) {
  .customer.order .order-history .table td.product-item .wrap {
    text-align: right;
  }
}
.customer.order .order-history .table td.product-item .image-wrap {
  position: relative;
  width: 20%;
  min-width: 50px;
}
@media (max-width: 959px) {
  .customer.order .order-history .table td.product-item .image-wrap {
    display: none;
  }
}
.customer.order .order-history .table td.product-item .image-wrap img {
  width: 100%;
}
.customer.order .order-history .table td.product-item .image-wrap a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.customer.order .order-history .table td.product-item .image-wrap a.overlay {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.customer.order .order-history .table td.product-item .label {
  display: block;
}
.customer.order .order-history .table td.product-item .label.vendor {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 6px;
  font-size: 10px;
  color: #4d4d4d;
}
.customer.order .order-history .table td.product-item .label.title {
  margin-bottom: 6px;
}
.customer.order .order-history .table td.product-item .label.title a {
  font-size: 16px;
  color: #8a2432;
}
.customer.order .order-history .table td.product-item .label.variant, .customer.order .order-history .table td.product-item .label.product-item_selling-plan {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 13px;
  color: #4d4d4d;
}
.customer.order .order-history .table td.quantity {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 15px;
  color: #4d4d4d;
}
.customer.order .order-history .order-totals {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  width: 100%;
  font-size: 14px;
}
.customer.order .order-history .order-totals .sub-total {
  padding: 30px 0 35px;
  border-bottom: 1px solid #eeeeee;
}
.customer.order .order-history .order-totals .sub-total :first-child {
  padding-top: 0;
}
.customer.order .order-history .order-totals .sub-total :last-child {
  padding-bottom: 0;
}
.customer.order .order-history .order-totals .sub-total > li,
.customer.order .order-history .order-totals .total > li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.customer.order .order-history .order-totals .total {
  padding: 30px 0;
}
.customer.order .order-history .order-totals .total .order-total {
  padding: 0;
}
.customer.order .order-history .order-totals .order-totals-label {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 15px;
}

.order-item-discounts {
  font-size: 13px;
  color: #8a2432;
}
.order-item-discounts li {
  margin-top: 0.5rem;
}
.order-item-discounts .icon-sale-tag {
  width: 11px;
  height: 11px;
  margin-right: 0.15rem;
  margin-bottom: -1px;
}

.order-item-original-price,
.order-item-final-price {
  display: block;
}

.order-item-original-price + .order-item-final-price {
  color: #8a2432;
}

.order-item-label-mobile {
  display: none;
  font-size: 12px;
  color: #000000;
}
@media (max-width: 719px) {
  .order-item-label-mobile {
    display: block;
  }
}

.order-discounts {
  padding: 0;
  margin-bottom: 7px;
  color: #8a2432;
}
.order-discounts .icon-sale-tag {
  width: 12px;
  height: 12px;
  margin-right: 0.15rem;
  margin-bottom: -1px;
}

.order-discount {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.order-discount-container {
  flex-direction: column;
  text-align: left;
}

.order-item__unit-price {
  margin-top: 2px;
  font-size: 13px;
  color: #4d4d4d;
}

.template-page img, .template-contact img {
  height: auto;
}
.template-page .text-content-wrap, .template-contact .text-content-wrap {
  max-width: 760px;
  padding-top: 40px;
  padding-bottom: 80px;
  margin: 0 auto;
}
@media (max-width: 719px) {
  .template-page .text-content-wrap, .template-contact .text-content-wrap {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
.template-page .text-content.has-sidebar, .template-contact .text-content.has-sidebar {
  float: left;
  width: 68.5714%;
  padding-right: 30px;
}
@media (max-width: 719px) {
  .template-page .text-content.has-sidebar, .template-contact .text-content.has-sidebar {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}
.template-page .sidebar, .template-contact .sidebar {
  float: right;
  width: 31.4286%;
  padding-left: 8.5714%;
}
@media (max-width: 719px) {
  .template-page .sidebar, .template-contact .sidebar {
    float: none;
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
    margin-top: 40px;
    border-top: 1px solid #eeeeee;
  }
}
.template-page .sidebar .title, .template-contact .sidebar .title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 14px;
  color: #000000;
}

.template-contact .alert-message {
  width: 100%;
  height: auto;
  padding: 12px;
  margin: 0 0 25px;
  line-height: 1.5em;
  text-align: center;
}
.template-contact .alert-message span {
  display: inline-block;
}
.template-contact .field-wrap {
  margin-top: 20px;
}
.template-contact .field-wrap.author {
  margin-top: 0;
}
@media (min-width: 720px) and (max-width: 960px) {
  .template-contact .field-wrap.author {
    margin-top: 20px;
  }
}
@media (max-width: 719px) {
  .template-contact .field-wrap.author {
    margin-top: 20px;
  }
}
.template-contact .field-wrap label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  cursor: auto;
  text-align: left;
}
.template-contact .field-wrap .field {
  width: 100%;
}
.template-contact .field-wrap textarea {
  min-height: 210px;
}
.template-contact .contact-form .submit-button {
  padding: 10px 14px 9px;
  margin-top: 30px;
}
@media (max-width: 719px) {
  .template-contact .contact-form .submit-button {
    width: 100%;
  }
}
.template-contact .text-content + .full-width-form {
  margin-top: 20px;
  width: 100%;
}

.shopify-policy__container {
  margin-top: 40px;
}

.template-password {
  padding: 2.5rem 0;
}
.template-password .shopify-payment-button {
  display: none;
}
.template-password .shopify-section + .shopify-section--password {
  padding: 2.5rem 0;
}

.password-page-background {
  height: 100vh;
  text-align: center;
  background-position: center center;
  background-size: cover;
}
.password-page-background .form-title {
  margin-bottom: 15px;
  font-size: 16px;
}
.password-page-background div.errors {
  margin-top: 8px;
  margin-bottom: 8px;
}
.password-page-background .social-links {
  margin-top: 30px;
  margin-bottom: 30px;
}
.password-page-background .social-link:not(:first-child) {
  margin-left: 1em;
}
.password-page-background svg {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.password-page {
  display: table;
  width: 100%;
  height: 100%;
}

.password-page-footer,
.password-page-header {
  display: table-row;
  height: 1px;
}

.password-page-header {
  font-size: 14px;
  text-align: right;
}

.password-page-footer {
  font-size: 14px;
  color: #4d4d4d;
}

.password-page-content {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.password-page-content h2 {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 28px;
  line-height: 33px;
  color: #000000;
}

.password-page-inner {
  display: table-cell;
  padding: 10px 15px;
}
.password-page-content .password-page-inner {
  vertical-align: middle;
}
.password-page-header .password-page-inner, .password-page-footer .password-page-inner {
  font-size: 95%;
  line-height: 1.2;
  vertical-align: bottom;
}

.password-login-text {
  text-align: right;
}

.password-page-logo {
  padding-bottom: 15px;
}
.password-page-logo .store-title {
  display: block;
  margin: 0 auto;
  font-size: 28px;
  letter-spacing: 0.2em !important;
}
@media (min-width: 720px) and (max-width: 960px) {
  .password-page-logo .store-title {
    font-size: 21px;
  }
}
@media (max-width: 719px) {
  .password-page-logo .store-title {
    max-width: 100%;
    font-size: 23px;
    text-align: center;
    word-break: break-word;
  }
}
.password-page-logo .store-title img {
  width: 100%;
  max-width: 480px;
}
.password-page-logo .store-title img.regular-logo {
  display: inline-block;
}
.password-page-logo .store-title img.retina-logo {
  display: none;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .password-page-logo .store-title img.regular-logo {
    display: none;
  }
  .password-page-logo .store-title img.retina-logo {
    display: inline-block;
  }
}
.password-page-logo .store-title a {
  color: #8a2432;
}
.password-page-logo .store-title a:hover {
  color: 










#781f2b




;
}

.password-page-form-header {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #eeeeee;
}
.password-page-form-header::after {
  display: block;
  max-width: 50px;
  margin: 15px auto 0;
  border-bottom: 1px solid #eeeeee;
  content: "";
}

.password-page-message {
  margin-top: 1em;
  margin-bottom: 0;
}

.password-page-modal-wrapper {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9000;
  display: none;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}

.password-page-modal {
  width: 100%;
  max-width: 100%;
  padding: 42px 30px;
  margin: 0 auto;
  position: relative;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 719px) {
  .password-page-modal {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .password-page-modal {
    max-width: 415px;
  }
}
.password-page-modal .header {
  position: relative;
  padding-bottom: 15px;
}
.password-page-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ccc;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0.9375rem;
}
.password-page-modal .close-modal .icon-close {
  display: block;
  pointer-events: none;
}
.password-page-modal .admin-login {
  font-size: 14px;
  color: #4d4d4d;
}

.password-page-field-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (max-width: 719px) {
  .password-page-field-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.password-page-field-wrap .password-page-input,
.password-page-field-wrap .submit {
  margin: 0;
  outline: none;
}
.password-page-field-wrap .password-page-input {
  width: 100%;
}

  
  
.product-area {
  position: relative;
  padding: 30px 0 60px;
}
@media (max-width: 719px) {
  .product-area {
    padding: 25px 0;
  }
}
.product-area .details {
  float: left;
}
.product-area .error-message {
  height: auto;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.product-area .product-details-wrapper {
  float: left;
  width: 45%;
  padding: 0 0 0 50px;
}
@media (max-width: 920px) {
  .product-area .product-details-wrapper {
    padding-left: 30px;
  }
}
@media (max-width: 719px) {
  .product-area .product-details-wrapper {
    width: 100%;
    padding: 0;
  }
  .product-area .product-details-wrapper.border {
    border-top: 1px solid #eeeeee;
  }
}
.product-area .product-details-wrapper .header .brand {
  margin: 0;
  font-size: 18px;
  color: #4d4d4d;
}
.product-area .product-details-wrapper .header .title {
  margin: 8px 0 8px;
  font-size: 20px;
}
.product-area .product-details-wrapper .inline-field-wrapper > label {
  display: inline-block;
  margin-right: 20px;
}
.product-area .product-details li {
  text-align: left;
}
@media (max-width: 719px) {
  .product-area .product-details {
    margin-top: 20px;
  }
}
@media (max-width: 719px) {
  .product-area .details.no-options {
    padding: 0;
    margin: 0;
  }
}
.product-area .details.no-options .options .selector-wrapper label {
  display: none;
}
.product-area .options {
  padding-bottom: 20px;
  margin-top: 32px;
}
.product-area .options.unavailable .disabled {
  margin-top: 0;
}
.product-area .options .disabled {
  cursor: default;
  background-color: #e2c8cc;
  border-color: #e2c8cc;
}

.product__brand {
  font-size: 12px;
  padding: 16px 0;
  --border-padding: 16px;
  color: #4d4d4d;
  margin: 0;
}

.product__text {
  margin-top: 20px;
}
.product__text p {
  margin-bottom: 0;
}

.product__title {
  margin: 8px 0 0;
  font-size: 24px;
}

.product-details-wrapper p{margin:6px auto !important;}


.product__app {
  margin-top: 20px;
}

.product__description {
  margin-top: 32px;
}
.product__description .go-to-product {
  font-size: 15px;
  color: #8a2432;
}
.product__description .go-to-product:hover {
  color: #000000;
}

.product__rating {
  --border-padding: 16px;
  margin-top: 16px;
}

.product__price {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  --border-padding: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 5px;
  font-size: 18px;
  justify-content:center;
}
.product__price .original {
  margin-right: 10px;
}
.product__price .money--last {
  margin-right: 14px;
}
.product__price.product-block--border {
  padding-bottom: 10px;
}

.product__unit-price,
.product__tax {
  line-height: 1.6;
  color: #4d4d4d;
}

.product__unit-price {
  margin-top: 2px;
  font-size: 14px;
}

.product__tax {
  width: 100%;
  margin-top: 4px;
  font-size: 13px;
}

.product-form {
  text-align: left;
}
.product-form .action-button.unavailable {
  width: 100%;
}
.product-form .select-wrapper, .product-form .age-gate__select-wrapper,
.product-form .selector-wrapper {
  width: 100%;
  min-width: 175px;
  margin-bottom: 20px;
}
.product-form .select-wrapper .single-option-selector, .product-form .age-gate__select-wrapper .single-option-selector,
.product-form .selector-wrapper .single-option-selector {
  width: 100%;
}
@media (max-width: 719px) {
  .product-form .select-wrapper .single-option-selector, .product-form .age-gate__select-wrapper .single-option-selector,
  .product-form .selector-wrapper .single-option-selector {
    width: 100% !important;
  }
}
.product-form .quantity {
  margin-top: 15px;
}
@media (max-width: 719px) {
  .product-form .quantity {
    margin-bottom: 15px;
  }
}
.product-form .quantity > label {
  font-family: ,;
  font-style: ;
  font-weight: 700;
  margin-right: 20px;
}
.product-form .product-submit {
  width: 50%;
  margin-top: 29px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  line-height: 1;
}
@media (max-width: 719px) {
  .product-form .product-submit {
    margin-bottom: 15px;
  }
}
.product-form .product-submit.addtocart-button-loading {
  padding-top: 14px;
  padding-bottom: 14px;
}
.has-no-variants .product-form .product-submit {
  margin: 15px auto;
}

:root {
  --color-body-text: #000000;
  --color-body: #ffffff;
  --color-bg: #ffffff;
}

shopify-payment-terms {
  display: block;
  margin-top: 12px;
  font-size: 15px;
}

.product-form-has-spb .submit:disabled {
  color: #000000;
}
.product-form-has-spb .submit:disabled:hover {
  color: #000000;
  background-color: #e2c8cc;
  border-color: #e2c8cc;
}

.template-product .product-recommendations {
  margin-bottom: -65px;
}
.template-product .product-recommendations .product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-left: 0;
}
.template-product .product-recommendations .product {
  width: calc(25% - 20px);
  padding-left: 0;
  margin-bottom: 42px;
}
@media (max-width: 959px) {
  .template-product .product-recommendations .product {
    width: calc(25% - 11.25px);
  }
}
@media (max-width: 840px) {
  .template-product .product-recommendations .product {
    width: calc(50% - 7.5px);
  }
}
@media (max-width: 719px) {
  .template-product .product-recommendations .product {
    min-width: calc(50% - 7.5px);
    margin: 0 0 35px;
    text-align: left;
  }
}

.pager .wrap img {
  cursor: pointer;
}
.pager.with-borders .wrap .overlay {
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 719px) {
  .pager {
    margin-bottom: 20px;
  }
}

.antiscroll-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.antiscroll-scrollbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 7px;
  opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  box-shadow: 0 0 1px #fff;
  transition: linear 300ms opacity;
}

.antiscroll-scrollbar-shown {
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.antiscroll-scrollbar-horizontal {
  bottom: 2px;
  left: 0;
  height: 7px;
  margin-left: 2px;
}

.antiscroll-scrollbar-vertical {
  top: 0;
  right: 2px;
  width: 7px;
  margin-top: 2px;
}

.antiscroll-inner {
  height: 100% !important;
  overflow: scroll;
}

/** A bug in Chrome 25 on Lion requires each selector to have their own
blocks. E.g. the following:

.antiscroll-inner::-webkit-scrollbar, .antiscroll-inner::scrollbar {...}

causes the width and height rules to be ignored by the browser resulting
in both native and antiscroll scrollbars appearing at the same time.
*/
.antiscroll-inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.antiscroll-inner:scrollbar {
  width: 0;
  height: 0;
}

.template-product .breadcrumb-navigation {
  padding: 10px 0 0;
  margin: 0 auto;
  text-align: left;
}

.shopify-section--featured-product .product-area {
  padding: 50px 0 0;
  margin-top: 65px;
}

.product__sku {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: block;
  margin: 20px 0 8px 0;
  font-size: 12px;
  color: #4d4d4d;
}
.product-details-alignment-left .product__sku {
  width: 100%;
}
.product__sku:empty {
  display: none;
}

.product-details-alignment-center,
.product-details-alignment-left {
  text-align: center;
}
.product-details-alignment-center .header,
.product-details-alignment-center .options,
.product-details-alignment-center .product__description,
.product-details-alignment-left .header,
.product-details-alignment-left .options,
.product-details-alignment-left .product__description {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.product-details-alignment-center .header > *,
.product-details-alignment-center .options > *,
.product-details-alignment-center .product__description > *,
.product-details-alignment-left .header > *,
.product-details-alignment-left .options > *,
.product-details-alignment-left .product__description > * {
  width: 100%;
}
.product-details-alignment-center .has-no-variants .product-form-grid-select,
.product-details-alignment-center .has-no-variants .product-form-grid-radio,
.product-details-alignment-left .has-no-variants .product-form-grid-select,
.product-details-alignment-left .has-no-variants .product-form-grid-radio {
  display: grid;
  grid-template-columns: unset;
}

.product-details-alignment-center .product__price,
.product-details-alignment-center .product__rating {
  justify-content: center;
}
.product-details-alignment-center .options,
.product-details-alignment-center .product-form.unavailable {
  padding-left: 8%;
  padding-right: 8%;
}
@media (min-width: 1380px) {
  .product-details-alignment-center .options,
  .product-details-alignment-center .product-form.unavailable {
    padding-left: 18%;
    padding-right: 18%;
  }
}
@media (max-width: 1170px) {
  .product-details-alignment-center .options,
  .product-details-alignment-center .product-form.unavailable {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-details-alignment-center .product__description {
  text-align: center;
}

.product-details-alignment-left {
  text-align: center;
}
.product-details-alignment-left .header,
.product-details-alignment-left .options,
.product-details-alignment-left .product__description {
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.product-details-alignment-left .header > *,
.product-details-alignment-left .options > *,
.product-details-alignment-left .product__description > * {
  width: 100%;
  max-width: 100%;
}
.product-details-alignment-left .has-no-variants .product-form-grid-select,
.product-details-alignment-left .has-no-variants .product-form-grid-radio {
  grid-template-columns: minmax(min-content, max-content) 1fr;
}
.product-details-alignment-left .product-interaction {
  justify-content: flex-start;
}
.product-interactions {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  border-top: 1px solid #eeeeee;
}
.product-interaction {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  --border-padding: 16px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  padding: 0 20PX;
  font-size: 14px;
  text-align: left;
  color: #000000;
}
.product-details-alignment-left .product-interaction {
  text-align: center;
}
.product-interaction:hover {
  color: 










#080808




;
}
.product-interaction svg {
  display: block;
  height: 18px;
}
.product-interaction .icon-share {
  width: 16px;
}
.product-interaction .icon-ruler {
  width: 30px;
}
.product-interaction .icon-info {
  width: 22px;
}
.product-interaction .icon-shirt {
  width: 20px;
}
.product-interaction .icon-mail {
  width: 22px;
}

.custom-liquid {
  margin: 1rem 0;
}

.collapsible-tab {
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}
.collapsible-tab .icon-down-arrow {
  width: 12px;
  height: 12px;
}
.collapsible-tab[open] .icon-down-arrow {
  transform: rotate(180deg);
}

.collapsible-tab__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 12px;
  padding: 1rem 1rem 1rem 0;
}
.collapsible-tab__heading::-webkit-details-marker {
  display: none;
}

.collapsible-tab__text {
  margin-bottom: 1rem;
  word-break: break-word;
}

.collapsible-tab__text p {
  margin-top: 0;
}
.collapsible-tab__text p:last-child {
  margin-bottom: 0;
}

.product-block--collapsible-tab {
  border-top: 1px solid #eeeeee;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.product-tabs.product-tabs--bottom-true {
  margin: 3rem 0 0;
}
@media (max-width: 719px) {
  .product-tabs.product-tabs--bottom-true {
    margin: 1.5rem 0 0;
  }
}

.product-tabs__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.product-tabs__radio:checked + .product-tabs__label + .product-tabs__panel {
  display: block;
}
.product-tabs__radio:checked + .product-tabs__label {
  opacity: 1;
  border-bottom-color: #000000;
}

.no-js .product-tabs__radio:focus + .product-tabs__label,
.user-is-tabbing .product-tabs__radio:focus + .product-tabs__label {
  outline: auto 5px Highlight;
  outline: auto 5px -webkit-focus-ring-color;
}

.product-tabs__label {
  word-break: break-word;
  padding-bottom: 0.75rem;
  margin-right: 1.25rem;
  cursor: pointer;
  font-size: 12px;
  opacity: 0.7;
  z-index: 1;
  position: relative;
  border-bottom: 1px solid transparent;
}
@media (max-width: 719px) {
  .product-tabs__label {
    width: 100%;
    border-bottom: none;
    border-top: 1px solid #eeeeee;
    font-size: 13px;
    padding: 0.875rem 0;
    margin-right: 0;
  }
}

.product-tabs__panel {
  order: 1;
  position: relative;
  top: -1px;
  width: 100%;
  display: none;
  word-break: break-word;
  text-align: left;
  white-space: normal;
  padding-top: 1.875rem;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 719px) {
  .product-tabs__panel {
    order: 0;
    border: none;
    padding-top: 1rem;
    padding-bottom: 1.875rem;
  }
}

.product-tabs__panel p {
  margin-top: 0;
}
.product-tabs__panel p:last-child {
  margin-bottom: 0;
}

.share-this {
  position: relative;
}
.share-this .sharethis-trigger {
  width: 100%;
  padding: 0;
}
@media (max-width: 1332px) {
  .share-this .sharethis-trigger {
    bottom: calc(100% - 8px);
  }
}
@media (max-width: 1332px) {
  .share-this .sharethis-modal {
    bottom: calc(100% - 8px);
  }
}

.product-interaction-title,
.product-interaction .sharethis-title {
  margin-left: 12px;
}

.product-quantity-label {
  display: block;
  margin-bottom: 12px;
}

.product-quantity-input {
  display: block;
  width: 100px;
  height: 50px;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #eeeeee;
}

.product-block--border {
  padding-bottom: var(--border-padding, 20px);
  border-bottom: none;
}

.product-block--first {
  margin-top: 0;
}

.product-form-grid {
  display: grid;
}

.product-form-grid-select {
  align-items: center;
  grid-template-columns: 25% 75%;
  grid-template-columns: minmax(min-content, max-content) 1fr;
}
.product-form-grid-select > :nth-child(1) {
  grid-row: 1;
  grid-column: 1/3;
}
.product-form-grid-select > :nth-child(2) {
  grid-row: 2;
  grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.product-form-grid-select > :nth-child(3) {
  grid-row: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.product-form-grid-select > :nth-child(4) {
  grid-row: 3;
  grid-column: 1;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.product-form-grid-select > :nth-child(5) {
  grid-row: 3;
  grid-column: 2;
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.product-form-grid-select > :nth-child(6) {
  grid-row: 4;
  grid-column: 1;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.product-form-grid-select > :nth-child(7) {
  grid-row: 4;
  grid-column: 2;
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}
.product-form-grid-select .select-header {
  align-items: center;
  justify-content: flex-end;
  margin-right: 12px;
  margin-bottom: 15px;
  text-align: right;
}
.product-details-alignment-left .product-form-grid-select .select-header {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.product-form-grid-select .select-wrapper, .product-form-grid-select .age-gate__select-wrapper {
  margin-bottom: 15px;
}
.product-form-grid-select .product-infiniteoptions {
  grid-row: 5;
  grid-column: 1/3;
}
.product-form-grid-select .product-uploadery {
  grid-row: 6;
  grid-column: 1/3;
}
.product-form-grid-select .product-quantity-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 12px;
  text-align: right;
  grid-row: 7;
  grid-column: 1;
}
.product-details-alignment-left .product-form-grid-select .product-quantity-label {
  justify-content: flex-start;
  text-align: left;
}
.product-form-grid-select .product-quantity-input {
  display: block;
  grid-row: 7;
  grid-column: 2;
}
.product-details-alignment-left .product-form-grid-select {
  display: block;
}

.product-form-grid-radio {
  grid-template-columns: 100%;
}
.product-form-grid-radio > :nth-child(1) {
  grid-row: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(2) {
  grid-row: 2;
  grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(3) {
  grid-row: 3;
  grid-column: 1;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(4) {
  grid-row: 4;
  grid-column: 1;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(5) {
  grid-row: 5;
  grid-column: 1;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(6) {
  grid-row: 6;
  grid-column: 1;
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(7) {
  grid-row: 7;
  grid-column: 1;
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(8) {
  grid-row: 8;
  grid-column: 1;
  -ms-grid-row: 8;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(9) {
  grid-row: 9;
  grid-column: 1;
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(10) {
  grid-row: 10;
  grid-column: 1;
  -ms-grid-row: 10;
  -ms-grid-column: 1;
}
.product-form-grid-radio > :nth-child(11) {
  grid-row: 11;
  grid-column: 1;
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}

.template-search .search-no-search-performed .page-title {
  border-bottom: 0;
}
.template-search .results {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 50px;
}
.template-search .results-label {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 0 0 3.125rem;
  font-size: 16px;
  text-align: center;
}
.template-search .results-label.results-label--no-results {
  margin-bottom: 0;
}
.template-search .result {
  display: block;
  width: 66%;
  padding: 30px 0;
  margin: 0 auto;
  font-size: 0;
  border-top: 1px solid #fbfbfb;
}
@media (max-width: 719px) {
  .template-search .result {
    width: 100%;
  }
}
.template-search .result.first {
  padding-top: 0 !important;
  border-top: 0;
}
.template-search .result figure, .template-search .result .details {
  display: inline-block;
  vertical-align: top;
}
.template-search .result figure {
  position: relative;
  width: 32%;
}
.template-search .result figure img {
  width: 100%;
}
.template-search .result figure a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
}
.template-search .result figure a.overlay {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.template-search .result figure ~ .details {
  width: 68%;
  padding-left: 30px;
}
.template-search .result .details {
  max-width: calc((1430px * 0.66) * 0.66);
}
.template-search .result .details .brand {
  margin: 5px 0 0;
  font-size: 10px;
}
.template-search .result .details .brand a {
  color: #4d4d4d;
}
.template-search .result .details .title {
  margin: 14px 0 0;
  font-size: 16px;
  color: #8a2432;
}
.template-search .result .details .title a {
  color: #8a2432;
}
.template-search .result .details .rte, .template-search .result .details .pxs-newsletter-text {
  margin: 16px 0 0;
}
.template-search .result .details .rte p, .template-search .result .details .pxs-newsletter-text p {
  margin: 0;
}
.template-search .result .details .rte p:not(:first-of-type), .template-search .result .details .pxs-newsletter-text p:not(:first-of-type) {
  margin: 20px 0 0;
}
.template-search .result .details .price {
  margin: 16px 0 0;
  font-size: 14px;
  color: #000000;
}
.template-search .result .details .price .label {
  margin-right: 5px;
  color: #000000;
}
.template-search .result .details .price .original {
  margin-right: 2px;
  text-decoration: line-through;
}
.template-search .pagination {
  padding-bottom: 40px;
}

.search-item__unit-price {
  margin-top: 2px;
  font-size: 13px;
  color: #4d4d4d;
}
@media (max-width: 719px) {
  .search-item__unit-price {
    margin-bottom: 2px;
    font-size: 12px;
  }
}

.results-search-form {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  padding: 13px 11px 14px;
  margin: 3.125rem 0 2rem;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) border;
}
.results-search-form::-webkit-input-placeholder {
  color: #eeeeee;
}
.results-search-form:-moz-placeholder {
  color: #eeeeee;
}
.results-search-form::-moz-placeholder {
  color: #eeeeee;
}
.results-search-form:-ms-input-placeholder {
  color: #eeeeee;
}
.results-search-form:focus-within {
  background-color: transparent;
  border: 1px #000000 solid;
}

.rs-form-input {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  flex-grow: 1;
  order: 0;
  min-width: 0;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 14px;
}
.rs-form-input::placeholder {
  color: #4d4d4d;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .rs-form-input {
    font-size: 16px;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .rs-form-input {
    font-size: 16px;
  }
}

.rs-form-button-search {
  flex-grow: 0;
  flex-shrink: 0;
  order: 1;
  padding: 0;
  color: #4d4d4d;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
}
.rs-form-button-search .svg-icon {
  width: 18px;
  height: 19px;
}

.subcollection {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .subcollection {
    width: 95%;
  }
}
@media (max-width: 719px) {
  .subcollection {
    width: 100%;
    min-width: 290px;
    margin-top: 10px;
  }
}
@media (max-width: 940px) {
  .subcollection:not(:first-of-type) {
    margin-top: 40px;
  }
}

.subcollection-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.subcollection-container.subcollection-menu-list-container {
  row-gap: 30px;
}
@media (min-width: 720px) {
  .subcollection-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.subcollection-hero {
  position: relative;
}

.subcollection-hero-image {
  width: 100%;
  margin: 30px 0 15px;
}
@media (max-width: 480px) {
  .subcollection-hero-image {
    display: none;
  }
}

.template-collection .subcollection-hero-image + .subcollection-heading.label {
  position: absolute;
  top: calc(50% + 10px);
  width: 100%;
  margin: 0;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}
@media (min-width: 1200px) {
  .template-collection .subcollection-hero-image + .subcollection-heading.label {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .template-collection .subcollection-hero-image + .subcollection-heading.label {
    position: static;
    top: auto;
    color: #000000;
    transform: none;
  }
}

.subcollection-block {
  display: flex;
  justify-content: space-between;
}

.subcollection-image + .subcollection-content,
.subcollection-image {
  position: relative;
  width: calc(50% - 12px);
}
@media (max-width: 940px) {
  .subcollection-image + .subcollection-content,
  .subcollection-image {
    width: calc(50% - 7.5px);
  }
}
@media (max-width: 719px) {
  .subcollection-image + .subcollection-content,
  .subcollection-image {
    width: 100%;
  }
}

@media (max-width: 719px) {
  .subcollection-image {
    display: none;
  }
}

.subcollection-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subcollection-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 150px 60px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 940px) {
  .subcollection-content {
    padding: 120px 50px;
  }
}
@media (max-width: 719px) {
  .subcollection-content {
    padding: 50px;
  }
}
@media (max-width: 480px) {
  .subcollection-content {
    padding: 40px 30px;
  }
}

.subcollection-heading {
  color: #000000;
}
@media (max-width: 719px) {
  .subcollection-heading {
    font-size: 28px;
  }
}.subcollection-heading {
    font-size: 28px;
    text-transform: uppercase;
  }
@media (max-width: 719px) {
    .subcollection-heading {
      font-size: 24.5px;
    }
  }.subcollection-description {
  margin-top: 10px;
  margin-bottom: 10px;
}

.subcollection-link {
  margin-top: 20px;
}

.subcollection-collection .rte, .subcollection-collection .pxs-newsletter-text {
  margin-top: 15px;
  margin-bottom: 50px;
  color: #000000;
  text-align: center;
}
@media (max-width: 719px) {
  .subcollection-collection .rte, .subcollection-collection .pxs-newsletter-text {
    display: none;
  }
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.age-gate::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color, #ffffff);
  content: "";
}

.age-gate__header {
  margin-bottom: 32px;
}

.age-gate__logo-wrapper {
  position: relative;
  display: block;
  max-width: 100px;
  margin: 0 auto;
}
.age-gate__logo-wrapper + .age-gate__heading,
.age-gate__logo-wrapper + .age-gate__description {
  margin-top: 32px;
}

.age-gate__logo {
  width: auto;
  height: auto;
  max-width: 100%;
}

.age-gate__heading {
  margin-top: 0;
  margin-bottom: 0;
}
.age-gate__heading + .age-gate__description {
  margin-top: 12px;
}

.age-gate__description {
  margin-top: 0;
  margin-bottom: 0;
}

.age-gate__content {
  position: relative;
  z-index: 1;
  /* Extra small devices (phones, 768px and down) */
  max-width: 75%;
  /* Medium devices (landscape tablets, 768px and up) */
}
@media only screen and (min-width: 768px) {
  .age-gate__content {
    max-width: 50%;
  }
}

.age-gate__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.age-gate__select-wrapper {
  /* Extra small devices (phones, 768px and down) */
  grid-column: 1/4;
  /* Medium devices (landscape tablets, 768px and up) */
}
@media only screen and (min-width: 768px) {
  .age-gate__select-wrapper {
    grid-column: unset;
  }
}

.age-gate__select {
  margin-top: 0;
  margin-bottom: 0;
  /* Medium devices (landscape tablets, 768px and up) */
}
@media only screen and (min-width: 768px) {
  .age-gate__select {
    margin-top: inherit;
    margin-bottom: inherit;
  }
}

.age-gate__confirm_btn {
  grid-column: 1/4;
}

.age-gate__error {
  grid-column: 1/4;
  margin-top: 10px;
  color: var(--color-error, #ea555c);
}

.age-gate {
  z-index: 5001;
}

.age-gate__heading {
  font-weight: 700;
  color: #000000;
  margin: 40px 0 20px;
  font-size: 28px;
}

.age-gate__select-label {
  display: none;
}

.age-gate__select-wrapper {
  padding: 0;
  width: unset;
}
.age-gate__select-wrapper .age-gate__select {
  position: relative;
  opacity: 1;
  border: none;
}

.back-to-top--desktop {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 15px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
}
@media (max-width: 959px) {
  .back-to-top--desktop {
    display: none;
  }
}
.back-to-top--desktop[data-animation-state=visible] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-16px);
}
.back-to-top--desktop[data-animation="hidden=>visible"] {
  transition-property: opacity, transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.back-to-top--desktop[data-animation="visible=>hidden"] {
  transition-property: opacity, transform;
  transition-duration: 150ms;
  transition-timing-function: ease-in;
}
.back-to-top--desktop.back-to-top-position--right {
  right: 30px;
}
.back-to-top--desktop.back-to-top-position--left {
  left: 30px;
}
.back-to-top--desktop .back-to-top__button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-to-top--desktop .svg-icon {
  width: 15px;
  height: 50%;
  transform: rotate(180deg);
  fill: #8a2432;
  opacity: 0.9;
}

.back-to-top--mobile {
  margin: 40px 15px -35px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eeeeee;
}
@media (min-width: 960px) {
  .back-to-top--mobile {
    display: none;
  }
}
.back-to-top--mobile .back-to-top__button {
  max-width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  word-wrap: break-word;
  line-height: 26px;
}
.back-to-top--mobile .back-to-top__icon-wrapper {
  display: flex;
}
.back-to-top--mobile .svg-icon {
  width: 100%;
  height: 1em;
  transform: rotate(90deg);
}

.breadcrumb-navigation {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding: 40px 90px 0;
  font-size: 12px;
  text-align: center;
}
.breadcrumb-navigation a {
  color: #8a2432;
}
.breadcrumb-navigation a:hover {
  color: #781f2b;
}
.template-collection .breadcrumb-navigation {
  padding: 0;
}
.breadcrumb-navigation .sep {
  padding-right: 4px;
  padding-left: 4px;
}


  
  
.cart-mini-content {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  padding-right: var(--sidebar-drawer-right-gutter);
}

.cart-mini-items {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-mini-item {
  display: flex;
  flex-shrink: 0;
  padding-top: 26px;
  padding-bottom: 27px;
  border-bottom: 1px solid #eeeeee;
}

.cart-mini-item-row {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-mini-item-loading .cart-mini-item-row {
  pointer-events: none;
  opacity: 0.1;
}

.cart-mini-item-column {
  display: flex;
  flex-direction: column;
}

.cart-mini-item-column-image {
  flex-shrink: 0;
  width: 80px;
  margin-right: 20px;
}

.cart-mini-item-column-details {
  flex-grow: 1;
  margin-right: 10px;
}

.cart-mini-item__product-options {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  flex-direction: column;
  margin: 0 0 0.25rem;
  font-size: 13px;
  color: #4d4d4d;
}
.cart-mini-item__product-options:empty {
  display: none;
}

.cart-mini-item-vendor,
.cart-mini-item-title,
.cart-mini-item-variant,
.cart-mini-item-selling-plan,
.cart-mini-item-quantity,
.cart-mini-item-remove {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 3px;
}

.cart-mini-item-remove {
  background: transparent;
  border: 0;
}

.cart-mini-item-vendor,
.cart-mini-item-variant,
.cart-mini-item-selling-plan,
.cart-mini-item-quantity,
.cart-mini-item-remove {
  color: #4d4d4d;
}

.cart-mini-item-vendor,
.cart-mini-item-variant,
.cart-mini-item-selling-plan,
.cart-mini-item-quantity {
  font-size: 13px;
}

.cart-mini-item-vendor {
  word-break: break-word;
}

.cart-mini-item-title a {
  color: #000000;
}
.cart-mini-item-title a:hover {
  color: 










#0f0f0f




;
}

.cart-mini-item-title,
.cart-mini-item-price {
  font-size: 14px;
}

.cart-mini-item-prices {
  font-family: ,;
  font-style: ;
  font-weight: 0;
}

.cart-mini-item__unit-price {
  margin-top: 2px;
  font-size: 12px;
  color: #4d4d4d;
}

.cart-mini-item-price {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}

.cart-mini-item-remove {
  font-size: 12px;
  text-align: right;
  text-decoration: underline;
  cursor: pointer;
}

.cart-mini-item-details-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.cart-mini-footer {
  padding-right: var(--sidebar-drawer-right-gutter);
}

.cart-mini-actions {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid #eeeeee;
}
.cart-mini-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0 19px;
}
.cart-mini-discount + .cart-mini-subtotal {
  padding-top: 19px;
}

.cart-mini-subtotal-heading {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 15px;
  color: #000000;
}

.cart-mini-subtotal-value {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 18px;
  color: #000000;
}

.cart-mini-actions-cart {
  margin-right: 17px;
}

.cart-mini-actions > .cart-mini-actions-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.cart-mini-actions > .cart-mini-actions-cart svg {
  width: 16px;
  height: 16px;
  margin: -10px 8px -10px 0;
}

.cart-mini-empty {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}

.cart-mini-item-discounts {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 13px;
  color: #8a2432;
}
.cart-mini-item-discounts li {
  margin-top: 0.5rem;
}
.cart-mini-item-discounts .icon-sale-tag {
  width: 11px;
  height: 11px;
  margin-right: 0.15rem;
  margin-bottom: -1px;
}

.cart-mini-item-original-price + .cart-mini-item-final-price {
  margin-top: 2px;
  color: #8a2432;
}

.cart-mini-discounts {
  padding-top: 21px;
  font-size: 13px;
  color: #8a2432;
}
.cart-mini-discounts .cart-discount {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  justify-content: space-between;
}
.cart-mini-discounts .cart-discount-price {
  font-size: 14px;
}
.cart-mini-discounts .icon-sale-tag {
  width: 12px;
  height: 12px;
  margin-right: 0.15rem;
  margin-bottom: -1px;
}

.cart-mini-actions__checkout {
  width: 50%;
}

.cart-mini-actions__checkout-button {
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cart-mini-actions__checkout-button svg {
  width: 16px;
  height: 16px;
  margin: -10px 8px -10px 0;
}
.cart-mini-actions__checkout-button.action-button {
  display: flex;
}

.cart-mini__tax-labels-text {
  margin-top: 0;
  font-size: 0.75rem;
}

.cart-mini__continue-shopping {
  max-width: 100%;
  margin-top: 1.5rem;
  word-wrap: break-word;
}

.template-list-collections .collections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 40px;
  font-size: 0;
}
@media (max-width: 719px) {
  .template-list-collections .collections {
    padding-top: 10px;
    margin-left: 0;
  }
}
.template-list-collections .rte, .template-list-collections .pxs-newsletter-text {
  margin-top: 15px;
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .template-list-collections .rte, .template-list-collections .pxs-newsletter-text {
    display: none;
  }
}

@media (max-width: 719px) {
  .collections,
  .featured-collections {
    margin-left: 0;
  }
}
@media (min-width: 720px) {
  .collections.row-of-2 .collection-wrap,
  .featured-collections.row-of-2 .collection-wrap {
    width: calc(50% - 15px);
  }
  .collections.row-of-4 .collection-wrap,
  .featured-collections.row-of-4 .collection-wrap {
    width: calc(25% - 15px);
  }
}
.collections .collection,
.featured-collections .collection {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 76.66666667%;
  overflow: hidden;
  vertical-align: top;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.collections .collection.collection-onboarding,
.featured-collections .collection.collection-onboarding {
  padding-bottom: 0;
}
@media (max-width: 719px) {
  .collections .collection,
  .featured-collections .collection {
    height: 230px;
  }
}
.collections .collection a,
.featured-collections .collection a {
  display: flex;
  align-items: center;
}
.collections .collection:hover .collection-overlay,
.featured-collections .collection:hover .collection-overlay {
  transform: translateY(-20px);
}
.collections .collection:hover .browse,
.featured-collections .collection:hover .browse {
  opacity: 1;
}
.collections .collection:hover a,
.featured-collections .collection:hover a {
  background-color: rgba(0, 0, 0, 0.4);
}
.collections .collection .label, .collections .collection .browse,
.featured-collections .collection .label,
.featured-collections .collection .browse {
  z-index: 1000;
  margin: 0;
  color: #fff;
  text-align: center;
}
.collections .collection .label,
.featured-collections .collection .label {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  width: 100%;
  padding: 0 30px;
  font-size: 28px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) transform;
}.collections .collection .label,
  .featured-collections .collection .label {
    font-size: 18.375px !important;
    text-transform: uppercase;
  }.collections .collection .browse,
.featured-collections .collection .browse {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 15px;
  color: #8a2432;
  background-color: #ffffff;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.collections .collection .collection-overlay,
.featured-collections .collection .collection-overlay {
  position: relative;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.collections .collection a,
.featured-collections .collection a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url(//cdpeacock.com/cdn/shop/t/66/assets/ie-product-overlay-bg.png?v=83967569880151450761763571213) repeat 50% 50%;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.collections .collection-wrap, .featured-collections .collection-wrap {
  position: relative;
  width: calc(33.3333333333% - 15px);
  margin-bottom: 25px;
  overflow: hidden;
}
.collections .collection-wrap:hover .collection-wrap-image, .featured-collections .collection-wrap:hover .collection-wrap-image {
  transform: scale(1.03);
}
@media (max-width: 719px) {
  .collections .collection-wrap {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 375px) {
  .collections .collection-wrap {
    display: block;
    width: 100%;
    min-width: 290px;
    padding: 0;
    margin: 0 auto 50px;
  }
}
.subcollection-container .collection-wrap {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 959px) {
  .featured-collections .collection-wrap {
    margin: 0 0 10px;
  }
}
@media (max-width: 719px) {
  .featured-collections .collection-wrap {
    width: 100%;
  }
}

.collections .label {
  margin-top: 25px;
  font-size: 22px;
  color: #000000;
  text-align: center;
}
.collections.subcollection-collection .label {
  margin: 25px 0 1.25rem;
}

.collection-wrap-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) transform;
}

.collection-image {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}

.collection-title-header {
  padding-top: 0;
  background-size: cover;
}
.collection-title-header.page-title {
  min-height: 200px;
  overflow: hidden;
}

.collection-header .breadcrumb-navigation {
  text-align: center;
}

.collection-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.filter-form {
  display: flex;
}

.collection__filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
@media (min-width: 940px) {
  .collection__filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 0;
  }
}
@media (min-width: 940px) {
  .product-list-sidebar .collection__filters {
    flex-direction: column;
  }
}

.collection-filters {
  display: block;
}

.collection-dropdown--filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
.collection-dropdown--filter:only-child {
  width: auto;
}

.tools-wrap:not(:only-child) .collection__filters-wrapper {
  margin-top: 20px;
}
@media (min-width: 940px) {
  .tools-wrap:not(:only-child) .collection__filters-wrapper {
    margin-top: 0;
  }
}

.collection__filters-wrapper {
  position: relative;
  width: 100%;
}
.product-list-sidebar .collection__filters-wrapper:not(:only-child) {
  margin-top: 20px;
}

.collection-filters__filter {
  position: absolute;
  right: auto;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  display: none;
  width: var(--mobile-width);
  max-height: 500px;
  padding: 12px;
  margin-top: 4px;
  overflow-y: auto;
  list-style-type: none;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  opacity: 0;
}
.collection-filters__filter[data-animation] {
  display: block;
}
.collection-filters__filter[data-animation="closed=>open"] {
  transition: opacity 200ms, height 300ms;
}
.collection-filters__filter[data-animation="open=>closed"] {
  transition: opacity 150ms, height 150ms;
}
.collection-filters__filter[data-animation-state=open] {
  z-index: 2001;
  display: block;
  height: var(--open-height);
  opacity: 1;
}
@media (min-width: 940px) {
  .collection-filters__filter {
    width: max-content;
  }
  .product-list-sidebar .collection-filters__filter {
    min-width: 100%;
  }
  .collection-filters__filter.filters--overflow-right {
    right: 0;
    left: auto;
  }
}

.product-list-sidebar .collection__filters-title {
  cursor: text;
}

.collection-filters__details-wrapper {
  position: unset;
  height: auto;
  margin: 0;
  overflow: visible;
}
@media (min-width: 940px) {
  .collection-filters__details-wrapper {
    position: relative;
    margin: 0 8px 8px 0;
  }
  .product-list-sidebar .collection-filters__details-wrapper {
    margin-right: 0;
  }
}

.collection-filters__filter-group {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 14px;
}
.collection-filters__filter-group::after {
  display: none;
}
.collection-filters__filter-group .collection-filters__filter-group-title::-webkit-details-marker {
  display: none;
}
@media (max-width: 719px) {
  .collection-filters__filter-group {
    font-size: 16px;
  }
}

.collection-filters__filter-group-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  cursor: pointer;
  align-items: center;
  width: auto;
  padding: 11px;
  padding-right: 2.5rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  list-style: none;
}
.collection-filters__filter-group-title:focus {
  outline: auto 5px -webkit-focus-ring-color;
}
@media (min-width: 940px) {
  .collection-filters__filter-group-title {
    padding: 0 12px 0 0;
    font-size: 14px;
    border: none;
  }
  .collection-filters__filter-group-title:focus-within {
    border: none;
  }
  .product-list-sidebar .collection-filters__filter-group-title {
    padding: 11px;
    padding-right: 2.5rem;
    border: 1px solid #eeeeee;
  }
}

.collection-filters__filter-chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 940px) {
  .collection-filters__filter-chevron {
    display: none;
  }
  .product-list-sidebar .collection-filters__filter-chevron {
    display: block;
  }
}
.collection-filters__filter-group[open] .collection-filters__filter-chevron {
  transform: translateY(-50%) rotate(270deg);
}
.collection-filters__filter-chevron svg {
  display: block;
  width: 7px;
  height: auto;
}

.collection-filters__active-filter-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  padding: 2px;
  margin-left: 1rem;
  font-size: 0.75rem;
  border-radius: 50%;
}

.collection-filters__active-filter-price-inner {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
}

.collection-filters__filter-checkbox {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  border: 1px solid #8a2432;
}
.collection-filters__filter-checkbox svg {
  display: none;
  width: 100%;
  height: 100%;
}
.collection-filters__filter-checkbox[data-checked] svg {
  display: block;
  color: #8a2432;
}
[data-disabled] .collection-filters__filter-checkbox {
  cursor: not-allowed;
}

.collection-filters__filter-range {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 1rem 0;
}
@media (max-width: 480px) {
  .collection-filters__filter-range {
    flex-direction: column;
  }
}
@media (min-width: 940px) {
  .product-list-sidebar .collection-filters__filter-range {
    flex-direction: column;
  }
}

.collection-filters__filter-range--from,
.collection-filters__filter-range--to {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: min-content auto;
  align-items: center;
  width: 100%;
  margin: 4px 0;
}
.collection-filters__filter-range--from .collection-filters__filter-range-input,
.collection-filters__filter-range--to .collection-filters__filter-range-input {
  min-width: 150px;
  margin: 0;
}

.collection-filters__filter-range--to {
  margin-top: 0;
  margin-right: 0;
  margin-left: 1rem;
}
@media (max-width: 480px) {
  .collection-filters__filter-range--to {
    margin-top: 1rem;
    margin-left: 0;
  }
}
@media (min-width: 940px) {
  .product-list-sidebar .collection-filters__filter-range--to {
    margin-left: 0;
  }
}

.collection-filters__filter-range-label {
  grid-row: 1/span 1;
  grid-column: 1/span 2;
  justify-self: start;
  margin: 0;
  font-size: 1rem;
}

.collection-filters__filter-range-currency {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-right: 4px;
}

.collection-filters__filter-title {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  pointer-events: none;
  word-break: break-word;
}

.collection-filters__filter-icon-wrapper {
  position: relative;
  width: rem(8px);
  height: rem(8px);
  margin: 0 4px;
  outline: none;
}

.collection-filters__filter-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  margin-top: -3px;
  transform: translateX(-50%);
}

.collection-filters__filter-list-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
@media (min-width: 720px) {
  .collection-filters__filter-list-item {
    margin-top: 0.25rem;
  }
}
.collection-filters__filter-list-item:first-child {
  margin-top: 0;
}

.collection-filters__filter-link {
  display: flex;
  flex: 1;
  column-gap: 0.625rem;
  align-items: center;
  padding: 0.625rem 0;
  margin: 0;
  line-height: 1.15;
  color: currentColor;
  text-decoration: none;
}
@media (min-width: 720px) {
  .collection-filters__filter-link {
    padding: 0.375rem 0;
  }
}
.collection-filters__filter-link[data-disabled] {
  cursor: not-allowed;
  opacity: 50%;
}
.collection-filters__filter-link[data-disabled]:hover {
  color: currentColor;
}
.modal .collection-filters__filter-link {
  width: 100%;
  padding: 4px;
}

.collection-filters__filter-list-item-text {
  display: inline-block;
  margin: 0;
  line-height: 1.15;
  color: currentColor;
  text-decoration: none;
  word-break: break-word;
  vertical-align: middle;
}

.collection-page__filters--active {
  margin-top: 20px;
}

.active-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  margin-top: 20px;
  list-style-type: none;
}
.product-list-withsidebar .active-filter-group {
  margin-top: 0;
}

.active-filter-group__item-wrapper {
  display: inline-block;
  margin: 0;
}
.active-filter-group__item-wrapper .active-filter-group__item {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 12px 6px 0;
  color: #8a2432;
  cursor: pointer;
  border-bottom: 1px solid #8a2432;
}
.active-filter-group__item-wrapper .active-filter-group__item--clear {
  border-bottom: 1px solid #4d4d4d;
}
@media (max-width: 480px) {
  .active-filter-group__item-wrapper .active-filter-group__item--clear .active-filter-text {
    margin-top: 0;
  }
}
.active-filter-group__item-wrapper .filter-icon--remove {
  padding: 4px;
  border-radius: 100%;
}
.active-filter-group__item-wrapper .filter-icon--remove svg {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
}
.active-filter-group__item-wrapper .filter-icon--remove path {
  stroke-width: 1px;
}

.filter-text,
.filter-icon--checkbox {
  display: inline-block;
  vertical-align: middle;
}

.active-filter-text {
  margin-bottom: 0;
  word-break: break-word;
}

.complementary-products {
  --slide-item-padding: 1rem;
  --slide-item-outer-gap: 1rem;
  --slide-item-inner-gap: 1rem;
  --slide-item-border-color: black;
  --slide-item-border-thickness: 1px;
  --slider-dot-gap: 0.5rem;
  --slider-dot-size: 0.5rem;
  --slider-dot-color: #cacaca;
  --slider-active-dot-color: #787878;
}

.complementary-products__slider [data-slide] {
  position: absolute;
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
  gap: var(--slide-item-outer-gap);
  width: 100%;
  height: auto;
}
.complementary-products__slider .flickity-page-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: var(--slider-dot-gap);
}
.complementary-products__slider .flickity-page-dots .dot {
  margin: 0;
  border-radius: 50%;
  background: var(--slider-dot-color);
  height: var(--slider-dot-size);
  width: var(--slider-dot-size);
}
.complementary-products__slider .flickity-page-dots .dot.is-selected {
  background: var(--slider-active-dot-color);
}

.complementary-products__grid {
  display: flex;
  flex-direction: column;
  gap: var(--slide-item-outer-gap);
}

.complementary-product {
  display: flex;
  flex-direction: row;
  gap: var(--slide-item-inner-gap);
  padding: var(--slide-item-padding);
  border: var(--slide-item-border-thickness) solid var(--slide-item-border-color);
}

.complementary-product__name,
.complementary-product__price-text {
  margin: 0;
}

.complementary-product__price-text {
  display: inline-block;
}

.complementary-product__image-link {
  display: block;
  position: relative;
  line-height: 0;
}

.complementary-products {
  --border-padding: 32px;
  --slide-item-padding: 0;
  --slider-dot-size: 8px;
  --slider-dot-gap: 16px;
  --slider-dot-color: transparent;
  --slider-active-dot-color: #000000;
  width: 100%;
  margin: 32px 0;
}
.complementary-products.product-block--first {
  margin-top: 0;
}
.complementary-products.complementary-products--no-recommendations {
  margin: 0;
}
.complementary-products.product-block--border {
  margin-bottom: 12px;
}
.complementary-products .flickity-enabled {
  position: relative;
}
.complementary-products .flickity-enabled:focus {
  outline: none;
}
.complementary-products .flickity-viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.complementary-products .flickity-page-dots {
  margin-top: 32px;
}
.complementary-products .flickity-page-dots .dot {
  cursor: pointer;
  border: 1.5px solid #000000;
  opacity: 0.5;
  transform: scale(1);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.complementary-products .flickity-page-dots .dot:hover {
  opacity: 1;
  transform: scale(1.2);
}
.complementary-products .flickity-page-dots .dot.is-selected {
  opacity: 1;
}
.complementary-products .flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid #8a2432;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.complementary-products .flickity-prev-next-button.previous {
  transform: translate(-75%, -50%);
}
.complementary-products .flickity-prev-next-button.previous .flickity-button-icon {
  transform: translateX(5%);
}
.complementary-products .flickity-prev-next-button.next {
  transform: translate(75%, -50%);
}
.complementary-products .flickity-prev-next-button.next .flickity-button-icon {
  transform: translateX(-5%);
}
.complementary-products .flickity-prev-next-button .flickity-button-icon {
  fill: currentColor;
  margin-inline: 0;
  width: 14.5px;
  height: 18.5px;
  transition: none;
}
@media (max-width: 719px) {
  .complementary-products .flickity-prev-next-button {
    display: none;
  }
}
.complementary-products:hover .flickity-prev-next-button {
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.complementary-products__title {
  margin-bottom: 20px;
  color: #000000;
}

.complementary-product {
  border: none;
}

.complementary-product__image {
  flex: 0 0 20%;
}
@media (max-width: 1023px) {
  .complementary-product__image {
    flex-basis: 25%;
  }
}
@media (max-width: 959px) {
  .complementary-product__image {
    flex-basis: 30%;
  }
}
@media (max-width: 719px) {
  .complementary-product__image {
    flex-basis: 18%;
  }
}
@media (max-width: 480px) {
  .complementary-product__image {
    flex-basis: 25%;
  }
}
.complementary-product__image img {
  width: 100%;
}

.complementary-product__name {
  margin-bottom: 4px;
  color: #000000;
}
.complementary-product__name a {
  color: inherit;
}

.complementary-product__price-wrapper {
  --gap: 4px;
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap);
  font-size: 14px;
}

.complementary-product__price {
  order: 3;
}

.complementary-product__price-compare {
  order: 2;
  margin-right: calc(6px - var(--gap));
  text-decoration: line-through;
}

.complementary-product__price-text--now {
  display: none;
}

.complementary-product__unit-price {
  order: 4;
  font-size: 13px;
  color: #4d4d4d;
  opacity: 0.8;
}

.complementary-product__link {
  display: block;
  margin-top: 12px;
  font-size: 12px;
}
.complementary-product__link::after {
  content: "→";
}

.shopify-cross-border {
  display: flex;
}

.no-js .selectors-form--no-js-hidden {
  display: none;
}

.disclosure {
  --disclosure-max-height: 300px;
  --disclosure-min-height: 92px;
  --disclosure-toggle-text-color: black;
  --disclosure-toggle-background-color: transparent;
  --disclosure-toggle-border-color: black;
  --disclosure-toggle-svg: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6' fill='none'%3E%3Cpath class='icon-chevron-down-left' d='M4 4.5L7 1.5' stroke='black' stroke-width='1.25' stroke-linecap='square'/%3E%3Cpath class='icon-chevron-down-right' d='M4 4.5L1 1.5' stroke='black' stroke-width='1.25' stroke-linecap='square'/%3E%3C/svg%3E");
  --disclosure-toggle-svg-color: black;
  --disclosure-text-color: black;
  --disclosure-background-color: white;
  --disclosure-border-color: black;
  position: relative;
  display: inline-block;
}
.disclosure > summary {
  list-style: none;
}
.disclosure > summary::-webkit-details-marker {
  display: none;
}

.disclosure__toggle {
  width: auto;
  padding: 5px 32px 4px 11px;
  color: black;
  background-color: transparent;
  border: 1px solid black;
  -webkit-appearance: none;
          appearance: none;
}
@supports (color: var(--disclosure-toggle-text-color)) {
  .disclosure__toggle {
    color: var(--disclosure-toggle-text-color);
    background-color: var(--disclosure-toggle-background-color);
    border: 1px solid var(--disclosure-toggle-border-color);
  }
}
.disclosure__toggle:hover {
  cursor: pointer;
}
.disclosure__toggle::after {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 10px;
  height: 7.5px;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6' fill='none'%3E%3Cpath class='icon-chevron-down-left' d='M4 4.5L7 1.5' stroke='black' stroke-width='1.25' stroke-linecap='square'/%3E%3Cpath class='icon-chevron-down-right' d='M4 4.5L1 1.5' stroke='black' stroke-width='1.25' stroke-linecap='square'/%3E%3C/svg%3E");
  content: "";
  transform: translateY(-50%);
}
@supports ((-webkit-mask-image: var(--disclosure-toggle-svg)) or (mask-image: var(--disclosure-toggle-svg))) {
  .disclosure__toggle::after {
    background-color: var(--disclosure-toggle-svg-color);
    background-image: none;
    -webkit-mask-image: var(--disclosure-toggle-svg);
            mask-image: var(--disclosure-toggle-svg);
    -webkit-mask-size: cover;
            mask-size: cover;
  }
}

.disclosure-list {
  position: absolute;
  bottom: 115%;
  display: none;
  max-height: 300px;
  min-height: 92px;
  max-width: 250px;
  min-width: 200px;
  padding: 11px 0;
  margin: 0;
  overflow-y: auto;
  list-style: outside none;
  background-color: white;
  border: 1px solid black;
  border-radius: 0;
}
@supports (max-height: var(--disclosure-max-height)) {
  .disclosure-list {
    max-height: var(--disclosure-max-height);
    min-height: var(--disclosure-min-height);
    background-color: var(--disclosure-background-color);
    border: 1px solid var(--disclosure-border-color);
  }
}
noscript .disclosure-list {
  width: max-content;
}

.disclosure-list--visible {
  display: block;
}

.disclosure-list--alternate-drop {
  right: 0;
}

.disclosure-list__item-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.disclosure-list__item-wrapper:first-child {
  margin-top: 0;
}

.disclosure-list__item--label {
  word-break: keep-all;
  margin-left: 5px;
}

.disclosure__submit {
  margin-top: 1rem;
}

.disclosure-list__item {
  display: block;
  padding: 5px 25px 4px 15px;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.disclosure-list__item.disclosure-list__item-wrapper {
  display: flex;
}
.disclosure-list__item:focus, .disclosure-list__item:hover {
  color: black;
  text-decoration: underline;
}
@supports (color: var(--disclosure-text-color)) {
  .disclosure-list__item:focus, .disclosure-list__item:hover {
    color: var(--disclosure-text-color);
  }
}

.disclosure-list__item--current {
  text-decoration: underline;
}

.disclosure-list__option {
  color: inherit;
  text-decoration: inherit;
}

.disclosure-list__option-code {
  white-space: nowrap;
}

.disclosure {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  height: 100%;
  --disclosure-toggle-border-color: #eeeeee;
  --disclosure-toggle-svg: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-icon arrow-thin-right' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath fill='currentColor' d='M17.427 20L0 2.57298L2.57298 0L22.573 20L2.57298 40L0 37.427L17.427 20Z'/%3E%3C/svg%3E");
  --disclosure-toggle-svg-color: #000000;
  --disclosure-text-color: #8a2432;
  --disclosure-border-color: #eeeeee;
  --disclosure-toggle-text-color: #000000;
}

.shopify-cross-border {
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 480px) {
  .shopify-cross-border {
    flex-direction: column;
    align-items: center;
  }
}

.disclosure__toggle {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  height: 100%;
  padding: 8px 30px 8px 10px;
  margin: 0;
}
.disclosure__toggle:active, .disclosure__toggle:focus {
  border-color: #000000;
  outline: none;
}
.disclosure__toggle::after {
  right: 11px;
  width: 10px;
  height: 10px;
  transform: translateY(-25%) rotate(90deg);
}

.disclosure-list {
  margin-right: 0;
  margin-left: 5px;
  border: none;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes disclosure-list-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.disclosure-list--visible {
  padding: 11px 0;
  border: 1px solid var(--disclosure-border-color);
  animation: disclosure-list-open 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.disclosure-list--visible .disclosure-list__item {
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.disclosure-list--visible .disclosure-list__item:hover,
.disclosure-list--visible .disclosure-list__item:focus {
  text-decoration: none;
  background-color: rgba(238, 238, 238, 0.15);
}
.disclosure-list--visible .disclosure-list__option {
  border-bottom: none;
}
.disclosure-list--visible .disclosure-list__item--current .disclosure-list__option,
.disclosure-list--visible .disclosure-list__item--current:hover .disclosure-list__option,
.disclosure-list--visible .disclosure-list__item--current:focus .disclosure-list__option {
  border-bottom: 1px solid var(--disclosure-text-color);
}
noscript .disclosure-list--visible {
  right: 0;
  padding-right: 11px;
  padding-left: 11px;
}

.disclosure-list__item--current {
  text-decoration: none;
}

.disclosure-list--alternate-drop {
  margin-right: 5px;
  margin-left: 0;
}

.no-js .shopify-cross-border .disclosure-list__item input[type=radio]:focus {
  outline: thin dotted #8a2432;
}

.faceted-filter-swatch {
  --faceted-filter-swatch-size: 1.375rem;
  flex-shrink: 0;
  width: var(--faceted-filter-swatch-size);
  height: var(--faceted-filter-swatch-size);
  line-height: 0;
  border-radius: 50%;
}
.search-filters__filter-link:not([data-disabled]):hover .faceted-filter-swatch, .collection-filters__filter-link:not([data-disabled]):hover .faceted-filter-swatch {
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px rgba(0, 0, 0, 0.5);
}
.search-filters__filter-list-item--active .faceted-filter-swatch, .collection-filters__filter-list-item--active .faceted-filter-swatch {
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #000000;
}

.faceted-filter-swatch__color,
.faceted-filter-swatch__image {
  width: 100%;
  height: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
}

.faceted-filter-swatch__color {
  background-color: var(--faceted-filter-swatch-color, transparent);
}

.faceted-filter-swatch__image {
  object-fit: cover;
}

.recipient-disclosure {
  --recipient-disclosure-top-margin: 0;
  --recipient-disclosure-bottom-margin: 0;
  --recipient-form-field-gap: 0;
  --recipient-form-label-gap: 0;
  --recipient-form-label-margin: 6px;
  --recipient-form-checkbox-width: 12px;
  --recipient-form-checkbox-border-width: 1px;
  --recipient-form-checkbox-border-color: #000000;
  --recipient-form-checkbox-border-radius: 0;
  --recipient-form-checkbox-svg-color: inherit;
  --recipient-form-error-color: #cc3333;
  margin: var(--recipient-disclosure-top-margin) 0 var(--recipient-disclosure-bottom-margin);
}

.recipient-disclosure__summary {
  position: relative;
  list-style: none;
}
.recipient-disclosure__summary::-webkit-details-marker {
  display: none;
}

.recipient-disclosure__checkbox {
  position: absolute;
  -webkit-appearance: none;
          appearance: none;
  width: var(--recipient-form-checkbox-width);
  height: var(--recipient-form-checkbox-width);
  border: var(--recipient-form-checkbox-border-width) solid var(--recipient-form-checkbox-border-color);
  border-radius: var(--recipient-form-checkbox-border-radius);
}
.recipient-disclosure__checkbox:checked ~ svg {
  visibility: visible;
}

.recipient-disclosure__checkbox-label {
  display: flex;
  align-items: center;
}
.recipient-disclosure__checkbox-label svg {
  visibility: hidden;
  position: absolute;
  width: var(--recipient-form-checkbox-width);
  height: var(--recipient-form-checkbox-width);
  color: var(--recipient-form-checkbox-svg-color);
}

.recipient-disclosure__checkbox,
.recipient-disclosure__checkbox-label {
  cursor: pointer;
}

.recipient-disclosure__checkbox-label-text {
  flex: 1;
  margin-left: calc(var(--recipient-form-checkbox-width) + var(--recipient-form-label-margin));
}

.recipient-form {
  display: flex;
  flex-direction: column;
  gap: var(--recipient-form-field-gap);
  margin-top: 1rem;
}

.recipient-form__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--recipient-form-label-gap);
}

.recipient-form__input {
  box-sizing: border-box;
}

.recipient-form__error-message {
  display: none;
}
.recipient-form--has-errors .recipient-form__error-message {
  display: block;
}

.recipient-form__max-characters-message {
  display: block;
  margin-top: 0.25rem;
}

.recipient-disclosure {
  --recipient-disclosure-top-margin: 1rem;
  --recipient-disclosure-bottom-margin: 2rem;
  --recipient-form-field-gap: 1.25rem;
  --recipient-form-checkbox-width: 14px;
  --recipient-form-checkbox-border-color: #8a2432;
  --recipient-form-checkbox-svg-color: #8a2432;
  --recipient-form-error-color: #ee575a;
}
.recipient-disclosure + .product-submit {
  margin-top: 0;
}
.has-no-variants .recipient-disclosure + .product-submit {
  margin-top: 0;
}
@media (max-width: 959px) {
  .recipient-disclosure {
    --recipient-disclosure-top-margin: 0;
    --recipient-disclosure-bottom-margin: 1rem;
  }
}

.product-details-alignment-left .product-form-grid-select.product-form-grid--quantity-true + .recipient-disclosure {
  --recipient-disclosure-top-margin: 2rem;
}
@media (max-width: 959px) {
  .product-details-alignment-left .product-form-grid-select.product-form-grid--quantity-true + .recipient-disclosure {
    --recipient-disclosure-top-margin: 0;
  }
}

.product-details-alignment-center .product-form-grid-select + .recipient-disclosure .recipient-disclosure__summary {
  display: flex;
  justify-content: center;
}

.recipient-disclosure__checkbox-label-text {
  font-family: ,;
  font-style: ;
  font-weight: 0;
}
@media (max-width: 959px) {
  .recipient-disclosure__checkbox-label-text {
    padding: 1rem 0;
  }
}

.recipient-form {
  padding-top: 1rem;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 959px) {
  .recipient-form {
    margin: 0 0 2rem;
  }
}

.recipient-form--has-errors .recipient-form__input.recipient-form__input--email {
  color: #000000;
  border: 1px solid var(--recipient-form-error-color);
  box-shadow: 0 0 7px rgba(238, 87, 90, 0.4);
}
.recipient-form__input.recipient-form__input--date {
  display: inline-flex;
}

.recipient-form__error-message {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 0.5rem;
  font-size: 14px;
  color: var(--recipient-form-error-color);
}

.recipient-form__max-characters-message {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-top: 0.25rem;
}

.picture-block {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  justify-content: space-between;
  
    
  background-color: #ededed;
}
.picture-block.picture-block--is-spaced-false {
  margin-top: 0;
}
@media screen and (max-width: 700px) {
  .picture-block {
    flex-direction: column;
  }
}
.picture-block.picture-block--desktop-height-small .picture-block-image {
  height: 500px;
}
.picture-block.picture-block--desktop-height-medium .picture-block-image {
  height: 600px;
}
.picture-block.picture-block--desktop-height-large .picture-block-image {
  height: 700px;
}
.picture-block.picture-block--desktop-height-extra-large .picture-block-image {
  height: 800px;
}
@media (min-width: 720px) {
  .picture-block.picture-block--desktop-height-natural .picture-block-image {
    height: auto;
  }
  .picture-block.picture-block--desktop-height-natural .picture-block-image img,
  .picture-block.picture-block--desktop-height-natural .picture-block-image svg {
    position: static;
    max-width: 100%;
    min-height: 100%;
    transform: translate(0, 0);
  }
  @supports (-webkit-appearance: none) {
    .picture-block.picture-block--desktop-height-natural .picture-block-image img {
      width: auto;
      height: auto;
      object-fit: fill;
    }
  }
  .picture-block.picture-block--desktop-height-natural .picture-block-image.picture-block-image--extended {
    display: flex;
  }
}
@media (max-width: 719px) {
  .picture-block.picture-block--mobile-height-small .picture-block-image {
    height: 300px;
  }
  .picture-block.picture-block--mobile-height-medium .picture-block-image {
    height: 400px;
  }
  .picture-block.picture-block--mobile-height-large .picture-block-image {
    height: 500px;
  }
  .picture-block.picture-block--mobile-height-natural .picture-block-image {
    height: auto;
  }
  .picture-block.picture-block--mobile-height-natural .picture-block-image img,
  .picture-block.picture-block--mobile-height-natural .picture-block-image svg {
    position: static;
    max-width: 100%;
    min-height: auto;
    transform: translate(0, 0);
  }
  @supports (-webkit-appearance: none) {
    .picture-block.picture-block--mobile-height-natural .picture-block-image img {
      width: auto;
      height: auto;
      object-fit: fill;
    }
  }
}
.picture-block + .picture-block.home-section {
  margin-top: 0;
}

.picture-block-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.125rem 0;
}

.picture-block-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}
.picture-block-image img,
.picture-block-image svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
@supports (-webkit-appearance: none) {
  .picture-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 720px) {
  .picture-block .picture-block-image.picture-block-image--extended {
    height: auto;
  }
}

.picture-block + .content-area .section-border, .picture-block + .marquee.marquee--is-wide-false .section-border, .picture-block + .collection-title-header .section-border {
  border-top: 0;
}

@media screen and (min-width: 700px) {
  .picture-block-right .picture-block-wrapper {
    width: 50%;
  }
  .picture-block-right .picture-block-image {
    order: 1;
    width: 50%;
  }
  .picture-block-left .picture-block-wrapper {
    width: 50%;
  }
  .picture-block-left .picture-block-image {
    order: 0;
    width: 50%;
  }
}
.picture-block-content {
  max-width: 60%;
  text-align: center;
}

.picture-block-heading {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 62px;
  color: #000000;
}
@media screen and (max-width: 800px) {
  .picture-block-heading {
    font-size: 45px;
    line-height: 46px;
  }
}
@media screen and (max-width: 500px) {
  .picture-block-heading {
    font-size: 32px;
    line-height: 32px;
  }
}

.picture-block-body {
  color: #4d4d4d;
}

@media screen and (max-width: 700px) {
  .picture-block-image {
    width: 100%;
  }
}
.picture-block-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ededed;
}
.picture-block-empty p {
  max-width: 75%;
}

.live-search {
  display: flex;
  align-items: center;
  margin-right: 6px;
  margin-left: 6px;
}

.ls-button-search {
  padding: 0;
  color: #c5b9ac;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
}
.no-js .ls-button-search {
  display: flex;
}
.live-search-visible .ls-button-search {
  opacity: 0;
}
.no-js .ls-button-search.ls-button-search--no-js-hidden {
  display: none;
}

.ls-label {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-right: 6px;
  margin-left: 6px;
  font-size: 14px;
  color: #8a2432;
}
.no-js .ls-label.ls-label--no-js-hidden {
  display: none;
}
.header-minimal .ls-label {
  display: none;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .ls-label {
    display: none;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .ls-label {
    display: none;
  }
}

.ls-dimmer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7000;
  display: block;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .ls-dimmer {
    opacity: 1;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .ls-dimmer {
    opacity: 1;
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .ls-dimmer {
    pointer-events: none;
    opacity: 0;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .ls-dimmer {
    pointer-events: none;
    opacity: 0;
  }
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .live-search-hidden .ls-dimmer {
    top: -100%;
    left: -100%;
    pointer-events: none;
    opacity: 0;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .live-search-hidden .ls-dimmer {
    top: -100%;
    left: -100%;
    pointer-events: none;
    opacity: 0;
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .live-search-hidden .ls-dimmer {
    top: -100%;
    left: -100%;
    pointer-events: none;
    opacity: 0;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .live-search-hidden .ls-dimmer {
    top: -100%;
    left: -100%;
    pointer-events: none;
    opacity: 0;
  }
}
.no-js .ls-dimmer {
  display: none;
}

.ls-form {
  position: absolute;
  top: 0;
  z-index: 7500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  visibility: visible;
  background-color: #ffffff;
  border-bottom: 1px solid #8a2432;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, width 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .ls-form {
    position: fixed;
    left: 0;
    padding: 14px 18px 14px 15px;
    border-bottom: 0;
    transition: padding-left 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .ls-form {
    position: fixed;
    left: 0;
    padding: 14px 18px 14px 15px;
    border-bottom: 0;
    transition: padding-left 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .ls-form {
    top: 50%;
    width: 270px;
    transform: translateY(-50%);
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .ls-form {
    top: 50%;
    width: 270px;
    transform: translateY(-50%);
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .live-search-alignment-left .ls-form {
    left: 0;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .live-search-alignment-left .ls-form {
    left: 0;
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .live-search-alignment-right .ls-form {
    right: 0;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .live-search-alignment-right .ls-form {
    right: 0;
  }
}
.live-search-hidden .ls-form {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .live-search-hidden .ls-form {
    padding-left: 30px;
  }
  html:not(.header-layout-minimal) .live-search-hidden .ls-form .ls-input {
    opacity: 0;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .live-search-hidden .ls-form {
    padding-left: 30px;
  }
  html.header-layout-minimal .live-search-hidden .ls-form .ls-input {
    opacity: 0;
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .live-search-hidden .ls-form {
    width: 160px;
    border-color: transparent;
  }
  html:not(.header-layout-minimal) .live-search-hidden .ls-form .ls-input {
    visibility: hidden;
    opacity: 0;
  }
  html:not(.header-layout-minimal) .live-search-hidden .ls-form .ls-form-button-close {
    opacity: 0;
    transform: translateX(-10px);
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .live-search-hidden .ls-form {
    width: 160px;
    border-color: transparent;
  }
  html.header-layout-minimal .live-search-hidden .ls-form .ls-input {
    visibility: hidden;
    opacity: 0;
  }
  html.header-layout-minimal .live-search-hidden .ls-form .ls-form-button-close {
    opacity: 0;
    transform: translateX(-10px);
  }
}
.no-js .ls-form {
  display: none;
}

.ls-form-button-search {
  flex-grow: 0;
  flex-shrink: 0;
  order: 0;
  padding: 0;
  color: #8a2432;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
}
.ls-form-button-search .svg-icon {
  width: 18px;
  height: 19px;
}

.ls-form-button-close {
  flex-grow: 0;
  flex-shrink: 0;
  order: 2;
  padding: 0;
  color: #8a2432;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .ls-form-button-close {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .ls-form-button-close {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.ls-form-button-close .svg-icon {
  width: 14px;
  height: 14px;
}

.ls-input {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  flex-grow: 1;
  order: 1;
  min-width: 0;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 14px;
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .ls-input {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .ls-input {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }
}
.ls-input::placeholder {
  color: #4d4d4d;
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .ls-input {
    font-size: 16px;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .ls-input {
    font-size: 16px;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.ls-results {
  position: fixed;
  z-index: 8000;
  width: 100%;
  max-width: 750px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .ls-results {
    bottom: 0;
    max-width: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border: 0;
    box-shadow: none;
    transition: none;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .ls-results {
    bottom: 0;
    max-width: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border: 0;
    box-shadow: none;
    transition: none;
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .ls-results {
    margin-top: -1px;
    overflow-y: auto;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .ls-results {
    margin-top: -1px;
    overflow-y: auto;
  }
}
@media (max-width: 719px) {
  html:not(.header-layout-minimal) .live-search-results-hidden .ls-results {
    pointer-events: none;
    opacity: 0;
  }
}
@media (max-width: 959px) {
  html.header-layout-minimal .live-search-results-hidden .ls-results {
    pointer-events: none;
    opacity: 0;
  }
}
@media (min-width: 720px) {
  html:not(.header-layout-minimal) .live-search-results-hidden .ls-results {
    pointer-events: none;
    opacity: 0;
  }
}
@media (min-width: 960px) {
  html.header-layout-minimal .live-search-results-hidden .ls-results {
    pointer-events: none;
    opacity: 0;
  }
}
.no-js .ls-results {
  display: none;
}


  
  

  
  
.pagination {
  padding: 12px 0;
  clear: both;
  text-align: center;
}
.pagination > li {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: inline-block;
  font-size: 14px;
}
.pagination > li:first-child {
  padding-left: 0;
}
.pagination > li.pagination__button-previous, .pagination > li.pagination__button-next {
  color: rgba(0, 0, 0, 0.7);
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color;
}
.pagination > li.pagination__button-previous:hover, .pagination > li.pagination__button-next:hover {
  color: 










rgba(15, 15, 15, 0.5)




;
}
.pagination > li.pagination__button-previous a, .pagination > li.pagination__button-next a {
  color: #8a2432;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color;
}
.pagination > li.pagination__button-previous a:hover, .pagination > li.pagination__button-next a:hover {
  color: 










#781f2b




;
}
.pagination > li.position {
  margin: 0 25px;
  color: #000000;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color;
}
.pagination > li.position:hover {
  color: 










#0f0f0f




;
}
.pagination.jump-to-page .jump-to-link {
  opacity: 0.7;
}
.pagination.jump-to-page .jump-to-link.active {
  opacity: 1;
}
.pagination.jump-to-page .jump-to-link a {
  color: #000000;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) color;
}
.pagination.jump-to-page .jump-to-link a:hover {
  color: 










#0f0f0f




;
}
.pagination.jump-to-page li {
  margin: 0 5px;
  border: 0;
}
.pagination.jump-to-page li:nth-of-type(2):not(.pagination__button-previous) {
  margin-left: 15px;
}
.pagination.jump-to-page li:nth-last-child(2):not(.pagination__button-next) {
  margin-right: 15px;
}

.pswp {
  z-index: 9000;
}

.pswp__bg {
  background-color: #ffffff;
}

.pswp__top-bar {
  height: 45px;
  background-color: transparent;
}

.pswp__button::before {
  display: none;
}
.pswp__button.pswp__button--close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 10px;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.75);
  background-image: none;
  border-radius: 50%;
  opacity: 1;
}
@media (max-width: 719px) {
  .pswp__button.pswp__button--close {
    width: 36px;
    height: 36px;
  }
}
.pswp__button.pswp__button--close svg {
  display: block;
  width: 18px;
  height: 18px;
  color: #000000;
  pointer-events: none;
  fill: currentColor;
}
@media (max-width: 719px) {
  .pswp__button.pswp__button--close svg {
    width: 16px;
    height: 16px;
  }
}
.pswp__button.pswp__button--arrow--left, .pswp__button.pswp__button--arrow--right {
  width: 50px;
  height: 50px;
  margin-top: 0;
  line-height: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
}
.pswp__button.pswp__button--arrow--left .svg-icon, .pswp__button.pswp__button--arrow--right .svg-icon {
  position: relative;
  z-index: -1;
  width: 20px;
  height: 20px;
  color: #000000;
}
.pswp--touch .pswp__button.pswp__button--arrow--left, .pswp--touch .pswp__button.pswp__button--arrow--right {
  visibility: visible;
}
.pswp__button.pswp__button--arrow--left {
  left: 15px;
}
.pswp__button.pswp__button--arrow--right {
  right: 15px;
}

.pswp__img--placeholder {
  background-color: #fff;
}

.product-gallery {
  display: grid;
  float: left;
  width: 55%;
  grid-template-columns: 15% 85%;
  grid-template-rows: auto auto;
}
@media (max-width: 719px) {
  .product-gallery {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .product-gallery[data-product-gallery-layout=gallery-right] {
    grid-template-columns: 85% 15%;
  }
}

.product-gallery--viewport {
  display: flex;
  flex-direction: column;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 1023px) {
  .product-gallery--viewport {
    grid-row-end: 2;
  }
}
@media (min-width: 1024px) {
  [data-product-gallery-layout=gallery-left] .product-gallery--viewport.product-gallery--viewport--has-navigation {
    grid-column-start: 2;
  }
  [data-product-gallery-layout=gallery-right] .product-gallery--viewport.product-gallery--viewport--has-navigation {
    grid-column-end: 2;
  }
  [data-product-gallery-layout=gallery-below] .product-gallery--viewport.product-gallery--viewport--has-navigation {
    grid-row-end: 2;
  }
}

.product-gallery--navigation {
  display: flex;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 1023px) {
  .product-gallery--navigation {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 20px;
    margin-bottom: -10px;
    margin-left: -10px;
    grid-row-start: 2;
  }
}
@media (min-width: 1024px) {
  [data-product-gallery-layout=gallery-left] .product-gallery--navigation {
    flex-direction: column;
    margin-right: 20px;
    grid-column-end: 2;
  }
  [data-product-gallery-layout=gallery-right] .product-gallery--navigation {
    flex-direction: column;
    margin-left: 20px;
    grid-column-start: 2;
  }
  [data-product-gallery-layout=gallery-below] .product-gallery--navigation {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 20px;
    margin-bottom: -10px;
    margin-left: -10px;
    grid-row-start: 2;
  }
}

.product-gallery--viewport--figure {
  position: relative;
}
[data-product-gallery-layout=gallery-left] .product-gallery--viewport--figure:not([data-product-gallery-selected=true]), [data-product-gallery-layout=gallery-right] .product-gallery--viewport--figure:not([data-product-gallery-selected=true]), [data-product-gallery-layout=gallery-below] .product-gallery--viewport--figure:not([data-product-gallery-selected=true]) {
  display: none;
}
.product-gallery--viewport--figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
[data-product-gallery-image-zoom] .product-gallery--viewport--figure img {
  cursor: zoom-in;
}
.product-gallery--viewport--figure video {
  display: block;
  max-width: 100%;
}
.product-gallery--viewport--figure .product-gallery--media-wrapper {
  position: relative;
}
.product-gallery--viewport--figure[data-media-type=model] .product-gallery--media-wrapper {
  height: 0;
  padding-bottom: 100%;
}
.product-gallery--viewport--figure[data-media-type=model] .product-gallery--media-wrapper model-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-gallery--viewport--figure[data-media-type=external_video] .product-gallery--media-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.product-gallery--viewport--figure[data-media-type=external_video] .product-gallery--media-wrapper > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-gallery--viewport--figure .product-gallery--border-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.product-gallery--viewport--figure[data-media-type=video] .product-gallery--media-wrapper > video {
  visibility: hidden;
}

.product-gallery--media-thumbnail {
  position: relative;
  max-width: 100%;
  padding: 0;
  background: none;
  border: 0;
}
@media (max-width: 1023px) {
  .product-gallery--media-thumbnail {
    margin-bottom: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 1024px) {
  [data-product-gallery-layout=gallery-left] .product-gallery--media-thumbnail:not(:first-child), [data-product-gallery-layout=gallery-right] .product-gallery--media-thumbnail:not(:first-child) {
    margin-top: 10px;
  }
  [data-product-gallery-layout=gallery-below] .product-gallery--media-thumbnail {
    margin-bottom: 10px;
    margin-left: 10px;
  }
}
.product-gallery--media-thumbnail::after {
  transition: box-shadow 200ms;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  box-shadow: none;
}
.product-gallery--media-borders .product-gallery--media-thumbnail::after {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.product-gallery--media-thumbnail[data-product-gallery-selected=true]::after {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}
.product-gallery--media-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
[data-product-gallery-layout=gallery-below] .product-gallery--media-thumbnail img {
  width: 75px;
}
@media (max-width: 1023px) {
  .product-gallery--media-thumbnail img {
    width: 75px;
    min-width: 60px;
  }
}
.product-gallery--media-thumbnail svg {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  color: #000000;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.product-gallery--viewinyourspace {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 0;
  color: #000000;
  background-color: rgba(0, 0, 0, 0.08);
  border: 0;
}
.product-gallery--viewinyourspace[data-shopify-xr-hidden] {
  visibility: hidden;
}
@media (min-width: 1024px) {
  .product-gallery--viewinyourspace[data-shopify-xr-hidden] {
    display: none;
  }
}
.product-gallery--viewinyourspace svg {
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.plyr.plyr--video {
  color: #000000;
  background-color: #ffffff;
}
.plyr.plyr--video .plyr__control {
  color: #000000;
  background: #ffffff;
  border: 0;
}
.plyr.plyr--video > .plyr__control {
  width: 60px;
  height: 60px;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.plyr.plyr--video > .plyr__control > svg {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr.plyr--video > .plyr__control:hover > svg {
  opacity: 0.55;
}
.plyr.plyr--video > .plyr__control:active {
  opacity: 0.7;
}
.plyr.plyr--video .plyr__progress__buffer {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.6;
}
.plyr.plyr--video .plyr__control--overlaid.plyr__tab-focus,
.plyr.plyr--video .plyr__control--overlaid:hover {
  color: #000000;
}
.plyr.plyr--video .plyr__video-wrapper,
.plyr.plyr--video .plyr__poster {
  background-color: #ffffff;
}
.plyr.plyr--video .plyr__controls {
  background: #ffffff;
  border: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.plyr.plyr--video .plyr__tooltip {
  color: #ffffff;
  background: #000000;
}
.plyr.plyr--video .plyr__tooltip:before {
  border-top: 4px solid #000000;
}
.plyr.plyr--video.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background-image: linear-gradient(to right, #000000 var(--value, 0%), rgba(0, 0, 0, 0.6) var(--value, 0%));
}
.plyr.plyr--video.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--video.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--video.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--video.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  box-shadow: 2px 0 0 0 #ffffff;
}
.plyr.plyr--video.plyr--full-ui input[type=range]::-moz-range-track {
  box-shadow: 2px 0 0 0 #ffffff;
}
.plyr.plyr--video.plyr--full-ui input[type=range]::-ms-thumb {
  box-shadow: 2px 0 0 0 #ffffff;
}
.plyr.plyr--video.plyr--full-ui input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--video.plyr--full-ui input[type=range]:active::-moz-range-track {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--video.plyr--full-ui input[type=range]:active::-ms-thumb {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--video.plyr--full-ui .plyr__volume {
  background-color: #000000;
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-runnable-track {
  background-image: linear-gradient(to right, #ffffff var(--value, 0%), rgba(255, 255, 255, 0.6) var(--value, 0%));
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-thumb {
  color: #ffffff;
  box-shadow: 2px 0 0 0 #000000;
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range]::-moz-range-track {
  color: #ffffff;
  box-shadow: 2px 0 0 0 #000000;
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range]::-ms-thumb {
  color: #ffffff;
  box-shadow: 2px 0 0 0 #000000;
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range]:active::-moz-range-track {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--video.plyr--full-ui .plyr__volume input[type=range]:active::-ms-thumb {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.shopify-model-viewer-ui {
  --progress-bar-color: #000000;
  --progress-bar-height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.shopify-model-viewer-ui:not(.shopify-model-viewer-ui--fullscreen) .shopify-model-viewer-ui__control-icon.shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: none;
}
.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon.shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: none;
}
.shopify-model-viewer-ui model-viewer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.shopify-model-viewer-ui model-viewer.shopify-model-viewer-ui__disabled {
  pointer-events: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 46px;
  height: auto;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area:not(.shopify-model-viewer-ui__controls-area--playing) {
  display: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area:focus-within {
  opacity: 1;
}
.shopify-model-viewer-ui:hover .shopify-model-viewer-ui__controls-area {
  opacity: 1;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button:focus {
  z-index: 1;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--zoom-out,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--zoom-in,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--fullscreen {
  cursor: pointer;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control {
  width: 46px;
  height: 46px;
  padding: 0;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
body:not(.user-is-tabbing) .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster,
body:not(.user-is-tabbing) .shopify-model-viewer-ui .shopify-model-viewer-ui__button--control {
  outline: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster svg,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control svg {
  width: 46px;
  height: 46px;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover svg,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover svg {
  opacity: 0.55;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:active,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active {
  background-color: #f2f2f2;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  position: absolute;
  top: calc(50% - 60px/2);
  left: calc(50% - 60px/2);
  z-index: 1;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover svg {
  opacity: 0.55;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster svg {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:first-child {
  border-bottom: 0;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:last-child {
  border-top: 0;
}

.inventory-status-block.product-block--border {
  padding: 0;
  border: none;
}

.inventory-status {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.product-block--border .inventory-status {
  border-bottom: 1px solid #eeeeee;
}
.inventory-status[data-inventory-status-variant-selected=true] {
  display: block;
}
.inventory-status[data-inventory-status-variant-selected=false] {
  display: none;
}

.inventory-status__bar {
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 0.625rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}

.inventory-status__label {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 0;
  font-size: 14px;
}
.inventory-status--in-stock .inventory-status__label, .inventory-status--incoming-stock .inventory-status__label {
  color: #000000;
}
.inventory-status--low-stock .inventory-status__label {
  color: #8a2432;
}
.inventory-status--untracked-or-continued-stock .inventory-status__label {
  width: 100%;
  color: #000000;
}

.inventory-status__bar-fill {
  width: calc(var(--inventory-status-inventory-quantity) / var(--inventory-status-initial-stock-level) * 100%);
  max-width: 100%;
  height: 100%;
}
.inventory-status--in-stock .inventory-status__bar-fill {
  background-color: #000000;
}
.inventory-status--low-stock .inventory-status__bar-fill {
  background-color: #8a2432;
}
.inventory-status--untracked-or-continued-stock .inventory-status__bar-fill {
  width: 100%;
  background-color: #000000;
}

.product-list {
  font-size: 0;
  text-align: left;
}

.product-list::before, .product-list::after,
.collections::before,
.collections::after {
  order: 999;
  min-width: calc(50% - 15px);
  content: "";
}
.product-list.row-of-3::before, .product-list.row-of-3::after,
.collections.row-of-3::before,
.collections.row-of-3::after {
  min-width: calc(33.33333% - 15px);
}
.product-list.row-of-4::before, .product-list.row-of-4::after,
.collections.row-of-4::before,
.collections.row-of-4::after {
  min-width: calc(25% - 15px);
}

.product {
  display: inline-block;
  width: 25%;
  padding-left: 30px;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 719px) {
  .product {
    display: block;
    width: 60%;
    min-width: 290px;
    padding-left: 0;
    margin: 0 auto 35px;
    text-align: center;
  }
  .product.last {
    margin-bottom: 0;
  }
}
.product figure > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
}
.product figure > a:focus {
  outline: auto 5px -webkit-focus-ring-color;
}
.product figure > a.with-border {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 719px) {
  .product .with-border + .overlay {
    box-shadow: inset 0 0 0 1px #ffffff;
  }
}
.product .quick-shop-content {
  display: none;
}
@media (max-width: 719px) {
  .product .quickshop-trigger {
    display: none;
  }
}

.badge {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: inline-block;
  padding: 5px 7px 4px;
  margin-right: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .product-list-withsidebar .badge {
    padding: 4px 6px;
    font-size: 11px;
  }
}

.badges-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
}

.badge-sale {
  background-color: #8a2432;
}

.badge-new {
  background-color: #000000;
}

.badge-soldout {
  background-color: #757575;
}

.product .brand,
.quick-shop-content .brand,
.product-area .brand {
  margin: 25px 0 0;
  font-size: 15px;
}
@media (max-width: 719px) {
  .product .brand,
  .quick-shop-content .brand,
  .product-area .brand {
    margin-top: 30px;
  }
}
.product .brand a,
.quick-shop-content .brand a,
.product-area .brand a {
  color: #4d4d4d;
}
.product .title,
.quick-shop-content .title,
.product-area .title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin: 10px 0 0;
  font-size: 16px;
  color: #000000;
}.product .title,
  .quick-shop-content .title,
  .product-area .title {
    text-transform: uppercase;
  }.product .title a,
.quick-shop-content .title a,
.product-area .title a {
  color: #000000;
}
.product .title a:hover,
.quick-shop-content .title a:hover,
.product-area .title a:hover {
  color: #8a2432;
}

.product-item__price {
  margin-top: 13px;
  font-size: 14px;
  color: #000000;
}
.product-item__price .label {
  margin-right: 5px;
  color: #000000;
}
.product-item__price .original {
  margin-right: 6px;
  text-decoration: line-through;
}

.product-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-inner:hover, .product-inner:focus, .product-inner:focus-within {
  overflow: visible;
}
.product-inner:hover .product-card-overlay,
.product-inner:hover .product-card-footer, .product-inner:focus .product-card-overlay,
.product-inner:focus .product-card-footer, .product-inner:focus-within .product-card-overlay,
.product-inner:focus-within .product-card-footer {
  opacity: 1;
  transform: translateY(0);
}
.product-inner:hover .product-card-overlay-content, .product-inner:focus .product-card-overlay-content, .product-inner:focus-within .product-card-overlay-content {
  opacity: 1;
}
.product-inner:hover .product-card-figure, .product-inner:focus .product-card-figure, .product-inner:focus-within .product-card-figure {
  overflow: visible;
}

.product-card-figure {
  overflow: hidden;
}

.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: auto;
  padding: 14px 0 0;
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.with-border + .product-card-overlay {
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.has-touch .product-card-overlay {
  display: none;
}
.product-card-overlay.product-card-overlay--hide {
  display: none;
}
.product figure > .product-card-overlay {
  top: auto;
}
.product-card-overlay .product-card-overlay-content {
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-alt .product-card-overlay .product-card-overlay-content {
  opacity: 1;
}
.product-card-alt .product-card-overlay {
  padding: 15px 17px;
  background-color: rgba(138, 36, 50, 0.95);
}
.product-card-alt .product-card-overlay .product-card-overlay-content {
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-overlay .brand,
.product-card-overlay .title,
.product-card-overlay .product-item__price,
.product-card-overlay .product-item__unit-price {
  color: #ffffff;
}
.product-card-overlay .product-item__unit-price {
  opacity: 0.8;
}

.product-card-alt .product-card-footer {
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.product-card-footer,
.product-card-footer-mobile {
  margin-top: 16px;
}

.product-card-footer {
  display: block;
}
.has-touch .product-card-footer {
  display: none;
}

.product-card-footer-mobile {
  display: none;
}
.has-touch .product-card-footer-mobile {
  display: block;
}

.product-card-details .brand {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  word-break: break-word;
}
.product-card-details .title {
  margin-top: 5px;
  margin-bottom: 9px;
  font-size: 18px;
}

.product-item__price {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.product-item__price .money--last {
  margin-right: 10px;
}

.product-item__unit-price {
  margin-top: 2px;
  margin-left: 4px;
  font-size: 13px;
  color: #4d4d4d;
}
@media (max-width: 719px) {
  .product-item__unit-price {
    margin-bottom: 2px;
    font-size: 12px;
  }
}

.product-card-interactions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.product-card-interaction {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 6px);
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 719px) {
  .product-card-interaction {
    width: 100%;
    margin-bottom: 12px;
  }
  .product-card-interaction:last-child {
    margin-bottom: 0;
  }
}
.product-card-interaction:only-child {
  width: 100%;
}

@media (max-width: 719px) {
  .product-card-interaction-quickshop {
    display: none;
  }
}

.product-card-interaction-addtocart-text {
  display: flex;
  justify-content: center;
}
.addtocart-button-loading .product-card-interaction-addtocart-text {
  display: none;
}

.product-card-interaction-addtocart-available {
  display: none;
}
.addtocart-button-active .product-card-interaction-addtocart-available {
  display: flex;
  justify-content: center;
}

.product-card-interaction-addtocart-error {
  display: none;
}
.addtocart-button-error .product-card-interaction-addtocart-error {
  display: flex;
  justify-content: center;
}

.product-card-interaction-addtocart-spinner {
  display: none;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  animation: spinner 700ms infinite cubic-bezier(0.69, 0.31, 0.56, 0.83);
  transform-origin: center center;
}
.addtocart-button-loading .product-card-interaction-addtocart-spinner {
  display: flex;
}
.product-card-interaction-addtocart-spinner svg {
  display: block;
  width: 18px;
  height: 18px;
}
.addtocart-button-loading.product-submit .product-card-interaction-addtocart-spinner {
  width: 19px;
  height: 19px;
}
.addtocart-button-loading.product-submit .product-card-interaction-addtocart-spinner svg {
  width: 19px;
  height: 19px;
}

.product-card-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-grid-square .product-card-figure {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.product-grid-tall .product-card-figure {
  width: 100%;
  height: 0;
  padding-bottom: 125%;
}
.product-grid-taller .product-card-figure {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
}
.product-grid-wide .product-card-figure {
  width: 100%;
  height: 0;
  padding-bottom: 66.6666666667%;
}
.product-grid-square .product-card-figure .placeholder-svg, .product-grid-tall .product-card-figure .placeholder-svg, .product-grid-taller .product-card-figure .placeholder-svg, .product-grid-wide .product-card-figure .placeholder-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.product-card-figure img {
  position: absolute;
  width: 100%;
  height: auto;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@supports (object-fit: cover) {
  .product-card-figure img {
    height: 100%;
    object-fit: cover;
  }
  .product-card-figure img:last-of-type {
    opacity: 0;
  }
  .product-card-figure img:first-of-type {
    opacity: 1;
  }
  .product-grid-default .product-card-figure img:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .product-grid-default .product-card-figure img:first-of-type {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@supports (object-fit: cover) {
  .product-card-figure:hover img:first-of-type {
    opacity: 0;
  }
  .product-card-figure:hover img:last-of-type {
    opacity: 1;
  }
}

.option {
  display: block;
  margin-bottom: 26px;
}
.option:last-child {
  margin-bottom: 0;
}

.option-header {
  display: block;
  margin-bottom: 12px;
  text-align: left;
}
.template-product .option-header {text-align:center !important;}
.option-name {
  margin-bottom: 0;
}

.option-values {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content:center;
}

.option-value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  margin-bottom: 14px;
}
.option-value:last-child {
  margin-right: 0;
}

.option-value-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.option-value-input:focus + .option-value-name {
  outline: auto 5px Highlight;
  outline: auto 5px -webkit-focus-ring-color;
}
.option-value-input:checked + .option-value-name {
  color: white;
  background-color: #8a2432;
  border-color: #4d141c;
}
.option-value-input:checked:disabled + .option-value-name {
  color: #000000;
  background-color: #e2c8cc;
  border-color: #e2c8cc;
}
.option-value-input:disabled + .option-value-name {
  background: #ffffff;
  color: #808080;
  border-color: #eeeeee;
  opacity: 0.5;
  text-decoration: line-through;
}

.option-value-name {
  position: relative;
  z-index: 1;
  min-width: 46px;
  padding: 11px 12px;
  text-align: center;
  border: 1px solid #eeeeee;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating {
  display: flex;
  align-items: center;
}

.rating__star-wrapper {
  display: flex;
}

.icon-star-background {
  transform: scaleX(var(--rating-scale, 0));
}

.icon-star-reference {
  position: absolute;
  left: -9999;
  width: 0;
  height: 0;
}

.rating__star {
  width: 20px;
  height: auto;
}

.rating__star-1 {
  --rating-scale: calc(var(--rating-value));
}

.rating__star-2 {
  --rating-scale: calc(var(--rating-value) - 1);
}

.rating__star-3 {
  --rating-scale: calc(var(--rating-value) - 2);
}

.rating__star-4 {
  --rating-scale: calc(var(--rating-value) - 3);
}

.rating__star-5 {
  --rating-scale: calc(var(--rating-value) - 4);
}

.rating__text {
  display: none;
}

.rating__count {
  margin: 0 0 0 5px;
}

@media (forced-colors: active) {
  .rating__star-wrapper {
    display: none;
  }
  .rating__text {
    display: block;
  }
}
html .shopify-payment-button {
  padding-bottom: 0;
  margin: 0 auto;
}
@media (max-width: 719px) {
  html .shopify-payment-button {
    padding-bottom: 0;
  }
}
html .shopify-payment-button .shopify-payment-button__button {
  overflow: hidden;
}
html .shopify-payment-button .shopify-payment-button__button div[role=button] {
  max-height: 44px !important;
}
html .shopify-payment-button .shopify-payment-button__button--unbranded {
  padding: 17px 24px;
  font-size: 13px;
  line-height: 1;
}
html .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
  color: #000000;
  background-color: 










#781f2b




;
}
html .shopify-payment-button .shopify-payment-button__button--unbranded:disabled {
  cursor: default;
}
html .shopify-payment-button .shopify-payment-button__button--unbranded:disabled:hover {
  background-color: #8a2432;
  border: 1px solid #8a2432;
}
html .shopify-payment-button .shopify-payment-button__button--branded {
  padding: 0;
  background-color: transparent;
  border: none;
}
html .shopify-payment-button svg {
  width: 100%;
}
html .shopify-payment-button__more-options {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding-right: 10%;
  padding-left: 10%;
  margin-bottom: 25px;
  font-size: 14px;
  color: #8a2432;
}
html .shopify-payment-button__more-options.shopify-payment-button__button--visible {
  margin-bottom: 30px;
}
@media (max-width: 719px) {
  html .shopify-payment-button__more-options.shopify-payment-button__button--visible {
    margin-bottom: 10px;
  }
}
html .shopify-payment-button__more-options.shopify-payment-button__button--hidden {
  display: none;
}
html .shopify-payment-button__more-options:hover:not([disabled]) {
  color: 










#781f2b




;
  text-decoration: none;
}

.product-form-outofstock .shopify-payment-button {
  display: none;
}

.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: #66b544;
  --surface-pick-up-embed-theme-error-color: #ee575a;
  --surface-pick-up-embed-theme-paragraph-font-size: 1rem;
  --surface-pick-up-embed-theme-body-font-weight-bold: 700;
  --surface-pick-up-embed-theme-body-text-color: #000000;
  --surface-pick-up-embed-theme-link-text-decoration: underline;
  margin-top: 25px;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.surface-pick-up--loading .surface-pick-up-embed {
  opacity: 0;
}
.surface-pick-up.details-alignment--center .surface-pick-up-embed {
  text-align: center;
  justify-content: center;
}

.surface-pick-up-item {
  --surface-pick-up-item-theme-success-color: #66b544;
  --surface-pick-up-item-theme-error-color: #ee575a;
  --surface-pick-up-item-theme-paragraph-font-size: 1rem;
  --surface-pick-up-item-theme-body-font-weight-bold: 700;
  --surface-pick-up-item-theme-body-text-color: #000000;
  --surface-pick-up-item-theme-border-color: #eeeeee;
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-gap: 15px;
}

.surface-pick-up-items {
  margin-right: var(--sidebar-drawer-right-gutter);
}

.sidebar-drawer__surface-pick-up-title {
  text-transform: none;
}

.sidebar-drawer__surface-pick-up-variant {
  margin-top: 6px;
}

body:not(.user-is-tabbing) .surface-pick-up-embed__modal-btn:focus {
  outline: none;
}

.surface-pick-up-embed__modal-btn {
  font-family: inherit;
  justify-self: auto;
  text-align: inherit;
}

.promo-block {
  position: relative;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  padding: 25px;
  margin-bottom: 42px;
  color: #8a2432;
  border: 1px solid;
}
.promo-block:hover {
  color: #8a2432;
}
@media (min-width: 1071px) {
  .product-list.row-of-3.product-list-withsidebar .promo-block, .product-list.row-of-4.product-list-withsidebar .promo-block, .product-grid-wide .product-list.row-of-4:not(.product-list-withsidebar) .promo-block.promo-block--quickshop-enabled {
    padding: 20px;
  }
  .product-list.row-of-3.product-list-withsidebar .promo-block .promo-block--content p,
  .product-list.row-of-3.product-list-withsidebar .promo-block .promo-block--content a, .product-list.row-of-4.product-list-withsidebar .promo-block .promo-block--content p,
  .product-list.row-of-4.product-list-withsidebar .promo-block .promo-block--content a, .product-grid-wide .product-list.row-of-4:not(.product-list-withsidebar) .promo-block.promo-block--quickshop-enabled .promo-block--content p,
  .product-grid-wide .product-list.row-of-4:not(.product-list-withsidebar) .promo-block.promo-block--quickshop-enabled .promo-block--content a {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .promo-block {
    padding: 20px;
  }
}

.promo-block--secondary {
  color: #ffffff;
  background-color: #8a2432;
  border-color: #8a2432;
}
.promo-block--secondary:hover {
  color: #ffffff;
}
.promo-block--secondary .promo-block--content::after {
  border-color: #ffffff;
}
.promo-block--secondary .promo-block--content p {
  color: #ffffff;
}
.promo-block--secondary .promo-block--content a {
  color: #ffffff;
}
.promo-block--content {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: relative;
  align-self: flex-start;
  width: 100%;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  word-break: break-word;
}
.promo-block--content::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 75px;
  border-bottom: 1px solid #8a2432;
  content: "";
}
.promo-block--content:empty {
  opacity: 0;
}
.promo-block--content p {
  font-size: 28px;
  line-height: 1.3;
}
.promo-block--content p:last-of-type {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .promo-block--content p {
    font-size: 24px;
  }
}
.promo-block--content a {
  position: relative;
  z-index: 1;
  font-size: 28px;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .promo-block--content a {
    font-size: 24px;
  }
}

.promo-block--button {
  margin-top: 30px;
}

.promo-block--link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.quickshop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms linear;
}
.quickshop.quickshop-visible {
  opacity: 1;
  visibility: visible;
}

.quickshop-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 960px;
  max-height: 90%;
  padding: 30px 0 30px 30px;
  overflow: hidden;
  pointer-events: none;
  background-color: #ffffff;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1) opacity;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .quickshop-content {
    height: 90%;
  }
}
.quickshop-loaded .quickshop-content {
  pointer-events: all;
  opacity: 1;
}
.quickshop-content .product-area {
  padding-top: 0;
  padding-bottom: 10px;
}

.quickshop-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 30px;
  height: 30px;
  padding: 7px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.quickshop-spinner {
  opacity: 1;
}
.quickshop-loaded .quickshop-spinner {
  opacity: 0;
}

.quickshop-product {
  width: 100%;
  height: auto;
  padding-right: 30px;
  overflow-y: auto;
}

img[data-rimg=loading] {
  background-image: none;
}
img[data-rimg=loaded] {
  background-color: transparent;
}

.no-js img[data-rimg=lazy] {
  display: none !important;
}
.no-js img[data-rimg=noscript] {
  max-width: 100%;
  opacity: 1;
}

.collection-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.collection-wrap img[data-rimg=noscript] {
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: fill;
}

.search-filters {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .search-filters {
    width: 66%;
  }
}

.filter-form {
  display: flex;
}

.search__filters-title {
  display: block;
  text-align: center;
}

.search-header--filters-sort-enabled {
  padding: 0;
}

.search__filters {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 8px;
}
@media (min-width: 720px) {
  .search__filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.search-dropdown--filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
.search-dropdown--filter:only-child {
  width: auto;
}

.search__filters-wrapper {
  position: relative;
}

.search-filters__filter {
  position: absolute;
  right: auto;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  display: none;
  width: var(--mobile-width);
  max-height: 500px;
  padding: 12px;
  margin-top: 4px;
  list-style-type: none;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  opacity: 0;
}
.search-filters__filter[data-animation] {
  display: block;
}
.search-filters__filter[data-animation="closed=>open"] {
  transition: opacity 200ms, height 300ms;
}
.search-filters__filter[data-animation="open=>closed"] {
  transition: opacity 150ms, height 150ms;
}
.search-filters__filter[data-animation-state=open] {
  z-index: 2001;
  display: block;
  height: var(--open-height);
  opacity: 1;
}
@media (min-width: 720px) {
  .search-filters__filter {
    width: max-content;
  }
  .search-filters__filter.filters--overflow-right {
    right: 0;
    left: auto;
  }
}

.search-filters__details-wrapper {
  position: unset;
  height: auto;
  margin: 0;
  overflow: visible;
}
@media (min-width: 720px) {
  .search-filters__details-wrapper {
    position: relative;
    margin: 0 8px 8px 0;
  }
}

.search-filters__filter-group {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 14px;
}
.search-filters__filter-group::after {
  display: none;
}
.search-filters__filter-group .search-filters__filter-group-title::-webkit-details-marker {
  display: none;
}
@media (max-width: 719px) {
  .search-filters__filter-group {
    font-size: 16px;
  }
}

.search-filters__filter-group-title {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  cursor: pointer;
  align-items: center;
  width: auto;
  padding: 11px;
  padding-right: 2.5rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  list-style: none;
}
@media (max-width: 719px) {
  .search-filters__filter-group-title {
    font-size: 16px;
  }
}
.search-filters__filter-group-title:focus {
  outline: auto 5px -webkit-focus-ring-color;
}

.search-filters__filter-chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(90deg);
}
.search-filters__filter-group[open] .search-filters__filter-chevron {
  transform: translateY(-50%) rotate(270deg);
}
.search-filters__filter-chevron svg {
  display: block;
  width: 7px;
  height: auto;
}

.search-filters__active-filter-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  padding: 2px;
  margin-left: 1rem;
  font-size: 0.75rem;
  border-radius: 50%;
}

.search-filters__active-filter-price-inner {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
}

.search-filters__filter-checkbox {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  border: 1px solid #8a2432;
}
.search-filters__filter-checkbox svg {
  display: none;
  width: 100%;
  height: 100%;
}
.search-filters__filter-checkbox[data-checked] svg {
  display: block;
  color: #8a2432;
}
[data-disabled] .search-filters__filter-checkbox {
  cursor: not-allowed;
}

.search-filters__filter-range {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 1rem 0;
}
@media (max-width: 480px) {
  .search-filters__filter-range {
    flex-direction: column;
  }
}

.search-filters__filter-range--from,
.search-filters__filter-range--to {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: min-content auto;
  align-items: center;
  width: 100%;
  margin: 4px 0;
}
.search-filters__filter-range--from .search-filters__filter-range-input,
.search-filters__filter-range--to .search-filters__filter-range-input {
  min-width: 150px;
  margin: 0;
}

.search-filters__filter-range--to {
  margin-top: 0;
  margin-right: 0;
  margin-left: 1rem;
}
@media (max-width: 480px) {
  .search-filters__filter-range--to {
    margin-top: 1rem;
    margin-left: 0;
  }
}

.search-filters__filter-range-label {
  grid-row: 1/span 1;
  grid-column: 1/span 2;
  justify-self: start;
  margin: 0;
  font-size: 1rem;
}

.search-filters__filter-range-currency {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  margin-right: 4px;
}

.search-filters__filter-title {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  pointer-events: none;
}

.search-filters__filter-icon-wrapper {
  position: relative;
  width: rem(8px);
  height: rem(8px);
  margin: 0 4px;
  outline: none;
}

.search-filters__filter-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  margin-top: -3px;
  transform: translateX(-50%);
}

.search-filters__filter-list-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
@media (min-width: 720px) {
  .search-filters__filter-list-item {
    margin-top: 0.25rem;
  }
}
.search-filters__filter-list-item:first-child {
  margin-top: 0;
}

.search-filters__filter-link {
  display: flex;
  flex: 1;
  column-gap: 0.625rem;
  align-items: center;
  padding: 0.625rem 0;
  margin: 0;
  line-height: 1.15;
  color: currentColor;
  text-decoration: none;
}
@media (min-width: 720px) {
  .search-filters__filter-link {
    padding: 0.375rem 0;
  }
}
.search-filters__filter-link[data-disabled] {
  cursor: not-allowed;
  opacity: 50%;
}
.search-filters__filter-link[data-disabled]:hover {
  color: currentColor;
}
.modal .search-filters__filter-link {
  width: 100%;
  padding: 4px;
}

.search-filters__filter-list-item-text {
  display: inline-block;
  margin: 0;
  line-height: 1.15;
  color: currentColor;
  text-decoration: none;
  word-break: break-word;
  vertical-align: middle;
}

.search-page__filters--active {
  margin-top: 20px;
}

.static-search .active-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 20px 0;
  list-style-type: none;
}
.static-search .active-filter-group__item-wrapper {
  display: inline-block;
  margin: 0;
}
.static-search .active-filter-group__item-wrapper .active-filter-group__item {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 12px 6px 0;
  color: #8a2432;
  cursor: pointer;
  border-bottom: 1px solid #8a2432;
}
.static-search .active-filter-group__item-wrapper .active-filter-group__item--clear {
  border-bottom: 1px solid #4d4d4d;
}
@media (max-width: 480px) {
  .static-search .active-filter-group__item-wrapper .active-filter-group__item--clear .active-filter-text {
    margin-top: 0;
  }
}
.static-search .active-filter-group__item-wrapper .filter-icon--remove {
  padding: 4px;
  border-radius: 100%;
}
.static-search .active-filter-group__item-wrapper .filter-icon--remove svg {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
}
.static-search .active-filter-group__item-wrapper .filter-icon--remove path {
  stroke-width: 1px;
}
.static-search .filter-text,
.static-search .filter-icon--checkbox {
  display: inline-block;
  vertical-align: middle;
}


  
  
.sharethis {
  position: relative;
  display: flex;
  align-self: flex-start;
}

.sharethis-trigger {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  padding: 0;
  color: #000000;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  outline: inherit;
}
.sharethis-trigger:hover {
  color: 










#080808




;
}
.sharethis-trigger:hover .svg-icon {
  color: 










#080808




;
}
.sharethis-trigger:focus {
  outline: auto 5px Highlight;
  outline: auto 5px -webkit-focus-ring-color;
}
@media (max-width: 719px) {
  .sharethis-trigger {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
}

.sharethis-modal {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 21px 13px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  transform: translate(-50%, 10px);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}
.sharethis-modal.animating, .sharethis-modal.visible {
  display: flex;
}
.sharethis-modal.animating-in, .sharethis-modal.animating-out {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sharethis-modal.visible {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  transform: translate(-50%, 0);
}
.sharethis-modal.sharethis-right-aligned {
  right: 0;
  left: auto;
  transform: translate(0, 10px);
}
.sharethis-modal.sharethis-right-aligned.visible {
  transform: translate(0, 0);
}
.sharethis-modal.sharethis-left-aligned {
  right: auto;
  left: 0;
  transform: translate(0, 10px);
}
.sharethis-modal.sharethis-left-aligned.visible {
  transform: translate(0, 0);
}

.sharethis-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 18px;
  margin: 0 7px;
  color: #000000;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.sharethis-link svg {
  display: block;
  width: auto;
  height: 18px;
}

.sharethis-email svg {
  height: 16px;
}

.sidebar-drawer-container {
  --sidebar-drawer-right-gutter: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  display: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-drawer-container[data-sidebar-drawer-animation] {
  display: block;
}
.sidebar-drawer-container[data-sidebar-drawer-animation-state=open] {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
}
.sidebar-drawer-container[data-sidebar-drawer-animation-state=open] .sidebar-drawer {
  transform: translateX(0);
}

.sidebar-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  height: 100%;
  padding: 0 0 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}

.sidebar-drawer__cart-message {
  margin: 0;
  padding: 8px 30px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
@media (max-width: 719px) {
  .sidebar-drawer__cart-message {
    padding-inline: 15px;
  }
}
.sidebar-drawer__cart-message.sidebar-drawer__cart-message-color-scheme--contrast {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.08);
}
.sidebar-drawer__cart-message.sidebar-drawer__cart-message-color-scheme--accent {
  color: #000000;
  background-color: rgba(138, 36, 50, 0.08);
}

.sidebar-drawer__header-container {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  position: relative;
  padding: 18px 18px 16px;
  margin-inline: 20px var(--sidebar-drawer-right-gutter);
  font-size: 12px;
  color: #000000;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.sidebar-drawer__header-close {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 26px;
  height: 26px;
  padding: 7px;
  color: #000000;
  cursor: pointer;
  background: transparent;
  border: none;
  transform: translateY(-50%);
}
.sidebar-drawer__header-close svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sidebar-drawer__free-shipping-banner {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  padding: 12px 0;
  margin-inline: 20px var(--sidebar-drawer-right-gutter);
  font-size: 13px;
  word-break: break-all;
  color: #000000;
  border-bottom: 1px solid #eeeeee;
}
.sidebar-drawer__free-shipping-banner .free-shipping-banner__progress-container {
  margin-top: 10px;
  width: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.1);
}
.sidebar-drawer__free-shipping-banner .free-shipping-banner__progress {
  width: var(--width);
  max-width: 100%;
  height: 100%;
  background-color: #8a2432;
}

.sidebar-drawer__content {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.cart-shipping-calculator {
  display: flex;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 719px) {
  .cart-shipping-calculator {
    flex-wrap: wrap;
    margin-top: 35px;
  }
}
.no-js .cart-shipping-calculator {
  display: none;
}

.cart-shipping-calculator-column {
  display: flex;
  align-self: flex-start;
  flex-wrap: wrap;
  max-width: 370px;
}
@media (max-width: 719px) {
  .cart-shipping-calculator-column {
    max-width: none;
  }
  .cart-shipping-calculator-column:not(:first-child) {
    margin-top: 35px;
  }
}
.cart-shipping-calculator-column.wrapper-response {
  margin-left: 40px;
}
@media (max-width: 719px) {
  .cart-shipping-calculator-column.wrapper-response {
    margin-left: 0;
  }
}

.cart-shipping-calculator-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  font-size: 14px;
}
.cart-shipping-calculator-row:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 719px) {
  .cart-shipping-calculator-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.cart-shipping-calculator-select-wrapper {
  position: relative;
}

.cart-shipping-calculator-select {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  width: 100%;
  padding: 14px 42px 14px 14px;
  line-height: 14px;
  background: none;
  -webkit-appearance: none;
          appearance: none;
}

.cart-shipping-calculator-select-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  pointer-events: none;
  transform: translateY(-50%);
}
.cart-shipping-calculator-select-icon svg {
  display: block;
  width: 100%;
}

.cart-shipping-calculator-label {
  font-family: ,;
  font-style: ;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}
@media (max-width: 719px) {
  .cart-shipping-calculator-label {
    text-align: left;
  }
}

.cart-shipping-calculator-select-wrapper,
.cart-shipping-calculator-input,
.cart-shipping-calculator-button {
  flex-shrink: 0;
  width: 269px;
  margin-left: 12px;
}
@media (max-width: 719px) {
  .cart-shipping-calculator-select-wrapper,
  .cart-shipping-calculator-input,
  .cart-shipping-calculator-button {
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
  }
}

.shipping-rates {
  margin-left: 25px;
  list-style: disc;
}

.cart-wrapper-response {
  font-family: ,;
  font-style: ;
  font-weight: 0;
  font-size: 15px;
}
.cart-wrapper-response > p:first-child {
  margin-top: 0;
}
.cart-wrapper-response > p:last-child {
  margin-bottom: 0;
}

  /** Customize CSS **/
.header-flex {
  display: flex;
  align-items: center;
}
.rolexplaque {
  display: flex;
  justify-content: end;
}
.tudorplaque {
  display: flex;
  justify-content: start;
  padding-top:0px;
}
.cdpicons li {
  display: inline-block;
}
.leftcdpmenu li {
  display: inline-block;
  font-size: 14px;
  padding: 0px 5px;
  min-width: 12px;
  color:#8c2433;
}
.main-header--centered .store-title {
  display: flex;
  justify-content: center;
  margin-bottom:10px;
}
/*WISHLIST APP*/

.swym-product-price{display:none !important;}
  i.icon-swym-wishlist {
  font-family: "henderson-sans-basic", sans-serif;
  font-style: normal;
  vertical-align: middle;
}
i.icon-swym-wishlist + span {
  vertical-align: middle;
}
i.icon-swym-wishlist:after {
  content: '';
  font-size: 100%;
  margin-right: 5px;
  line-height: 18px;
  text-align: center;
  display: inline;
} /*content rendered after swym is ready to avoid showing block/invalid chars*/ .swym-ready i.icon-swym-wishlist:after {
  content: '\f004';
}
.swym-ui-component .swym-wishlist-grid .swym-wishlist-item{border:0px solid #fff !important;}

.swym-ui-component .swym-wishlist-grid .swym-wishlist-item .swym-title {
    font-weight: normal !important;
    font-size: 12px !important;
    color: #4f4f4f;
    margin: 22px 15px 6px !important;
}

  
.main-footer .cdpicons {
  display: none
}
@media (max-width: 719px) {
  .header-flex {
    width: 100%;
    flex-wrap: wrap;
        height: 211px;
  }
  .rolexplaque {
    order: 2;
  }
  .tudorplaque {
    order: 1;
  }
  .cdpicons li {
    display: none;
  }
  .store-title.logo-list-item {}
  .store-title {
    order: 3;
    width: 100% !important;
    margin: 0;
  }
.leftcdpmenu li {
    display: inline-block;
    font-size: 12px;
    padding: 0px 3px;
    min-width: 10px;
    min-height: 18px;
}
  .wishlisticonspace {
    min-width: 0px !important;
    margin-right:3px;
  }
  i.icon-swym-wishlist:after {
    margin-right: 0px;
  }
}
.desktopbanner img {
  width: 100%
}
.mobilebanner {
  display: none
}
.tudormobilebanner {
  display: none;
}
.tudordesktopbanner img {
  width: 100%;
  height: auto;
}
.rolexmobilebanner {
  display: none;
}
.rolexcta {
  width: 43%;
  vertical-align: middle;
  float: right;
  text-align: left;
  margin-top: calc(9vw * 2);
}
.rolexcta h2 {
  font-size: 36px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.rolexcta a {
  background-color: #007843;
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 0.7em 2em;
  margin-top: 2em;
  font-size: 1rem;
  border-radius: 20px;
}
.text-content-wrap {
  max-width: 1737px !important;
  margin: 0 auto;
}
.fullbanner img {
  width: 100%
}
.twocolbrands img {
  width: 100%
}
.twocolbrands .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.twocolbrands .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.threecol {
  flex-wrap: wrap;
  display: flex;
}
.threecol div {
  flex-grow: 1;
  width: 33%;
  height: 100%;
  list-style: none;
  padding: 5px;
}
@media (max-width: 850px) {
  .rolexdesktopbanner {
    display: none;
  }
  .rolexmobilebanner {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }
  .rolexmobilebanner img {
    width: 100%;
    height: auto;
  }
  .rolexmobilebanner h2 {
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
    margin: 30px auto;
    text-align: center
  }
  .tudordesktopbanner {
    display: none;
  }
  .tudormobilebanner {
    display: block;
    text-align: center;
    margin-bottom: 70px;
  }
  .tudormobilebanner img {
    width: 100%;
    height: auto;
  }
  .tudormobilebanner h2 {
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
    margin: 30px auto;
    text-align: center
  }
  .tudormobilebanner a {
    background-color: #007843;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.66;
    margin: 2em auto;
    padding: 0.7em 2em;
    color: #fff;
    white-space: nowrap;
    border-radius: 1.55em;
  }
  .mobilebanner {
    display: block;
    text-align: center;
    margin-bottom: 60px;
  }
  .desktopbanner {
    display: none;
  }
  .mobilebanner h2 {
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
    margin: 30px auto;
    text-align: center
  }
  .mobilebanner img {
    width: 100%;
  }
  .mobilebanner a {
    background-color: #000;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.66;
    margin: 2em auto;
    padding: 0.7em 2em;
    color: #fff;
    white-space: nowrap;
  }
  .threecol div {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 5px;
  }
}
/** Brijesh Custom css start */ .full-content-area {
  display: block;
  width: 100%; /*padding: 0 15px; margin: 0 auto;*/
}
.custom__item-inner {
  margin-left: auto;
  margin-right: auto;
}
#theattributes .featuresheader {
  color: #fff;
  margin-bottom: 30px;
  font-weight: bold;
}
.extradescription {
  width: 100%;
  background-color: #000;
  text-align: center;
  color: #fff;
}
.shop_attributes {
  margin: 0% 1%;
  column-count: 3;
}
.shop_attributes li {
  margin-right: 1em;
  font-size: 13px;
  text-transform: capitalize;
  list-style: none;
  margin-bottom: 10px;
  color: #fff;
  break-inside: avoid;
}
.brandpage-section {
  font-family: ;
  font-style: ;
  font-weight: ;
  margin: 1.75em 0;
  font-size: 15px;
  text-align: center;
}
@media (max-width: 719px) {
  .brandpage-section {
    width: 100%;
    padding: 0 30px;
  }
}
.pageheading {
  width: 100%;
  text-align: center;
  font-size: 2em;
}
.have-bottom-border {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
}
.pageheading .label {
  font-family: ;
  font-style: ;
  font-weight: ;
  font-size: 35px;
  color: #000000;
}
.pageheading h1 {
  margin: 0 0 20px 0;
}
.page-text-content-wrap {
  padding-bottom: 80px;
  margin: 0 auto;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin-left: -0.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 750px) {
  .grid {
    margin-left: -1rem;
  }
}
.grid__item {
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
  width: calc(25% - 0.5rem * 3 / 4);
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (min-width: 750px) {
  .grid__item {
    padding-left: 1rem;
    padding-bottom: 1rem;
    width: calc(25% - 1rem * 3 / 4);
    max-width: 50%;
  }
}
.grid--gapless .grid__item {
  padding-left: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .grid--one-third-max.grid--3-col-tablet .grid__item {
    max-width: 33.33%;
  }
}
@media screen and (min-width: 990px) {
  .grid--quarter-max.grid--4-col-desktop .grid__item {
    max-width: 25%;
  }
}
.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}
.grid--3-col .grid__item {
  width: calc(33.33% - 0.5rem * 2 / 3);
}
@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - 1rem * 2 / 3);
  }
}
.grid--2-col .grid__item {
  width: calc(50% - 0.5rem / 2);
}
@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - 1rem / 2);
  }
  .grid--4-col-tablet .grid__item {
    width: calc(25% - 1rem * 3 / 4);
  }
  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - 1rem * 2 / 3);
  }
  .grid--2-col-tablet .grid__item {
    width: calc(50% - 1rem / 2);
  }
}
@media screen and (min-width: 990px) {
  .grid--4-col-desktop .grid__item {
    width: calc(25% - 1rem * 3 / 4);
  }
  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - 1rem * 2 / 3);
  }
  .grid--2-col-desktop .grid__item {
    width: calc(50% - 1rem / 2);
  }
}
.grid__item--vertical-align {
  align-self: center;
}
.grid__item--full-width {
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (max-width: 749px) {
  .grid--peek.slider--mobile {
    margin: 0;
    width: 100%;
  }
  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin: 0;
  }
  .grid--peek .grid__item {
    width: calc(50% - 3.75rem / 2);
  }
  .grid--peek .grid__item:first-of-type {
    padding-left: 1.5rem;
  }
  .grid--peek .grid__item:last-of-type {
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - 4rem * 3 / 4);
  }
  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - 4rem * 2 / 3);
  }
  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item {
    width: calc(50% - 4rem / 2);
  }
  .slider--tablet.grid--peek .grid__item:first-of-type {
    padding-left: 1.5rem;
  }
  .slider--tablet.grid--peek .grid__item:last-of-type {
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 989px) {
  .slider--tablet.grid--peek {
    margin: 0;
    width: 100%;
  }
  .slider--tablet.grid--peek .grid__item {
    box-sizing: content-box;
    margin: 0;
  }
}
/* component-media */ .media {
  display: block;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.media--transparent {
  background-color: transparent;
}
.media > *:not(.zoom):not(.deferred-media__poster-button), .media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.media--square {
  padding-bottom: 100%;
}
.media--portrait {
  padding-bottom: 125%;
}
.media--landscape {
  padding-bottom: 66.6%;
}
.media--cropped {
  padding-bottom: 56%;
}
.media--16-9 {
  padding-bottom: 56.25%;
}
.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}
.media.media--hover-effect > img + img {
  opacity: 0;
}
@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}
deferred-media {
  display: block;
}
/* component-button */
/* Button - default */
.button, .shopify-challenge__button, .customer button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font: 'cdp-regular';
  padding: 0.9rem 3rem 1.1rem;
  text-decoration: none;
  border: 0.1rem solid transparent;
  border-radius: 0;
  background-color: #8a2432 !important;
  box-shadow: 0 0 0 0.1rem #8a2432 !important;
  color: #fff !important;
  min-width: 12rem; /*min-height: 4.5rem;*/ transition: box-shadow 4s ease;
  -webkit-appearance: none;
  appearance: none;
}
.button:focus:not(:focus-visible) {
  box-shadow: 0 0 0 0.1rem #8a2432 !important;
}
.button::selection, .shopify-challenge__button::selection, .customer button::selection {
  background-color: #FFFFFF;
}
.button, .button-label, .shopify-challenge__button, .customer button {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.2 / 1);
}
.button--tertiary {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  min-width: 9rem;
  min-height: 3.5rem;
}
.button--small {
  padding: 1.2rem 2.6rem;
}
/* Button - hover */
.button:not([disabled]):hover, .shopify-challenge__button:hover, .customer button:hover {
  box-shadow: 0 0 0 0.2rem #121212;
}
/* Button - other */
.button:disabled, .button[aria-disabled='true'], .button.disabled, .customer button:disabled, .customer button[aria-disabled='true'], .customer button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.button--full-width {
  display: flex;
  width: 100%;
}
.button.loading {
  color: transparent;
  position: relative;
}
@media screen and (forced-colors: active) {
  .button.loading {
    color: #121212);
  }
}
.button.loading > .loading-overlay__spinner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100%;
  display: flex;
}
/*================ Build Responsive Grid Classes ================*/ @media only screen and (max-width: 749px) { /* Whole */ .small--one-whole {
    width: 100%;
  } /* Halves */ .small--one-half {
    width: 50%;
  } /* Thirds */ .small--one-third {
    width: 33.33333%;
  }
  .small--two-thirds {
    width: 66.66667%;
  } /* Quarters */ .small--one-quarter {
    width: 25%;
  }
  .small--two-quarters {
    width: 50%;
  }
  .small--three-quarters {
    width: 75%;
  } /* 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.66667%;
  }
  .small--two-sixths {
    width: 33.33333%;
  }
  .small--three-sixths {
    width: 50%;
  }
  .small--four-sixths {
    width: 66.66667%;
  }
  .small--five-sixths {
    width: 83.33333%;
  } /* 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.33333%;
  }
  .small--two-twelfths {
    width: 16.66667%;
  }
  .small--three-twelfths {
    width: 25%;
  }
  .small--four-twelfths {
    width: 33.33333%;
  }
  .small--five-twelfths {
    width: 41.66667%;
  }
  .small--six-twelfths {
    width: 50%;
  }
  .small--seven-twelfths {
    width: 58.33333%;
  }
  .small--eight-twelfths {
    width: 66.66667%;
  }
  .small--nine-twelfths {
    width: 75%;
  }
  .small--ten-twelfths {
    width: 83.33333%;
  }
  .small--eleven-twelfths {
    width: 91.66667%;
  }
  .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--one-eighth:nth-child(8n + 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;
  }
  .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;
  }
}
@media only screen and (min-width: 750px) { /* Whole */ .medium-up--one-whole {
    width: 100%;
  } /* Halves */ .medium-up--one-half {
    width: 50%;
  } /* Thirds */ .medium-up--one-third {
    width: 33.33333%;
  }
  .medium-up--two-thirds {
    width: 66.66667%;
  } /* Quarters */ .medium-up--one-quarter {
    width: 25%;
  }
  .medium-up--two-quarters {
    width: 50%;
  }
  .medium-up--three-quarters {
    width: 75%;
  } /* Fifths */ .medium-up--one-fifth {
    width: 20%;
  }
  .medium-up--two-fifths {
    width: 40%;
  }
  .medium-up--three-fifths {
    width: 60%;
  }
  .medium-up--four-fifths {
    width: 80%;
  } /* Sixths */ .medium-up--one-sixth {
    width: 16.66667%;
  }
  .medium-up--two-sixths {
    width: 33.33333%;
  }
  .medium-up--three-sixths {
    width: 50%;
  }
  .medium-up--four-sixths {
    width: 66.66667%;
  }
  .medium-up--five-sixths {
    width: 83.33333%;
  } /* Eighths */ .medium-up--one-eighth {
    width: 12.5%;
  }
  .medium-up--two-eighths {
    width: 25%;
  }
  .medium-up--three-eighths {
    width: 37.5%;
  }
  .medium-up--four-eighths {
    width: 50%;
  }
  .medium-up--five-eighths {
    width: 62.5%;
  }
  .medium-up--six-eighths {
    width: 75%;
  }
  .medium-up--seven-eighths {
    width: 87.5%;
  } /* Tenths */ .medium-up--one-tenth {
    width: 10%;
  }
  .medium-up--two-tenths {
    width: 20%;
  }
  .medium-up--three-tenths {
    width: 30%;
  }
  .medium-up--four-tenths {
    width: 40%;
  }
  .medium-up--five-tenths {
    width: 50%;
  }
  .medium-up--six-tenths {
    width: 60%;
  }
  .medium-up--seven-tenths {
    width: 70%;
  }
  .medium-up--eight-tenths {
    width: 80%;
  }
  .medium-up--nine-tenths {
    width: 90%;
  } /* Twelfths */ .medium-up--one-twelfth {
    width: 8.33333%;
  }
  .medium-up--two-twelfths {
    width: 16.66667%;
  }
  .medium-up--three-twelfths {
    width: 25%;
  }
  .medium-up--four-twelfths {
    width: 33.33333%;
  }
  .medium-up--five-twelfths {
    width: 41.66667%;
  }
  .medium-up--six-twelfths {
    width: 50%;
  }
  .medium-up--seven-twelfths {
    width: 58.33333%;
  }
  .medium-up--eight-twelfths {
    width: 66.66667%;
  }
  .medium-up--nine-twelfths {
    width: 75%;
  }
  .medium-up--ten-twelfths {
    width: 83.33333%;
  }
  .medium-up--eleven-twelfths {
    width: 91.66667%;
  }
  .grid--uniform .medium-up--one-half:nth-child(2n + 1), .grid--uniform .medium-up--one-third:nth-child(3n + 1), .grid--uniform .medium-up--one-quarter:nth-child(4n + 1), .grid--uniform .medium-up--one-fifth:nth-child(5n + 1), .grid--uniform .medium-up--one-sixth:nth-child(6n + 1), .grid--uniform .medium-up--two-sixths:nth-child(3n + 1), .grid--uniform .medium-up--three-sixths:nth-child(2n + 1), .grid--uniform .medium-up--one-eighth:nth-child(8n + 1), .grid--uniform .medium-up--two-eighths:nth-child(4n + 1), .grid--uniform .medium-up--four-eighths:nth-child(2n + 1), .grid--uniform .medium-up--five-tenths:nth-child(2n + 1), .grid--uniform .medium-up--one-twelfth:nth-child(12n + 1), .grid--uniform .medium-up--two-twelfths:nth-child(6n + 1), .grid--uniform .medium-up--three-twelfths:nth-child(4n + 1), .grid--uniform .medium-up--four-twelfths:nth-child(3n + 1), .grid--uniform .medium-up--six-twelfths:nth-child(2n + 1) {
    clear: both;
  }
  .medium-up--show {
    display: block !important;
  }
  .medium-up--hide {
    display: none !important;
  }
  .medium-up--text-left {
    text-align: left !important;
  }
  .medium-up--text-right {
    text-align: right !important;
  }
  .medium-up--text-center {
    text-align: center !important;
  }
}
/*================ Build Grid Push Classes ================*/ @media only screen and (max-width: 749px) { /* Halves */ .small--push-one-half {
    left: 50%;
  } /* Thirds */ .small--push-one-third {
    left: 33.33333%;
  }
  .small--push-two-thirds {
    left: 66.66667%;
  } /* Quarters */ .small--push-one-quarter {
    left: 25%;
  }
  .small--push-two-quarters {
    left: 50%;
  }
  .small--push-three-quarters {
    left: 75%;
  } /* Fifths */ .small--push-one-fifth {
    left: 20%;
  }
  .small--push-two-fifths {
    left: 40%;
  }
  .small--push-three-fifths {
    left: 60%;
  }
  .small--push-four-fifths {
    left: 80%;
  } /* Sixths */ .small--push-one-sixth {
    left: 16.66667%;
  }
  .small--push-two-sixths {
    left: 33.33333%;
  }
  .small--push-three-sixths {
    left: 50%;
  }
  .small--push-four-sixths {
    left: 66.66667%;
  }
  .small--push-five-sixths {
    left: 83.33333%;
  } /* Eighths */ .small--push-one-eighth {
    left: 12.5%;
  }
  .small--push-two-eighths {
    left: 25%;
  }
  .small--push-three-eighths {
    left: 37.5%;
  }
  .small--push-four-eighths {
    left: 50%;
  }
  .small--push-five-eighths {
    left: 62.5%;
  }
  .small--push-six-eighths {
    left: 75%;
  }
  .small--push-seven-eighths {
    left: 87.5%;
  } /* Tenths */ .small--push-one-tenth {
    left: 10%;
  }
  .small--push-two-tenths {
    left: 20%;
  }
  .small--push-three-tenths {
    left: 30%;
  }
  .small--push-four-tenths {
    left: 40%;
  }
  .small--push-five-tenths {
    left: 50%;
  }
  .small--push-six-tenths {
    left: 60%;
  }
  .small--push-seven-tenths {
    left: 70%;
  }
  .small--push-eight-tenths {
    left: 80%;
  }
  .small--push-nine-tenths {
    left: 90%;
  } /* Twelfths */ .small--push-one-twelfth {
    left: 8.33333%;
  }
  .small--push-two-twelfths {
    left: 16.66667%;
  }
  .small--push-three-twelfths {
    left: 25%;
  }
  .small--push-four-twelfths {
    left: 33.33333%;
  }
  .small--push-five-twelfths {
    left: 41.66667%;
  }
  .small--push-six-twelfths {
    left: 50%;
  }
  .small--push-seven-twelfths {
    left: 58.33333%;
  }
  .small--push-eight-twelfths {
    left: 66.66667%;
  }
  .small--push-nine-twelfths {
    left: 75%;
  }
  .small--push-ten-twelfths {
    left: 83.33333%;
  }
  .small--push-eleven-twelfths {
    left: 91.66667%;
  }
  .medium-up--text-left {
    text-align: left;
  }
  .medium-up--text-right {
    text-align: right;
  }
  .medium-up--text-center {
    text-align: center;
  }
}
@media only screen and (min-width: 750px) { /* Halves */ .medium-up--push-one-half {
    left: 50%;
  } /* Thirds */ .medium-up--push-one-third {
    left: 33.33333%;
  }
  .medium-up--push-two-thirds {
    left: 66.66667%;
  } /* Quarters */ .medium-up--push-one-quarter {
    left: 25%;
  }
  .medium-up--push-two-quarters {
    left: 50%;
  }
  .medium-up--push-three-quarters {
    left: 75%;
  } /* Fifths */ .medium-up--push-one-fifth {
    left: 20%;
  }
  .medium-up--push-two-fifths {
    left: 40%;
  }
  .medium-up--push-three-fifths {
    left: 60%;
  }
  .medium-up--push-four-fifths {
    left: 80%;
  } /* Sixths */ .medium-up--push-one-sixth {
    left: 16.66667%;
  }
  .medium-up--push-two-sixths {
    left: 33.33333%;
  }
  .medium-up--push-three-sixths {
    left: 50%;
  }
  .medium-up--push-four-sixths {
    left: 66.66667%;
  }
  .medium-up--push-five-sixths {
    left: 83.33333%;
  } /* Eighths */ .medium-up--push-one-eighth {
    left: 12.5%;
  }
  .medium-up--push-two-eighths {
    left: 25%;
  }
  .medium-up--push-three-eighths {
    left: 37.5%;
  }
  .medium-up--push-four-eighths {
    left: 50%;
  }
  .medium-up--push-five-eighths {
    left: 62.5%;
  }
  .medium-up--push-six-eighths {
    left: 75%;
  }
  .medium-up--push-seven-eighths {
    left: 87.5%;
  } /* Tenths */ .medium-up--push-one-tenth {
    left: 10%;
  }
  .medium-up--push-two-tenths {
    left: 20%;
  }
  .medium-up--push-three-tenths {
    left: 30%;
  }
  .medium-up--push-four-tenths {
    left: 40%;
  }
  .medium-up--push-five-tenths {
    left: 50%;
  }
  .medium-up--push-six-tenths {
    left: 60%;
  }
  .medium-up--push-seven-tenths {
    left: 70%;
  }
  .medium-up--push-eight-tenths {
    left: 80%;
  }
  .medium-up--push-nine-tenths {
    left: 90%;
  } /* Twelfths */ .medium-up--push-one-twelfth {
    left: 8.33333%;
  }
  .medium-up--push-two-twelfths {
    left: 16.66667%;
  }
  .medium-up--push-three-twelfths {
    left: 25%;
  }
  .medium-up--push-four-twelfths {
    left: 33.33333%;
  }
  .medium-up--push-five-twelfths {
    left: 41.66667%;
  }
  .medium-up--push-six-twelfths {
    left: 50%;
  }
  .medium-up--push-seven-twelfths {
    left: 58.33333%;
  }
  .medium-up--push-eight-twelfths {
    left: 66.66667%;
  }
  .medium-up--push-nine-twelfths {
    left: 75%;
  }
  .medium-up--push-ten-twelfths {
    left: 83.33333%;
  }
  .medium-up--push-eleven-twelfths {
    left: 91.66667%;
  }
}
.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;
} /** Brijesh Custom css end */ /* page heading */ 

.pageheading {
  width: 100%;
  padding: 2%;
  text-align: center;
  font-size: 2em;

  border-top: 1px solid #868686;
  border-bottom: 1px solid #868686;
  margin-bottom: 30px;
}
.pageheading .label {
  margin-bottom: 0;
}
.custom__item h1, .custom__item h2, .custom__item h3, .custom__item h4, .custom__item h5, .custom__item h6 {
  margin: 8px 0;
}
.content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2%;
  width: 100%;
}
.custom__item {
  padding: 10px 0;
}
.content .custom__item .button, .overlay-section .call-to-action {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.66;
  padding: 0.6em 2em;
  height: auto;
  border: 0;
  color: #ebe5d8;
  box-shadow: none;
  border: 1px solid #8a2432 !important
}
/* Inner content */ .inner-contents .custom__item-inner > div {
  padding: 10px 20px;
}
.inner-contents {
  padding: 20px 0;
}
.inner-contents p {
  line-height: 30px;
  text-align: center;
  padding: 0 px 10%;
  margin: 0 auto;
}
.custom-centering-wrapper .centering-wrapper, .video-section .centering-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 25px;
  height: 100%;
  align-items: flex-start;
}
.custom-centering-wrapper.picture-block-left {
  display: flex;
  flex-wrap: wrap;
}
.custom-centering-wrapper .centering-wrapper h6 {
  color: #ae251d !important;
  text-transform: uppercase;
  font-size: 1rem;
}
.custom-centering-wrapper .centering-wrapper h1 {
  text-transform: uppercase;
  font-size: 1.875rem;
}
.custom-centering-wrapper .custom__item-inner .picture-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* custom video section */ .video-section iframe {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
/* overlay section */ .overlay-section .slide {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.overlay-section .content-inner-wrap h1, .overlay-section .content-inner-wrap h2, .overlay-section .content-inner-wrap h3, .overlay-section .content-inner-wrap h4, .overlay-section .content-inner-wrap h5, .overlay-section .content-inner-wrap h6, .overlay-section .content-inner-wrap p {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.66;
  margin: 0;
}
.overlay-section .content-inner-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  align-items: center;
}
.overlay-section .image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.overlay-section .content-outer-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.overlay-section .call-to-action {
  display: inline-block;
  background-color: #222;
  color: #fff;
  margin-top: 5px;
}
.custom-slider .slick-dots li button {
  width: 20px;
  height: 20px;
  border: 2px solid #b0b0b0;
  border-radius: 50%
}
.button: not([disabled]):hover, .customer button:hover {
  box-shadow: none;
  background-color: #767676;
} /*custom slider */ .custom-slider .slick-dots li button::before {
  font-size: 9px;
  line-height: 22px;
}
.custom-slider .slick-dots {
  bottom: -55px;
}
.custom-slider .collection-content {
  margin-bottom: 30px;
} /*collection section */ .collection-button.button-set--center.center {
  text-align: center;
}
.custom-slider .slick-prev, .custom-slider .slick-next {
  position: absolute;
  top: 50%;
  padding: 2 px 0 px !important;
  display: inline-block;
  margin-top: -20px !important;
  line-height: 30px !important;
  height: 40px !important;
  width: 30px !important;
  text-shadow: none !important;
}
.custom-slider .slick-prev:hover, .custom-slider .slick-next:hover {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.custom-slider .slick-prev:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3) url("/cdn/shop/files/icon_prev.png?v=1637146824") no-repeat center center !important;
}
.custom-slider .slick-next:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3) url("/cdn/shop/files/icon_next.png?v=1637146824") no-repeat center center !important;
}
.testimonial-container .slick-prev {
  left: 0px !important;
}
.custom-slider .slick-prev {
  left: -35px;
}
.custom-slider .slick-next {
  right: -35px;
}
.overlay-section .image-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  min-height: 430px;
}
.overlay-section .image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.content .custom__item .button {
  margin: 10px 0;
}
.home-page-banner {
  background-size: cover;
}
.shopify-block-button.fullwidthbutton a {
  background-color: #000;
  color: #fff;
  width: 100%;
}
.shopify-block-columns.removecolumnpadding {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.shopify-block-button__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.66;
  margin: 5px 0;
  padding: 0.7em 2em;
  transition: background-color 0.2s ease-in-out;
  white-space: nowrap;
  color: #000;
  min-width: 248px;
  text-align: center;
}
.appointment_button a {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.66;
  padding: 0.7em 2em;
  transition: background-color 0.2s ease-in-out;
}
.collection-two-brands .column {
  padding: 15px 0;
  width: 100%;
  margin-right: 30px;
}
.collection-two-brands .row .column:nth-child(2) {
  margin-right: 0;
}
.padding-top30 {
  padding-top: 30px;
}
.padding-15 {
  padding: 15px 0;
}
.desktopbanner {
  width: 100%;
}
.omegabanner {
  display: inline-block;
  width: 100%;
}
.omegabanner img {
  width: 100%;
}
.client-section .shopify-block-columns.logobar.has-background {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
}
.client-section .shopify-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  box-sizing: border-box;
  flex-wrap: nowrap;
  width: 100%;
}
.client-section .shopify-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.peacock-overlay-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-size: cover;
  overflow: hidden;
  min-height: 490px;
}
.peacock-overlay-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.peacock-overlay-section h2 {
  position: relative;
  font-size: 39px;
  color: #fff;
  margin: 0 0 1.5em;
}
.peacock-overlay-section .shopify-block-button {
  text-align: center;
}
.peacock-overlay-section .shopify-block-button__link {
  position: relative;
  min-width: auto;
  text-align: center;
  background-color: #222;
  color: #fff;
}
.has-parallax {
  background-attachment: fixed;
}
.shopify-block-button__link:hover, .removecolumnpadding shopify-block-button__link:hover {
  background-color: #767676;
  color: #fff;
}
.Owned-section .jump-to-slide {
  top: auto;
  height: 20px;
  bottom: -35px;
}
.Owned-section .jump-to-slide li {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 8px;
}
.Owned-section {
  background-color: #fff;
}
.Owned-section .jump-to-slide li.active {
  background-color: #000;
}
.Owned-section .centering-wrapper {
  height: 520px;
  align-items: flex-start;
  padding: 17px 15px;
}
.Owned-section .picture-block-body {
  color: #000;
  text-align: left;
  font-size: 15px;
}
.Owned-section .picture-block-content h3 {
  font-size: 1.625rem;
  margin-bottom: 10px;
  color: #000;
}
.Owned-section .next {
  display: none;
}
.Owned-section .next, .Owned-section .prev {
  display: none;
}
.star-review-section .wp-block-cover__inner-container {
  padding: 50px 0;
}
.star-review-section .reviewsheader {
  font-size: 60px;
  text-align: center;
  margin-bottom: 30px;
}
.star-review-section .slick-prev:hover, .star-review-section .slick-next:hover {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.star-review-section .slick-prev:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3) url("https: //cdpeacock.com/wp-content/plugins/slide-anything/images/icon_prev.png") no-repeat center center !important;
}
.star-review-section .slick-next:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3) url("https: //cdpeacock.com/wp-content/plugins/slide-anything/images/icon_next.png") no-repeat center center !important;
}
@media only screen and (min-width: 1025px) {
  .desktop-image-hide {
    display: none;
  }
  .desktop-image-show {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .table-image-hide {
    display: none;
  }
  .table-image-show {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .custom__item .custom__item-inner {
    width: 100%;
  }
  .custom-centering-wrapper .centering-wrapper, .video-section .centering-wrapper {
    padding: 0;
  }
  .custom-centering-wrapper .centering-wrapper h6 {
    font-size: 14px;
  }
  .custom-centering-wrapper .centering-wrapper h1 {
    font-size: 1.5rem;
  }
  .overlay-section .content-inner-wrap h1, .overlay-section .content-inner-wrap h2, .overlay-section .content-inner-wrap h3, .overlay-section .content-inner-wrap h4, .overlay-section .content-inner-wrap h5, .overlay-section .content-inner-wrap h6, .overlay-section .content-inner-wrap p {
    font-size: 28px;
  }
  .overlay-section .image-wrap {
    min-height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .overlay-section .content-inner-wrap h1, .overlay-section .content-inner-wrap h2, .overlay-section .content-inner-wrap h3, .overlay-section .content-inner-wrap h4, .overlay-section .content-inner-wrap h5, .overlay-section .content-inner-wrap h6, .overlay-section .content-inner-wrap p {
    font-size: 18px;
  }
  .overlay-section .image-wrap {
    min-height: 220px;
  }
  .custom-slider .slick-prev, .custom-slider .slick-next {
    display: none;
  }
  .custom-slider .slick-dots li button {
    margin-bottom: 10px;
  }
  .mobile-image-hide {
    display: none;
  }
  .mobile-image-show {
    display: block;
  }
}
.data-small-text {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}
.data-medium-text {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px;
}
.data-large-text {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 10px;
}
@media screen and (max-width: 991px) {
  .data-small-text {
    font-size: 14px;
  }
  .data-medium-text {
    font-size: 20px;
  }
  .data-large-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 479px) {
  .data-medium-text {
    font-size: 18px;
  }
  .data-large-text {
    font-size: 20px;
  }
  .padding-30 {
    padding: 30px 0;
  }
}
.patekiframe {
  height: 806px;
}
@media screen and (max-width: 720px) {
  .patekiframe {
    height: 642px;
  }
}
@media screen and (max-width: 600px) {
  .patekiframe {
    height: 542px;
  }
}
@media screen and (max-width: 500px) {
  .patekiframe {
    height: 442px;
  }
}
@media screen and (max-width: 400px) {
  .patekiframe {
    height: 342px;
  }
}
/*avani - 08 Nov 2021*/ .peacock-overlay-section h2 {
  text-align: center;
  line-height: 1.6;
}
.inside-tudor .rte-setting {
  padding: 0 10%;
}
.inner-contents.inside-tudor .custom__item-inner > div {
  padding: 30px 20px 55px;
}
.maxwidthonethousand .custom__item-inner {
  max-width: 1000px;
}
.black-bay-fifty-eight .centering-wrapper {
  padding: 40px 0 30px 32px;
}
.black-bay-fifty-eight .picture-block-content {
  max-width: 100%;
  line-height: 1.66;
}
.black-bay-fifty-eight .picture-block-content p {
  text-align: center;
}
.black-bay-fifty-eight .picture-block-content .button {
  text-align: center !important;
}
.content .tudor-watches-list.custom__item .button {
  font-weight: 600;
  letter-spacing: 0;
}
.tudor-watches-list {
  padding-bottom: 50px;
}
.inside-tudor .data-small-text {
  font-size: 16px;
  margin: 0;
}
.inside-tudor .data-medium-text {
  font-size: 1.5rem;
  margin: 0 0 20px;
}
.tudor-history .data-small-text {
  color: #ae251d !important;
  font-size: 0.9375rem;
  margin: 0;
}
.tudor-history .data-medium-text {
  margin: 0;
  font-size: 1.5rem;
}
.tudor-collage {
  padding-bottom: 45px;
}
.video-section.watch-making {
  background-color: #000;
  margin-bottom: 60px;
  padding: 0;
}
.watch-making .picture-block-content {
  max-width: 100%;
  text-align: left;
}
.watch-making .centering-wrapper {
  padding: 60px 0 20px 32px;
}
.watch-making .picture-block-content span {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.watch-making .picture-block-content h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.4;
}
.watch-making .picture-block-content p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
}
.tudor-ambassador .picture-block-content {
  max-width: 100%;
  text-align: left;
}
.tudor-ambassador .picture-block-content .title {
  color: #ae251d !important;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}
.tudor-ambassador .picture-block-content .subtitle {
  margin: 0;
  font-size: 1.5rem;
}
.tudor-ambassador .centering-wrapper {
  height: auto;
  padding: 60px 35px 20px;
}
.content .view-all-tudor-watches .button {
  font-weight: 600;
  letter-spacing: 0;
  text-wrap:auto !important;
}
.content .view-all-tudor-watches {
  padding-top: 0;
  margin-top: -10px;
  padding-bottom: 40px;
}
.image-overlay-text .overlay-section .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}
.roberto-coin-logo .rich_text_header_img {
  display: inline-block;
  width: 400px;
  max-width: 100%;
}
.roberto-coin-text .rte-setting {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.roberto-coin-text .rte-setting p {
  font-size: 1.25em;
  line-height: 1.66;
  margin: 0;
}
.roberto-coin-button {
  padding: 0;
}
.roberto-coin-button .button {
  margin: 0 !important;
  letter-spacing: 0;
}
.roberto-coin-by-category {
  padding: 70px 0 0;
}
.roberto-coin-by-category .collection-heading.label {
  width: 100%;
  text-align: center;
}
.roberto-coin-by-category .collection-heading.label h2 {
  width: 100%;
  margin: 0;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.4;
}
.roberto-coin-by-category .collections .label {
  margin: 30px 0 60px;
  font-size: 20px;
  font-style: italic;
  color: #878787;
  font-weight: 400;
  line-height: 1.66;
}
.roberto-the-ruby .picture-block {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.roberto-the-ruby .picture-block .picture-block-content {
  text-align: left;
  max-width: 100%;
}
.roberto-the-ruby .picture-block .picture-block-content .title {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
}
.roberto-the-ruby .picture-block .picture-block-content p {
  font-size: 1.25em;
  line-height: 1.66;
}
.roberto-the-ruby .picture-block .picture-block-wrapper {
  margin-left: 32px;
}
.roberto-coin-history .picture-block {
  max-width: 1200px;
  margin: 0 auto;
}
.roberto-coin-history .picture-block .picture-block-content {
  text-align: left;
  max-width: 100%;
}
.roberto-coin-history .picture-block .picture-block-content .title {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
}
.roberto-coin-history .picture-block .picture-block-content p {
  font-size: 1.25em;
  line-height: 1.66;
}
.roberto-coin-history .picture-block-image {
  margin-left: 32px;
}
.zodiac-pendant .content {
  width: 400px;
  padding: 10px 10px 20px;
  background-color: rgba(255, 255, 255, 0.70);
  max-width: 100%;
}
.zodiac-pendant .content .tagline p {
  color: #000;
  margin-bottom: 40px;
}
.roberto-the-ruby .centering-wrapper {
  height: auto;
}
.roberto-coin-text.roberto-coin-paragraph {
  padding-top: 90px;
}
.roberto-coin-text.roberto-coin-paragraph .rte-setting p {
  margin: 0 0 20px;
}
.cartier-button .button {
  letter-spacing: 0;
}
.preowned-rolex-watches .rolex-block-columns {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.preowned-rolex-watches .rolex-inner-block-column {
  margin-right: 20px;
}
.preowned-rolex-watches .rolex-inner-block-column:last-child {
  margin-right: 0;
}
.preowned-rolex-watches .wp-block-button__link {
  padding: 10px;
  display: inline-block;
  color: #222;
}
.education-on-diamonds .wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.education-on-diamonds .wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.education-on-diamonds h1, .education-on-diamonds h2, .education-on-diamonds h3, .education-on-diamonds h4, .education-on-diamonds h5, .education-on-diamonds h6 {
  clear: both;
  line-height: 1.4;
  margin: 0 0 0.75em;
  padding: 1.5em 0 0;
  font-family: "henderson-sans-basic", sans-serif;
}
.education-on-diamonds h1:first-child, .education-on-diamonds h2:first-child, .education-on-diamonds h3:first-child, .education-on-diamonds h4:first-child, .education-on-diamonds h5:first-child, .education-on-diamonds h6:first-child {
  padding-top: 0;
}
.education-on-diamonds h2 {
  font-size: 26px;
  font-size: 1.625rem;
}
.education-on-diamonds h3 {
  font-size: 22px;
  font-size: 1.375rem;
}
.education-on-diamonds h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.75em;
  padding: 1.5em 0 0;
}
.education-on-diamonds .wp-block-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: .5em;
}
.education-on-diamonds .wp-block-buttons > .wp-block-button {
  display: inline-block;
  margin-left: 0;
  margin-right: .5em;
  margin-bottom: .5em;
}
.education-on-diamonds .wp-block-buttons > .wp-block-button .button {
  color: #fff;
  letter-spacing: 0;
  box-shadow: none !important;
  padding: 0.7em 2em;
  font-weight: 100;
  text-transform: uppercase;
}
.education-on-diamonds .has-text-align-center {
  text-align: center;
}
.education-on-diamonds .wp-block-buttons.aligncenter {
  justify-content: center;
}
.engg-and-wedding-rings .wp-block-cover, .engg-and-wedding-rings .wp-block-cover-image {
  position: relative;
  background-size: cover;
  background-position: 50%;
  min-height: 430px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  box-sizing: border-box;
  z-index: 1;
}
.engg-and-wedding-rings .has-white-background-color {
  background-color: #fff !important;
  color: #000 !important;
}
.engg-and-wedding-rings .wp-block-cover-image.has-parallax, .engg-and-wedding-rings .wp-block-cover.has-parallax {
  background-attachment: fixed;
}
.engg-and-wedding-rings .wp-block-cover-image.has-background-dim::before, .engg-and-wedding-rings .wp-block-cover.has-background-dim::before {
  content: "";
  background-color: inherit;
}
.engg-and-wedding-rings .wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before, .engg-and-wedding-rings .wp-block-cover-image .wp-block-cover__gradient-background, .engg-and-wedding-rings .wp-block-cover.has-background-dim:not(.has-background-gradient)::before, .engg-and-wedding-rings .wp-block-cover .wp-block-cover__gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: .5;
}
.engg-and-wedding-rings .wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before, .engg-and-wedding-rings .wp-block-cover-image .wp-block-cover__gradient-background, .engg-and-wedding-rings .wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before, .engg-and-wedding-rings .wp-block-cover .wp-block-cover__gradient-background {
  opacity: 0.7;
}
.engg-and-wedding-rings .wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.education-on-diamonds .newparagraph {
  font-size: 18px;
  line-height: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  color: #000;
  font-family: "henderson-sans-basic", sans-serif;
}
.education-on-diamonds .wp-block-image.is-style-circle-mask img, .education-on-diamonds .wp-block-image.is-style-rounded img {
  border-radius: 9999px;
}
.education-on-diamonds .is-style-rounded img {
  border: 1px solid #000;
}
.education-on-diamonds .wp-block-image .aligncenter {
  clear: both;
}
.education-on-diamonds h2 a {
  color: #878787;
  font-size: inherit;
  line-height: inherit;
}
.education-on-diamonds h2 a:hover {
  color: #000;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 rgba(0, 0, 0, 1);
}
.education-on-diamonds .wp-block-cover-image.has-background-dim:not([class*="-background-color"]), .education-on-diamonds .wp-block-cover.has-background-dim:not([class*="-background-color"]) {
  background-color: #000;
}
.education-on-diamonds .wp-block-cover-image .wp-block-cover__inner-container, .education-on-diamonds .wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  z-index: 1;
  color: #fff;
}
.engg-and-wedding-rings .wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 991px) {
  .Owned-section .centering-wrapper {
    height: auto;
  }
  .Owned-section .picture-block-heading {
    font-weight: 300;
    font-size: 2.25em;
  }
}
@media screen and (max-width: 850px) {
  .mobilebanner h2 {
    font-weight: 300;
  }
}
@media screen and (min-width: 782px) {
  .shopify-block-columns.removecolumnpadding .shopify-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .shopify-block-columns.removecolumnpadding .shopify-block-column:not(:first-child) {
    margin-left: 2em;
  }
  .shopify-block-columns.removecolumnpadding {
    flex-wrap: nowrap;
  }
  .shopify-block-columns.removecolumnpadding .shopify-block-button.fullwidthbutton a {
    min-width: inherit;
    white-space: normal;
  }
  .shopify-block-columns.removecolumnpadding .shopify-block-column[style*="flex-basis"] {
    flex-grow: 0;
  }
  .education-on-diamonds .wp-block-columns {
    flex-wrap: nowrap;
  }
  .education-on-diamonds .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .education-on-diamonds .wp-block-column[style*="flex-basis"] {
    flex-grow: 0;
  }
  .education-on-diamonds .wp-block-column:not(:first-child) {
    margin-left: 2em;
  }
}
@media screen and (max-width: 781px) {
  .shopify-block-columns.removecolumnpadding .shopify-block-column {
    width: 50%;
    flex-basis: calc(50% - 1em) !important;
  }
  .shopify-block-columns.removecolumnpadding .shopify-block-column:nth-child(2n) {
    margin-left: 2em;
  }
  .client-section .shopify-block-column .shopify-block-image picture img {
    max-width: 100%;
    object-fit: contain;
  }
  .client-section .shopify-block-columns.logobar.has-background {
    flex-wrap: nowrap;
  }
  .engg-and-wedding-rings .wp-block-column:not(:only-child) {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }
  .engg-and-wedding-rings .wp-block-column:nth-child(2n) {
    margin-left: 2em;
  }
}
@media screen and (max-width: 767px) {
  .Owned-section .picture-block-content {
    padding: 0;
  }
  .client-section .shopify-block-columns .shopify-block-column:not(:only-child) {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }
  .client-section .shopify-block-columns .shopify-block-column:nth-child(2n) {
    margin-left: 2em;
  }
  .client-section .shopify-block-columns.logobar.has-background {
    justify-content: flex-start;
  }
  .client-section .shopify-block-column .shopify-block-image, .client-section .shopify-block-column .shopify-block-image picture {
    width: 100%;
  }
  .black-bay-fifty-eight .picture-block {
    flex-direction: row;
  }
  .black-bay-fifty-eight .picture-block .picture-block-image {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }
  .black-bay-fifty-eight .picture-block .picture-block-wrapper {
    margin-left: 2em;
    flex-basis: calc(50% - 1em);
  }
  .picture-block.picture-block--mobile-height-natural .picture-block-image img {
    height: auto;
  }
  .black-bay-fifty-eight .centering-wrapper {
    padding: 0;
  }
  .black-bay-fifty-eight .centering-wrapper .picture-block-content {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .tudor-collage .picture-block {
    margin-top: 0;
  }
  .tudor-collage .picture-block-content {
    padding-bottom: 0;
    max-width: 100%;
  }
  .tudor-collage {
    padding-bottom: 0;
  }
  .watch-making .picture-block {
    flex-direction: row;
  }
  .watch-making .picture-block .picture-block-image {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }
  .watch-making .picture-block .picture-block-wrapper {
    margin-left: 2em;
    flex-basis: calc(50% - 1em);
  }
  .roberto-coin-history .picture-block-image {
    margin-left: 0;
  }
  .picture-block-wrapper .centering-wrapper {
    height: auto;
  }
  .roberto-the-ruby .picture-block .picture-block-wrapper {
    margin-left: 0;
    padding: 10px;
  }
}
@media screen and (max-width: 599px) {
  .shopify-block-columns.removecolumnpadding .shopify-block-column {
    width: 100%;
    flex-basis: 100% !important;
  }
  .shopify-block-columns.removecolumnpadding .shopify-block-column:nth-child(2n) {
    margin-left: 0;
  }
  .collection-two-brands .column {
    flex: 0 0 100%;
  }
  .client-section .shopify-block-columns {
    flex-direction: column;
  }
  .client-section .shopify-block-columns.logobar.has-background {
    justify-content: center;
  }
  .client-section .shopify-block-columns .shopify-block-column:not(:only-child) {
    flex-basis: 100% !important;
    flex-grow: 0;
  }
  .client-section .shopify-block-columns .shopify-block-column:nth-child(2n) {
    margin-left: 0;
  }
  .inside-tudor .rte-setting {
    padding: 0;
  }
  .black-bay-fifty-eight .picture-block {
    flex-direction: column;
  }
  .black-bay-fifty-eight .picture-block .picture-block-wrapper {
    margin-left: 0;
    flex-basis: 100%;
    padding: 10px;
  }
  .watch-making .picture-block {
    flex-direction: column;
  }
  .watch-making .centering-wrapper {
    padding: 10px;
  }
  .watch-making .picture-block .picture-block-wrapper {
    margin-left: 0;
    flex-basis: 100%;
  }
  .watch-making .picture-block-content {
    padding-top: 0;
  }
  .tudor-ambassador .centering-wrapper {
    padding: 10px;
  }
  .pageheading .label {
    font-size: 26px;
    font-weight: 400;
  }
  .education-on-diamonds .wp-block-column {
    flex-basis: 100% !important;
  }
  .columnContainer, .mcnCaptionColumn, .mcnTextBlockInner {
    flex-direction: column !important;
  }
  .engg-and-wedding-rings .wp-block-column:not(:only-child) {
    flex-basis: 100% !important;
    flex-grow: 0;
  }
  .engg-and-wedding-rings .wp-block-column:nth-child(2n) {
    margin-left: 0;
  }
  .education-on-diamonds h2 {
    font-size: 20px;
  }
  .education-on-diamonds .wp-block-image {
    margin-bottom: 1.5em;
  }
}
/*  sahil css start*/
.maxwidthonethousand {
  max-width: 1000px;
  margin: 30px auto 56px !important;
}
.history-columns, .career-opportunities-columns, .text-content-wrap {
  display: flex;
  margin-bottom: 1.75em;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.history-column, .slider-col {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
#h-house-of-peacock-founded-1837 {
  font-weight: 300;
  color: black;
}
.rl-basicgrid-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.rl-basicgrid-gallery .rl-gallery-item {
  width: calc(33.333333333333% - 2px);
  margin: 1px;
}
.rl-basicgrid-gallery .rl-gallery-item {
  text-decoration: none !important;
  box-shadow: none !important;
  text-align: center;
}
.rl-gallery .rl-gallery-item {
  overflow: hidden;
  position: relative;
}
.rl-gallery .rl-gallery-link .rl-gallery-caption {
  position: absolute;
  width: 100%;
  display: block;
  z-index: 2;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  word-wrap: break-word;
  padding: 1em 1.5em;
  font-weight: normal;
  line-height: 1em;
  text-align: left;
  word-wrap: break-word;
  backface-visibility: hidden;
  box-sizing: border-box;
  filter: "alpha(opacity=100)";
  opacity: 1;
  -webkit-transition: transform 0.3s, opacity 0.3s;
  -moz-transition: transform 0.3s, opacity 0.3s;
  -ms-transition: transform 0.3s, opacity 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}
.rl-gallery .rl-gallery-link .rl-gallery-caption, .rl-gallery .rl-gallery-link::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.rl-gallery .rl-gallery-item-title, .rl-gallery .rl-gallery-item-caption {
  display: block;
  font-size: 0.85em;
  color: #fff;
}
.howard-g-image {
  font-size: 15px;
}
.widget {
  padding-bottom: 1.5em;
  list-style: none;
}
.imgs-area .history-column .has-text-align-center {
  margin-top: 15px;
}
.text-content h2 {
  font-size: 1.625rem;
  line-height: 1.925rem;/*   margin: 40px 0 30px; */
}
.theme-block-spacer {
  clear: both;
}
.howard-g-details h4 {
  font-size: 1.125rem;
}
.michigan-avenue-details h2 {
  margin-top: 0;
}
.aligncenter.size-full {
  text-align: center;
}
.career-description {
  padding-right: 65px;
}
.best-jewelry-button__link {
  color: #fff !important;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1.125em;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.66;
  margin-top: 2em;
  padding: 0.7em 2em;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  white-space: nowrap;
}
.best-jewelry-button {
  text-align: center;
  margin-bottom: 2em;
}
.best-jewelry-image .aligncenter.size-large {
  text-align: center;
  margin: 40px 0;
}
.best-jewelry-button__link:hover {
  background-color: #767676;
  color: #fff;
}
.text-content h4 {
  font-weight: 800;
  font-size: 1.125rem;
}
.returns-group__inner-container {
  padding-top: 30px;
}
.pgf-top {
  margin-top: 20px !important;
}
@media (min-width: 1200px) {
  #rl-gallery-container-2 .rl-basicgrid-gallery .rl-gallery- item {
    width: calc(33.333333333333% - 2px);
  }
}
@media screen and (max-width: 1170px) { /* 	.static-footer .widget-column.footer-widget-1 { width: 100%; padding: 5% !important; margin: 0px auto; } .static-footer .widget-column.footer-widget-2,.footer-widget-2 	#text-2, .footer-widget-2 #text-3, .footer-widget-2 #text-4 { width: 100%; } */ #nav_menu-1, #nav_menu-3, #nav_menu-4, #nav_menu-2, #nav_menu-5, #nav_menu-6 {
    font-size: 18px;
  }
  footer h2.widget-title {
    font-size: 1.6875rem;
  }
  #nav_menu-3 ul, #nav_menu-4 ul, #nav_menu-2 ul, #nav_menu-5 ul, #nav_menu-6 ul, #nav_menu-1 ul {
    margin-top: 15px;
    margin-left: 0px;
  }
  h2.widget-title {
    font-size: 1.6875rem;
  }
  .footer-widget-2 p {
    font-size: 17px;
  }
}
@media (min-width: 782px) {
  .history-column, .slider-col {
    flex-basis: 0;
    flex-grow: 1;
  }
  .history-columns, .career-opportunities-columns, .text-content-wrap {
    flex-wrap: nowrap;
  }
  .history-column:not(:first-child) {
    margin-left: 2em;
  }
  .history-column[style*=flex-basis] {
    flex-grow: 0;
  }
}
@media screen and (min-width: 48em) { /* 	.static-footer .widget-column.footer-widget-1 { float: left; width: 53%; } .static-footer .widget-column.footer-widget-2 { float: right; width: 45%; } h2.widget-title { font-size: 11px; font-size: 0.6875rem; margin-bottom: 2em; } */
}
@media (min-width: 992px) and (max-width: 1200px) {
  #rl-gallery-container-4 .rl-basicgrid-gallery .rl-gallery-item {
    width: calc(33.333333333333% - 2px);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #rl-gallery-container-4 .rl-basicgrid-gallery .rl-gallery-item {
    width: calc(50% - 2px);
  }
}
@media (max-width: 992px) {
  .seymour-holtzman-image, .michigan-avenue-details {
    flex-basis: 100% !important;
  }
  .history-column.howard-g-image, .history-column.howard-g-details {
    flex-basis: 100% !important;
  }
  .howard-g-details p {
    display: none;
  }
  .howard-g-details h4 {
    margin: 16px 0 16px;
  }
  .career-description, .career-photo {
    flex-basis: 100% !important;
  }
  .career-description {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  #rl-gallery-container-3 .rl-basicgrid-gallery .rl-gallery-item, #rl-gallery-container-4 .rl-basicgrid-gallery .rl-gallery-item {
    width: calc(100% - 2px);
  }
}
@media (min-width: 600px) and (max-width: 781px) {
  .history-column:not(:only-child) {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }
  .history-column.michigan-avenue-details, .history-column.seymour-holtzman-image, .history-column.howard-g-image, .history-column.howard-g-details {
    flex-basis: 100% !important;
  }
}
@media screen and (min-width: 30em) {
  h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .shopify-section {
    font-size: 12px;

  }
}
/*  sahil css end*/
/*homepage slideshow*/ .slideshow-container {
  position: relative;
  margin: auto
}
.mySlides {
  display: none;
  height: calc(100% - 100px);
}
.prevbtnslide, .nextbtnslide {
  cursor: pointer;
  position: absolute;
  width: auto;
  margin-top: -25%;
  padding: 16px;
  color: #222428;
  font-size: 24px;
  transition: .6s ease;
  border-radius: 0 3px 3px 0
}
.nextbtnslide {
  right: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslide {
  left: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslide:hover, .nextbtnslide:hover {
  color: #f2f2f2;
  background-color: rgba(0, 0, 0, 0.8)
}
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #222428
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0
}
.dotforslideshow {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #e6e6e6;
  border-radius: 50%;
  display: inline-block;
  transition: background-color .6s ease
}
.activehelper .active, .dotforslideshow:hover {
  background-color: #717171
} /*homepageslideshow end*/
/*hmobile slideshow*/ .slideshowmob-container {
  position: relative;
  margin: auto
}
.mySlidesmob {
  display: none;
  height: calc(100% - 100px);
}
.prevbtnslidemob, .nextbtnslidemob {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #222428;
  font-size: 24px;
  transition: .6s ease;
  border-radius: 0 3px 3px 0
}
.nextbtnslidemob {
  right: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslidemob {
  left: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslidemob:hover, .nextbtnslidemob:hover {
  color: #f2f2f2;
  background-color: rgba(0, 0, 0, 0.8)
}



.dotforslideshowmob {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #e6e6e6;
  border-radius: 50%;
  display: inline-block;
  transition: background-color .6s ease
}
.activehelper .active, .dotforslideshowmob:hover {
  background-color: #717171
} 
/*homepageslideshow end*/
.slideshowwatch-container {
  position: relative;
  margin: auto
}
.mySlideswatch {
  display: none;
  height: calc(100% - 100px);
}
.prevbtnslidewatch, .nextbtnslidewatch {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #222428;
  font-size: 24px;
  transition: .6s ease;
  border-radius: 0 3px 3px 0
}
.nextbtnslidewatch {
  right: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslidewatch {
  left: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslidewatch:hover, .nextbtnslidewatch:hover {
  color: #f2f2f2;
  background-color: rgba(0, 0, 0, 0.8)
}

.dotforslideshowwatch {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #e6e6e6;
  border-radius: 50%;
  display: inline-block;
  transition: background-color .6s ease
}
.activehelper .active, .dotforslideshowwatch:hover {
  background-color: #717171
} 


.slideshowwatchmob-container {
  position: relative;
  margin: auto
}
.mySlideswatchmob {
  display: none;
  height: calc(100% - 100px);
}
.prevbtnslidewatchmob, .nextbtnslidewatchmob {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #222428;
  font-size: 24px;
  transition: .6s ease;
  border-radius: 0 3px 3px 0
}
.nextbtnslidewatchmob {
  right: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslidewatchmob {
  left: 0px;
  border-radius: 3px 3px 3px 3px
}
.prevbtnslidewatchmob:hover, .nextbtnslidewatchmob:hover {
  color: #f2f2f2;
  background-color: rgba(0, 0, 0, 0.8)
}

.dotforslideshowwatchmob {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #e6e6e6;
  border-radius: 50%;
  display: inline-block;
  transition: background-color .6s ease
}
.activehelper .active, .dotforslideshowwatchmob:hover {
  background-color: #717171
} 


/*Brandon*/
/* @font-face {
    font-family: "cdp-semibold";
    src: url( "/cdn/shop/files/cdp-semibold-webfont.woff2?v=1669999498") format("woff2"),
         url( "/cdn/shop/files/cdp-semibold-webfont.woff?v=1669999498") format("woff");
    font-weight: normal;
    font-style: normal;

} */

.view-all-tudor-watches{text-wrap:auto;}
.page-title .label{font-family: "henderson-sans-basic", sans-serif;}
.action-button{letter-spacing:0px;text-transform:none;}

.boost-sd__product-image-img--second{background-color:#fff !important;}
.newpagesheader{text-align: center !important; max-width: 1000px !important; margin: 30px auto !important;}

.template-article .page-title,.template-blog .page-title{display:none !important;}
.article-title{margin-top:100 !importantpx;margin-bottom:100px !important;}

.four-tworow {display: flex;flex-wrap:wrap;}
.four-twocolumn { flex: 25%;padding: 2px;}
.four-tworow img{width:100%;height:auto;}
.boost-sd__header-main-4-content{width:80% !important;}
.boost-sd__pagination-button:hover, .boost-sd__pagination-button:focus, .boost-sd__pagination-button:active,.boost-sd__pagination-button{background-color:#fff !important;}
.boost-sd__header-main-4-wrapper{width:80% !important; margin:0 auto;}
.boost-sd__header-image-inner{display:none !important;}
.option-name, .recipient-form__label, .product-quantity-label, .sidebar-title, .cart-tools .instructions label, .comments-wrap label, .customer.addresses .edit-add-address .wrap > label, .customer .account-form .field-wrap label,.brand,.product__sku,.product__price,.product .title, .quick-shop-content .title, .product-area .title,.availablelocation,.breadcrumb-navigation{font-family: "henderson-sans-basic", sans-serif !important;}
.globo-form-app button,.section-title{font-family: "henderson-sans-basic", sans-serif;text-transform:uppercase !important;}}
.nobackgroundheader{margin-top:30px; text-align:center width:100%;padding:20px;  font-family: "henderson-sans-basic", sans-serif;}
.nobackgroundheader a{background-color:#8c2433;padding:10px 20px;color:#ebe5d8;margin:10px auto !important;display:table;text-transform:uppercase;font-size:15px;}
.nobackgroundheader a:hover{;color:#c5b9ac;}
.nobackgroundheader h2{margin:10px auto;text-align:center;}
.cart-submit,#mySidebar h2,#mySidebar h3,#mySidebar h4,#mySidebar h5 {color:#ebe5d8 !important;}
.cdp-row h3{font-size:1.0rem}
.mansionparagraph a{margin:25px auto;text-align:center; display:inline-block; background-color: #ebe5d8;color:#8c2433;width:auto;}

.action-button.desaturated{color:#fff;}
.boost-sd__no-search-result,.product-interaction-title, .product-interaction .sharethis-title{display:none;}
/* .boost-sd__header-main-2-content.boost-sd__header-main-2-content--relative {

    font-size: 12px;
} */
.boost-sd__header-main-2-content--relative{background-color:#fff !important;}
.boost-sd__header-main-2-content-inner{max-width:100% !important;}
.flexblog{text-align:center;}
main{min-height:0px !important;}
.srfix .picture-block-content{margin:0 auto;}

.boost-sd__header-description
{font-family:'cdp-semibold'}
.boost-sd__header-title
{font-family:'cdp-bold' !important}

.collections-accordion {
background-color:#fff;
  color: #444;
  cursor: pointer;
  width: 100%;
  text-align:center;
  border: none;
  outline: none;
  transition: 0.4s;
}

.collections-active, .collections-accordion:hover {
  background-color: #fff;
}


.collections-panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}


.mansionopening{color:#ebe5d8 !important;text-align:center;}
.mansionparagraph{font-size:20px;color:#ebe5d8 !important;text-align:center;}
html .shopify-payment-button .shopify-payment-button__button--unbranded{width:50%}
.cubsthankyou{height:1000px;background-image: url("/cdn/shop/files/Cubs_Thank_You_2100px.jpg?v=1697120150"); min-height: 500px;background-attachment: fixed; background-position: center;background-repeat: no-repeat;background-size: cover;}
a.cdp-button{padding: 10px 20px; background-color: #8c2433;color: #fff;margin:0px 10px;border:1px solid #8c2433;}
a:hover.cdp-button{padding: 10px 20px; background-color: #ebe5d8;color: #8c2433;margin:20px 10px;border:1px solid #8c2433;}
p{max-width:1200px;margin:20px auto !important;}
.preownedprompt{margin: 0 auto !important;padding: 0;color: #8c2433;font-weight: bold;}
.boost-pfs-filter-product-item-price{padding-bottom:0px !important;margin-bottom:0px !important}
.form-group .label-wrap{text-align:left;}
#thisbanner{display: flex; justify-content: center;align-items: center; min-height: 1000px; background-image: url('/cdn/shop/files/Untitled-1.webp?v=1689263636');background-position: center center; background-repeat: no-repeat;background-attachment: fixed; background-size: cover;background-color:#464646; min-height:1000px;text-align:center;vertical-align:middle;}
#thisbanner .overlay{background-color:rgba(0,0,0,0.25);min-height:450px;width:100%;display: flex;
    justify-content: center;
    align-items: center;}
#thisbanner .vmiddle{text-align:center;vertical-align:middle;color:#FFF;}
#thisbanner h2{  font-family: "henderson-sans-basic", sans-serif;font-size:3em;}
#thisbanner p{margin-bottom:60px;font-family: "henderson-sans-basic", sans-serif;}
 #thisbanner a{padding:10px 20px;background-color:#8c2433;color:#fff;text-transform:uppercase;font-family: "henderson-sans-basic", sans-serif;font-size:12px;}   
#thiscubsbanner{display: flex; justify-content: center;align-items: center; min-height: 450px; background-image: url('/cdn/shop/files/CDP-CUBS-GOCUBS-DESKTOPnotext.webp?v=1744303011');background-position: right; background-repeat: no-repeat;background-attachment: fixed; background-size: cover;background-color:#fff; min-height:450px;text-align:center;vertical-align:middle;}

#thiscubsbanner .vmiddle{text-align:center;vertical-align:middle;color:#FFF;}
#thiscubsbanner h2{  font-family: "henderson-sans-basic", sans-serif;font-size:3em;}
#thiscubsbanner p{margin:0 auto !important;font-family: "henderson-sans-basic", sans-serif;}
 #thiscubsbanner a{padding:10px 20px;background-color:#8c2433;color:#fff;text-transform:uppercase;font-family: "henderson-sans-basic", sans-serif;}   


#thisvdaybanner{display: flex; justify-content: center;align-items: center; min-height: 1000px; background-image: url('/cdn/shop/files/Diamond_Group_copy.webp?v=1705609729');background-position: center center; background-repeat: no-repeat;background-attachment: fixed; background-size: cover;background-color:#464646; min-height:1000px;text-align:center;vertical-align:middle;}
#thisvdaybanner .overlay{background-color:rgba(0,0,0,0.25);min-height:1000px;width:100%;display: flex;
    justify-content: center;
    align-items: center;}
#thisvdaybanner .vmiddle{text-align:center;vertical-align:middle;color:#FFF;}
#thisvdaybanner h2{  font-family: "henderson-sans-basic", sans-serif;font-size:3em;padding:8px}
#thisvdaybanner p{margin-bottom:60px;font-family: "henderson-sans-basic", sans-serif;padding:8px}
 #thisvdaybanner a{padding:10px 20px;background-color:#fff;color:#8c2433;}   

  

#thatbanner{display: flex; justify-content: left;align-items: center; min-height: 500px !important;  background-image: url('/cdn/shop/files/watch_buy_new_header.jpg?v=1755552809?v=1688756236') !important;background-position: center center; background-repeat: no-repeat;background-attachment: unset; background-size: cover;background-color:#464646; min-height:1000px;text-align:center;vertical-align:middle;}
#thatbanner .overlay{background-color:rgba(0,0,0,0.10);min-height:500px !important;width:100%;display: flex;
    justify-content: left;
    align-items: center;}
#thatbanner .vmiddle{text-align:center;vertical-align:middle;color:#FFF;margin-left:70px;}
#thatbanner h2{  font-family: "henderson-sans-basic", sans-serif;font-size:3em;color:#fff;}
#thatbanner p{margin-bottom:60px;font-family: "henderson-sans-basic", sans-serif;}
 #thatbanner a{padding:10px 20px;background-color:#8c2433;color:#fff;}   


#magbanner{display: flex; justify-content: center;align-items: center; min-height: 1000px; background-image: url('/cdn/shop/files/page0001-cover.jpg?v=1701201913');background-position: center center; background-repeat: no-repeat;background-attachment: fixed; background-size: cover;background-color:#464646; min-height:1000px;text-align:center;vertical-align:middle;}
#magbanner .overlay{background-color:rgba(0,0,0,0.25);min-height:1000px;width:100%;display: flex;
    justify-content: center;
    align-items: center;}
#magbanner .vmiddle{text-align:center;vertical-align:middle;color:#FFF;}
#magbanner h2{  font-family: "henderson-sans-basic", sans-serif;font-size:3em;}
#magbanner p{margin-bottom:60px;font-family: "henderson-sans-basic", sans-serif;}
 #magbanner a{padding:10px 20px;background-color:#8c2433;color:#fff;}   
#magbanner img{max-width:400px;margin:0 auto;height:auto;width:100%;;}

    
.template-product .product-quantity-label, .template-product .product-quantity-input{display:none !important}
.product__description li{list-style-type:none !important}
  
.boost-pfs-filter-collection-description p{max-width:1000px;margin:0 auto;}
input{font-family: "henderson-sans-basic", sans-serif !important;}
.leftcdpmenu path{fill:#c5b9ac !important}
.leftcdpmenu .shift svg{margin-bottom:-2px;}
.leftcdpmenu .phoneshift svg{margin-bottom:-4px;}
.leftcdpmenu .mapshift svg{margin-bottom:-5px;}
/*homepage*/
.pxs-announcement-bar{font-family: "henderson-sans-basic", sans-serif;}
.logo-list{max-width:95% !important;margin:0 auto !important;padding: 0 10px !important;}
.slideshow__slide-adapt-to-image img{width:100%}
.locations h3{text-align:center;margin:60px auto;}
.locations ul{width:100%;text-align:center;margin:0 auto;}
.locations li{display:inline-block;list-style-type:none;width:32%}
.contacticons ul{width:auto;text-align:center;margin:15px auto;max-width:150px;}
.contacticons li{display:inline-block;list-style-type:none;width:25%}
.locations p{font-size:10px;margin:10px auto;text-transform:uppercase;}
.tooltip {position: relative;display: inline-block;}
.tooltip .tooltiptext {visibility: hidden;width: 100px;background-color:#fff; color: #8a2432;text-align: center;border-radius: 6px;padding: 3px 0;position: absolute; z-index: 1;bottom: 150%;left: 50%; margin-left: -60px;filter: drop-shadow(2px 2px 2px #000);font-size:12px;font-family: "henderson-sans-basic", sans-serif;}
.tooltip .tooltiptext::after {content: "";position: absolute;top: 100%; left: 50%; margin-left: -5px;border-width: 5px;border-style: solid;border-color: white transparent transparent transparent;}
.tooltip:hover .tooltiptext {visibility: visible;}
.text-with-icons.heading-large h6{font-size:12px !important;}
.text-with-icons__block-content p{font-size:12px !important;}
.image-with-text__content--inner{font-size:14px !important;}
.historyhomepage h2{color:#8a2432}
.historyhomepage{background-color:#ebe5d8}

li,p{font-family: "henderson-sans-basic", sans-serif;}
.widget-column nav ul li a:hover{color:#fff !important;}
.main-header nav.full .nav-item > .label, .main-header nav.full .nav-item > details .label,.mega-nav .list .label{font-family: "henderson-sans-basic", sans-serif;}
.mega-nav .list .list-item.one-column{font-family: "henderson-sans-basic", sans-serif !important;}
.store-title a:focus{border: none !important; outline:none !important; }

.homepagehistory {
    background-image: url('/cdn/shop/files/historyofcdback_ef2a57d6-5ccc-481b-9088-1098c3c8966c.jpg?v=1670451176');
    height: 100%;
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}


.main-header nav.full .nav-item > .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a2432;
  padding: 20px 13px !important;


  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}


.content .black-bay-fifty-eight .button {
  padding: 0.6em 2em !important;
  text-align: center;
}
.gobackbutton {
  background-color: #e6e6e6;
  border: 1px solid #7d7d7d;
  padding: 6px;
  width: 56%;
  margin-bottom: 30px;
  font-size: 12px;
}
.mobile {
  display: none;
}
.boost-pfs-filter-collection-header-wrapper {
  background-position: center;
  padding-top: 14%;
  margin-bottom: 100px;
}
#b-collection-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2%;
  width: 42%;
  text-align: center;
  margin: 0 auto -200px auto;
  border: 3px solid #e8e9eb;
  max-width: 800px;
}
.b-fifty-space-for-collection-box {
  height: 50px;
}
.b-the-product-count {
  margin: 20px auto;
}



#locationsfooterarea {
padding:0px 0px;
}
#locationsfooterarea .widget {
  display: inline-block;
  list-style: none;
  width: 33%;
  vertical-align: top;
  padding-bottom: 1.5em;
  padding: 2%;
  text-align: center;
  border: 1px solid #fff;
}
#locationmainheader {
  color: #000 !important;
/*letter-spacing: .1818em; */
}
#locationsfooterarea .widget-title {
    color: #000;
    line-height: 24px;
    font-weight: bold;
  margin-bottom:0px;
    text-transform: uppercase;
}
#locationsfooterarea .footer-heading span {
  font-family: "henderson-sans-basic", sans-serif;
text-transform:uppercase;
  color: #fff;
  font-weight: 400;
  margin-top:40px;
}

#locationsfooterarea .textwidget p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 18px;
    margin: 5px auto;
}

#locationsfooterarea .textwidget a {
  color: #000 !important;
  text-decoration: none;
  border-bottom: 0px solid #000;
}



.greylogofooter{margin:0 auto;width:100%;text-align:center;}
.greylogofooter img{width:100%;height:auto;max-width:750px;}

.locationcontainer {border: 0px solid #fff; padding:0 0 6% 0;}

.template-article #locationsfooterarea, .template-blog #locationsfooterarea {
  display: none;
}
.article-date {
  display: none;
}
.stevenimage {
  margin-right: 20px;
  margin-bottom: 20px;
}

.footer-widget-1 {background-color:#8a2432 !important;}
.footer-widget-1 .widget-title{color:#fff !important;font-weight:normal !important;font-size:16px;}
.footer-widget-1 .widget_nav_menu a{color: #ebe5d8 !important;font-family: "henderson-sans-basic", sans-serif;}
.footer-widget-1 .widget-column nav ul li a{border-bottom:solid 1px #fff !important}
.footer-widget-1 img{width:100%;height:auto;}


.centeredh2 {
  text-align: center !important;
  font-size: 1.625rem !important;
  margin: 20px auto !important
}
.cdp-row {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
.cdp-row .textside{ text-align: left;
  padding:2%;}
  
.cdp-col-left, .cdp-col-right {
  flex-shrink: 0;
  flex-basis: 50%;

}
.nobackgroundheader,
.cdp-row p {
  margin-bottom: 40px;
  font-size: 12px;
  line-height: 1.5em;
  padding:0px;
}
.cdp-row a {
  border: 1px solid #8a2432;
  padding: 10px 50px;
  text-transform: uppercase;
  font-family: "henderson-sans-basic", sans-serif;
  color:#fff;
  background-color:#8a2432;
}

.blogfromsa .cdp-row a {
  border: 0px solid #8a2432;
  padding: 0px;
font-size:inherit;
    text-transform:none;
}
.article .blogfromsa .cdp-row a{background-color:#fff !important;color:#8a2432 !important;}

.blogfromsa .sahead a {
  border: 0px solid #8a2432;
  padding: 0px;
font-size:1.625rem;
}

.cdp-row a:hover {
  background-color: #ebe5d8;
  color: #8a2432 !important;
}
#since1837{background-image: url(/cdn/shop/files/mansion.jpg?v=1710776381) !important;justify-content: center;align-items: center;  background-position: center center; background-repeat: no-repeat;background-attachment: fixed; background-size: cover;text-align:center;vertical-align:middle;}
#since1837 p{color:#ebe5d8 !important;}

#since1837 .cdp-row {
  max-width: 100%
}
#since1837 .cdp-col-right {
  text-align: right;
}
#since1837 img {
  width: 100%;
  height: auto;
}
#since1837 h2{font-size: 40px !important;margin-bottom:10px;}
#since1837 {color:#8a2432;background-color:#ebe5d8}


#since1837 .bkoverlay h3, .cdp-row h2{font-size:2.0rem !important;}

#cdphistorylottie img {
  width: 100%;
  height: auto;
}
#cdphistorylottie {
  text-align: left;
}
#cdphistoryhome {
  max-width: 100%;
}
.noboxlink {
  padding: 0px !important;
  font-size: inherit !important;
  border: 0px solid #fff !important;
  text-transform: none !important;
  background: none !important;
  color: #8a2432 !important;
}
.sapage .cdp-row p {
  font-size: 12px !important;
}
.speaktoanexpert {
  margin-bottom: 10px !important;
  font-size: .8em !important;
}
.engagementringcontact {
  display: inline-block;
  margin-top: 10px;
}
.engagementringcontact li {
  list-style-type: none;
  height: 40px;
  display: inline-block
}
.engagementringcontact a {
  white-space: nowrap;
  font-size: .8em;
  text-align:center;
  padding: 10px 20px;
}
.engagementringshopping {
  margin: 0px auto 20px auto;
}
.engagementringshopping a {
  border: 1px solid #000;
  font-size: .8em;
  line-height: 0.85em;
  width: auto;
  padding: 10px 20px;
  white-space: nowrap;
  margin: 5px 7px;
  display: inline-block;
  min-width: 240px;
}

#engagementringvideoloop video {
  width: 100%;
  height: auto
}
.cdp-row-two-thirds {
  width: 100%;
  margin: 0 auto;
  max-width: 1737px !important
}
.cdp-two-thirds, .cdp-one-third {
  display: table-cell !important;
  text-align: center;
  padding: 1%;
}
.cdp-two-thirds {
  width: calc(65% - 23px);
  margin-right: 18px;
  vertical-align: bottom;
}
.cdp-one-third {
  width: 34.95%;
  vertical-align: bottom;
}
.cdp-row-two-thirds img {
  width: 100%
}
#cdp-featblog {
  vertical-align: middle !important
}
.otherentries {
  display: flex;
  flex-wrap: wrap;
}
.otherentries .blogflexthis {
  flex-grow: 1;
  width: 33%;
  max-width: 33%;
  height: auto;
  padding: 3em;
}
.otherentries img {
  width: 100%
}
.blogfirstrow {
  padding: 5em 0;
}
.blogfirstrow #cdp-featblog {
  text-align: left !important
}
.blogfirstrow .cdp-two-thirds {
  text-align: center !important
}
.blogfirstrow img {
  width: 100%
}
.blogfirstrow h2 {
  font-weight: 700;
  font-size: 1.6em;
  line-height: 1.4em;
}
.otherentries h2 {
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.2em;
}
.otherentries a, .blogfirstrow a {
  color: #000 !important
}
.otherentries a:hover, .blogfirstrow a:hover {
  color: #a6a6a5 !important
}
#cdp-featblog .article-tags-tags a {
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid #000;
}
#cdp-featblog .article-tags-tags {
  margin-bottom: 10px;
}
.otherentries .article-tags-tags a {
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid #000;
}
.otherentries .article-tags-tags {
  margin-bottom: 10px;
}
.cdp-row-two-thirds-bottomhp {
  width: 100%;
  margin: 0 auto;
  max-width: 1737px !important
}
.cdp-two-thirds-bottomhp, .cdp-one-third-bottomhp {
  display: inline-block;
  text-align: center;
  padding: 1%;
}
.cdp-one-third-bottomhp {
  width: 57.45%;
  vertical-align: bottom;
}
.cdp-two-thirds-bottomhp {
  width: calc(42% - 23px);
  margin-right: 18px;
  vertical-align: bottom;
}
.cdp-row-two-thirds-bottomhp img {
  width: 100%
}
.textside {
  padding: 2%;
  vertical-align: middle;
  display: table
}
.imageside{text-align:center;padding:1%}
.textsidealign {
  display: table-cell;
  vertical-align: middle;
  text-align:left;
  padding:6%;
}
.cdp-grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 5px;
}
.cdp-grid-container img {
  width: 100%;
}
.cdp-logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
  padding:2% 0px;
}
.cdp-logo-item {
    flex: 0 23%;
    text-align: center;
    vertical-align: middle;
    height: 110px;
    margin: 1% 1%;
}
.newsletter {
  font-size: 14px !important;
  letter-spacing: 2px !important
}
.newsletter #EmailAddress {
  border: 1px solid #646464;
  width: 100%;
  height: 20px;
  padding: 20px 10px;
}
.newsletter label {
  color: #646464;
  text-transform: uppercase;
}
.newsletter .collectEmailFormGroup {
  text-align: left
}
.newsletter button {
  background: #676767;
  padding: 10px 30px;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  font-weight: bold;
}
.newsletter h3 {
  text-transform: uppercase;
}
#main-footer {
  width: 100%;
  max-width: none;
  margin-top:0px !important;
}
.cdp-maintemplate #b-collection-box {
  width: 50%;
}
.cdp-maintemplate .pagebuttons a {
  border: 1px solid #717171;
  padding: 10px 50px;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
}
.cdp-maintemplate .pagebuttons a:hover {
  background-color: #717171;
  color: #fff;
}
.cdp-maintemplate .pagebuttons {
  margin: 40px auto 10px;
  display: flex;
  justify-content: center;
}
.cdp-maintemplate h2 {
  margin-top: 0px;
  line-height: 40px;
}

.cdp-maintemplate .boost-pfs-filter-collection-description {
  margin-top: 0px;
}
.cdp-maintemplate h3 {
  margin: 18px 0 18px;
}
.cdp-maintemplate.custom__item-inner {
  max-width: 961px;
}
.education-on-diamonds .wp-block-column {
  text-align: center;
}
.education-on-diamonds .custom__item-inner {
  width: 90%;
}
.diamondcutcontainer {
  list-style-type: none;
  width: 100%;
}
.diamondcutcontainer li {
  width: 32%;
  display: inline-block;
  padding: 2%;
  vertical-align: top;
  text-align: center;
}
.diamondcutcontainer.nu li {
    width: 12%;
    display: inline-block;
    padding: 0% 2%;
    vertical-align: top;
    text-align: center;
    margin: 15px 35px;
}
.diamondcutcontainer.nu li p strong{color:#8a2432;}

.rightdiamondcutitem, .leftdiamondcutitem {
  display: table-cell;
}
.rightdiamondcutitem {
  width: 40%;
}
.leftdiamondcutitem {
  width: 60%;
}
#shopify-section-static-schedule-page .content-wrap {
  max-width: 800px;
  margin: 22px auto;
  border: 1px solid #717171;
  padding: 30px;
}
.boost-pfs-filter-product-item-title, .boost-pfs-filter-product-item-vendor, .boost-pfs-filter-product-item-price {
  text-align: center !important;
  margin-top: 0px !important;
  font-family: "henderson-sans-basic", sans-serif !important;
}
.boost-pfs-filter-product-item-vendor{color:#000 !important;}
.boost-pfs-filter-product-item-show-details-true .boost-pfs-filter-product-item-grid .boost-pfs-filter-product-bottom {
  height: auto;
  background: #fff !important;
}
.boost-pfs-filter-product-item-image {
  margin-bottom: 0px !important
}
.boost-pfs-filter-product-item-title:hover {
  color: #717171 !important;
}
.boost-pfs-filter-product-item-title {
  font-size: 14px !important
}
.boost-pfs-filter-product-item {
  text-align: center !important;
}
.boost-pfs-filter-product-item-show-details-true .boost-pfs-filter-product-item-grid:hover .boost-pfs-filter-product-bottom {
  bottom: -165px !important;
}
.boost-pfs-filter-product-bottom {
  border: 0px solid #e6e6e6;
}
.template-search .boost-pfs-filter-product-bottom {
  border: 0px solid #e6e6e6;
}
.paddremove {
  padding: 0px !important
}
.tudor-collage .home-section.picture-block {
  padding-top: 0px !important
}
.cdpiframes iframe {
  width: 100%;
  height: 100vh;
}
.cdpiframesforhomeclass {
  text-align: center;
}
.cdpiframesforhomeclass iframe {
  width: 100%;
  height: 100vh;
  max-width: 1800px;
  margin: 0 auto !important;
  border: 0px solid #fff;
}
.servicesrow {
  width: 100%;
  text-align: center
}
.servicescol {
  width: 15%;
  margin: 5px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}
.servicescol img {
  width: 100%;
  height: auto;
}
.servicescol video {
  width: 100%
}
.servicescol a:hover img {
  opacity: 0.9
}
.service-content .custom-bridal-section p {
  margin: 40px auto !important;
}
.servicelistindent li {
  text-align: center;
  list-style: none;
  font-size: 1.2em;
  line-height: 1.5em;
}
.servicelistindent {
  padding-left: 0px !important
}
.jewelryrepair .block-buttons {
  text-align: center;
}
.calltext {
  padding: 10px;
  display: inline-block;
  font-size: 1.0em !important;
  font-weight: bold;
}
a.calltext:hover {
  text-decoration: underline !important;
}
.product-card-footer-mobile {
  display: block !important;
}
.product figure > .product-card-overlay {
  display: none !important
}
.centerbutton {
  text-align: center
}
.cdp-cta a {
    border: 1px solid hsl(351.3462, 59%, 34%);
    padding: 10px 50px;
    letter-spacing: 0px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px !important;
    line-height: 22px;
    background-color: hsl(351.3462, 59%, 34%);
    color: #fff;
}
#formilla-frame {
  color-scheme: none !important;
}

.formilla-chat-button-inner{bottom:14px !important;}
                           
.nosquare {
  padding: 0px !important;
  border: 0px solid #fff !important;
  background-color: #fff !important;
  color: #717171 !important
}
.cdp-cta a:hover {
  background-color: #ebe5d8 !important;
  color:#8a2432 !important;
}
.promises {
  max-width: 1000px;
  padding: 1em 2em;
  border: 1px solid #717171;
  margin: 0 auto;
  background-color: #e6e6e6;
}
.template-contact .field-wrap .field, .full-width-schedule-form .field-wrap select {
  background-color: #fff !important
}
.contactpagestyle{padding:0 9%}
.contactpagestyle h3 {
  margin: 40px auto 20px auto;
  font-weight: bold;
}
.threecolumn {
  float: left;
  width: 33.33%;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}
.threecolumnrow:after {
  content: "";
  display: table;
  clear: both;
}
#locationspage {
  max-width: 1200px;
  margin: 0 auto;
}
input[type=submit] {
  color: #fff
}
.diamonddesignform {
  min-height: 650px;
}
.sapage .textside {
  padding: 3%;
}
.tudorimg img {
  width: 100%
}
.attwordside {
  padding: 5%
}
.swym-wishlist-button-bar {
  text-align: center !important;
}
.boldvendor .boost-pfs-filter-product-item-vendor {
  letter-spacing: 2px;
  font-weight: bold;
}
.boldvendor .boost-pfs-filter-product-item-price {
  font-weight: bold;
}
.boost-pfs-filter-product-item-vendor {
  margin-bottom: 0px !important;
}
.extradescription.tudorflex {
  text-align: unset;
}
.tudorflex {
  display: flex;
}
.tudorflex .tudor-one-half {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
}
.tudorflex .shop_attributes {
  column-count: 3;
}
.productappointment {
  width: 180px;
  margin-top: 25px;
  line-height: 1;
  color: #fff;
  background-color: #000000;
  padding: 15px 24px;
  font-size: 13px;
  display: inherit;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}
.productappointment.disable {
  cursor: not-allowed;
}
.input-wrap.error small {
  color: #dc3545
}
.input-wrap.error input {
  border-color: #dc3545;
}
.formsuccess_msg span {
  font-size: 16px;
  color: #28a745;
  margin-top: 10px;
  display: block;
  font-weight: bold;
}
.small-price {
  font-size: 14px;
}
.product-details__price {
  margin-bottom: 0px;
}
.product-area .options {
  padding-bottom: 5px;
}
.product-details__price {
  width: auto !important;
  margin: 0px auto !important;
}
.product-area .options {
  border-top: 0px solid #eeeeee;
}
.product-area .description, .product-interactions .product-interaction.email-us + .share-this, .product-interactions {
  border: 0px solid #fff
}
.product-form-grid-select .product-quantity-input {
  margin: 0 auto !important
}
.product-form-grid-select .product-quantity-input {
  text-align: center
}
.product-form {
  text-align: center;
}
.boost-pfs-search-box {
  border: 0px solid #fff;
}
.brandonheader {
  max-width: 2100px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0px 0px 0px;
}
.brandonheader h1 {
  font-weight: 100;

}
.boost-pfs-filter-product-item-vendor, .boost-pfs-filter-product-item-price {
  font-weight: bold !important;
  font-size: 14px !important;
}
.boost-pfs-filter-collection-description {
    max-width: 1200px;
    margin: 0 auto;
}
.tudorsizechart a {
  color: red
}
.tudorsizechart a:hover {
  color: white
}
.makeanappointmentproductpage {
  width: 69%;
  margin-top: 29px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  line-height: 1;
  color: #fff;
  background-color: #000000;
  padding: 15px 24px;
  font-size: 13px;
  display: inherit;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}
#goldbuyingsizefix {
  font-size: 26px !important;
}
.textus {
  max-width: 600px;
  width:100%;
  margin: 0 auto !important;
  text-align: center;
}
.textus li {
  list-style-type: none
}
.product-card-interaction-addtocart-available {
  color: #fff !important
}
.product-submit:hover {
  background-color: #000 !important
}
.wishlist {
  width: 100%;
  text-align: center;
}
.submit-button {
  color: #fff !important
}
.th-wl-product-content, .th-wl-product-add-to-cart, .th-wl-pr-qt {
  display: none !important;
}
.th-wl-product-item .th-wl-product-remove-product svg {
  color: #717171 !important;
}
.th-wl-product-item .th-wl-product-remove-product svg {
  fill: #717171 !important;
}
.th-wl-container {
  width: 90% !important;
  margin: 30px auto !important;
  max-width: 100%;
  overflow: hidden;
  padding: 0 15px;
}
.th-wl-header-col h3 {
  margin: 0 10px 0px 0 !important;
}

.th_wlc_position_relative{margin-top:-5px;}
.th_wlc_position_relative svg {
  width: 16px !important;
  height: 14px !important;
  color: #717171 !important;

}
.th_wlc_product_count {
  background-color: #ffffff !important;
  color: #000 !important;
  height: 12px !important;
  width: 12px !important;
  top: -11.5px !important;
  right: -11px !important;
  z-index: 999 !important;
  opacity: 5 !important;
  border-color: #717171 !important;
}
.th_wlc_position_relative path {
  fill#717171 !important
}
.th_wl_btn .d-flex {
  display: flex;
  float: right;
}
.prcontainer {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  justify-content: space-around;
}
.prcontainer li {
  margin: 5px;
  width: 30%;
  list-style: none
}
.prcontainer p {
  margin: 5px;
  font-size: 14px;
  text-align: center !important;
}
.prcontainer a {
  margin: 5px auto;
  font-size: 11px;
  text-align: center !important;
}
.prcontainer span {
  margin: 5px auto;
  font-size: 11px;
  text-align: center !important;
}
.prcontainer div {
  text-align: center !important;
}
.prmediakitheader {
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
  margin: 0px;
}
.prdownloadall {
  margin-bottom: 20px !important;
  display: block;
}
.praccordion {
  background-color: #fff;
  color: #000;
  cursor: pointer;
  margin: 30px auto 40px auto;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.practive .praccordion:hover {
  background-color: #ccc;
}
.prpanel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.ls-results {
  display: none;
}
.homevid {
  display: block
}
.homeimg {
  display: none;
}
.text-and-image {
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: auto;
  max-height: 850px;
  display: flex;
  overflow: hidden;
  object-fit: cover;
  justify-content: center;
  align-items: center;

}
.text-and-image4 {
  margin: 0 auto;
  position: relative;
  width: 24%;
  height: auto;
  max-height: 400px;
  display: inline-block;
  overflow: hidden;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 4px #000; /* background: rgb(156, 156, 156); */
}
.text-and-image2 {
  margin: 0 auto;
  position: relative;
  width: 49%;
  height: auto;
  max-height: 400px;
  display: inline-block;
  overflow: hidden;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 4px #000; /* background: rgb(156, 156, 156); */
}
.text-and-image-image {
  width: 100%;
  max-height: 800px;
  height: auto;
  background: yellow;
  object-fit: cover;
}
.text-and-image-box {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.text-and-image-box2 {
  position: absolute;
  top: 2%;
  width: 80%;
  padding: 2%;
  text-align: center;
  height: auto;
}
.text-and-image-box3 {
  position: absolute;
  bottom: 2%;
  width: 80%;
  padding: 2%;
  text-align: center;
  height: auto;
}
.text-and-image-box4 {
  position: absolute;
  left: 2%;
  top: 2%;
  width: 80%;
  padding: 2%;
  text-align: left;
  height: auto;
}
.text-and-image-box5 {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 80%;
  padding: 2%;
  text-align: right;
  height: auto;
}
.text-and-image-box6 {
  position: absolute;
  right: 2%;
  top: 2%;
  width: 80%;
  padding: 2%;
  text-align: right;
  height: auto;
}
.text-and-image-box7 {
  position: absolute;
  left: 2%;
  bottom: 2%;
  width: 80%;
  padding: 2%;
  text-align: left;
  height: auto;
}
.text-and-image-box8 {
  position: absolute;
  width: 80%;
  padding: 2%;
  text-align: center;
  height: auto;
}
.guccibox4 {
  width: 35% !important;
  text-align: center !important;
}
.guccibox4 img {
  width: 100%;
  height: auto;
}
.text-and-image4 .text-and-image-box3 {
  position: absolute;
  bottom: 7%;
  width: 100%;
  padding: 2%;
  text-align: center;
  height: auto;
  margin: 0 auto;
}
.text-and-image-caption {
  position: relative;
  height: auto;
}
.display-2 {
  font-size: 2.5em;
  text-transform: uppercase;
  line-height: 1.7em;
  letter-spacing: 4px;
  color: #ebe5d8;
}
.text-and-image4 .display-2 {
  font-size: 1.3em;
}
.display-2-right {
  font-size: 2.5em;
  text-transform: uppercase;
  line-height: 1.7em;
  letter-spacing: 4px;
  color: #fff;
  text-align: right;
}
.display-2-left {
  font-size: 2.5em;
  text-transform: uppercase;
  line-height: 1.7em;
  letter-spacing: 4px;
  color: #fff;
  text-align: left;
}
.lead {
  font-size: 0.8em !important;
  text-align: center !important;
  text-transform: uppercase;
  line-height: 1.5em !important;
  letter-spacing: 4px;
  color: #fff;
}
.lead-left {
  font-size: 0.8em !important;
  text-align: left !important;
  text-transform: uppercase;
  line-height: 1.5em !important;
  letter-spacing: 4px;
  color: #fff;
}
.lead-right {
  font-size: 0.8em !important;
  text-align: right !important;
  text-transform: uppercase;
  line-height: 1.5em !important;
  letter-spacing: 4px;
  color: #fff;
}
.image-background a {
  border: 1px solid #ebe5d8;
  padding: 15px 50px;
  letter-spacing: 0px;
  font-weight: bold !important;
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 22px;
  background-color: rgba(139, 36, 51, 1.0) !important;
  color:#ebe5d8 !important;
  margin-top: 5px !important;
  display: inline-block;
  width: auto;
}
.text-and-image4 a {
  border: 1px solid #fff;
  padding: 8px 15px;
  letter-spacing: 0px;
  font-weight: bold !important;
  text-transform: uppercase;
  font-size: 12px !important;
  line-height: 22px;
  background-color: rgba(255, 0, 0, 0.0) !important;
  color: #fff !important;
  margin-top: 5px !important;
  display: inline-block;
  width: auto;
}
.forlogos {
  text-align: center;
}
.forlogos img {
  max-width: 280px;
  
  margin: 20px auto 0 auto
}
.bestsellers {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.bestseller {
  list-style-type: none;
  display: inline-block;
  padding: 1%;
  width: 19%;
  vertical-align: top;
}
.bestsellertext {
  font-size: 12px;
  text-align: center;
  padding: 5%
}
.bestseller span {
  font-weight: bold;
}
.bestseller img {
  width: 100%;
}
.forbestseller {
  padding: 4% 0;
  width: 100%;
}
.forbestseller h3 {
  text-align: center;
  margin: 0 auto;
 font-size:1.8em;
 line-height:1.8em; 
}

.featuredhomedesktopbanner{display:block;width:100%;text-align:center}
.featuredhomedesktopbanner img{width:100%;height:auto;margin:0 auto;}
.featuredhomemobilebanner{display:none;}

.centerthisimage{margin:0 auto;text-align:center;}

.placeholder-svg path{display:none;}

.threecolumn{width:100%;display:contents;}
.threecolumn li{width:30%;display:inline-block;}
  .newbar{font-size:13px;  font-family: "henderson-sans-basic", sans-serif;padding:10px !important;display:block}


@media (max-width: 1200px) {
  .mobiletext h1{font-size:18px !important;}
  .text-and-image4 {
    margin: 0 auto;
    position: relative;
    width: 49%;
    height: auto;
    max-height: 400px;
    display: inline-block;
    overflow: hidden;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 4px #000; /* background: rgb(156, 156, 156); */
  }
  .boost-pfs-filter-product-bottom {
    border: 0px solid #e6e6e6;
  }
  .boost-pfs-filter-product-item-show-details-true .boost-pfs-filter-product-item-grid .boost-pfs-filter-product-bottom {
    background: rgba(238, 238, 238, 0.00) !important;
    height: auto !important;
  }
  .boost-pfs-filter-product-item-vendor {
    line-height: 0px;
  }
  .tudorflex {
    flex-direction: column-reverse;
    width: 100%;
  }
  .tudorflex .shop_attributes {
    column-count: 1;
  }
  #lookingforloose {
    background-position: 1200px
  }
}

.historyblurbhomepage{color:#FFF !important;font-weight:bold;max-width:800px;background-color:rgba(0,0,0,0.65);padding:2%;}

  
@media (max-width: 1325px) {
  .cdp-one-third {
    width: 34%;
  }


}
  
@media (max-width: 1400px) {
  #lookingforloose {
    background-position: 1400px
  }
  .boost-pfs-filter-product-bottom {
    border: 0px solid #e6e6e6;
  }
  .main-header nav.full .nav-item > .label,
.main-header nav.full .nav-item > details .label {font-size: 0.75vw;}
}
@media (max-width: 1000px) {


  .forbestseller {
    padding: 7% 0;
    width: 100%;
  }
  .bestseller {
    width: 48%;
  }
  #lookingforloose {
    background-position: 1000px 1000px
  }
  .engagementringcontact > div {
    max-width: 50%;
  }
  #engagementringback {
    background-image: none;
  }
  .engagementringcontact a {
    margin: 0px;
    display: block;
    min-width: 240px;
  }
  .engagementringcontact {
    margin-bottom: 10px;
  }
  #chelseachatfix {
    margin: 0px auto;
  }
  .engagementringcontact li {
    margin: 5px auto;
  }
  .cdp-one-third {
    width: 33.8%;
  }
  #locationsfooterarea .widget {
    width: 100%;
  }
  .rightsidetoaboveonmobile {
    flex-direction: column-reverse;
  }
  .leftsidetoaboveonmobile {
    flex-direction: column;
  }
  .cdp-col-left, .cdp-col-right {
    flex-shrink: 0;
    flex-basis: 100%;
  }
 
  .textside {
    padding: 4%;
  }
  .home-section.picture-block {
    padding: 0px
  }
  .cdp-logo-container {
    justify-content: center;
  }
  .cdp-logo-item {
    margin: 6%;
  }
  .rightdiamondcutitem, .leftdiamondcutitem {
    display: block;
    width: 100%
  }
  .education-on-diamonds .wp-block-column {
    padding: 10px
  }
  .servicescol {
    width: 31%;
  }
  .diamonddesignform {
    min-height: 680px;
  }
  .cdp-row p {
    font-size: 12px;
  }
  .homevid {
    display: none
  }
  .homeimg {
    display: block;
  }
}
@media (max-width: 768px) {
  .newpagesheader{font-size:19px !important;}
  .nobackgroundheader a{margin:10px !important;}
  .breadcrumb-navigation {font-size:12px }
  .product__sku{margin: 8px auto !important}
  p{padding:10px;}
  .newbar{font-size:10px;}
  .boost-sd__header-main-2-content.boost-sd__header-main-2-content--relative {
    width: 90%;
}
  #since1837 .bkoverlay h3{font-size:1.4rem !important;}
  .cdp-row h2{font-size:1.2rem !important;}
#magbanner{ min-height:450px; background: none !important;}
#magbanner h2 {font-size: 1.75em;color:black;}
  #magbanner .overlay{background-color:rgba(0,0,0,0);margin-bottom:30px;min-height:auto;}
  
  #thisbanner{ min-height:450px; background: url(/cdn/shop/files/Untitled-1.webp?v=1689263636) no-repeat center !important;}
#thisbanner h2 {font-size: 1.7em;}
  #thisbanner p{margin:20px 20px 60px 20px !important;}
   
  #thiscubsbanner{ min-height:450px;background: url(/cdn/shop/files/CDP-CUBS-GOCUBS-mobilenotext.webp?v=1744303010) no-repeat right!important;}
#thiscubsbanner h2 {font-size: 1.7em;}
  #thiscubsbanner p{margin:20px 20px 60px 20px !important;}
    #thisvdaybanner{ min-height:450px; background: url(/cdn/shop/files/Diamond-Group.png?v=1705942360) no-repeat center !important;}
#thisvdaybanner .vmiddle{text-align:center;vertical-align:middle;color:#FFF;}
#thisvdaybanner h2{  font-family: 'cdp-black';font-size:2em;padding:8px}
#thisvdaybanner p{margin-bottom:60px;font-family: 'cdp-bold';padding:8px}
#thisvdaybanner .overlay{min-height:450px;}
  .historyblurbhomepage{background-color:rgba(0,0,0,1.0) !important;}
  .homepagehistory {background-image: none;}
  .featuredhomedesktopbanner{display:none;}
  .featuredhomemobilebanner {display:block;text-align:center;width:100%;}
  .featuredhomemobilebanner img{width:100%;height:auto;margin:0 auto;}
    #since1837 h2 { font-size: 22px !important;}
.mega-nav .list .label,.mega-nav .list .list-item a{font-size:10px !important;}
  #lookingforloose {
    background-position: 760px;
  }
  .diamondcutcontainer li {
    width: 100%;
  }
  .boost-pfs-filter-collection-header-wrapper {
    padding-top: 0%;
    margin-bottom: 0px;
  }
  .blogfirstrow img {
    width: 100%;
  }
  .blogfirstrow {
    padding: 1em;
  }
  .otherentries .blogflexthis {
    width: 100%;
    max-width: 100%;
    padding: 1em;
  }
  .blogmobile {
    width: 100% !important;
    display: inline-block !important
  }
  .cdp-two-thirds {
    width: 100%;
    margin: 0 auto !important;
  }
  .cdp-one-third {
    width: 100%;
  }
  .cdp-two-thirds-bottomhp {
    width: 100%;
    margin: 0 auto !important;
  }
  .cdp-one-third-bottomhp {
    width: 100%;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  #b-collection-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 5%;
    width: 80%;
    margin-bottom: 0px;
    margin-top: 0px;
    border: 1px solid #e8e9eb;
  }
  .b-fifty-space-for-collection-box {
    height: 0px;
  }
  .cdp-maintemplate #b-collection-box {
    width: 100%;
  }
  .boost-pfs-filter-product-item-title {
    color: #000 !important;
    font-size: 12px !important;
    margin: 0px !important;
  }
  .boost-pfs-filter-product-item-vendor {
    color: #000 !important;
    font-size: 12px !important;
  }
  .boost-pfs-filter-product-item-price .boost-pfs-filter-product-item-sale-price {
    color: #f30000 !important;
  }
  .boost-pfs-filter-product-item-price s, .boost-pfs-filter-product-item-price {
    color: rgba(34, 34, 34, .6) !important;
  }
  .boost-pfs-filter-product-item-vendor, .boost-pfs-filter-product-item-price {
    margin-bottom: 0px !important;
    margin-top: 5px !important;
  }
  .servicescol {
    width: 43%;
  }
  .custom-jewelery-design-section .picture-block-content {
    margin: 0px auto !important;
    width: 100% !important
  }
  #shopify-section-brij-custom-img-gallery .card-image {
    width: 100%
  }
  .diamonddesignform {
    min-height: 1000px;
  }
  .product-area .product-details-wrapper .header .title {
    font-size: 26px;
    line-height: 29px;
  }
  .product-recommendations .product-card-details .title {
    font-size: 13px;
  }
  .shop_attributes {
    column-count: 1;
  }
  .custom-inquiry-form {
    padding: 5% 2% !important;
  }
  .display-2 {
    font-size: 1.5em;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 4px;
    color: #fff;
  }
  .lead {
    font-size: 0.5em !important;
    text-transform: uppercase;
    line-height: 1.0em !important;
    letter-spacing: 4px;
    margin: 0 0 5px !important;
    color: #fff;
  }
  .image-background a {
    border: 1px solid #fff;
    padding: 10px 15px;
    font-size: 12px !important;
    line-height: 14px;
  }
  .text-and-image-box {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .text-and-image-box2 {
    position: absolute;
    top: 2%;
    width: 100%;
    padding: 2%;
    text-align: center;
    height: auto;
  }
  .text-and-image-box3 {
    position: absolute;
    bottom: 2%;
    width: 100%;
    padding: 2%;
    text-align: center;
    height: auto;
  }
  .text-and-image-box4 {
    position: absolute;
    left: 2%;
    top: 2%;
    width: 100%;
    padding: 2%;
    text-align: left;
    height: auto;
  }
  .text-and-image-box5 {
    position: absolute;
    right: 2%;
    bottom: 2%;
    width: 100%;
    padding: 2%;
    text-align: right;
    height: auto;
  }
}
@media (max-width: 575px) {
.cdp-logo-container img{width:187px; height:110px}
  .cdp-logo-item {margin:5% 3%;}
  .stevenimage {
    margin-right: 20px;
    margin-bottom: 20px; /* float: left; */ width: 100%;
    text-align: center;
  }
  .static-footer .widget-title {
    text-align: center;

    margin: 1.25em auto 0.25em auto;
  }
  .widget-column nav ul li a {
    font-size: 17px !important;
    line-height: 26px;
    text-align: center !important;
    margin: 0 auto;
  }
  .widget-column nav ul li {
    text-align: center
  }
  .slick-next {
    right: 0 !important;
  }
  .slick-prev {
    left: 0px !important;
    z-index: 9 !important;
  }
  .th_wlc_position_relative svg {
    width: 16px !important;
    height: 14px !important;
    color: #717171 !important;
  }
  .th_wlc_product_count {
    background-color: #ffffff !important;
    color: #000 !important;
    height: 12px !important;
    width: 12px !important;
    top: -15.5px !important;
    right: -3px !important;
    z-index: 999 !important;
    opacity: 5 !important;
    border-color: #717171 !important;
  }
  .main-header {
    height: 270px;
  }
}

 .product-form .product-submit{color:#fff !important}

 



.article-pagination,.article-meta,.article-author-avatar{display:none !important}
.article-content > *{max-width:none !important;}
.article-content{padding-left:0px !important}
.blog-sidebar-active .article-content{width:100% !important;}
.article-header{max-width:900px !important;margin:30px auto !important; text-align:center;width:100%;}
.article-image img {margin:0 auto;}
.article-image{margin:30px auto;text-align:center !important}
.article h1,.article h2,.article h3,.article h4,.article span,.article table{ max-width: 900px;min-width:70%;margin: 10px auto !important;padding:0 60px;min-height:100px;}
.blog .article h2{max-width: 1000px;min-width: 74%;margin: 10px auto !important;padding: 0 60px;min-height:auto;}
.article p{ max-width: 900px;min-width:70%;margin: 13px auto !important;padding:0 30px;}
.article .cdp-col-left p,.article .cdp-col-right p{text-align:left;}
.article ul{max-width: 900px;margin: 30px auto !important;text-align:left;}
.article-title{margin-bottom:30px;}
.praccordion{text-align:center !important;margin:30px auto !important;}
.prpanel{max-width:900px; margin:0 auto;}
.prpanel a{text-align: center;}

.blog-sidebar-active .article-meta{width:100% !important;margin:40px auto;}   
.prevholder, .nextholder{display:inline-block;width:49%;text-align:center;padding:10px;vertical-align:top;}
.article-pagination{display:inline-block;width:100% !important}
.prevhead, .nexthead{font-size:18px;margin:20px auto;font-weight:bolder}
.prevtitle, .nexttitle{max-width:300px;margin:20px auto;font-weight:bold;font-size:14px;}
.blogfromsa p{font-size:15px !important;}
.blogfromsa .cdp-row a:hover{background-color: #fff;color: #000;}
.product__tax{display:none !important;}
  
@media screen and (max-width: 950px) {

    .locations li{width:100%;}
   .locations li img{width:90%;margin:30px auto 0 auto;max-width:250px;height:auto;}
    .contacticons li{width:25%;margin:0 auto;}
    .locations h3{margin:30px auto;}
  .contacticons img{margin:0 auto !important;}
  .blog-sidebar-active .article-meta .article-pagination, .blog-sidebar-active .article-meta .article-pagination--prev, .blog-sidebar-active .article-meta .article-pagination--next {
    display: inline-block !important;
  }
  .article-author-name,.article-author-writtenby{margin: 10px auto !important;}
  .prevhead, .nexthead{font-size:18px;}
  .prevtitle, .nexttitle{font-size:12px;}
  .prevholder, .nextholder,.article-pagination img{width:100% !important}
}

 .product-area .title{font-family: "henderson-sans-basic", sans-serif !important;}
.page-body-content .rte ul{padding-left:0px;}

#main-footer .first{display:none !important;}
.cubscontest{width:100%;max-width:2000px;margin:0 auto;text-align:center;}
.cubscontest p{max-width:400px;margin:10px auto;font-size:14px;line-height:18px;}
.cubscontest hr{background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(1,46,129,1) 47%, rgba(184,0,0,1) 49%);}
.cubscontest h2{font-size:22px;margin-top:20px;line-height:30px;text-align:center;font-family: "henderson-sans-basic", sans-serif;text-transform:uppercase;font-weight:100;}
.cubscontest ul{text-align:center}
.cubscontest li{display:inline-block;text-align:center}
.onethirdcol{width:30%;padding:3%}
.onethirdcol img{width:100%;}
.twothirdcol{width:68%;padding:3%}
.halfer{width:45%;vertical-align:top;padding:1%}
.halfhalfer{width:45%;vertical-align:top;padding:1%}
.halfer img{width:100%;}
.halfhalfer img{width:100%;}
.cubscontest a {
   display: block;
    margin: 20px auto;
    padding: 15px 20px;
    color: #8a2432;
    background-color: transparent;
    border: 2.5px solid #8a2432;
    width: 60% !important;
    border-radius: 0;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
}
.cubscontest h3{font-size:25px;}
.cubscontest a:hover {
    color: #fff;
    background-color: #8a2432;
}

@media (max-width: 1600px) {
 .cdp-row img {
    width: 100%;
    height: auto !important;
  }
}

@media (max-width: 1400px) {
.halfhalfer{width:100%;vertical-align:top;padding:1%}
.halfhalfer img{width:100%;}
}

.desktop{display:block;}
.mobile{display:none;}

@media (max-width: 768px) {
  .tudorplaque {display:none !important}.header-flex {flex-wrap: inherit;margin-top:25px;height:100px;flex-direction: row-reverse;}.main-header {height: 167px;}.logo-list-item img {max-width: 86%;}
  .article p,.article h1,.article h2,.article h3,.article h4,.article span,.article table{min-height:auto !important;}
  .article h1{max-width:75% !important;font-size:20px;}
  .four-tworow {flex-direction:column}
.four-twocolumn { flex: 50%;}
  .threecolumn li{width:100%;}
  .mansionparagraph{font-size:14px;}
  #thatbanner{display: flex; justify-content: left;align-items: center; min-height: 300px !important;  background-image: url('/cdn/shop/files/watch_buy_new_header.jpg?v=1755552809?v=1688756236') !important;    background-position: 73% 0px; background-repeat: no-repeat;background-attachment: unset; background-size: cover;background-color:#464646; min-height:1000px;text-align:center;vertical-align:middle;}
#thatbanner .overlay{min-height:300px !important;}
#thatbanner .vmiddle{margin-left:0px;}
#thatbanner h2{  font-family: "henderson-sans-basic", sans-serif;font-size:2em;color:#fff;}
#thatbanner p{margin-bottom:60px;font-family: "henderson-sans-basic", sans-serif;}
 #thatbanner a{padding:10px 20px;background-color:#8c2433;color:#fff;}   
  .desktop{display:none;}
.mobile{display:block;}
  .cubscontest li{display:block;margin:30px auto;}
.onethirdcol{width:100%;padding:1%}
.onethirdcol img{width:50%;margin:0 auto;}
.twothirdcol{width:100%;padding:1%}
.halfer{width:100%;vertical-align:top;padding:1%}
.halfer img{width:100%;}
  .cubscontest h2{font-size:25px}
  .cubscontest a{display:block;margin:20px 0px;padding:10px 20px;color:#fff;background-color:#8a2432;width:100% !important;}
}


#ad-container {
  width: 100%;
  height: 80vh;
  display: flex;
  position: relative;
  overflow: hidden;
  align-content: flex-end;
}

#ad-video {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
margin:0 auto;
}

#ad-content {
  position: absolute;
  color: #000;
  text-align:left;
width:100%;
  margin:0 auto;
  padding: 1rem;
  background-color: rgba(255,255,255,0.5);
  align-self: flex-end;
 
}

  #ad-content p{  max-width:1100px;
  margin:0 auto;font-size:12px;}
    #ad-content h3{  max-width:1100px;
  margin:0 auto;}

    a.cdpbtn, #ad-content a{white-space: nowrap;
    font-size: 12px;
                   
    text-align: center;
    padding: 10px 20px;
                   border: 1px solid #8a2432;
                   margin:15px 5px 0 5px;
                   background-color:#8a2432;
                   color:#ebe5d8;
    text-transform: uppercase;
    font-family: "henderson-sans-basic", sans-serif;
                   display:inline-block;
}
a:hover.cdpbtn{color:#ebe5d8}
#ad-container h3{font-size:1.5em;margin:10px auto}




.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #2980b9;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #8A2435;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}

/* top left*/
.ribbon-top-left {
  top: -10px;
  left: -10px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}



@media only screen and (max-width: 600px) {



#ad-container {
    width: 100%;
    height: auto;
    display: block;
    position: inherit;
    overflow: auto;
    align-content: flex-end;
}

#ad-video {
    position: inherit;
    object-fit: revert;
    width: 100%;
    height: 100%;
    z-index: auto;
    margin: 0 auto;
}
#ad-content {
    position: inherit;
    color: #000;
    display: block;
    margin: 0 auto;
    padding: 3rem 1rem;
    background-color: rgba(255,255,255,0.75);
    align-self: flex-end;
}


}

.template-product table{white-space:normal !important;}
.template-product .shopify-payment-button{display:none !important}
  
  /*Brandon end*/
  @media (max-width: 350px) {
    .leftcdpmenu li {
      font-size: 10px;
    }
    div.ctct-form-embed div.ctct-form-defaults h2.ctct-form-header {
      color: #323232;
      font: 16px "Helvetica Neue", Arial, sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      font-size: 28px;
      font-weight: normal !important;
      margin: 0 0 12px 0;
      text-transform: uppercase;
    }
    #cookiePopup {
      background-color: #ffffff;
      position: absolute;
      font-size: 14px;
      width: 70vw;
      max-width: 42.85em;
      box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
      font-family: "henderson-sans-basic", sans-serif;
      text-align: justify;
      line-height: 1.8em;
      padding: 2em 1.4em;
      border-radius: 6px;
      transition: all 0.5s ease-in;
    }
    #cookiePopup img {
      display: block;
      width: 3.75em;
      transform: translateZ(0);
      position: relative;
      margin: auto;
    }
    #cookiePopup p {
      text-align: center;
      margin: 1.4em 0;
    }
    #cookiePopup button {
      background-color: #6859fe;
      border: none;
      color: #ffffff;
      font-size: 1.2em;
      padding: 1em 1.4em;
      display: block;
      position: relative;
      margin: auto;
      border-radius: 5px;
    }
    #cookiePopup a {
      color: #6859fe;
    }
    .hide {
      visibility: hidden;
      bottom: 0;
      right: 2em;
    }
    .show {
      visibility: visible;
      bottom: 2em;
      right: 2em;
    }
  }
    @media only screen and (max-width: 37.5em) {
      #cookiePopup {
        width: 100%;
      }
      .hide {
        bottom: 2em;
        right: 0;
      }
      .show {
        right: 0;
        bottom: 0;
      }
    }






      .osano-cm-dialog {
              font-family: "henderson-sans-basic", sans-serif;
            background: #ffffff !important;
          color: #000000 !important;
          }


      /* Osano Custom style */
        .osano-cm-toggle__input:disabled:checked + .osano-cm-toggle__switch::after, .osano-cm-toggle__input:disabled:checked:focus + .osano-cm-toggle__switch::after, .osano-cm-toggle__input:disabled:checked:hover + .osano-cm-toggle__switch::after {
          background-color: #ffffff !important;
          border-color: #ffffff !important;
      }
        .osano-cm-toggle__input:checked + .osano-cm-toggle__switch {
          background-color: #088d4f !important;
          border-color: #088d4f !important;
      }
           .osano-cm-powered-by__link {
          color: #305382 !important;
      }
           .osano-cm-buttons button{
             text-transform: capitalize;
           }
          .osano-cm-window__dialog .osano-cm-dialog__close {
          color: #305382 !important;
          stroke: #305382 !important;
      }
        .osano-cm-toggle__input:disabled:checked + .osano-cm-toggle__switch, .osano-cm-toggle__input:disabled:checked:focus + .osano-cm-toggle__switch, .osano-cm-toggle__input:disabled:checked:hover + .osano-cm-toggle__switch {
          background-color: #008d4f !important;
          border-color: #008d4f !important;
      }
        .osano-cm-manage.osano-cm-buttons__button.osano-cm-button.osano-cm-button--type_manage {
          padding: 10px 0px !important;
          margin: 3.5px;
          padding: 0px;
          background-color: #FFFFFF !important;
          border-color: #000000 !important;
          color: #000000 !important;
          min-width: 160px !important;
          border: 1px solid #757575;
          text-decoration: none;
          text-align: center;
          font-weight: 600;
          transition: .3s;
      }
      .osano-cm-toggle__switch {
          background-color: #d6d6d6 !important;
          border-color: #d6d6d6 !important;
      }
        .osano-cm-manage.osano-cm-buttons__button.osano-cm-button.osano-cm-button--type_manage:hover{
        background-color:#000!important;
        color:#fff !important;
        border: 1px solid #000 !important;
        }
      .osano-cm-disclosure__toggle, .osano-cm-expansion-panel__toggle {
          color: #8d8d8d !important;
      }

      .osano-cm-dialog:after, .osano-cm-dialog__content.osano-cm-content::before {
      	content: none !important;
      }
      .osano-cm-window__dialog .osano-cm-content {
          padding-top: 0 !important;
      }
      .osano-cm-dialog--type_bar .osano-cm-button {
          flex: 1 1 25% !important;
      }
      .osano-cm-dialog--type_bar .osano-cm-dialog__buttons {
          flex: 25% !important;
      }
      .osano-cm-dialog--type_bar .osano-cm-dialog__content {
          padding: 0 30px !important;
      }
      .osano-cm-content__message {
          font-size: 12px !important;
          line-height: 1.5 !important;
      }
      .osano-cm-button {
          background-color: #000!important;
          border-color: #000 !important;
          color: #ffffff !important;
           font-weight: 600 !important;
          padding: 10px 0px !important;
            max-width: 160px !important;
          border-radius: 0 !important;
          font-size: 14px !important;
      	line-height: normal !important;
          height: auto !important;
      }
      .osano-cm-dialog a.osano-cm-storage-policy {
          font-size: 14px !important;
        color: #8c2433 !important;
      }
      .osano-cm-dialog {
           box-shadow: 0 0 18px rgb(0 0 0 / 20%);
          padding: 15px 40px !important;
      }
      a.osano-cm-drawer-links__link.osano-cm-link.osano-cm-link--type_manage {
          padding: 10px 0px !important;
          margin: 3.5px;
          padding: 0px;
          background-color: #FFFFFF;
          border-color: #000;
          color: #000;
          min-width: 160px !important;
          border: 1px solid #757575;
          text-decoration: none;
          font-size: 15px;
          text-align: center;
          font-weight: 600;
          transition: .3s;
      }
      button.osano-cm-save.osano-cm-view__button.osano-cm-button {
          width: 100% !important;
          max-width: 100% !important;
      }

      @media only screen and (max-width:1000px) and (min-width:320px){
      .osano-cm-dialog__buttons {
       display: flex;
          flex-direction: row;
          flex-wrap: nowrap;
          justify-content: center !important;
          column-gap: 7px;
          align-items: center;
      }
      .osano-cm-dialog--type_bar .osano-cm-dialog__buttons {
          flex: 100% !important;
      }
      .osano-cm-dialog--type_bar .osano-cm-dialog__content {
          padding: 0 !important;
      }
      .osano-cm-manage.osano-cm-buttons__button.osano-cm-button.osano-cm-button--type_manage {
          margin: 3px !important;
          flex-direction: row;
          font-size: 12px !important;
          padding: 8px 0 !important;
         min-width: 96px !important;
        letter-spacing: 0 !important;
          width: 96px !important;
        font-weight:400 !important;
      }
        a.osano-cm-drawer-links__link.osano-cm-link.osano-cm-link--type_manage {
          padding: 8px 0px !important;
           font-size: 12px !important;
          font-weight:400 !important;
           min-width: 80px !important;

      }

      .osano-cm-dialog__content.osano-cm-content {
          margin-bottom: 15px;
      }
      .osano-cm-dialog {
          padding: 15px 30px !important;
      }
        .osano-cm-drawer-links {
          width: 100% !important;
      }
      .osano-cm-button {
          max-width: 100% !important;
      }
      a.osano-cm-drawer-links__link.osano-cm-link.osano-cm-link--type_manage {
          margin: 0 !important;
      }
      .osano-cm-drawer-links {
          width: 100%;
      }
}

     .osano-cm-info-dialog-header__header{padding:0px 10px;margin:0px auto;}




      [for="osano-cm-drawer-toggle--category_MARKETING"] span::after {
          content: "Rolex";
          font-size: 14px !important;
          font-weight: bold;
      }

      .osano-cm-drawer-item [for="osano-cm-drawer-toggle--category_MARKETING"] span {
          font-size: 0 !important;
      }
      span[role="heading"]{
        font-size: 14px !important;
          font-weight: bold;
      }
      .osano-cm-message::after {
          content:"By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. You may change your settings at any time or accept the default settings. You may close this banner to continue with only essential cookies.";
        font-size: 12px;
      }
      .osano-cm-content .osano-cm-message {
          font-size: 0 !important;
      }
      ul.osano-cm-dialog__list.osano-cm-list {
          display: none;
      }


      [for="osano-cm-dialog-toggle--category_MARKETING"] .osano-cm-toggle__label.osano-cm-label {
          font-size: 0 !important;
      }
            [for="osano-cm-dialog-toggle--category_MARKETING"] .osano-cm-toggle__label.osano-cm-label:after {
          content: "Rolex";
          font-size: 12px !important;
          margin: 4px;
      }
      .osano-cm-dialog:after {
      position: absolute;
      top: 0px;
      left: 28px;
      right: 28px;
      height:120px;
      content: '';
      background-position: center;
      background-size: 120px;
      background-repeat: no-repeat }
      .osano-cm-content {
      padding-top: 6rem;
      }
      .osano-cm-drawer-links {
          margin: 0px;
      }
        a.osano-cm-drawer-links__link.osano-cm-link.osano-cm-link--type_manage:hover , .osano-cm-button:focus, .osano-cm-button:hover {
          background-color: #757575;
          border-color: #757575;
          color: #fff;
      }
      .osano-cm-dialog__content.osano-cm-content::before {
      content: "We value your privacy!\A";
      color: #000;
      text-align: center;
      font-family: "henderson-sans-basic", sans-serif;
      font-size: 1rem;
      display: block;
      padding-bottom: 10px;
      }
      .osano-cm-dialog--type_box {
      max-width: 38em;
      font-size:12px;
      padding: 1.5rem;
      border:solid}
      .osano-cm-dialog__list{
        margin: auto;
        width: 60%;
        padding: 10px;
      }
      .osano-cm-dialog__list .osano-cm-label{
        margin-left:1em;
        font-size:12px;
      }
      .osano-cm-dialog--type_box {
      color: #000;
      background: #fff;
      box-shadow: 0 0 0 100vmax rgba(0,0,0,0.66)
      }
      .osano-cm-button {
          background-color: #FFFFFF;
          border-color: #47B971;
          color: #47B971;
           border-radius: 70px;
      }
      .osano-cm-info-dialog {
      .osano-cm-description:first-child{
      visibility: hidden;
      max-height: 130px;
      }
      .osano-cm-description:first-child:before {
      content: "On our website, we use services (including from third-party providers) that help us to improve our online presence. The following categories of cookies are used by us and can be managed in the cookie settings. We need your consent before being able to use these services. Alternatively, you may click to refuse to consent, or access more detailed information and change your preferences before consenting. Your preferences will apply to this website only. You can change your preferences at any time by returning to this site or visit our privacy policy. By authorizing third-party services, you allow the placement and the reading of cookies and the use of tracking technologies required to keep our website reliable and secure";
      visibility: visible;
      }
      }
      .osano-cm-info:after {
      position: absolute;
      top: 50px;
      left: 28px;
      right: 28px;
      height:120px;
      content: '';
      background-position: center;
      background-size: 120px;
      background-repeat: no-repeat }
      .osano-cm-view {
          padding: 7rem 0.75em 1em;
      }
      .osano-cm-button {
          line-height: 40px;
          height: 40px;
          margin: 5px;
        padding:0px;
      }
        .osano-cm-description, .osano-cm-content__message, .ajax-cart__cart-variants, .osano-cm-description p {
              font-size: 10px !important;
        }
      .osano-cm-view--type_consent .osano-cm-list-item:nth-child(5){
        display: none};
      .osano-cm-disclosure {
          border-bottom: none;
          display: block;
          font-size: .5em;
          margin: 0 -1.5em 1em;
          padding: 1.em 1.em 0;}

.osano-cm-view::before {
    content: "We value your privacy!\A";
    color: #000;
    text-align: center;
    font-size: 10px;
    display: block;
    padding-bottom: 10px;
    background-image: ;
    margin-top: 10px;
}
      
      .osano-cm-info {
          bottom: 0;
          box-shadow: 0 0 1px 1px #000;
          box-sizing: border-box;
          max-width: 40em;
          max-height: 36em;
          overflow-x: scroll;
          overflow-y: scroll;
          position: relative;
          top: 50px;
          margin: auto;
          width: 600px;
          padding: 0px;
          max-width: 95%;
          transition-duration: .75s;
          transition-property: fade;}

          
      .osano-cm-description {
          font-size: .75em;
          font-weight: 300;
          line-height: 1.375;
          margin: .5em 0 0;
          padding: 1px;
          }
      .osano-cm-drawer-toggle .osano-cm-label{
        font-size: .80em;
        }
        .osano-cm-widget{display: none;}
        .osano-cm-dialog__close, .osano-cm-close {line-height:20px;}

       /*OSANO*/

          .osano-cm-widget--position_right{display:none !important;}
      .osano-cm-dialog--type_bar .osano-cm-dialog__buttons {flex: 25% !important;}
      .osano-cm-dialog--type_bar .osano-cm-button {flex: 1 1 25% !important;}

      .osano-cm-button {
          font-weight: 600 !important;
          padding: 10px 0px !important;
          border-radius: 0 !important;
          font-size: 14px !important;
      }

      .osano-cm-info {
          bottom: 0;
          box-shadow: 0 0 1px 1px #000;
          box-sizing: border-box;
          max-width: 40em;
          max-height: 36em;
          overflow-x: scroll;
          overflow-y: scroll;
          position: relative;
          top: 50px;
          margin: auto;
          width: 600px;
          padding: 0px;
          max-width: 95%;
          transition-duration: .75s;
          transition-property: fade;
      }

      .osano-cm-info:after {
          position: absolute;
          top: 50px;
          left: 28px;
          right: 28px;
          height: 120px;
          content: '';
          background: url(/cdn/shop/files/CD-Peacock-new_b6628d02-5133-4d72-a179-e2eef27a0a8c.jpg?v=1683049805);
          background-position: center;
          background-size: 240px;
          background-repeat: no-repeat;
      }

      .osano-cm-view {
          padding: 7rem 0.75em 1em;
      }
      .osano-cm-view::before {
          content: "We value your privacy!\A";
          color: #000;
          text-align: center;
          font-size: 1rem;
          display: block;
          padding-bottom: 10px;
          background-image: ;
      }
      .osano-cm-dialog__close{display:none;}


      .osano-cm-button--type_accept{}
      .osano-cm-button--type_manage {order:1 !important; background-color: #000 !important;color: white !important; font-size: 12px !important;border:0px solid #fff;}
   .osano-cm-denyAll{display:none;}


.logosbrandpages {text-align:center !important;}
   
.flexblog{max-width: 900px;margin: 13px auto;}
.flex_blog.flex_col{flex-flow: column;gap:0;}
.flex_blog {
    display: flex;
    justify-content: center;
    gap: 50px;
    text-align: left;
    align-items: center;
    flex-flow: column;
}
.flex_blog_img{
    display: flex;
    justify-content: center;
    gap: 50px;
    text-align: left;
    align-items: center;
}
.flex_blog.m-flex {
    flex-flow: column-reverse;
}
.flex_blog_text {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.flex_blog_text.text2 {
    text-align: left;
    border-left: 2px solid;
    padding: 0px 20px;
}
.flex_blog_text hr {
    width: 50%;
    height: 2px;
    margin: 5px 0 !importat;
    background-color: #000;
    border: 0;
    outline: 0;
    color: #000;
    margin: 0;
    align-items: center;
    justify-content: center;
}
.flex_blog_text b{
    font-size: 26px;
    line-height: 35px;
    font-weight: 400;
    padding: 10px;
    font-family: "henderson-sans-basic", sans-serif;
}
.flex_blog_text.text3 b {
    font-size: 23px;
    line-height: 26px;
    text-align: right;
    border-right: 1.5px solid;
    padding-right: 25px;
}
.mr-1{margin: 0 14%;}
.pr-1{padding: 0 15%;}
.mr-2{margin: 0 5%;}
.mr-3{margin: 0 10%;}
.mr-4{margin: 0 25%;}
.mr-5{margin: 0 5%;}
.mp-text{padding: 0 80px;}
.flex_abso {
    position: relative;
}
.text_ab {
    position: absolute;
    width: 50%;
    top: 20%;
    left: 0%;
    transform: translate(0%, 5%);
    color: #fff;
}
.text_ab h2{
  color: beige;
      line-height: 35px;
}
.text_ab a{
  color: beige;
    background: #bb0707;
    font-size: 15px;
    text-transform: uppercase;
    padding: 8px 15px;
    font-weight: bold;
}
.flex_blog.s-gap{gap: 10px;}
.flex_blog h3{margin:0 !important;margin-bottom: 6px !important;}
.special_h3{color: #8a2432; border-top: 1px solid #000; padding-top: 25px; width: 50%;}
.special_a{background: #9a1431; color: #e7d7cd !important; font-weight: bold; font-size: 14px !important; padding: 10px 15px; letter-spacing: 1px; font-family: "henderson-sans-basic", sans-serif; margin: 22px 31px;}
.zillion_img_logo{margin: 38px 0 48px 0;}
.zillion_insurance h2{font-size: 34px;color: #000;}
.zillion_insurance button{color: #fff;background: #0078bf;font-size: 18px;margin: 36px 0 48px 0; border-radius: 50px; border: none;font-weight: 700;padding: 12px 20px;}
.zillion_insurance ul li{margin: 0px 0 24px 0;font-size: 18px;color: #000;font-weight: bold;display: flex;align-items: center;gap: 15px;}
.zillion_insurance h3{margin: 60px 0 30px 0;font-size: 24px; color: #000;border-bottom: 2px solid #cce4f2; width: 80px;padding-bottom: 2px;}
.zillion_insurance p{margin:20px 0px 40px 0px !important;font-size: 16px;}
.zillion_insurance h4{font-size: 18px;}
.zillion_insurance a{color: #0078bf;}
.zillion_insurance .pt_1{margin-bottom:0 !important;}
.zillion_insurance .pt_2{margin-top:36px !important;font-size:13px;}
@media only screen and (max-width: 767px) {
  .flex_blog {flex-flow:column;gap: 10px;}
  .flex_blog_text b {font-size: 20px;line-height: 30px;}
  .flex_blog_text hr {width: 80%;}
  .flex_blog.m-flex{flex-flow:column-reverse;}
  .mr-1{margin: 0;}
  .pr-1{padding: 0;}
  .mr-2{margin: 0;}
  .mr-3{margin: 0;}
  .mr-4{margin: 0 10%;}
  .mr-5{margin: 0 0%;}
  .mp-text{padding: 0 40px;}
  .special_h3{ width: 80%;}
  .special_a{font-size: 10px !important}
  .zillion_img_logo {margin: 36px 0 36px 0;}
  img.zillion_img_logo {width: 180px;height: 55px;}
  .zillion_insurance h2 {font-size: 28px;color: #000;}
  .zillion_insurance button {margin: 36px 0 56px 0;}
  .zillion_insurance ul li {    margin: 0px 0 32px 0;flex-flow: column; align-items: flex-start;    gap: 16px;}
  .zillion_insurance h3 {margin: 64px 0 32px 0;}
  .zillion_insurance .pt_2 {margin-top: 8px !important;}
}
/** Shubham **/
.cdp-maintemplate.new_temp h1{font-size: 3.625rem; margin: 0;}
.cdp-maintemplate.new_temp h2{font-size: 2.625rem;}
.new_temp a{border-color: #000;box-shadow: none !important;padding: 12px 15px;font-family: "henderson-sans-basic", sans-serif;font-weight: bold !important;font-size: 20px;}
.new_temp a.btn2{background-color: #ebe5d8!important;color: #8a2432!important;}
.new_temp a.btn2:hover{ background-color: #8a2432!important;color: #fff!important;}
.flex_f {display: flex;flex-wrap: wrap;margin: 20px 50px;gap: 60px;}
.flex_f1{width:46%;display: flex;gap: 40px;}
.flex_t {display: flex;justify-content: space-around;text-align: center;}
.flex_t h3{margin:0;}
.flex_f1 img {width: 125px;height: 520px;}
.flex_f1_content h4 {font-size: 20px;margin: 0;margin-bottom: 10px;text-transform: none;}
.flex_f1_content {text-align: left;}
.flex_f1 .flex_f1_content img {width: 100%;height: auto;}
.flex_f1 .flex_f1_content .flex_t img {width: 90px;height: auto;}
.flex_f1 .flex_f1_content .flex_t h5 {margin: 5px 0px;font-size: 20px;font-weight: bold;}
.flex_f2 {display: flex;justify-content: center;}
.flex_f21{width: 30%;padding: 5px 20px;}
.flex_f2 h5{font-size: 20px; margin: 0px!important;}
.flex_f2 p{margin:5px 0px!important;}
.flex_f21 sup {top: 0;font-size: 20px;}
.flex_blog_inn{ width: 40%;align-items: center;justify-content: center;display: flex;flex-flow: column;}
a.submitshare.disable {display: none;}
a.submitquote.disable {display: none;}
.ferror {border: 2px solid red !important;}
.close-btn{background-color: #EEEEEE !important;color: #989898 !important;}
.close-btn.error_close {background: red !important;color: #fff !important;}
.boost-sd__product-image-img {background: #fff !important;}
.boost-sd__header-main-2-content.boost-sd__header-main-2-content--relative {padding-bottom: 0 !important;padding-top: 25px !important;}
.cdp-maintemplate.new_temp {text-align: center;}
.mansion_page.flex_f {align-items: center;justify-content: center;}
.mansion_page .flex_f1_content {text-align: right;width: 40%;}
.mansion_page.right_c .flex_f1_content {text-align: left;width: 40%;}
.mansion_page img{width:40%;}

.mansion_temp hr {
   width: 46% !important;
    height: 1px !important;
    margin: 15px 0 !important;
    background-color: #000 !important;
    transform: translate(60%, 60%) !important;
}
.mansion_temp .bal hr {
    width: 70% !important;
    transform: translate(0%, 60%) !important;
}
.mansion_page.column_flex .flex_f1_content {
    text-align: center;
    width: 100%;
}
hr.c_man {
    width: 60% !important;
    height: 1px !important;
    margin: 15px 0 !important;
    background-color: #000 !important;
    transform: translate(35%, 35%) !important;
}
.mansion_page.column_flex img {
    width: 100%;
}
.flex_f.mansion_page.column_flex {
    flex-flow: column;
      gap: 0;
}
@media only screen and (min-width: 768px) {
    .boost-sd-layout {
      zoom: 1 !important;
      max-width: 1400px !important;
      padding: 0 15px !important;
      margin: 0 auto !important;
    }
    .boost-sd__toolbar-inner, .boost-sd__toolbar-container   {
      zoom: 1 !important;
      max-width: 1400px !important;
      padding: 0 15px !important;
      margin: 0 auto !important;
    }
    .boost-sd__in-collection-search {
      max-width: 1340px !important;
      margin:20px auto !important;
    }
   
}

@media only screen and (max-width: 767px) {
  .mansion_page .flex_f1_content {width: 100%;}
  .mansion_page.right_c .flex_f1_content {width: 100%;}
  .cdp-maintemplate.new_temp p{text-align:center;}
  .mansion_page img{width:100%;}
  .flex_blog_inn {width: 100%;}
  .cdp-cta a {font-size: 16px !important;}
  .cdp-maintemplate.new_temp h1{    font-size: 2.8rem;margin: 0;line-height: 45px;}

  
  .cdp-maintemplate.new_temp p { margin: 10px auto !important;}
  .flex_f {margin: 10px 5px;gap: 30px;}
  .flex_f1 img {width: 125px; height: 440px;}
  .flex_f1 {width: 100%;gap: 20px;}
  .flex_f1_content h4 {font-size: 14px;}
  .flex_f2 {flex-flow: column;}
  .flex_f21 {width: 100%;padding: 5px 20px;}
  .new_temp a {padding: 12px 12px;font-size: 14px;}
  .diamondcutcontainer.nu li {width: 30%; margin: 0;}
  .diamondcutcontainer.nu li p strong { color: #8a2432;font-size: 12px;}
}
.expanded .list.secondary{display:block !important;height: auto !important;}
.list.secondary .expanded .list.tertiary{display:block !important;height: auto !important;}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  background-color: hsl(351.3462, 59%, 34%);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  color: #fff;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 16px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
  text-transform: uppercase;
    background: transparent;
    border: 2px solid hsl(351.3462, 59%, 34%);
    color: hsl(351.3462, 59%, 34%);
    text-align: center;
}

.openbtn:hover {
  background-color: transparent;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
      display: flex;
    align-items: center;
    justify-content: center;
}
#mySidebar .rte {
    padding: 40px 40px 140px 40px;
  color:#ebe5d8 !important;
}
#mySidebar .rte h3{  color:#ebe5d8 !important;}

.cdp-maintemplate.new_temp.mansion_temp h2 {
    font-size: 2.325rem;
    text-transform: capitalize;
  margin: 0;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

/** Wedding Page **/
section.wedding-first-sec.content-area {
  width: 100%;
  padding: 0;
  margin: 0;
}
.image-sec {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
  justify-content:center;
}
.image-sec .image-left {
  width:100%;
}
.image-sec .image-right {
  width: 75%;
  height: 100%;
}
section.wedding-first-sec img {
  width: 100%;
  height:100%;
  object-fit:cover;
}
.image-right-text {
    background: #8a2432;
    height: 100%;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
    justify-content: center;
}
.image-right-text h3 {
  font-weight: bolder;
  font-family: "henderson-sans-basic", sans-serif;
  font-size: 25px;
}
.image-right-text h2 {
  font-size: 50px;
  font-weight: bold;
  font-family: "henderson-sans-basic", sans-serif;
}
.text-sec {
  text-align: center;
  margin: auto 10%;
  padding: 5% 0;
  color:#8a2432;
}
.text-sec h3 {
  font-size: 30px;
}
.text-sec h2 {
  font-size: 36px;
}
.text-sec a {
  background: #8a2432;
  border: none;
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  font-family: "henderson-sans-basic", sans-serif;
  text-transform: uppercase;
}
.text-sec p{
  text-align:left;
  color: #000;
}
.coll-sec {
  display: flex;
  background: #efeee8;
  padding: 12px;
    gap: 15px;
}
.coll-sing-sec {
  width: 33%;
  position: relative;
}
.coll-sing-sec-text {
    position: absolute;
    bottom: 10%;
    left: 10%;
    color: #fff;
    font-family: "henderson-sans-basic", sans-serif;
    text-transform: uppercase;
}
.coll-sec img {
    width: 100%;
    height: 100%;
}
.coll-sing-sec-text a {
       background: #fff;
    padding: 12px 15px;
    color: #000;
    font-size: 14px;
}
.coll-sing-sec-text span {
    font-size: 12px;
    padding-bottom: 10px;
}
.wedding-coll-sec h2,.wedding-guest-sec h2{
    text-align: center;
    padding: 25px 0px;
    color: #8a2432;
    font-size: 36px;
  padding-top: 0;
}
.coll-sing-sec-text h3 {
    font-size: 18px;
    padding-bottom: 30px;
    padding-top: 10px;
}
.wedding-iwt-sec .historyhomepage {
    background-color: #fff;
    padding: 2% 0px;
}
.cdp-row.rightsidetoaboveonmobile.right-img {
    flex-flow: row-reverse;
}
.coll-guest {
    display: flex;
    gap: 15px;
    justify-content: space-around;
    padding: 15px;
}
.coll-guest .coll-guest-sec{width:24%;}
.coll-guest-sec img {
    width: 100%;
    border-radius: 10px;
}
.coll-guest-sec-text a {
    display: flex;
    justify-content: space-between;
    color: #000;
    padding: 0px 10px;
      font-size: 18px;
}
.coll-guest-sec-text a:after {
    background-image: url(/cdn/shop/files/right-arrow.png?v=1723381629);
    background-size: 18px 20px;
    display: inline-block;
    width: 22px;
    height: 20px;
    content: "";
    background-repeat: no-repeat;
}
section.wedding-guest-sec {
    text-align: center;
}
.coll-fifth {
    display: flex;
  justify-content: space-between;
      text-align: center;
  margin: 5% 0;
}
.coll-fifth .coll-fifth-sec{
     width: 49.5%;
}
.coll-fifth .coll-fifth-sec img{
      width: 100%;
  height:100%;
  object-fit:contain;
}
.coll-guest-sec-text h2{
  color: #8a2432;
  margin-top:15px;
}
.coll-sixth {
    display: flex;
    justify-content: space-between;
}
.coll-sixth  .coll-sixth-sec{
  width: 24%;
}
.coll-guest-sec-text {
    padding-top: 10px;
}
.coll-sixth img{
  width: 100%;
  height:100%;
}
section.wedding-sixth-sec  h2 {
    padding: 15px 0; color:#ebe5d8;
}
section.wedding-sixth-sec {
    text-align: center;
    margin: 10% 0;
    background: #8a2432;
    padding: 25px;
      margin-bottom: 0;
}
.wedding-iwt-sec .cdp-row a {
    background: #8a2432;
    color: #fff;
}
.wedding-iwt-sec .cdp-row a:hover {
    background: transparent;
    color: #8a2432;
}
@media only screen and (max-width: 767px) {
  .image-sec {
    flex-wrap: wrap;
  }
  .image-right-text {
    padding: 15px;
  }
  .image-right-text h3 {
    font-size: 12px;
  }
  .image-right-text h4 {
    font-size: 12px;
  }
  .image-right-text h2 {
    font-size: 22px;
  }
  .text-sec h3 {
    font-size: 18px;
  }
  .text-sec h2 {
    font-size: 20px;
  }
  .text-sec button {
    padding: 8px 24px;
    font-size: 14px;
  }
  .wedding-coll-sec h2, .wedding-guest-sec h2 {
    font-size: 20px;
        padding: 15px 0px;
  }
  .coll-guest {
    flex-wrap: wrap;
  }
  .coll-guest-sec-text a {
    font-size: 16px;
  }
  .coll-fifth {
    flex-flow: column;
    gap: 10px;
    justify-content: center;
    align-items:center;
  }
  .wedding-fifth-sec .coll-fifth .coll-fifth-sec {
    width: 90%;
  }
  .coll-guest .coll-guest-sec {
    width: 47.5%;
  }
  .coll-sec {
    flex-wrap: wrap;
  }
  .coll-sing-sec {
    width: 100%;
  }
  section.wedding-sixth-sec h2 {
    font-size: 18px;
  }
}
input.boost-sd__in-collection-search-input::placeholder {
    color: #7a7a7a;
    font-size: 14px;
}
input.boost-sd__in-collection-search-input {
    border-radius: 25px;
    color: #222 !important;
}
.boost-sd__collection-header.boost-sd__collection-header--hero {
    display: flex;
    justify-content: center;
    align-items: center;
}
.boost-sd__header-main.boost-sd__header-main-4 {
    width: 70%;
}
.boost-sd__header-main-4-content.boost-sd__header-main-4-content--relative {
    padding-bottom: 0;
}
.boost-sd__header-description.boost-sd__header-description--as-main-4 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    font-family: "henderson-sans-basic", sans-serif;
    font-size: 12px;

}
.boost-sd__product-vendor{font-weight: 700 !important;text-transform: uppercase !important; color: rgb(0, 0, 0) !important;}
.boost-sd__product-title {
    font-size: 14px !important;
    color: rgb(0, 0, 0) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
}
.boost-sd__collection-header--hero .boost-sd__header-title {
    color: rgb(140, 36, 51) !important;
}
span.boost-sd__format-currency {
    font-weight: 700 !important;
}
.boost-sd__toolbar .boost-sd__sorting-label {
    display: block !important;
}
.boost-sd__toolbar .boost-sd__sorting-button {
    border: none !important;
}
.boost-sd__toolbar .boost-sd__sorting-value {
    min-width: 100px !important;
}
.boost-sd__toolbar-item--product-count .boost-sd__product-count {
    font-size: 1rem !important;
    font-weight: 400 !important;
}
.boost-sd__filter-tree-toggle-button-title {
    font-size: 1rem !important;
    font-weight: 400 !important;
}
.boost-sd__sorting-label, .boost-sd__sorting-button {
        font-size: 1rem !important;
        font-weight: 400 !important;
}
.boost-sd__toolbar-content {
    border-top: 1px solid #ebebeb;
}
button.boost-sd__pagination-button.boost-sd__pagination-button--square.boost-sd__pagination-button--next {
    background: none;
}
.boost-sd__pagination-button-icon svg path {
    fill: #000 !important;
}

.boost-sd__product-count {
    font-size: 1rem !important;
  
    font-weight: 400 !important;
}
/* .boost-sd__header-description {
    display: none;
} */
@media only screen and (max-width: 767px) {
  .boost-sd__header-main.boost-sd__header-main-4 {
      width: 100%;
  }
  .boost-sd__toolbar .boost-sd__sorting-label {
    display: none !important;
  }
}


.time_wth_img {
    width: 100%;
    border-top: 1.5px solid #8a2432;
    border-bottom: 1.5px solid #8a2432;
}
.tes_shar {
    display: flex;
    font-size:15px;
}
.article-share {
    display: flex;
    flex-flow: row;
}
.time_wth_img {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
}
.time_wth_img {
    display: flex;
    gap: 0;
    justify-content: space-evenly;
    align-items: center;
}
span.time2read-text-AMGtEdVlqMkozSWgwV__time2read_read_time_estimator_app_block_article_read_time_hTQMEg {
    padding: 0 5px !important;
}
.flex_share{
  display:flex;
}
.time_read_icon {
    display: flex;
    gap: 0px;
  justify-content: center;
    align-items: center;
}
a.article-pagination--prev, .article-pagination--next {
    display: flex;
    gap: 3px;
    color: #000;
    font-size: 15px;
    align-items: center;
}
a.article-pagination--next img, a.article-pagination--prev img {
    width: 16px;
}
.template-article .cdp-row{
  flex-flow:column;
}
.template-article .textsidealign {
  padding:0%;
}
.template-article .cdp-col-left, .template-article .cdp-col-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.template-article  .leftsidetoaboveonmobile1 {
    flex-flow: column;
}
.template-article h3.textsidealign_text{
  min-height:auto;
}
@media only screen and (max-width: 767px) {
  .article-pagination--prev, .article-pagination--next {
      top: calc(100% - 55px);
  }
  .article-share {
    right: 10%;
    bottom: 8%;
  }
  .time_wth_img {
      justify-content: center;
      gap: 20px;
  }
  .article-pagination--prev div, .article-pagination--next div{
    display:none;
  }
  .article-pagination--next {
    right: 0px;
  }
}
