.litc-export-only { display: none; }

@media (min-width: 992px) { .lit-hide-desktop { display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) { .lit-hide-tablet { display: none !important; } }
@media (max-width: 767px) { .lit-hide-mobile { display: none !important; } }

.bc-row {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
        min-height: 40px;
        gap: 16px;
      }
      .bc-col {
        flex: 1 1 0%;
        min-width: 0;
        box-sizing: border-box;
        min-height: 40px;
      }
      .bc-col:empty::before {
        content: 'Column — drop here';
        display: block;
        padding: 16px;
        text-align: center;
        color: #aaa;
        font-size: 12px;
        border: 1px dashed #ccc;
        border-radius: 4px;
        pointer-events: none;
      }
      .bc-btn {
        display: inline-block;
        padding: 10px 24px;
        background: #2563eb;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        line-height: 1.4;
      }
      .bc-btn:hover { opacity: 0.88; }
      .bc-link { color: #2563eb; text-decoration: underline; }
      .bc-input,
      .bc-select,
      .bc-textarea {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #d1d5db;
        border-radius: 4px;
        font-size: 14px;
        background: #fff;
        color: #111;
        box-sizing: border-box;
      }
      .bc-textarea { resize: vertical; min-height: 80px; }
      .bc-label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: #374151;
        margin-bottom: 4px;
      }
      .bc-form { display: flex; flex-direction: column; gap: 12px; }

.bc-container { position: relative; }
        .bc-container:empty {
          min-height: 60px;
        }
        .bc-container:empty::before {
          content: 'Container — Drop blocks here';
          display: block;
          padding: 20px;
          text-align: center;
          color: #aaa;
          font-size: 13px;
          border: 2px dashed #ddd;
          border-radius: 4px;
          pointer-events: none;
        }

        /* Thin blue edge indicator on hover / during drag */
        .bc-container.lit-edge-near::after,
        .bc-container.lit-edge-active::after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          width: 2px;
          background: rgba(59, 130, 246, 0.55);
          pointer-events: none;
          z-index: 10;
        }
        .bc-container.lit-edge-left::after { left: 0; }
        .bc-container.lit-edge-right::after { right: 0; }
        .bc-container.lit-edge-resizing,
        .bc-container.lit-edge-resizing * {
          user-select: none;
          -webkit-user-select: none;
        }

.lit-table-outer {
      width: 100%;
      box-sizing: border-box;
    }

    .lit-table-inner {
      padding: 16px;
      overflow-x: auto;
    }

    .lit-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      font-family: inherit;
      table-layout: fixed;
    }

    .lit-table th {
      background: #f0f0f0;
      font-weight: 600;
      color: #333;
      border: 1px solid #ccc;
      padding: 10px 14px;
      text-align: left;
      position: relative;
      overflow: hidden;
      word-break: break-word;
    }

    .lit-table td {
      border: 1px solid #ccc;
      padding: 8px 14px;
      text-align: left;
      color: #444;
      overflow: hidden;
      word-break: break-word;
    }

    .lit-table tbody tr:nth-child(even) td {
      background: #fafafa;
    }

    .col-resize-handle {
      position: absolute;
      right: 0;
      top: 0;
      width: 6px;
      height: 100%;
      cursor: col-resize;
      z-index: 20;
      background: transparent;
      user-select: none;
    }

    .col-resize-handle:hover,
    .col-resize-handle.resizing {
      background: rgba(66, 153, 225, 0.6);
    }

.lit-custom-html-wrapper { min-height: 30px; }

/* ── 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(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(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; }

    /* ── 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; }
    @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; }
}
    @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; }
}

    /* ── 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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
    @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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
}
    @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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
}

    /* :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="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="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); }
    @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="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="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 (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="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="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); }
}

    /* ── 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); }
    @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); }
}
    @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); }
}

    /* ── 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;
      }
    }

.lit-carousel-rh {
          position: absolute;
          width: 14px; height: 14px;
          background: #fff;
          border: 2px solid #555;
          border-radius: 3px;
          z-index: 999;
          box-sizing: border-box;
          cursor: pointer;
        }
        .lit-carousel-rh:hover { background: #555; }
        .lit-carousel-rh[data-dir="nw"] { top: -7px;    left: -7px;  cursor: nw-resize; }
        .lit-carousel-rh[data-dir="ne"] { top: -7px;    right: -7px; cursor: ne-resize; }
        .lit-carousel-rh[data-dir="sw"] { bottom: -7px; left: -7px;  cursor: sw-resize; }
        .lit-carousel-rh[data-dir="se"] { bottom: -7px; right: -7px; cursor: se-resize; }

        /* Prevent images from capturing mouse events in editor so parent can be dragged */
        .lit-product-carousel-nav img {
          pointer-events: none;
          user-select: none;
          -webkit-user-drag: none;
        }

        /* In editor: disable CSS translate, use JS scroll instead */
        .lit-product-carousel-nav .lit-carousel-thumbstrip {
          overflow: visible !important;
        }
        /* Horizontal layouts (top/bottom): scroll X */
        .lit-product-carousel-nav:not(:has(.lit-carousel--nav-left)):not(:has(.lit-carousel--nav-right)) .lit-carousel-thumbstrip .lit-carousel-thumbs {
          overflow-x: auto !important;
          overflow-y: hidden !important;
          transform: none !important;
          transition: none !important;
        }
        /* Vertical layouts (left/right): scroll Y */
        .lit-product-carousel-nav:has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
        .lit-product-carousel-nav:has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs {
          overflow-x: hidden !important;
          overflow-y: auto !important;
          transform: none !important;
          transition: none !important;
        }
        /* Remove gradient fade on thumbstrip edges (all 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,
        .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 {
          display: none !important;
        }

[data-gjs-type="lit-cat-card"] { cursor: pointer; }
  [data-gjs-type="lit-cat-card"] * { pointer-events: none; }
  [data-gjs-type="lit-cat-card"][data-cat-strict="1"] * { pointer-events: none !important; }
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) img,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg * {
    pointer-events: auto;
  }
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link * {
    pointer-events: auto;
  }

.lit-promo-card {
      text-align: center;
      font-family: inherit;
      box-sizing: border-box;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }
    .lit-promo-card * {
      pointer-events: none;
    }
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .promo-card { text-align: center; display: flex; flex-direction: column; }
    .promo-img {
      width: 100%;
      aspect-ratio: 1;
      background: #f4f4f0;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .promo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .promo-desc {
      font-size: 13px;
      color: #888888;
      line-height: 1.6;
      margin-bottom: 5px;
      font-weight: 300;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      word-break: break-word;
    }
    .promo-price {
      font-size: 20px;
      font-weight: 700;
      color: #333333;
      margin-top: auto;
    }
    .litc-export-only { display: none; }

.tab-frame { display: block; position: relative; }
  .tab-frame > input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
  }
  .tab-frame > .tab-headers {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #e2e8f0;
  }
  .tab-frame > .tab-headers label {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    user-select: none;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
  }
  .tab-frame > .tab-headers label:hover { color: #222; }
  .tab-frame > .tab-headers label.is-active {
    color: #2b6cb0;
    border-bottom-color: #4299e1;
    font-weight: 600;
  }
  .tab-frame > .tab-contents .tab-content { display: none; padding: 16px 0; }
  .tab-frame > .tab-contents .tab-content.is-active { display: block; }

body { background-color: #fff }
    * ::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.1) }
    * ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2) }
    * ::-webkit-scrollbar { width: 10px }
  

      

      [data-gjs-type="wrapper"] {
        min-height: 100vh;
        padding-top: 0.001em;
      }

      .gjs-dashed *[data-gjs-highlightable] {
        outline: 1px dashed rgba(170,170,170,0.7);
        outline-offset: -2px;
      }

      .gjs-selected {
        outline: 2px solid #3b97e3 !important;
        outline-offset: -2px;
      }

      .gjs-selected-parent {
        outline: 2px solid #ffca6f !important
      }

      .gjs-no-select {
        user-select: none;
        -webkit-user-select:none;
        -moz-user-select: none;
      }

      .gjs-freezed {
        opacity: 0.5;
        pointer-events: none;
      }

      .gjs-no-pointer {
        pointer-events: none;
      }

      .gjs-pointer-init {
        pointer-events: initial;
      }

      .gjs-plh-image {
        background: #f5f5f5;
        border: none;
        height: 100px;
        width: 100px;
        display: block;
        outline: 3px solid #ffca6f;
        cursor: pointer;
        outline-offset: -2px
      }

      .gjs-grabbing {
        cursor: grabbing;
        cursor: -webkit-grabbing;
      }

      .gjs-is__grabbing {
        overflow-x: hidden;
      }

      .gjs-is__grabbing,
      .gjs-is__grabbing * {
        cursor: grabbing !important;
      }

      
      * { box-sizing: border-box; } body {margin: 0;}

.bc-row{display:flex;flex-wrap:wrap;width:100%;box-sizing:border-box;min-height:40px;row-gap:16px;column-gap:16px;}

.bc-col{flex-grow:1;flex-shrink:1;flex-basis:0%;min-width:0px;box-sizing:border-box;min-height:40px;}

.bc-col:empty::before{content:"Column — drop here";display:block;padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;text-align:center;color:rgb(170, 170, 170);font-size:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:dashed;border-right-style:dashed;border-bottom-style:dashed;border-left-style:dashed;border-top-color:rgb(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);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;pointer-events:none;}

.bc-btn{display:inline-block;padding-top:10px;padding-right:24px;padding-bottom:10px;padding-left:24px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(37, 99, 235);color:rgb(255, 255, 255);border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source: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;font-size:14px;font-weight:600;cursor:pointer;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;line-height:1.4;}

.bc-btn:hover{opacity:0.88;}

.bc-link{color:rgb(37, 99, 235);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.bc-input{width:100%;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(209, 213, 219);border-right-color:rgb(209, 213, 219);border-bottom-color:rgb(209, 213, 219);border-left-color:rgb(209, 213, 219);border-image-source: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;font-size:14px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);color:rgb(17, 17, 17);box-sizing:border-box;}

.bc-select{width:100%;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(209, 213, 219);border-right-color:rgb(209, 213, 219);border-bottom-color:rgb(209, 213, 219);border-left-color:rgb(209, 213, 219);border-image-source: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;font-size:14px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);color:rgb(17, 17, 17);box-sizing:border-box;}

.bc-textarea{resize:vertical;min-height:80px;}

.bc-label{display:block;font-size:13px;font-weight:500;color:rgb(55, 65, 81);margin-bottom:4px;}

.bc-form{display:flex;flex-direction:column;row-gap:12px;column-gap:12px;}

.bc-container:empty{min-height:60px;}

.bc-container:empty::before{content:"Container — Drop blocks here";display:block;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px;text-align:center;color:rgb(170, 170, 170);font-size:13px;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-top-style:dashed;border-right-style:dashed;border-bottom-style:dashed;border-left-style:dashed;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;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;pointer-events:none;}

.bc-container.lit-edge-near::after{content:"";position:absolute;top:0px;bottom:0px;width:2px;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(59, 130, 246, 0.55);pointer-events:none;z-index:10;}

.bc-container.lit-edge-active::after{content:"";position:absolute;top:0px;bottom:0px;width:2px;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(59, 130, 246, 0.55);pointer-events:none;z-index:10;}

.bc-container.lit-edge-left::after{left:0px;}

.bc-container.lit-edge-right::after{right:0px;}

.bc-container.lit-edge-resizing, .bc-container.lit-edge-resizing *{user-select:none;}

.lit-table-outer{width:100%;box-sizing:border-box;}

.lit-table-inner{padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;overflow-x:auto;}

.lit-table{width:100%;border-collapse:collapse;font-size:14px;font-family:inherit;table-layout:fixed;}

.lit-table th{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);font-weight:600;color:rgb(51, 51, 51);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(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;padding-top:10px;padding-right:14px;padding-bottom:10px;padding-left:14px;text-align:left;position:relative;overflow-x:hidden;overflow-y:hidden;word-break:break-word;}

.lit-table td{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(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;padding-top:8px;padding-right:14px;padding-bottom:8px;padding-left:14px;text-align:left;color:rgb(68, 68, 68);overflow-x:hidden;overflow-y:hidden;word-break:break-word;}

.lit-table tbody tr:nth-child(2n) td{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);}

.col-resize-handle{position:absolute;right:0px;top:0px;width:6px;height:100%;cursor:col-resize;z-index:20;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;user-select:none;}

.col-resize-handle: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:rgba(66, 153, 225, 0.6);}

.col-resize-handle.resizing{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(66, 153, 225, 0.6);}

.lit-custom-html-wrapper{min-height:30px;}

.lit-carousel input[type="radio"]{display:none;}

.lit-carousel-slide{display:none;width:100%;height:100%;align-items:center;justify-content:center;background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;position:absolute;top:0px;left:0px;}

.lit-carousel-slide img{width:100%;height:100%;object-fit:contain;padding-top:12px;padding-right:12px;padding-bottom:12px;padding-left:12px;box-sizing:border-box;display:block;}

.lit-carousel-thumb{display:flex;flex-shrink:0;border-top-width:1.5px;border-top-style:solid;border-top-color:rgb(229, 229, 229);border-right-width:1.5px;border-right-style:solid;border-right-color:rgb(229, 229, 229);border-bottom-width:1.5px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);border-left-width:1.5px;border-left-style:solid;border-left-color:rgb(229, 229, 229);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;cursor:pointer;overflow-x:hidden;overflow-y:hidden;align-items:center;justify-content:center;background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;transition-property:border-color;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-behavior:normal;box-sizing:border-box;}

.lit-carousel-thumb:hover{border-top-color:rgb(166, 139, 74);border-right-color:rgb(166, 139, 74);border-bottom-color:rgb(166, 139, 74);border-left-color:rgb(166, 139, 74);}

.lit-carousel-thumb img{width:100%;height:100%;object-fit:contain;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;box-sizing:border-box;display:block;}

.lit-carousel-thumbs::-webkit-scrollbar{display:none;}

.lit-carousel-thumbs{scrollbar-width:none;}

.lit-product-carousel-nav{display:block;width:100%;box-sizing:border-box;}

.lit-carousel--nav{display:flex;border-top-width:1px;border-top-style:solid;border-top-color:rgb(229, 229, 229);border-right-width:1px;border-right-style:solid;border-right-color:rgb(229, 229, 229);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);border-left-width:1px;border-left-style:solid;border-left-color:rgb(229, 229, 229);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;width:100%;box-sizing:border-box;}

.lit-product-carousel-nav:not(:has(.lit-carousel--nav-left)):not(:has(.lit-carousel--nav-right)) .lit-carousel-thumbstrip .lit-carousel-thumbs{overflow-x:auto !important;overflow-y:hidden !important;transform:none !important;transition-behavior:normal !important;transition-duration:0s !important;transition-timing-function:ease !important;transition-delay:0s !important;transition-property:none !important;}

.lit-carousel--nav .lit-carousel-thumbstrip{position:relative;background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;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-property:transform;transition-duration:0.3s;transition-timing-function:ease;transition-delay:0s;transition-behavior:normal;}

.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%;height:500px;flex-shrink:0;overflow-x:hidden;overflow-y:hidden;position:relative;background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;}

.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-color:rgba(255, 255, 255, 0.82);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;color:rgb(26, 26, 26);font-size:13px;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;border-right-width:medium;border-right-style:none;border-right-color:currentcolor;border-bottom-width:medium;border-bottom-style:none;border-bottom-color:currentcolor;border-left-width:medium;border-left-style:none;border-left-color:currentcolor;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;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-color:rgb(255, 255, 255);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;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-color:rgb(255, 255, 255);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;border-top-width:1px;border-top-style:solid;border-top-color:rgb(229, 229, 229);border-right-width:1px;border-right-style:solid;border-right-color:rgb(229, 229, 229);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);border-left-width:1px;border-left-style:solid;border-left-color:rgb(229, 229, 229);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;box-shadow:rgba(0, 0, 0, 0.13) 0px 1px 5px;cursor:pointer;font-size:11px;color:rgb(26, 26, 26);user-select:none;transition-property:background, box-shadow;transition-duration:0.15s, 0.15s;transition-timing-function:ease, ease;transition-delay:0s, 0s;transition-behavior:normal, normal;box-sizing:border-box;z-index:5;}

.lit-nav-btn:hover{background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;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(229, 229, 229);display:flex;justify-content:center;align-items:center;}

.lit-carousel--nav-bottom .lit-carousel-thumbs{flex-direction:row;padding-top:8px;padding-right:44px;padding-bottom:8px;padding-left:44px;}

.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(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(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-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-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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}

@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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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-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="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="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);}

@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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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 (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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

.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-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;}

.lit-carousel-rh{position:absolute;width:14px;height:14px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);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(85, 85, 85);border-right-color:rgb(85, 85, 85);border-bottom-color:rgb(85, 85, 85);border-left-color:rgb(85, 85, 85);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;z-index:999;box-sizing:border-box;cursor:pointer;}

.lit-carousel-rh: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(85, 85, 85);}

.lit-carousel-rh[data-dir="nw"]{top:-7px;left:-7px;cursor:nw-resize;}

.lit-carousel-rh[data-dir="ne"]{top:-7px;right:-7px;cursor:ne-resize;}

.lit-carousel-rh[data-dir="sw"]{bottom:-7px;left:-7px;cursor:sw-resize;}

.lit-carousel-rh[data-dir="se"]{bottom:-7px;right:-7px;cursor:se-resize;}

.lit-product-carousel-nav img{pointer-events:none;user-select:none;}

.lit-product-carousel-nav .lit-carousel-thumbstrip{overflow-x:visible !important;overflow-y:visible !important;}

.lit-product-carousel-nav:has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav:has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{overflow-x:hidden !important;overflow-y:auto !important;transform:none !important;transition-behavior:normal !important;transition-duration:0s !important;transition-timing-function:ease !important;transition-delay:0s !important;transition-property:none !important;}

.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, .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{display:none !important;}

[data-gjs-type="lit-cat-card"]{cursor:pointer;}

[data-gjs-type="lit-cat-card"] *{pointer-events:none;}

[data-gjs-type="lit-cat-card"][data-cat-strict="1"] *{pointer-events:none !important;}

[data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) img, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg *{pointer-events:auto;}

[data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link *{pointer-events:auto;}

.tab-frame{display:block;position:relative;}

.tab-frame > input[type="radio"]{position:absolute;opacity:0;pointer-events:none;width:0px;height:0px;}

.tab-frame > .tab-headers{display:flex;flex-wrap:wrap;row-gap:0px;column-gap:0px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(226, 232, 240);}

.tab-frame > .tab-headers label{display:inline-block;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;font-size:14px;color:rgb(85, 85, 85);cursor:pointer;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;margin-bottom:-1px;user-select:none;transition-behavior:normal, normal, normal;transition-duration:0.15s, 0.15s, 0.15s;transition-timing-function:ease, ease, ease;transition-delay:0s, 0s, 0s;transition-property:color, border-color, background;}

.tab-frame > .tab-headers label:hover{color:rgb(34, 34, 34);}

.tab-frame > .tab-headers label.is-active{color:rgb(43, 108, 176);border-bottom-color:rgb(66, 153, 225);font-weight:600;}

.tab-frame > .tab-contents .tab-content{display:none;padding-top:16px;padding-right:0px;padding-bottom:16px;padding-left:0px;}

.tab-frame > .tab-contents .tab-content.is-active{display:block;}

body{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:14px;line-height:1.42857;color:rgb(51, 51, 51);background-color:rgb(255, 255, 255);}

* ::-webkit-scrollbar-track{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(0, 0, 0, 0.1);}

* ::-webkit-scrollbar-thumb{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.2);}

* ::-webkit-scrollbar{width:10px;}

[data-gjs-type="wrapper"]{min-height:100vh;padding-top:0.001em;}

.gjs-dashed [data-gjs-highlightable]{outline-color:rgba(170, 170, 170, 0.7);outline-style:dashed;outline-width:1px;outline-offset:-2px;}

.gjs-selected{outline-offset:-2px;outline-color:rgb(59, 151, 227) !important;outline-style:solid !important;outline-width:2px !important;}

.gjs-selected-parent{outline-color:rgb(255, 202, 111) !important;outline-style:solid !important;outline-width:2px !important;}

.gjs-no-select{user-select:none;}

.gjs-freezed{opacity:0.5;pointer-events:none;}

.gjs-no-pointer{pointer-events:none;}

.gjs-pointer-init{pointer-events:initial;}

.gjs-plh-image{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);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;height:100px;width:100px;display:block;outline-color:rgb(255, 202, 111);outline-style:solid;outline-width:3px;cursor:pointer;outline-offset:-2px;}

.gjs-grabbing{cursor:grabbing;}

.gjs-is__grabbing{overflow-x:hidden;}

.gjs-is__grabbing, .gjs-is__grabbing *{cursor:grabbing !important;}

*{box-sizing:border-box;}

.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(5){display:flex;}

.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(6){display:flex;}

.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-thumb:nth-of-type(5){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}

.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-thumb:nth-of-type(6){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-color:rgb(240, 240, 240);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;}

.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-nav--5{display:flex;}

.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-nav--6{display:flex;}

.lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}

.lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}

.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}

.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}

.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}

.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}

.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}

.lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}}

.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}

.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}

.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}

.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}

.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}

.lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}}

.lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}

.lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}

#izz0h4{display:block !important;text-shadow:unset !important;box-shadow:black 0px 0px 5px 0px !important;margin-top:5px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;}

#i2hc73{display:flex !important;width:100% !important;min-height:80px !important;align-items:stretch !important;box-shadow:black 0px 5px 5px 0px !important;background-color:rgb(134, 0, 0) !important;}

#ivth{background-image:none !important;background-repeat:repeat !important;background-position-x:left !important;background-position-y:top !important;background-attachment:scroll !important;background-size:auto !important;background-color:white !important;box-shadow:black 0px 0px 5px 0px !important;}

#iht679{font-weight:600 !important;line-height:130% !important;color:white !important;float:none !important;text-align:left !important;font-family:Oswald, sans-serif !important;font-size:42px !important;padding-top:5px !important;padding-right:50px !important;padding-bottom:0px !important;padding-left:25px !important;letter-spacing:1.2px !important;width:90% !important;margin-top:15px !important;margin-right:0px !important;margin-bottom:20px !important;margin-left:9px !important;}

#if02ks{font-size:15px !important;font-weight:300 !important;line-height:145% !important;color:white !important;float:none !important;text-align:left !important;display:flex !important;padding-top:0px !important;padding-right:150px !important;padding-bottom:0px !important;padding-left:25px !important;width:95% !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:10px !important;}

#ixkwug{width:250px !important;height:50px !important;border-top-width:0px !important;border-right-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;border-top-style:solid !important;border-right-style:solid !important;border-bottom-style:solid !important;border-left-style:solid !important;border-top-color:black !important;border-right-color:black !important;border-bottom-color:black !important;border-left-color:black !important;border-image-source:initial !important;border-image-slice:initial !important;border-image-width:initial !important;border-image-outset:initial !important;border-image-repeat:initial !important;background-color:transparent !important;min-height:65px !important;max-width:300px !important;display:flex !important;float:left !important;justify-content:center !important;top:18px !important;}

#ivyos-2{font-family:Oswald, sans-serif !important;font-size:30px !important;font-weight:400 !important;text-align:center !important;display:block !important;padding-top:0px !important;padding-right:35px !important;padding-bottom:0px !important;padding-left:35px !important;margin-top:0px !important;margin-right:10px !important;margin-bottom:10px !important;margin-left:10px !important;}

#ih69h-2-2{height:auto !important;padding-top:30px !important;padding-right:0px !important;padding-bottom:10px !important;padding-left:0px !important;box-shadow:black 0px 0px 5px 0px !important;margin-top:5px !important;margin-right:auto !important;margin-bottom:0px !important;margin-left:auto !important;}

.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="2"]: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="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);}}

@media (max-width: 992px){.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="2"]: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="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);}}

@media (max-width: 600px){.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-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="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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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="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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media print{*, ::after, ::before{color:rgb(0, 0, 0) !important;text-shadow:none !important;background-image:initial !important;background-position-x:0px !important;background-position-y:0px !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:initial !important;box-shadow:none !important;}}

@media print{a, a:visited{text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}}

@media print{blockquote, pre{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(153, 153, 153);border-right-color:rgb(153, 153, 153);border-bottom-color:rgb(153, 153, 153);border-left-color:rgb(153, 153, 153);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;break-inside:avoid;}}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary{display:block;}

audio, canvas, progress, video{display:inline-block;alignment-baseline:baseline;baseline-shift:0px;baseline-source:auto;}

audio:not([controls]){display:none;height:0px;}

[hidden], template{display:none;}

a:active, a:hover{outline-color:initial;outline-style:initial;outline-width:0px;}

abbr[title]{border-bottom-width:1px;border-bottom-style:dotted;border-bottom-color:currentcolor;}

b, strong{font-weight:700;}

h1{margin-top:0.67em;margin-right:0px;margin-bottom:0.67em;margin-left:0px;font-size:2em;}

mark{color:rgb(0, 0, 0);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, 0);}

sub, sup{position:relative;font-size:75%;line-height:0;alignment-baseline:baseline;baseline-shift:0px;baseline-source:auto;}

sup{top:-0.5em;}

sub{bottom:-0.25em;}

img{max-width:100%;}

svg:not(:root){overflow-x:hidden;overflow-y:hidden;}

figure{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}

hr{margin-top:20px;margin-bottom:20px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-right-style:none;border-bottom-style:none;border-left-style:none;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-width:1px;border-top-style:solid;border-top-color:rgb(238, 238, 238);}

pre{display:block;padding-top:9.5px;padding-right:9.5px;padding-bottom:9.5px;padding-left:9.5px;margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;font-size:13px;line-height:1.42857;color:rgb(51, 51, 51);word-break:break-all;overflow-wrap:break-word;background-color:rgb(245, 245, 245);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(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);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;}

code, kbd, pre, samp{font-family:Menlo, Monaco, Consolas, "Courier New", monospace;}

button, input, optgroup, select, textarea{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-style:inherit;font-variant-ligatures:inherit;font-variant-caps:inherit;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-variant-alternates:inherit;font-variant-position:inherit;font-variant-emoji:inherit;font-weight:inherit;font-stretch:inherit;font-size:inherit;line-height:inherit;font-family:inherit;font-optical-sizing:inherit;font-size-adjust:inherit;font-kerning:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-language-override:inherit;color:inherit;}

button{overflow-x:visible;overflow-y:visible;}

button, select{text-transform:none;}

button, html input[type="button"], input[type="reset"], input[type="submit"]{appearance:button;cursor:pointer;}

button[disabled], html input[disabled]{cursor:default;}

input[type="checkbox"], input[type="radio"]{margin-top:4px;margin-right:0px;margin-bottom:0px;margin-left:0px;line-height:normal;}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button{height:auto;}

input[type="search"]{appearance:none;}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration{appearance:none;}

fieldset{min-width:0px;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;}

legend{display:block;width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom:20px;font-size:21px;line-height:inherit;color:rgb(51, 51, 51);border-top-width:0px;border-right-width:0px;border-left-width:0px;border-top-style:none;border-right-style:none;border-left-style:none;border-top-color:currentcolor;border-right-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;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);}

textarea{overflow-x:auto;overflow-y:auto;}

table{background-color:transparent;}

td, th{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}

::after, ::before{box-sizing:border-box;}

html{font-size:10px;}

button, input, select, textarea{font-family:inherit;font-size:inherit;line-height:inherit;}

a{color:rgb(51, 122, 183);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

a:focus, a:hover{color:rgb(35, 82, 124);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

a:focus{outline-style:auto;outline-width:5px;outline-offset:-2px;}

[role="button"]{cursor:pointer;}

.h1{margin-top:20px;margin-bottom:10px;}

.h2{margin-top:20px;margin-bottom:10px;}

.h3{font-family:inherit;font-weight:500;line-height:1.1;color:inherit;}

.h4{margin-top:10px;margin-bottom:10px;}

.h5{margin-top:10px;margin-bottom:10px;}

.h6, h1, h2, h3, h4, h5, h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit;}

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small{font-weight:400;line-height:1;color:rgb(119, 119, 119);}

.h3, h1, h2, h3{margin-top:20px;margin-bottom:10px;}

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small{font-size:65%;}

.h6, h4, h5, h6{margin-top:10px;margin-bottom:10px;}

.h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small{font-size:75%;}

.h1, h1{font-size:36px;}

.h2, h2{font-size:30px;}

.h3, h3{font-size:24px;}

.h4, h4{font-size:18px;}

.h5, h5{font-size:14px;}

.h6, h6{font-size:12px;}

p{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}

.small, small{font-size:85%;}

.mark, mark{padding-top:0.2em;padding-right:0.2em;padding-bottom:0.2em;padding-left:0.2em;background-color:rgb(252, 248, 227);}

ol, ul{margin-top:0px;margin-bottom:10px;}

ol ol, ol ul, ul ol, ul ul{margin-bottom:0px;}

dl{margin-top:0px;margin-bottom:20px;}

dd, dt{line-height:1.42857;}

dd{margin-left:0px;}

abbr[data-original-title], abbr[title]{cursor:help;border-bottom-width:1px;border-bottom-style:dotted;border-bottom-color:rgb(119, 119, 119);}

blockquote{padding-top:10px;padding-right:20px;padding-bottom:10px;padding-left:20px;margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;font-size:17.5px;border-left-width:5px;border-left-style:solid;border-left-color:rgb(238, 238, 238);}

blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child{margin-bottom:0px;}

blockquote .small, blockquote footer, blockquote small{display:block;font-size:80%;line-height:1.42857;color:rgb(119, 119, 119);}

blockquote .small::before, blockquote footer::before, blockquote small::before{content:"— ";}

address{margin-bottom:20px;font-style:normal;line-height:1.42857;}

code{padding-top:2px;padding-right:4px;padding-bottom:2px;padding-left:4px;font-size:90%;color:rgb(199, 37, 78);background-color:rgb(249, 242, 244);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

kbd{padding-top:2px;padding-right:4px;padding-bottom:2px;padding-left:4px;font-size:90%;color:rgb(255, 255, 255);background-color:rgb(51, 51, 51);border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;box-shadow:rgba(0, 0, 0, 0.25) 0px -1px 0px inset;}

kbd kbd{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:100%;font-weight:700;box-shadow:none;}

pre code{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:inherit;color:inherit;white-space-collapse:preserve;text-wrap-mode:wrap;background-color:transparent;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

@media (min-width: 768px){.container{width:750px;}}

@media (min-width: 992px){.container{width:970px;}}

@media (min-width: 1120px){.container{width:1170px;}}

caption{padding-top:8px;padding-bottom:8px;color:rgb(119, 119, 119);text-align:left;}

table col[class*="col-"]{position:static;display:table-column;float:none;}

table td[class*="col-"], table th[class*="col-"]{position:static;display:table-cell;float:none;}

input[type="file"]{display:block;}

input[type="range"]{display:block;width:100%;}

select[multiple], select[size]{height:auto;}

input[type="file"]:focus, input[type="checkbox"]:focus, input[type="radio"]:focus{outline-style:auto;outline-width:5px;outline-offset:-2px;}

output{display:block;padding-top:7px;font-size:14px;line-height:1.42857;color:rgb(85, 85, 85);}

fieldset[disabled] input[type="checkbox"], fieldset[disabled] input[type="radio"], input[type="checkbox"].disabled, input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="radio"][disabled]{cursor:not-allowed;}

.fade{opacity:0;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:linear;transition-delay:0s;transition-property:opacity;}

.nav{padding-left:0px;margin-bottom:0px;list-style-position:initial;list-style-image:initial;list-style-type:none;}

.nav > li{position:relative;display:block;}

.nav > li > a{position:relative;display:block;padding-top:10px;padding-right:15px;padding-bottom:10px;padding-left:15px;}

.nav > li > a:focus, .nav > li > a:hover{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-color:rgb(238, 238, 238);}

.nav > li.disabled > a{color:rgb(119, 119, 119);}

.nav > li.disabled > a:focus, .nav > li.disabled > a:hover{color:rgb(119, 119, 119);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;cursor:not-allowed;background-color:transparent;}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover{background-color:rgb(238, 238, 238);border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.nav .nav-divider{height:1px;margin-top:9px;margin-right:0px;margin-bottom:9px;margin-left:0px;overflow-x:hidden;overflow-y:hidden;background-color:rgb(229, 229, 229);}

.nav > li > a > img{max-width:none;}

.tab-content > .tab-pane{display:none;}

.tab-content > .active{display:block;}

.container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header{margin-right:-15px;margin-left:-15px;}

@media (min-width: 768px){.container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header{margin-right:0px;margin-left:0px;}}

@media (min-width: 768px){.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand{margin-left:-15px;}}

.container .jumbotron, .container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

@media screen and (min-width: 768px){.container .jumbotron, .container-fluid .jumbotron{padding-right:60px;padding-left:60px;}}

@keyframes progress-bar-stripes{0%{background-position-x:40px;background-position-y:0px;}100%{background-position-x:0px;background-position-y:0px;}}

.modal.fade .modal-dialog{transition-behavior:normal;transition-duration:0.3s;transition-timing-function:ease-out;transition-delay:0s;transition-property:transform;transform:translate(0px, -25%);}

.modal-backdrop.fade{opacity:0;}

.btn-toolbar::after{clear:both;}

.btn-toolbar::before{display:table;content:" ";}

.clearfix::after{clear:both;}

.clearfix::before{display:table;content:" ";}

.container-fluid::after{clear:both;}

.container-fluid::before{display:table;content:" ";}

.container::after{clear:both;}

.container::before{display:table;content:" ";}

.modal-footer::after{clear:both;}

.modal-footer::before{display:table;content:" ";}

.modal-header::after{clear:both;}

.modal-header::before{display:table;content:" ";}

.nav::after{clear:both;}

.nav::before{display:table;content:" ";}

.navbar-collapse::after{clear:both;}

.navbar-collapse::before{display:table;content:" ";}

.navbar-header::after{clear:both;}

.navbar-header::before{display:table;content:" ";}

.navbar::after{clear:both;}

.navbar::before{display:table;content:" ";}

.pager::after{clear:both;}

.pager::before{display:table;content:" ";}

.panel-body::after{clear:both;}

.panel-body::before{display:table;content:" ";}

.row::after{display:table;content:" ";}

.row::before, .btn-group-vertical > .btn-group::after, .btn-group-vertical > .btn-group::before, .dl-horizontal dd::after, .dl-horizontal dd::before, .form-horizontal .form-group::after, .form-horizontal .form-group::before{display:table;content:" ";}

.row::after, .btn-group-vertical > .btn-group::after, .dl-horizontal dd::after, .form-horizontal .form-group::after{clear:both;}

[contenteditable="true"]{pointer-events:none !important;}

#itdlj{color:rgb(57, 57, 57) !important;font-style:normal !important;font-variant-ligatures:normal !important;font-variant-caps:normal !important;letter-spacing:normal !important;text-align:center !important;text-indent:0px !important;text-transform:none !important;white-space-collapse:collapse !important;text-wrap-mode:wrap !important;word-spacing:0px !important;text-decoration-style:initial !important;text-decoration-color:initial !important;margin-top:0px !important;margin-right:25px !important;margin-bottom:0px !important;margin-left:25px !important;background-color:rgb(255, 255, 255) !important;font-family:Oswald, sans-serif !important;font-size:16px !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:35px !important;padding-left:0px !important;box-shadow:black 0px 0px 10px 0px !important;}

#i7idol{margin-top:20px !important;margin-right:30px !important;margin-bottom:5px !important;margin-left:30px !important;}

#iyw6je{margin-top:20px !important;margin-right:20px !important;margin-bottom:0px !important;margin-left:20px !important;}

#ivzuqd{font-size:16px !important;font-weight:600 !important;line-height:1.2 !important;padding-top:10px !important;padding-right:15px !important;padding-bottom:10px !important;padding-left:15px !important;font-family:Oswald, sans-serif !important;}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}}

@media (max-width: 480px){.background{font-size:9px;}}

@media (max-width: 480px){div.header ul li{display:inline-block;font-size:11px;margin-top:1px;margin-right:4px;margin-bottom:1px;margin-left:0px;padding-top:0px;padding-right:4px;padding-bottom:0px;padding-left:0px;}}

@media (max-width: 480px){.subheader ul li a{font-size:12px;padding-top:8px;padding-right:6px;padding-bottom:8px;padding-left:6px;}}

@media (max-width: 480px){.item-details h3{font-size:1.7em;}}

@media (max-width: 480px){.mobile_only .item-title h3{font-size:1.6em;}}

@media (max-width: 480px){.description, div.tabs .tab-content .tabcontent{font-size:1.2em;line-height:1.5;}}

@media (max-width: 480px){.lit-carousel--nav .lit-carousel-main{height:260px;}}

@media (max-width: 480px){div.tabs .tab-headers label{font-size:14px;padding-top:12px;padding-right:10px;padding-bottom:12px;padding-left:10px;}}

@media (max-width: 480px){.categoryboxes li, .categoryboxes li:nth-child(3n), .categoryboxes li:nth-child(2n){width:100%;margin-right:0px;}}

@media (max-width: 480px){.boxlink{font-size:18px;height:44px;line-height:40px;}}

@media (max-width: 480px){.promo-grid{grid-template-columns:1fr;}}

@media (max-width: 480px){div.footer.footer ul{font-size:13px;}}

@media (max-width: 480px){.lit-pay-footer{padding-top:18px;padding-right:12px;padding-bottom:14px;padding-left:12px;}}

@media (max-width: 480px){.lit-pay-footer-logo .logo-img{max-height:42px;max-width:150px;}}

@media (max-width: 480px){.lit-pay-footer-name{font-size:10px;letter-spacing:0.24em;}}

@media (max-width: 480px){.lit-pay-row{row-gap:6px;column-gap:6px;}}

@media (max-width: 480px){.lit-pay-logo{height:18px;max-width:50px;}}

@media print{a[href]::after{content:" (" attr(href) ")";}}

@media print{abbr[title]::after{content:" (" attr(title) ")";}}

@media print{a[href^="javascript:"]::after, a[href^="#"]::after{content:"";}}

@media print{thead{display:table-header-group;}}

@media print{img, tr{break-inside:avoid;}}

@media print{img{max-width:100% !important;}}

@media print{h2, h3{break-after:avoid;}}

#iy5qd7{box-shadow:black 0px 0px 5px 0px !important;height:75px !important;}

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;}

.background *{box-sizing:border-box;}

.background{font-size:10px;background-color:rgb(255, 255, 255);}

.header{display:block;}

.more_items_content{display:block;}

.customhtml, div.subheader, div.boxtitle, div.boxcontent, div.footer{display:block;}

.mobile_only{display:none;}

.clear{clear:both;}

.background a{text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-decoration-thickness:auto;}

h1, h2, h3, h4, h5, h6{width:100%;font-family:Montserrat, sans-serif;font-weight:700;}

.page{width:100%;font-family:Montserrat, sans-serif;background-color:rgba(0, 0, 0, 0);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;color:rgb(26, 26, 26);}

div.row{width:100%;max-width:1000px;margin-top:auto;margin-right:auto;margin-bottom:auto;margin-left:auto;padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;box-sizing:border-box;}

.cols{background-color:rgb(255, 255, 255);background-position-x:center;background-position-y:center;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;display:flex;}

.col-wrapper{background-color:white;background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;margin-top:3px;margin-right:0px;margin-bottom:0px;margin-left:0px;box-shadow:black 0px 0px 0px 0px;padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:5px;}

.center-col{float:left;}

div.centerpane.center-col{width:100%;max-width:1000px;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:20px;box-sizing:border-box;}

.header-wrapper{background-color:rgb(255, 255, 255);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;position:relative;border-top-width:0px;border-top-style:solid;border-top-color:white;border-right-width:0px;border-right-style:solid;border-right-color:white;border-bottom-width:0px;border-bottom-style:solid;border-bottom-color:white;border-left-width:0px;border-left-style:solid;border-left-color:white;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;}

.store-logo, [data-gjs-type="lit-store-logo"]{display:inline-flex;align-items:center;justify-content:center;position:relative;z-index:1;width:100px;height:100px;overflow-x:hidden;overflow-y:hidden;flex-shrink:0;font-size:18px;font-weight:600;color:rgb(26, 26, 26);text-align:center;}

.homelink > img, .store-logo > img, [data-gjs-type="lit-store-logo"] > img, .homelink .logo-img{display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;cursor:pointer;width:100% !important;height:100% !important;max-width:100% !important;max-height:100% !important;object-fit:contain !important;}

div.header{float:none;position:relative;background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;height:114px;display:flex;align-items:center;justify-content:space-between;row-gap:16px;column-gap:16px;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;box-sizing:border-box;}

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:auto;font-size:12px;font-family:Montserrat, sans-serif;font-weight:400;list-style-position:outside;list-style-image:none;list-style-type:none;text-align:right;text-transform:none;z-index:1;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;}

div.header ul li{display:inline-block;margin-top:0px;margin-right:10px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:0px;border-right-width:1px;border-right-style:solid;border-right-color:rgba(0, 0, 0, 0.15);}

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-top-style:none;border-top-color:currentcolor;border-right-width:0px;border-right-style:none;border-right-color:currentcolor;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;border-left-width:0px;border-left-style:none;border-left-color:currentcolor;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;}

div.header ul li a{color:rgb(26, 26, 26);}

div.header ul li a:hover{color:rgb(166, 139, 74);text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-decoration-thickness:auto;}

.subheader-wrapper{background-color:white;background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;border-right-width:medium;border-right-style:none;border-right-color:currentcolor;border-bottom-width:medium;border-bottom-style:none;border-bottom-color:currentcolor;border-left-width:medium;border-left-style:none;border-left-color:currentcolor;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:3px;margin-left:0px;box-shadow:black 0px 0px 0px 0px;}

.subheader{position:relative;z-index:10;background-color:rgb(17, 17, 17);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;height:50px;}

.subheader ul{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;list-style-position:outside;list-style-image:none;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-top-style:none;border-top-color:currentcolor;border-right-width:medium;border-right-style:none;border-right-color:currentcolor;border-bottom-width:medium;border-bottom-style:none;border-bottom-color:currentcolor;border-left-width:medium;border-left-style:none;border-left-color:currentcolor;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;height:100%;display:inline-block !important;}

.subheader ul li:hover a{color:rgb(255, 255, 255);text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-decoration-thickness:auto;background-color:rgb(166, 139, 74);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;}

.subheader ul li a{font-size:13px;text-transform:uppercase;font-weight:600;letter-spacing:0.08em;color:rgb(255, 255, 255);font-family:Montserrat, sans-serif;padding-top:13px;padding-right:15px;padding-bottom:13px;padding-left:15px;display:block;height:100%;}

ul.nav li{display:none;}

.alt_image_gallery{width:65%;float:left;padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:0px;}

.item-details{display:block;}

.item-details h3{color:rgb(26, 26, 26);font-family:"Cormorant Garamond", serif;font-size:2.4em;font-weight:600;margin-top:0px;margin-right:0px;margin-bottom:24px;margin-left:0px;line-height:1.15;}

.item-details::after{clear:both;content:" ";}

.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(1), .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(2), .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(3), .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(4), .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(5), .lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(6){display:flex;}

.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-thumb:nth-of-type(1), .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-thumb:nth-of-type(2), .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-thumb:nth-of-type(3), .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-thumb:nth-of-type(4), .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-thumb:nth-of-type(5), .lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-thumb:nth-of-type(6){border-top-color:rgb(166, 139, 74);border-right-color:rgb(166, 139, 74);border-bottom-color:rgb(166, 139, 74);border-left-color:rgb(166, 139, 74);background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;}

.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-nav--1, .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-nav--2, .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-nav--3, .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-nav--4, .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-nav--5, .lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-nav--6{display:flex;}

.center-col .boxtitle{background-color:rgba(0, 0, 0, 0);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;color:rgb(0, 0, 0);height:auto;font-size:1.5em;font-family:Montserrat, sans-serif;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;margin-top:0px;margin-right:0px;margin-left:0px;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:0px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);margin-bottom:0px !important;}

.boxtitle{margin-top:10px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:8px;padding-right:10px;padding-bottom:8px;padding-left:10px;background-color:rgba(0, 0, 0, 0);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;color:rgb(26, 26, 26);font-family:Montserrat, sans-serif;font-size:1.5em;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;height:auto;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.boxcontent{padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background-color:rgba(0, 0, 0, 0);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;color:rgb(26, 26, 26);font-size:1.1em;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;}

.boxcontent a{color:rgb(26, 26, 26);}

.description .row{width:100%;}

.tab_wrapper{background-color:rgba(0, 0, 0, 0);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;overflow-x:hidden;overflow-y:hidden;}

div.tabs{margin-top:30px;margin-right:auto;margin-bottom:0px;margin-left:auto;display:block;width:100%;max-width:100%;box-sizing:border-box;}

div.tabs > input[type="radio"]{display:none;}

div.tabs .tab-headers{display:flex;flex-wrap:wrap;row-gap:2px;column-gap:2px;width:100%;box-sizing:border-box;}

div.tabs .tab-headers label{flex-grow:1;flex-shrink:1;flex-basis:0px;min-width:0px;min-height:60px;padding-top:14px;padding-right:8px;padding-bottom:14px;padding-left:8px;font-size:14px;font-family:Montserrat, sans-serif;text-align:center;color:rgb(255, 255, 255);background-color:rgb(26, 26, 26);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;border-top-width:1px;border-top-style:solid;border-top-color:rgb(26, 26, 26);border-right-width:1px;border-right-style:solid;border-right-color:rgb(26, 26, 26);border-left-width:1px;border-left-style:solid;border-left-color:rgb(26, 26, 26);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;cursor:pointer;transition-property:all;transition-duration:0.3s;transition-timing-function:ease;transition-delay:0s;transition-behavior:normal;position:relative;top:1px;line-height:1.25;text-wrap-mode:wrap;white-space-collapse:collapse;word-break:break-word;box-sizing:border-box;display:flex;align-items:center;justify-content:center;}

#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"], div.tabs .tab-headers label:hover{min-height:63px;background-color:rgb(255, 255, 255);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;border-top-width:1px;border-top-style:solid;border-top-color:rgb(229, 229, 229);border-right-width:1px;border-right-style:solid;border-right-color:rgb(229, 229, 229);border-left-width:1px;border-left-style:solid;border-left-color:rgb(229, 229, 229);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;color:rgb(26, 26, 26);}

#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){display:block;}

#itab1:checked ~ .tab-contents .tab-content:nth-child(1) .tabcontent, #itab2:checked ~ .tab-contents .tab-content:nth-child(2) .tabcontent, #itab3:checked ~ .tab-contents .tab-content:nth-child(3) .tabcontent, #itab4:checked ~ .tab-contents .tab-content:nth-child(4) .tabcontent{animation-name:tabIn;animation-duration:1.2s;animation-timing-function:ease;animation-delay:0s;animation-iteration-count:1;animation-direction:normal;animation-fill-mode:none;animation-play-state:running;}

div.tabs .tab-contents{width:100%;max-width:100%;box-sizing:border-box;}

div.tabs .tab-contents .tab-content{clear:both;padding-top:20px;padding-right:10px;padding-bottom:20px;padding-left:10px;border-top-width:1px;border-top-style:solid;border-top-color:rgb(229, 229, 229);background-color:rgb(255, 255, 255);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;display:none;width:100%;max-width:100%;box-sizing:border-box;min-width:0px;}

div.tabs .tab-content .tabcontent{text-wrap-mode:wrap;white-space-collapse:collapse;overflow-wrap:break-word;overflow-x:hidden;width:100%;max-width:100%;min-width:0px;box-sizing:border-box;font-size:1.1em;line-height:1.55;display:block;font-family:Montserrat, sans-serif;color:rgb(26, 26, 26);text-align:left;}

div.tabs .tab-content .tabcontent a{color:rgb(26, 26, 26);text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-decoration-thickness:auto;}

div.tabs .tab-content .tabcontent img{max-width:100%;height:auto;}

div.tabs .tab-content .tabcontent table{max-width:100%;}

.center-col .more_items{font-size:26px;font-weight:normal;}

.categoryboxes{padding-top:20px;padding-right:20px;padding-bottom:0px;padding-left:20px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;list-style-position:outside;list-style-image:none;list-style-type:none;width:100%;max-width:1000px;box-sizing:border-box;background-color:rgb(255, 255, 255);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;box-shadow:black 0px 0px 10px 0px;}

.categoryboxes li{float:left;width:306px;height:196px;alignment-baseline:baseline;baseline-source:auto;margin-right:20px;margin-bottom:20px;position:relative;}

.categoryboxes li:nth-child(3n){margin-right:0px;}

.categoryboxes li a{display:block;width:100%;height:100%;}

.categoryboxes li img{width:100%;height:100%;object-fit:cover;display:block;cursor:pointer;}

.boxlink{margin-bottom:0px;color:rgb(255, 255, 255);width:100%;height:58px;line-height:53px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-family:Montserrat, sans-serif;font-size:18px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;text-align:center;text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-decoration-thickness:auto;bottom:0px;left:0px;position:absolute;border-top-width:3px;border-top-style:solid;border-top-color:rgb(229, 229, 229);border-right-width:3px;border-right-style:solid;border-right-color:rgb(229, 229, 229);border-bottom-width:3px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);border-left-width:3px;border-left-style:solid;border-left-color:rgb(229, 229, 229);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;box-sizing:border-box;}

.fade:hover, .categoryboxes li:hover .fade{background-color:rgb(166, 139, 74);color:rgb(255, 255, 255);}

.footer-wrapper{background-color:white;background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;border-top-width:20px;border-top-style:solid;border-top-color:rgb(250, 250, 250);min-height:25px;height:60px;margin-top:10px;margin-right:0px;margin-bottom:0px;margin-left:0px;}

div.footer.footer{background-color:rgb(250, 250, 250);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;color:rgb(26, 26, 26);font-size:1.3em;position:relative;}

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:13px;font-family:Montserrat, sans-serif;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;list-style-position:outside;list-style-image:none;list-style-type:none;position:absolute;text-align:center;top:22px;}

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(229, 229, 229);}

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-top-style:none;border-top-color:currentcolor;border-right-width:0px;border-right-style:none;border-right-color:currentcolor;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;border-left-width:0px;border-left-style:none;border-left-color:currentcolor;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;}

div.footer.footer ul li a{color:rgb(26, 26, 26);}

div.footer.footer ul li a:hover{color:rgb(166, 139, 74);text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-decoration-thickness:auto;}

.lit-pay-footer{background-color:white;background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;text-align:center;font-family:Montserrat, sans-serif;padding-top:0px;padding-right:20px;padding-bottom:20px;padding-left:20px;border-top-width:0px;border-top-style:solid;border-top-color:white;border-right-width:0px;border-right-style:solid;border-right-color:white;border-bottom-width:0px;border-bottom-style:solid;border-bottom-color:white;border-left-width:0px;border-left-style:solid;border-left-color:white;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;}

.lit-pay-footer-inner{max-width:334px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}

.lit-pay-footer .lit-pay-footer-logo{position:static;top:auto;left:auto;overflow-x:visible;overflow-y:visible;width:100px;height:100px;display:inline-flex;align-items:center;justify-content:center;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;font-size:18px;font-weight:600;color:rgb(26, 26, 26);text-align:center;}

.lit-pay-footer-logo .logo-img{max-height:56px;max-width:180px;width:auto;height:auto;object-fit:contain;display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}

.lit-pay-footer-name{font-size:11px;letter-spacing:0.32em;color:rgb(26, 26, 26);font-weight:600;text-transform:uppercase;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-family:Verdana, Geneva, sans-serif;}

.lit-pay-row{display:flex;justify-content:center;align-items:center;row-gap:8px;column-gap:8px;flex-wrap:wrap;margin-top:5px;margin-right:0px;margin-bottom:0px;margin-left:0px;}

.lit-pay-logo{height:22px;width:auto;max-width:60px;object-fit:contain;display:block;}

#id38xc{width:100%;height:100%;object-fit:contain;display:block;}

#iub822{display:block;width:100%;height:100%;}

.more_items.boxtitle{text-align:center;margin-top:20px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-family:Oswald, sans-serif;letter-spacing:1.2px;font-weight:300;font-size:22px;}

.centerpane.center-col{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;}

.tab-headers{text-align:center;font-family:Oswald, sans-serif;font-weight:500;font-size:14px;border-top-width:1px;border-top-style:solid;border-top-color:black;border-right-width:1px;border-right-style:solid;border-right-color:black;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:black;border-left-width:1px;border-left-style:solid;border-left-color:black;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;}

#ica03o{font-weight:300 !important;background-color:rgb(0, 0, 0) !important;max-width:1000px !important;width:auto !important;text-align:center !important;display:flex !important;justify-content:center !important;color:rgb(255, 51, 51) !important;font-family:Oswald, sans-serif !important;letter-spacing:1.2px !important;padding-top:20px !important;padding-right:10px !important;padding-bottom:10px !important;padding-left:10px !important;font-size:24px !important;box-shadow:black 0px 5px 10px 0px !important;margin-top:5px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;}

#il3474{font-size:24px !important;font-weight:500 !important;line-height:1.2 !important;background-color:rgb(0, 0, 0) !important;max-width:1000px !important;width:auto !important;text-align:center !important;display:flex !important;justify-content:center !important;color:black !important;padding-top:5px !important;padding-right:10px !important;padding-bottom:20px !important;padding-left:10px !important;box-shadow:black 0px 0px 10px 0px !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;}

#i7s23e{color:white;font-family:Oswald, sans-serif;letter-spacing:1.2px;font-weight:400;font-size:24px;}

.text.tabcontent{font-size:14px;}

.product-gallery.product-carousel.lit-product-carousel-nav{margin-top:20px;margin-right:0px;margin-bottom:25px;margin-left:0px;}

#ixev2{display:block !important;}

#iffi44{display:block !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;}

.product-title.item-title{font-size:32px;color:black;text-align:center;background-color:rgb(242, 198, 207);box-shadow:black 0px 0px 10px 0px;text-shadow:unset;font-family:Oswald, sans-serif;font-weight:500;padding-top:0px;padding-right:20px;padding-bottom:10px;padding-left:20px;}

.lit-pay-footer-logo.store-logo.logo-wrap{width:334px;}

#i4dks5{flex-grow:50 !important;flex-shrink:1 !important;flex-basis:0% !important;min-width:0px !important;padding-top:8px !important;padding-right:8px !important;padding-bottom:8px !important;padding-left:8px !important;max-width:40% !important;box-shadow:unset !important;background-color:rgb(134, 0, 0) !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:10px !important;}

#ivalaq{flex-grow:50 !important;flex-shrink:1 !important;flex-basis:0% !important;min-width:0px !important;background-image:none !important;background-repeat:repeat !important;background-position-x:left !important;background-position-y:top !important;background-attachment:scroll !important;background-size:auto !important;box-shadow:unset !important;background-color:rgb(134, 0, 0) !important;padding-top:8px !important;padding-right:8px !important;padding-bottom:8px !important;padding-left:8px !important;margin-top:0px !important;margin-right:10px !important;margin-bottom:0px !important;margin-left:0px !important;}

.header.row{height:60px;box-shadow:black 0px 0px 10px 0px;}

.tab-content{font-size:14px;border-top-width:1px;border-top-style:solid;border-top-color:black;border-right-width:1px;border-right-style:solid;border-right-color:black;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:black;border-left-width:1px;border-left-style:solid;border-left-color:black;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;}

.cols.row{box-shadow:black 0px 0px 10px 0px;}

.subheader.row{box-shadow:black 0px 0px 10px 0px;padding-top:3px;padding-right:0px;padding-bottom:0px;padding-left:0px;}

#ip89h{background-color:rgb(255, 255, 255) !important;min-height:300px !important;margin-top:0px !important;margin-right:auto !important;margin-bottom:10px !important;margin-left:auto !important;}

.bc-rl-handle{background-color:rgb(134, 0, 0);box-shadow:unset;}

@keyframes tabIn{0%{opacity:0;}100%{opacity:1;}}

dfn{font-style:italic;}

small{font-size:80%;}

input{line-height:normal;}

optgroup{font-weight:700;}

dt{font-weight:700;}

.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto;}

.row{margin-right:-15px;margin-left:-15px;}

th{text-align:left;}

label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700;}

.fade.in{opacity:1;}

.jumbotron .container{max-width:100%;}

span[property="description"]{display:initial !important;}

#iktrh{width:100% !important;}

#ikjqp{background-color:rgb(134, 0, 0) !important;}

#iiwzsu{margin-top:15px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;}

#iqan64{max-width:90% !important;min-height:90% !important;}

#i702vg{max-width:90% !important;min-height:90% !important;}

#iui4d2{max-width:90% !important;min-height:90% !important;}

#id7wc7{max-width:90% !important;min-height:90% !important;}

#i4a10a{max-width:90% !important;min-height:90% !important;}

#ivq72t{max-width:90% !important;min-height:90% !important;}

#ihud6i{display:block !important;float:none !important;}

.description{clear:both;background-color:white;background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;border-right-width:0px;border-right-style:none;border-right-color:currentcolor;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;border-left-width:0px;border-left-style:none;border-left-color:currentcolor;border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;font-size:16px;line-height:1.55;font-family:Oswald, sans-serif;color:rgb(26, 26, 26);text-align:center;padding-top:10px;padding-right:20px;padding-bottom:10px;padding-left:20px;font-weight:400;box-shadow:black 0px 0px 15px 0px;margin-top:0px;margin-right:30px;margin-bottom:5px;margin-left:30px;}

.description ul{padding-left:30px;margin-top:12px;margin-right:0px;margin-bottom:12px;margin-left:0px;}

.description ul li{list-style-position:outside;list-style-image:none;list-style-type:disc;display:list-item;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}

.description a{text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-decoration-thickness:auto;color:rgb(26, 26, 26) !important;}

.description img{max-width:100% !important;height:auto !important;}

.description table{max-width:100% !important;}

.Product-Title{font-family:Oswald, sans-serif;font-size:22px;font-weight:500;text-align:center;margin-top:0px;margin-right:50px;margin-bottom:0px;margin-left:50px;padding-top:0px;padding-right:10px;padding-bottom:5px;padding-left:10px;}

.no-subscribe{display:none !important;}

#elm-22 .fa::before{background-color:transparent !important;background-image:none !important;border-top-color:transparent !important;border-right-color:transparent !important;border-bottom-color:transparent !important;border-left-color:transparent !important;border-top-width:0px !important;border-right-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;border-top-style:none !important;border-right-style:none !important;border-bottom-style:none !important;border-left-style:none !important;box-shadow:none !important;color:rgb(51, 51, 51) !important;font-size:18px !important;margin-left:0px !important;margin-right:0px !important;padding-left:12px !important;padding-top:6px !important;padding-right:12px !important;padding-bottom:6px !important;}

@media only screen and (min-width: 992px){#elm-22-export .big-image-box{height:280px !important;border-bottom-width:0px !important;border-bottom-style:none !important;}}

@media only screen and (max-width: 991px) and (min-width: 576px){#elm-22-export .big-image-box{height:400px !important;position:static !important;}}

@media only screen and (max-width: 575px){#elm-22-export .big-image-box{height:400px !important;position:static !important;}}

.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto;}

.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-xs-12{width:100%;}

@media (min-width: 576px){.col-sm-12{width:100%;}}

@media (min-width: 992px){.col-md-12{width:100%;}}

@media (min-width: 1120px){.col-lg-12{width:100%;}}

.checkbox-inline.disabled{cursor:not-allowed;}

.radio-inline.disabled, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio-inline{cursor:not-allowed;}

.checkbox.disabled label, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .radio label{cursor:not-allowed;}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn{cursor:not-allowed;box-shadow:none;opacity:0.65;}

a.btn.disabled, fieldset[disabled] a.btn{pointer-events:none;}

.btn-default.disabled.focus{background-color:rgb(255, 255, 255);border-top-color:rgb(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);}

.btn-default.disabled:focus{background-color:rgb(255, 255, 255);border-top-color:rgb(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);}

.btn-default.disabled:hover, .btn-default[disabled].focus, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover{background-color:rgb(255, 255, 255);border-top-color:rgb(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);}

.btn-primary.disabled.focus{background-color:rgb(51, 122, 183);border-top-color:rgb(46, 109, 164);border-right-color:rgb(46, 109, 164);border-bottom-color:rgb(46, 109, 164);border-left-color:rgb(46, 109, 164);}

.btn-primary.disabled:focus{background-color:rgb(51, 122, 183);border-top-color:rgb(46, 109, 164);border-right-color:rgb(46, 109, 164);border-bottom-color:rgb(46, 109, 164);border-left-color:rgb(46, 109, 164);}

.btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover{background-color:rgb(51, 122, 183);border-top-color:rgb(46, 109, 164);border-right-color:rgb(46, 109, 164);border-bottom-color:rgb(46, 109, 164);border-left-color:rgb(46, 109, 164);}

.btn-success.disabled.focus{background-color:rgb(92, 184, 92);border-top-color:rgb(76, 174, 76);border-right-color:rgb(76, 174, 76);border-bottom-color:rgb(76, 174, 76);border-left-color:rgb(76, 174, 76);}

.btn-success.disabled:focus{background-color:rgb(92, 184, 92);border-top-color:rgb(76, 174, 76);border-right-color:rgb(76, 174, 76);border-bottom-color:rgb(76, 174, 76);border-left-color:rgb(76, 174, 76);}

.btn-success.disabled:hover, .btn-success[disabled].focus, .btn-success[disabled]:focus, .btn-success[disabled]:hover, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:hover{background-color:rgb(92, 184, 92);border-top-color:rgb(76, 174, 76);border-right-color:rgb(76, 174, 76);border-bottom-color:rgb(76, 174, 76);border-left-color:rgb(76, 174, 76);}

.btn-info.disabled.focus{background-color:rgb(91, 192, 222);border-top-color:rgb(70, 184, 218);border-right-color:rgb(70, 184, 218);border-bottom-color:rgb(70, 184, 218);border-left-color:rgb(70, 184, 218);}

.btn-info.disabled:focus{background-color:rgb(91, 192, 222);border-top-color:rgb(70, 184, 218);border-right-color:rgb(70, 184, 218);border-bottom-color:rgb(70, 184, 218);border-left-color:rgb(70, 184, 218);}

.btn-info.disabled:hover, .btn-info[disabled].focus, .btn-info[disabled]:focus, .btn-info[disabled]:hover, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:hover{background-color:rgb(91, 192, 222);border-top-color:rgb(70, 184, 218);border-right-color:rgb(70, 184, 218);border-bottom-color:rgb(70, 184, 218);border-left-color:rgb(70, 184, 218);}

.btn-warning.disabled.focus{background-color:rgb(240, 173, 78);border-top-color:rgb(238, 162, 54);border-right-color:rgb(238, 162, 54);border-bottom-color:rgb(238, 162, 54);border-left-color:rgb(238, 162, 54);}

.btn-warning.disabled:focus{background-color:rgb(240, 173, 78);border-top-color:rgb(238, 162, 54);border-right-color:rgb(238, 162, 54);border-bottom-color:rgb(238, 162, 54);border-left-color:rgb(238, 162, 54);}

.btn-warning.disabled:hover, .btn-warning[disabled].focus, .btn-warning[disabled]:focus, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:hover{background-color:rgb(240, 173, 78);border-top-color:rgb(238, 162, 54);border-right-color:rgb(238, 162, 54);border-bottom-color:rgb(238, 162, 54);border-left-color:rgb(238, 162, 54);}

.btn-danger.disabled.focus{background-color:rgb(217, 83, 79);border-top-color:rgb(212, 63, 58);border-right-color:rgb(212, 63, 58);border-bottom-color:rgb(212, 63, 58);border-left-color:rgb(212, 63, 58);}

.btn-danger.disabled:focus{background-color:rgb(217, 83, 79);border-top-color:rgb(212, 63, 58);border-right-color:rgb(212, 63, 58);border-bottom-color:rgb(212, 63, 58);border-left-color:rgb(212, 63, 58);}

.btn-danger.disabled:hover, .btn-danger[disabled].focus, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:hover{background-color:rgb(217, 83, 79);border-top-color:rgb(212, 63, 58);border-right-color:rgb(212, 63, 58);border-bottom-color:rgb(212, 63, 58);border-left-color:rgb(212, 63, 58);}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover{color:rgb(119, 119, 119);}

.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;cursor:not-allowed;background-color:transparent;background-image:none;}

.nav-tabs{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);}

.nav-tabs > li{float:left;margin-bottom:-1px;}

.nav-tabs > li > a{margin-right:2px;line-height:1.42857;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:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;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:0px;border-bottom-left-radius:0px;}

.nav-tabs > li > a:hover{border-top-color:rgb(238, 238, 238);border-right-color:rgb(238, 238, 238);border-bottom-color:rgb(221, 221, 221);border-left-color:rgb(238, 238, 238);}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover{color:rgb(85, 85, 85);cursor:default;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(221, 221, 221);border-right-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;border-bottom-color:transparent;}

.nav-tabs.nav-justified{width:100%;border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;}

.nav-tabs.nav-justified > li{float:none;}

.nav-tabs.nav-justified > li > a{margin-right:0px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.nav-tabs.nav-justified > .dropdown .dropdown-menu{top:auto;left:auto;}

@media (min-width: 768px){.nav-tabs.nav-justified > li{display:table-cell;width:1%;}}

@media (min-width: 768px){.nav-tabs.nav-justified > li > a{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover{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;}

@media (min-width: 768px){.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover{border-bottom-color:rgb(255, 255, 255);}}

.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0px;border-top-right-radius:0px;}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:focus, .navbar-default .navbar-nav > .disabled > a:hover{color:rgb(204, 204, 204);background-color:transparent;}

@media (max-width: 767px){.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover{color:rgb(204, 204, 204);background-color:transparent;}}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:focus, .navbar-inverse .navbar-nav > .disabled > a:hover{color:rgb(68, 68, 68);background-color:transparent;}

@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover{color:rgb(68, 68, 68);background-color:transparent;}}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover{color:rgb(119, 119, 119);cursor:not-allowed;background-color:rgb(255, 255, 255);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);}

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span{color:rgb(119, 119, 119);cursor:not-allowed;background-color:rgb(255, 255, 255);}

.list-group-item.disabled{color:rgb(119, 119, 119);cursor:not-allowed;background-color:rgb(238, 238, 238);}

.list-group-item.disabled:focus{color:rgb(119, 119, 119);cursor:not-allowed;background-color:rgb(238, 238, 238);}

.list-group-item.disabled:hover{color:rgb(119, 119, 119);cursor:not-allowed;background-color:rgb(238, 238, 238);}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading{color:inherit;}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text{color:rgb(119, 119, 119);}

@media (max-width: 575px){.hidden-xs{display:none !important;}}

@media (min-width: 576px) and (max-width: 991px){.hidden-sm{display:none !important;}}

@media (min-width: 992px) and (max-width: 1119px){.hidden-md{display:none !important;}}

@media (min-width: 1120px){.hidden-lg{display:none !important;}}

#inkfrog_credit a{font-family:Arial;font-weight:normal;font-size:14px;color:rgb(0, 0, 0);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

#inkfrog_credit a:hover, #inkfrog_credit a:active{color:rgb(0, 0, 0);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.inkfrog_promo img{max-width:100%;}

.col-lg-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-lg-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-md-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-sm-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}

.col-xs-1{width:8.33333%;}

.col-xs-10{width:83.3333%;}

.col-xs-11{width:91.6667%;}

.col-xs-2{width:16.6667%;}

.col-xs-3{width:25%;}

.col-xs-4{width:33.3333%;}

.col-xs-5{width:41.6667%;}

.col-xs-6{width:50%;}

.col-xs-7{width:58.3333%;}

.col-xs-8{width:66.6667%;}

.col-xs-9{width:75%;}

@media (min-width: 576px){.col-sm-1{width:8.33333%;}}

@media (min-width: 576px){.col-sm-10{width:83.3333%;}}

@media (min-width: 576px){.col-sm-11{width:91.6667%;}}

@media (min-width: 576px){.col-sm-2{width:16.6667%;}}

@media (min-width: 576px){.col-sm-3{width:25%;}}

@media (min-width: 576px){.col-sm-4{width:33.3333%;}}

@media (min-width: 576px){.col-sm-5{width:41.6667%;}}

@media (min-width: 576px){.col-sm-6{width:50%;}}

@media (min-width: 576px){.col-sm-7{width:58.3333%;}}

@media (min-width: 576px){.col-sm-8{width:66.6667%;}}

@media (min-width: 576px){.col-sm-9{width:75%;}}

@media (min-width: 992px){.col-md-1{width:8.33333%;}}

@media (min-width: 992px){.col-md-10{width:83.3333%;}}

@media (min-width: 992px){.col-md-11{width:91.6667%;}}

@media (min-width: 992px){.col-md-2{width:16.6667%;}}

@media (min-width: 992px){.col-md-3{width:25%;}}

@media (min-width: 992px){.col-md-4{width:33.3333%;}}

@media (min-width: 992px){.col-md-5{width:41.6667%;}}

@media (min-width: 992px){.col-md-6{width:50%;}}

@media (min-width: 992px){.col-md-7{width:58.3333%;}}

@media (min-width: 992px){.col-md-8{width:66.6667%;}}

@media (min-width: 992px){.col-md-9{width:75%;}}

@media (min-width: 1120px){.col-lg-1{width:8.33333%;}}

@media (min-width: 1120px){.col-lg-10{width:83.3333%;}}

@media (min-width: 1120px){.col-lg-11{width:91.6667%;}}

@media (min-width: 1120px){.col-lg-2{width:16.6667%;}}

@media (min-width: 1120px){.col-lg-3{width:25%;}}

@media (min-width: 1120px){.col-lg-4{width:33.3333%;}}

@media (min-width: 1120px){.col-lg-5{width:41.6667%;}}

@media (min-width: 1120px){.col-lg-6{width:50%;}}

@media (min-width: 1120px){.col-lg-7{width:58.3333%;}}

@media (min-width: 1120px){.col-lg-8{width:66.6667%;}}

@media (min-width: 1120px){.col-lg-9{width:75%;}}

.homelink{display:inline-flex;align-items:center;justify-content:center;position:relative;z-index:1;width:100px;height:100px;overflow-x:hidden;overflow-y:hidden;flex-shrink:0;font-size:18px;font-weight:600;color:rgb(26, 26, 26);text-align:center;}

.storepromo_wrapper{padding-top:20px;padding-right:10px;padding-bottom:20px;padding-left:10px;width:100%;background-color:rgb(255, 255, 255);background-position-x:0%;background-position-y:0%;background-repeat:repeat;background-attachment:scroll;background-image:none;background-size:auto;background-origin:padding-box;background-clip:border-box;}

.storepromo{width:calc(50% - 20px);max-width:469px;aspect-ratio:469 / 215;height:auto;display:block;float:left;position:relative;margin-top:10px;margin-right:10px;margin-bottom:10px;margin-left:10px;box-sizing:border-box;}

.storepromo img{width:100%;height:100%;object-fit:cover;}

.lit-pay-footer-copy{font-size:11px;color:rgb(136, 136, 136);margin-top:12px;font-weight:400;letter-spacing:0.04em;}

.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:right;background-position-y:center;background-repeat:no-repeat;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;background-size:120px auto;line-height:27px;}

#iz42{height:65px;}

#iogf{box-shadow:unset;}

@media (max-width: 480px){.lit-pay-footer-copy{font-size:10px;}}

@media print{.navbar{display:none;}}

@media print{.btn > .caret, .dropup > .btn > .caret{border-top-color:rgb(0, 0, 0) !important;}}

@media print{.label{border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(0, 0, 0);border-right-color:rgb(0, 0, 0);border-bottom-color:rgb(0, 0, 0);border-left-color:rgb(0, 0, 0);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}}

@media print{.table{border-collapse:collapse !important;}}

@media print{.table td, .table th{background-color:rgb(255, 255, 255) !important;}}

@media print{.table-bordered td, .table-bordered th{border-top-width:1px !important;border-right-width:1px !important;border-bottom-width:1px !important;border-left-width:1px !important;border-top-style:solid !important;border-right-style:solid !important;border-bottom-style:solid !important;border-left-style:solid !important;border-top-color:rgb(221, 221, 221) !important;border-right-color:rgb(221, 221, 221) !important;border-bottom-color:rgb(221, 221, 221) !important;border-left-color:rgb(221, 221, 221) !important;border-image-source:initial !important;border-image-slice:initial !important;border-image-width:initial !important;border-image-outset:initial !important;border-image-repeat:initial !important;}}

.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;}

.glyphicon-asterisk::before{content:"*";}

.glyphicon-plus::before{content:"+";}

.glyphicon-eur::before{content:"€";}

.glyphicon-euro::before{content:"€";}

.glyphicon-minus::before{content:"−";}

.glyphicon-cloud::before{content:"☁";}

.glyphicon-envelope::before{content:"✉";}

.glyphicon-pencil::before{content:"✏";}

.glyphicon-glass::before{content:"";}

.glyphicon-music::before{content:"";}

.glyphicon-search::before{content:"";}

.glyphicon-heart::before{content:"";}

.glyphicon-star::before{content:"";}

.glyphicon-star-empty::before{content:"";}

.glyphicon-user::before{content:"";}

.glyphicon-film::before{content:"";}

.glyphicon-th-large::before{content:"";}

.glyphicon-th::before{content:"";}

.glyphicon-th-list::before{content:"";}

.glyphicon-ok::before{content:"";}

.glyphicon-remove::before{content:"";}

.glyphicon-zoom-in::before{content:"";}

.glyphicon-zoom-out::before{content:"";}

.glyphicon-off::before{content:"";}

.glyphicon-signal::before{content:"";}

.glyphicon-cog::before{content:"";}

.glyphicon-trash::before{content:"";}

.glyphicon-home::before{content:"";}

.glyphicon-file::before{content:"";}

.glyphicon-time::before{content:"";}

.glyphicon-road::before{content:"";}

.glyphicon-download-alt::before{content:"";}

.glyphicon-download::before{content:"";}

.glyphicon-upload::before{content:"";}

.glyphicon-inbox::before{content:"";}

.glyphicon-play-circle::before{content:"";}

.glyphicon-repeat::before{content:"";}

.glyphicon-refresh::before{content:"";}

.glyphicon-list-alt::before{content:"";}

.glyphicon-lock::before{content:"";}

.glyphicon-flag::before{content:"";}

.glyphicon-headphones::before{content:"";}

.glyphicon-volume-off::before{content:"";}

.glyphicon-volume-down::before{content:"";}

.glyphicon-volume-up::before{content:"";}

.glyphicon-qrcode::before{content:"";}

.glyphicon-barcode::before{content:"";}

.glyphicon-tag::before{content:"";}

.glyphicon-tags::before{content:"";}

.glyphicon-book::before{content:"";}

.glyphicon-bookmark::before{content:"";}

.glyphicon-print::before{content:"";}

.glyphicon-camera::before{content:"";}

.glyphicon-font::before{content:"";}

.glyphicon-bold::before{content:"";}

.glyphicon-italic::before{content:"";}

.glyphicon-text-height::before{content:"";}

.glyphicon-text-width::before{content:"";}

.glyphicon-align-left::before{content:"";}

.glyphicon-align-center::before{content:"";}

.glyphicon-align-right::before{content:"";}

.glyphicon-align-justify::before{content:"";}

.glyphicon-list::before{content:"";}

.glyphicon-indent-left::before{content:"";}

.glyphicon-indent-right::before{content:"";}

.glyphicon-facetime-video::before{content:"";}

.glyphicon-picture::before{content:"";}

.glyphicon-map-marker::before{content:"";}

.glyphicon-adjust::before{content:"";}

.glyphicon-tint::before{content:"";}

.glyphicon-edit::before{content:"";}

.glyphicon-share::before{content:"";}

.glyphicon-check::before{content:"";}

.glyphicon-move::before{content:"";}

.glyphicon-step-backward::before{content:"";}

.glyphicon-fast-backward::before{content:"";}

.glyphicon-backward::before{content:"";}

.glyphicon-play::before{content:"";}

.glyphicon-pause::before{content:"";}

.glyphicon-stop::before{content:"";}

.glyphicon-forward::before{content:"";}

.glyphicon-fast-forward::before{content:"";}

.glyphicon-step-forward::before{content:"";}

.glyphicon-eject::before{content:"";}

.glyphicon-chevron-left::before{content:"";}

.glyphicon-chevron-right::before{content:"";}

.glyphicon-plus-sign::before{content:"";}

.glyphicon-minus-sign::before{content:"";}

.glyphicon-remove-sign::before{content:"";}

.glyphicon-ok-sign::before{content:"";}

.glyphicon-question-sign::before{content:"";}

.glyphicon-info-sign::before{content:"";}

.glyphicon-screenshot::before{content:"";}

.glyphicon-remove-circle::before{content:"";}

.glyphicon-ok-circle::before{content:"";}

.glyphicon-ban-circle::before{content:"";}

.glyphicon-arrow-left::before{content:"";}

.glyphicon-arrow-right::before{content:"";}

.glyphicon-arrow-up::before{content:"";}

.glyphicon-arrow-down::before{content:"";}

.glyphicon-share-alt::before{content:"";}

.glyphicon-resize-full::before{content:"";}

.glyphicon-resize-small::before{content:"";}

.glyphicon-exclamation-sign::before{content:"";}

.glyphicon-gift::before{content:"";}

.glyphicon-leaf::before{content:"";}

.glyphicon-fire::before{content:"";}

.glyphicon-eye-open::before{content:"";}

.glyphicon-eye-close::before{content:"";}

.glyphicon-warning-sign::before{content:"";}

.glyphicon-plane::before{content:"";}

.glyphicon-calendar::before{content:"";}

.glyphicon-random::before{content:"";}

.glyphicon-comment::before{content:"";}

.glyphicon-magnet::before{content:"";}

.glyphicon-chevron-up::before{content:"";}

.glyphicon-chevron-down::before{content:"";}

.glyphicon-retweet::before{content:"";}

.glyphicon-shopping-cart::before{content:"";}

.glyphicon-folder-close::before{content:"";}

.glyphicon-folder-open::before{content:"";}

.glyphicon-resize-vertical::before{content:"";}

.glyphicon-resize-horizontal::before{content:"";}

.glyphicon-hdd::before{content:"";}

.glyphicon-bullhorn::before{content:"";}

.glyphicon-bell::before{content:"";}

.glyphicon-certificate::before{content:"";}

.glyphicon-thumbs-up::before{content:"";}

.glyphicon-thumbs-down::before{content:"";}

.glyphicon-hand-right::before{content:"";}

.glyphicon-hand-left::before{content:"";}

.glyphicon-hand-up::before{content:"";}

.glyphicon-hand-down::before{content:"";}

.glyphicon-circle-arrow-right::before{content:"";}

.glyphicon-circle-arrow-left::before{content:"";}

.glyphicon-circle-arrow-up::before{content:"";}

.glyphicon-circle-arrow-down::before{content:"";}

.glyphicon-globe::before{content:"";}

.glyphicon-wrench::before{content:"";}

.glyphicon-tasks::before{content:"";}

.glyphicon-filter::before{content:"";}

.glyphicon-briefcase::before{content:"";}

.glyphicon-fullscreen::before{content:"";}

.glyphicon-dashboard::before{content:"";}

.glyphicon-paperclip::before{content:"";}

.glyphicon-heart-empty::before{content:"";}

.glyphicon-link::before{content:"";}

.glyphicon-phone::before{content:"";}

.glyphicon-pushpin::before{content:"";}

.glyphicon-usd::before{content:"";}

.glyphicon-gbp::before{content:"";}

.glyphicon-sort::before{content:"";}

.glyphicon-sort-by-alphabet::before{content:"";}

.glyphicon-sort-by-alphabet-alt::before{content:"";}

.glyphicon-sort-by-order::before{content:"";}

.glyphicon-sort-by-order-alt::before{content:"";}

.glyphicon-sort-by-attributes::before{content:"";}

.glyphicon-sort-by-attributes-alt::before{content:"";}

.glyphicon-unchecked::before{content:"";}

.glyphicon-expand::before{content:"";}

.glyphicon-collapse-down::before{content:"";}

.glyphicon-collapse-up::before{content:"";}

.glyphicon-log-in::before{content:"";}

.glyphicon-flash::before{content:"";}

.glyphicon-log-out::before{content:"";}

.glyphicon-new-window::before{content:"";}

.glyphicon-record::before{content:"";}

.glyphicon-save::before{content:"";}

.glyphicon-open::before{content:"";}

.glyphicon-saved::before{content:"";}

.glyphicon-import::before{content:"";}

.glyphicon-export::before{content:"";}

.glyphicon-send::before{content:"";}

.glyphicon-floppy-disk::before{content:"";}

.glyphicon-floppy-saved::before{content:"";}

.glyphicon-floppy-remove::before{content:"";}

.glyphicon-floppy-save::before{content:"";}

.glyphicon-floppy-open::before{content:"";}

.glyphicon-credit-card::before{content:"";}

.glyphicon-transfer::before{content:"";}

.glyphicon-cutlery::before{content:"";}

.glyphicon-header::before{content:"";}

.glyphicon-compressed::before{content:"";}

.glyphicon-earphone::before{content:"";}

.glyphicon-phone-alt::before{content:"";}

.glyphicon-tower::before{content:"";}

.glyphicon-stats::before{content:"";}

.glyphicon-sd-video::before{content:"";}

.glyphicon-hd-video::before{content:"";}

.glyphicon-subtitles::before{content:"";}

.glyphicon-sound-stereo::before{content:"";}

.glyphicon-sound-dolby::before{content:"";}

.glyphicon-sound-5-1::before{content:"";}

.glyphicon-sound-6-1::before{content:"";}

.glyphicon-sound-7-1::before{content:"";}

.glyphicon-copyright-mark::before{content:"";}

.glyphicon-registration-mark::before{content:"";}

.glyphicon-cloud-download::before{content:"";}

.glyphicon-cloud-upload::before{content:"";}

.glyphicon-tree-conifer::before{content:"";}

.glyphicon-tree-deciduous::before{content:"";}

.glyphicon-cd::before{content:"";}

.glyphicon-save-file::before{content:"";}

.glyphicon-open-file::before{content:"";}

.glyphicon-level-up::before{content:"";}

.glyphicon-copy::before{content:"";}

.glyphicon-paste::before{content:"";}

.glyphicon-alert::before{content:"";}

.glyphicon-equalizer::before{content:"";}

.glyphicon-king::before{content:"";}

.glyphicon-queen::before{content:"";}

.glyphicon-pawn::before{content:"";}

.glyphicon-bishop::before{content:"";}

.glyphicon-knight::before{content:"";}

.glyphicon-baby-formula::before{content:"";}

.glyphicon-tent::before{content:"⛺";}

.glyphicon-blackboard::before{content:"";}

.glyphicon-bed::before{content:"";}

.glyphicon-apple::before{content:"";}

.glyphicon-erase::before{content:"";}

.glyphicon-hourglass::before{content:"⌛";}

.glyphicon-lamp::before{content:"";}

.glyphicon-duplicate::before{content:"";}

.glyphicon-piggy-bank::before{content:"";}

.glyphicon-scissors::before{content:"";}

.glyphicon-bitcoin::before{content:"";}

.glyphicon-btc::before{content:"";}

.glyphicon-xbt::before{content:"";}

.glyphicon-yen::before{content:"¥";}

.glyphicon-jpy::before{content:"¥";}

.glyphicon-ruble::before{content:"₽";}

.glyphicon-rub::before{content:"₽";}

.glyphicon-scale::before{content:"";}

.glyphicon-ice-lolly::before{content:"";}

.glyphicon-ice-lolly-tasted::before{content:"";}

.glyphicon-education::before{content:"";}

.glyphicon-option-horizontal::before{content:"";}

.glyphicon-option-vertical::before{content:"";}

.glyphicon-menu-hamburger::before{content:"";}

.glyphicon-modal-window::before{content:"";}

.glyphicon-oil::before{content:"";}

.glyphicon-grain::before{content:"";}

.glyphicon-sunglasses::before{content:"";}

.glyphicon-text-size::before{content:"";}

.glyphicon-text-color::before{content:"";}

.glyphicon-text-background::before{content:"";}

.glyphicon-object-align-top::before{content:"";}

.glyphicon-object-align-bottom::before{content:"";}

.glyphicon-object-align-horizontal::before{content:"";}

.glyphicon-object-align-left::before{content:"";}

.glyphicon-object-align-vertical::before{content:"";}

.glyphicon-object-align-right::before{content:"";}

.glyphicon-triangle-right::before{content:"";}

.glyphicon-triangle-left::before{content:"";}

.glyphicon-triangle-bottom::before{content:"";}

.glyphicon-triangle-top::before{content:"";}

.glyphicon-console::before{content:"";}

.glyphicon-superscript::before{content:"";}

.glyphicon-subscript::before{content:"";}

.glyphicon-menu-left::before{content:"";}

.glyphicon-menu-right::before{content:"";}

.glyphicon-menu-down::before{content:"";}

.glyphicon-menu-up::before{content:"";}

.img-responsive, .carousel-inner > .item > a > img, .carousel-inner > .item > img, .thumbnail a > img, .thumbnail > img{display:block;max-width:100%;height:auto;}

.img-rounded{border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;line-height:1.42857;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(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;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;transition-behavior:normal;transition-duration:0.2s;transition-timing-function:ease-in-out;transition-delay:0s;transition-property:all;}

.img-circle{border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;}

.sr-only{position:absolute;width:1px;height:1px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:-1px;margin-right:-1px;margin-bottom:-1px;margin-left:-1px;overflow-x:hidden;overflow-y:hidden;clip:rect(0px, 0px, 0px, 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;}

.sr-only-focusable:active{position:static;width:auto;height:auto;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;overflow-x:visible;overflow-y:visible;clip:auto;}

.sr-only-focusable:focus{position:static;width:auto;height:auto;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;overflow-x:visible;overflow-y:visible;clip:auto;}

.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4;}

@media (min-width: 768px){.lead{font-size:21px;}}

.text-left{text-align:left;}

.text-right{text-align:right;}

.text-center{text-align:center;}

.text-justify{text-align:justify;}

.text-nowrap{white-space-collapse:collapse;text-wrap-mode:nowrap;}

.text-lowercase{text-transform:lowercase;}

.text-uppercase{text-transform:uppercase;}

.text-capitalize{text-transform:capitalize;}

.text-muted{color:rgb(119, 119, 119);}

.text-primary{color:rgb(51, 122, 183);}

a.text-primary:focus, a.text-primary:hover{color:rgb(40, 96, 144);}

.text-success{color:rgb(60, 118, 61);}

a.text-success:focus, a.text-success:hover{color:rgb(43, 84, 44);}

.text-info{color:rgb(49, 112, 143);}

a.text-info:focus, a.text-info:hover{color:rgb(36, 82, 105);}

.text-warning{color:rgb(138, 109, 59);}

a.text-warning:focus, a.text-warning:hover{color:rgb(102, 81, 44);}

.text-danger{color:rgb(169, 68, 66);}

a.text-danger:focus, a.text-danger:hover{color:rgb(132, 53, 52);}

.bg-primary{color:rgb(255, 255, 255);background-color:rgb(51, 122, 183);}

a.bg-primary:focus, a.bg-primary:hover{background-color:rgb(40, 96, 144);}

.bg-success{background-color:rgb(223, 240, 216);}

a.bg-success:focus, a.bg-success:hover{background-color:rgb(193, 226, 179);}

.bg-info{background-color:rgb(217, 237, 247);}

a.bg-info:focus, a.bg-info:hover{background-color:rgb(175, 217, 238);}

.bg-warning{background-color:rgb(252, 248, 227);}

a.bg-warning:focus, a.bg-warning:hover{background-color:rgb(247, 236, 181);}

.bg-danger{background-color:rgb(242, 222, 222);}

a.bg-danger:focus, a.bg-danger:hover{background-color:rgb(228, 185, 185);}

.page-header{padding-bottom:9px;margin-top:40px;margin-right:0px;margin-bottom:20px;margin-left:0px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(238, 238, 238);}

.list-unstyled{padding-left:0px;list-style-position:initial;list-style-image:initial;list-style-type:none;}

.list-inline{padding-left:0px;margin-left:-5px;list-style-position:initial;list-style-image:initial;list-style-type:none;}

.list-inline > li{display:inline-block;padding-right:5px;padding-left:5px;}

@media (min-width: 768px){.dl-horizontal dt{float:left;width:160px;overflow-x:hidden;overflow-y:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space-collapse:collapse;text-wrap-mode:nowrap;}}

@media (min-width: 768px){.dl-horizontal dd{margin-left:180px;}}

.initialism{font-size:90%;text-transform:uppercase;}

.blockquote-reverse, blockquote.pull-right{padding-right:15px;padding-left:0px;text-align:right;border-right-width:5px;border-right-style:solid;border-right-color:rgb(238, 238, 238);border-left-width:0px;border-left-style:none;border-left-color:currentcolor;}

.blockquote-reverse .small::before, .blockquote-reverse footer::before, .blockquote-reverse small::before, blockquote.pull-right .small::before, blockquote.pull-right footer::before, blockquote.pull-right small::before{content:"";}

.blockquote-reverse .small::after, .blockquote-reverse footer::after, .blockquote-reverse small::after, blockquote.pull-right .small::after, blockquote.pull-right footer::after, blockquote.pull-right small::after{content:" —";}

.pre-scrollable{max-height:340px;overflow-y:scroll;}

.col-xs-pull-12{right:100%;}

.col-xs-pull-11{right:91.6667%;}

.col-xs-pull-10{right:83.3333%;}

.col-xs-pull-9{right:75%;}

.col-xs-pull-8{right:66.6667%;}

.col-xs-pull-7{right:58.3333%;}

.col-xs-pull-6{right:50%;}

.col-xs-pull-5{right:41.6667%;}

.col-xs-pull-4{right:33.3333%;}

.col-xs-pull-3{right:25%;}

.col-xs-pull-2{right:16.6667%;}

.col-xs-pull-1{right:8.33333%;}

.col-xs-pull-0{right:auto;}

.col-xs-push-12{left:100%;}

.col-xs-push-11{left:91.6667%;}

.col-xs-push-10{left:83.3333%;}

.col-xs-push-9{left:75%;}

.col-xs-push-8{left:66.6667%;}

.col-xs-push-7{left:58.3333%;}

.col-xs-push-6{left:50%;}

.col-xs-push-5{left:41.6667%;}

.col-xs-push-4{left:33.3333%;}

.col-xs-push-3{left:25%;}

.col-xs-push-2{left:16.6667%;}

.col-xs-push-1{left:8.33333%;}

.col-xs-push-0{left:auto;}

.col-xs-offset-12{margin-left:100%;}

.col-xs-offset-11{margin-left:91.6667%;}

.col-xs-offset-10{margin-left:83.3333%;}

.col-xs-offset-9{margin-left:75%;}

.col-xs-offset-8{margin-left:66.6667%;}

.col-xs-offset-7{margin-left:58.3333%;}

.col-xs-offset-6{margin-left:50%;}

.col-xs-offset-5{margin-left:41.6667%;}

.col-xs-offset-4{margin-left:33.3333%;}

.col-xs-offset-3{margin-left:25%;}

.col-xs-offset-2{margin-left:16.6667%;}

.col-xs-offset-1{margin-left:8.33333%;}

.col-xs-offset-0{margin-left:0px;}

@media (min-width: 576px){.col-sm-pull-12{right:100%;}}

@media (min-width: 576px){.col-sm-pull-11{right:91.6667%;}}

@media (min-width: 576px){.col-sm-pull-10{right:83.3333%;}}

@media (min-width: 576px){.col-sm-pull-9{right:75%;}}

@media (min-width: 576px){.col-sm-pull-8{right:66.6667%;}}

@media (min-width: 576px){.col-sm-pull-7{right:58.3333%;}}

@media (min-width: 576px){.col-sm-pull-6{right:50%;}}

@media (min-width: 576px){.col-sm-pull-5{right:41.6667%;}}

@media (min-width: 576px){.col-sm-pull-4{right:33.3333%;}}

@media (min-width: 576px){.col-sm-pull-3{right:25%;}}

@media (min-width: 576px){.col-sm-pull-2{right:16.6667%;}}

@media (min-width: 576px){.col-sm-pull-1{right:8.33333%;}}

@media (min-width: 576px){.col-sm-pull-0{right:auto;}}

@media (min-width: 576px){.col-sm-push-12{left:100%;}}

@media (min-width: 576px){.col-sm-push-11{left:91.6667%;}}

@media (min-width: 576px){.col-sm-push-10{left:83.3333%;}}

@media (min-width: 576px){.col-sm-push-9{left:75%;}}

@media (min-width: 576px){.col-sm-push-8{left:66.6667%;}}

@media (min-width: 576px){.col-sm-push-7{left:58.3333%;}}

@media (min-width: 576px){.col-sm-push-6{left:50%;}}

@media (min-width: 576px){.col-sm-push-5{left:41.6667%;}}

@media (min-width: 576px){.col-sm-push-4{left:33.3333%;}}

@media (min-width: 576px){.col-sm-push-3{left:25%;}}

@media (min-width: 576px){.col-sm-push-2{left:16.6667%;}}

@media (min-width: 576px){.col-sm-push-1{left:8.33333%;}}

@media (min-width: 576px){.col-sm-push-0{left:auto;}}

@media (min-width: 576px){.col-sm-offset-12{margin-left:100%;}}

@media (min-width: 576px){.col-sm-offset-11{margin-left:91.6667%;}}

@media (min-width: 576px){.col-sm-offset-10{margin-left:83.3333%;}}

@media (min-width: 576px){.col-sm-offset-9{margin-left:75%;}}

@media (min-width: 576px){.col-sm-offset-8{margin-left:66.6667%;}}

@media (min-width: 576px){.col-sm-offset-7{margin-left:58.3333%;}}

@media (min-width: 576px){.col-sm-offset-6{margin-left:50%;}}

@media (min-width: 576px){.col-sm-offset-5{margin-left:41.6667%;}}

@media (min-width: 576px){.col-sm-offset-4{margin-left:33.3333%;}}

@media (min-width: 576px){.col-sm-offset-3{margin-left:25%;}}

@media (min-width: 576px){.col-sm-offset-2{margin-left:16.6667%;}}

@media (min-width: 576px){.col-sm-offset-1{margin-left:8.33333%;}}

@media (min-width: 576px){.col-sm-offset-0{margin-left:0px;}}

@media (min-width: 992px){.col-md-pull-12{right:100%;}}

@media (min-width: 992px){.col-md-pull-11{right:91.6667%;}}

@media (min-width: 992px){.col-md-pull-10{right:83.3333%;}}

@media (min-width: 992px){.col-md-pull-9{right:75%;}}

@media (min-width: 992px){.col-md-pull-8{right:66.6667%;}}

@media (min-width: 992px){.col-md-pull-7{right:58.3333%;}}

@media (min-width: 992px){.col-md-pull-6{right:50%;}}

@media (min-width: 992px){.col-md-pull-5{right:41.6667%;}}

@media (min-width: 992px){.col-md-pull-4{right:33.3333%;}}

@media (min-width: 992px){.col-md-pull-3{right:25%;}}

@media (min-width: 992px){.col-md-pull-2{right:16.6667%;}}

@media (min-width: 992px){.col-md-pull-1{right:8.33333%;}}

@media (min-width: 992px){.col-md-pull-0{right:auto;}}

@media (min-width: 992px){.col-md-push-12{left:100%;}}

@media (min-width: 992px){.col-md-push-11{left:91.6667%;}}

@media (min-width: 992px){.col-md-push-10{left:83.3333%;}}

@media (min-width: 992px){.col-md-push-9{left:75%;}}

@media (min-width: 992px){.col-md-push-8{left:66.6667%;}}

@media (min-width: 992px){.col-md-push-7{left:58.3333%;}}

@media (min-width: 992px){.col-md-push-6{left:50%;}}

@media (min-width: 992px){.col-md-push-5{left:41.6667%;}}

@media (min-width: 992px){.col-md-push-4{left:33.3333%;}}

@media (min-width: 992px){.col-md-push-3{left:25%;}}

@media (min-width: 992px){.col-md-push-2{left:16.6667%;}}

@media (min-width: 992px){.col-md-push-1{left:8.33333%;}}

@media (min-width: 992px){.col-md-push-0{left:auto;}}

@media (min-width: 992px){.col-md-offset-12{margin-left:100%;}}

@media (min-width: 992px){.col-md-offset-11{margin-left:91.6667%;}}

@media (min-width: 992px){.col-md-offset-10{margin-left:83.3333%;}}

@media (min-width: 992px){.col-md-offset-9{margin-left:75%;}}

@media (min-width: 992px){.col-md-offset-8{margin-left:66.6667%;}}

@media (min-width: 992px){.col-md-offset-7{margin-left:58.3333%;}}

@media (min-width: 992px){.col-md-offset-6{margin-left:50%;}}

@media (min-width: 992px){.col-md-offset-5{margin-left:41.6667%;}}

@media (min-width: 992px){.col-md-offset-4{margin-left:33.3333%;}}

@media (min-width: 992px){.col-md-offset-3{margin-left:25%;}}

@media (min-width: 992px){.col-md-offset-2{margin-left:16.6667%;}}

@media (min-width: 992px){.col-md-offset-1{margin-left:8.33333%;}}

@media (min-width: 992px){.col-md-offset-0{margin-left:0px;}}

@media (min-width: 1120px){.col-lg-pull-12{right:100%;}}

@media (min-width: 1120px){.col-lg-pull-11{right:91.6667%;}}

@media (min-width: 1120px){.col-lg-pull-10{right:83.3333%;}}

@media (min-width: 1120px){.col-lg-pull-9{right:75%;}}

@media (min-width: 1120px){.col-lg-pull-8{right:66.6667%;}}

@media (min-width: 1120px){.col-lg-pull-7{right:58.3333%;}}

@media (min-width: 1120px){.col-lg-pull-6{right:50%;}}

@media (min-width: 1120px){.col-lg-pull-5{right:41.6667%;}}

@media (min-width: 1120px){.col-lg-pull-4{right:33.3333%;}}

@media (min-width: 1120px){.col-lg-pull-3{right:25%;}}

@media (min-width: 1120px){.col-lg-pull-2{right:16.6667%;}}

@media (min-width: 1120px){.col-lg-pull-1{right:8.33333%;}}

@media (min-width: 1120px){.col-lg-pull-0{right:auto;}}

@media (min-width: 1120px){.col-lg-push-12{left:100%;}}

@media (min-width: 1120px){.col-lg-push-11{left:91.6667%;}}

@media (min-width: 1120px){.col-lg-push-10{left:83.3333%;}}

@media (min-width: 1120px){.col-lg-push-9{left:75%;}}

@media (min-width: 1120px){.col-lg-push-8{left:66.6667%;}}

@media (min-width: 1120px){.col-lg-push-7{left:58.3333%;}}

@media (min-width: 1120px){.col-lg-push-6{left:50%;}}

@media (min-width: 1120px){.col-lg-push-5{left:41.6667%;}}

@media (min-width: 1120px){.col-lg-push-4{left:33.3333%;}}

@media (min-width: 1120px){.col-lg-push-3{left:25%;}}

@media (min-width: 1120px){.col-lg-push-2{left:16.6667%;}}

@media (min-width: 1120px){.col-lg-push-1{left:8.33333%;}}

@media (min-width: 1120px){.col-lg-push-0{left:auto;}}

@media (min-width: 1120px){.col-lg-offset-12{margin-left:100%;}}

@media (min-width: 1120px){.col-lg-offset-11{margin-left:91.6667%;}}

@media (min-width: 1120px){.col-lg-offset-10{margin-left:83.3333%;}}

@media (min-width: 1120px){.col-lg-offset-9{margin-left:75%;}}

@media (min-width: 1120px){.col-lg-offset-8{margin-left:66.6667%;}}

@media (min-width: 1120px){.col-lg-offset-7{margin-left:58.3333%;}}

@media (min-width: 1120px){.col-lg-offset-6{margin-left:50%;}}

@media (min-width: 1120px){.col-lg-offset-5{margin-left:41.6667%;}}

@media (min-width: 1120px){.col-lg-offset-4{margin-left:33.3333%;}}

@media (min-width: 1120px){.col-lg-offset-3{margin-left:25%;}}

@media (min-width: 1120px){.col-lg-offset-2{margin-left:16.6667%;}}

@media (min-width: 1120px){.col-lg-offset-1{margin-left:8.33333%;}}

@media (min-width: 1120px){.col-lg-offset-0{margin-left:0px;}}

.table{width:100%;max-width:100%;margin-bottom:20px;}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th{padding-top:8px;padding-right:8px;padding-bottom:8px;padding-left:8px;line-height:1.42857;alignment-baseline:baseline;baseline-source:auto;border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);}

.table > thead > tr > th{alignment-baseline:baseline;baseline-source:auto;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);}

.table > caption + thead > tr:first-child > td, .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th{border-top-width:0px;border-top-style:none;border-top-color:currentcolor;}

.table > tbody + tbody{border-top-width:2px;border-top-style:solid;border-top-color:rgb(221, 221, 221);}

.table .table{background-color:rgb(255, 255, 255);}

.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th{padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;}

.table-bordered{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;}

.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th{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;}

.table-bordered > thead > tr > td, .table-bordered > thead > tr > th{border-bottom-width:2px;}

.table-striped > tbody > tr:nth-of-type(2n+1){background-color:rgb(249, 249, 249);}

.table-hover > tbody > tr:hover{background-color:rgb(245, 245, 245);}

.table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > thead > tr > td.active, .table > thead > tr > th.active{background-color:rgb(245, 245, 245);}

.table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover{background-color:rgb(232, 232, 232);}

.table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > thead > tr > td.success, .table > thead > tr > th.success{background-color:rgb(223, 240, 216);}

.table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover{background-color:rgb(208, 233, 198);}

.table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > thead > tr > td.info, .table > thead > tr > th.info{background-color:rgb(217, 237, 247);}

.table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover{background-color:rgb(196, 227, 243);}

.table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > thead > tr > td.warning, .table > thead > tr > th.warning{background-color:rgb(252, 248, 227);}

.table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover{background-color:rgb(250, 242, 204);}

.table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > thead > tr > td.danger, .table > thead > tr > th.danger{background-color:rgb(242, 222, 222);}

.table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover{background-color:rgb(235, 204, 204);}

.table-responsive{min-height:0.01%;overflow-x:auto;}

@media screen and (max-width: 767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;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;}}

@media screen and (max-width: 767px){.table-responsive > .table{margin-bottom:0px;}}

@media screen and (max-width: 767px){.table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th{white-space-collapse:collapse;text-wrap-mode:nowrap;}}

@media screen and (max-width: 767px){.table-responsive > .table-bordered{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;}}

@media screen and (max-width: 767px){.table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child{border-left-width:0px;border-left-style:none;border-left-color:currentcolor;}}

@media screen and (max-width: 767px){.table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child{border-right-width:0px;border-right-style:none;border-right-color:currentcolor;}}

@media screen and (max-width: 767px){.table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th{border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;}}

.form-control{display:block;width:100%;height:34px;padding-top:6px;padding-right:12px;padding-bottom:6px;padding-left:12px;font-size:14px;line-height:1.42857;color:rgb(85, 85, 85);background-color:rgb(255, 255, 255);background-image:none;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(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);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;box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset;transition-behavior:normal, normal;transition-duration:0.15s, 0.15s;transition-timing-function:ease-in-out, ease-in-out;transition-delay:0s, 0s;transition-property:border-color, box-shadow;}

.form-control:focus{border-top-color:rgb(102, 175, 233);border-right-color:rgb(102, 175, 233);border-bottom-color:rgb(102, 175, 233);border-left-color:rgb(102, 175, 233);outline-color:initial;outline-style:initial;outline-width:0px;box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px 0px 8px;}

.form-control::-webkit-input-placeholder{color:rgb(153, 153, 153);}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control{background-color:rgb(238, 238, 238);opacity:1;}

.form-control[disabled], fieldset[disabled] .form-control{cursor:not-allowed;}

textarea.form-control{height:auto;}

@media screen and (-webkit-min-device-pixel-ratio: 0){input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control{line-height:34px;}}

@media screen and (-webkit-min-device-pixel-ratio: 0){.input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"], input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm{line-height:30px;}}

@media screen and (-webkit-min-device-pixel-ratio: 0){.input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"], input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg{line-height:46px;}}

.form-group{margin-bottom:15px;}

.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px;}

.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px;}

.checkbox label, .radio label{min-height:20px;padding-left:20px;margin-bottom:0px;font-weight:400;cursor:pointer;}

.checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"]{position:absolute;margin-left:-20px;}

.checkbox + .checkbox, .radio + .radio{margin-top:-5px;}

.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0px;font-weight:400;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;cursor:pointer;}

.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0px;font-weight:400;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;cursor:pointer;}

.checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline{margin-top:0px;margin-left:10px;}

.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0px;}

.form-control-static.input-lg{padding-right:0px;padding-left:0px;}

.form-control-static.input-sm{padding-right:0px;padding-left:0px;}

.input-sm{height:30px;padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px;line-height:1.5;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

select.input-sm{height:30px;line-height:30px;}

select[multiple].input-sm, textarea.input-sm{height:auto;}

.form-group-sm .form-control{height:30px;padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px;line-height:1.5;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.form-group-sm select.form-control{height:30px;line-height:30px;}

.form-group-sm select[multiple].form-control, .form-group-sm textarea.form-control{height:auto;}

.form-group-sm .form-control-static{height:30px;min-height:32px;padding-top:6px;padding-right:10px;padding-bottom:6px;padding-left:10px;font-size:12px;line-height:1.5;}

.input-lg{height:46px;padding-top:10px;padding-right:16px;padding-bottom:10px;padding-left:16px;font-size:18px;line-height:1.33333;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

select.input-lg{height:46px;line-height:46px;}

select[multiple].input-lg, textarea.input-lg{height:auto;}

.form-group-lg .form-control{height:46px;padding-top:10px;padding-right:16px;padding-bottom:10px;padding-left:16px;font-size:18px;line-height:1.33333;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

.form-group-lg select.form-control{height:46px;line-height:46px;}

.form-group-lg select[multiple].form-control, .form-group-lg textarea.form-control{height:auto;}

.form-group-lg .form-control-static{height:46px;min-height:38px;padding-top:11px;padding-right:16px;padding-bottom:11px;padding-left:16px;font-size:18px;line-height:1.33333;}

.has-feedback{position:relative;}

.has-feedback .form-control{padding-right:42.5px;}

.form-control-feedback{position:absolute;top:0px;right:0px;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none;}

.form-group-lg .form-control + .form-control-feedback, .input-group-lg + .form-control-feedback, .input-lg + .form-control-feedback{width:46px;height:46px;line-height:46px;}

.form-group-sm .form-control + .form-control-feedback, .input-group-sm + .form-control-feedback, .input-sm + .form-control-feedback{width:30px;height:30px;line-height:30px;}

.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label{color:rgb(60, 118, 61);}

.has-success .form-control{border-top-color:rgb(60, 118, 61);border-right-color:rgb(60, 118, 61);border-bottom-color:rgb(60, 118, 61);border-left-color:rgb(60, 118, 61);box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset;}

.has-success .form-control:focus{border-top-color:rgb(43, 84, 44);border-right-color:rgb(43, 84, 44);border-bottom-color:rgb(43, 84, 44);border-left-color:rgb(43, 84, 44);box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(103, 177, 104) 0px 0px 6px;}

.has-success .input-group-addon{color:rgb(60, 118, 61);background-color:rgb(223, 240, 216);border-top-color:rgb(60, 118, 61);border-right-color:rgb(60, 118, 61);border-bottom-color:rgb(60, 118, 61);border-left-color:rgb(60, 118, 61);}

.has-success .form-control-feedback{color:rgb(60, 118, 61);}

.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label{color:rgb(138, 109, 59);}

.has-warning .form-control{border-top-color:rgb(138, 109, 59);border-right-color:rgb(138, 109, 59);border-bottom-color:rgb(138, 109, 59);border-left-color:rgb(138, 109, 59);box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset;}

.has-warning .form-control:focus{border-top-color:rgb(102, 81, 44);border-right-color:rgb(102, 81, 44);border-bottom-color:rgb(102, 81, 44);border-left-color:rgb(102, 81, 44);box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(192, 161, 107) 0px 0px 6px;}

.has-warning .input-group-addon{color:rgb(138, 109, 59);background-color:rgb(252, 248, 227);border-top-color:rgb(138, 109, 59);border-right-color:rgb(138, 109, 59);border-bottom-color:rgb(138, 109, 59);border-left-color:rgb(138, 109, 59);}

.has-warning .form-control-feedback{color:rgb(138, 109, 59);}

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label{color:rgb(169, 68, 66);}

.has-error .form-control{border-top-color:rgb(169, 68, 66);border-right-color:rgb(169, 68, 66);border-bottom-color:rgb(169, 68, 66);border-left-color:rgb(169, 68, 66);box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset;}

.has-error .form-control:focus{border-top-color:rgb(132, 53, 52);border-right-color:rgb(132, 53, 52);border-bottom-color:rgb(132, 53, 52);border-left-color:rgb(132, 53, 52);box-shadow:rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(206, 132, 131) 0px 0px 6px;}

.has-error .input-group-addon{color:rgb(169, 68, 66);background-color:rgb(242, 222, 222);border-top-color:rgb(169, 68, 66);border-right-color:rgb(169, 68, 66);border-bottom-color:rgb(169, 68, 66);border-left-color:rgb(169, 68, 66);}

.has-error .form-control-feedback{color:rgb(169, 68, 66);}

.has-feedback label ~ .form-control-feedback{top:25px;}

.has-feedback label.sr-only ~ .form-control-feedback{top:0px;}

.help-block{display:block;margin-top:5px;margin-bottom:10px;color:rgb(115, 115, 115);}

@media (min-width: 768px){.form-inline .form-group{display:inline-block;margin-bottom:0px;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.form-inline .form-control{display:inline-block;width:auto;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.form-inline .form-control-static{display:inline-block;}}

@media (min-width: 768px){.form-inline .input-group{display:inline-table;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.form-inline .input-group .form-control, .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn{width:auto;}}

@media (min-width: 768px){.form-inline .input-group > .form-control{width:100%;}}

@media (min-width: 768px){.form-inline .control-label{margin-bottom:0px;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.form-inline .checkbox, .form-inline .radio{display:inline-block;margin-top:0px;margin-bottom:0px;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.form-inline .checkbox label, .form-inline .radio label{padding-left:0px;}}

@media (min-width: 768px){.form-inline .checkbox input[type="checkbox"], .form-inline .radio input[type="radio"]{position:relative;margin-left:0px;}}

@media (min-width: 768px){.form-inline .has-feedback .form-control-feedback{top:0px;}}

.form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline{padding-top:7px;margin-top:0px;margin-bottom:0px;}

.form-horizontal .checkbox, .form-horizontal .radio{min-height:27px;}

.form-horizontal .form-group{margin-right:-15px;margin-left:-15px;}

@media (min-width: 768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0px;text-align:right;}}

.form-horizontal .has-feedback .form-control-feedback{right:15px;}

@media (min-width: 768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px;}}

@media (min-width: 768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px;}}

.btn{display:inline-block;padding-top:6px;padding-right:12px;padding-bottom:6px;padding-left:12px;margin-bottom:0px;font-size:14px;font-weight:400;line-height:1.42857;text-align:center;white-space-collapse:collapse;text-wrap-mode:nowrap;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;touch-action:manipulation;cursor:pointer;user-select:none;background-image:none;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:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;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;}

.btn.active.focus{outline-style:auto;outline-width:5px;outline-offset:-2px;}

.btn.active:focus{outline-style:auto;outline-width:5px;outline-offset:-2px;}

.btn.focus{color:rgb(51, 51, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.btn:focus, .btn:active.focus, .btn:active:focus{outline-style:auto;outline-width:5px;outline-offset:-2px;}

.btn:focus{color:rgb(51, 51, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.btn:hover{color:rgb(51, 51, 51);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.btn.active{background-image:none;outline-color:initial;outline-style:initial;outline-width:0px;box-shadow:rgba(0, 0, 0, 0.125) 0px 3px 5px inset;}

.btn:active{background-image:none;outline-color:initial;outline-style:initial;outline-width:0px;box-shadow:rgba(0, 0, 0, 0.125) 0px 3px 5px inset;}

.btn-default{color:rgb(51, 51, 51);background-color:rgb(255, 255, 255);border-top-color:rgb(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);}

.btn-default.focus{color:rgb(51, 51, 51);background-color:rgb(230, 230, 230);border-top-color:rgb(140, 140, 140);border-right-color:rgb(140, 140, 140);border-bottom-color:rgb(140, 140, 140);border-left-color:rgb(140, 140, 140);}

.btn-default:focus{color:rgb(51, 51, 51);background-color:rgb(230, 230, 230);border-top-color:rgb(140, 140, 140);border-right-color:rgb(140, 140, 140);border-bottom-color:rgb(140, 140, 140);border-left-color:rgb(140, 140, 140);}

.btn-default:hover{color:rgb(51, 51, 51);background-color:rgb(230, 230, 230);border-top-color:rgb(173, 173, 173);border-right-color:rgb(173, 173, 173);border-bottom-color:rgb(173, 173, 173);border-left-color:rgb(173, 173, 173);}

.btn-default.active{background-image:none;}

.btn-default:active, .open > .dropdown-toggle.btn-default{background-image:none;}

.btn-default.active.focus{color:rgb(51, 51, 51);background-color:rgb(212, 212, 212);border-top-color:rgb(140, 140, 140);border-right-color:rgb(140, 140, 140);border-bottom-color:rgb(140, 140, 140);border-left-color:rgb(140, 140, 140);}

.btn-default.active:focus{color:rgb(51, 51, 51);background-color:rgb(212, 212, 212);border-top-color:rgb(140, 140, 140);border-right-color:rgb(140, 140, 140);border-bottom-color:rgb(140, 140, 140);border-left-color:rgb(140, 140, 140);}

.btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover{color:rgb(51, 51, 51);background-color:rgb(212, 212, 212);border-top-color:rgb(140, 140, 140);border-right-color:rgb(140, 140, 140);border-bottom-color:rgb(140, 140, 140);border-left-color:rgb(140, 140, 140);}

.btn-default .badge{color:rgb(255, 255, 255);background-color:rgb(51, 51, 51);}

.btn-primary{color:rgb(255, 255, 255);background-color:rgb(51, 122, 183);border-top-color:rgb(46, 109, 164);border-right-color:rgb(46, 109, 164);border-bottom-color:rgb(46, 109, 164);border-left-color:rgb(46, 109, 164);}

.btn-primary.focus{color:rgb(255, 255, 255);background-color:rgb(40, 96, 144);border-top-color:rgb(18, 43, 64);border-right-color:rgb(18, 43, 64);border-bottom-color:rgb(18, 43, 64);border-left-color:rgb(18, 43, 64);}

.btn-primary:focus{color:rgb(255, 255, 255);background-color:rgb(40, 96, 144);border-top-color:rgb(18, 43, 64);border-right-color:rgb(18, 43, 64);border-bottom-color:rgb(18, 43, 64);border-left-color:rgb(18, 43, 64);}

.btn-primary:hover{color:rgb(255, 255, 255);background-color:rgb(40, 96, 144);border-top-color:rgb(32, 77, 116);border-right-color:rgb(32, 77, 116);border-bottom-color:rgb(32, 77, 116);border-left-color:rgb(32, 77, 116);}

.btn-primary.active{background-image:none;}

.btn-primary:active, .open > .dropdown-toggle.btn-primary{background-image:none;}

.btn-primary.active.focus{color:rgb(255, 255, 255);background-color:rgb(32, 77, 116);border-top-color:rgb(18, 43, 64);border-right-color:rgb(18, 43, 64);border-bottom-color:rgb(18, 43, 64);border-left-color:rgb(18, 43, 64);}

.btn-primary.active:focus{color:rgb(255, 255, 255);background-color:rgb(32, 77, 116);border-top-color:rgb(18, 43, 64);border-right-color:rgb(18, 43, 64);border-bottom-color:rgb(18, 43, 64);border-left-color:rgb(18, 43, 64);}

.btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover{color:rgb(255, 255, 255);background-color:rgb(32, 77, 116);border-top-color:rgb(18, 43, 64);border-right-color:rgb(18, 43, 64);border-bottom-color:rgb(18, 43, 64);border-left-color:rgb(18, 43, 64);}

.btn-primary .badge{color:rgb(51, 122, 183);background-color:rgb(255, 255, 255);}

.btn-success{color:rgb(255, 255, 255);background-color:rgb(92, 184, 92);border-top-color:rgb(76, 174, 76);border-right-color:rgb(76, 174, 76);border-bottom-color:rgb(76, 174, 76);border-left-color:rgb(76, 174, 76);}

.btn-success.focus{color:rgb(255, 255, 255);background-color:rgb(68, 157, 68);border-top-color:rgb(37, 86, 37);border-right-color:rgb(37, 86, 37);border-bottom-color:rgb(37, 86, 37);border-left-color:rgb(37, 86, 37);}

.btn-success:focus{color:rgb(255, 255, 255);background-color:rgb(68, 157, 68);border-top-color:rgb(37, 86, 37);border-right-color:rgb(37, 86, 37);border-bottom-color:rgb(37, 86, 37);border-left-color:rgb(37, 86, 37);}

.btn-success:hover{color:rgb(255, 255, 255);background-color:rgb(68, 157, 68);border-top-color:rgb(57, 132, 57);border-right-color:rgb(57, 132, 57);border-bottom-color:rgb(57, 132, 57);border-left-color:rgb(57, 132, 57);}

.btn-success.active{background-image:none;}

.btn-success:active, .open > .dropdown-toggle.btn-success{background-image:none;}

.btn-success.active.focus{color:rgb(255, 255, 255);background-color:rgb(57, 132, 57);border-top-color:rgb(37, 86, 37);border-right-color:rgb(37, 86, 37);border-bottom-color:rgb(37, 86, 37);border-left-color:rgb(37, 86, 37);}

.btn-success.active:focus{color:rgb(255, 255, 255);background-color:rgb(57, 132, 57);border-top-color:rgb(37, 86, 37);border-right-color:rgb(37, 86, 37);border-bottom-color:rgb(37, 86, 37);border-left-color:rgb(37, 86, 37);}

.btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover{color:rgb(255, 255, 255);background-color:rgb(57, 132, 57);border-top-color:rgb(37, 86, 37);border-right-color:rgb(37, 86, 37);border-bottom-color:rgb(37, 86, 37);border-left-color:rgb(37, 86, 37);}

.btn-success .badge{color:rgb(92, 184, 92);background-color:rgb(255, 255, 255);}

.btn-info{color:rgb(255, 255, 255);background-color:rgb(91, 192, 222);border-top-color:rgb(70, 184, 218);border-right-color:rgb(70, 184, 218);border-bottom-color:rgb(70, 184, 218);border-left-color:rgb(70, 184, 218);}

.btn-info.focus{color:rgb(255, 255, 255);background-color:rgb(49, 176, 213);border-top-color:rgb(27, 109, 133);border-right-color:rgb(27, 109, 133);border-bottom-color:rgb(27, 109, 133);border-left-color:rgb(27, 109, 133);}

.btn-info:focus{color:rgb(255, 255, 255);background-color:rgb(49, 176, 213);border-top-color:rgb(27, 109, 133);border-right-color:rgb(27, 109, 133);border-bottom-color:rgb(27, 109, 133);border-left-color:rgb(27, 109, 133);}

.btn-info:hover{color:rgb(255, 255, 255);background-color:rgb(49, 176, 213);border-top-color:rgb(38, 154, 188);border-right-color:rgb(38, 154, 188);border-bottom-color:rgb(38, 154, 188);border-left-color:rgb(38, 154, 188);}

.btn-info.active{background-image:none;}

.btn-info:active, .open > .dropdown-toggle.btn-info{background-image:none;}

.btn-info.active.focus{color:rgb(255, 255, 255);background-color:rgb(38, 154, 188);border-top-color:rgb(27, 109, 133);border-right-color:rgb(27, 109, 133);border-bottom-color:rgb(27, 109, 133);border-left-color:rgb(27, 109, 133);}

.btn-info.active:focus{color:rgb(255, 255, 255);background-color:rgb(38, 154, 188);border-top-color:rgb(27, 109, 133);border-right-color:rgb(27, 109, 133);border-bottom-color:rgb(27, 109, 133);border-left-color:rgb(27, 109, 133);}

.btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover{color:rgb(255, 255, 255);background-color:rgb(38, 154, 188);border-top-color:rgb(27, 109, 133);border-right-color:rgb(27, 109, 133);border-bottom-color:rgb(27, 109, 133);border-left-color:rgb(27, 109, 133);}

.btn-info .badge{color:rgb(91, 192, 222);background-color:rgb(255, 255, 255);}

.btn-warning{color:rgb(255, 255, 255);background-color:rgb(240, 173, 78);border-top-color:rgb(238, 162, 54);border-right-color:rgb(238, 162, 54);border-bottom-color:rgb(238, 162, 54);border-left-color:rgb(238, 162, 54);}

.btn-warning.focus{color:rgb(255, 255, 255);background-color:rgb(236, 151, 31);border-top-color:rgb(152, 95, 13);border-right-color:rgb(152, 95, 13);border-bottom-color:rgb(152, 95, 13);border-left-color:rgb(152, 95, 13);}

.btn-warning:focus{color:rgb(255, 255, 255);background-color:rgb(236, 151, 31);border-top-color:rgb(152, 95, 13);border-right-color:rgb(152, 95, 13);border-bottom-color:rgb(152, 95, 13);border-left-color:rgb(152, 95, 13);}

.btn-warning:hover{color:rgb(255, 255, 255);background-color:rgb(236, 151, 31);border-top-color:rgb(213, 133, 18);border-right-color:rgb(213, 133, 18);border-bottom-color:rgb(213, 133, 18);border-left-color:rgb(213, 133, 18);}

.btn-warning.active{background-image:none;}

.btn-warning:active, .open > .dropdown-toggle.btn-warning{background-image:none;}

.btn-warning.active.focus{color:rgb(255, 255, 255);background-color:rgb(213, 133, 18);border-top-color:rgb(152, 95, 13);border-right-color:rgb(152, 95, 13);border-bottom-color:rgb(152, 95, 13);border-left-color:rgb(152, 95, 13);}

.btn-warning.active:focus{color:rgb(255, 255, 255);background-color:rgb(213, 133, 18);border-top-color:rgb(152, 95, 13);border-right-color:rgb(152, 95, 13);border-bottom-color:rgb(152, 95, 13);border-left-color:rgb(152, 95, 13);}

.btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover{color:rgb(255, 255, 255);background-color:rgb(213, 133, 18);border-top-color:rgb(152, 95, 13);border-right-color:rgb(152, 95, 13);border-bottom-color:rgb(152, 95, 13);border-left-color:rgb(152, 95, 13);}

.btn-warning .badge{color:rgb(240, 173, 78);background-color:rgb(255, 255, 255);}

.btn-danger{color:rgb(255, 255, 255);background-color:rgb(217, 83, 79);border-top-color:rgb(212, 63, 58);border-right-color:rgb(212, 63, 58);border-bottom-color:rgb(212, 63, 58);border-left-color:rgb(212, 63, 58);}

.btn-danger.focus{color:rgb(255, 255, 255);background-color:rgb(201, 48, 44);border-top-color:rgb(118, 28, 25);border-right-color:rgb(118, 28, 25);border-bottom-color:rgb(118, 28, 25);border-left-color:rgb(118, 28, 25);}

.btn-danger:focus{color:rgb(255, 255, 255);background-color:rgb(201, 48, 44);border-top-color:rgb(118, 28, 25);border-right-color:rgb(118, 28, 25);border-bottom-color:rgb(118, 28, 25);border-left-color:rgb(118, 28, 25);}

.btn-danger:hover{color:rgb(255, 255, 255);background-color:rgb(201, 48, 44);border-top-color:rgb(172, 41, 37);border-right-color:rgb(172, 41, 37);border-bottom-color:rgb(172, 41, 37);border-left-color:rgb(172, 41, 37);}

.btn-danger.active{background-image:none;}

.btn-danger:active, .open > .dropdown-toggle.btn-danger{background-image:none;}

.btn-danger.active.focus{color:rgb(255, 255, 255);background-color:rgb(172, 41, 37);border-top-color:rgb(118, 28, 25);border-right-color:rgb(118, 28, 25);border-bottom-color:rgb(118, 28, 25);border-left-color:rgb(118, 28, 25);}

.btn-danger.active:focus{color:rgb(255, 255, 255);background-color:rgb(172, 41, 37);border-top-color:rgb(118, 28, 25);border-right-color:rgb(118, 28, 25);border-bottom-color:rgb(118, 28, 25);border-left-color:rgb(118, 28, 25);}

.btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover{color:rgb(255, 255, 255);background-color:rgb(172, 41, 37);border-top-color:rgb(118, 28, 25);border-right-color:rgb(118, 28, 25);border-bottom-color:rgb(118, 28, 25);border-left-color:rgb(118, 28, 25);}

.btn-danger .badge{color:rgb(217, 83, 79);background-color:rgb(255, 255, 255);}

.btn-link{border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;}

.btn-link.active{background-color:transparent;box-shadow:none;}

.btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none;}

.btn-link:active{border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;}

.btn-link:focus{color:rgb(35, 82, 124);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-color:transparent;}

.btn-link:hover{color:rgb(35, 82, 124);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-color:transparent;}

.btn-link[disabled]:focus, .btn-link[disabled]:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:hover{color:rgb(119, 119, 119);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.btn-lg, .btn-group-lg > .btn{padding-top:10px;padding-right:16px;padding-bottom:10px;padding-left:16px;font-size:18px;line-height:1.33333;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

.btn-sm, .btn-group-sm > .btn{padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px;line-height:1.5;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.btn-xs, .btn-group-xs > .btn{padding-top:1px;padding-right:5px;padding-bottom:1px;padding-left:5px;font-size:12px;line-height:1.5;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.btn-block{display:block;width:100%;}

.btn-block + .btn-block{margin-top:5px;}

input[type="button"].btn-block, input[type="reset"].btn-block, input[type="submit"].btn-block{width:100%;}

.collapse{display:none;}

.collapse.in{display:block;}

tr.collapse.in{display:table-row;}

tbody.collapse.in{display:table-row-group;}

.collapsing{position:relative;height:0px;overflow-x:hidden;overflow-y:hidden;transition-timing-function:ease;transition-duration:0.35s;transition-property:height, visibility;}

.caret{display:inline-block;width:0px;height:0px;margin-left:2px;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;border-top-width:4px;border-top-style:dashed;border-top-color:currentcolor;border-right-width:4px;border-right-style:solid;border-right-color:transparent;border-left-width:4px;border-left-style:solid;border-left-color:transparent;}

.dropdown{position:relative;}

.dropup{position:relative;}

.dropdown-toggle:focus{outline-color:initial;outline-style:initial;outline-width:0px;}

.dropdown-menu{position:absolute;top:100%;left:0px;z-index:1000;display:none;float:left;min-width:160px;padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;margin-top:2px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;text-align:left;list-style-position:initial;list-style-image:initial;list-style-type:none;background-color:rgb(255, 255, 255);background-clip:padding-box;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:rgba(0, 0, 0, 0.15);border-right-color:rgba(0, 0, 0, 0.15);border-bottom-color:rgba(0, 0, 0, 0.15);border-left-color:rgba(0, 0, 0, 0.15);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;box-shadow:rgba(0, 0, 0, 0.176) 0px 6px 12px;}

.dropdown-menu.pull-right{right:0px;left:auto;}

.dropdown-menu .divider{height:1px;margin-top:9px;margin-right:0px;margin-bottom:9px;margin-left:0px;overflow-x:hidden;overflow-y:hidden;background-color:rgb(229, 229, 229);}

.dropdown-menu > li > a{display:block;padding-top:3px;padding-right:20px;padding-bottom:3px;padding-left:20px;clear:both;font-weight:400;line-height:1.42857;color:rgb(51, 51, 51);white-space-collapse:collapse;text-wrap-mode:nowrap;}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover{color:rgb(38, 38, 38);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-color:rgb(245, 245, 245);}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover{color:rgb(255, 255, 255);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-color:rgb(51, 122, 183);outline-color:initial;outline-style:initial;outline-width:0px;}

.open > .dropdown-menu{display:block;}

.open > a{outline-color:initial;outline-style:initial;outline-width:0px;}

.dropdown-menu-right{right:0px;left:auto;}

.dropdown-menu-left{right:auto;left:0px;}

.dropdown-header{display:block;padding-top:3px;padding-right:20px;padding-bottom:3px;padding-left:20px;font-size:12px;line-height:1.42857;color:rgb(119, 119, 119);white-space-collapse:collapse;text-wrap-mode:nowrap;}

.dropdown-backdrop{position:fixed;top:0px;right:0px;bottom:0px;left:0px;z-index:990;}

.pull-right > .dropdown-menu{right:0px;left:auto;}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret{content:"";border-top-width:0px;border-top-style:none;border-top-color:currentcolor;border-bottom-width:4px;border-bottom-style:dashed;border-bottom-color:currentcolor;}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px;}

@media (min-width: 768px){.navbar-right .dropdown-menu{right:0px;left:auto;}}

@media (min-width: 768px){.navbar-right .dropdown-menu-left{right:auto;left:0px;}}

.btn-group{position:relative;display:inline-block;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}

.btn-group-vertical{position:relative;display:inline-block;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}

.btn-group-vertical > .btn, .btn-group > .btn{position:relative;float:left;}

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover{z-index:2;}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group{margin-left:-1px;}

.btn-toolbar{margin-left:-5px;}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group{float:left;}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group{margin-left:5px;}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.btn-group > .btn:first-child{margin-left:0px;}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0px;border-bottom-right-radius:0px;}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child){border-top-left-radius:0px;border-bottom-left-radius:0px;}

.btn-group > .btn-group{float:left;}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle{border-top-right-radius:0px;border-bottom-right-radius:0px;}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child{border-top-left-radius:0px;border-bottom-left-radius:0px;}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle{outline-color:initial;outline-style:initial;outline-width:0px;}

.btn-group > .btn + .dropdown-toggle{padding-right:8px;padding-left:8px;}

.btn-group > .btn-lg + .dropdown-toggle{padding-right:12px;padding-left:12px;}

.btn-group.open .dropdown-toggle{box-shadow:rgba(0, 0, 0, 0.125) 0px 3px 5px inset;}

.btn-group.open .dropdown-toggle.btn-link{box-shadow:none;}

.btn .caret{margin-left:0px;}

.btn-lg .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px;border-bottom-width:0px;}

.dropup .btn-lg .caret{border-top-width:0px;border-right-width:5px;border-bottom-width:5px;border-left-width:5px;}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn{display:block;float:none;width:100%;max-width:100%;}

.btn-group-vertical > .btn-group > .btn{float:none;}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group{margin-top:-1px;margin-left:0px;}

.btn-group-vertical > .btn:not(:first-child):not(:last-child){border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.btn-group-vertical > .btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.btn-group-vertical > .btn:last-child:not(:first-child){border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle{border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child{border-top-left-radius:0px;border-top-right-radius:0px;}

.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate;}

.btn-group-justified > .btn, .btn-group-justified > .btn-group{display:table-cell;float:none;width:1%;}

.btn-group-justified > .btn-group .btn{width:100%;}

.btn-group-justified > .btn-group .dropdown-menu{left:auto;}

[data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"]{position:absolute;clip:rect(0px, 0px, 0px, 0px);pointer-events:none;}

.input-group{position:relative;display:table;border-collapse:separate;}

.input-group[class*="col-"]{float:none;padding-right:0px;padding-left:0px;}

.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0px;}

.input-group .form-control:focus{z-index:3;}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn{height:46px;padding-top:10px;padding-right:16px;padding-bottom:10px;padding-left:16px;font-size:18px;line-height:1.33333;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn{height:46px;line-height:46px;}

select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn, textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn{height:auto;}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn{height:30px;padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px;line-height:1.5;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn{height:30px;line-height:30px;}

select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn, textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn{height:auto;}

.input-group-addon{padding-top:6px;padding-right:12px;padding-bottom:6px;padding-left:12px;font-size:14px;font-weight:400;line-height:1;color:rgb(85, 85, 85);text-align:center;background-color:rgb(238, 238, 238);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(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);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;}

.input-group-btn, .input-group .form-control{display:table-cell;}

.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child){border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.input-group-btn{position:relative;font-size:0px;white-space-collapse:collapse;text-wrap-mode:nowrap;}

.input-group-addon.input-sm{padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.input-group-addon.input-lg{padding-top:10px;padding-right:16px;padding-bottom:10px;padding-left:16px;font-size:18px;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

.input-group-addon input[type="checkbox"], .input-group-addon input[type="radio"]{margin-top:0px;}

.input-group-addon:first-child, .input-group .form-control:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0px;border-bottom-right-radius:0px;}

.input-group-addon:first-child{border-right-width:0px;border-right-style:none;border-right-color:currentcolor;}

.input-group-addon:last-child, .input-group .form-control:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle{border-top-left-radius:0px;border-bottom-left-radius:0px;}

.input-group-addon:last-child{border-left-width:0px;border-left-style:none;border-left-color:currentcolor;}

.input-group-btn > .btn{position:relative;}

.input-group-btn > .btn + .btn{margin-left:-1px;}

.input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover{z-index:2;}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group{margin-right:-1px;}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group{z-index:2;margin-left:-1px;}

.nav-pills > li{float:left;}

.nav-pills > li > a{border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.nav-pills > li + li{margin-left:2px;}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover{color:rgb(255, 255, 255);background-color:rgb(51, 122, 183);}

.nav-stacked > li{float:none;}

.nav-stacked > li + li{margin-top:2px;margin-left:0px;}

.nav-justified{width:100%;}

.nav-justified > li{float:none;}

.nav-justified > li > a{margin-bottom:5px;text-align:center;}

.nav-justified > .dropdown .dropdown-menu{top:auto;left:auto;}

@media (min-width: 768px){.nav-justified > li{display:table-cell;width:1%;}}

@media (min-width: 768px){.nav-justified > li > a{margin-bottom:0px;}}

.nav-tabs-justified{border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;}

.nav-tabs-justified > li > a{margin-right:0px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover{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;}

@media (min-width: 768px){.nav-tabs-justified > li > a{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}}

@media (min-width: 768px){.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover{border-bottom-color:rgb(255, 255, 255);}}

.navbar{position:relative;min-height:50px;margin-bottom: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:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}

@media (min-width: 768px){.navbar{border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}}

@media (min-width: 768px){.navbar-header{float:left;}}

.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top-width:1px;border-top-style:solid;border-top-color:transparent;box-shadow:rgba(255, 255, 255, 0.1) 0px 1px 0px inset;}

.navbar-collapse.in{overflow-y:auto;}

@media (min-width: 768px){.navbar-collapse{width:auto;border-top-width:0px;border-top-style:none;border-top-color:currentcolor;box-shadow:none;}}

@media (min-width: 768px){.navbar-collapse.collapse{padding-bottom:0px;display:block !important;height:auto !important;overflow-x:visible !important;overflow-y:visible !important;}}

@media (min-width: 768px){.navbar-collapse.in{overflow-y:visible;}}

@media (min-width: 768px){.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse{padding-right:0px;padding-left:0px;}}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse{max-height:340px;}

@media (max-device-width: 480px) and (orientation: landscape){.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse{max-height:200px;}}

.navbar-static-top{z-index:1000;border-top-width:0px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;}

@media (min-width: 768px){.navbar-static-top{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}}

.navbar-fixed-bottom{bottom:0px;margin-bottom:0px;border-top-width:1px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;}

.navbar-fixed-top{top:0px;border-top-width:0px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;}

@media (min-width: 768px){.navbar-fixed-bottom{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}}

@media (min-width: 768px){.navbar-fixed-top{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}}

.navbar-brand{float:left;height:50px;padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;font-size:18px;line-height:20px;}

.navbar-brand:focus{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.navbar-brand:hover{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}

.navbar-brand > img{display:block;}

.navbar-toggle{position:relative;float:right;padding-top:9px;padding-right:10px;padding-bottom:9px;padding-left:10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;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:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;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;}

.navbar-toggle:focus{outline-color:initial;outline-style:initial;outline-width:0px;}

.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-top-left-radius:1px;border-top-right-radius:1px;border-bottom-right-radius:1px;border-bottom-left-radius:1px;}

.navbar-toggle .icon-bar + .icon-bar{margin-top:4px;}

@media (min-width: 768px){.navbar-toggle{display:none;}}

.navbar-nav{margin-top:7.5px;margin-right:-15px;margin-bottom:7.5px;margin-left:-15px;}

.navbar-nav > li > a{padding-top:10px;padding-bottom:10px;line-height:20px;}

@media (max-width: 767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0px;background-color:transparent;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;box-shadow:none;}}

@media (max-width: 767px){.navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a{padding-top:5px;padding-right:15px;padding-bottom:5px;padding-left:25px;}}

@media (max-width: 767px){.navbar-nav .open .dropdown-menu > li > a{line-height:20px;}}

@media (max-width: 767px){.navbar-nav .open .dropdown-menu > li > a:focus, .navbar-nav .open .dropdown-menu > li > a:hover{background-image:none;}}

@media (min-width: 768px){.navbar-nav{float:left;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}}

@media (min-width: 768px){.navbar-nav > li{float:left;}}

@media (min-width: 768px){.navbar-nav > li > a{padding-top:15px;padding-bottom:15px;}}

.navbar-form{padding-top:10px;padding-right:15px;padding-bottom:10px;padding-left:15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top-width:1px;border-top-style:solid;border-top-color:transparent;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:transparent;box-shadow:rgba(255, 255, 255, 0.1) 0px 1px 0px inset, rgba(255, 255, 255, 0.1) 0px 1px 0px;}

@media (min-width: 768px){.navbar-form .form-group{display:inline-block;margin-bottom:0px;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.navbar-form .form-control{display:inline-block;width:auto;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.navbar-form .form-control-static{display:inline-block;}}

@media (min-width: 768px){.navbar-form .input-group{display:inline-table;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn{width:auto;}}

@media (min-width: 768px){.navbar-form .input-group > .form-control{width:100%;}}

@media (min-width: 768px){.navbar-form .control-label{margin-bottom:0px;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.navbar-form .checkbox, .navbar-form .radio{display:inline-block;margin-top:0px;margin-bottom:0px;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}}

@media (min-width: 768px){.navbar-form .checkbox label, .navbar-form .radio label{padding-left:0px;}}

@media (min-width: 768px){.navbar-form .checkbox input[type="checkbox"], .navbar-form .radio input[type="radio"]{position:relative;margin-left:0px;}}

@media (min-width: 768px){.navbar-form .has-feedback .form-control-feedback{top:0px;}}

@media (max-width: 767px){.navbar-form .form-group{margin-bottom:5px;}}

@media (max-width: 767px){.navbar-form .form-group:last-child{margin-bottom:0px;}}

@media (min-width: 768px){.navbar-form{width:auto;padding-top:0px;padding-bottom:0px;margin-right: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;box-shadow:none;}}

.navbar-nav > li > .dropdown-menu{margin-top:0px;border-top-left-radius:0px;border-top-right-radius:0px;}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu{margin-bottom:0px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.navbar-btn{margin-top:8px;margin-bottom:8px;}

.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px;}

.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px;}

.navbar-text{margin-top:15px;margin-bottom:15px;}

@media (min-width: 768px){.navbar-text{float:left;margin-right:15px;margin-left:15px;}}

@media (min-width: 768px){.navbar-left{float:left !important;}}

@media (min-width: 768px){.navbar-right{float:right !important;margin-right:-15px;}}

@media (min-width: 768px){.navbar-right ~ .navbar-right{margin-right:0px;}}

.navbar-default{background-color:rgb(248, 248, 248);border-top-color:rgb(231, 231, 231);border-right-color:rgb(231, 231, 231);border-bottom-color:rgb(231, 231, 231);border-left-color:rgb(231, 231, 231);}

.navbar-default .navbar-brand{color:rgb(119, 119, 119);}

.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover{color:rgb(94, 94, 94);background-color:transparent;}

.navbar-default .navbar-text{color:rgb(119, 119, 119);}

.navbar-default .navbar-nav > li > a{color:rgb(119, 119, 119);}

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover{color:rgb(51, 51, 51);background-color:transparent;}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover{color:rgb(85, 85, 85);background-color:rgb(231, 231, 231);}

.navbar-default .navbar-toggle{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);}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover{background-color:rgb(221, 221, 221);}

.navbar-default .navbar-toggle .icon-bar{background-color:rgb(136, 136, 136);}

.navbar-default .navbar-collapse, .navbar-default .navbar-form{border-top-color:rgb(231, 231, 231);border-right-color:rgb(231, 231, 231);border-bottom-color:rgb(231, 231, 231);border-left-color:rgb(231, 231, 231);}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover{color:rgb(85, 85, 85);background-color:rgb(231, 231, 231);}

@media (max-width: 767px){.navbar-default .navbar-nav .open .dropdown-menu > li > a{color:rgb(119, 119, 119);}}

@media (max-width: 767px){.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover{color:rgb(51, 51, 51);background-color:transparent;}}

@media (max-width: 767px){.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover{color:rgb(85, 85, 85);background-color:rgb(231, 231, 231);}}

.navbar-default .navbar-link{color:rgb(119, 119, 119);}

.navbar-default .navbar-link:hover{color:rgb(51, 51, 51);}

.navbar-default .btn-link{color:rgb(119, 119, 119);}

.navbar-default .btn-link:focus, .navbar-default .btn-link:hover{color:rgb(51, 51, 51);}

.navbar-default .btn-link[disabled]:focus, .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:focus, fieldset[disabled] .navbar-default .btn-link:hover{color:rgb(204, 204, 204);}

.navbar-inverse{background-color:rgb(34, 34, 34);border-top-color:rgb(8, 8, 8);border-right-color:rgb(8, 8, 8);border-bottom-color:rgb(8, 8, 8);border-left-color:rgb(8, 8, 8);}

.navbar-inverse .navbar-brand{color:rgb(157, 157, 157);}

.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover{color:rgb(255, 255, 255);background-color:transparent;}

.navbar-inverse .navbar-text{color:rgb(157, 157, 157);}

.navbar-inverse .navbar-nav > li > a{color:rgb(157, 157, 157);}

.navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover{color:rgb(255, 255, 255);background-color:transparent;}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover{color:rgb(255, 255, 255);background-color:rgb(8, 8, 8);}

.navbar-inverse .navbar-toggle{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);}

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover{background-color:rgb(51, 51, 51);}

.navbar-inverse .navbar-toggle .icon-bar{background-color:rgb(255, 255, 255);}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{border-top-color:rgb(16, 16, 16);border-right-color:rgb(16, 16, 16);border-bottom-color:rgb(16, 16, 16);border-left-color:rgb(16, 16, 16);}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover{color:rgb(255, 255, 255);background-color:rgb(8, 8, 8);}

@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header{border-top-color:rgb(8, 8, 8);border-right-color:rgb(8, 8, 8);border-bottom-color:rgb(8, 8, 8);border-left-color:rgb(8, 8, 8);}}

@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:rgb(8, 8, 8);}}

@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu > li > a{color:rgb(157, 157, 157);}}

@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover{color:rgb(255, 255, 255);background-color:transparent;}}

@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover{color:rgb(255, 255, 255);background-color:rgb(8, 8, 8);}}

.navbar-inverse .navbar-link{color:rgb(157, 157, 157);}

.navbar-inverse .navbar-link:hover{color:rgb(255, 255, 255);}

.navbar-inverse .btn-link{color:rgb(157, 157, 157);}

.navbar-inverse .btn-link:focus, .navbar-inverse .btn-link:hover{color:rgb(255, 255, 255);}

.navbar-inverse .btn-link[disabled]:focus, .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:focus, fieldset[disabled] .navbar-inverse .btn-link:hover{color:rgb(68, 68, 68);}

.breadcrumb{padding-top:8px;padding-right:15px;padding-bottom:8px;padding-left:15px;margin-bottom:20px;list-style-position:initial;list-style-image:initial;list-style-type:none;background-color:rgb(245, 245, 245);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.breadcrumb > li{display:inline-block;}

.breadcrumb > li + li::before{padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:5px;color:rgb(204, 204, 204);content:"/ ";}

.breadcrumb > .active{color:rgb(119, 119, 119);}

.pagination{display:inline-block;padding-left:0px;margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.pagination > li{display:inline;}

.pagination > li > a, .pagination > li > span{position:relative;float:left;padding-top:6px;padding-right:12px;padding-bottom:6px;padding-left:12px;margin-left:-1px;line-height:1.42857;color:rgb(51, 122, 183);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color: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(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;}

.pagination > li:first-child > a, .pagination > li:first-child > span{margin-left:0px;border-top-left-radius:4px;border-bottom-left-radius:4px;}

.pagination > li:last-child > a, .pagination > li:last-child > span{border-top-right-radius:4px;border-bottom-right-radius:4px;}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover{z-index:2;color:rgb(35, 82, 124);background-color:rgb(238, 238, 238);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);}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover{z-index:3;color:rgb(255, 255, 255);cursor:default;background-color:rgb(51, 122, 183);border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.pagination-lg > li > a, .pagination-lg > li > span{padding-top:10px;padding-right:16px;padding-bottom:10px;padding-left:16px;font-size:18px;line-height:1.33333;}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span{border-top-left-radius:6px;border-bottom-left-radius:6px;}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span{border-top-right-radius:6px;border-bottom-right-radius:6px;}

.pagination-sm > li > a, .pagination-sm > li > span{padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px;line-height:1.5;}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span{border-top-left-radius:3px;border-bottom-left-radius:3px;}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span{border-top-right-radius:3px;border-bottom-right-radius:3px;}

.pager{padding-left:0px;margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;text-align:center;list-style-position:initial;list-style-image:initial;list-style-type:none;}

.pager li{display:inline;}

.pager li > a, .pager li > span{display:inline-block;padding-top:5px;padding-right:14px;padding-bottom:5px;padding-left:14px;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(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;border-top-left-radius:15px;border-top-right-radius:15px;border-bottom-right-radius:15px;border-bottom-left-radius:15px;}

.pager li > a:focus, .pager li > a:hover{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-color:rgb(238, 238, 238);}

.pager .next > a, .pager .next > span{float:right;}

.pager .previous > a, .pager .previous > span{float:left;}

.label{display:inline;padding-top:0.2em;padding-right:0.6em;padding-bottom:0.3em;padding-left:0.6em;font-size:75%;font-weight:700;line-height:1;color:rgb(255, 255, 255);text-align:center;white-space-collapse:collapse;text-wrap-mode:nowrap;alignment-baseline:baseline;baseline-shift:0px;baseline-source:auto;border-top-left-radius:0.25em;border-top-right-radius:0.25em;border-bottom-right-radius:0.25em;border-bottom-left-radius:0.25em;}

a.label:focus, a.label:hover{color:rgb(255, 255, 255);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;cursor:pointer;}

.label:empty{display:none;}

.btn .label{position:relative;top:-1px;}

.label-default{background-color:rgb(119, 119, 119);}

.label-default[href]:focus, .label-default[href]:hover{background-color:rgb(94, 94, 94);}

.label-primary{background-color:rgb(51, 122, 183);}

.label-primary[href]:focus, .label-primary[href]:hover{background-color:rgb(40, 96, 144);}

.label-success{background-color:rgb(92, 184, 92);}

.label-success[href]:focus, .label-success[href]:hover{background-color:rgb(68, 157, 68);}

.label-info{background-color:rgb(91, 192, 222);}

.label-info[href]:focus, .label-info[href]:hover{background-color:rgb(49, 176, 213);}

.label-warning{background-color:rgb(240, 173, 78);}

.label-warning[href]:focus, .label-warning[href]:hover{background-color:rgb(236, 151, 31);}

.label-danger{background-color:rgb(217, 83, 79);}

.label-danger[href]:focus, .label-danger[href]:hover{background-color:rgb(201, 48, 44);}

.badge{display:inline-block;min-width:10px;padding-top:3px;padding-right:7px;padding-bottom:3px;padding-left:7px;font-size:12px;font-weight:700;line-height:1;color:rgb(255, 255, 255);text-align:center;white-space-collapse:collapse;text-wrap-mode:nowrap;alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;background-color:rgb(119, 119, 119);border-top-left-radius:10px;border-top-right-radius:10px;border-bottom-right-radius:10px;border-bottom-left-radius:10px;}

.badge:empty{display:none;}

.btn .badge{position:relative;top:-1px;}

.btn-group-xs > .btn .badge, .btn-xs .badge{top:0px;padding-top:1px;padding-right:5px;padding-bottom:1px;padding-left:5px;}

a.badge:focus, a.badge:hover{color:rgb(255, 255, 255);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;cursor:pointer;}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge{color:rgb(51, 122, 183);background-color:rgb(255, 255, 255);}

.list-group-item > .badge{float:right;}

.list-group-item > .badge + .badge{margin-right:5px;}

.nav-pills > li > a > .badge{margin-left:3px;}

.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:rgb(238, 238, 238);}

.jumbotron .h1, .jumbotron h1{color:inherit;}

.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200;}

.jumbotron > hr{border-top-color:rgb(213, 213, 213);}

@media screen and (min-width: 768px){.jumbotron{padding-top:48px;padding-bottom:48px;}}

@media screen and (min-width: 768px){.jumbotron .h1, .jumbotron h1{font-size:63px;}}

.thumbnail{display:block;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;margin-bottom:20px;line-height:1.42857;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(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;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;transition-behavior:normal;transition-duration:0.2s;transition-timing-function:ease-in-out;transition-delay:0s;transition-property:border;}

.thumbnail a > img, .thumbnail > img{margin-right:auto;margin-left:auto;}

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover{border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.thumbnail .caption{padding-top:9px;padding-right:9px;padding-bottom:9px;padding-left:9px;color:rgb(51, 51, 51);}

.alert{padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;margin-bottom: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:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;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;}

.alert h4{margin-top:0px;color:inherit;}

.alert .alert-link{font-weight:700;}

.alert > p, .alert > ul{margin-bottom:0px;}

.alert > p + p{margin-top:5px;}

.alert-dismissable{padding-right:35px;}

.alert-dismissible{padding-right:35px;}

.alert-dismissable .close, .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit;}

.alert-success{color:rgb(60, 118, 61);background-color:rgb(223, 240, 216);border-top-color:rgb(214, 233, 198);border-right-color:rgb(214, 233, 198);border-bottom-color:rgb(214, 233, 198);border-left-color:rgb(214, 233, 198);}

.alert-success hr{border-top-color:rgb(201, 226, 179);}

.alert-success .alert-link{color:rgb(43, 84, 44);}

.alert-info{color:rgb(49, 112, 143);background-color:rgb(217, 237, 247);border-top-color:rgb(188, 232, 241);border-right-color:rgb(188, 232, 241);border-bottom-color:rgb(188, 232, 241);border-left-color:rgb(188, 232, 241);}

.alert-info hr{border-top-color:rgb(166, 225, 236);}

.alert-info .alert-link{color:rgb(36, 82, 105);}

.alert-warning{color:rgb(138, 109, 59);background-color:rgb(252, 248, 227);border-top-color:rgb(250, 235, 204);border-right-color:rgb(250, 235, 204);border-bottom-color:rgb(250, 235, 204);border-left-color:rgb(250, 235, 204);}

.alert-warning hr{border-top-color:rgb(247, 225, 181);}

.alert-warning .alert-link{color:rgb(102, 81, 44);}

.alert-danger{color:rgb(169, 68, 66);background-color:rgb(242, 222, 222);border-top-color:rgb(235, 204, 209);border-right-color:rgb(235, 204, 209);border-bottom-color:rgb(235, 204, 209);border-left-color:rgb(235, 204, 209);}

.alert-danger hr{border-top-color:rgb(228, 185, 192);}

.alert-danger .alert-link{color:rgb(132, 53, 52);}

.progress{height:20px;margin-bottom:20px;overflow-x:hidden;overflow-y:hidden;background-color:rgb(245, 245, 245);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;box-shadow:rgba(0, 0, 0, 0.1) 0px 1px 2px inset;}

.progress-bar{float:left;width:0px;height:100%;font-size:12px;line-height:20px;color:rgb(255, 255, 255);text-align:center;background-color:rgb(51, 122, 183);box-shadow:rgba(0, 0, 0, 0.15) 0px -1px 0px inset;transition-behavior:normal;transition-duration:0.6s;transition-timing-function:ease;transition-delay:0s;transition-property:width;}

.progress-bar-striped, .progress-striped .progress-bar{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:40px 40px;}

.progress-bar.active, .progress.active .progress-bar{animation-duration:2s;animation-timing-function:linear;animation-delay:0s;animation-iteration-count:infinite;animation-direction:normal;animation-fill-mode:none;animation-play-state:running;animation-name:progress-bar-stripes;}

.progress-bar-success{background-color:rgb(92, 184, 92);}

.progress-striped .progress-bar-success{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}

.progress-bar-info{background-color:rgb(91, 192, 222);}

.progress-striped .progress-bar-info{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}

.progress-bar-warning{background-color:rgb(240, 173, 78);}

.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}

.progress-bar-danger{background-color:rgb(217, 83, 79);}

.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}

.media{overflow-x:hidden;overflow-y:hidden;zoom:1;}

.media:first-child{margin-top:0px;}

.media-body{display:table-cell;alignment-baseline:baseline;baseline-source:auto;}

.media-object{display:block;}

.media-object.img-thumbnail{max-width:none;}

.media-right, .media > .pull-right{padding-left:10px;}

.media-left, .media > .pull-left{padding-right:10px;}

.media-left{display:table-cell;alignment-baseline:baseline;baseline-source:auto;}

.media-right{display:table-cell;alignment-baseline:baseline;baseline-source:auto;}

.media-middle{alignment-baseline:middle;baseline-shift:0px;baseline-source:auto;}

.media-bottom{alignment-baseline:baseline;baseline-source:auto;}

.media-heading{margin-top:0px;margin-bottom:5px;}

.media-list{padding-left:0px;list-style-position:initial;list-style-image:initial;list-style-type:none;}

.list-group{padding-left:0px;margin-bottom:20px;}

.list-group-item{position:relative;display:block;padding-top:10px;padding-right:15px;padding-bottom:10px;padding-left:15px;margin-bottom:-1px;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(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;}

.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px;}

.list-group-item:last-child{margin-bottom:0px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

a.list-group-item, button.list-group-item{color:rgb(85, 85, 85);}

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading{color:rgb(51, 51, 51);}

a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover{color:rgb(85, 85, 85);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;background-color:rgb(245, 245, 245);}

button.list-group-item{width:100%;text-align:left;}

.list-group-item.active{z-index:2;color:rgb(255, 255, 255);background-color:rgb(51, 122, 183);border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.list-group-item.active:focus{z-index:2;color:rgb(255, 255, 255);background-color:rgb(51, 122, 183);border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.list-group-item.active:hover{z-index:2;color:rgb(255, 255, 255);background-color:rgb(51, 122, 183);border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > small{color:inherit;}

.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text{color:rgb(199, 221, 239);}

.list-group-item-success{color:rgb(60, 118, 61);background-color:rgb(223, 240, 216);}

a.list-group-item-success, button.list-group-item-success{color:rgb(60, 118, 61);}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading{color:inherit;}

a.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover{color:rgb(60, 118, 61);background-color:rgb(208, 233, 198);}

a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover, button.list-group-item-success.active, button.list-group-item-success.active:focus, button.list-group-item-success.active:hover{color:rgb(255, 255, 255);background-color:rgb(60, 118, 61);border-top-color:rgb(60, 118, 61);border-right-color:rgb(60, 118, 61);border-bottom-color:rgb(60, 118, 61);border-left-color:rgb(60, 118, 61);}

.list-group-item-info{color:rgb(49, 112, 143);background-color:rgb(217, 237, 247);}

a.list-group-item-info, button.list-group-item-info{color:rgb(49, 112, 143);}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading{color:inherit;}

a.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:focus, button.list-group-item-info:hover{color:rgb(49, 112, 143);background-color:rgb(196, 227, 243);}

a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover, button.list-group-item-info.active, button.list-group-item-info.active:focus, button.list-group-item-info.active:hover{color:rgb(255, 255, 255);background-color:rgb(49, 112, 143);border-top-color:rgb(49, 112, 143);border-right-color:rgb(49, 112, 143);border-bottom-color:rgb(49, 112, 143);border-left-color:rgb(49, 112, 143);}

.list-group-item-warning{color:rgb(138, 109, 59);background-color:rgb(252, 248, 227);}

a.list-group-item-warning, button.list-group-item-warning{color:rgb(138, 109, 59);}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading{color:inherit;}

a.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:focus, button.list-group-item-warning:hover{color:rgb(138, 109, 59);background-color:rgb(250, 242, 204);}

a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover, button.list-group-item-warning.active, button.list-group-item-warning.active:focus, button.list-group-item-warning.active:hover{color:rgb(255, 255, 255);background-color:rgb(138, 109, 59);border-top-color:rgb(138, 109, 59);border-right-color:rgb(138, 109, 59);border-bottom-color:rgb(138, 109, 59);border-left-color:rgb(138, 109, 59);}

.list-group-item-danger{color:rgb(169, 68, 66);background-color:rgb(242, 222, 222);}

a.list-group-item-danger, button.list-group-item-danger{color:rgb(169, 68, 66);}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading{color:inherit;}

a.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:focus, button.list-group-item-danger:hover{color:rgb(169, 68, 66);background-color:rgb(235, 204, 204);}

a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover, button.list-group-item-danger.active, button.list-group-item-danger.active:focus, button.list-group-item-danger.active:hover{color:rgb(255, 255, 255);background-color:rgb(169, 68, 66);border-top-color:rgb(169, 68, 66);border-right-color:rgb(169, 68, 66);border-bottom-color:rgb(169, 68, 66);border-left-color:rgb(169, 68, 66);}

.list-group-item-heading{margin-top:0px;margin-bottom:5px;}

.list-group-item-text{margin-bottom:0px;line-height:1.3;}

.panel{margin-bottom:20px;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:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;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;box-shadow:rgba(0, 0, 0, 0.05) 0px 1px 1px;}

.panel-body{padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;}

.panel-heading{padding-top:10px;padding-right:15px;padding-bottom:10px;padding-left:15px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:transparent;border-top-left-radius:3px;border-top-right-radius:3px;}

.panel-heading > .dropdown .dropdown-toggle{color:inherit;}

.panel-title{margin-top:0px;margin-bottom:0px;font-size:16px;color:inherit;}

.panel-title > .small, .panel-title > .small > a, .panel-title > a, .panel-title > small, .panel-title > small > a{color:inherit;}

.panel-footer{padding-top:10px;padding-right:15px;padding-bottom:10px;padding-left:15px;background-color:rgb(245, 245, 245);border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.panel > .list-group, .panel > .panel-collapse > .list-group{margin-bottom:0px;}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item{border-top-width:1px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child{border-top-width:0px;border-top-style:none;border-top-color:currentcolor;border-top-left-radius:3px;border-top-right-radius:3px;}

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child{border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child{border-top-left-radius:0px;border-top-right-radius:0px;}

.panel-heading + .list-group .list-group-item:first-child{border-top-width:0px;}

.list-group + .panel-footer{border-top-width:0px;}

.panel > .panel-collapse > .table, .panel > .table, .panel > .table-responsive > .table{margin-bottom:0px;}

.panel > .panel-collapse > .table caption, .panel > .table caption, .panel > .table-responsive > .table caption{padding-right:15px;padding-left:15px;}

.panel > .table-responsive:first-child > .table:first-child, .panel > .table:first-child{border-top-left-radius:3px;border-top-right-radius:3px;}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table:first-child > thead:first-child > tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px;}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child{border-top-left-radius:3px;}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child{border-top-right-radius:3px;}

.panel > .table-responsive:last-child > .table:last-child, .panel > .table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child{border-bottom-left-radius:3px;}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child{border-bottom-right-radius:3px;}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body{border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);}

.panel > .table > tbody:first-child > tr:first-child td, .panel > .table > tbody:first-child > tr:first-child th{border-top-width:0px;border-top-style:none;border-top-color:currentcolor;}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered{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;}

.panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child{border-left-width:0px;border-left-style:none;border-left-color:currentcolor;}

.panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child{border-right-width:0px;border-right-style:none;border-right-color:currentcolor;}

.panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th{border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th{border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;}

.panel > .table-responsive{margin-bottom: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;}

.panel-group{margin-bottom:20px;}

.panel-group .panel{margin-bottom:0px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.panel-group .panel + .panel{margin-top:5px;}

.panel-group .panel-heading{border-bottom-width:0px;border-bottom-style:none;border-bottom-color:currentcolor;}

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body{border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);}

.panel-group .panel-footer{border-top-width:0px;border-top-style:none;border-top-color:currentcolor;}

.panel-group .panel-footer + .panel-collapse .panel-body{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);}

.panel-default{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);}

.panel-default > .panel-heading{color:rgb(51, 51, 51);background-color:rgb(245, 245, 245);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);}

.panel-default > .panel-heading + .panel-collapse > .panel-body{border-top-color:rgb(221, 221, 221);}

.panel-default > .panel-heading .badge{color:rgb(245, 245, 245);background-color:rgb(51, 51, 51);}

.panel-default > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:rgb(221, 221, 221);}

.panel-primary{border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.panel-primary > .panel-heading{color:rgb(255, 255, 255);background-color:rgb(51, 122, 183);border-top-color:rgb(51, 122, 183);border-right-color:rgb(51, 122, 183);border-bottom-color:rgb(51, 122, 183);border-left-color:rgb(51, 122, 183);}

.panel-primary > .panel-heading + .panel-collapse > .panel-body{border-top-color:rgb(51, 122, 183);}

.panel-primary > .panel-heading .badge{color:rgb(51, 122, 183);background-color:rgb(255, 255, 255);}

.panel-primary > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:rgb(51, 122, 183);}

.panel-success{border-top-color:rgb(214, 233, 198);border-right-color:rgb(214, 233, 198);border-bottom-color:rgb(214, 233, 198);border-left-color:rgb(214, 233, 198);}

.panel-success > .panel-heading{color:rgb(60, 118, 61);background-color:rgb(223, 240, 216);border-top-color:rgb(214, 233, 198);border-right-color:rgb(214, 233, 198);border-bottom-color:rgb(214, 233, 198);border-left-color:rgb(214, 233, 198);}

.panel-success > .panel-heading + .panel-collapse > .panel-body{border-top-color:rgb(214, 233, 198);}

.panel-success > .panel-heading .badge{color:rgb(223, 240, 216);background-color:rgb(60, 118, 61);}

.panel-success > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:rgb(214, 233, 198);}

.panel-info{border-top-color:rgb(188, 232, 241);border-right-color:rgb(188, 232, 241);border-bottom-color:rgb(188, 232, 241);border-left-color:rgb(188, 232, 241);}

.panel-info > .panel-heading{color:rgb(49, 112, 143);background-color:rgb(217, 237, 247);border-top-color:rgb(188, 232, 241);border-right-color:rgb(188, 232, 241);border-bottom-color:rgb(188, 232, 241);border-left-color:rgb(188, 232, 241);}

.panel-info > .panel-heading + .panel-collapse > .panel-body{border-top-color:rgb(188, 232, 241);}

.panel-info > .panel-heading .badge{color:rgb(217, 237, 247);background-color:rgb(49, 112, 143);}

.panel-info > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:rgb(188, 232, 241);}

.panel-warning{border-top-color:rgb(250, 235, 204);border-right-color:rgb(250, 235, 204);border-bottom-color:rgb(250, 235, 204);border-left-color:rgb(250, 235, 204);}

.panel-warning > .panel-heading{color:rgb(138, 109, 59);background-color:rgb(252, 248, 227);border-top-color:rgb(250, 235, 204);border-right-color:rgb(250, 235, 204);border-bottom-color:rgb(250, 235, 204);border-left-color:rgb(250, 235, 204);}

.panel-warning > .panel-heading + .panel-collapse > .panel-body{border-top-color:rgb(250, 235, 204);}

.panel-warning > .panel-heading .badge{color:rgb(252, 248, 227);background-color:rgb(138, 109, 59);}

.panel-warning > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:rgb(250, 235, 204);}

.panel-danger{border-top-color:rgb(235, 204, 209);border-right-color:rgb(235, 204, 209);border-bottom-color:rgb(235, 204, 209);border-left-color:rgb(235, 204, 209);}

.panel-danger > .panel-heading{color:rgb(169, 68, 66);background-color:rgb(242, 222, 222);border-top-color:rgb(235, 204, 209);border-right-color:rgb(235, 204, 209);border-bottom-color:rgb(235, 204, 209);border-left-color:rgb(235, 204, 209);}

.panel-danger > .panel-heading + .panel-collapse > .panel-body{border-top-color:rgb(235, 204, 209);}

.panel-danger > .panel-heading .badge{color:rgb(242, 222, 222);background-color:rgb(169, 68, 66);}

.panel-danger > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:rgb(235, 204, 209);}

.embed-responsive{position:relative;display:block;height:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;overflow-x:hidden;overflow-y:hidden;}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video{position:absolute;top:0px;bottom:0px;left:0px;width:100%;height:100%;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;}

.embed-responsive-16by9{padding-bottom:56.25%;}

.embed-responsive-4by3{padding-bottom:75%;}

.well{min-height:20px;padding-top:19px;padding-right:19px;padding-bottom:19px;padding-left:19px;margin-bottom:20px;background-color:rgb(245, 245, 245);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(227, 227, 227);border-right-color:rgb(227, 227, 227);border-bottom-color:rgb(227, 227, 227);border-left-color:rgb(227, 227, 227);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;box-shadow:rgba(0, 0, 0, 0.05) 0px 1px 1px inset;}

.well blockquote{border-top-color:rgba(0, 0, 0, 0.15);border-right-color:rgba(0, 0, 0, 0.15);border-bottom-color:rgba(0, 0, 0, 0.15);border-left-color:rgba(0, 0, 0, 0.15);}

.well-lg{padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

.well-sm{padding-top:9px;padding-right:9px;padding-bottom:9px;padding-left:9px;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}

.close{float:right;font-size:21px;font-weight:700;line-height:1;color:rgb(0, 0, 0);text-shadow:rgb(255, 255, 255) 0px 1px 0px;opacity:0.2;}

.close:focus{color:rgb(0, 0, 0);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;cursor:pointer;opacity:0.5;}

.close:hover{color:rgb(0, 0, 0);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;cursor:pointer;opacity:0.5;}

button.close{appearance:none;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;cursor:pointer;background-image:initial;background-position-x:0px;background-position-y:0px;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;}

.modal-open{overflow-x:hidden;overflow-y:hidden;}

.modal{position:fixed;top:0px;right:0px;bottom:0px;left:0px;z-index:1050;display:none;overflow-x:hidden;overflow-y:hidden;outline-color:initial;outline-style:initial;outline-width:0px;}

.modal.in .modal-dialog{transform:translate(0px);}

.modal-open .modal{overflow-x:hidden;overflow-y:auto;}

.modal-dialog{position:relative;width:auto;margin-top:10px;margin-right:10px;margin-bottom:10px;margin-left:10px;}

.modal-content{position:relative;background-color:rgb(255, 255, 255);background-clip:padding-box;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:rgba(0, 0, 0, 0.2);border-right-color:rgba(0, 0, 0, 0.2);border-bottom-color:rgba(0, 0, 0, 0.2);border-left-color:rgba(0, 0, 0, 0.2);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;outline-color:initial;outline-style:initial;outline-width:0px;box-shadow:rgba(0, 0, 0, 0.5) 0px 3px 9px;}

.modal-backdrop{position:fixed;top:0px;right:0px;bottom:0px;left:0px;z-index:1040;background-color:rgb(0, 0, 0);}

.modal-backdrop.in{opacity:0.5;}

.modal-header{padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);}

.modal-header .close{margin-top:-2px;}

.modal-title{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;line-height:1.42857;}

.modal-body{position:relative;padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;}

.modal-footer{padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;text-align:right;border-top-width:1px;border-top-style:solid;border-top-color:rgb(229, 229, 229);}

.modal-footer .btn + .btn{margin-bottom:0px;margin-left:5px;}

.modal-footer .btn-group .btn + .btn{margin-left:-1px;}

.modal-footer .btn-block + .btn-block{margin-left:0px;}

.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow-x:scroll;overflow-y:scroll;}

@media (min-width: 768px){.modal-dialog{width:600px;margin-top:30px;margin-right:auto;margin-bottom:30px;margin-left:auto;}}

@media (min-width: 768px){.modal-content{box-shadow:rgba(0, 0, 0, 0.5) 0px 5px 15px;}}

@media (min-width: 768px){.modal-sm{width:300px;}}

@media (min-width: 992px){.modal-lg{width:900px;}}

.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857;text-align:start;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;overflow-wrap:normal;white-space-collapse:collapse;text-wrap-mode:wrap;opacity:0;line-break:auto;}

.tooltip.in{opacity:0.9;}

.tooltip.top{padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;margin-top:-3px;}

.tooltip.right{padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:5px;margin-left:3px;}

.tooltip.bottom{padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;margin-top:3px;}

.tooltip.left{padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:5px;margin-left:-3px;}

.tooltip-inner{max-width:200px;padding-top:3px;padding-right:8px;padding-bottom:3px;padding-left:8px;color:rgb(255, 255, 255);text-align:center;background-color:rgb(0, 0, 0);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}

.tooltip-arrow{position:absolute;width:0px;height:0px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;}

.tooltip.top .tooltip-arrow{bottom:0px;left:50%;margin-left:-5px;border-top-width:5px;border-right-width:5px;border-bottom-width:0px;border-left-width:5px;border-top-color:rgb(0, 0, 0);}

.tooltip.top-left .tooltip-arrow{right:5px;bottom:0px;margin-bottom:-5px;border-top-width:5px;border-right-width:5px;border-bottom-width:0px;border-left-width:5px;border-top-color:rgb(0, 0, 0);}

.tooltip.top-right .tooltip-arrow{bottom:0px;left:5px;margin-bottom:-5px;border-top-width:5px;border-right-width:5px;border-bottom-width:0px;border-left-width:5px;border-top-color:rgb(0, 0, 0);}

.tooltip.right .tooltip-arrow{top:50%;left:0px;margin-top:-5px;border-top-width:5px;border-right-width:5px;border-bottom-width:5px;border-left-width:0px;border-right-color:rgb(0, 0, 0);}

.tooltip.left .tooltip-arrow{top:50%;right:0px;margin-top:-5px;border-top-width:5px;border-right-width:0px;border-bottom-width:5px;border-left-width:5px;border-left-color:rgb(0, 0, 0);}

.tooltip.bottom .tooltip-arrow{top:0px;left:50%;margin-left:-5px;border-top-width:0px;border-right-width:5px;border-bottom-width:5px;border-left-width:5px;border-bottom-color:rgb(0, 0, 0);}

.tooltip.bottom-left .tooltip-arrow{top:0px;right:5px;margin-top:-5px;border-top-width:0px;border-right-width:5px;border-bottom-width:5px;border-left-width:5px;border-bottom-color:rgb(0, 0, 0);}

.tooltip.bottom-right .tooltip-arrow{top:0px;left:5px;margin-top:-5px;border-top-width:0px;border-right-width:5px;border-bottom-width:5px;border-left-width:5px;border-bottom-color:rgb(0, 0, 0);}

.popover{position:absolute;top:0px;left:0px;z-index:1060;display:none;max-width:276px;padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857;text-align:start;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;overflow-wrap:normal;white-space-collapse:collapse;text-wrap-mode:wrap;background-color:rgb(255, 255, 255);background-clip:padding-box;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:rgba(0, 0, 0, 0.2);border-right-color:rgba(0, 0, 0, 0.2);border-bottom-color:rgba(0, 0, 0, 0.2);border-left-color:rgba(0, 0, 0, 0.2);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;box-shadow:rgba(0, 0, 0, 0.2) 0px 5px 10px;line-break:auto;}

.popover.top{margin-top:-10px;}

.popover.right{margin-left:10px;}

.popover.bottom{margin-top:10px;}

.popover.left{margin-left:-10px;}

.popover-title{padding-top:8px;padding-right:14px;padding-bottom:8px;padding-left:14px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;background-color:rgb(247, 247, 247);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(235, 235, 235);border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}

.popover-content{padding-top:9px;padding-right:14px;padding-bottom:9px;padding-left:14px;}

.popover > .arrow, .popover > .arrow::after{position:absolute;display:block;width:0px;height:0px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;}

.popover > .arrow{border-top-width:11px;border-right-width:11px;border-bottom-width:11px;border-left-width:11px;}

.popover > .arrow::after{content:"";border-top-width:10px;border-right-width:10px;border-bottom-width:10px;border-left-width:10px;}

.popover.top > .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:rgba(0, 0, 0, 0.25);border-bottom-width:0px;}

.popover.top > .arrow::after{bottom:1px;margin-left:-10px;content:" ";border-top-color:rgb(255, 255, 255);border-bottom-width:0px;}

.popover.right > .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:rgba(0, 0, 0, 0.25);border-left-width:0px;}

.popover.right > .arrow::after{bottom:-10px;left:1px;content:" ";border-right-color:rgb(255, 255, 255);border-left-width:0px;}

.popover.bottom > .arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0px;border-bottom-color:rgba(0, 0, 0, 0.25);}

.popover.bottom > .arrow::after{top:1px;margin-left:-10px;content:" ";border-top-width:0px;border-bottom-color:rgb(255, 255, 255);}

.popover.left > .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0px;border-left-color:rgba(0, 0, 0, 0.25);}

.popover.left > .arrow::after{right:1px;bottom:-10px;content:" ";border-right-width:0px;border-left-color:rgb(255, 255, 255);}

.carousel{position:relative;}

.carousel-inner{position:relative;width:100%;overflow-x:hidden;overflow-y:hidden;}

.carousel-inner > .item{position:relative;display:none;transition-behavior:normal;transition-duration:0.6s;transition-timing-function:ease-in-out;transition-delay:0s;transition-property:left;}

.carousel-inner > .item > a > img, .carousel-inner > .item > img{line-height:1;}

@media (transform-3d), (-webkit-transform-3d){.carousel-inner > .item{transition-behavior:normal;transition-duration:0.6s;transition-timing-function:ease-in-out;transition-delay:0s;transition-property:transform;backface-visibility:hidden;perspective:1000px;}}

@media (transform-3d), (-webkit-transform-3d){.carousel-inner > .item.active.right, .carousel-inner > .item.next{left:0px;transform:translate3d(100%, 0px, 0px);}}

@media (transform-3d), (-webkit-transform-3d){.carousel-inner > .item.active.left, .carousel-inner > .item.prev{left:0px;transform:translate3d(-100%, 0px, 0px);}}

@media (transform-3d), (-webkit-transform-3d){.carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right{left:0px;transform:translate3d(0px, 0px, 0px);}}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev{display:block;}

.carousel-inner > .active{left:0px;}

.carousel-inner > .next, .carousel-inner > .prev{position:absolute;top:0px;width:100%;}

.carousel-inner > .next{left:100%;}

.carousel-inner > .prev{left:-100%;}

.carousel-inner > .next.left, .carousel-inner > .prev.right{left:0px;}

.carousel-inner > .active.left{left:-100%;}

.carousel-inner > .active.right{left:100%;}

.carousel-control{position:absolute;top:0px;bottom:0px;left:0px;width:15%;font-size:20px;color:rgb(255, 255, 255);text-align:center;text-shadow:rgba(0, 0, 0, 0.6) 0px 1px 2px;background-color:rgba(0, 0, 0, 0);opacity:0.5;}

.carousel-control.left{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5) 0px, rgba(0, 0, 0, 0) 100%);background-repeat:repeat-x;}

.carousel-control.right{right:0px;left:auto;background-image:linear-gradient(to right, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.5) 100%);background-repeat:repeat-x;}

.carousel-control:focus{color:rgb(255, 255, 255);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;outline-color:initial;outline-style:initial;outline-width:0px;opacity:0.9;}

.carousel-control:hover{color:rgb(255, 255, 255);text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;outline-color:initial;outline-style:initial;outline-width:0px;opacity:0.9;}

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px;}

.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev{left:50%;margin-left:-10px;}

.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next{right:50%;margin-right:-10px;}

.carousel-control .icon-next, .carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1;}

.carousel-control .icon-prev::before{content:"‹";}

.carousel-control .icon-next::before{content:"›";}

.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0px;margin-left:-30%;text-align:center;list-style-position:initial;list-style-image:initial;list-style-type:none;}

.carousel-indicators li{display:inline-block;width:10px;height:10px;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0, 0, 0, 0);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(255, 255, 255);border-right-color:rgb(255, 255, 255);border-bottom-color:rgb(255, 255, 255);border-left-color:rgb(255, 255, 255);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:10px;border-top-right-radius:10px;border-bottom-right-radius:10px;border-bottom-left-radius:10px;}

.carousel-indicators .active{width:12px;height:12px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;background-color:rgb(255, 255, 255);}

.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:rgb(255, 255, 255);text-align:center;text-shadow:rgba(0, 0, 0, 0.6) 0px 1px 2px;}

.carousel-caption .btn{text-shadow:none;}

@media screen and (min-width: 768px){.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px;}}

@media screen and (min-width: 768px){.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev{margin-left:-10px;}}

@media screen and (min-width: 768px){.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next{margin-right:-10px;}}

@media screen and (min-width: 768px){.carousel-caption{right:20%;left:20%;padding-bottom:30px;}}

@media screen and (min-width: 768px){.carousel-indicators{bottom:20px;}}

.center-block{display:block;margin-right:auto;margin-left:auto;}

.pull-right{float:right !important;}

.pull-left{float:left !important;}

.hide{display:none !important;}

.show{display:block !important;}

.invisible{visibility:hidden;}

.text-hide{font-style:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size-adjust:none;font-language-override:normal;font-kerning:auto;font-optical-sizing:auto;font-feature-settings:normal;font-variation-settings:normal;font-variant-position:normal;font-variant-emoji:normal;font-weight:normal;font-stretch:normal;font-size:0px;line-height:0;font-family:a;color:transparent;text-shadow:none;background-color:transparent;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;}

.hidden{display:none !important;}

.affix{position:fixed;}

.visible-lg{display:none !important;}

.visible-md{display:none !important;}

.visible-sm{display:none !important;}

.visible-xs{display:none !important;}

.visible-lg-block{display:none !important;}

.visible-lg-inline{display:none !important;}

.visible-lg-inline-block{display:none !important;}

.visible-md-block{display:none !important;}

.visible-md-inline{display:none !important;}

.visible-md-inline-block{display:none !important;}

.visible-sm-block{display:none !important;}

.visible-sm-inline{display:none !important;}

.visible-sm-inline-block{display:none !important;}

.visible-xs-block{display:none !important;}

.visible-xs-inline{display:none !important;}

.visible-xs-inline-block{display:none !important;}

@media (max-width: 767px){.visible-xs{display:block !important;}}

@media (max-width: 767px){table.visible-xs{display:table !important;}}

@media (max-width: 767px){tr.visible-xs{display:table-row !important;}}

@media (max-width: 767px){td.visible-xs, th.visible-xs{display:table-cell !important;}}

@media (max-width: 767px){.visible-xs-block{display:block !important;}}

@media (max-width: 767px){.visible-xs-inline{display:inline !important;}}

@media (max-width: 767px){.visible-xs-inline-block{display:inline-block !important;}}

@media (min-width: 768px) and (max-width: 991px){.visible-sm{display:block !important;}}

@media (min-width: 768px) and (max-width: 991px){table.visible-sm{display:table !important;}}

@media (min-width: 768px) and (max-width: 991px){tr.visible-sm{display:table-row !important;}}

@media (min-width: 768px) and (max-width: 991px){td.visible-sm, th.visible-sm{display:table-cell !important;}}

@media (min-width: 768px) and (max-width: 991px){.visible-sm-block{display:block !important;}}

@media (min-width: 768px) and (max-width: 991px){.visible-sm-inline{display:inline !important;}}

@media (min-width: 768px) and (max-width: 991px){.visible-sm-inline-block{display:inline-block !important;}}

@media (min-width: 992px) and (max-width: 1119px){.visible-md{display:block !important;}}

@media (min-width: 992px) and (max-width: 1119px){table.visible-md{display:table !important;}}

@media (min-width: 992px) and (max-width: 1119px){tr.visible-md{display:table-row !important;}}

@media (min-width: 992px) and (max-width: 1119px){td.visible-md, th.visible-md{display:table-cell !important;}}

@media (min-width: 992px) and (max-width: 1119px){.visible-md-block{display:block !important;}}

@media (min-width: 992px) and (max-width: 1119px){.visible-md-inline{display:inline !important;}}

@media (min-width: 992px) and (max-width: 1119px){.visible-md-inline-block{display:inline-block !important;}}

@media (min-width: 1120px){.visible-lg{display:block !important;}}

@media (min-width: 1120px){table.visible-lg{display:table !important;}}

@media (min-width: 1120px){tr.visible-lg{display:table-row !important;}}

@media (min-width: 1120px){td.visible-lg, th.visible-lg{display:table-cell !important;}}

@media (min-width: 1120px){.visible-lg-block{display:block !important;}}

@media (min-width: 1120px){.visible-lg-inline{display:inline !important;}}

@media (min-width: 1120px){.visible-lg-inline-block{display:inline-block !important;}}

.visible-print{display:none !important;}

@media print{.visible-print{display:block !important;}}

@media print{table.visible-print{display:table !important;}}

@media print{tr.visible-print{display:table-row !important;}}

@media print{td.visible-print, th.visible-print{display:table-cell !important;}}

.visible-print-block{display:none !important;}

@media print{.visible-print-block{display:block !important;}}

.visible-print-inline{display:none !important;}

@media print{.visible-print-inline{display:inline !important;}}

.visible-print-inline-block{display:none !important;}

@media print{.visible-print-inline-block{display:inline-block !important;}}

@media print{.hidden-print{display:none !important;}}

.editable > img{width:100% !important;}

#i3b6g{font-size:16px !important;}

#id8ba{font-family:Oswald, sans-serif !important;font-size:26px !important;font-weight:500 !important;text-align:center !important;}

.form-control::placeholder{color:rgb(153, 153, 153);opacity:1;}

@font-face{src:url("https://maxcdn.bootstrapcdn.com/bootstrap/latest/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("https://maxcdn.bootstrapcdn.com/bootstrap/latest/fonts/glyphicons-halflings-regular.woff") format("woff");}

#i2gp6{padding-top:0px !important;padding-right:0px !important;padding-bottom:15px !important;padding-left:0px !important;}

#iur0m{text-align:center !important;padding-top:0px !important;padding-right:35px !important;padding-bottom:0px !important;padding-left:35px !important;}

@media (min-width: 769px) and (max-width: 1024px){#icm0hg{grid-template-columns:repeat(2, 1fr);display:grid;}}

@media (min-width: 1025px){#icm0hg{grid-template-columns:repeat(4, 1fr);display:grid;}}

#i76vu3{margin-top:20px !important;margin-right:0px !important;margin-bottom:10px !important;margin-left:0px !important;}

#iegz2m{font-size:14px !important;font-family:Helvetica, sans-serif !important;line-height:125% !important;padding-top:0px !important;padding-right:10px !important;padding-bottom:0px !important;padding-left:10px !important;}

#i89ink{font-size:14px !important;font-family:Helvetica, sans-serif !important;line-height:125% !important;padding-top:0px !important;padding-right:10px !important;padding-bottom:0px !important;padding-left:10px !important;}

#ijrnyw{box-shadow:black 0px 0px 5px 0px !important;}

#ilhp18{font-size:24px !important;font-weight:500 !important;line-height:1.2 !important;color:rgb(255, 51, 51) !important;text-align:center !important;background-color:rgb(0, 0, 0) !important;font-family:Oswald, sans-serif !important;letter-spacing:1.2px !important;padding-top:20px !important;padding-right:10px !important;padding-bottom:20px !important;padding-left:10px !important;box-shadow:black 0px 0px 5px 0px !important;}

#ixu665{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;line-height:135% !important;}

#itgbxc{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;line-height:135% !important;}

#ia7txz{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;}

#iwwjes{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;line-height:135% !important;}

#i305sy{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;}

#ir6rdk{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;line-height:135% !important;}

#iy9lwt{color:rgb(255, 51, 51);}

#ir73cx{color:rgb(255, 51, 51);}

#irsmcf{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;}

#i4496i{font-size:16px !important;font-weight:300 !important;line-height:130% !important;padding-top:15px !important;padding-right:20px !important;padding-bottom:20px !important;padding-left:20px !important;font-family:Oswald, sans-serif !important;margin-top:-6px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;}

#iu0rmb{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;}

#ify4zr{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;line-height:135% !important;}

#i0gr93{font-family:Oswald, sans-serif !important;font-size:16px !important;font-weight:300 !important;}

#is3hsi{line-height:125% !important;font-size:16px !important;font-family:Oswald, sans-serif !important;font-weight:300 !important;}

#ixtodh{font-size:16px !important;font-weight:200 !important;line-height:125% !important;padding-top:20px !important;padding-right:20px !important;padding-bottom:0px !important;padding-left:20px !important;font-family:Oswald, sans-serif !important;}

#iazq8e{font-size:24px !important;font-weight:500 !important;line-height:1.2 !important;color:rgb(255, 51, 51) !important;text-align:center !important;background-color:rgb(0, 0, 0) !important;font-family:Oswald, sans-serif !important;letter-spacing:1.2px !important;padding-top:20px !important;padding-right:10px !important;padding-bottom:20px !important;padding-left:10px !important;box-shadow:black 0px 0px 5px 0px !important;}

#i3giao{border-right-width:medium !important;border-right-style:none !important;border-right-color:currentcolor !important;border-bottom-width:medium !important;border-bottom-style:none !important;border-bottom-color:currentcolor !important;border-left-width:medium !important;border-left-style:none !important;border-left-color:currentcolor !important;border-image-outset:0 !important;border-image-repeat:stretch !important;border-image-slice:100% !important;border-image-source:none !important;border-image-width:1 !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgb(224, 224, 224) !important;margin-top:16px !important;margin-bottom:16px !important;width:95% !important;}

#iw9dgm{display:inline !important;justify-content:center !important;float:none !important;margin-top:20px !important;margin-right:0px !important;margin-bottom:25px !important;margin-left:15px !important;align-self:center !important;}

#ilwb03{display:inline-block !important;float:none !important;justify-content:center !important;}

#ijdnbh{border-right-width:medium !important;border-right-style:none !important;border-right-color:currentcolor !important;border-bottom-width:medium !important;border-bottom-style:none !important;border-bottom-color:currentcolor !important;border-left-width:medium !important;border-left-style:none !important;border-left-color:currentcolor !important;border-image-outset:0 !important;border-image-repeat:stretch !important;border-image-slice:100% !important;border-image-source:none !important;border-image-width:1 !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgb(224, 224, 224) !important;margin-top:16px !important;margin-bottom:16px !important;width:95% !important;}

#ic3854{text-align:center !important;}

#imeu11{text-align:center !important;}

#ilwds5{font-weight:700 !important;}

#imkxl9{color:rgb(255, 51, 51) !important;}

#iirpsm{color:rgb(255, 51, 51) !important;}

#izih2m{font-family:Helvetica, sans-serif !important;line-height:125% !important;padding-top:0px !important;padding-right:10px !important;padding-bottom:0px !important;padding-left:10px !important;}

#i3memj{font-family:Helvetica, sans-serif !important;font-size:14px !important;line-height:200% !important;}

#iedjcn{font-family:Helvetica, sans-serif !important;font-size:14px !important;}

#ibkhhf{font-family:Helvetica, sans-serif !important;font-size:14px !important;line-height:125% !important;}

#ib5de1{line-height:125% !important;}

#issz2v{font-family:Helvetica, sans-serif !important;line-height:125% !important;padding-top:0px !important;padding-right:10px !important;padding-bottom:0px !important;padding-left:10px !important;}

#iftqnl{font-family:Helvetica, sans-serif !important;font-size:14px !important;line-height:125% !important;}

#i16t9p{font-family:Helvetica, sans-serif !important;font-size:14px !important;line-height:125% !important;}

#i08ghu{font-family:Helvetica, sans-serif !important;font-size:14px !important;line-height:125% !important;}

#iyfdhy{font-family:Helvetica, sans-serif !important;font-size:14px !important;line-height:125% !important;padding-top:0px !important;padding-right:10px !important;padding-bottom:0px !important;padding-left:10px !important;}

#ijb1gg{font-family:Helvetica, sans-serif !important;font-size:14px !important;line-height:125% !important;color:rgb(255, 51, 51) !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;}

#it8juu{line-height:140% !important;margin-top:-20px !important;margin-right:0px !important;margin-bottom:10px !important;margin-left:0px !important;}

#iej60r{border-right-width:medium !important;border-bottom-width:medium !important;border-left-width:medium !important;border-right-style:none !important;border-bottom-style:none !important;border-left-style:none !important;border-right-color:currentcolor !important;border-bottom-color:currentcolor !important;border-left-color:currentcolor !important;border-image-source:initial !important;border-image-slice:initial !important;border-image-width:initial !important;border-image-outset:initial !important;border-image-repeat:initial !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgb(224, 224, 224) !important;margin-top:16px !important;margin-bottom:16px !important;width:95% !important;}

#isfs87-2-2{font-weight:700 !important;}

#iyv1fx{color:rgb(255, 51, 51) !important;}

#ifd3et{display:block !important;object-fit:cover !important;width:auto !important;box-shadow:black 0px 5px 0px 0px !important;}

#iq0khg{display:block !important;object-fit:cover !important;padding-top:25px !important;padding-right:25px !important;padding-bottom:25px !important;padding-left:25px !important;background-color:rgb(134, 0, 0) !important;box-shadow:unset !important;}

#ib18py-2-3{display:block !important;object-fit:cover !important;width:172px !important;height:50px !important;}

.tab-frame[data-uid="is27eiu"] > .tab-headers label.is-active, .tab-frame[data-uid="is27eiu"] > input[type="radio"]:nth-of-type(1):checked ~ .tab-headers label:nth-child(1), .tab-frame[data-uid="is27eiu"] > input[type="radio"]:nth-of-type(2):checked ~ .tab-headers label:nth-child(2), .tab-frame[data-uid="is27eiu"] > input[type="radio"]:nth-of-type(3):checked ~ .tab-headers label:nth-child(3), .tab-frame[data-uid="is27eiu"] > input[type="radio"]:nth-of-type(4):checked ~ .tab-headers label:nth-child(4), .tab-frame[data-uid="is27eiu"] > input[type="radio"]:nth-of-type(5):checked ~ .tab-headers label:nth-child(5), .tab-frame[data-uid="is27eiu"] > input[type="radio"]:nth-of-type(6):checked ~ .tab-headers label:nth-child(6){background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(0, 0, 0) !important;color:rgb(255, 51, 51) !important;}

#ifd2il{display:block !important;object-fit:cover !important;}

#i0wx0k{display:block !important;object-fit:cover !important;}

#ichdkh{display:block !important;object-fit:cover !important;}

#iygvg3{display:block !important;object-fit:cover !important;}

@media (min-width: 992px){.lit-hide-desktop{display:none !important;}}

@media (min-width: 768px) and (max-width: 991px){.lit-hide-tablet{display:none !important;}}

@media (max-width: 767px){.lit-hide-mobile{display:none !important;}}

.bc-container{width:1000px;max-width:100%;margin-left:auto;margin-right:auto;box-sizing:border-box;text-align:center;background-color:rgb(242, 198, 207);padding-top:0px;padding-right:0px;padding-bottom:5px;padding-left:0px;}

.lit-promo-card{text-align:center !important;font-family:inherit !important;box-sizing:border-box !important;cursor:pointer !important;text-decoration-color:currentcolor !important;text-decoration-line:none !important;text-decoration-style:solid !important;text-decoration-thickness:auto !important;color:inherit !important;}

.lit-promo-card *{pointer-events:none !important;}

.promo-grid{display:grid !important;grid-template-columns:repeat(4, 1fr) !important;row-gap:14px !important;column-gap:14px !important;}

.promo-card{text-align:center !important;display:flex !important;flex-direction:column !important;}

.promo-img{width:100% !important;aspect-ratio:1 / 1 !important;background-color:rgb(244, 244, 240) !important;background-position-x:0% !important;background-position-y:0% !important;background-repeat:repeat !important;background-attachment:scroll !important;background-image:none !important;background-size:auto !important;background-origin:padding-box !important;background-clip:border-box !important;margin-bottom:8px !important;display:flex !important;align-items:center !important;justify-content:center !important;overflow-x:hidden !important;overflow-y:hidden !important;}

.promo-img img{width:100% !important;height:100% !important;object-fit:cover !important;display:block !important;}

.promo-desc{font-size:13px !important;color:rgb(136, 136, 136) !important;line-height:1.6 !important;margin-bottom:5px !important;font-weight:300 !important;display:-webkit-box !important;-webkit-line-clamp:3 !important;-moz-box-orient:vertical !important;overflow-x:hidden !important;overflow-y:hidden !important;word-break:break-word !important;}

.promo-price{font-size:20px !important;font-weight:700 !important;color:rgb(51, 51, 51) !important;margin-top:auto !important;}

.litc-export-only{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;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}}

@media (max-width: 1024px){div.row{width:100%;max-width:1000px;padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;box-sizing:border-box;}}

@media (max-width: 1024px){div.centerpane.center-col{width:100%;padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;box-sizing:border-box;float:none;}}

@media (max-width: 1024px){div.header{height:auto;min-height:90px;padding-top:12px;padding-right:14px;padding-bottom:12px;padding-left:14px;flex-wrap:wrap;row-gap:12px;column-gap:12px;}}

@media (max-width: 1024px){div.header ul{flex-grow:1;flex-shrink:1;flex-basis:auto;justify-content:flex-end;}}

@media (max-width: 1024px){.categoryboxes{width:100%;padding-top:20px;padding-right:12px;padding-bottom:0px;padding-left:12px;box-sizing:border-box;}}

@media (max-width: 1024px){.categoryboxes li{aspect-ratio:306 / 196;}}

@media (max-width: 1024px){div.tabs .tab-headers label{font-size:13px;padding-top:12px;padding-right:6px;padding-bottom:12px;padding-left:6px;min-height:54px;}}

@media (max-width: 1024px){.lit-carousel--nav .lit-carousel-main{height:400px;}}

@media (max-width: 1024px){div.footer.footer ul{font-size:15px;}}

@media (max-width: 1024px){.lit-pay-footer{padding-top:22px;padding-right:14px;padding-bottom:16px;padding-left:14px;}}

@media (max-width: 1024px){.lit-pay-footer-logo .logo-img{max-height:48px;}}

@media (max-width: 1024px){.tab-headers{font-weight:600;font-size:16px;line-height:1.5px;}}

@media (max-width: 1024px){.storepromo_wrapper{padding-top:15px;padding-right:10px;padding-bottom:15px;padding-left:10px;}}

@media (max-width: 1024px){.storepromo{width:calc(50% - 20px);height:auto;aspect-ratio:469 / 215;}}

@media (max-width: 1024px){.storepromo img{height:100%;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}}

@media (max-width: 768px){.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;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}}

@media (max-width: 768px){div.row{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}}

@media (max-width: 768px){.mobile_only{display:block;}}

@media (max-width: 768px){.subheader-wrapper{display:none !important;}}

@media (max-width: 768px){.categoryboxes{display:none !important;}}

@media (max-width: 768px){.footer-wrapper{display:none !important;}}

@media (max-width: 768px){.lit-pay-footer .lit-pay-footer-name, .lit-pay-footer .lit-pay-row, .lit-pay-footer .lit-pay-footer-copy{display:none !important;}}

@media (max-width: 768px){div.header{min-height:0px;padding-top:12px;padding-right:12px;padding-bottom:12px;padding-left:12px;row-gap:8px;column-gap:8px;flex-direction:column;align-items:center;justify-content:center;flex-wrap:wrap;}}

@media (max-width: 768px){.store-logo, [data-gjs-type="lit-store-logo"]{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}}

@media (max-width: 768px){div.header ul{font-size:12px;line-height:1.8;flex-grow:0;flex-shrink:1;flex-basis:auto;justify-content:center;text-align:center;}}

@media (max-width: 768px){div.header ul li{display:inline-block;margin-top:2px;margin-right:6px;margin-bottom:2px;margin-left:0px;padding-top:0px;padding-right:6px;padding-bottom:0px;padding-left:0px;}}

@media (max-width: 768px){div.header ul li:last-child{margin-right:0px;padding-right:0px;}}

@media (max-width: 768px){.alt_image_gallery{float:none;width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}}

@media (max-width: 768px){.item-details{float:none;width:100%;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:0px;}}

@media (max-width: 768px){.item-details .item-title{display:none;}}

@media (max-width: 768px){.mobile_only .item-title{display:block;padding-top:0px;padding-right:8px;padding-bottom:0px;padding-left:8px;}}

@media (max-width: 768px){.mobile_only .item-title h3{font-size:1.8em;margin-top:0px;margin-right:0px;margin-bottom:12px;margin-left:0px;line-height:1.2;}}

@media (max-width: 768px){.item-details h3{font-size:2em;}}

@media (max-width: 768px){.lit-carousel--nav .lit-carousel-main{height:320px;}}

@media (max-width: 768px){div.tabs{margin-top:16px;margin-right:auto;margin-bottom:0px;margin-left:auto;}}

@media (max-width: 768px){div.tabs .tab-headers{flex-direction:column;row-gap:1px;column-gap:1px;}}

@media (max-width: 768px){div.tabs .tab-headers label{flex-grow:1;flex-shrink:1;flex-basis:100%;min-height:0px;padding-top:12px;padding-right:12px;padding-bottom:12px;padding-left:12px;text-align:left;font-size:15px;top:0px;justify-content:flex-start;}}

@media (max-width: 768px){div.tabs .tab-contents .tab-content{padding-top:16px;padding-right:10px;padding-bottom:16px;padding-left:10px;border-right-width:1px;border-right-style:solid;border-right-color:rgb(229, 229, 229);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(229, 229, 229);border-left-width:1px;border-left-style:solid;border-left-color:rgb(229, 229, 229);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;border-top-width:0px;border-top-style:none;border-top-color:currentcolor;}}

@media (max-width: 768px){.promo-grid{grid-template-columns:repeat(2, 1fr);}}

@media (max-width: 768px){.more_items{font-size:26px;font-weight:normal !important;}}

@media (max-width: 768px){.storepromo_wrapper{display:none !important;}}

@media (max-width: 768px){.homelink{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}}

@media (max-width: 768px){#icm0hg{grid-template-columns:repeat(1, 1fr);display:grid;}}