:root {
--tbcc-red: #c8102e;
--tbcc-charcoal: #202124;
--tbcc-offwhite: #f7f4f0;
--tbcc-white: #ffffff;
--tbcc-border: #e3e5e8;
--tbcc-muted: #6b6b70;
--tbcc-radius: 12px;
--tbcc-radius-sm: 8px;
--tbcc-font: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--tbcc-shadow: 0 12px 40px rgba(32, 33, 36, 0.18);
--tbcc-z: 2147483600;
} .tbcc-root,
.tbcc-floating,
.tbcc-preferences-link,
.tbcc-placeholders {
font-family: var(--tbcc-font);
box-sizing: border-box;
}
.tbcc-root *,
.tbcc-root *::before,
.tbcc-root *::after {
box-sizing: border-box;
}
.tbcc-root[hidden],
.tbcc-overlay[hidden],
.tbcc-layer[hidden],
.tbcc-floating[hidden] {
display: none !important;
}
.tbcc-root {
position: fixed;
inset: 0;
z-index: var(--tbcc-z);
color: var(--tbcc-charcoal);
font-size: 15px;
line-height: 1.5;
}
.tbcc-overlay {
position: fixed;
inset: 0;
background: rgba(32, 33, 36, 0.45);
z-index: 1;
} .tbcc-dialog {
position: fixed;
z-index: 2;
background: var(--tbcc-white);
color: var(--tbcc-charcoal);
box-shadow: var(--tbcc-shadow);
border: 1px solid var(--tbcc-border);
padding: 24px;
width: min(720px, calc(100% - 32px));
max-height: calc(100vh - 32px);
overflow-y: auto;
} .tbcc-pos-bottom .tbcc-dialog {
left: 50%;
bottom: 16px;
transform: translateX(-50%);
border-radius: var(--tbcc-radius);
} .tbcc-pos-center .tbcc-dialog {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border-radius: var(--tbcc-radius);
} .tbcc-title {
margin: 0 0 8px;
font-size: 18px;
font-weight: 600;
line-height: 1.3;
color: var(--tbcc-charcoal);
}
.tbcc-body {
margin: 0 0 16px;
color: var(--tbcc-charcoal);
}
.tbcc-policy {
margin: 0 0 16px;
font-size: 13px;
}
.tbcc-policy a,
.tbcc-link-back {
color: var(--tbcc-red);
text-decoration: underline;
text-underline-offset: 2px;
} .tbcc-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.tbcc-actions-three {
margin-top: 8px;
}
.tbcc-actions-three .tbcc-btn {
flex: 1 1 160px;
}
.tbcc-btn {
appearance: none;
border: 1.5px solid var(--tbcc-charcoal);
border-radius: var(--tbcc-radius-sm);
padding: 11px 18px;
font-family: inherit;
font-size: 15px;
font-weight: 600;
line-height: 1.2;
cursor: pointer;
transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
} .tbcc-btn-secondary {
background: var(--tbcc-white);
color: var(--tbcc-charcoal);
}
.tbcc-btn-secondary:hover {
background: var(--tbcc-offwhite);
} .tbcc-btn-primary {
background: var(--tbcc-charcoal);
color: var(--tbcc-white);
}
.tbcc-btn-primary:hover {
background: #000;
} .tbcc-categories {
list-style: none;
margin: 0 0 16px;
padding: 0;
border-top: 1px solid var(--tbcc-border);
}
.tbcc-category {
padding: 14px 0;
border-bottom: 1px solid var(--tbcc-border);
}
.tbcc-category-head {
margin-bottom: 4px;
}
.tbcc-switch {
display: flex;
align-items: center;
gap: 12px;
position: relative;
cursor: pointer;
}
.tbcc-switch:has(.tbcc-toggle:disabled) {
cursor: default;
} .tbcc-toggle {
position: absolute;
width: 44px;
height: 24px;
margin: 0;
opacity: 0;
cursor: inherit;
}
.tbcc-switch-track {
position: relative;
flex: 0 0 auto;
width: 44px;
height: 24px;
border-radius: 999px;
background: var(--tbcc-border);
transition: background-color 0.15s ease;
}
.tbcc-switch-track::after {
content: "";
position: absolute;
top: 2px;
left: 2px;
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--tbcc-white);
box-shadow: 0 1px 2px rgba(32, 33, 36, 0.35);
transition: transform 0.15s ease;
}
.tbcc-toggle:checked + .tbcc-switch-track {
background: var(--tbcc-charcoal);
}
.tbcc-toggle:checked + .tbcc-switch-track::after {
transform: translateX(20px);
}
.tbcc-toggle:disabled + .tbcc-switch-track {
background: var(--tbcc-muted);
opacity: 0.6;
}
.tbcc-toggle:focus-visible + .tbcc-switch-track {
outline: 2px solid var(--tbcc-red);
outline-offset: 2px;
}
.tbcc-category-name {
font-weight: 600;
}
.tbcc-badge {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.02em;
text-transform: uppercase;
color: var(--tbcc-muted);
border: 1px solid var(--tbcc-border);
border-radius: 999px;
padding: 2px 8px;
margin-left: auto;
}
.tbcc-category-desc {
margin: 0;
padding-left: 56px;
color: var(--tbcc-muted);
font-size: 13.5px;
}
.tbcc-link-back {
display: inline-block;
margin-top: 4px;
background: none;
border: 0;
padding: 6px 0;
font-family: inherit;
font-size: 14px;
cursor: pointer;
} .tbcc-btn:focus-visible,
.tbcc-link-back:focus-visible,
.tbcc-policy a:focus-visible,
.tbcc-floating:focus-visible,
.tbcc-preferences-link:focus-visible,
.tbcc-placeholder:focus-visible {
outline: 2px solid var(--tbcc-red);
outline-offset: 2px;
} .tbcc-floating {
position: fixed;
left: 16px;
bottom: 16px;
z-index: 2147483400;
background: var(--tbcc-white);
color: var(--tbcc-charcoal);
border: 1px solid var(--tbcc-border);
border-radius: 999px;
padding: 9px 16px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
box-shadow: 0 4px 14px rgba(32, 33, 36, 0.14);
}
.tbcc-floating:hover {
background: var(--tbcc-offwhite);
} .tbcc-preferences-link {
display: inline-block;
background: none;
border: 0;
padding: 0;
color: var(--tbcc-red);
font-family: inherit;
font-size: inherit;
text-decoration: underline;
text-underline-offset: 2px;
cursor: pointer;
} .tbcc-placeholders {
position: fixed;
right: 16px;
bottom: 16px;
z-index: 2147483300;
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-end;
}
.tbcc-placeholder {
background: var(--tbcc-charcoal);
color: var(--tbcc-white);
border: 0;
border-radius: 999px;
padding: 11px 18px;
font-family: var(--tbcc-font);
font-size: 14px;
font-weight: 600;
cursor: pointer;
box-shadow: 0 4px 14px rgba(32, 33, 36, 0.22);
max-width: 280px;
}
.tbcc-placeholder:hover {
background: #000;
}
.tbcc-placeholder-hint {
font-size: 12px;
font-weight: 400;
color: var(--tbcc-muted);
background: var(--tbcc-white);
border: 1px solid var(--tbcc-border);
border-radius: var(--tbcc-radius-sm);
padding: 8px 12px;
max-width: 280px;
} .tbcc-blocked-embed {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
min-height: 180px;
padding: 24px;
background: var(--tbcc-offwhite);
border: 1px solid var(--tbcc-border);
border-radius: var(--tbcc-radius-sm);
color: var(--tbcc-charcoal);
text-align: center;
box-sizing: border-box;
}
.tbcc-blocked-embed p {
margin: 0;
color: var(--tbcc-charcoal);
} @media (max-width: 600px) {
.tbcc-pos-bottom .tbcc-dialog,
.tbcc-pos-center .tbcc-dialog {
left: 0;
right: 0;
bottom: 0;
top: auto;
transform: none;
width: 100%;
max-height: 88vh;
border-radius: var(--tbcc-radius) var(--tbcc-radius) 0 0;
padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
}
.tbcc-actions-three .tbcc-btn {
flex: 1 1 100%;
}
.tbcc-category-desc {
padding-left: 0;
}
.tbcc-floating {
font-size: 12px;
padding: 8px 14px;
}
} @media (prefers-reduced-motion: reduce) {
.tbcc-btn,
.tbcc-switch-track,
.tbcc-switch-track::after {
transition: none;
}
}.tb-smm,
.tb-smm * {
box-sizing: border-box;
}
.tb-smm {
--tb-smm-red:      #C8102E;
--tb-smm-ink:      #202124;
--tb-smm-bg:       #FFFFFF;
--tb-smm-panel-bg: #FFFFFF;
--tb-smm-border:   #E4E0DA;
--tb-smm-muted:    #6B6864;
--tb-smm-maxw:     1100px;
--tb-smm-radius:   12px;
--tb-smm-icon:     20px;
font-family: "IBM Plex Sans", "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
color: var(--tb-smm-ink);
} .tb-smm--standalone .tb-smm-root {
position: relative;
display: inline-block;
}
.tb-smm-trigger-btn {
display: inline-flex;
align-items: center;
gap: 6px;
margin: 0;
padding: 8px 4px;
background: none;
border: 0;
font: inherit;
font-weight: 600;
color: inherit;
cursor: pointer;
line-height: 1.2;
}
.tb-smm-trigger-btn:focus-visible {
outline: 2px solid var(--tb-smm-ink);
outline-offset: 3px;
border-radius: 2px;
}
.tb-smm-caret {
display: inline-flex;
transition: transform .18s ease;
}
.tb-smm-trigger-btn[aria-expanded="true"] .tb-smm-caret {
transform: rotate(180deg);
} .tb-smm-panel {
background: var(--tb-smm-panel-bg);
color: var(--tb-smm-ink);
border: 1px solid var(--tb-smm-border);
border-radius: var(--tb-smm-radius);
}
.tb-smm-panel[hidden] { display: none; }
.tb-smm-panel[data-shadow="1"] {
box-shadow: 0 18px 50px -24px rgba(32,33,36,.35);
} .tb-smm--standalone .tb-smm-panel,
.tb-smm-trigger-li  .tb-smm-panel {
position: absolute; left: var(--tb-smm-vp-offset, 0px);
top: 100%;
margin-top: 10px;
width: min(var(--tb-smm-maxw), calc(100vw - 40px));
z-index: 9999;
}
.tb-smm--standalone .tb-smm-root { position: relative; }
.tb-smm-trigger-li  { position: relative; } .tb-smm-panel[dir="rtl"] {
left: auto;
right: var(--tb-smm-vp-offset, 0px);
}
.tb-smm-panel-inner {
padding: 28px;
}
.tb-smm-columns {
display: grid;
gap: 28px;
}
.tb-smm-panel[data-cols="2"] .tb-smm-columns { grid-template-columns: 1fr 1fr; }
.tb-smm-panel[data-cols="3"] .tb-smm-columns { grid-template-columns: 1fr 1fr 1fr; } .tb-smm-section-toggle {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin: 0 0 4px;
padding: 0;
background: none;
border: 0;
font: inherit;
cursor: default;
color: var(--tb-smm-muted);
}
.tb-smm-section-title {
font-size: 12px;
font-weight: 600;
letter-spacing: .08em;
text-transform: uppercase;
}
.tb-smm-section-caret { display: none; }
.tb-smm-section-subtitle {
margin: 0 0 12px;
font-size: 13px;
line-height: 1.5;
color: var(--tb-smm-muted);
}  .tb-smm-items { list-style: none; margin: 0; padding: 0; }
.tb-smm-item  { margin: 0; }
.tb-smm-item-link {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 10px;
margin: 0 -10px;
border-radius: 8px;
text-decoration: none;
color: var(--tb-smm-ink);
border: 1px solid transparent;
transition: background-color .15s ease, border-color .15s ease;
}
.tb-smm-panel[data-card="soft"]   .tb-smm-item-link:hover,
.tb-smm-panel[data-card="flat"]   .tb-smm-item-link:hover {
background: rgba(32,33,36,.04);
}
.tb-smm-panel[data-card="border"] .tb-smm-item-link {
border-color: var(--tb-smm-border);
margin: 0 0 8px;
}
.tb-smm-panel[data-card="border"] .tb-smm-item-link:hover {
border-color: var(--tb-smm-ink);
}
.tb-smm-item-link:focus-visible {
outline: 2px solid var(--tb-smm-ink);
outline-offset: 2px;
} .tb-smm-item-icon {
flex: 0 0 auto;
display: inline-flex;
color: var(--tb-smm-ink);
margin-top: 1px;
}
.tb-smm-item-icon svg { width: var(--tb-smm-icon); height: var(--tb-smm-icon); display: block; }
.tb-smm-item-text  { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tb-smm-item-title { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.tb-smm-item-desc  { font-size: 12.5px; line-height: 1.45; color: var(--tb-smm-muted); } .tb-smm-badge {
display: inline-block;
margin-inline-start: 6px;
padding: 1px 6px;
border-radius: 3px;
font-size: 10px;
font-weight: 600;
letter-spacing: .04em;
text-transform: uppercase;
vertical-align: middle;
color: var(--tb-smm-muted);
background: rgba(32,33,36,.06);
border: 1px solid var(--tb-smm-border);
} .tb-smm-strip {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--tb-smm-border);
}
.tb-smm-strip-text {
font-size: 13.5px;
line-height: 1.5;
color: var(--tb-smm-muted);
}
.tb-smm-strip-title { font-weight: 600; color: var(--tb-smm-ink); }
.tb-smm-strip-cta {
flex: 0 0 auto;
display: inline-block;
padding: 10px 18px;
border-radius: 6px;
background: var(--tb-smm-red);
color: #fff;
font-size: 13.5px;
font-weight: 600;
text-decoration: none;
white-space: nowrap;
transition: filter .15s ease;
}
.tb-smm-strip-cta:hover   { filter: brightness(.92); color: #fff; }
.tb-smm-strip-cta:focus-visible {
outline: 2px solid var(--tb-smm-ink);
outline-offset: 2px;
}  .tb-smm-panel[dir="rtl"] .tb-smm-section-toggle { text-align: right; } .tb-smm-panel[dir="rtl"] .tb-smm-section-title,
.tb-smm-panel[dir="rtl"] .tb-smm-badge,
.tb-smm[dir="rtl"]       .tb-smm-section-title,
.tb-smm[dir="rtl"]       .tb-smm-badge { letter-spacing: 0; } .tb-smm--full-nav {
display: block;
}
.tb-smm-nav-list {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 4px;
margin: 0;
padding: 0;
list-style: none;
}
.tb-smm-nav-item {
position: relative;
margin: 0;
}
.tb-smm-nav-link {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 10px 12px;
margin: 0;
background: none;
border: 0;
border-radius: 6px;
font: inherit;
font-weight: 600;
font-size: 14.5px;
color: var(--tb-smm-ink);
text-decoration: none;
cursor: pointer;
line-height: 1.2;
white-space: nowrap;
}
.tb-smm-nav-link:hover {
background: rgba(32, 33, 36, .04);
}
.tb-smm-nav-link:focus-visible {
outline: 2px solid var(--tb-smm-ink);
outline-offset: 2px;
border-radius: 4px;
} .tb-smm-nav-link[aria-expanded] .tb-smm-caret {
display: inline-flex;
transition: transform .18s ease;
}
.tb-smm-nav-link[aria-expanded="true"] .tb-smm-caret {
transform: rotate(180deg);
} .tb-smm-nav-link-group {
display: inline-flex;
align-items: center;
border-radius: 6px;
}
.tb-smm-nav-link-group:hover {
background: rgba(32, 33, 36, .04);
}
.tb-smm-nav-link-group .tb-smm-nav-link--with-caret {
padding-inline-end: 4px;
}
.tb-smm-nav-link-group:hover .tb-smm-nav-link--with-caret {
background: none; }
.tb-smm-nav-caret-btn {
display: inline-flex;
align-items: center;
padding: 10px 8px 10px 2px;
margin: 0;
background: none;
border: 0;
cursor: pointer;
color: var(--tb-smm-ink);
}
.tb-smm-nav-caret-btn:focus-visible {
outline: 2px solid var(--tb-smm-ink);
outline-offset: 2px;
border-radius: 4px;
}
.tb-smm-nav-caret-btn .tb-smm-caret {
display: inline-flex;
transition: transform .18s ease;
}
.tb-smm-nav-caret-btn[aria-expanded="true"] .tb-smm-caret {
transform: rotate(180deg);
} .tb-smm--full-nav[dir="rtl"] .tb-smm-nav-list {
flex-direction: row-reverse;
} @media (prefers-reduced-motion: reduce) {
.tb-smm-caret,
.tb-smm-section-caret,
.tb-smm-item-link,
.tb-smm-strip-cta,
.tb-smm-nav-link[aria-expanded] .tb-smm-caret,
.tb-smm-nav-caret-btn .tb-smm-caret { transition: none; }
}