
    /* ── 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;}.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{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;}.lit-carousel-thumb{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(207, 207, 207);border-right-color:rgb(207, 207, 207);border-bottom-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat: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:rgb(255, 255, 255);transition-behavior:normal;transition-duration:0.2s;transition-timing-function:ease;transition-delay:0s;transition-property:border-color;}.lit-carousel-thumb:hover{border-top-color:rgb(157, 16, 51);border-right-color:rgb(157, 16, 51);border-bottom-color:rgb(157, 16, 51);border-left-color:rgb(157, 16, 51);}.lit-carousel-thumb img{object-fit:contain;}.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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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(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(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-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-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="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);}.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);}.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-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;}*{box-sizing:border-box;}body{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}*, ::before, ::after{box-sizing:border-box;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}a{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;color:inherit;}img{max-width:100%;display:block;}.util-bar{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(236, 236, 236);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(213, 213, 213);display:flex;justify-content:center;row-gap:28px;column-gap:28px;padding-top:8px;padding-right:20px;padding-bottom:8px;padding-left:20px;}.util-bar a{font-size:11px;font-weight:600;color:rgb(85, 85, 85);letter-spacing:0.04em;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:color;}.util-bar a:hover{color:rgb(42, 42, 42);}.logo-mark{margin-bottom:8px;}.store-logo{width:332px;height:145px;}.logo-wrap, [data-gjs-type="lit-store-logo"]{display:inline-flex;align-items:center;justify-content:center;position:relative;width:200px;height:90px;overflow-x:hidden;overflow-y:hidden;z-index:999;cursor:pointer;font-size:16px;font-weight:600;color:rgb(255, 255, 255);text-align:center;line-height:1.2;}.store-logo > img, .logo-wrap > img, [data-gjs-type="lit-store-logo"] > img, .store-logo .logo-img{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}.logo-name{font-size:18px;font-weight:700;letter-spacing:0.18em;color:rgb(255, 255, 255);text-transform:uppercase;}.main-nav{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(90, 90, 90);display:flex;justify-content:center;row-gap:0px;column-gap:0px;}.main-nav a{display:block;padding-top:12px;padding-right:18px;padding-bottom:12px;padding-left:18px;font-size:11px;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;color:rgba(255, 255, 255, 0.7);border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;margin-bottom:-2px;transition-behavior:normal, normal;transition-duration:0.15s, 0.15s;transition-timing-function:ease, ease;transition-delay:0s, 0s;transition-property:color, border-color;}.main-nav a:hover{color:rgb(255, 255, 255);}.main-nav a.active{color:rgb(255, 255, 255);border-bottom-color:rgb(255, 255, 255);}.hero{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(42, 42, 42);min-height:300px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding-top:52px;padding-right:36px;padding-bottom:52px;padding-left:36px;}.hero .logo-name{margin-bottom:12px;}.hero .store-desc{font-size:13px;line-height:1.7;color:rgba(255, 255, 255, 0.78);font-weight:400;max-width:560px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}.perks-bar{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:flex;justify-content:center;row-gap:0px;column-gap:0px;}.perk{display:flex;align-items:center;row-gap:10px;column-gap:10px;padding-top:14px;padding-right:26px;padding-bottom:14px;padding-left:26px;flex-grow:1;flex-shrink:1;flex-basis:0%;max-width:240px;}.perk-icon{width:32px;height:32px;flex-shrink:0;display:flex;align-items:center;justify-content:center;cursor:pointer;}.perk-icon :is(img, svg){width:32px;height:32px;display:block;}.perk-text .title{font-size:12px;font-weight:700;color:rgb(42, 42, 42);letter-spacing:0.03em;line-height:1.2;}.perk-text .sub{font-size:10.5px;color:rgb(102, 102, 102);font-weight:400;margin-top:2px;}.product-section{max-width:900px;margin-top:24px;margin-right:auto;margin-bottom:24px;margin-left:auto;display:flex;row-gap:0px;column-gap:0px;align-items:flex-start;}.product-img-col{flex-grow:1;flex-shrink:1;flex-basis:0px;min-width:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.product-section > .bc-rl-col{min-height:0px;}.bc-rl-handle{flex-grow:0;flex-shrink:0;flex-basis:0px;align-self:stretch;position:relative;}.bc-rl-handle::before{content:"";position:absolute;top:0px;bottom:0px;left:-8px;width:16px;cursor:col-resize;}.bc-rl-handle::after{content:"";position:absolute;top:10%;left:50%;transform:translateX(-50%);width:2px;height:80%;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:transparent;pointer-events:none;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:background;}.bc-rl-handle.rl-resizing::after, .bc-rl-handle:hover::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:rgba(42, 42, 42, 0.5);}.lit-carousel-main{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);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(207, 207, 207);border-right-color:rgb(207, 207, 207);border-bottom-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}.product-info-col{flex-grow:1;flex-shrink:1;flex-basis:0px;min-width:0px;padding-top:12px;padding-right:12px;padding-bottom:12px;padding-left:12px;}.product-info-col h2{font-size:18px;font-weight:700;color:rgb(42, 42, 42);line-height:1.4;margin-bottom:16px;letter-spacing:-0.01em;}.product-price{font-size:22px;font-weight:700;color:rgb(42, 42, 42);margin-bottom:20px;}.item-desc-title{font-size:12px;font-weight:700;color:rgb(42, 42, 42);margin-bottom:12px;padding-bottom:8px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);text-transform:uppercase;letter-spacing:0.06em;}.item-desc-body p{font-size:13px;line-height:1.75;color:rgb(85, 85, 85);font-weight:400;margin-bottom:10px;}.tabs-wrap{max-width:900px;margin-top:0px;margin-right:auto;margin-bottom:36px;margin-left:auto;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:20px;}.tab-frame > input[type="radio"]{display:none;}.tab-headers{display:block;overflow-x:hidden;overflow-y:hidden;}.tab-headers label{font-size:18px;font-family:Arial, sans-serif;display:block;float:left;cursor:pointer;width:19.8%;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(235, 235, 235);padding-top:15px;padding-right:0px;padding-bottom:15px;padding-left:0px;margin-right:1px;transition-behavior:normal;transition-duration:0.5s;transition-timing-function:ease;transition-delay:0s;transition-property:all;font-weight:700;height:53px;box-sizing:border-box;position:relative;top:1px;border-right-width:1px;border-left-width:1px;border-right-style:solid;border-left-style:solid;border-right-color:rgb(235, 235, 235);border-left-color:rgb(235, 235, 235);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;border-top-width:3px;border-top-style:solid;border-top-color:rgb(235, 235, 235);color:rgb(85, 85, 85);}.tab-headers label:last-child{border-right-width:medium;border-right-style:none;border-right-color:currentcolor;}.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);height:55px;border-right-width:1px;border-left-width:1px;border-right-style:solid;border-left-style:solid;border-right-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;border-top-width:3px;border-top-style:solid;border-top-color:rgb(157, 16, 51);color:rgb(51, 51, 51);}.tab-contents{clear:both;}.tab-content{display:none;clear:both;padding-top:30px;padding-right:20px;padding-bottom:30px;padding-left:20px;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(207, 207, 207);border-right-color:rgb(207, 207, 207);border-bottom-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat: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:rgb(255, 255, 255);font-size:1.4em;line-height:1.3;font-family:Arial, sans-serif;color:rgb(51, 51, 51);white-space-collapse:collapse;text-wrap-mode:wrap;}.tab-frame > input#itab1:checked ~ .tab-headers label[for="itab1"], .tab-frame > input#itab2:checked ~ .tab-headers label[for="itab2"], .tab-frame > input#itab3:checked ~ .tab-headers label[for="itab3"], .tab-frame > input#itab4:checked ~ .tab-headers label[for="itab4"], .tab-frame > input#itab5:checked ~ .tab-headers label[for="itab5"]{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(42, 42, 42);color:rgb(255, 255, 255);}.tab-frame > input#itab1:checked ~ .tab-contents .tab-content:nth-child(1), .tab-frame > input#itab2:checked ~ .tab-contents .tab-content:nth-child(2), .tab-frame > input#itab3:checked ~ .tab-contents .tab-content:nth-child(3), .tab-frame > input#itab4:checked ~ .tab-contents .tab-content:nth-child(4), .tab-frame > input#itab5:checked ~ .tab-contents .tab-content:nth-child(5){display:block;}.ymyl-section{max-width:900px;margin-top:0px;margin-right:auto;margin-bottom:40px;margin-left:auto;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:20px;}.section-title{font-size:18px;font-weight:700;color:rgb(42, 42, 42);text-align:center;letter-spacing:0.12em;text-transform:uppercase;margin-bottom:22px;}.ymyl-grid{display:grid;grid-template-columns:repeat(4, 1fr);row-gap:16px;column-gap:16px;}.ymyl-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);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;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;text-align:center;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:border-color;}.ymyl-card:hover{border-top-color:rgb(42, 42, 42);border-right-color:rgb(42, 42, 42);border-bottom-color:rgb(42, 42, 42);border-left-color:rgb(42, 42, 42);}.ymyl-img{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(250, 250, 250);margin-bottom:10px;display:flex;align-items:center;justify-content:center;overflow-x:hidden;overflow-y:hidden;}.ymyl-img img{width:100%;height:100%;object-fit:cover;}.ymyl-desc{font-size:12px;line-height:1.55;color:rgb(85, 85, 85);font-weight:400;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow-x:hidden;overflow-y:hidden;height:36px;}.ymyl-price{font-size:14px;font-weight:700;color:rgb(42, 42, 42);letter-spacing:0.02em;}.footer-nav{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);border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);display:flex;justify-content:center;row-gap:22px;column-gap:22px;padding-top:14px;padding-right:20px;padding-bottom:14px;padding-left:20px;flex-wrap:wrap;}.footer-nav a{font-size:11px;font-weight:600;color:rgb(85, 85, 85);letter-spacing:0.04em;display:inline-flex;align-items:center;row-gap:6px;column-gap:6px;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:color;}.footer-nav a:hover{color:rgb(42, 42, 42);}.fn-dot{width:4px;height:4px;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(153, 153, 153);border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;display:inline-block;}.site-footer{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(42, 42, 42);text-align:center;padding-top:28px;padding-right:20px;padding-bottom:22px;padding-left:20px;}.footer-logo-mark{margin-bottom:4px;}.footer-logo-name{display:block;font-size:13px;font-weight:600;color:rgb(255, 255, 255);letter-spacing:0.18em;text-transform:uppercase;margin-bottom:16px;}.pay-row{display:flex;justify-content:center;align-items:center;row-gap:10px;column-gap:10px;flex-wrap:wrap;}.pay-icon{height:24px;width:auto;object-fit:contain;display:block;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:4px;padding-right:8px;padding-bottom:4px;padding-left:8px;box-sizing:content-box;}#i4eb6e{width:100%;height:100%;object-fit:contain;display:block;}#iaf161{display:block;width:100%;height:100%;}html, body{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.litc-container.litc-template, #background.litc-container{width:100% !important;max-width:none !important;margin-top:0px !important;margin-right:auto !important;margin-bottom:0px !important;margin-left:auto !important;padding-left:0px !important;padding-right:0px !important;}#container.page{width:calc(100% - 24px) !important;max-width:1280px !important;margin-top:0px !important;margin-right:auto !important;margin-bottom:0px !important;margin-left:auto !important;padding-left:12px !important;padding-right:12px !important;box-sizing:border-box !important;}#header{display:block;font-size:20px;left:-25px;right:-100px;}#cols, #container .row{width:100% !important;max-width:none !important;box-sizing:border-box !important;}#cols{display:flex !important;align-items:flex-start !important;row-gap:18px !important;column-gap:18px !important;}#leftpane.left-col{flex-grow:0 !important;flex-shrink:0 !important;flex-basis:220px !important;width:220px !important;max-width:220px !important;}#centerpane.center-col{flex-grow:1 !important;flex-shrink:1 !important;flex-basis:auto !important;width:auto !important;max-width:none !important;min-width:0px !important;}#ip9v6e4{display:block;margin-top:12px;margin-inline-start:auto;margin-inline-end:auto;width:fit-content;color:rgb(170, 170, 170);font-weight:400;letter-spacing:0.02em;padding-right:110px;background-image:url("https://litcommerce.com/wp-content/uploads/2025/10/LitC-Logo_240x55.svg");background-position-x:100%;background-position-y:50%;background-repeat:no-repeat;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;background-size:107px;line-height:18px;}#descriptiontitle{margin-top:10px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:15px;padding-right:10px;padding-bottom:15px;padding-left:10px;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;color:rgb(255, 255, 255);font-family:Arial, sans-serif;font-size:1.8em;font-weight:700;height:50px;opacity:0.94;background-color:rgb(234, 151, 151);}#ifqpg2{width:1075px;max-width:100%;}#ikr6v5{height:597px;aspect-ratio:unset;}#iddnbg{height:597px;aspect-ratio:unset;}#is0b{display:flex;flex-direction:row;flex-wrap:wrap;row-gap:0px;column-gap:0px;}#iobh0p{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:150px;}#ihtxci{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:100px;}#ik0y8h{padding-top:0px;padding-right:100px;padding-bottom:0px;padding-left:0px;}.store-logo.logo-wrap.footer-logo-mark{width:338px;height:152px;}.powered-by{display:block;width:fit-content;margin-top:12px;margin-right:auto;margin-bottom:0px;margin-left:auto;font-size:9px;color:rgb(170, 170, 170);font-weight:400;letter-spacing:0.02em;padding-right:125px;background-image:url("https://litcommerce.com/wp-content/uploads/2025/10/LitC-Logo_240x55.svg");background-position-x:100%;background-position-y:50%;background-repeat:no-repeat;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;background-size:120px;line-height:27px;}#ifpyt{margin-left:6px;}#i4o87{display:block;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;color:rgb(255, 255, 255);text-align:center;padding-top:14px;padding-right:10px;padding-bottom:14px;padding-left:10px;font-size:1.4em;font-weight:bold;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;background-color:rgb(234, 151, 151);}#ilaqw{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(85, 85, 85);margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-bottom-width:3px;border-bottom-style:solid;border-bottom-color:rgb(157, 16, 51);padding-top:15px;padding-right:0px;padding-bottom:15px;padding-left:0px;font-size:1.4em;height:auto;}#helpful_links{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(85, 85, 85);margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-bottom-width:3px;border-bottom-style:solid;border-bottom-color:rgb(157, 16, 51);padding-top:15px;padding-right:0px;padding-bottom:15px;padding-left:0px;font-size:1.4em;height:auto;}.left-col{float:left;}.right-col{float:left;}.center-col{float:left;}div#leftpane.left-col{width:220px;padding-top:10px;padding-right:0px;padding-bottom:30px;padding-left:0px;margin-right:20px;}div#centerpane.center-col{width:760px;padding-top:0px;padding-right:0px;padding-bottom:30px;padding-left:0px;}#background *{box-sizing:border-box;}#subheader{display:block;}#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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}#leftpane{display:block;}#rightpane{display:block;}#design{display:block;}#customhtml{display:block;}#descriptiontitle, div.subheader, div.box-title, div.box-content, div.left-col, div.right-col, #showcase ul{display:block;}.hidden{display:none;}.mobile-only{display:none;}.litc-container .header-wrapper, .litc-container .subheader-wrapper, .litc-container .left-col, .litc-container .creditlink, .litc-container .footer-wrapper, .litc-container .box-content, .litc-container #showcase{display:block;}.clear{clear:both;}#background{font-size:10px;background-color:rgb(255, 255, 255);}.page{width:100%;font-family:Arial, 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:Arial, sans-serif;}.cols{background-image:none;background-position-x:50%;background-position-y:50%;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:50%;background-position-y:50%;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;}.accent{color:rgb(157, 16, 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:Arial, 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;}.header-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:transparent;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(220, 220, 220);margin-top:8px;margin-right:16px;margin-bottom:16px;margin-left:16px;}div#header{float:none;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:transparent;display:flex;align-items:flex-start;justify-content:space-between;}div#header 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;font-size:13px;font-family:Arial, sans-serif;font-weight:400;list-style-position:initial;list-style-image:initial;list-style-type:none;text-align:right;text-transform:none;}div#header ul li{display:inline-block;margin-top:0px;margin-right:15px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;border-right-width:0px;border-right-style:none;border-right-color:currentcolor;}div#header 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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}div#header ul li a{color:rgb(51, 51, 51);}div#header ul li a .fa{padding-right:5px;color:rgb(157, 16, 51);}div#header ul li a:hover{color:rgb(157, 16, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.store-logo, [data-gjs-type="lit-store-logo"]{display:inline-flex;align-items:center;justify-content:center;position:relative;width:200px;height:100px;overflow-x:hidden;overflow-y:hidden;background-size:contain;cursor:pointer;font-family:Arial, sans-serif;font-size:24px;font-weight:600;color:rgb(51, 51, 51);text-align:center;line-height:1.2;}.store-logo img, [data-gjs-type="lit-store-logo"] img{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;cursor:pointer;}.store-logo > a, [data-gjs-type="lit-store-logo"] > a{display:block;width:100%;height:100%;}.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(255, 255, 255);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(220, 220, 220);}.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(255, 255, 255);height:42px;padding-top:8px;padding-right:0px;padding-bottom:8px;padding-left:0px;}.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-top-style:none;border-right-style:none;border-bottom-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;height:100%;border-left-width:1px;border-left-style:solid;border-left-color:rgb(220, 220, 220);display:inline-block !important;}.subheader ul li:first-child{border-left-width:0px;border-left-style:none;border-left-color:currentcolor;}.subheader ul li:hover a{color:rgb(157, 16, 51);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:rgb(255, 255, 255);}.subheader ul li a{font-size:16px;text-transform:none;font-weight:normal;color:rgb(71, 71, 71);font-family:Arial, sans-serif;padding-top:4px;padding-right:30px;padding-bottom:4px;padding-left:30px;display:block;height:100%;}ul#nav li{display:inline-block !important;}.trustbar-wrapper{width:100%;height:56px;background-image:linear-gradient(to right, rgb(157, 16, 51), rgb(192, 20, 45), rgb(157, 16, 51));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;}.trustbar{height:56px;display:flex;align-items:center;justify-content:center;}.trustbar-text{color:rgb(255, 255, 255);font-size:14px;font-family:Arial;font-weight:bold;letter-spacing:2px;text-transform:uppercase;}.cols #categories, .cols .helpful-links-wrapper{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(207, 207, 207);border-right-color:rgb(207, 207, 207);border-bottom-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;margin-top:10px;}.cols .box-links{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 .box-links a{text-align:left;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;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(255, 255, 255);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:0px;padding-bottom:5px;padding-left:0px;width:100%;height:auto;position:relative;}.cols .box-links a:hover{color:rgb(157, 16, 51);}.cols a.cat-link{width:100%;font-weight:bold;}.cols a.sub-link{color:rgb(51, 51, 51);position:relative;padding-top:5px !important;padding-right:5px !important;padding-bottom:5px !important;padding-left:19px !important;}.cols a.sub-link::before{content:"";font-family:"Font Awesome 5 Free";font-size:5px;font-weight:900;color:rgb(51, 51, 51);position:absolute;left:10px;top:11px;}.cols a.sub-link:hover{color:rgb(157, 16, 51);}#helpful_links_content a:hover::after, .box-links a.cat-link:hover::after{content:"";font-family:"Font Awesome 5 Free";font-weight:700;position:absolute;top:7px;right:0px;}#categories a{display:block;}.box-title{margin-top:10px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:15px;padding-right:10px;padding-bottom:15px;padding-left:10px;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(157, 16, 51);color:rgb(255, 255, 255);font-family:Arial, sans-serif;font-size:1.8em;font-weight:700;height:50px;}#helpful_links, #categories .box-title{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(85, 85, 85);margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-bottom-width:3px;border-bottom-style:solid;border-bottom-color:rgb(157, 16, 51);padding-top:15px;padding-right:0px;padding-bottom:15px;padding-left:0px;}.box-content{padding-top:15px;padding-right:10px;padding-bottom:15px;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-size:1.4em;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-right-color:rgb(207, 207, 207);border-bottom-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;}.box-links{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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;padding-top:10px !important;padding-right:0px !important;padding-bottom:10px !important;padding-left:0px !important;}.sb-empty{padding-top:12px;padding-right:0px;padding-bottom:12px;padding-left:0px;font-size:1.35em;line-height:1.5;color:rgb(85, 85, 85);font-family:Arial, sans-serif;}.sb-empty a{color:rgb(157, 16, 51);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-weight:700;}.sb-empty a:hover{color:rgb(110, 10, 35);}.box-base{display:none;}.side-promo{margin-top:10px;}.side-promo img, .side-promo svg{max-width:100%;display:block;}#showcase{display:block;}.item-details{display:block;}#showcase h3, .item-details h3, #showcase .product-title.lock-group h1, #showcase .product-title.lock-group h3{color:rgb(85, 85, 85);font-family:Arial, sans-serif;font-size:2.8em;margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;line-height:1.1em;font-weight:bold;}#showcase::after{clear:both;content:" ";}.item-details::after{clear:both;content:" ";}.product-title.lock-group{display:block;width:100%;}.product-title.lock-group h1, .product-title.lock-group h3{margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.product-carousel{margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;}#descriptiontitle, .center-col .box-title{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(157, 16, 51);color:rgb(255, 255, 255);height:auto;font-size:2em;margin-top:10px;margin-right:0px;margin-left:0px;padding-top:8px;padding-right:10px;padding-bottom:8px;padding-left:10px;font-family:Arial, sans-serif;margin-bottom:0px !important;}#description{clear:both;margin-bottom:10px;}#description #descriptiontitle{padding-top:14px;padding-right:20px;padding-bottom:14px;padding-left:20px;border-bottom-width:4px;border-bottom-style:solid;border-bottom-color:rgb(143, 140, 138);margin-top:40px;}#description #descriptioncontent{padding-top:30px;padding-right:20px;padding-bottom:30px;padding-left:20px;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:1px;border-bottom-width:1px;border-left-width:1px;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-right-color:rgb(207, 207, 207);border-bottom-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;font-size:1.4em;line-height:1.4;font-family:Arial, sans-serif;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 .description.lock-group{display:block;}.tab-wrapper{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;padding-top:40px;padding-right:0px;padding-bottom:40px;padding-left:0px;}.tab-frame{margin-top:20px;margin-right:auto;margin-bottom:20px;margin-left:auto;display:block;position:relative;}.info-tabs.tab-frame > .tab-contents .tab-content{padding-top:30px;padding-right:20px;padding-bottom:30px;padding-left:20px;}.tab-content p{margin-bottom:10px;}.tab-content a{color:rgb(51, 51, 51);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}#itab1:checked ~ .tab-headers label[for="itab1"], #itab2:checked ~ .tab-headers label[for="itab2"], #itab3:checked ~ .tab-headers label[for="itab3"], #itab4:checked ~ .tab-headers label[for="itab4"], #itab5:checked ~ .tab-headers label[for="itab5"]{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);height:55px;border-right-width:1px;border-left-width:1px;border-right-style:solid;border-left-style:solid;border-right-color:rgb(207, 207, 207);border-left-color:rgb(207, 207, 207);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;border-top-width:3px;border-top-style:solid;border-top-color:rgb(157, 16, 51);color:rgb(51, 51, 51);}#itab1:checked ~ .tab-contents .tab-content:nth-child(1), #itab2:checked ~ .tab-contents .tab-content:nth-child(2), #itab3:checked ~ .tab-contents .tab-content:nth-child(3), #itab4:checked ~ .tab-contents .tab-content:nth-child(4), #itab5:checked ~ .tab-contents .tab-content:nth-child(5){display:block;animation-name:tabIn;animation-duration:1.2s;}#more_items{font-size:24px;font-weight:normal;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:0px;margin-top:20px;margin-right:0px;margin-bottom:0px;margin-left:0px;color:rgb(85, 85, 85);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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}#promobox .ns-promo-item{cursor:pointer;text-align:left;flex-direction:column;display:flex !important;}#promobox .ns-promo-item .litc-promo-container{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:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;flex-grow:1;flex-shrink:1;flex-basis:0%;display:flex;flex-direction:column;}#promobox .ns-promo-item .litc-promo-container .litc-promo-img{width:100%;aspect-ratio:1 / 1;display:flex;align-items:center;justify-content:center;overflow-x:hidden;overflow-y:hidden;}#promobox .ns-promo-item .litc-promo-container .litc-promo-img img.pimg{width:100%;height:100%;object-fit:cover;display:block;}#promobox .ns-promo-item .litc-promo-container .litc-promo-title{color:rgb(51, 51, 51);padding-top:6px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:13px;line-height:17px;overflow-x:hidden;overflow-y:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;word-break:break-word;}#promobox .ns-promo-item .litc-promo-container .litc-promo-price{color:rgb(157, 16, 51);font-size:16px;font-weight:700;margin-top:auto;}#promobox .ns-promo-item .litc-promo-container:hover .litc-promo-title{text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.catbox-wrapper{width:100%;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(246, 245, 245);padding-top:0px;padding-right:0px;padding-bottom:20px;padding-left:0px;}.catbox-title{width:1000px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;text-align:center;text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-family:Arial;font-weight:normal;font-size:28px;color:rgb(0, 0, 0);padding-top:30px;padding-right:0px;padding-bottom:30px;padding-left:0px;}.category-boxes{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;list-style-position:initial;list-style-image:initial;list-style-type:none;width:1000px;}.category-boxes li{float:left;width:227px;height:281px;vertical-align:top;margin-right:30px;margin-bottom:10px;margin-top:10px;position:relative;}.category-boxes li:nth-child(4n){margin-right:0px;}.category-boxes li a{display:block;}.category-boxes li img, .category-boxes li svg{width:227px;height:227px;border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;overflow-x:hidden;overflow-y:hidden;display:block;object-fit:cover;cursor:pointer;}.box-link{margin-bottom:0px;color:rgb(74, 74, 74);width:100%;height:54px;line-height:1.2;padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;font-family:Arial;font-size:20px;font-weight:normal;text-transform:none;text-align:center;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;bottom:0px;left:0px;position:absolute;display:flex;align-items:center;justify-content:center;box-sizing:border-box;white-space-collapse:collapse;text-wrap-mode:wrap;}.category-boxes li:hover .box-link{color:rgb(157, 16, 51);}.brand-wrapper{width:100%;height:auto;padding-bottom:30px;}.brand-title{width:1000px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;text-align:center;text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-family:Arial;font-weight:normal;font-size:28px;color:rgb(0, 0, 0);padding-top:30px;padding-right:0px;padding-bottom:30px;padding-left:0px;}.brands{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;list-style-position:initial;list-style-image:initial;list-style-type:none;width:1000px;text-align:center;}.brands li{width:180px;height:100px;margin-top:10px;margin-right:8px;margin-bottom:10px;margin-left:8px;box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;}.brands li:hover{opacity:0.8;}.brands li a{display:flex;align-items:center;justify-content:center;width:100%;height:100%;}.brands li a svg{max-width:160px;max-height:80px;}.brands li a img{max-width:160px;max-height:80px;object-fit:contain;cursor:pointer;}.footer-wrapper{background-image:linear-gradient(rgb(245, 245, 245), rgb(232, 232, 232));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:1px;border-top-style:solid;border-top-color:rgb(220, 220, 220);}div#footer.footer{color:rgb(51, 51, 51);font-size:1.4em;position:relative;padding-top:30px;padding-right:0px;padding-bottom:30px;padding-left:0px;height:auto !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:16px;font-family:Arial, sans-serif;font-weight:700;list-style-position:initial;list-style-image:initial;list-style-type:none;text-align:center;text-transform:none;}div#footer.footer ul li{display:inline-block;margin-top:0px;margin-right:20px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:0px;border-right-width:1px;border-right-style:solid;border-right-color:rgb(160, 160, 160);}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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}div#footer.footer ul li a{color:rgb(51, 51, 51);}div#footer.footer ul li a .fa{padding-right:5px;color:rgb(157, 16, 51);}div#footer.footer ul li a:hover{color:rgb(157, 16, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.lit-pay-footer-logo{display:flex;align-items:center;justify-content:center;margin-top:20px;margin-right:auto;margin-bottom:0px;margin-left:auto;}.lit-pay-row{display:flex;justify-content:center;align-items:center;row-gap:8px;column-gap:8px;margin-top:20px;margin-right:auto;margin-bottom:0px;margin-left:auto;flex-wrap:wrap;max-width:100%;}.lit-pay-logo{height:22px;width:auto;max-width:60px;object-fit:contain;display:block;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(220, 220, 220);border-right-color:rgb(220, 220, 220);border-bottom-color:rgb(220, 220, 220);border-left-color:rgb(220, 220, 220);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;padding-top:2px;padding-right:6px;padding-bottom:2px;padding-left:6px;box-sizing:content-box;}.lit-pay-footer-name{font-size:11px;letter-spacing:0.32em;color:rgb(157, 16, 51);font-weight:700;margin-top:14px;text-transform:uppercase;text-align:center;}.lit-pay-footer-copy{font-size:11px;color:rgb(119, 119, 119);margin-top:10px;font-weight:400;letter-spacing:0.04em;text-align:center;}#bbaacckup{display:none;}#ns_copyright{display:none;}#seo{display:none;}.col-wrapper + *{clear:both;}#ixsch{display:flex;flex-direction:row;flex-wrap:wrap;row-gap:0px;column-gap:0px;}#nav{display:block;background-color:rgb(234, 151, 151);}#igq9b1{background-color:rgb(234, 151, 151);}#ir5m67{color:rgb(51, 51, 51);font-family:Arial, sans-serif;font-weight:400;letter-spacing:normal;text-transform:none;background-color:rgb(255, 255, 255);}#iu2cbk{font-size:25px;font-weight:bold;color:rgb(58, 44, 36);}#ic80zj{font-size:15px;color:rgb(90, 70, 58);margin-top:7px;}#i1xt67{font-size:18px;font-weight:bold;color:rgb(138, 41, 66);margin-top:10px;}#i0mqrb{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(248, 243, 236);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:14px;border-top-right-radius:14px;border-bottom-right-radius:14px;border-bottom-left-radius:14px;padding-top:18px;padding-right:14px;padding-bottom:18px;padding-left:14px;margin-bottom:12px;}#ih9z5x{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#iz9a21{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#i0mfcn{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ikuud7{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#izlhx2{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#igxl8h{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#iuz86i{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ign2rp{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ikf85r{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i45k4t{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i5sa4f{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ia3g0g{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ieq9js{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i71nml{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#id3tcl{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#il4a1i{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ixst1y{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#i8re6j{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#ilmzpf{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#irulo1{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i2i1gy{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ikb02l{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#islblk{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#i5v799{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ixwl6f{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#izjn8g{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#i4ydsz{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ilclyo{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#iak0qx{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#izwrbv{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i9xnhn{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#isyrzr{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i6xq3k{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#in88t7{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#i887sx{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ikmkxs{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#izgvy2{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i1x7fk{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ivsszq{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#itsi9i{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#ix343k{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#iryrcr{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ikq6fl{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#ia3mpc{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ich41f{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i5lyv8{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ilipqg{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#in7ghk{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#idsspo{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#izvfpo{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#i11gno{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#i4nd5j{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#icwsw7{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#iohv4e{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ihw4wm{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#iwwsdf{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ieibh7{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#ix2hc3{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ityalk{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ilh12w{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#iw5daz{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ie5gbw{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#iy71k5{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#iglk96{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#iru609{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#idmbbu{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#iphmx9{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ijb6d1{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#idnu1x{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#imbodi{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ii4ip9{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#i305xm{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i28qy3{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ipq7ow{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#inbgki{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#i2wdoj{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ilc9ma{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#ivfuwe{font-size:14px;font-weight:bold;line-height:1.4;color:rgb(138, 41, 66);margin-top:7px;margin-right:4px;margin-bottom:10px;margin-left:4px;text-align:center;}#iclq2f{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#isw0mh{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#izc5uk{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#id6qil{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#isrvqe{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#iufb6n{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ip1cqz{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#itqhtj{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#ipjkqf{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#it64qi{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#izwwmq{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#ivk09h{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ijtmxl{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#iyhyae{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#iag0kz{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#i7y0bb{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ix5bn5{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#iqn6z3{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#inhj2f{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ik8vp2{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i9ikv6{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ihwdy7{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#idmphy{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ivtn2x{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ij0fhg{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#iwuswk{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ik2o7b{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#i3146h{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#il4f86{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#iqm01i{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#im7dnk{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#imd8ie{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#i88q3f{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#isxjmk{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ikq6mg{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#izbay7{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i5cjdg{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#iq0clt{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#i6ci4y{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ilp4gb{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#ixgeyd{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#in5yj3{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#io4ksz{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ixy8nd{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#id2g2k{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#i0e0ii{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ixv2ai{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ijkqtg{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ifik5s{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#i3apdl{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ityxoz{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#ihdvph{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#ih2acg{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#i3anah{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#ios748{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#iffq6k{font-size:20px;font-weight:bold;color:rgb(58, 44, 36);margin-bottom:4px;}#i82iqh{font-size:12px;color:rgb(110, 90, 78);margin-bottom:8px;}#iqu12f{display:inline-block;min-width:116px;margin-top:5px;margin-right:4px;margin-bottom:5px;margin-left:4px;padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;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(252, 235, 237);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(231, 168, 180);border-right-color:rgb(231, 168, 180);border-bottom-color:rgb(231, 168, 180);border-left-color:rgb(231, 168, 180);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;color:rgb(0, 0, 238);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;font-size:14px;font-weight:bold;line-height:1.25;text-align:center;}#ixsowm{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;min-height:150px;}#ihboog{padding-top:7px;padding-right:7px;padding-bottom:7px;padding-left:7px;}#ifzjol{border-collapse:collapse;}#i0tm7b{color:rgb(138, 41, 66);}#ib2tio{font-size:12px;color:rgb(122, 101, 88);margin-top:6px;}#ix5ndg{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, 250, 244);border-top-width:2px;border-top-style:solid;border-top-color:rgb(199, 164, 106);margin-top:12px;padding-top:14px;padding-right:10px;padding-bottom:14px;padding-left:10px;font-size:14px;line-height:1.5;color:rgb(90, 70, 58);}#i1efmj{font-family:Arial, Helvetica, sans-serif;max-width:980px;margin-top:24px;margin-right:auto;margin-bottom:24px;margin-left:auto;padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;text-align:center;}#iarj3c{font-size:24px;font-weight:bold;}#i61nnp{font-size:15px;color:rgb(90, 70, 58);margin-top:6px;}#if2q39{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(248, 243, 236);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:14px;border-top-right-radius:14px;border-bottom-right-radius:14px;border-bottom-left-radius:14px;padding-top:20px;padding-right:18px;padding-bottom:20px;padding-left:18px;margin-bottom:14px;text-align:center;}#ip4wis{font-size:21px;font-weight:bold;color:rgb(138, 41, 66);margin-bottom:8px;}#izgjsf{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;font-size:15px;}#i0l7ti{margin-top:8px;margin-right:0px;margin-bottom:10px;margin-left:22px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}#i007b2{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(248, 243, 236);border-left-width:4px;border-left-style:solid;border-left-color:rgb(199, 164, 106);padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;}#i1n2ny{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:18px;padding-right:18px;padding-bottom:18px;padding-left:18px;margin-bottom:14px;font-size:15px;}#ivxirz{font-size:21px;font-weight:bold;color:rgb(138, 41, 66);margin-bottom:8px;}#ie392k{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;font-size:15px;}#iiotdh{margin-top:8px;margin-right:0px;margin-bottom:10px;margin-left:22px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}#ivlh3j{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(252, 235, 237);border-left-width:4px;border-left-style:solid;border-left-color:rgb(231, 168, 180);padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;font-size:15px;}#i1jwr9{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:18px;padding-right:18px;padding-bottom:18px;padding-left:18px;margin-bottom:14px;}#i5kp2h{font-size:21px;font-weight:bold;color:rgb(138, 41, 66);margin-bottom:8px;}#inl3lb{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}#ihejnl{margin-top:8px;margin-right:0px;margin-bottom:0px;margin-left:22px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}#idxekf{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:18px;padding-right:18px;padding-bottom:18px;padding-left:18px;margin-bottom:14px;font-size:15px;}#iruhmr{font-size:21px;font-weight:bold;color:rgb(138, 41, 66);margin-bottom:8px;}#ita9k7{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}#i74t1r{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}#ib48cg{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#if6di9{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:18px;padding-right:18px;padding-bottom:18px;padding-left:18px;margin-bottom:14px;font-size:15px;}#iqfqiy{font-size:21px;font-weight:bold;color:rgb(138, 41, 66);margin-bottom:8px;}#it92sf{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}#izs4ps{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}#i9rvcf{margin-top:8px;margin-right:0px;margin-bottom:10px;margin-left:22px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}#iqes3u{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(252, 235, 237);border-left-width:4px;border-left-style:solid;border-left-color:rgb(231, 168, 180);padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;margin-bottom:10px;}#ishekg{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#ixoamh{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, 250, 244);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:12px;border-top-right-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;padding-top:18px;padding-right:18px;padding-bottom:18px;padding-left:18px;margin-bottom:14px;font-size:15px;}#ib7dzf{font-size:22px;font-weight:bold;color:rgb(138, 41, 66);margin-bottom:8px;}#isldt4{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}#iqiibi{margin-top:0px;margin-right:0px;margin-bottom:8px;margin-left:0px;}#ixpzct{font-size:14px;color:rgb(90, 70, 58);}#iinpln{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(248, 243, 236);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(199, 164, 106);border-right-color:rgb(199, 164, 106);border-bottom-color:rgb(199, 164, 106);border-left-color:rgb(199, 164, 106);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:14px;border-top-right-radius:14px;border-bottom-right-radius:14px;border-bottom-left-radius:14px;padding-top:20px;padding-right:18px;padding-bottom:20px;padding-left:18px;text-align:center;font-size:15px;}#inj63l{font-family:Arial, Helvetica, sans-serif;max-width:980px;margin-top:20px;margin-right:auto;margin-bottom:20px;margin-left:auto;color:rgb(58, 44, 36);line-height:1.55;}#indp9j{font-size:15px;}#imui7p{font-size:15px;}#i8j5c7{font-size:15px;}#ikh8ai{font-size:15px;}#i0racj{font-size:15px;}#iwic1y{width:861px;max-width:100%;}#ihwhhz{height:793px;aspect-ratio:unset;}#iv1kfl{height:793px;aspect-ratio:unset;}#ivyvx{font-size:20px;font-weight:700;left:-600px;position:relative;}#ihfai{font-size:20px;font-weight:700;position:relative;left:-400px;}#i8adf{font-size:20px;font-weight:700;left:-200px;position:relative;}#ifo0po{color:rgb(0, 0, 0);font-weight:700;}#ic2w66{text-align:right;font-weight:700;}#ihl989{font-weight:700;}#ifhdal{font-weight:700;}#irrl5{margin-top:0px;margin-right:-500px;margin-bottom:0px;margin-left:0px;background-color:rgb(12, 11, 11);}#ikaf{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:-400px;}#i28f{left:200px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}#io4gnu{font-size:20px;}#i6rn2m{font-size:14px;line-height:1.6;margin-top:0px;margin-right:0px;margin-bottom:8px;margin-left:0px;}#iya1if{font-size:18px;background-color:rgb(0, 0, 0);color:rgb(253, 248, 248);text-align:center;}#id47ep{width:1140px;max-width:100%;padding-left:16px;padding-right:16px;}#iag86s{font-size:30px;line-height:1.6;margin-top:0px;margin-right:0px;margin-bottom:8px;margin-left:0px;font-weight:700;color:rgb(253, 248, 248);background-color:rgb(0, 0, 0);text-align:center;}#i4ghhj{font-weight:700;}#i14fdg{display:block;object-fit:cover;width:1372px;height:900px;top:20px;position:relative;left:200px;margin-top:0px;margin-right:300px;margin-bottom:0px;margin-left:-500px;}#irrhf6{display:block;object-fit:cover;width:230px;height:155px;}#i14xdi{display:block;object-fit:cover;}#inxcke{display:block;object-fit:cover;}#iqs1bx{display:block;object-fit:cover;}#idiecz{display:block;object-fit:cover;}#i20h51{display:block;object-fit:cover;}#if4nnl{display:block;object-fit:cover;}#iwv818{display:block;object-fit:cover;}#i4npuw{display:block;object-fit:cover;}#i3kvox{display:block;object-fit:cover;}#ibvxfd{display:block;object-fit:cover;}#i2uxwk{display:block;object-fit:cover;}#iq7ezw{display:block;object-fit:cover;}#ioq902{display:block;object-fit:cover;}#is9ln1{display:block;object-fit:cover;}#ioxa86{display:block;object-fit:cover;}#i78qw6{display:block;object-fit:cover;}.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;}@keyframes tabIn{0%{opacity:0;}100%{opacity:1;}}@media (min-width: 1025px){#ixemyf{grid-template-columns:repeat(4, 1fr);display:grid;}#i4sv7j{grid-template-columns:repeat(4, 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="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);}div.row{width:100%;max-width:1000px;padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;box-sizing:border-box;}div#leftpane.left-col{width:200px;margin-right:16px;}div#centerpane.center-col{width:calc(100% - 216px);}.catbox-title{width:100%;box-sizing:border-box;padding-top:30px;padding-right:12px;padding-bottom:30px;padding-left:12px;}.brand-title{width:100%;box-sizing:border-box;padding-top:30px;padding-right:12px;padding-bottom:30px;padding-left:12px;}.category-boxes{width:100%;padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;box-sizing:border-box;}.brands{width:100%;padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;box-sizing:border-box;}.category-boxes li{width:calc(25% - 24px);height:auto;}.category-boxes li img, .category-boxes li svg{width:100%;height:auto;aspect-ratio:1 / 1;}.tab-headers label{width:19.6%;}}@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);}.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);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}}@media (min-width: 992px){.lit-hide-desktop{display:none !important;}}@media (max-width: 900px){#container.page{width:100% !important;padding-left:8px !important;padding-right:8px !important;}#cols{display:block !important;}#leftpane.left-col, #centerpane.center-col{width:100% !important;max-width:none !important;}}@media (min-width: 769px) and (max-width: 1024px){#ixemyf{grid-template-columns:repeat(2, 1fr);display:grid;}#i4sv7j{grid-template-columns:repeat(2, 1fr);display:grid;}}@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="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="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;}div.row{padding-top:0px;padding-right:8px;padding-bottom:0px;padding-left:8px;}.subheader-wrapper{display:none !important;}.trustbar-wrapper{display:none !important;}#leftpane{display:none !important;}.catbox-wrapper{display:none !important;}.brand-wrapper{display:none !important;}.lit-pay-footer-copy, .header-wrapper .page-links.header-links, .footer-wrapper #footer .page-links.footer-links, .footer-wrapper #footer .lit-pay-footer-name, .footer-wrapper #footer .lit-pay-row{display:none !important;}#header{display:block;height:auto;padding-top:12px;padding-right:0px;padding-bottom:12px;padding-left:0px;text-align:center;}.header-wrapper{border-bottom-width:medium;border-bottom-style:none;border-bottom-color:currentcolor;}.store-logo, [data-gjs-type="lit-store-logo"]{display:inline-block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}.cols{display:block;}div#leftpane.left-col, div#centerpane.center-col{float:none;width:100%;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}#showcase{padding-top:0px;padding-right:8px;padding-bottom:0px;padding-left:8px;box-sizing:border-box;}#description{padding-top:0px;padding-right:8px;padding-bottom:0px;padding-left:8px;box-sizing:border-box;}.tab-wrapper{padding-top:24px;padding-right:8px;padding-bottom:24px;padding-left:8px;}#showcase h3, .item-details h3{font-size:2em;margin-top:12px;margin-right:0px;margin-bottom:12px;margin-left:0px;}.tab-headers label{width:50%;font-size:14px;padding-top:12px;padding-right:0px;padding-bottom:12px;padding-left:0px;height:auto;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.tab-headers label:hover, #itab1:checked ~ .tab-headers label[for="itab1"], #itab2:checked ~ .tab-headers label[for="itab2"], #itab3:checked ~ .tab-headers label[for="itab3"], #itab4:checked ~ .tab-headers label[for="itab4"], #itab5:checked ~ .tab-headers label[for="itab5"]{height:auto;}.tab-content{padding-top:16px;padding-right:12px;padding-bottom:16px;padding-left:12px;}.footer-wrapper{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-top-style:none;border-top-color:currentcolor;}div#footer.footer{padding-top:16px;padding-right:0px;padding-bottom:16px;padding-left:0px;text-align:center;}.lit-pay-footer-logo{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}#ixemyf{grid-template-columns:repeat(1, 1fr);display:grid;}#i4sv7j{grid-template-columns:repeat(2, 1fr);display:grid;}}@media (min-width: 768px) and (max-width: 991px){.lit-hide-tablet{display:none !important;}}@media (max-width: 767px){.lit-hide-mobile{display:none !important;}}@media (max-width: 720px){.util-bar{row-gap:14px;column-gap:14px;flex-wrap:wrap;}.main-nav{flex-wrap:wrap;}.main-nav a{padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;}.hero{padding-top:36px;padding-right:20px;padding-bottom:36px;padding-left:20px;min-height:240px;}.hero h1{font-size:22px;}.perks-bar{flex-wrap:wrap;}.perk{max-width:none;flex-grow:1;flex-shrink:1;flex-basis:50%;padding-top:12px;padding-right:16px;padding-bottom:12px;padding-left:16px;}.product-section{flex-direction:column;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:20px;}.product-img-col{width:100%;flex-grow:1;flex-shrink:1;flex-basis:auto;}.product-info-col{width:100%;flex-grow:1;flex-shrink:1;flex-basis:auto;}.bc-rl-handle{display:none;}.ymyl-grid{grid-template-columns:repeat(2, 1fr);}.tab-headers label{font-size:10px;padding-top:10px;padding-right:6px;padding-bottom:10px;padding-left:6px;}.footer-nav{row-gap:14px;column-gap:14px;}}@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);}.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);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-phone-thumbs="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}}