/** Shopify CDN: Minification failed

Line 458:72 Unexpected ";"

**/
.drawer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: visibility var(--duration-default) ease;
}

.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  width: 40rem;
  max-width: calc(100vw - 3rem);
  padding: 0 1.5rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
}

.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  margin: 0 0 1rem;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: 4.4rem;
  min-height: 4.4rem;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  position: absolute;
  top: 10px;
  right: -10px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.cart-drawer__warnings .drawer__close {
  right: 5px;
}

.drawer__close .svg-wrapper {
  height: 2rem;
  width: 2rem;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer__footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
  padding: 1.5rem 0;
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

.drawer__footer > details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 1.5rem;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
}

cart-drawer-items {
  overflow: auto;
  flex: 1;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  display: grid;
  grid-template: repeat(2, auto) / repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1rem;
}

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
}

.cart-drawer .cart-item__nested-line .cart-item__image {
  max-width: 60%;
  float: right;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1.5rem;
}

.cart-drawer .cart-item .loading__spinner {
  right: 5px;
  padding-top: 2.5rem;
}

.cart-drawer .cart-items td {
  padding-top: 1.7rem;
}

.cart-drawer .cart-items .cart-item__nested-line td:not(.cart-item__quantity) {
  padding-top: 1rem;
}

.cart-drawer .cart-item > td + td {
  padding-left: 1rem;
}

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2 / 4;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 5;
}

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
}

.cart-drawer .price {
  line-height: 1;
  font-size: 1.5rem;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 2rem auto;
  text-align: left;
}

.cart-drawer .product-option dd {
  word-break: break-word;
}

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
    flex-basis: calc(50% - 0.5rem) !important;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

.cart-drawer .cart-item__error {
  margin-top: 0.8rem;
}

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 0.2rem;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 0;
  }
}












/**************START : CUSTOM CSS FOR DRAWER ***************/
/* Default for all devices with touch support */
cart-drawer.drawer {
  transition: none;
}

cart-drawer.drawer .drawer__inner {
  visibility: hidden;
  transition: transform .7s cubic-bezier(.4,0,.2,1),-webkit-transform .7s cubic-bezier(.4,0,.2,1), visibility .7s cubic-bezier(.4,0,.2,1);
}
.drawer.active .drawer__inner {
    visibility: visible;
}

.drawer .cart-drawer .pw-route-protection {
  padding: 0px 0px 20px;
  max-width: 320px;
  max-width: 100%;
  margin: 0 auto;
}
.drawer .cart-drawer .pw-route-protection .pw-variant-optimal{
  display: flex;
  gap: 6px;
  position: relative;
}
route-protect-widget[variant=optimal] .pw-route-protection .pw-container;
.pw-route-protection .pw-container:not(.legacy){
  max-width:100% !important;
}

route-protect-widget[variant="fee"] .pw-route-protection .pw-container, route-protect-widget[variant="optimal"] .pw-route-protection .pw-container {
   max-width:100% !important;
}


.pw-variant-optimal-container .pw-variant-optimal .pw-title, .pw-variant-optimal-container .pw-variant-optimal .pw-quote {
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  color: #000;
  margin-left: auto;
  line-height: 1;
}


.drawer__inner {
  width: 350px;
}


.drawer__header {
  padding-bottom: 2rem;
}
.drawer__heading {
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 0;
  margin-top: 1rem;
}
.cart-drawer .cart-items thead {
  display: none;
}


.cart-drawer .cart-item__image {
  max-width: 100%;
  background-color: #f5f5f5;
  padding: 1rem;
}
.pi-cart-item-price{
    display: none;
  }


#CartDrawer .cart-item__quantity-wrapper .quantity__button svg {
  width: 10px;
  fill: #000;
}



.totals__total {
  text-transform: uppercase;
}

.cart-drawer .tax-note {
  display: none;
}


.cart__ctas {
  margin-top: 20px;
}
.cart-drawer .cart__checkout-button {
  text-transform: uppercase;
  font-weight: 400;
}

.pw-variant-optimal-container .pw-variant-optimal .pw-title span {
  font-weight: lighter;
  font-size: 1.5rem;
  font-weight: 400;
}
.drawer__footer {
  padding-top: 6px;
}


.cart-drawer .cart-item cart-remove-button {
  display: none;
}

cart-drawer.drawer.is-empty .drawer__footer {
  display: none;
}

cart-drawer.drawer.is-empty a[href="/collections/all"].button {
  display: none;
}


.drawer__heading {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pi-cart-drawer__count {
  border: 1px solid #000;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 7px;
  margin-top: -1px;
}


.drawer {
    background-color: rgb(204 204 204 / 30%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.drawer__close .svg-wrapper>svg {
  height: 14px;
  width: 14px;
  color: #000;
}



.cart-upsell-container {
  padding-block-end: 16px;
  margin-block-start: -4px;
}

.cart-upsell-item {
  margin-bottom: 1rem;
  display: grid;
  gap: 6px;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  line-height: 1;
}

.cart-upsell-item:last-child {
  margin-bottom: 0;
}

.cart-upsell-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}


.cart-upsell-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cart-upsell-checkbox-icon {
    position: relative;
    display: flex;
    flex-shrink: 0;
    --pi-circle-size: 16px;
    width: calc(var(--pi-circle-size) - 0px);
    height: calc(var(--pi-circle-size) - 0px);
    align-items: center;
    justify-content: center;
}
.cart-upsell-checkbox:not(:checked) + .cart-upsell-checkbox-icon {
  background: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='15' fill='none' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
  background-size: calc(var(--pi-circle-size) - 2px)!important;
  border: none !important;
} 
.cart-upsell-checkbox:checked + .cart-upsell-checkbox-icon {
  border: 1px solid transparent;
  width: var(--pi-circle-size);
  height: var(--pi-circle-size);
}
.cart-upsell-checkbox:checked + .cart-upsell-checkbox-icon:before {
  content: "";
  display: inline-flex;
  background: url("data:image/svg+xml;charset=UTF-8,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23FFFFFF;stroke-width:3.3;stroke-linecap:round;stroke-linejoin:round;%7D.st1%7Bfill:none;stroke:%23000000;stroke-width:2;stroke-miterlimit:10;%7D.st2%7Bstroke:%23000000;stroke-width:2;stroke-miterlimit:10;%7D%3C/style%3E%3Cpolyline class='st0' points='12,19.5 16.1,23.5 24,12.5'/%3E%3Cg%3E%3Ccircle class='st1' cx='18' cy='18' r='17'/%3E%3Ccircle class='st2' cx='18' cy='18' r='8.4'/%3E%3C/g%3E%3C/svg%3E") no-repeat center !important;
  background-size: calc(var(--pi-circle-size) - 2px)!important;
  height: 100%!important;
  width: 100%!important;
}


.cart-upsell-title {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
}

.cart-upsell-price {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
  margin-left: auto;
}

.cart-upsell-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  color: rgb(106, 106, 109);
  position: relative;
}
.cart-upsell-info-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.cart-upsell-info-icon svg {
  width: 12px;
  height: 12px;
}

.cart-upsell-label * {
  pointer-events: none;
}







/* Upsell Product Modal Styles - Slide up from bottom like Route */
.phi--upsell-product-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  background-color: #0009;
  -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  height: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.phi--upsell-product-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.phi--upsell-modal__content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  max-height: calc(100% - 82px);
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  padding: 2rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding-block-start: 7rem;
}

.phi--upsell-product-modal[open] .phi--upsell-modal__content {
  transform: translateY(0);
}

.phi--upsell-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.phi--upsell-modal__close .svg-wrapper {
  width: 16px;
  height: 16px;
}
.phi--upsell-modal__close .svg-wrapper svg {
  color: #000;
  width: 16px;
  height: 16px;
}
.phi--upsell-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media screen and (min-width: 750px) {
  .phi--upsell-modal__content {
    padding-inline: 32px;
}
}
.phi--upsell-modal__slider-component {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.phi--upsell-modal__slider-component .slider.slider--mobile {
  margin-bottom: 1rem;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin: 0;
  gap: 1.5rem;
  scroll-padding-left: 0;
}

.phi--upsell-modal__slider-component .slider:after {
  content: unset;
  width: 0;
  padding-left: 0;
}

@media screen and (min-width: 750px) {
  .phi--upsell-modal__slider-component .slider {
    /* Ensure slider works on desktop too */
    overflow-x: auto;
  }
}

.phi--upsell-modal__slide-item {
  width: 100%;
  flex-shrink: 0;
}

.phi--upsell-modal__slide-item .phi--upsell-modal__image {
  width: 100%;
  background-color: #f5f5f5;
}
.phi--upsell-modal__slide-item .phi--upsell-modal__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.phi--upsell-modal__slider-component .slider-buttons {
  position: relative;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  top: initial;
  margin-top: 0;
  width: 100%;
}
.phi--upsell-modal__slider-component .slider-buttons {
  display: flex !important;
}
.phi--upsell-modal__slider-component .slider-buttons .slider-counter.slider-counter__dots {
  display: flex;
}

.phi--upsell-modal__slider-component .slider-buttons .slider-button.slider-button--next,
.phi--upsell-modal__slider-component .slider-buttons .slider-button.slider-button--prev {
  display: none;
}

.phi--upsell-modal__slider-component .slider-buttons .slider-counter__link--dots .dot {
  border: none;
  width: 5px;
  height: 5px;
  font-size: 0;
  background: #dcdcdc;
}

.phi--upsell-modal__slider-component .slider-buttons .slider-counter__link--active.slider-counter__link--dots .dot {
  background: #808080;
}

.phi--upsell-modal__slider-component .slider-buttons .slider-counter__link {
  padding: .7rem 0.2rem;
}

.phi--upsell-modal__slider-component .slideshow__control-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.phi--upsell-modal__image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.phi--upsell-modal__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.phi--upsell-modal__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  margin: 1rem;
}

.phi--upsell-modal__title {
  font-size: 12px;
  margin: 0;
  color: #000;
  line-height: 1.3;
}

.phi--upsell-modal__price {
  font-size: 12px;
  color: #000;
}

.phi--upsell-modal__compare-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  margin-left: 0.5rem;
}

.phi--upsell-modal__description-wrapper {
  width: 100%;
  border-block: 1px solid #d5d5d5;
  padding-block: 1.5rem;
  margin-block: 1rem;
}

.phi--upsell-modal__description-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.phi--upsell-modal__description-title {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  line-height: calc(1 + .3/max(1,var(--font-heading-scale)));
  font-family: var(--font-heading-family);
  min-height: 1.6rem;
}

.phi--upsell-modal__description-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: transform 0.3s ease;
}

.phi--upsell-modal__description-toggle[aria-expanded="false"] .phi--upsell-modal__description-chevron {
  transform: rotate(180deg);
}

.phi--upsell-modal__description {
  font-size: 12px;
  color: #333;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease;
  padding-top: 1rem;
  margin-top: 0;
  text-align: left;
}

.phi--upsell-modal__description--collapsed {
  max-height: 0;
  padding-top: 0;
  margin-top: 0;
  overflow: hidden;
}

.phi--upsell-modal__description p {
  margin: 0 0 1rem 0;
}

.phi--upsell-modal__description p:last-child {
  margin-bottom: 0;
}

.phi--upsell-modal__description ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.phi--upsell-modal__description ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.phi--upsell-modal__description ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
}

@media screen and (min-width: 750px) {
  .phi--upsell-modal__content {
    max-width: 600px;
    max-width: 540px !important;
    max-height: calc(100% - 82px);
    margin: 0 auto;
    border-radius: 5px;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, 150%);
    left: 50%;
    right: auto;
}

  .phi--upsell-product-modal[open] .phi--upsell-modal__content {
    transform: translate(-50%, -50%);
  }
}

.cart-upsell-info-icon {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phi--upsell-modal__description-chevron .icon-caret {
  height: calc(var(--font-heading-scale)* .9rem);
}

.route-div {
  min-height: 33px;
}
.drawer .cart-drawer .pw-route-protection {
  padding: 0px 0px 15px;
}
.cart-upsell-container {
  padding-block-end: 17px;
  margin-block-start: 0;
}
.drawer__footer {
  padding-top: 0;
}
.cart-drawer__footer {
  margin-top: 18px;
}
.cart-drawer__footer > * + * {
  margin-top: 0;
}
.cart-drawer__footer-discounts {
  margin: 0;
    margin-bottom: 19px;
  .discounts.list-unstyled {
    display: grid;
    gap: 17px;
    margin: 0;
  }
}

.drawer__footer .totals__total {
  margin-top: 0;
}
.cart__ctas {
  margin-top: 20px;
}