/** Shopify CDN: Minification failed

Line 297:0 Expected "}" to go with "{"

**/
.header__icon--menu {
  position: initial;
}

.js menu-drawer > details > summary::before,
.js menu-drawer > details[open]:not(.menu-opening) > summary::before {
  content: '';
  position: absolute;
  cursor: default;
  width: 100%;
  height: calc(100vh - 100%);
  height: calc(
    var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%))
  );
  top: 100%;
  left: 0;
  background: rgba(var(--color-foreground), 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0s, visibility 0s;
}

menu-drawer > details[open] > summary::before {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--duration-default) ease,
    visibility var(--duration-default) ease;
}

.menu-drawer {
  position: absolute;
  transform: translateX(-100%);
  visibility: hidden;
  z-index: 8;
  left: 0;
  top: 100%; /* this is the code to make it show at the top instead of under header */
  width: calc(100vw - 4rem);
  padding: 0;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-left: 0;
  background-color: rgb(var(--color-background));
  overflow-x: hidden;
}

.js .menu-drawer {
  height: calc(100vh - 100%);
  height: calc(
    var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%))
  );
}

.js details[open] > .menu-drawer,
.js details[open] > .menu-drawer__submenu {
  transition: transform var(--duration-default) ease,
    visibility var(--duration-default) ease;
}

.no-js details[open] > .menu-drawer,
.js details[open].menu-opening > .menu-drawer,
details[open].menu-opening > .menu-drawer__submenu {
  transform: translateX(0);
  visibility: visible;
}

@media screen and (min-width: 750px) {
  .menu-drawer {
    width: 40rem;
  }

  .no-js .menu-drawer {
    height: auto;
  }
}

.menu-drawer__inner-container {
  position: relative;
  height: 100%;
}

.menu-drawer__navigation-container {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  overflow-y: auto;
  height: 100%;
}

.menu-drawer__navigation {
  padding: 5.6rem 0;
}

.menu-drawer__inner-submenu {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.no-js .menu-drawer__navigation {
  padding: 0;
}

.no-js .menu-drawer__navigation > ul > li {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.04);
}

.no-js .menu-drawer__submenu ul > li {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.04);
}

.js .menu-drawer__menu li {
  margin-bottom: 0.2rem;
}

.menu-drawer__menu-item {
  padding: 1.1rem 3.2rem;
  text-decoration: none;
  font-size: 1.8rem;
}

.no-js .menu-drawer__menu-item {
  font-size: 1.6rem;
}

.no-js .menu-drawer__submenu .menu-drawer__menu-item {
  padding: 1.2rem 5.2rem 1.2rem 6rem;
}

.no-js .menu-drawer__submenu .menu-drawer__submenu .menu-drawer__menu-item {
  padding-left: 9rem;
}

.menu-drawer summary.menu-drawer__menu-item {
  padding-right: 5.2rem;
}

.no-js .menu-drawer__menu-item .icon-caret {
  right: 3rem;
}

.menu-drawer__menu-item--active,
.menu-drawer__menu-item:focus,
.menu-drawer__close-button:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__close-button:hover {
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-foreground), 0.04);
}

.menu-drawer__menu-item--active:hover {
  background-color: rgba(var(--color-foreground), 0.08);
}

.js .menu-drawer__menu-item .icon-caret,
.no-js .menu-drawer .icon-arrow {
  display: none;
}

.menu-drawer__menu-item > .icon-arrow {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.js .menu-drawer__submenu {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgb(var(--color-background));
  border-left: 0.1rem solid rgba(var(--color-foreground), 0.2);
  z-index: 1;
  transform: translateX(100%);
  visibility: hidden;
}
/* this is the code to make it open below 
.js .menu-drawer__submenu {
  position: relative;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgb(var(--color-background));
  border-left: 0.1rem solid rgba(var(--color-foreground), 0.2);
  z-index: 1;
  transform: translateY(100%);
  visibility: hidden;
}*/
.js .menu-drawer__submenu .menu-drawer__submenu {
  overflow-y: auto;
}

.menu-drawer__close-button {
  margin-top: 1.5rem;
  padding: 1.2rem 2.6rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  width: 100%;
  background-color: transparent;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
}

.no-js .menu-drawer__close-button {
  display: none;
}

.menu-drawer__close-button .icon-arrow {
  transform: rotate(180deg);
  margin-right: 1rem;
}

.menu-drawer__utility-links {
  padding: 2rem;
  background-color: rgba(var(--color-foreground), 0.03);
}

.menu-drawer__account {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 1.2rem;
  margin-left: -1.2rem;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
}

.menu-drawer__account .icon-account {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}

.menu-drawer__account:hover .icon-account {
  transform: scale(1.07);
}

.menu-drawer .list-social {
  justify-content: flex-start;
  margin-left: -1.25rem;
  margin-top: 0rem;
}

.menu-drawer .list-social:empty {
  display: none;
}

.menu-drawer .list-social__link {
  padding: 1.3rem 1.25rem;
}

/*Cart Drawer Base CSS*/
.drawer{display:none}
.drawer.is-active{display:block}
.drawer.is-visible .drawer__wrapper{transform:translate(0,0);transition:all .25s ease-in-out}
.drawer.is-visible .drawer__overlay{opacity:.5;display:block;visibility:visible}
.drawer__overlay{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;z-index:200;opacity:0;transition:opacity .3s;will-change:opacity;background-color:#000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.drawer__wrapper{position:fixed;top:0;right:0;bottom:0;height:100%;width:95%;max-width:500px;z-index:9999;transition:transform .3s;will-change:transform;background-color:#fff;display:flex;flex-direction:column;-webkit-transform:translateX(103%);transform:translateX(103%);-webkit-overflow-scrolling:touch;box-shadow:0 2px 6px #777}
.drawer_empty{text-align:center;position:absolute;left:50%;transform:translate(-50%,-50%);width:100%;top:25%}
.drawer__header{padding:24px;display:flex;justify-content:space-between;align-items:center}
.drawer__title{margin:0;font-weight:500;font-size:32px}
.drawer__close{margin:0;padding:0;border:none;background-color:transparent;cursor:pointer;background-image:url("data:image/svg+xml,%0A%3Csvg width='20px' height='20px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");width:20px;height:20px}
.drawer__content{position:relative;height:95%;flex-grow:1;padding-top:0;display:flex;flex-direction:column;justify-content:space-between}
.drawer__items{overflow:auto;padding:0 24px}
.drawer__content-items{margin:0;list-style:none;margin:0;padding:0}
.drawer__content-items .drawer__content-item{display:flex;padding-top:1.5rem;padding-bottom:1.5rem;gap:15px;border-bottom:1px solid #efefef}
.drawer__content-item-image{width:100px;text-align:center}
.drawer__content-item-image img{height:100px;text-align:center}
.drawer_product-info{margin:0}
.drawer__content-item-info{flex-direction:column;flex:1 1 0%;display:flex;margin-bottom:1rem;justify-content:space-between}
.drawer__content-item-top{display:flex;justify-content:space-between;align-items:center}
.drawer__content-item-price,
.drawer__content-item-tprice h3,.drawer__content-item-vtitle{margin:0}
.drawer__content-item-tprice{display:flex;justify-content:space-between;align-items:center}
.drawer__items span.price.price--end{margin:0}
.drawer__content-item-price{margin-left:1rem}
.drawer__content-item-qremove{display:flex;justify-content:space-between;align-items:center}
.drawer__content-item-remove{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;outline:inherit}
button.drawer__content-item-remove {font-size:13px;}
button.drawer__content-item-remove:hover {opacity:0.5;}
.drawer__content-quantity{display:flex;align-items:center;margin-top:5px}
.drawer__content-quantity-button{width:30px;height:30px;display:flex;align-items:center;justify-content:center;border:1px solid #ebebeb;padding:0 5px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.drawer__content-quantity-number{width:30px;height:30px;margin:0;text-align:center;background-color:#fff;border:none;border-bottom:1px solid #ebebeb;border-top:1px solid #ebebeb;outline:0;-moz-appearance:textfield;text-align:center}
.drawer_content-minus{border-right:none}.drawer_content-plus{border-left:none}.drawer__final{padding:12px 24px 24px;border-top:1px solid #efefef;.drawer__subtotal{display:flex;justify-content:center;align-items:center;gap:24px}
  .drawer__subtotal ,.drawer__subtotal p{margin:0}.drawer__notification{margin-bottom:12px;text-align:center}
  .drawer__continue{text-align:center;margin-bottom:0;margin-top:12px}
  .drawer__continue button{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;outline:inherit}button[aria-disabled="true"] {pointer-events: none;}
