/** Shopify CDN: Minification failed

Line 54:13 Expected identifier but found whitespace
Line 54:16 Unexpected "{"
Line 54:22 Expected ":"

**/
.defaultMegaMenu {
  /* display: none; */
}
.defaultMegaMenu .mainNav {
  margin-left: 30px;
}
@media (width <= 991px) {
  .defaultMegaMenu .mainNav {
    margin-left: 0;
  }
}#price_match_popover .popover__overlay {
  display: block;
  bottom: unset;
  top: 0;
  opacity: .7;
}
#price_match_popover.popover {
  display: flex;
  flex-direction: column;
  bottom: unset;
  top: 0;
  left: 0; /* We must make sure to not use logical property here */
  width: 100vw;
  height: 100%;
  max-height: 100%;
  border-radius: 10px 10px 0 0;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.75, 0, 0.175, 1), visibility 0.6s cubic-bezier(0.75, 0, 0.175, 1);
  touch-action: manipulation;
  position: fixed;
  background: none;
  border: 0;
  z-index: 20;
}
#price_match_popover.popover[open] {
  transform: translateY(0);
}
#price_match_popover .popover__content--restrict {
  max-height: 100%;
  height: auto;
  width: 100%;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:  {{ shop.brand.colors.secondary[1].background }};
}

#price_match_popover .popover__content--restrict {
  max-width: 450px;
  background: var(--light);
}
#price_match_popover .popover__content--restrict input {
  width: 100%;
}
#price_match_popover .popover__content--restrict .input-wrap .input {
  width: 49%;
}
#price_match_popover input::placeholder {
  color: #aaa;
}
#price_match_popover h3 {
  color: #666;
}