/** Shopify CDN: Minification failed

Line 24:12 Expected identifier but found whitespace
Line 24:14 Unexpected "{"
Line 24:24 Expected ":"

**/
/* general header edits */
.section-header .header-wrapper .header {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 10px;
  height: 140px;
}
#custom-header-top-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
  min-height: 62px;
}
.header .header__heading .header__heading-logo-wrapper img {
  min-width: {{ settings.logo_width }};
}

/* search bar on top level */
#custom-header-top-container .search-modal__form {
  align-content: center;
}
#custom-header-top-container .header__icons {
  align-items: anchor-center;
}

/* For the second level scrollable menu */
.header .custom-slider-menu {
  width: 100%;
  flex-direction: row;
  position: relative;
}
.header .header__inline-menu .list-menu {
  flex-wrap: nowrap !important;
  max-width: 90vw;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  gap: 7px;
  padding-right: 30px;
  margin-left: 14px;
}
.header .header__inline-menu .list-menu .header__menu-item {
  white-space: nowrap;
  border-radius: 30px;
  background: #f5f5f5;
  transition: 0.2s ease-in-out;
  font-weight: bold;
  padding: 5px 16px;
}
.header .header__inline-menu .list-menu .header__menu-item:hover {
  background: #e5e5e5;
}
#ddt-header-menu-mobile .additional-category-arrow {
  display: flex;
  gap: 2px;
  align-items: center;
  background: var(--ddt-green);
  padding: 5px;
  border-radius: 30px;
  cursor: default;
  transition: 0.2s ease-in-out;
  opacity: 1;
  position: absolute;
  right: 0;
  top: -1px;
  cursor: pointer;
}
#ddt-header-menu-mobile .additional-category-arrow img {
  max-width: 90px;
  width: 20px;
  height: 20px;
  filter: brightness(999);
}
#ddt-header-menu-mobile .additional-category-arrow span {
  padding: 0;
  margin: 0;
  color: white;
  white-space: nowrap;
  font-size: 11px;
}
#ddt-header-menu-mobile .prior-category-arrow {
  display: flex;
  gap: 2px;
  align-items: center;
  background: var(--ddt-green);
  padding: 5px;
  border-radius: 30px;
  cursor: default;
  transition: 0.2s ease-in-out;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
#ddt-header-menu-mobile .prior-category-arrow img {
  max-width: 90px;
  width: 20px;
  height: 20px;
  filter: brightness(999);
  transform: rotate(180deg);
}
#ddt-header-menu-mobile .prior-category-arrow span {
  padding: 0;
  margin: 0;
  color: white;
  white-space: nowrap;
  font-size: 11px;
}
/* When screen is under 1449px */
@media (max-width: 1300px) {
  #ddt-header-menu-mobile .additional-category-arrow {
    opacity: 1;
  }
}

/* The sticky footer mobile section */
#custom-dtt-sticky-mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: white;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
}
#custom-dtt-sticky-mobile-footer > .sticky-button {
  width: 100%;
  background: #1c1c1e;
  color: black;
  display: flex;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  align-items: center;
  border-left: 1px solid #9d9d9d6b;
  border-right: 1px solid #9d9d9d6b;
}
#custom-dtt-sticky-mobile-footer .sticky-button:after {
  content: auto;
}
#custom-dtt-sticky-mobile-footer > .sticky-button > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
#custom-dtt-sticky-mobile-footer > .sticky-button svg {
  fill: none;
  stroke: white;
  stroke-width: 1px;
}
#custom-dtt-sticky-mobile-footer header-drawer {
  display: block;
}
#custom-dtt-sticky-mobile-footer .home svg {
  width: 2.3rem;
  height: 2.3rem;
  fill: none;
  stroke: white;
  stroke-width: 1px;
}
#custom-dtt-sticky-mobile-footer .home a:hover svg {
  transform: scale(1.04);
}
#custom-dtt-sticky-mobile-footer .search svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: white;
  stroke-width: 1px;
  color: white;
}
#custom-dtt-sticky-mobile-footer .search:hover svg {
  transform: scale(1.04);
}
#custom-dtt-sticky-mobile-footer .menu-drawer-container .header__icon--menu span svg {
  visibility: visible !important;
}
#custom-dtt-sticky-mobile-footer .menu .icon-hamburger {
  display: block;
  width: 2rem;
  height: 2rem;
}
#custom-dtt-sticky-mobile-footer .menu .icon-close {
  display: none;
  width: 2rem;
  height: 2rem;
}
.header-wrapper > .header > header-drawer .menu-drawer-container .header__icon {
  display: none !important;
}
#custom-dtt-sticky-mobile-footer .cart {
  display: block;
}
.menu-drawer__inner-container .menu-drawer__navigation {
  border-top: 2px solid #26223c;
  height: fit-content;
}
#custom-dtt-sticky-mobile-footer .home {
  border-left: 0px solid black;
}
#custom-dtt-sticky-mobile-footer .cart {
  border-right: 0px solid black;
}

/* The multiple header menu items */
#ddt-header-menu-desktop {
  display: flex;
  width: 100%;
}
#ddt-header-menu-mobile {
  display: none;
  margin-top: 1rem;
}
#custom-header-top-container .header__icon--account .svg-wrapper svg {
  color: white;
}
#custom-header-top-container .header__icon--cart .svg-wrapper svg {
  color: white;
}
@media screen and (max-width: 768px) {
  .section-header .header-wrapper .header {
    gap: 0px;
    height: 62px;
    padding: 0px 20px;
  }
  #ddt-header-menu-desktop {
    display: none;
  }
  #ddt-header-menu-mobile {
    display: flex;
  }
  #custom-dtt-sticky-mobile-footer {
    display: flex;
    border-top: 1px solid #0000006b;
  }
  #custom-header-top-container .header__icons {
    display: none;
  }
  #custom-header-top-container .header__icon--account .svg-wrapper svg {
    color: black;
  }
  #custom-header-top-container .header__icon--cart .svg-wrapper svg {
    color: black;
  }
  .fixed-button {
    top: 81px;
    padding: 5px 0px;
    width: 220px;
  }
  #custom-header-top-container .header__heading {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__heading-link {
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  #custom-header-top-container {
    flex-direction: column;
    min-height: 100px;
  }
    .header .header__inline-menu .list-menu {
    max-width: 85vw;
  }
  .section-header .header-wrapper .header {
    height: 110px;

  }
  .fixed-button {
    top: 129px;
  }
}