/** Shopify CDN: Minification failed

Line 870:16 Expected identifier but found whitespace
Line 870:18 Unexpected "{"
Line 870:25 Expected ":"
Line 870:58 Expected identifier but found "!"
Line 871:10 Expected identifier but found whitespace
Line 871:12 Unexpected "{"
Line 871:19 Expected ":"
Line 871:46 Expected identifier but found "!"
Line 874:14 Expected identifier but found whitespace
Line 874:16 Unexpected "{"
... and 22 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:repcube-reviews (INDEX:98) */
.rc-reviews {
    padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 40px);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #111111;
    -webkit-font-smoothing: antialiased;
  }

  .rc-reviews--light {
    background: #FFFFFF;
    --rc-text: #111111;
    --rc-muted: #6A6056;
    --rc-hairline: rgba(11, 15, 25, 0.08);
    --rc-card-bg: #FFFFFF;
    --rc-eyebrow: #6A6056;
  }

  .rc-reviews--warm {
    background: #F5F0E8;
    --rc-text: #111111;
    --rc-muted: #6A6056;
    --rc-hairline: #D8D1C7;
    --rc-card-bg: #FFFFFF;
    --rc-eyebrow: #6A6056;
  }

  .rc-reviews__container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .rc-reviews__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rc-eyebrow);
    margin: 0 0 12px;
  }

  .rc-reviews__heading {
    font-size: var(--rc-heading-size, 30px);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--rc-text);
    margin: 0 0 32px;
    text-wrap: balance;
  }

  .rc-reviews__summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--rc-summary-gap, 56px);
    align-items: center;
    padding: var(--rc-summary-padding-y, 32px) 0;
    margin-bottom: 40px;
  }

  [data-summary-border="hairlines"] .rc-reviews__summary {
    border-top: 1px solid var(--rc-hairline);
    border-bottom: 1px solid var(--rc-hairline);
  }

  [data-summary-border="card"] .rc-reviews__summary {
    border: 1px solid var(--rc-hairline);
    border-radius: 12px;
    padding: var(--rc-summary-padding-y, 32px) 24px;
  }

  [data-summary-border="none"] .rc-reviews__summary {
    border: 0;
  }

  @media (max-width: 900px) {
    .rc-reviews__summary {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: calc(var(--rc-summary-padding-y, 32px) * 0.75) 0;
    }

    .rc-reviews__avg-num {
      font-size: calc(var(--rc-summary-num-size, 52px) * var(--rc-summary-mobile-scale, 1));
    }

    .rc-reviews__avg-bigstar {
      width: calc(var(--rc-summary-star-size, 40px) * var(--rc-summary-mobile-scale, 1)) !important;
      height: calc(var(--rc-summary-star-size, 40px) * var(--rc-summary-mobile-scale, 1)) !important;
    }

    [data-summary-mobile-align="center"] .rc-reviews__summary-score {
      align-items: center;
      text-align: center;
    }

    [data-summary-mobile-align="center"] .rc-reviews__avg {
      justify-content: center;
    }

    [data-summary-mobile-align="center"] .rc-reviews__actions {
      justify-content: center;
    }

    [data-summary-mobile-hide-dist="true"] .rc-reviews__distribution {
      display: none;
    }
  }

  .rc-reviews__summary-score {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
  }

  .rc-reviews__avg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
  }

  .rc-reviews__avg-bigstar {
    width: var(--rc-summary-star-size, 40px);
    height: var(--rc-summary-star-size, 40px);
    color: #B5946E;
    flex-shrink: 0;
  }

  .rc-reviews__avg-num {
    font-size: var(--rc-summary-num-size, 52px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--rc-text);
    font-feature-settings: "tnum" 1;
  }

  .rc-reviews__avg-count {
    font-size: var(--rc-summary-count-size, 14px);
    font-weight: 400;
    color: var(--rc-muted);
    font-feature-settings: "tnum" 1;
    margin-top: 2px;
  }

  .rc-reviews__distribution {
    display: grid;
    gap: 8px;
    max-width: 460px;
    width: 100%;
    justify-self: center;
  }

  @media (max-width: 900px) {
    .rc-reviews__distribution {
      justify-self: stretch;
    }
  }

  .rc-reviews__dist-row {
    display: grid;
    grid-template-columns: auto 1fr 36px;
    gap: 14px;
    align-items: center;
    font-size: var(--rc-summary-dist-size, 12px);
    color: var(--rc-muted);
    font-feature-settings: "tnum" 1;
  }

  .rc-reviews__dist-stars {
    display: inline-flex;
    gap: 1px;
    color: #B5946E;
  }

  .rc-reviews__dist-bar {
    height: var(--rc-dist-bar-height, 6px);
    background: var(--rc-hairline);
    border-radius: 100px;
    overflow: hidden;
  }

  .rc-reviews__dist-bar-fill {
    height: 100%;
    background: #B5946E;
    border-radius: 100px;
    transition: width 400ms ease;
  }

  .rc-reviews__dist-count {
    text-align: right;
    color: var(--rc-text);
  }

  .rc-reviews__dist-count--zero {
    color: var(--rc-muted);
  }

  .rc-reviews__actions {
    display: inline-flex;
    gap: 8px;
    align-items: center;
  }

  .rc-border {
    border: 1px solid var(--rc-hairline) !important;
    padding: 16px 32px !important;
  }

  .rc-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
  }

  .rc-btn:focus-visible {
    outline: 2px solid #B5946E;
    outline-offset: 2px;
  }

  .rc-btn--pill {
    background: transparent;
    color: #111111;
    border: 1px solid var(--rc-hairline);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 13px;
  }

  .rc-btn--pill:hover {
    border-color: #B5946E;
    color: #B5946E;
  }

  .rc-btn--secondary {
    background: #F5F0E8;
    color: #111111;
    border: 1px solid #D8D1C7;
  }

  .rc-btn--secondary:hover {
    background: #EEE7DD;
  }

  .rc-btn--ghost {
    background: transparent;
    color: #6A6056;
    border: 1px solid #D8D1C7;
  }

  .rc-btn--ghost:hover {
    color: #111111;
    background: #F5F0E8;
  }

  .rc-btn--primary {
    background: #111827;
    color: #FFFFFF;
    border: none;
  }

  .rc-btn--primary:hover {
    background: #1E293B;
  }

  .rc-btn--primary:active {
    background: #0F172A;
  }

  .rc-btn--primary:disabled {
    background: #6A6056;
    cursor: not-allowed;
    opacity: 0.6;
  }

  .rc-reviews__grid {
    column-count: var(--rc-cols-d, 4);
    column-gap: var(--rc-grid-gap, 20px);
  }

  @media (max-width: 1024px) {
    .rc-reviews__grid {
      column-count: var(--rc-cols-t, 3);
    }
  }

  @media (max-width: 640px) {
    .rc-reviews__grid {
      column-count: var(--rc-cols-m, 1);
    }
  }

  .rc-review {
    break-inside: avoid;
    background: var(--rc-card-bg);
    border: 1px solid var(--rc-hairline);
    border-radius: var(--rc-tile-radius, 12px);
    margin: 0 0 var(--rc-grid-gap, 20px);
    overflow: hidden;
    transition: border-color 150ms ease;
    display: block;
  }

  [data-card-hover="border-gold"] .rc-review:hover {
    border-color: #B5946E;
  }

  [data-card-hover="none"] .rc-review:hover {
    border-color: var(--rc-hairline);
  }

  [data-card-show-media="false"] .rc-review__media {
    display: none;
  }

  .rc-review__media {
    aspect-ratio: var(--rc-tile-aspect, 1 / 1);
    background: #FAFAFA;
    position: relative;
    overflow: hidden;
  }

  .rc-review__media img,
  .rc-review__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .rc-review__multi-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--rc-hairline);
    font-size: 11px;
    font-weight: 500;
    color: var(--rc-text);
    font-feature-settings: "tnum" 1;
    backdrop-filter: saturate(140%);
  }

  .rc-review__video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(11, 15, 25, 0.18);
  }

  .rc-review__video-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    display: grid;
    place-items: center;
    border: 1px solid var(--rc-hairline);
    color: #111827;
  }

  .rc-review__body {
    padding: var(--rc-tile-padding, 20px);
  }

  .rc-review__author-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  .rc-review__author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
  }

  .rc-review__author-name {
    font-size: var(--rc-card-name-size, 14px);
    font-weight: 500;
    color: var(--rc-text);
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rc-review__verified {
    width: var(--rc-verified-size, 14px);
    height: var(--rc-verified-size, 14px);
    flex-shrink: 0;
    display: inline-block;
  }

  .rc-review__date {
    font-size: var(--rc-card-date-size, 12px);
    font-weight: 400;
    color: var(--rc-muted);
    font-feature-settings: "tnum" 1;
    margin-left: auto;
    white-space: nowrap;
  }

  .rc-review__stars {
    display: inline-flex;
    gap: 2px;
    color: #B5946E;
    margin-bottom: 10px;
  }

  .rc-review__text {
    font-size: var(--rc-card-text-size, 14px);
    line-height: 1.55;
    font-weight: 400;
    color: var(--rc-text);
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
  }

  .rc-review__meta {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--rc-hairline);
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: var(--rc-muted);
    line-height: 1.45;
  }

  .rc-review__meta-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rc-muted);
    display: block;
    margin-bottom: 2px;
  }

  .rc-review__translated {
    color: var(--rc-muted);
  }

  .rc-reviews__state {
    padding: 64px 24px;
    text-align: center;
    font-size: 14px;
    color: var(--rc-muted);
  }

  .rc-reviews__more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .rc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 16px;
  }

  .rc-modal[hidden] {
    display: none !important;
  }

  .rc-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.55);
    cursor: pointer;
  }

  .rc-modal__panel {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(11, 15, 25, 0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 32px;
    color: #111111;
  }

  @media (max-width: 600px) {
    .rc-modal__panel {
      padding: 24px 20px;
      max-height: 100vh;
      border-radius: 12px 12px 0 0;
      align-self: end;
    }

    .rc-modal {
      align-items: end;
      padding: 0;
    }
  }

  .rc-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid rgba(11, 15, 25, 0.08);
    border-radius: 100px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6A6056;
    transition: border-color 150ms ease, color 150ms ease;
  }

  .rc-modal__close:hover {
    border-color: #B5946E;
    color: #B5946E;
  }

  .rc-modal__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6A6056;
    margin: 0 0 8px;
  }

  .rc-modal__title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 8px;
    text-wrap: balance;
  }

  .rc-modal__desc {
    font-size: 14px;
    color: #6A6056;
    line-height: 1.5;
    margin: 0 0 24px;
  }

  .rc-form {
    display: grid;
    gap: 18px;
  }

  .rc-field {
    display: grid;
    gap: 8px;
  }

  .rc-field__label {
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    letter-spacing: -0.005em;
  }

  .rc-field__hint {
    font-size: 12px;
    font-weight: 400;
    color: #6A6056;
    font-feature-settings: "tnum" 1;
  }

  .rc-input {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #111111;
    background: #FFFFFF;
    border: 1px solid rgba(11, 15, 25, 0.14);
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.45;
    width: 100%;
    transition: border-color 150ms ease;
    box-sizing: border-box;
  }

  .rc-input:hover {
    border-color: rgba(11, 15, 25, 0.24);
  }

  .rc-input:focus {
    outline: none;
    border-color: #B5946E;
    box-shadow: 0 0 0 1px #B5946E;
  }

  .rc-input--textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
  }

  .rc-stars-input {
    display: inline-flex;
    gap: 4px;
  }

  .rc-stars-input__btn {
    background: transparent;
    border: 0;
    padding: 4px;
    cursor: pointer;
    color: rgba(11, 15, 25, 0.20);
    transition: color 100ms ease;
  }

  .rc-stars-input__btn:hover,
  .rc-stars-input__btn[aria-checked="true"],
  .rc-stars-input__btn.is-active {
    color: #B5946E;
  }

  .rc-stars-input__btn.is-active svg {
    fill: currentColor;
  }

  .rc-stars-input__btn:focus-visible {
    outline: 2px solid #B5946E;
    outline-offset: 2px;
    border-radius: 4px;
  }

  .rc-upload {
    display: block;
    cursor: pointer;
  }

  .rc-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .rc-upload__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(11, 15, 25, 0.14);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    background: #F5F0E8;
    transition: border-color 150ms ease, color 150ms ease;
  }

  .rc-upload__cta:hover {
    border-color: #B5946E;
    color: #B5946E;
  }

  .rc-upload__preview {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(11, 15, 25, 0.08);
    border-radius: 8px;
    overflow: hidden;
    max-width: 160px;
  }

  .rc-upload__preview[hidden] {
    display: none !important;
  }

  .rc-upload__preview img {
    display: block;
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .rc-upload__preview img:not([src]),
  .rc-upload__preview img[src=""] {
    display: none !important;
  }

  .rc-upload__remove {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(11, 15, 25, 0.08);
    border-radius: 100px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111111;
  }

  .rc-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .rc-form__error {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .rc-form__error[hidden] {
    display: none !important;
  }

  .rc-form__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 4px;
  }

  @media (max-width: 480px) {
    .rc-form__actions {
      flex-direction: column-reverse;
    }

    .rc-form__actions .rc-btn {
      width: 100%;
      justify-content: center;
    }
  }

  .rc-modal__success {
    text-align: center;
    padding: 16px 8px 0;
  }

  .rc-modal__success[hidden] {
    display: none !important;
  }

  .rc-modal__success-icon {
    color: #B5946E;
    display: inline-flex;
    margin-bottom: 16px;
  }

  .rc-modal__success .rc-btn {
    margin-top: 24px;
  }

  body.rc-modal-open {
    overflow: hidden;
  }

  .rc-reviewx {
    fill: #b5946e !important;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    align-items: center;
    padding-left: 0.33rem !important;
    margin-bottom: .33rem;
  }

  .rc-reviewx {
    fill: #b5946e !important;
    height: 53px;
    display: inline-block;
    vertical-align: middle;
    align-items: center;
  }

  .rc-rc-reviewx {
    height: 17px;
    width: 17px;
  }

  @media (prefers-reduced-motion: reduce) {
    .rc-review,
    .rc-btn,
    .rc-reviews__dist-bar-fill {
      transition: none;
    }
  }
/* END_SECTION:repcube-reviews */

/* START_SECTION:xcollapsible-section (INDEX:115) */
.x-collapsible-section-wrapper {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  @media screen and (min-width: 750px) {
    .x-collapsible-section-wrapper {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }

  /* --- Accordion Title Typography --- */
  .accordion__title {
    font-weight: {{ block.settings.heading_font_weight }} !important;
    color: {{ block.settings.heading_color }} !important;
    transition: color 0.3s ease;
    /* Mobile font size */
    font-size: {{ block.settings.heading_font_size_mobile }}px !important;
  }
 
  /* --- Accordion Content Styling --- */
  .accordion__content {
    /* Mobile padding & font size */
    padding: {{ block.settings.content_padding_mobile }}px;
    font-size: {{ block.settings.content_font_size_mobile }}px;
  }
  .accordion__content.rte p,
  .accordion__content.rte li {
    font-size: inherit;
  }

  @media screen and (min-width: 750px) {
    .accordion__title {
      /* Desktop font size */
      font-size: {{ block.settings.heading_font_size_desktop }}px !important;
    }
    .accordion__content {
      /* Desktop padding & font size */
      padding: {{ block.settings.content_padding_desktop }}px;
      font-size: {{ block.settings.content_font_size_desktop }}px;
    }
  }

  /* --- Table & General Styles --- */
  .spec-table-enabled ul { 
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: var(--table-border-radius, 6px); 
    overflow: hidden; 
  }
  .spec-table-enabled li { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .spec-table-enabled li:last-child { border-bottom: none; }
  .spec-table-bold-disabled li strong, .spec-table-bold-disabled li b { font-weight: 400; }

  /* --- Tab 1 Layout Styles --- */
  .tab1-layout-wrapper { display: flex; flex-direction: column; gap: 18px; }
  
  /* --- NEW IMAGE STYLES START --- */
  .tab1-image-container {
    width: 100%;
    max-width: var(--image-max-width-mobile, 100%);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1 / 1; /* Forces 1:1 ratio */
    overflow: hidden; /* Good practice with aspect-ratio */
    border-radius: 12px; 
  }
  
  .tab1-image-container img { 
    width: 100%; 
    height: 100%; /* Fills the 1:1 container */
    display: block; 
    object-fit: contain; /* "always fit inside" */
  }
  /* --- NEW IMAGE STYLES END --- */
  
  .mobile-pos-above { order: -1; }
  .mobile-pos-below { order: 1; }
  .tab1-content-container { order: 0; }

  @media screen and (min-width: 750px) {
    .tab1-image-container {
      /* Apply desktop max width */
      max-width: var(--image-max-width-desktop, none);
    }
    
    .tab1-layout-wrapper.desktop-pos-left { flex-direction: row; align-items: flex-start; }
    .tab1-layout-wrapper.desktop-pos-right { flex-direction: row-reverse; align-items: flex-start; }
   
    .desktop-pos-left .tab1-image-container, .desktop-pos-right .tab1-image-container { 
      flex: 1 1 45%; 
      min-width: 0;
      /* Max-width is now applied directly */
    }
    .desktop-pos-left .tab1-content-container, .desktop-pos-right .tab1-content-container { 
      flex: 1 1 55%; 
      min-width: 0; 
    }
  }

  /* ── X Collapsible: Chevron icon ── */

  /* Icon Container */
  .x-collapsible-section .xcircle {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6B7280;
    transition: color 200ms ease, transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .x-collapsible-section .xcircle svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* Rotate chevron 180deg when open */
  .x-collapsible-section details[open] .xcircle {
    transform: rotate(180deg);
  }

  /* Gold on hover and when open */
  .x-collapsible-section summary:hover .xcircle,
  .x-collapsible-section details[open] .xcircle {
    color: #B5946E;
  }

  /* Shift heading text to gold on hover + open */
  .x-collapsible-section summary:hover .accordion__title,
  .x-collapsible-section details[open] .accordion__title {
    color: #B5946E !important;
  }

  /* Fix heading weight to 500 */
  .x-collapsible-section .accordion__title {
    font-weight: 500 !important;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .x-collapsible-section .xcircle {
      transition: none;
    }
  } 

  .circlex {
    background-color: #ffffff00 !important;
  }
/* END_SECTION:xcollapsible-section */