
    /* ── Hide litc-export-only in editor ── */
    .litc-export-only { display: none !important; }

    /* ── Base: radio inputs hidden ── */
    .lit-carousel input[type="radio"] { display: none; }

    /* ── Slide: hidden by default ── */
    .lit-carousel-slide {
      display: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      background: #f5f5f5;
      position: absolute;
      top: 0; left: 0;
    }
    .lit-carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 16px;
      box-sizing: border-box;
      display: block;
    }

    /* ── Thumb ── */
    .lit-carousel-thumb {
      display: flex;
      flex-shrink: 0;
      border: 2px solid #ddd;
      cursor: pointer;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      background: #eee;
      transition: border-color .15s;
      box-sizing: border-box;
    }
    .lit-carousel-thumb:hover { border-color: #999; }
    .lit-carousel-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 4px;
      box-sizing: border-box;
      display: block;
    }

    /* ── Hide scrollbar ── */
    .lit-carousel-thumbs::-webkit-scrollbar { display: none; }
    .lit-carousel-thumbs { -ms-overflow-style: none; scrollbar-width: none; }

    /* ════════════════════════════════
       NAV CAROUSEL — base + layout variants
       ════════════════════════════════ */
    .lit-product-carousel-nav {
      display: block;
      width: 100%;
      max-width: 800px;
      box-sizing: border-box;
      min-width: 0;
    }
    /* Base shared styles for all nav layout variants */
    .lit-carousel--nav {
      display: flex;
      border: 1px solid #ddd;
      width: 100%;
      box-sizing: border-box;
      min-width: 0;
    }

    /* ── HORIZONTAL LAYOUTS (top/bottom): clip overflowing thumbs ──
       For top/bottom nav, the thumb row is flex with flex-shrink:0 children,
       so many thumbs push the row's min-content past the gallery width,
       which cascades up and widens the outer column (e.g. .product-img-col).
       Setting overflow:hidden + max-width:100% makes this row a scroll
       container — flex min-width:auto resolves to 0, severing the cascade,
       and extra thumbs get clipped instead of overflowing the image. */
    .lit-product-carousel-nav:not(:has(.lit-carousel--nav-left)):not(:has(.lit-carousel--nav-right))
      .lit-carousel-thumbstrip .lit-carousel-thumbs {
      max-width: 100%;
      overflow: hidden;
    }
    .lit-carousel--nav .lit-carousel-thumbstrip {
      position: relative;
      background: #fafafa;
      overflow: hidden;
    }
    .lit-carousel--nav .lit-carousel-thumbs {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
      flex-wrap: nowrap;
      transition: transform 0.3s ease;
    }
    .lit-carousel--nav .lit-carousel-thumb {
      width: 72px;
      height: 58px;
      flex-shrink: 0;
    }
    .lit-carousel--nav .lit-carousel-main-wrap {
      position: relative;
    }
    .lit-carousel--nav .lit-carousel-main {
      width: 100%;
      aspect-ratio: 1 / 1;
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
      background: #f5f5f5;
    }
    /* Nav button sets — hidden by default, shown via :has() */
    .lit-carousel--nav .lit-nav {
      display: none;
      position: absolute;
      inset: 0;
      align-items: center;
      justify-content: space-between;
      pointer-events: none;
      z-index: 5;
    }
    /* Nav buttons on main image — small round, centered, floating */
    .lit-carousel--nav .lit-carousel-main-wrap .lit-nav {
      padding: 0 12px;
    }
    .lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.82);
      color: #222;
      font-size: 13px;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.18);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      flex-shrink: 0;
    }
    .lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn:hover {
      background: rgba(255,255,255,1);
      box-shadow: 0 3px 12px rgba(0,0,0,0.26);
    }

    .lit-nav-btn {
      pointer-events: all;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #e0e0e0;
      box-shadow: 0 1px 5px rgba(0,0,0,0.13);
      cursor: pointer;
      font-size: 11px;
      color: #333;
      user-select: none;
      transition: background 0.15s, box-shadow 0.15s;
      box-sizing: border-box;
      z-index: 5;
    }
    .lit-nav-btn:hover {
      background: #f5f5f5;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    /* ── NAV-TOP: thumbstrip on top, main image below ── */
    .lit-carousel--nav-top {
      flex-direction: column;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip {
      border-bottom: 1px solid #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      /* min-width:0 prevents flex item from expanding past parent when many thumbs overflow */
      width: 100%;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
    }
    .lit-carousel--nav-top .lit-carousel-thumbs {
      flex-direction: row;
      padding: 8px 12px;
      transform: translateX(0);
    }
    .lit-carousel--nav-top .lit-carousel-main-wrap {
      width: 100%;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav {
      padding: 0 10px;
    }

    /* ── NAV-BOTTOM: thumbstrip on bottom, main image above ── */
    .lit-carousel--nav-bottom {
      flex-direction: column-reverse;
    }
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip {
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      /* min-width:0 prevents flex item from expanding past parent when many thumbs overflow */
      width: 100%;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
    }
    .lit-carousel--nav-bottom .lit-carousel-thumbs {
      flex-direction: row;
      padding: 8px 12px;
      transform: translateX(0);
    }
    .lit-carousel--nav-bottom .lit-carousel-main-wrap {
      width: 100%;
    }
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav {
      padding: 0 10px;
    }

    /* ── NAV-LEFT: thumbstrip on left, main image on right ── */
    .lit-carousel--nav-left {
      flex-direction: row;
      align-items: center;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip {
      border-right: 1px solid #ddd;
      width: 90px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-self: stretch;
    }
    .lit-carousel--nav-left .lit-carousel-thumbs {
      flex-direction: column;
      padding: 44px 8px;
      transform: translateY(0);
    }
    .lit-carousel--nav-left .lit-carousel-main-wrap {
      flex: 1;
      width: auto;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav {
      flex-direction: column;
      padding: 10px 0;
    }

    /* ── NAV-RIGHT: thumbstrip on right, main image on left ── */
    .lit-carousel--nav-right {
      flex-direction: row-reverse;
      align-items: center;
    }
    .lit-carousel--nav-right .lit-carousel-thumbstrip {
      border-left: 1px solid #ddd;
      width: 90px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-self: stretch;
    }
    .lit-carousel--nav-right .lit-carousel-thumbs {
      flex-direction: column;
      padding: 44px 8px;
      transform: translateY(0);
    }
    .lit-carousel--nav-right .lit-carousel-main-wrap {
      flex: 1;
      width: auto;
    }
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav {
      flex-direction: column;
      padding: 10px 0;
    }

    /* Gradient fade at edges of thumbstrip — horizontal (top/bottom layouts) */
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after {
      content: "";
      position: absolute;
      top: 0; bottom: 0;
      width: 52px;
      pointer-events: none;
      z-index: 4;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before {
      left: 0;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after {
      right: 0;
    }
    /* Gradient fade — vertical (left/right layouts) */
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      height: 52px;
      pointer-events: none;
      z-index: 4;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before {
      top: 0;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after {
      bottom: 0;
    }

    /* :has() selectors — slide + thumb + nav visibility */
    .lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(1) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(2) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(3) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(4) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(5) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-thumb:nth-of-type(1) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-thumb:nth-of-type(2) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-thumb:nth-of-type(3) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-thumb:nth-of-type(4) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-thumb:nth-of-type(5) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-nav--1 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-nav--2 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-nav--3 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-nav--4 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-nav--5 { display: flex; }

    /* ── Thumb count per breakpoint (data-attribute selectors) ── */
    .lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-carousel-thumb:nth-child(n+2) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-carousel-thumb:nth-child(n+3) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-carousel-thumb:nth-child(n+4) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-carousel-thumb:nth-child(n+5) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-carousel-thumb:nth-child(n+6) { display: none !important; }
    @media (max-width: 1024px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(n+2) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(n+3) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(n+4) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(n+5) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(n+6) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5) { display: flex !important; }
}
    @media (max-width: 768px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(n+2) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(n+3) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(n+4) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(n+5) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(n+6) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5) { display: flex !important; }
}

    /* ── Vertical thumbstrip: rotate arrows to point up/down ── */
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav-btn,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav-btn {
      transform: rotate(90deg);
    }

    /* :has() selectors — thumb strip scroll by count (horizontal: top/bottom layouts) */
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-78px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
    @media (max-width: 992px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-78px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
}
    @media (max-width: 600px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-78px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
}

    /* :has() selectors — thumb strip scroll by count (vertical: left/right layouts) */
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-64px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
    @media (max-width: 992px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-64px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
}
    @media (max-width: 600px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-64px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
}

    /* ── Collage Grid ── */
    .lit-collage-grid {
      display: grid;
      gap: 8px;
      width: 100%;
      box-sizing: border-box;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-flow: dense;
    }
    .lit-collage-img {
      width: 100%;
      height: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
    }
    .lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-collage-grid { grid-template-columns: repeat(1, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-collage-grid { grid-template-columns: repeat(2, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-collage-grid { grid-template-columns: repeat(3, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-collage-grid { grid-template-columns: repeat(4, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-collage-grid { grid-template-columns: repeat(5, 1fr); }
    @media (max-width: 1024px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-collage-grid { grid-template-columns: repeat(1, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-collage-grid { grid-template-columns: repeat(2, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-collage-grid { grid-template-columns: repeat(3, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-collage-grid { grid-template-columns: repeat(4, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-collage-grid { grid-template-columns: repeat(5, 1fr); }
}
    @media (max-width: 768px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid { grid-template-columns: repeat(1, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="2"] .lit-collage-grid { grid-template-columns: repeat(2, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="3"] .lit-collage-grid { grid-template-columns: repeat(3, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="4"] .lit-collage-grid { grid-template-columns: repeat(4, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="5"] .lit-collage-grid { grid-template-columns: repeat(5, 1fr); }
}

    /* ── Collage Arrangements ── */
    /* Spotlight: first image is hero (2×2). Falls back to plain grid if <2 columns. */
    .lit-collage-grid.lit-collage--spotlight > :first-child {
      grid-column: span 2;
      grid-row: span 2;
    }
    /* Featured Top: first image spans full row at top with banner aspect-ratio */
    .lit-collage-grid.lit-collage--featured-top > :first-child {
      grid-column: 1 / -1;
      aspect-ratio: 16 / 7;
    }
    /* Phone (1 column): all arrangements degrade to uniform single-column grid */
    @media (max-width: 768px) {
      .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid > :first-child {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
      }
    }
  
* { box-sizing: border-box; } body {margin: 0;}#iori{display:block;background-color:#000000;}#showcase{display:block;}#i9xctm{display:block;background-color:#000000;}.left-col{float:left;}.right-col{float:left;}.center-col{float:left;}div#leftpane.left-col{width:170px;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;}div#rightpane.right-col{width:170px;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;}div#centerpane.center-col{width:1000px;padding-top:0px;padding-right:0px;padding-bottom:30px;padding-left:0px;}#background *{box-sizing:border-box;}#header{display:block;}#subheader{display:block;}#litccredit{display:block;}#more_items_content{display:block;}#leftpane{display:block;}#rightpane{display:block;}#largeimage{display:block;}#design{display:block;}#customhtml{display:block;}#descriptiontitle{display:block;}#ImageID, div.subheader, div.boxtitle, div.boxcontent, div.left-col, div.right-col, div.top-bar, div.footer, #showcase ul, ul.tablinks{display:block;}.hidden{display:none;}.mobile_only{display:none;}.litc-container .header-wrapper, .litc-container .subheader-wrapper, .litc-container .left-col, .litc-container .right-col, .litc-container .creditlink, .litc-container .footer-wrapper, .litc-container .boxcontent, .litc-container #showcase, .litc-container #tab1, .litc-container #descriptiontitle{display:block;}.clear{clear:both;}#background{font-size:10px;background-color:rgb(255, 255, 255);}.page{width:100%;font-family:Roboto, sans-serif;background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;color:rgb(51, 51, 51);}.page td, .page .g-std{font-family:Roboto, sans-serif;}.cols{background-image:none;background-position-x:center;background-position-y:center;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;display:flex;}.col-wrapper{background-image:none;background-position-x:center;background-position-y:center;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;}.accent{color:rgb(178, 54, 51);}div.row{width:1000px;margin-top:auto;margin-right:auto;margin-bottom:auto;margin-left:auto;}h1, h2, h3, h4, h5, h6{width:100%;font-family:Roboto, sans-serif;}.litc-container a{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.litc-container a:link, .litc-container a:visited, .litc-container a:active, .litc-container a:hover{outline-color:initial;outline-style:none;outline-width:initial;}a.homelink{display:block;width:84px;height:39px;background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:no-repeat;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;position:absolute;top:57px;left:0px;z-index:99;}.header-wrapper{background-image:initial;background-position-x:center;background-position-y:bottom;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(26, 26, 46);}div#header{float:none;position:relative;background-image:linear-gradient(135deg, rgb(26, 26, 46) 0%, rgb(22, 33, 62) 50%, rgb(15, 52, 96) 100%);background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;height:auto;display:flex;flex-direction:column;align-items:center;row-gap:14px;column-gap:14px;padding-top:20px;padding-right:0px;padding-bottom:20px;padding-left:0px;}div#header ul.headerlinks{position:static;top:auto;left:auto;width:auto;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;list-style-position:initial;list-style-image:initial;list-style-type:none;text-align:center;display:flex;flex-wrap:wrap;justify-content:center;}div#header ul.headerlinks li{display:inline-block;margin-top:0px;margin-right:13px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:13px;padding-bottom:0px;padding-left:0px;border-right-width:1px;border-right-style:solid;border-right-color:rgba(255, 255, 255, 0.2);}div#header ul.headerlinks li:last-child{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;}div#header ul.headerlinks li a{font-size:14px;color:rgb(255, 255, 255);font-weight:500;}div#header ul.headerlinks li a:hover{color:rgb(233, 69, 96);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.subheader-wrapper{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(15, 52, 96);border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;}.subheader{position:relative;z-index:10;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(15, 52, 96);height:50px;}.subheader ul{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;list-style-position:initial;list-style-image:initial;list-style-type:none;height:100%;overflow-x:hidden;overflow-y:hidden;width:100%;text-align:center;}.subheader ul li{border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;height:100%;display:inline-block !important;}.subheader ul li:hover a{color:rgb(255, 255, 255);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(233, 69, 96, 0.2);}.subheader ul li a{font-size:14px;text-transform:none;font-weight:normal;color:rgba(255, 255, 255, 0.75);font-family:Roboto, sans-serif;padding-top:16px;padding-right:18px;padding-bottom:16px;padding-left:18px;display:block;height:100%;}.subheader ul li ul{display:none;position:absolute;width:200px;height:auto;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(238, 238, 238);padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;}.subheader ul li ul li{display:inline-block;width:100%;padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;}.subheader ul li ul li a{color:rgb(102, 102, 102) !important;font-size:10px;}.subheader ul li ul li a:hover{text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;color:rgb(72, 97, 137);}.subheader ul li ul li:hover{background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;}.subheader ul li ul li ul{display:none !important;}.subheader ul li:hover > ul{display:block;}ul#nav li{display:none;}.cols ul.categories, .cols .boxlinks{font-size:1.4em;font-weight:normal;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;list-style-position:initial;list-style-image:initial;list-style-type:none;}.cols ul.categories li{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;display:block;}.cols ul.categories li a, .cols .boxlinks a{text-align:left;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);display:block;border-top-width:1px;border-top-style:solid;border-top-color:rgb(255, 255, 255);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);color:rgb(51, 51, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;width:100%;height:auto;position:relative;}.cols ul.categories li a:hover, .cols .boxlinks a:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(224, 224, 224);color:rgb(17, 17, 17);}.cols a.sublink{padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:12px;color:rgb(51, 51, 51);border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;position:relative;}.cols a.sublink::before{content:"";font-family:"Font Awesome 5 Free";font-size:5px;font-weight:900;color:rgb(51, 51, 51);position:absolute;left:3px;top:11px;}.cols a.sublink:hover{text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;color:rgb(0, 0, 0);background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;}.cols a.thirdlvl{padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:20px;}.cols a.thirdlvl::before{content:"-";font-size:15px;color:rgb(51, 51, 51);position:absolute;left:11px;top:4px;}#shoppages.boxtitle{display:none;}.right-col ul.brands li, .left-col ul.brands li{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:5px;margin-left:0px;text-align:center;}.right-col ul.brands li img, .left-col ul.brands li img{max-width:100%;}.right-col ul.brands li:hover, .left-col ul.brands li:hover{opacity:0.6;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}#more_items_base{clear:both;}.right-col a.litcpromoitem, .left-col a.litcpromoitem{display:none;background-position-x:center;background-position-y:center;width:auto;height:auto;margin-bottom:10px;}.boxtitle{margin-top:10px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:8px;padding-right:10px;padding-bottom:8px;padding-left:10px;background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;color:rgb(51, 51, 51);font-family:Roboto, sans-serif;font-size:1.6em;font-weight:700;height:auto;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}#descriptiontitle{margin-top:10px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:8px;padding-right:10px;padding-bottom:8px;padding-left:10px;background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;color:rgb(51, 51, 51);font-family:Roboto, sans-serif;font-size:1.6em;font-weight:700;height:auto;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.boxcontent, .cols .search .searchform{padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;color:rgb(51, 51, 51);font-size:1.4em;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;}.boxcontent a:hover{color:rgb(51, 51, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.boxcontent a{color:rgb(51, 51, 51);}.boxbase{display:none;}.cols .search form input.searchbox, .cols .search #search form input.searchbox{padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;height:30px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-bottom-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;width:100%;margin-bottom:5px;}.cols .search form input.submitbox, .cols .search #search form input.submitbox{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(178, 54, 51);border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;height:30px;width:auto;color:rgb(255, 255, 255);font-weight:bold;cursor:pointer;}.cols .search form input.submitbox:hover, .cols .search #search form input.submitbox:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(130, 32, 29);}#showcase{display:block;}.itemtitle{display:block;}.item-details{display:block;}#showcase h3, .itemtitle h3, .item-details h3{color:rgb(0, 0, 0);font-family:Montserrat;font-size:2.8em;margin-top:30px;margin-right:0px;margin-bottom:30px;margin-left:0px;line-height:1.3em;font-weight:400;}#showcase::after{clear:both;content:" ";}.itemtitle::after{clear:both;content:" ";}.item-details::after{clear:both;content:" ";}.item-details{float:left;width:50%;padding-top:0px;padding-right:0px;padding-bottom:30px;padding-left:15px;}.alt_image_gallery{float:left;width:50%;padding-top:30px;padding-right:15px;padding-bottom:20px;padding-left:0px;}.leftarrow{display:none;height:100%;top:0px;width:10%;position:absolute;z-index:5;padding-top:1%;padding-right:1%;padding-bottom:1%;padding-left:1%;cursor:pointer;opacity:0.4;}.rightarrow{display:none;height:100%;top:0px;width:10%;position:absolute;z-index:5;padding-top:1%;padding-right:1%;padding-bottom:1%;padding-left:1%;cursor:pointer;opacity:0.4;}.leftarrow:hover{opacity:0.7;}.rightarrow:hover{opacity:0.7;}.leftarrow span, .rightarrow span{position:relative;top:50%;transform:translateY(-50%);font-size:35px;color:rgb(238, 238, 238);width:40px;height:40px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(51, 51, 51);display:inline-block;text-align:center;text-shadow:rgba(0, 0, 0, 0.5) 0px 1px 3px;}.leftarrow{left:-7px;text-align:left;}.leftarrow span::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;position:relative;top:0px;}.rightarrow{right:-7px;text-align:right;}.rightarrow span::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;position:relative;top:0px;}.g_image:first-child .leftarrow{display:none;}.rightarrow[data-next-image=""], .rightarrow[data-next-image="<!-- missing"]{display:none;}.g_image .thumbimage li{border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-bottom-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;width:94px;height:94px;margin-bottom:5px;opacity:1;position:relative;cursor:pointer;color:rgb(255, 255, 255);text-align:center;display:block;padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}.g_image .thumbimage li:hover{opacity:0.7;}.g_image .thumbimage li img{max-width:90px;max-height:90px;width:auto;height:auto;position:relative;top:50%;transform:translateY(-50%);}#gallery [type="radio"]:checked ~ .thumbimage li{border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(0, 0, 0);border-right-color:rgb(0, 0, 0);border-bottom-color:rgb(0, 0, 0);border-left-color:rgb(0, 0, 0);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;}#gallery_outer_1{position:relative;clear:both;margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;}#gallery_outer_3{position:relative;clear:both;margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;}.g_image [type="radio"]{display:none;}.mainimage{position:absolute;top:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(0, 0, 0, 0);overflow-x:hidden;overflow-y:hidden;text-align:center;opacity:0;cursor:pointer;animation-name:lightboxout;animation-duration:0.5s;}#gallery [type="radio"]:checked ~ .thumbimage{color:rgb(255, 255, 255);z-index:1;}#gallery [type="radio"]:checked ~ .mainimage{opacity:1;z-index:2;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}#gallery_outer_1 .g_image[data=""]{display:none;}#gallery [type="checkbox"]:checked ~ .mainimage{right:0px;z-index:100;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}#gallery [type="checkbox"]:checked ~ .mainimage img{display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}#gallery [type="checkbox"]:checked ~ .mainimage span{display:none;}.mainimagecb{display:none;}#gallery_outer_1, #gallery_outer_1 .mainimage, #gallery_outer_1 #gallery, #gallery_outer_1 .mainimage div{height:484px;width:auto;}#gallery_outer_1 .mainimage{left:130px;min-width:330px;}#gallery_outer_1 #gallery{box-sizing:border-box;clear:both;overflow-y:auto;overflow-x:hidden;direction:rtl;padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:8px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#gallery_outer_1 div#gallery::-webkit-scrollbar{width:8px;height:20px;}#gallery_outer_1 div#gallery::-webkit-scrollbar-button{background-color:rgb(204, 204, 204);}#gallery_outer_1 div#gallery::-webkit-scrollbar-track{background-color:rgb(204, 204, 204);}#gallery_outer_1 div#gallery::-webkit-scrollbar-thumb{height:90px;background-color:rgb(178, 54, 51);border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}#gallery_outer_1 .g_image{float:left;clear:both;}#gallery_outer_1 .g_image .thumbimage{margin-top:0px;margin-right:0px;margin-bottom:5px;margin-left:0px;}#gallery_outer_1 .mainimage img{max-height:100%;max-width:100%;position:relative;top:50%;transform:translateY(-50%);}#gallery_outer_2 .g_image{max-width:100%;height:auto;text-align:center;padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;}#gallery_outer_2 .g_image img{max-width:100%;}#gallery_outer_2 .g_image[data=""]{display:none;}#gallery_outer_3{height:auto;width:100%;}#gallery_outer_3 .mainimage, #gallery_outer_3 .mainimage div{height:500px;width:100%;}#gallery_outer_3 .mainimage div{border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}#gallery_outer_3 #gallery{height:auto;width:100%;padding-top:520px;}#gallery_outer_3 .mainimage{left:0px;}#gallery_outer_3 #gallery{box-sizing:border-box;text-align:center;}#gallery_outer_3 .g_image{display:inline-block;vertical-align:top;height:94px;margin-bottom:5px;}#gallery_outer_3 .g_image .thumbimage{margin-top:10px;margin-right:3px;margin-bottom:10px;margin-left:3px;}#gallery_outer_3 .g_image .thumbimage li{margin-right:3px;}#gallery_outer_3 .mainimage img{max-height:100%;max-width:100%;position:relative;top:50%;transform:translateY(-50%);display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}#gallery_outer_3 #gallery [type="checkbox"]:checked ~ .mainimage, #gallery_outer_1 #gallery [type="checkbox"]:checked ~ .mainimage{animation-name:lightbox;animation-duration:0.5s;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;position:fixed;width:100vw;left:0px;right:0px;height:100vh;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(0, 0, 0, 0.6);}#gallery_outer_3 #gallery [type="checkbox"]:checked ~ .mainimage > div, #gallery_outer_1 #gallery [type="checkbox"]:checked ~ .mainimage > div{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);position:relative;box-sizing:content-box;top:0px;max-height:80vh;width:100%;height:auto;max-width:60vw;margin-right:auto;margin-bottom:auto;margin-left:auto;margin-top:10vh;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;box-shadow:rgba(0, 0, 0, 0.4) 0px 5px 13px;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}#gallery_outer_3 #gallery [type="checkbox"]:checked ~ .mainimage > div img, #gallery_outer_1 #gallery [type="checkbox"]:checked ~ .mainimage > div img{max-height:80vh;transform:none;top:auto;}#gallery_outer_3 #gallery [type="checkbox"]:checked ~ .mainimage > div::after, #gallery_outer_1 #gallery [type="checkbox"]:checked ~ .mainimage > div::after{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;color:rgb(102, 102, 102);content:"Click to close";font-size:16px;padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;position:absolute;top:100%;width:100%;left:0px;box-shadow:rgba(0, 0, 0, 0.5) 0px 1px 1px;}#gallery_outer_3 .g_image[data=""], #gallery_outer_1 .g_image[data*="<!-- missing"], #gallery_outer_2 .g_image[data*="<!-- missing"], #gallery_outer_3 .g_image[data*="<!-- missing"]{display:none;}#descriptiontitle, .center-col .boxtitle{background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;color:rgb(0, 0, 0);height:auto;font-size:3em;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;margin-top:10px;margin-right:0px;margin-left:0px;padding-top:8px;padding-right:10px;padding-bottom:8px;padding-left:10px;font-family:Roboto, sans-serif;margin-bottom:0px !important;}#description{clear:both;margin-bottom:0px;}#description #descriptiontitle{display:none;}#description #descriptioncontent{padding-top:30px;padding-right:0px;padding-bottom:0px;padding-left:0px;background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-right-style:none;border-bottom-style:none;border-left-style:none;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-width:1px;border-top-style:solid;border-top-color:rgb(229, 229, 229);font-size:1.4em;line-height:1.6;font-family:Roboto, sans-serif;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;color:rgb(51, 51, 51);}#description #descriptioncontent ul{padding-left:30px;margin-top:12px;margin-right:0px;margin-bottom:12px;margin-left:0px;}#description #descriptioncontent ul li{list-style-position:outside;list-style-image:initial;list-style-type:initial;display:list-item;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#description #descriptioncontent a{text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;color:rgb(51, 51, 51) !important;}#description #descriptioncontent img{max-width:100% !important;height:auto !important;}#description #descriptioncontent table{max-width:100% !important;}#description #descriptioncontent .row{width:100%;}div#tabs{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;display:block;}div#tabs [type="radio"]{display:none;}div#tabs label.mobile_tab{display:none;}div#tabs label li{font-size:16px;font-family:Roboto, sans-serif;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;display:block;float:left;cursor:pointer;width:20%;text-align:center;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);padding-top:13px;padding-right:0px;padding-bottom:13px;padding-left:0px;margin-right:0px;transition-behavior:normal;transition-duration:0.5s;transition-timing-function:ease;transition-delay:0s;transition-property:all;font-weight:700;border-top-width:1px;border-right-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;position:relative;top:1px;height:46px;}div#tabs label li a{color:rgb(51, 51, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}div#tabs [type="radio"]:checked + label li, div#tabs label li:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);border-top-width:1px;border-right-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;height:47px;}div#tabs [type="radio"]:checked + label li a, div#tabs label li:hover a{color:rgb(51, 51, 51);}div#tabs #tab-1:checked ~ .content1, div#tabs #tab-2:checked ~ .content2, div#tabs #tab-3:checked ~ .content3, div#tabs #tab-4:checked ~ .content4, div#tabs #tab-5:checked ~ .content5{display:block;}div#tabs #tab-1:checked ~ .content1 .tabcontent, div#tabs #tab-2:checked ~ .content2 .tabcontent, div#tabs #tab-3:checked ~ .content3 .tabcontent, div#tabs #tab-4:checked ~ .content4 .tabcontent, div#tabs #tab-5:checked ~ .content5 .tabcontent, div#tabs #tab-1:checked ~ .content1 h4, div#tabs #tab-2:checked ~ .content2 h4, div#tabs #tab-3:checked ~ .content3 h4, div#tabs #tab-4:checked ~ .content4 h4, div#tabs #tab-5:checked ~ .content5 h4{animation-name:tabIn;animation-duration:1.2s;}div#tabs .content{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;animation-duration:0.5s;clear:both;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-bottom-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);display:none;}div#tabs .content h4.tabtitle{display:none;}div#tabs .content .tabcontent{white-space-collapse:collapse;text-wrap-mode:wrap;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:1.4em;line-height:1.6;display:block;font-family:Roboto, sans-serif;color:rgb(51, 51, 51);}div#tabs .content .tabcontent a{color:rgb(51, 51, 51);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}div#tabs label li a{display:block;pointer-events:none;}#more_items{font-size:24px;font-weight:bold;color:rgb(51, 51, 51);width:100%;height:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background-image:none;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;position:relative;text-align:center;text-indent:0px;margin-top:40px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#more_items::after{content:none !important;display:none !important;}#more_items_content{border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;padding-top:20px !important;padding-right:0px !important;padding-bottom:20px !important;padding-left:0px !important;}#promobox a.litcpromoitem{height:auto;}#promobox a.litcpromoitem .litcpromocontainer{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);padding-top:3px;padding-right:3px;padding-bottom:3px;padding-left:3px;}#promobox a.litcpromoitem .litcpromocontainer .litcpromoimg{height:140px;}#promobox a.litcpromoitem .litcpromocontainer .litcpromoimg img.pimg{max-width:140px;max-height:140px;}#promobox a.litcpromoitem .litcpromocontainer .litcpromotitle{color:rgb(51, 51, 51);height:85px;padding-top:5px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:14px;line-height:21px;overflow-x:hidden;overflow-y:hidden;}#promobox a.litcpromoitem .litcpromocontainer .litcpromoprice{color:rgb(51, 51, 51);font-size:18px;font-weight:700;}.litcpromoitem .litcpromocontainer:hover .litcpromotitle{text-decoration-line:none !important;text-decoration-thickness:initial !important;text-decoration-style:initial !important;text-decoration-color:initial !important;}.bottom a.litcpromoitem, .center-col a.litcpromoitem{display:none;background-position-x:center;background-position-y:center;float:left;width:23%;margin-top:1%;margin-right:1%;margin-bottom:1%;margin-left:1%;height:200px;}.bottom #more_items_content, .center-col #more_items_content{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.catboxboxtitle{font-size:30px;font-weight:300;color:rgb(51, 51, 51);text-align:center;padding-top:15px;padding-right:0px;padding-bottom:15px;padding-left:0px;border-bottom-width:4px;border-bottom-style:solid;border-bottom-color:rgb(178, 54, 51);}.categoryboxes{padding-top:20px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;list-style-position:initial;list-style-image:initial;list-style-type:none;width:100%;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(249, 249, 249);}.categoryboxes li{float:left;width:326px;height:254px;vertical-align:top;margin-right:10px;margin-bottom:10px;position:relative;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;}.categoryboxes li a .boxlink{margin-bottom:0px;color:rgb(255, 255, 255);width:306px;height:59px;line-height:19px;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;font-family:Roboto, sans-serif;font-size:22px;font-weight:700;text-transform:uppercase;text-align:center;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;bottom:10px;left:10px;position:absolute;}.categoryboxes li:nth-child(3n){margin-right:0px;}.categoryboxes li img{width:100%;height:200px;object-fit:cover;display:block;}.authenticated{font-size:10px;font-weight:normal;}.fade{display:inline-block;vertical-align:middle;transform:translateZ(0px);box-shadow:rgba(0, 0, 0, 0) 0px 0px 1px;overflow-x:hidden;overflow-y:hidden;transition-duration:0.3s;transition-property:color, background-color;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(178, 54, 51);}.fade:hover{background-color:rgb(0, 0, 0);color:white;}.fade:focus{background-color:rgb(0, 0, 0);color:white;}.fade:active, .categoryboxes li:hover .fade, .categoryboxes li:focus .fade, .categoryboxes li:active .fade{background-color:rgb(0, 0, 0);color:white;}div#footer.footer{background-image:linear-gradient(rgb(26, 26, 46) 0%, rgb(15, 52, 96) 100%);background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;color:rgb(170, 170, 170);font-size:1.4em;position:relative;height:308px !important;}div#footer.footer ul{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;width:100%;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;font-family:Roboto, sans-serif;font-weight:400;list-style-position:initial;list-style-image:initial;list-style-type:none;position:absolute;text-align:center;text-transform:none;top:22px;}div#footer.footer ul li{display:inline-block;margin-top:0px;margin-right:25px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:25px;padding-bottom:0px;padding-left:0px;border-right-width:1px;border-right-style:solid;border-right-color:rgb(178, 54, 51);}div#footer.footer ul li:last-child{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;}div#footer.footer ul li a{color:rgb(170, 170, 170);}div#footer.footer ul li a .fa{padding-right:5px;color:rgb(178, 54, 51);}div#footer.footer ul li a:hover{color:rgb(233, 69, 96);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.footer-wrapper{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(26, 26, 46);}.creditlink-wrapper .creditlink{padding-bottom:3px;text-align:right;font-family:Arial;font-weight:normal;font-size:11px;}.creditlink-wrapper .creditlink, .creditlink-wrapper .creditlink a strong, .creditlink-wrapper .creditlink a{color:rgb(51, 51, 51);font-weight:normal;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.creditlink-wrapper .creditlink b, .creditlink-wrapper .creditlink a strong b, .creditlink-wrapper .creditlink a b{color:rgb(178, 54, 51);font-weight:bold;}.creditlink-wrapper .creditlink, .creditlink-wrapper .creditlink div#design{display:block;}div#design{display:block;}#backup{display:none;}#ns_copyright{display:none;}#seo{display:none;}.creditlink a, .creditlink a:link, .creditlink a:visited{color:rgb(51, 51, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-family:Arial, Helvetica, sans-serif;}.creditlink a strong{color:rgb(178, 54, 51);}.creditlink a:hover{color:rgb(178, 54, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}#background #design{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);width:100%;text-align:center;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;}#background #design div{width:389px;height:63px;margin-top:auto;margin-right:auto;margin-bottom:auto;margin-left:auto;overflow-x:hidden;overflow-y:hidden;text-indent:-400px;font-size:0px;background-size:100% auto;background-image:url("https://global.litcmerce.com/freedom/ebay_global/img/global_logo_2x.png");}.creditlink{font-size:11px;text-align:right;width:1000px;margin-top:auto;margin-right:auto;margin-left:auto;margin-bottom:5px !important;}.catbox_wrapper{width:100%;height:auto;background-color:rgb(229, 229, 229);background-repeat:no-repeat;padding-top:10px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.placeholder-img{background-image:linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;display:block;width:100%;height:100%;}.catbox-placeholder{background-image:linear-gradient(135deg, rgb(178, 54, 51) 0%, rgb(130, 32, 29) 100%);background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;width:100%;height:200px;display:flex;align-items:center;justify-content:center;color:white;font-size:11px;text-align:center;font-weight:700;font-family:Roboto, sans-serif;}.promo-placeholder{background-image:linear-gradient(135deg, rgb(229, 229, 229) 0%, rgb(204, 204, 204) 100%);background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;width:100%;height:126px;}#gallery_outer_3 .mainimage img, #gallery_outer_1 .mainimage img{display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}#promobox a.litcpromoitem{text-align:center;}#promobox a.litcpromoitem img{max-width:150px;max-height:200px;}.boxlinks a.catlink{width:100%;}.boxlinks a.sublink{padding-left:12px;width:100%;}.boxlinks a.thirdlvl{font-style:italic;padding-left:15px;width:100%;}.header-wrapper{display:none;}.subheader-wrapper{display:none;}.left-col{display:none;}.right-col{display:none;}.creditlink{display:none;}.footer-wrapper{display:none;}.boxcontent{display:none;}#ns_copyright{display:none;}.topbar{display:none;}#showcase{display:none;}#tabs{display:none;}#tab1{display:none;}#tab2{display:none;}#tab3{display:none;}#tab4{display:none;}#tab5{display:none;}#descriptiontitle{display:none;}#design{display:none;}#seo{display:none;}#descriptioncontent{font-family:sans-serif;}#backup{font-family:sans-serif;}#backup{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;max-width:80%;margin-top:auto;margin-right:auto;margin-bottom:auto;margin-left:auto;text-align:center;font-size:13px;}.litc-container .header-wrapper, .litc-container .subheader-wrapper, .litc-container .footer-wrapper, .litc-container #showcase, .litc-container #tabs, .litc-container #descriptiontitle, .litc-container .creditlink{display:block;}.header-wrapper .store-logo.logo-wrap{display:flex;align-items:center;justify-content:center;height:auto;min-height:60px;width:220px;max-width:100%;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;position:relative;z-index:2;color:rgb(255, 255, 255);font-family:Montserrat, sans-serif;font-size:22px;font-weight:700;cursor:pointer;}.header-wrapper .store-logo.logo-wrap img, .header-wrapper .store-logo.logo-wrap .logo-img{max-height:60px;max-width:220px;width:auto;height:auto;object-fit:contain;display:block;}.header-wrapper .store-logo.logo-wrap > a{display:flex;align-items:center;justify-content:center;width:100%;height:100%;}.item-details .product-title, .item-details .product-title .litc-view-only, .item-details .product-title div{width:100%;color:rgb(0, 0, 0);font-family:Montserrat, sans-serif;font-size:28px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;line-height:1.3;font-weight:400;}.item-details .product-title{margin-top:30px;margin-right:0px;margin-bottom:30px;margin-left:0px;}.item-details .product-title .litc-view-only{display:block;}.lit-carousel input[type="radio"]{display:none;}.lit-carousel-slide{display:none;width:100%;height:100%;align-items:center;justify-content:center;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);position:absolute;top:0px;left:0px;}.lit-carousel-slide img{width:100%;height:100%;object-fit:contain;padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;box-sizing:border-box;display:block;}.lit-carousel-thumb{display:flex;flex-shrink:0;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(221, 221, 221);border-right-color:rgb(221, 221, 221);border-bottom-color:rgb(221, 221, 221);border-left-color:rgb(221, 221, 221);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;cursor:pointer;overflow-x:hidden;overflow-y:hidden;align-items:center;justify-content:center;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(238, 238, 238);transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:border-color;box-sizing:border-box;}.lit-carousel-thumb:hover{border-top-color:rgb(153, 153, 153);border-right-color:rgb(153, 153, 153);border-bottom-color:rgb(153, 153, 153);border-left-color:rgb(153, 153, 153);}.lit-carousel-thumb img{width:100%;height:100%;object-fit:contain;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;box-sizing:border-box;display:block;}.lit-carousel-thumbs::-webkit-scrollbar{display:none;}.lit-carousel-thumbs{scrollbar-width:none;}.lit-product-carousel-nav{display:block;width:100%;max-width:800px;box-sizing:border-box;min-width:0px;}.lit-carousel--nav{display:flex;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(221, 221, 221);border-right-color:rgb(221, 221, 221);border-bottom-color:rgb(221, 221, 221);border-left-color:rgb(221, 221, 221);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;width:100%;box-sizing:border-box;min-width:0px;}.lit-product-carousel-nav:not(:has(.lit-carousel--nav-left)):not(:has(.lit-carousel--nav-right)) .lit-carousel-thumbstrip .lit-carousel-thumbs{max-width:100%;overflow-x:hidden;overflow-y:hidden;}.lit-carousel--nav .lit-carousel-thumbstrip{position:relative;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(250, 250, 250);overflow-x:hidden;overflow-y:hidden;}.lit-carousel--nav .lit-carousel-thumbs{display:flex;row-gap:6px;column-gap:6px;flex-shrink:0;flex-wrap:nowrap;transition-behavior:normal;transition-duration:0.3s;transition-timing-function:ease;transition-delay:0s;transition-property:transform;}.lit-carousel--nav .lit-carousel-thumb{width:72px;height:58px;flex-shrink:0;}.lit-carousel--nav .lit-carousel-main-wrap{position:relative;}.lit-carousel--nav .lit-carousel-main{width:100%;aspect-ratio:1 / 1;flex-shrink:0;overflow-x:hidden;overflow-y:hidden;position:relative;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);}.lit-carousel--nav .lit-nav{display:none;position:absolute;top:0px;right:0px;bottom:0px;left:0px;align-items:center;justify-content:space-between;pointer-events:none;z-index:5;}.lit-carousel--nav .lit-carousel-main-wrap .lit-nav{padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;}.lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn{width:34px;height:34px;border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(255, 255, 255, 0.82);color:rgb(34, 34, 34);font-size:13px;border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;box-shadow:rgba(0, 0, 0, 0.18) 0px 2px 8px;backdrop-filter:blur(4px);flex-shrink:0;}.lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);box-shadow:rgba(0, 0, 0, 0.26) 0px 3px 12px;}.lit-nav-btn{pointer-events:all;display:flex;align-items:center;justify-content:center;width:28px;height:28px;flex-shrink:0;border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(224, 224, 224);border-right-color:rgb(224, 224, 224);border-bottom-color:rgb(224, 224, 224);border-left-color:rgb(224, 224, 224);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;box-shadow:rgba(0, 0, 0, 0.13) 0px 1px 5px;cursor:pointer;font-size:11px;color:rgb(51, 51, 51);user-select:none;transition-behavior:normal, normal;transition-duration:0.15s, 0.15s;transition-timing-function:ease, ease;transition-delay:0s, 0s;transition-property:background, box-shadow;box-sizing:border-box;z-index:5;}.lit-nav-btn:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);box-shadow:rgba(0, 0, 0, 0.2) 0px 2px 8px;}.lit-carousel--nav-top{flex-direction:column;}.lit-carousel--nav-top .lit-carousel-thumbstrip{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);display:flex;justify-content:center;align-items:center;width:100%;min-width:0px;max-width:100%;box-sizing:border-box;}.lit-carousel--nav-top .lit-carousel-thumbs{flex-direction:row;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;transform:translateX(0px);}.lit-carousel--nav-top .lit-carousel-main-wrap{width:100%;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav{padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;}.lit-carousel--nav-bottom{flex-direction:column-reverse;}.lit-carousel--nav-bottom .lit-carousel-thumbstrip{border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);display:flex;justify-content:center;align-items:center;width:100%;min-width:0px;max-width:100%;box-sizing:border-box;}.lit-carousel--nav-bottom .lit-carousel-thumbs{flex-direction:row;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;transform:translateX(0px);}.lit-carousel--nav-bottom .lit-carousel-main-wrap{width:100%;}.lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav{padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;}.lit-carousel--nav-left{flex-direction:row;align-items:center;}.lit-carousel--nav-left .lit-carousel-thumbstrip{border-right-width:1px;border-right-style:solid;border-right-color:rgb(221, 221, 221);width:90px;flex-shrink:0;display:flex;flex-direction:column;justify-content:center;align-items:center;align-self:stretch;}.lit-carousel--nav-left .lit-carousel-thumbs{flex-direction:column;padding-top:44px;padding-right:8px;padding-bottom:44px;padding-left:8px;transform:translateY(0px);}.lit-carousel--nav-left .lit-carousel-main-wrap{flex-grow:1;flex-shrink:1;flex-basis:0%;width:auto;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav{flex-direction:column;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:0px;}.lit-carousel--nav-right{flex-direction:row-reverse;align-items:center;}.lit-carousel--nav-right .lit-carousel-thumbstrip{border-left-width:1px;border-left-style:solid;border-left-color:rgb(221, 221, 221);width:90px;flex-shrink:0;display:flex;flex-direction:column;justify-content:center;align-items:center;align-self:stretch;}.lit-carousel--nav-right .lit-carousel-thumbs{flex-direction:column;padding-top:44px;padding-right:8px;padding-bottom:44px;padding-left:8px;transform:translateY(0px);}.lit-carousel--nav-right .lit-carousel-main-wrap{flex-grow:1;flex-shrink:1;flex-basis:0%;width:auto;}.lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav{flex-direction:column;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:0px;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after{content:"";position:absolute;top:0px;bottom:0px;width:52px;pointer-events:none;z-index:4;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before{left:0px;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after{right:0px;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after{content:"";position:absolute;left:0px;right:0px;height:52px;pointer-events:none;z-index:4;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before{top:0px;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after{bottom:0px;}.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(1){display:flex;}.lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(2){display:flex;}.lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(3){display:flex;}.lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(4){display:flex;}.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(5){display:flex;}.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(6){display:flex;}.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-thumb:nth-of-type(1){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-thumb:nth-of-type(2){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-thumb:nth-of-type(3){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-thumb:nth-of-type(4){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-thumb:nth-of-type(5){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-thumb:nth-of-type(6){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-nav--1{display:flex;}.lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-nav--2{display:flex;}.lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-nav--3{display:flex;}.lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-nav--4{display:flex;}.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-nav--5{display:flex;}.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-nav--6{display:flex;}.lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav-btn, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav-btn{transform:rotate(90deg);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-78px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-64px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-collage-grid{display:grid;row-gap:8px;column-gap:8px;width:100%;box-sizing:border-box;grid-template-columns:repeat(3, 1fr);grid-auto-flow:dense;}.lit-collage-img{width:100%;height:100%;aspect-ratio:1 / 1;object-fit:cover;display:block;}.lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}.lit-collage-grid.lit-collage--spotlight > :first-child{grid-column-start:span 2;grid-column-end:auto;grid-row-start:span 2;grid-row-end:auto;}.lit-collage-grid.lit-collage--featured-top > :first-child{grid-column-start:1;grid-column-end:-1;aspect-ratio:16 / 7;}.alt_image_gallery .lit-product-carousel-nav{max-width:100%;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.alt_image_gallery .lit-carousel--nav .lit-carousel-main{aspect-ratio:unset;height:484px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}.alt_image_gallery .lit-carousel-slide{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}.info-tabs.tab-frame{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;display:block;}.tab-frame > input[type="radio"]{display:none;}.tab-headers{overflow-x:hidden;overflow-y:hidden;}.tab-headers::after{content:"";display:block;clear:both;}.tab-headers label{font-size:16px;font-family:Roboto, sans-serif;float:left;cursor:pointer;width:20%;text-align:center;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);padding-top:13px;padding-right:0px;padding-bottom:13px;padding-left:0px;margin-right:0px;transition-behavior:normal;transition-duration:0.5s;transition-timing-function:ease;transition-delay:0s;transition-property:all;font-weight:700;border-top-width:1px;border-right-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;color:rgb(51, 51, 51);user-select:none;box-sizing:border-box;}.tab-headers label:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}#ctab1:checked ~ .tab-headers label[for="ctab1"], #ctab2:checked ~ .tab-headers label[for="ctab2"], #ctab3:checked ~ .tab-headers label[for="ctab3"], #ctab4:checked ~ .tab-headers label[for="ctab4"], #ctab5:checked ~ .tab-headers label[for="ctab5"]{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}.tab-contents{clear:both;}.info-tabs.tab-frame > .tab-contents .tab-content{display:none;animation-duration:0.5s;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-bottom-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);font-family:Roboto, sans-serif;font-size:1.4em;line-height:1.6;color:rgb(51, 51, 51);}.tab-content .tabcontent{white-space-collapse:collapse;text-wrap-mode:wrap;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-family:Roboto, sans-serif;color:rgb(51, 51, 51);}.tab-content .tabcontent a{color:rgb(51, 51, 51);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}#ctab1:checked ~ .tab-contents .tab-content:nth-child(1), #ctab2:checked ~ .tab-contents .tab-content:nth-child(2), #ctab3:checked ~ .tab-contents .tab-content:nth-child(3), #ctab4:checked ~ .tab-contents .tab-content:nth-child(4), #ctab5:checked ~ .tab-contents .tab-content:nth-child(5){display:block;}#promobox.cross-sell.promo-grid{grid-template-columns:repeat(4, 1fr);row-gap:1%;column-gap:1%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:grid !important;}.cross-sell .promo-card{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);padding-top:3px;padding-right:3px;padding-bottom:3px;padding-left:3px;box-sizing:border-box;text-align:center;display:flex;flex-direction:column;width:auto;height:auto;}.cross-sell .promo-img{height:126px;display:flex;align-items:center;justify-content:center;}.cross-sell .promo-img img{max-width:134px;max-height:126px;width:auto;height:auto;object-fit:contain;}.cross-sell .promo-desc{color:rgb(0, 0, 0);height:54px;padding-top:5px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:11px;line-height:12px;overflow-x:hidden;overflow-y:hidden;text-align:left;}.cross-sell .promo-price{color:rgb(0, 0, 0);font-size:18px;font-weight:700;margin-top:auto;text-align:left;}div#footer.footer{padding-top:30px;padding-right:0px;padding-bottom:30px;padding-left:0px;height:auto !important;}div#footer.footer ul.footerlinks{position:static;top:auto;margin-top:0px;margin-right:0px;margin-bottom:18px;margin-left:0px;}.footer .footer-logo{position:static;top:auto;left:auto;display:flex;align-items:center;justify-content:center;width:220px;height:60px;margin-top:0px;margin-right:auto;margin-bottom:18px;margin-left:auto;z-index:1;}.footer .footer-logo .logo-img{max-width:220px;max-height:60px;width:auto;height:auto;object-fit:contain;display:block;}.footer .footer-payments{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;row-gap:14px;column-gap:14px;}.footer .footer-payments .footer-pay-img{height:30px;width:auto;object-fit:contain;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;padding-top:3px;padding-right:5px;padding-bottom:3px;padding-left:5px;box-sizing:border-box;}.header-wrapper{display:none;}.subheader-wrapper{display:none;}.left-col{display:none;}.right-col{display:none;}.creditlink{display:none;}.footer-wrapper{display:none;}.boxcontent{display:none;}#ns_copyright{display:none;}.topbar{display:none;}#showcase{display:none;}#tabs{display:none;}#tab1{display:none;}#tab2{display:none;}#tab3{display:none;}#tab4{display:none;}#tab5{display:none;}#descriptiontitle{display:none;}#design{display:none;}#seo{display:none;}#descriptioncontent{font-family:sans-serif;}#backup{font-family:sans-serif;}#backup{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;max-width:80%;margin-top:auto;margin-right:auto;margin-bottom:auto;margin-left:auto;text-align:center;font-size:13px;}.center-col a.litcpromoitem{display:none;float:left;width:23%;margin-top:1%;margin-right:1%;margin-bottom:1%;margin-left:1%;height:auto;}#more_items_content a.litcpromoitem{display:inline-block;}.litcpromoitem .litcpromocontainer{background-color:rgb(255, 255, 255);width:100%;padding-top:3px;padding-right:3px;padding-bottom:3px;padding-left:3px;text-align:center;}.litcpromoitem .litcpromoimg{height:126px;}#promobox a.litcpromoitem img.pimg{max-width:134px;max-height:126px;position:relative;top:50%;transform:translateY(-50%);}.litcpromoitem .litcpromotitle{color:rgb(0, 0, 0);height:54px;padding-top:5px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:11px;line-height:12px;overflow-x:hidden;overflow-y:hidden;}.litcpromoitem .litcpromoprice{color:rgb(0, 0, 0);font-size:18px;font-weight:700;}.litcpromoitem .litcpromocontainer:hover .litcpromotitle{text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.bc-row{display:flex;flex-wrap:wrap;width:100%;box-sizing:border-box;row-gap:16px;column-gap:16px;}.bc-col{flex-grow:1;flex-shrink:1;flex-basis:0%;min-width:0px;box-sizing:border-box;}.bc-btn{display:inline-block;padding-top:10px;padding-right:24px;padding-bottom:10px;padding-left:24px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(37, 99, 235);color:rgb(255, 255, 255);border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;font-size:14px;font-weight:600;cursor:pointer;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;line-height:1.4;}.bc-btn:hover{opacity:0.88;}.bc-link{color:rgb(37, 99, 235);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.bc-input{width:100%;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(209, 213, 219);border-right-color:rgb(209, 213, 219);border-bottom-color:rgb(209, 213, 219);border-left-color:rgb(209, 213, 219);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;font-size:14px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);color:rgb(17, 17, 17);box-sizing:border-box;}.bc-select{width:100%;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(209, 213, 219);border-right-color:rgb(209, 213, 219);border-bottom-color:rgb(209, 213, 219);border-left-color:rgb(209, 213, 219);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;font-size:14px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);color:rgb(17, 17, 17);box-sizing:border-box;}.bc-textarea{resize:vertical;min-height:80px;}.bc-label{display:block;font-size:13px;font-weight:500;color:rgb(55, 65, 81);margin-bottom:4px;}.bc-form{display:flex;flex-direction:column;row-gap:12px;column-gap:12px;}.bc-container{width:1140px;max-width:100%;margin-left:auto;margin-right:auto;padding-left:16px;padding-right:16px;box-sizing:border-box;}.lit-promo-card{text-align:center;font-family:inherit;box-sizing:border-box;cursor:pointer;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;color:inherit;}.lit-promo-card *{pointer-events:none;}.promo-grid{display:grid;grid-template-columns:repeat(4, 1fr);row-gap:14px;column-gap:14px;}.promo-card{text-align:center;display:flex;flex-direction:column;}.promo-img{width:100%;aspect-ratio:1 / 1;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(244, 244, 240);margin-bottom:8px;display:flex;align-items:center;justify-content:center;overflow-x:hidden;overflow-y:hidden;}.promo-img img{width:100%;height:100%;object-fit:cover;display:block;}.promo-desc{font-size:13px;color:rgb(136, 136, 136);line-height:1.6;margin-bottom:5px;font-weight:300;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow-x:hidden;overflow-y:hidden;word-break:break-word;}.promo-price{font-size:20px;font-weight:700;color:rgb(51, 51, 51);margin-top:auto;}.litc-export-only{display:none;}#i94r23{width:100%;height:100%;object-fit:contain;display:block;}#i24a4l{display:block;width:100%;height:100%;}#iks0hk{width:100%;height:100%;object-fit:contain;display:block;}#ik43l2{display:block;width:100%;height:100%;}#irzoj{display:block;}#ibrzfj{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#icxejl{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ivu1r4{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iupz4a{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#irxbkj{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#izxmoz{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iyigwi{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iv151l{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ie65oj{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#isf9ag{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i3htjb{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#il26tc{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iq4m8u{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i2hdse{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ix1pyk{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iwj5w8{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#isif04{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ib1zys{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iamhqh{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i15bp5{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#imjqvj{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ijqit6{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i2009o{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ikbxyi{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iyn2a7{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#izznp1{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#in9iya{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i61k03{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iygok6{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ipfgrh{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iaxmac{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ib0o1o{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iygwwf{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#if1xk4{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i1vkrn{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iz94q2{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iq06mr{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i0tuy5{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ipw39y{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i441qh{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iys08c{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i0ryrg{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i7trpl{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iv38pc{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iyvcj4{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iezwc2{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#izzx47{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iatdgl{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ie4okf{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i3rtnb{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ibd0s8{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#io96vj{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#imwejg{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i4y421{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iiaiyf{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ih7bij{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iyb05i{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ivut4h{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ioaqwk{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ivfwbh{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iomqsc{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i4r839{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ial0mb{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i0odwp{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i0dloi{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i2zlwy{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ig7zzf{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ij75a8{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iojb7v{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i1vd5r{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i8vwzh{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#igkqdi{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i7yz02{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i7yjtu{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i1qeue{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#isnflg{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#idmd7c{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#izwuz3{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i2qucc{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#ik6f0i{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iw54rl{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#idy4kg{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i2oyvg{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#iiv6s8{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#isz2wb{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#i4204b{color:rgb(0, 0, 0);font-family:"Market Sans", Arial, sans-serif;font-size:medium;}#imv6c3{maxWidth:200px;display:block;object-fit:cover;}#isunch{maxWidth:200px;display:block;object-fit:cover;}#i2vgl5{maxWidth:200px;display:block;object-fit:cover;}#i5hvil{maxWidth:200px;display:block;object-fit:cover;}#ic2cib{maxWidth:200px;display:block;object-fit:cover;}#ibtgea{maxWidth:200px;display:block;object-fit:cover;}#iyjil4{maxWidth:200px;display:block;object-fit:cover;}#iqtfts{maxWidth:200px;display:block;object-fit:cover;}#ipchk4{maxWidth:200px;display:block;object-fit:cover;}#ipyin1{maxWidth:200px;display:block;object-fit:cover;}#ia8p4r{maxWidth:200px;display:block;object-fit:cover;}#ii4ewj{maxWidth:200px;display:block;object-fit:cover;}#iyh5t4{maxWidth:200px;display:block;object-fit:cover;}#i6zvg7{maxWidth:200px;display:block;object-fit:cover;}#i1fa4v{maxWidth:200px;display:block;object-fit:cover;}@keyframes lightbox{0%{opacity:0;transform:scale(0);}100%{opacity:1;transform:scale(1);}}@keyframes lightboxout{0%{transform:scale(1.5);}100%{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(0, 0, 0, 0);transform:scale(1);}}@keyframes tabIn{0%{opacity:0;}100%{opacity:1;}}@keyframes tabOut{0%{opacity:1;}100%{opacity:0;}}@media (min-width: 1025px){#ijfnn9{grid-template-columns:repeat(5, 1fr);display:grid;}}@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}#promobox.cross-sell.promo-grid{grid-template-columns:repeat(2, 1fr);}}@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-78px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-64px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}}@media (min-width: 992px){.lit-hide-desktop{display:none !important;}}@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid > :first-child{grid-column-start:auto;grid-column-end:auto;grid-row-start:auto;grid-row-end:auto;aspect-ratio:1 / 1;}#promobox.cross-sell.promo-grid{grid-template-columns:1fr;}#background{overflow-x:hidden;}#container{overflow-x:hidden;}.litc-container{overflow-x:hidden;}.header-wrapper ul.headerlinks{display:none !important;}.subheader-wrapper{display:none !important;}.catbox_wrapper{display:none !important;}#footer.footer ul.footerlinks{display:none !important;}#footer.footer .footer-payments{display:none !important;}#cols.cols.row{display:block;}div#centerpane.center-col{width:100%;padding-top:0px;padding-right:15px;padding-bottom:0px;padding-left:15px;box-sizing:border-box;}div.row{width:100%;box-sizing:border-box;}.alt_image_gallery{float:none;width:100%;padding-top:15px;padding-right:0px;padding-bottom:15px;padding-left:0px;}.item-details{float:none;width:100%;padding-top:15px;padding-right:0px;padding-bottom:15px;padding-left:0px;}#showcase .mobile_only{display:block;}#showcase .mobile_only .mobile-product-title{font-size:24px;line-height:1.3;margin-top:10px;margin-right:0px;margin-bottom:10px;margin-left:0px;color:rgb(0, 0, 0);font-family:Montserrat, sans-serif;}#showcase .mobile_only .mobile-product-title .litc-view-only{display:block;font-size:24px;}.item-details .product-title{display:none;}.tab-headers{display:flex;flex-wrap:wrap;}.tab-headers label{float:none;flex-grow:1;flex-shrink:1;flex-basis:30%;width:auto;margin-right:0px;font-size:13px;padding-top:12px;padding-right:4px;padding-bottom:12px;padding-left:4px;}.info-tabs.tab-frame > .tab-contents .tab-content{padding-top:20px;padding-right:15px;padding-bottom:20px;padding-left:15px;}#ijfnn9{grid-template-columns:repeat(2, 1fr);display:grid;}}@media (min-width: 768px) and (max-width: 991px){.lit-hide-tablet{display:none !important;}}@media (min-width: 769px) and (max-width: 1024px){#ijfnn9{grid-template-columns:repeat(2, 1fr);display:grid;}}@media (max-width: 767px){.lit-hide-mobile{display:none !important;}}@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-78px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-64px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}}
.powered-by { display: block; width: fit-content; margin: 12px auto 0; font-size: 9px; color: #aaa; font-weight: 400; letter-spacing: 0.02em; padding-right: 125px; background: url('https://litcommerce.com/wp-content/uploads/2025/10/LitC-Logo_240x55.svg') no-repeat right center; background-size: 120px auto; line-height: 27px; }