/** Shopify CDN: Minification failed

Line 18:2 Unexpected "{"
Line 18:3 Expected identifier but found "%"
Line 22:2 Unexpected "{"
Line 22:3 Expected identifier but found "%"
Line 24:2 Unexpected "{"
Line 24:3 Expected identifier but found "%"
Line 30:2 Unexpected "{"
Line 30:3 Expected identifier but found "%"

**/
  header-drawer {
    justify-self: start;
    margin-left: -1.2rem;
  }
  
  {%- if section.settings.sticky_header_type == 'reduce-logo-size' -%}
  .scrolled-past-header .header__heading-logo-wrapper {
    width: 75%;
  }
  {%- endif -%}
  
  {%- if section.settings.menu_type_desktop != "drawer" -%}
  @media screen and (min-width: 990px) {
    header-drawer {
      display: none;
    }
  }
  {%- endif -%}
  
  .menu-drawer-container {
    display: flex;
  }
  
  .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }
  
  summary.list-menu__item {
    padding-right: 2.7rem;
  }
  
  .list-menu__item {
    display: flex;
    align-items: center;
    line-height: calc(1 + 0.3 / var(--font-body-scale));
  }
  
  .list-menu__item--link {
    text-decoration: none;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }
  
  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }
  /* Mega Menu Styles */
  /* .mak_header {
  position: relative;
  } */
  
  .mega-menu {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
    max-height 0.3s ease-out,
    opacity 0.2s ease,
    transform 0.2s ease;
    top: 100%;
    
  }
  @media (min-width: 990px) {
    .mega-menu {
      margin-top: -8px;
      /* background: #EDECEB; */
    }
  }
  div#menu-products-top {
    top: 101%;
  }
  .mega-menu.active {
    max-height: calc(100vh - 100px);
    opacity: 1;
    transform: translateY(0);
    transition:
    max-height 0.3s ease-in,
    opacity 0.2s ease 0.1s,
    transform 0.2s ease;
    border-top: 1px solid lightgrey;
  }
  .mega-menu-content {
    max-width: 1536px;
    padding: 20px 40px;
    margin: 0 auto;
    /* min-height:100vh; */
    max-height: calc(100vh - 100px);
  }
  .mak_mega-flex {
    display: flex;
    justify-content: space-between;
  }
  .mega-menu-links {
    width: 21%;
  }
  ul.mega-menu-links {
    list-style: none;
    padding: 0;
    position: relative;
  }
  ul.mega-menu-links::after {
    content: '';
    position: absolute;
    top: 1px; /* adjust start position */
    bottom: 24rem; /* adjust end position */
    right: 0;
    width: 1px;
    background-color: lightgrey;
  }
  .mega-menu-links li a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    padding: 12px 20px;
    WIDTH: 95%;
    DISPLAY: BLOCK;
  }
  .mega-menu-links li a:hover {
    color: #eda800;
    background-color: #f2f2f2;
    padding: 12px 20px;
  }
  
  .mak_mega-products {
    width: 77%;
    height: 100vh;
    max-height: 100%;
  }
  h4.collection-title {
    margin: 0;
    padding-bottom: 0.5rem;
  }
  /* .mega-menu-links li {
  margin-bottom: 5px;
  } */
  
  .mega-menu-links li a.active-link {
    background-color: #f3f3f3; /* change to your desired color */
    background-color: #fff;
    color: #eda800;
    border: 1px solid lightgrey;
  }
  
  .mega-product-items {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    overflow-y: scroll;
    height: calc(100% - 40px);
    max-height: calc(100vh - 150px);
    /* max-height: calc(100vh - 160px); */
    overflow-x: hidden;
    padding: 10px 0;
  }
  .mega-product-group {
    width: 100%;
    height: 100%;
    /* height: 80%; */
    
  }
  
  .mega-product-item {
    width: calc(100% / 4 - 11px);
    height: max-content;
  }
  .mega-product-item .card.card--standard.card--media {
    padding:10px;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid lightgrey;
  }
  .mega-product-item .card .media {
    border-radius: 5px;
  }
  .mega-product-item  .full-unstyled-link {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: 500;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
  a.new-link-1 {
    padding-right: 32px;
    color: #000;
    text-decoration: none;
  }
  a.new-link-2 {
    color: #000;
    text-decoration: none;
  }
  @media screen and (min-width: 990px) {
    .header--middle-left {
      grid-template-columns: auto auto 1fr;
      column-gap: 2rem;
      grid-template-areas:
      "heading cus-search icons "
      "bottom-content bottom-content bottom-content";
    }
  }
  .header__heading, .header__heading-link {
    grid-area: heading;
    justify-self: center;
  }
  .mak_header {
    grid-area: bottom-content;
  }
  .unified-search-wrapper
  {
    grid-area: cus-search;
    display: flex;
    align-items: center;
    border: 1px solid #DDDDDD;
    border-radius: 30px;
    padding: 0px 12px 0 24px;
    background: #fff;
    max-width: 500px;
    width: 100%;
  }
  form.search.search-modal__form {
    border-left: 1px solid #DDDDDD;
    margin-left: 25px;
  }
  form.search.search-modal__form,.unified-search-wrapper {
    height: 42px;
  }
  form.search.search-modal__form .field__button {
    height: 39px;
  }
  form.search.search-modal__form .field{
    height:100%;
  }
  #searchInput {
    height: 39px;
  }
  .placeholder-anim-wrapper {
    top: 11px;
  }
  .header__icons {
    display: flex;
    grid-area: icons;
    justify-self: end;
    padding-right: .8rem;
    gap: 20px;
    align-items: center;
  }
  .social-icons {
    display: flex;
    align-items: center;
  }
  .bottom-bar {
    display: flex;
    justify-content: space-between;
  }
  .bottom-bar .nav-item[data-menu] {
    height: 100%;
  }
  .mak_mega-icon svg {
    fill: #000;
    width: 14px;
    height: 14px;
    display: flex;
  }
  a#nav-products
  {
    text-decoration: none;
    color: #000;
    font-size: 1.6rem;
    height: 100%;
  }
  span.mak_first-mega {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .search, .search-modal__form, .field:hover.field:after, .select:hover.select:after, .select__select:hover.select__select:after, .customer .field:hover.field:after, .customer select:hover.select:after, .localization-form__select:hover.localization-form__select:after {
    box-shadow: unset;
  }
  .search, .search-modal__form, .field:after, .select:after, .customer .field:after, .customer select:after, .localization-form__select:after {
    box-shadow: unset;
  }
  .search, .search-modal__form, .field__input:focus, .select__select:focus, .customer .field input:focus, .customer select:focus, .localization-form__select:focus.localization-form__select:after {
    box-shadow: unset; box-shadow: unset;
  }
  .template-index .site-header-transparent.site-header-transparent-drawer .unified-search-wrapper,
  .template-index .site-header-transparent .unified-search-wrapper {
    display: none;
  }
  .template-index .site-header-transparent.site-header-transparent-drawer .mak_dilver-lable,
  .template-index .site-header-transparent.site-header-transparent-drawer .mak_nav-it,
  .template-index .site-header-transparent.site-header-transparent-drawer .list-social__link,
  .template-index .site-header-transparent.site-header-transparent-drawer .new-link-1,
  .template-index .site-header-transparent.site-header-transparent-drawer .new-link-2,
  .template-index .site-header-transparent.site-header-transparent-drawer .mak-mega-link,
  .template-index .site-header-transparent.site-header-transparent-drawer .mak-locale-country-button,
  .template-index .site-header-transparent.site-header-transparent-drawer .mak-country-text,
  .template-index .site-header-transparent.site-header-transparent-drawer .mak_dilver-lable{
    color: #000;
  }
  .template-index .site-header-transparent.site-header-transparent-drawer .mak-flag-icon.f-country-flags--US svg path,
  .template-index .site-header-transparent.site-header-transparent-drawer .header__icon--cart svg path,
  .template-index .site-header-transparent.site-header-transparent-drawer .header__icon--account svg path{
    fill:#000;
  }
  .template-index .site-header-transparent .mak_dilver-lable {
    color: #fff;
    width: 100%;
    text-align: left;
    padding-bottom: 8px;
  }
  
  .template-index .site-header-transparent .mak-country-text {
    color: #fff;
  }
  
  .template-index .site-header-transparent .mak-locale-country-button {
    color: #fff;
  }
  
  .template-index .site-header-transparent .mak-flag-icon.f-country-flags--US svg path {
    fill: #fff;
  }
  
  .template-index .site-header-transparent .header__icon--cart svg path {
    fill: #fff;
  }
  
  .template-index .site-header-transparent .header__icon--account svg path {
    fill: #fff;
  }
  .template-index .site-header-transparent .mak_nav-it {
    color: #fff;
  }
  .template-index .site-header-transparent .list-social__link {
    color: #fff;
  }
  
  .template-index .site-header-transparent .new-link-1 {
    color: #fff;
  }
  
  .template-index .site-header-transparent .new-link-2 {
    color: #fff;
  }
  
  .template-index .site-header-transparent .mak-mega-link {
    color: #fff;
    font-size: 1.6rem;
    
  }
  .template-index .site-header-transparent .mak_mega-icon svg {
    fill: #fff;
  }
  
  .template-index .site-header-transparent svg.icon.icon-hamburger path {
    fill: #fff;
  }
  .mak_main-logo {
    display: none;
  }
  .template-index .site-header-transparent .mak_main-logo {
    display: block;
  }
  .template-index .site-header-transparent.changelogo .mak_main-logo {
    display: none;
  }
  .template-index .site-header-transparent.site-header-transparent-drawer .mak_main-logo,
  .template-index .site-header-transparent .mak_transparent-logo {
    display: none;
  }
  .template-index .site-header-transparent.changelogo .mak_transparent-logo {
    display: block
  }
  .template-index .site-header-transparent.site-header-transparent-drawer .mak_transparent-logo {
    display:block;
  }
  .mak_header {
    display: none;
  }
  .site-header-transparent .mak_header {
    display: block;
  }
  span.mak_nav-it {
    display: none;
  }
  .desktop-localization-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  localization-form.small-hide.medium-hide {
    display: inline-block;
  }  
  
  .content-padding-top:not(.house-reflection-llc) {
    /* padding-top: 120px; */
  }
  
  .mak_sign-up {
    display: none;
  }
  .mak-delivery-button{
    flex-wrap: wrap;
  }
  #menu-drawer .mak-delivery-button {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .mak-delivery-switcher {
    max-width: 109px;
  }
  .template-index .template-index .site-header-transparent svg.icon.icon-accordion.icon-heart {
    fill: #fff;
  }
  .template-index .template-index .site-header-transparent .xb-product-quantity.show {
    background-color: #fff;
    color: #000;
  }
  .xb-wishlist-button-collection__add, .xb-wishlist-button-collection__remove {
    background-color: #fff !important;
    border-radius: 50% !important;
    height: 30px !important;
    width: 30px !important;
  }
  .xb-wishlist-button-collection svg {
    fill: #000 !important;
  }
  
  @media screen and (max-width: 768px){
    .mak_header {
      display: none !important;
    }
    .mak_sign-up {
      display: none;
    }
    .unified-search-wrapper {
      display: none;
    }
    .template-index .site-header-transparent .list-social__link {
      color: #000;
    }
  }
  .xb-header__icon {
    width: auto;
  }
  
  xb-wishlist-header.xb-wishlist__header {
    width: auto;
  }
  form.search.search-modal__form {
    border-left: 1px solid #DDDDDD;
    margin-left: 15px;
  }
  
  .unified-search-wrapper {
    max-width: 550px;
    width: 500px;
  }
  
  label.field__label.search-field__label {
    font-size: 14px;
    line-height: 180%;
  }
  a.menu_with_img {
    display: flex !important;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
  }
  .menu_with_img img {
    border-radius: 4px;
  }
  .scroll-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #eda800;
    transition: width 0.25s ease;
  }
  
  
  
  @media (max-width: 989px) {
    .unified-search-wrapper:not(.large-up-hide) {
      display: none
    }
  }
  
  @media (max-width: 1170px) and (min-width: 990px) {
    header:not(.site-header-transparent) .header__icons {
      padding-right: 0;
      gap: 10px;
    }
    .unified-search-wrapper:not(.large-up-hide) {
      max-width: 380px;
      width: 380px;
    }
  }