/* EDCOT STYLESHEET UPDATED USING Claude Anthropic - 20260228 v7.00 */
:root {
--color-bg-card: #fff;
--color-bg-header-footer: #ffffff;
--color-text-header-footer: #000099;
--color-text-header-footer-hover: #000066;
--color-bg-hover: #d1e8ff;
--color-shadow-hover: rgba(0,0,0,0.18);
--color-border-hover: #b0b0b0;
--color-text-body: #000;
--color-text-link: #000099;
--color-text-link-hover: #000080;
--color-border-dark: #444;
--color-border-card: #3a3f44;
--color-border-print: #666;
--spacing-sm: 0.375rem;
--spacing-md: 0.75rem;
--spacing-lg: 1rem;
--spacing-xl: 1.5rem;
--spacing-xxl: 2rem;
--radius-sm: 0.375rem;
--radius-md: 0.625rem;
--radius-lg: 1.5rem;
--shadow-card: 0 0.25rem 0.75rem rgba(0,0,0,0.3);
--shadow-card-hover: 0 0.5rem 1.25rem rgba(0,0,0,0.22);
--shadow-hover: 0 0.25rem 0.75rem rgba(0,0,0,0.18);
--transition-all: all 0.2s ease;
--color-brand-text: #ffffff;
--red-primary: #e57373;
--red-dark: #d32f2f;
--red-mid: #ef5350;
--red-light: #ffebee;
--red-very-light: #fff5f5;
--red-table-header-bg: #d32f2f;
--red-table-header-text: #ffffff;
--orange-primary: #ff8a65;
--orange-dark: #ef6c00;
--orange-mid: #ff7043;
--orange-light: #fff3e0;
--orange-very-light: #fff8f2;
--orange-table-header-bg: #ef6c00;
--orange-table-header-text: #ffffff;
--gold-primary: #ffb74d;
--gold-dark: #f57c00;
--gold-mid: #ffa726;
--gold-light: #fffde7;
--gold-very-light: #fffef5;
--gold-table-header-bg: #f57c00;
--gold-table-header-text: #ffffff;
--green-primary: #4caf50;
--green-dark: #388e3c;
--green-mid: #43a047;
--green-light: #e8f5e9;
--green-very-light: #f5fbf5;
--green-table-header-bg: #388e3c;
--green-table-header-text: #ffffff;
--blue-primary: #4a6cff;
--blue-dark: #3a56cc;
--blue-mid: #3f5ee0;
--blue-light: #e0e8ff;
--blue-very-light: #f0f4ff;
--blue-table-header-bg: #3a56cc;
--blue-table-header-text: #ffffff;
--indigo-primary: #7986cb;
--indigo-dark: #5c6bc0;
--indigo-mid: #5c6bc0;
--indigo-light: #e8eaf6;
--indigo-very-light: #f5f6fb;
--indigo-table-header-bg: #5c6bc0;
--indigo-table-header-text: #ffffff;
--violet-primary: #9575cd;
--violet-dark: #7e57c2;
--violet-mid: #7e57c2;
--violet-light: #f3e5f5;
--violet-very-light: #faf5fb;
--violet-table-header-bg: #7e57c2;
--violet-table-header-text: #ffffff;
}

* {
box-sizing: border-box;
}

html {
height: 100%;
font-size: 100%;
width: 100%;
overflow-x: hidden;
}

body {
margin: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 1rem;
line-height: 1.5;
color: var(--color-text-body);
background: url("images/edcotbackground1.png") center / cover no-repeat fixed;
background-color: #ffffff;
}

#scale-wrapper {
transform-origin: top left;
height: auto;
overflow: visible;
margin: 0 auto;
width: 100%;
flex: 1 0 auto;
display: flex;
flex-direction: column;
}

#page-container {
width: 100%;
margin: 0 auto;
min-height: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
flex: 1 0 auto;
}

#content-wrapper {
flex: 1 0 auto;
display: flex;
flex-direction: column;
border-radius: var(--radius-md);
}

#main-content {
flex: 1 0 auto;
width: 100%;
border-radius: var(--radius-md);
}

#header {
margin: 0 0 var(--spacing-lg);
padding: var(--spacing-lg) 3%;
background: var(--color-bg-header-footer);
border-radius: var(--radius-md);
width: 100%;
}

#headerWrapper {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: flex-end;
gap: var(--spacing-lg);
min-width: 0;
overflow: hidden;
}

#headerLeft,
#headerRight {
flex: 1;
min-width: 0;
}

#headerRight {
display: flex;
justify-content: flex-end;
}

.header-brand {
display: flex;
align-items: flex-end;
gap: 1.25rem;
flex-shrink: 0;
}

.brand-logo {
height: 4rem;
width: auto;
object-fit: contain;
flex-shrink: 0;
}

.text-block {
display: flex;
flex-direction: column;
justify-content: center;
}

.pageName {
margin: 0 0 0.125rem;
font-size: 2.25rem;
font-weight: 700;
color: var(--color-brand-text);
line-height: 1.2;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.pageTagline {
margin: 0;
font-size: 1rem;
font-weight: 400;
color: var(--color-brand-text);
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.intro-text {
margin: var(--spacing-xxl) auto;
max-width: 90%;
font-size: 1.125rem;
line-height: 1.4;
text-align: center;
color: var(--color-text-body);
}

.intro-text strong { font-weight: 700; }
.intro-text em { font-style: italic; }

#headerRight nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: nowrap;
gap: 0.25rem;
white-space: nowrap;
max-width: 100%;
}

#headerRight nav li {
margin: 0;
flex-shrink: 1;
}

#headerRight nav a {
display: inline-block;
padding: 0.25rem 0.375rem;
border: 0.0625rem solid var(--color-text-header-footer);
border-radius: var(--radius-sm);
color: var(--color-text-header-footer);
text-decoration: none;
background: transparent;
transition: var(--transition-all);
font-size: 0.875rem;
overflow: hidden;
text-overflow: ellipsis;
}

#headerRight nav a:hover {
color: var(--color-text-header-footer-hover);
border-color: var(--color-text-header-footer-hover);
text-decoration: none;
}

/* ── CONTENT GRID — v5.09 explicit column layout options ──────────────
#contentGridColumns is the outer flex wrapper.
Add one of these classes to control the layout:
  layoutTwoColumn — side-by-side columns (default)
  layoutOneColumn — single centred stack of cards
Cards live inside .gridColumn--left or .gridColumn--right divs.
To reorder cards, cut/paste <article> blocks between those two divs.
The old grid/flow rules below are preserved for reference only and
are no longer applied to the home page as of v5.08.
──────────────────────────────────────────────────────────────────── */

#contentGridColumns {
display: flex;
gap: 4rem;
align-items: flex-start;
padding: 0 3% var(--spacing-xl);
margin: 0 auto;
width: 100%;
max-width: 1400px;
box-sizing: border-box;
}

/* Each explicit column: stacks its cards vertically */
.gridColumn {
flex: 1;                    /* equal-width columns */
display: flex;
flex-direction: column;
gap: var(--spacing-xxl);    /* vertical gap between stacked cards */
min-width: 0;
}

/* Target individual columns if you need different widths in future:
.gridColumn--left  { flex: 1.2; }
.gridColumn--right { flex: 0.8; } */
.gridColumn--left  { /* no overrides needed by default */ }
.gridColumn--right { /* no overrides needed by default */ }

/* ── LAYOUT MODIFIER CLASSES — v5.09 ─────────────────────────────────
   Apply one of these classes to #contentGridColumns in the HTML:
     class="layoutTwoColumn"  → side-by-side columns (default behaviour)
     class="layoutOneColumn"  → single centred column, cards stack top-to-bottom
──────────────────────────────────────────────────────────────────── */

/* Two-column: explicit rule that matches the default flex-row behaviour */
.layoutTwoColumn {
/* flex-direction: row is already the default; this class documents intent */
}

/* One-column: collapse to a single centred stack */
.layoutOneColumn {
flex-direction: column;   /* stack the single column vertically */
align-items: center;      /* centre the column within the wrapper */
}

.layoutOneColumn .gridColumn {
width: 100%;
max-width: 800px;         /* cap card width so they don't stretch wall-to-wall */
}

/* Legacy class — kept for any other pages that still use the
flow-based two-equal grid (not used on home page as of v5.08) */
.contentGridColumn {
display: flex;
flex-direction: column;
gap: var(--spacing-xxl);
min-width: 0;
}

.contentGridColumn .contentCard {
flex: 1 1 auto;
display: flex;
flex-direction: column;
justify-self: center;
align-self: center;
width: 100%;
max-width: 70ch;
max-width: 800px;
}

.contentCard {
margin: 0;
padding: var(--spacing-xl);
background: var(--color-bg-card);
border: 0.0625rem solid var(--color-border-card);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-card);
transition: var(--transition-all);
max-width: 70ch;
max-width: 800px;
width: 100%;
justify-self: center;
}

.contentCard:hover {
box-shadow: var(--shadow-card-hover);
}

.contentCard h2,
.contentCard p {
max-width: 50ch;
overflow-wrap: break-word;
word-break: break-word;
white-space: normal;
margin: 0 0 0.5rem 0;
}

.contentCard h2 {
font-size: 1.25rem;
font-weight: 700;
}

.contentCard p {
font-size: 1rem;
line-height: 1.4;
}

.cardAccentBlue {
border-color: var(--color-border-card);
}

/* ── CONTENT BODY — prose content without card styling ───────────────
   Use .contentBody in place of .contentCard for pages with flowing
   text content (headings, paragraphs, lists) that should not appear
   inside a card border. Fills the full column width.
──────────────────────────────────────────────────────────────────── */
.contentBody {
width: 100%;
max-width: 100%;
color: var(--color-text-body);
font-size: 1rem;
line-height: 1.6;
}

.contentBody h2 {
font-size: 1.5rem;
font-weight: 700;
margin: 0 0 var(--spacing-md) 0;
color: var(--color-text-body);
}

.contentBody h3 {
font-size: 1.15rem;
font-weight: 700;
margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
color: var(--color-text-body);
}

.contentBody p {
margin: 0 0 var(--spacing-md) 0;
}

.contentBody ul {
margin: 0 0 var(--spacing-md) 1.5rem;
padding: 0;
}

.contentBody li {
margin: 0 0 var(--spacing-sm) 0;
}

.contentCard a {
display: block;
text-decoration: none;
color: var(--color-text-body);
}

.contentCard a:hover {
text-decoration: none;
}

.contentCard a h2,
.contentCard a p {
color: var(--color-text-body);
transition: var(--transition-all);
}

.contentCard a:hover h2,
.contentCard a:hover p {
color: var(--color-text-link-hover);
}

#siteFooter {
margin: var(--spacing-xxl) 0 0;
padding: 0.75rem 3%;
background: var(--color-bg-header-footer);
border-radius: var(--radius-md);
text-align: center;
width: 100%;
transition: var(--transition-all);
}

#siteFooter:hover {
background: var(--color-bg-hover);
}

#siteFooter p,
#siteFooter a {
margin: 0;
color: var(--color-text-header-footer);
line-height: 1.4;
font-size: 0.875rem;
transition: var(--transition-all);
text-decoration: none;
}

#siteFooter:hover p,
#siteFooter:hover a {
color: var(--color-text-header-footer-hover);
text-decoration: none;
}

body.theme-red,
body.theme-orange,
body.theme-gold,
body.theme-green,
body.theme-indigo,
body.theme-violet,
body.theme-blue,
body:not([class*="theme-"]) {
--primary: var(--blue-primary);
--dark: var(--blue-dark);
--mid: var(--blue-mid);
--light: var(--blue-light);
--very-light: var(--blue-very-light);
--table-header-bg-active: var(--blue-table-header-bg);
--table-header-text-active: var(--blue-table-header-text);
--color-bg-header-footer: var(--primary);
--color-text-header-footer: #ffffff;
--color-text-header-footer-hover: #eeeeee;
--color-brand-text: #ffffff;
--color-bg-hover: var(--light);
--color-text-link: var(--primary);
--color-text-link-hover: var(--dark);
--color-bg-card: #ffffff;
}

body.theme-red {
--primary: var(--red-primary);
--dark: var(--red-dark);
--mid: var(--red-mid);
--light: var(--red-light);
--very-light: var(--red-very-light);
--table-header-bg-active: var(--red-table-header-bg);
--table-header-text-active: var(--red-table-header-text);
background-image: url("images/edcotwhitebook.png");
}

body.theme-orange {
--primary: var(--orange-primary);
--dark: var(--orange-dark);
--mid: var(--orange-mid);
--light: var(--orange-light);
--very-light: var(--orange-very-light);
--table-header-bg-active: var(--orange-table-header-bg);
--table-header-text-active: var(--orange-table-header-text);
--color-brand-text: #000000;
background-image: url("images/edcotwhitebook.png");
}

body.theme-gold {
--primary: var(--gold-primary);
--dark: var(--gold-dark);
--mid: var(--gold-mid);
--light: var(--gold-light);
--very-light: var(--gold-very-light);
--table-header-bg-active: var(--gold-table-header-bg);
--table-header-text-active: var(--gold-table-header-text);
--color-brand-text: #000000;
background-image: url("images/edcotwhitebook.png");
}

body.theme-green {
--primary: var(--green-primary);
--dark: var(--green-dark);
--mid: var(--green-mid);
--light: var(--green-light);
--very-light: var(--green-very-light);
--table-header-bg-active: var(--green-table-header-bg);
--table-header-text-active: var(--green-table-header-text);
background-image: url("images/edcotwhitebook.png");
}

body.theme-indigo {
--primary: var(--indigo-primary);
--dark: var(--indigo-dark);
--mid: var(--indigo-mid);
--light: var(--indigo-light);
--very-light: var(--indigo-very-light);
--table-header-bg-active: var(--indigo-table-header-bg);
--table-header-text-active: var(--indigo-table-header-text);
background-image: url("images/edcotwhitebook.png");
}

body.theme-violet {
--primary: var(--violet-primary);
--dark: var(--violet-dark);
--mid: var(--violet-mid);
--light: var(--violet-light);
--very-light: var(--violet-very-light);
--table-header-bg-active: var(--violet-table-header-bg);
--table-header-text-active: var(--violet-table-header-text);
background-image: url("images/edcotwhitebook.png");
}

body:not([class*="theme-"]) {
background-image: url("images/edcotwhitebook.png");
}

@media (max-width: 720px) {
#contentGridColumns {
flex-direction: column;   /* v5.08: stack columns vertically on mobile */
gap: var(--spacing-xxl);
padding: 0 4%;
max-width: 720px;
}
.gridColumn {
width: 100%;
}
/* One-column layout on mobile: remove the desktop max-width cap */
.layoutOneColumn .gridColumn {
max-width: 100%;
}
.contentCard {
width: 100%;
max-width: 100%;
}
.contentGridColumn .contentCard {
width: 100%;
max-width: 100%;
}
.banner-image {
transform: none;
width: 100%;
position: static;
height: 200px;
}
}

@media print {
body {
background: var(--color-bg-card);
color: var(--color-text-body);
}
#header,
#siteFooter {
background: var(--color-bg-card);
color: var(--color-text-body);
border-radius: 0;
}
#headerRight {
display: none;
}
a {
color: var(--color-text-body);
text-decoration: underline;
}
.contentCard {
background: var(--color-bg-card);
border-color: var(--color-border-print);
}
.pageTagline,
.intro-text {
color: var(--color-text-body);
}
}

/* banner aligned with page container edges and fixed visual height */
.banner-div {
margin: 0;
width: calc(100% - 6%);
padding: 0;
box-sizing: border-box;
border-radius: var(--radius-md);
overflow: hidden;
background: transparent;
margin-left: 3%;
margin-right: 3%;
}

.banner-image {
width: 100%;
height: 300px;
display: block;
object-fit: cover;
object-position: center;
max-width: none;
position: relative;
transform: none;
}

/* ============================================================
BANNER CAROUSEL — OPTION 3 (JS-driven, CSS-animated)
Added: 20260226 v5.16
── These rules are ADDITIVE only. No existing rules above
were modified. All new selectors use the .banner__*
double-underscore namespace to avoid any collisions.
============================================================

REQUIRED HTML STRUCTURE (replace your existing banner img):
──────────────────────────────────────────────────────────
<div class="banner-div" id="heroBanner"
role="region" aria-roledescription="carousel"
aria-label="Healthy Eating Lifestyle">

<img class="banner__slide active"
src="images/banner-health-home.png"
alt="Three-panel healthy eating banner" />
<img class="banner__slide"
src="images/banner-health-meals.png"
alt="Colourful balanced meal spread" />
<img class="banner__slide"
src="images/banner-health-hydration.png"
alt="Fresh water, fruits and wellness" />

<div class="banner__overlay">
<h1 class="banner__title">Healthy Eating Lifestyle</h1>
<p  class="banner__sub">Nourish Your Body · Fuel Your Life · Thrive Every Day</p>
</div>

<div class="banner__dots" id="bannerDots" aria-hidden="true"></div>

<button class="banner__btn banner__btn--prev" aria-label="Previous slide">&#8249;</button>
<button class="banner__btn banner__btn--next" aria-label="Next slide">&#8250;</button>
</div>

REQUIRED JS: link banner-carousel.js before </body>
──────────────────────────────────────────────────────────
*/

/* ── 1. Give .banner-div a stacking context and defined height.
The original .banner-div rule is unchanged above;
these two properties are the only additions needed.      */
.banner-div {
position: relative;       /* allows .banner__slide absolute positioning */
aspect-ratio: 1920 / 800; /* self-corrects to image proportions at any width */
height: auto;             /* let aspect-ratio control height                 */
}

/* ── 2. CAROUSEL SLIDES ──────────────────────────────────────── */
.banner__slide {
position: absolute;
inset: 0;                       /* top/right/bottom/left: 0 */
width: 100%;
height: 100%;
object-fit: cover;              /* fills container edge-to-edge, no letterboxing */
object-position: center;
opacity: 0;
z-index: 1;
transition: opacity 1.2s ease-in-out;
will-change: opacity, transform;
}

/* Active slide: fully visible — plain crossfade, no zoom      */
.banner__slide.active {
opacity: 1;
z-index: 2;
}

/* Outgoing slide: fades to zero while active fades in         */
.banner__slide.prev {
opacity: 0;
z-index: 2;
animation: none;
}

/* ── 3. BROKEN IMAGE FALLBACK ───────────────────────────────── */
.banner__slide.banner--broken {
background: #d0d0d0;
opacity: 1 !important;
animation: none !important;
display: flex;
align-items: center;
justify-content: center;
}
.banner__slide.banner--broken::after {
content: attr(data-broken-msg);
color: #222222;
font-family: system-ui, -apple-system, sans-serif;
font-size: clamp(0.75rem, 1.8vw, 1rem);
letter-spacing: 0.06em;
text-align: center;
padding: 0 1rem;
pointer-events: none;
}

/* ── 4. TEXT OVERLAY ─────────────────────────────────────────── */
.banner__overlay {
position: absolute;
inset: 0;
z-index: 10;                    /* above all slides                       */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.28) 0%,
rgba(0, 0, 0, 0.08) 50%,
rgba(0, 0, 0, 0.32) 100%
);
pointer-events: none;           /* clicks pass through to any links below */
}

.banner__title {
margin: 0 0 0.375rem;
color: #ffffff;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(1.1rem, 2.8vw, 1.9rem);  /* fluid — no breakpoints needed */
font-weight: 700;
letter-spacing: 0.05em;
text-align: center;
text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.65);
animation: bannerSlideUp 1s ease-out 0.6s both;
}

.banner__sub {
margin: 0;
color: #ffe88a;                 /* warm gold — complements site theme colours */
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
font-size: clamp(0.65rem, 1.5vw, 0.95rem);
letter-spacing: 0.12em;
text-transform: uppercase;
text-align: center;
text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.55);
animation: bannerSlideUp 1s ease-out 0.9s both;
}

@keyframes bannerSlideUp {
from { opacity: 0; transform: translateY(14px); }
to   { opacity: 1; transform: translateY(0);    }
}

/* ── 5. DOT INDICATORS ───────────────────────────────────────── */
.banner__dots {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
z-index: 20;
display: flex;
gap: 7px;
pointer-events: auto;
}

/* Dots are injected as <span> elements by banner-carousel.js  */
.banner__dots span {
display: block;
width: 9px;
height: 9px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.45);
border: 1px solid rgba(255, 255, 255, 0.70);
cursor: pointer;
transition: background 0.35s ease, transform 0.35s ease;
}

.banner__dots span.active {
background: #ffffff;
transform: scale(1.35);
border-color: #ffffff;
}

.banner__dots span:hover:not(.active) {
background: rgba(255, 255, 255, 0.75);
}

/* ── 6. PREV / NEXT BUTTONS ──────────────────────────────────── */
.banner__btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 20;
background: rgba(0, 0, 0, 0.35);
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.50);
border-radius: var(--radius-sm);
width: 2rem;
height: 2.5rem;
font-size: 1.6rem;
line-height: 1;
cursor: pointer;
transition: background 0.2s ease, border-color 0.2s ease;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}

.banner__btn:hover {
background: rgba(0, 0, 0, 0.60);
border-color: rgba(255, 255, 255, 0.85);
}

.banner__btn--prev { left:  10px; }
.banner__btn--next { right: 10px; }

/* ── 8. MOBILE OVERRIDE (matches your existing 720px breakpoint) */
@media (max-width: 720px) {
.banner-div {
aspect-ratio: 1920 / 800; /* keeps proportions on mobile too */
height: auto;
}
.banner__btn {
width: 1.75rem;
height: 2rem;
font-size: 1.3rem;
}
.banner__title {
font-size: clamp(1rem, 5vw, 1.3rem);
}
.banner__sub {
font-size: clamp(0.6rem, 2.8vw, 0.8rem);
letter-spacing: 0.08em;
}
}

/* ── 9. PRINT: hide controls, show only first slide static     ── */
@media print {
.banner__slide          { display: none; opacity: 0; animation: none; }
.banner__slide.active   { display: block; opacity: 1; position: static;
width: 100%; height: 200px; }
.banner__overlay,
.banner__dots,
.banner__btn            { display: none; }
.banner-div             { height: auto; position: static; }
}

/* ── 10. ACCESSIBILITY: honour OS reduce-motion preference      ── */
@media (prefers-reduced-motion: reduce) {
.banner__slide,
.banner__slide.active,
.banner__slide.banner--first-load {
animation: none;
transition: opacity 0.5s ease-in-out;
transform: none;
}
.banner__title,
.banner__sub {
animation: none;
opacity: 1;
transform: none;
}
.banner__overlay {
opacity: 1;
}
}
/* ── END BANNER CAROUSEL ──────────────────────────────────────── */

/* ── ICON LIBRARY v9.0 ─ 60 data-URI mask-image icons ────────────
   Generated from iconlibrary-v8.html
   Usage A:  <span class="icon icon-home"></span>
   Usage B:  <h2><span class="icon icon-book"></span> Chapter Title</h2>
   Usage C:  contentCard with data-icon attribute (pseudo-element)
             <article class="contentCard" data-icon="globe">
   ─────────────────────────────────────────────────────────────── */

/* Base icon span */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.2em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.icon-principles {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-9.6,-9.6) scale(0.036)' fill='%23000' stroke='%23000' stroke-width='16' stroke-linejoin='round'><path d='m358.17 358.17c-24.961 0-45.344 20.645-45.344 45.344v317.4c0 7.9141 7.1992 15.113 15.113 15.113h544.11c7.9141 0 15.113-7.1992 15.113-15.113v-317.4c0-24.699-20.383-45.344-45.344-45.344h-483.66zm0 30.23h483.66c10.504 0 15.113 4.7969 15.113 15.113v302.29h-513.89v-302.29c0-10.316 4.6133-15.113 15.113-15.113zm241.83 30.23c-29.035 0-52.898 23.863-52.898 52.898s23.863 52.898 52.898 52.898 52.898-23.863 52.898-52.898-23.863-52.898-52.898-52.898zm0 105.8c-27.438 0-52.473 6.0391-71.793 17.238-19.32 11.203-34.008 29.043-34.008 50.773v60.457c0.074219 6.4453 4.6797 12.594 10.863 14.406 27.766 7.9023 50.695 7.6016 79.586 8.2656h30.699c28.891-0.66406 51.824-0.36328 79.586-8.2656 6.1836-1.8125 10.82-7.9609 10.863-14.406v-60.457c0-21.73-14.684-39.574-34.008-50.773-19.32-11.203-44.355-17.238-71.793-17.238zm0-75.57c12.699 0 22.672 9.9727 22.672 22.672 0 12.699-9.9727 22.672-22.672 22.672s-22.672-9.9727-22.672-22.672c0-12.699 9.9727-22.672 22.672-22.672zm0 105.8c22.801 0 43.219 5.4219 56.68 13.227 13.461 7.8047 18.895 16.516 18.895 24.562v47.703c-18.621 3.832-35.895 4.6328-60.457 5.1953h-30.23c-24.562-0.55859-41.836-1.3633-60.457-5.1953v-47.703c0-8.0469 5.4336-16.758 18.895-24.562 13.461-7.8047 33.879-13.227 56.68-13.227zm-318.82 204.04c-7.4297 0.70312-13.73 7.6523-13.699 15.113v22.672c0 15.367 9.4688 28.133 21.02 35.188 11.551 7.0547 25.352 10.156 39.438 10.156h544.11c14.09 0 27.887-3.1016 39.438-10.156 11.547-7.0547 21.02-19.82 21.02-35.188v-22.672c0-7.9141-7.1992-15.113-15.113-15.113h-636.22zm16.531 30.23h604.57c1.7148 16.637-17.625 22.43-30.23 22.672h-544.11c-17.355-0.22656-30.254-7.3203-30.23-22.672z'/></g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-9.6,-9.6) scale(0.036)' fill='%23000' stroke='%23000' stroke-width='16' stroke-linejoin='round'><path d='m358.17 358.17c-24.961 0-45.344 20.645-45.344 45.344v317.4c0 7.9141 7.1992 15.113 15.113 15.113h544.11c7.9141 0 15.113-7.1992 15.113-15.113v-317.4c0-24.699-20.383-45.344-45.344-45.344h-483.66zm0 30.23h483.66c10.504 0 15.113 4.7969 15.113 15.113v302.29h-513.89v-302.29c0-10.316 4.6133-15.113 15.113-15.113zm241.83 30.23c-29.035 0-52.898 23.863-52.898 52.898s23.863 52.898 52.898 52.898 52.898-23.863 52.898-52.898-23.863-52.898-52.898-52.898zm0 105.8c-27.438 0-52.473 6.0391-71.793 17.238-19.32 11.203-34.008 29.043-34.008 50.773v60.457c0.074219 6.4453 4.6797 12.594 10.863 14.406 27.766 7.9023 50.695 7.6016 79.586 8.2656h30.699c28.891-0.66406 51.824-0.36328 79.586-8.2656 6.1836-1.8125 10.82-7.9609 10.863-14.406v-60.457c0-21.73-14.684-39.574-34.008-50.773-19.32-11.203-44.355-17.238-71.793-17.238zm0-75.57c12.699 0 22.672 9.9727 22.672 22.672 0 12.699-9.9727 22.672-22.672 22.672s-22.672-9.9727-22.672-22.672c0-12.699 9.9727-22.672 22.672-22.672zm0 105.8c22.801 0 43.219 5.4219 56.68 13.227 13.461 7.8047 18.895 16.516 18.895 24.562v47.703c-18.621 3.832-35.895 4.6328-60.457 5.1953h-30.23c-24.562-0.55859-41.836-1.3633-60.457-5.1953v-47.703c0-8.0469 5.4336-16.758 18.895-24.562 13.461-7.8047 33.879-13.227 56.68-13.227zm-318.82 204.04c-7.4297 0.70312-13.73 7.6523-13.699 15.113v22.672c0 15.367 9.4688 28.133 21.02 35.188 11.551 7.0547 25.352 10.156 39.438 10.156h544.11c14.09 0 27.887-3.1016 39.438-10.156 11.547-7.0547 21.02-19.82 21.02-35.188v-22.672c0-7.9141-7.1992-15.113-15.113-15.113h-636.22zm16.531 30.23h604.57c1.7148 16.637-17.625 22.43-30.23 22.672h-544.11c-17.355-0.22656-30.254-7.3203-30.23-22.672z'/></g></svg>");
}
.icon-book {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(0,2.1006) scale(0.195312)' fill='%23000'> <path d='M12.64,77.27l0.31-54.92h-6.2v69.88c8.52-2.2,17.07-3.6,25.68-3.66c7.95-0.05,15.9,1.06,23.87,3.76 c-4.95-4.01-10.47-6.96-16.36-8.88c-7.42-2.42-15.44-3.22-23.66-2.52c-1.86,0.15-3.48-1.23-3.64-3.08 C12.62,77.65,12.62,77.46,12.64,77.27L12.64,77.27z M103.62,19.48c-0.02-0.16-0.04-0.33-0.04-0.51c0-0.17,0.01-0.34,0.04-0.51V7.34 c-7.8-0.74-15.84,0.12-22.86,2.78c-6.56,2.49-12.22,6.58-15.9,12.44V85.9c5.72-3.82,11.57-6.96,17.58-9.1 c6.85-2.44,13.89-3.6,21.18-3.02V19.48L103.62,19.48z M110.37,15.6h9.14c1.86,0,3.37,1.51,3.37,3.37v77.66 c0,1.86-1.51,3.37-3.37,3.37c-0.38,0-0.75-0.06-1.09-0.18c-9.4-2.69-18.74-4.48-27.99-4.54c-9.02-0.06-18.03,1.53-27.08,5.52 c-0.56,0.37-1.23,0.57-1.92,0.56c-0.68,0.01-1.35-0.19-1.92-0.56c-9.04-4-18.06-5.58-27.08-5.52c-9.25,0.06-18.58,1.85-27.99,4.54 c-0.34,0.12-0.71,0.18-1.09,0.18C1.51,100.01,0,98.5,0,96.64V18.97c0-1.86,1.51-3.37,3.37-3.37h9.61l0.06-11.26 c0.01-1.62,1.15-2.96,2.68-3.28l0,0c8.87-1.85,19.65-1.39,29.1,2.23c6.53,2.5,12.46,6.49,16.79,12.25 c4.37-5.37,10.21-9.23,16.78-11.72c8.98-3.41,19.34-4.23,29.09-2.8c1.68,0.24,2.88,1.69,2.88,3.33h0V15.6L110.37,15.6z M68.13,91.82c7.45-2.34,14.89-3.3,22.33-3.26c8.61,0.05,17.16,1.46,25.68,3.66V22.35h-5.77v55.22c0,1.86-1.51,3.37-3.37,3.37 c-0.27,0-0.53-0.03-0.78-0.09c-7.38-1.16-14.53-0.2-21.51,2.29C79.09,85.15,73.57,88.15,68.13,91.82L68.13,91.82z M58.12,85.25 V22.46c-3.53-6.23-9.24-10.4-15.69-12.87c-7.31-2.8-15.52-3.43-22.68-2.41l-0.38,66.81c7.81-0.28,15.45,0.71,22.64,3.06 C47.73,78.91,53.15,81.64,58.12,85.25L58.12,85.25z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(0,2.1006) scale(0.195312)' fill='%23000'> <path d='M12.64,77.27l0.31-54.92h-6.2v69.88c8.52-2.2,17.07-3.6,25.68-3.66c7.95-0.05,15.9,1.06,23.87,3.76 c-4.95-4.01-10.47-6.96-16.36-8.88c-7.42-2.42-15.44-3.22-23.66-2.52c-1.86,0.15-3.48-1.23-3.64-3.08 C12.62,77.65,12.62,77.46,12.64,77.27L12.64,77.27z M103.62,19.48c-0.02-0.16-0.04-0.33-0.04-0.51c0-0.17,0.01-0.34,0.04-0.51V7.34 c-7.8-0.74-15.84,0.12-22.86,2.78c-6.56,2.49-12.22,6.58-15.9,12.44V85.9c5.72-3.82,11.57-6.96,17.58-9.1 c6.85-2.44,13.89-3.6,21.18-3.02V19.48L103.62,19.48z M110.37,15.6h9.14c1.86,0,3.37,1.51,3.37,3.37v77.66 c0,1.86-1.51,3.37-3.37,3.37c-0.38,0-0.75-0.06-1.09-0.18c-9.4-2.69-18.74-4.48-27.99-4.54c-9.02-0.06-18.03,1.53-27.08,5.52 c-0.56,0.37-1.23,0.57-1.92,0.56c-0.68,0.01-1.35-0.19-1.92-0.56c-9.04-4-18.06-5.58-27.08-5.52c-9.25,0.06-18.58,1.85-27.99,4.54 c-0.34,0.12-0.71,0.18-1.09,0.18C1.51,100.01,0,98.5,0,96.64V18.97c0-1.86,1.51-3.37,3.37-3.37h9.61l0.06-11.26 c0.01-1.62,1.15-2.96,2.68-3.28l0,0c8.87-1.85,19.65-1.39,29.1,2.23c6.53,2.5,12.46,6.49,16.79,12.25 c4.37-5.37,10.21-9.23,16.78-11.72c8.98-3.41,19.34-4.23,29.09-2.8c1.68,0.24,2.88,1.69,2.88,3.33h0V15.6L110.37,15.6z M68.13,91.82c7.45-2.34,14.89-3.3,22.33-3.26c8.61,0.05,17.16,1.46,25.68,3.66V22.35h-5.77v55.22c0,1.86-1.51,3.37-3.37,3.37 c-0.27,0-0.53-0.03-0.78-0.09c-7.38-1.16-14.53-0.2-21.51,2.29C79.09,85.15,73.57,88.15,68.13,91.82L68.13,91.82z M58.12,85.25 V22.46c-3.53-6.23-9.24-10.4-15.69-12.87c-7.31-2.8-15.52-3.43-22.68-2.41l-0.38,66.81c7.81-0.28,15.45,0.71,22.64,3.06 C47.73,78.91,53.15,81.64,58.12,85.25L58.12,85.25z'/> </g></svg>");
}
.icon-meals {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(1.5)' fill='%23000'> <path d='M13 .5c0-.276-.226-.506-.498-.465-1.703.257-2.94 2.012-3 8.462a.5.5 0 0 0 .498.5c.56.01 1 .13 1 1.003v5.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5zM4.25 0a.25.25 0 0 1 .25.25v5.122a.128.128 0 0 0 .256.006l.233-5.14A.25.25 0 0 1 5.24 0h.522a.25.25 0 0 1 .25.238l.233 5.14a.128.128 0 0 0 .256-.006V.25A.25.25 0 0 1 6.75 0h.29a.5.5 0 0 1 .498.458l.423 5.07a1.69 1.69 0 0 1-1.059 1.711l-.053.022a.92.92 0 0 0-.58.884L6.47 15a.971.971 0 1 1-1.942 0l.202-6.855a.92.92 0 0 0-.58-.884l-.053-.022a1.69 1.69 0 0 1-1.059-1.712L3.462.458A.5.5 0 0 1 3.96 0z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(1.5)' fill='%23000'> <path d='M13 .5c0-.276-.226-.506-.498-.465-1.703.257-2.94 2.012-3 8.462a.5.5 0 0 0 .498.5c.56.01 1 .13 1 1.003v5.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5zM4.25 0a.25.25 0 0 1 .25.25v5.122a.128.128 0 0 0 .256.006l.233-5.14A.25.25 0 0 1 5.24 0h.522a.25.25 0 0 1 .25.238l.233 5.14a.128.128 0 0 0 .256-.006V.25A.25.25 0 0 1 6.75 0h.29a.5.5 0 0 1 .498.458l.423 5.07a1.69 1.69 0 0 1-1.059 1.711l-.053.022a.92.92 0 0 0-.58.884L6.47 15a.971.971 0 1 1-1.942 0l.202-6.855a.92.92 0 0 0-.58-.884l-.053-.022a1.69 1.69 0 0 1-1.059-1.712L3.462.458A.5.5 0 0 1 3.96 0z'/> </g></svg>");
}
.icon-activity {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000' fill-rule='evenodd'> <path d='m638.56 60c-59.461 0-107.82 48.359-107.82 107.82 0 59.828 48.379 107.82 107.82 107.82 59.828 0 108.32-47.992 108.32-107.82 0-59.461-48.492-107.82-108.32-107.82zm-62.445 247.45c-92.047 0-194.7 64.562-240.51 138.23-31.918 53.051-34.859 113.13-34.609 195.75-0.28906 23.617 18.828 42.887 42.441 42.812 23.621-0.074219 42.609-19.457 42.199-43.07-0.25-79.875 4.3984-121.76 22.496-151.85 13.836-22.992 39.484-45.27 87.656-73.492-15.035 69.652-28.879 139.47-42.953 208.88 66.996 159.16 134 318.31 201 477.46 12.637 31.281 48.43 46.172 79.52 33.082 31.098-13.09 45.465-49.094 31.926-79.996l-161.68-384.07 20.59-85.953 15.078-62.914c43.219 78.484 143.56 99.723 212.24 116.03 22.906 5.7422 46.074-8.3711 51.488-31.355 5.4102-22.984-9.0312-45.957-32.09-51.035-77.758-18.312-117.43-32.539-142.49-57.133-13.105-12.859-25.855-30.77-35.766-58.34-9.9102-27.57-14.543-58.031-23.367-85.266l-0.085938-0.28125v0.039062c-18.461-47.637-51.75-47.371-93.078-47.527zm-136.46 380.33-40.988 203.24-93.758 156.72c-17.73 28.695-8.543 66.352 20.402 83.668 28.945 17.316 66.469 7.5977 83.371-21.594l102.02-170.54c5.418-9.0547 8.3711-19.371 8.5664-29.922l0.22266-31.926c-26.613-63.215-53.223-126.43-79.832-189.64z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000' fill-rule='evenodd'> <path d='m638.56 60c-59.461 0-107.82 48.359-107.82 107.82 0 59.828 48.379 107.82 107.82 107.82 59.828 0 108.32-47.992 108.32-107.82 0-59.461-48.492-107.82-108.32-107.82zm-62.445 247.45c-92.047 0-194.7 64.562-240.51 138.23-31.918 53.051-34.859 113.13-34.609 195.75-0.28906 23.617 18.828 42.887 42.441 42.812 23.621-0.074219 42.609-19.457 42.199-43.07-0.25-79.875 4.3984-121.76 22.496-151.85 13.836-22.992 39.484-45.27 87.656-73.492-15.035 69.652-28.879 139.47-42.953 208.88 66.996 159.16 134 318.31 201 477.46 12.637 31.281 48.43 46.172 79.52 33.082 31.098-13.09 45.465-49.094 31.926-79.996l-161.68-384.07 20.59-85.953 15.078-62.914c43.219 78.484 143.56 99.723 212.24 116.03 22.906 5.7422 46.074-8.3711 51.488-31.355 5.4102-22.984-9.0312-45.957-32.09-51.035-77.758-18.312-117.43-32.539-142.49-57.133-13.105-12.859-25.855-30.77-35.766-58.34-9.9102-27.57-14.543-58.031-23.367-85.266l-0.085938-0.28125v0.039062c-18.461-47.637-51.75-47.371-93.078-47.527zm-136.46 380.33-40.988 203.24-93.758 156.72c-17.73 28.695-8.543 66.352 20.402 83.668 28.945 17.316 66.469 7.5977 83.371-21.594l102.02-170.54c5.418-9.0547 8.3711-19.371 8.5664-29.922l0.22266-31.926c-26.613-63.215-53.223-126.43-79.832-189.64z'/> </g></svg>");
}
.icon-tips {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m600 290.24c-137.23 0-248.88 111.65-248.88 248.88 0 7.4727 6.0586 13.531 13.531 13.531 7.4727 0 13.531-6.0586 13.531-13.531 0-122.31 99.508-221.82 221.82-221.82 7.4727 0 13.531-6.0586 13.531-13.531 0-7.4688-6.0547-13.531-13.531-13.531z'/> <path d='m600 192.88c-92.797 0-180.04 36.434-245.65 102.6-65.629 66.176-101.35 153.75-100.57 246.58 0.80078 96.543 42.379 189.09 114.07 253.92 48.898 44.215 76.941 106.57 76.941 171.07v34.145c0 11.988 5.3633 23.168 14.719 30.664 1.9805 1.5898 4.0977 2.9414 6.293 4.1055v56.059 0.011718 13.883c0 16.121 7.2148 31.152 19.797 41.234 6.7148 5.3828 14.484 8.9297 22.648 10.566 3.5156 23.879 24.074 42.281 48.906 42.281h85.688c27.289 0 49.488-22.199 49.488-49.484v-29.23c24.73-6.3008 41.875-28.188 41.875-53.871v-29.613-0.011719-54.832c12.844-8.1328 21-22.359 21-38.383v-9.3047c0-49.137 21.812-94.625 59.84-124.8 83.375-66.152 131.19-165.05 131.19-271.35 0-190.91-155.32-346.23-346.23-346.24zm107.14 834.29-214.27 47.762v-35.422l214.27-47.762zm-64.301 145.77h-85.688c-10.355 0-19.07-7.0664-21.637-16.625l129.75-28.922v23.125c0 12.363-10.062 22.422-22.426 22.422zm41.93-77.621-160.5 35.777c-7.6836 1.7031-15.602-0.13281-21.742-5.0508-6.1367-4.918-9.6562-12.25-9.6562-20.121v-3.2656l214.27-47.762v12.52c0 13.492-9.1992 24.965-22.371 27.902zm113.45-306.05c-44.539 35.34-70.082 88.551-70.082 146v9.3047c0 8.6992-5.9297 16.094-14.418 17.988l-226.96 50.59c-3.6484 0.79688-7.4102-0.058594-10.324-2.4023-2.9141-2.332-4.582-5.8125-4.582-9.5469l-0.003906-34.152c0-72.141-31.293-141.81-85.855-191.14-66.094-59.766-104.43-145.08-105.16-234.07-0.71094-85.562 32.219-166.28 92.73-227.3 60.492-60.996 140.91-94.59 226.44-94.59 175.99 0.003907 319.17 143.19 319.17 319.18-0.003907 97.988-44.09 189.16-120.95 250.15z'/> <path d='m600 156.63c7.4727 0 13.531-6.0586 13.531-13.531v-129.57c0-7.4727-6.0586-13.531-13.531-13.531s-13.531 6.0586-13.531 13.531v129.57c0 7.4727 6.0586 13.535 13.531 13.535z'/> <path d='m1125.6 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531 0.003906-7.4727-6.0547-13.531-13.531-13.531z'/> <path d='m203.98 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531s-6.0586-13.531-13.531-13.531z'/> <path d='m889.6 809.59c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133l91.617 91.617c2.6445 2.6445 6.1055 3.9648 9.5703 3.9648 3.4609 0 6.9258-1.3203 9.5703-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133z'/> <path d='m310.4 268.66c2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4648 0 6.9258-1.3203 9.5664-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133l-91.617-91.617c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133z'/> <path d='m310.4 809.59-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4609 0 6.9258-1.3203 9.5664-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2773-5.2812-13.848-5.2852-19.133 0z'/> <path d='m880.03 272.62c3.4609 0 6.9258-1.3203 9.5703-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2852-5.2852-13.852-5.2852-19.137 0l-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1016 3.9648 9.5664 3.9648z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m600 290.24c-137.23 0-248.88 111.65-248.88 248.88 0 7.4727 6.0586 13.531 13.531 13.531 7.4727 0 13.531-6.0586 13.531-13.531 0-122.31 99.508-221.82 221.82-221.82 7.4727 0 13.531-6.0586 13.531-13.531 0-7.4688-6.0547-13.531-13.531-13.531z'/> <path d='m600 192.88c-92.797 0-180.04 36.434-245.65 102.6-65.629 66.176-101.35 153.75-100.57 246.58 0.80078 96.543 42.379 189.09 114.07 253.92 48.898 44.215 76.941 106.57 76.941 171.07v34.145c0 11.988 5.3633 23.168 14.719 30.664 1.9805 1.5898 4.0977 2.9414 6.293 4.1055v56.059 0.011718 13.883c0 16.121 7.2148 31.152 19.797 41.234 6.7148 5.3828 14.484 8.9297 22.648 10.566 3.5156 23.879 24.074 42.281 48.906 42.281h85.688c27.289 0 49.488-22.199 49.488-49.484v-29.23c24.73-6.3008 41.875-28.188 41.875-53.871v-29.613-0.011719-54.832c12.844-8.1328 21-22.359 21-38.383v-9.3047c0-49.137 21.812-94.625 59.84-124.8 83.375-66.152 131.19-165.05 131.19-271.35 0-190.91-155.32-346.23-346.23-346.24zm107.14 834.29-214.27 47.762v-35.422l214.27-47.762zm-64.301 145.77h-85.688c-10.355 0-19.07-7.0664-21.637-16.625l129.75-28.922v23.125c0 12.363-10.062 22.422-22.426 22.422zm41.93-77.621-160.5 35.777c-7.6836 1.7031-15.602-0.13281-21.742-5.0508-6.1367-4.918-9.6562-12.25-9.6562-20.121v-3.2656l214.27-47.762v12.52c0 13.492-9.1992 24.965-22.371 27.902zm113.45-306.05c-44.539 35.34-70.082 88.551-70.082 146v9.3047c0 8.6992-5.9297 16.094-14.418 17.988l-226.96 50.59c-3.6484 0.79688-7.4102-0.058594-10.324-2.4023-2.9141-2.332-4.582-5.8125-4.582-9.5469l-0.003906-34.152c0-72.141-31.293-141.81-85.855-191.14-66.094-59.766-104.43-145.08-105.16-234.07-0.71094-85.562 32.219-166.28 92.73-227.3 60.492-60.996 140.91-94.59 226.44-94.59 175.99 0.003907 319.17 143.19 319.17 319.18-0.003907 97.988-44.09 189.16-120.95 250.15z'/> <path d='m600 156.63c7.4727 0 13.531-6.0586 13.531-13.531v-129.57c0-7.4727-6.0586-13.531-13.531-13.531s-13.531 6.0586-13.531 13.531v129.57c0 7.4727 6.0586 13.535 13.531 13.535z'/> <path d='m1125.6 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531 0.003906-7.4727-6.0547-13.531-13.531-13.531z'/> <path d='m203.98 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531s-6.0586-13.531-13.531-13.531z'/> <path d='m889.6 809.59c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133l91.617 91.617c2.6445 2.6445 6.1055 3.9648 9.5703 3.9648 3.4609 0 6.9258-1.3203 9.5703-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133z'/> <path d='m310.4 268.66c2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4648 0 6.9258-1.3203 9.5664-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133l-91.617-91.617c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133z'/> <path d='m310.4 809.59-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4609 0 6.9258-1.3203 9.5664-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2773-5.2812-13.848-5.2852-19.133 0z'/> <path d='m880.03 272.62c3.4609 0 6.9258-1.3203 9.5703-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2852-5.2852-13.852-5.2852-19.137 0l-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1016 3.9648 9.5664 3.9648z'/> </g></svg>");
}
.icon-faq {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <path d='M9.5 9.5a2.5 2.5 0 0 1 5 0c0 1.5-1.2 2.3-2.3 3.2-.5.4-.7.8-.7 1.3'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <path d='M9.5 9.5a2.5 2.5 0 0 1 5 0c0 1.5-1.2 2.3-2.3 3.2-.5.4-.7.8-.7 1.3'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
}
.icon-home {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M3 12L12 3l9 9'/> <path d='M5 10.5V20a1 1 0 0 0 1 1h4v-5h4v5h4a1 1 0 0 0 1-1V10.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M3 12L12 3l9 9'/> <path d='M5 10.5V20a1 1 0 0 0 1 1h4v-5h4v5h4a1 1 0 0 0 1-1V10.5'/> </g></svg>");
}
.icon-sitemap {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='9' y='2' width='6' height='4' rx='1'/> <rect x='3' y='16' width='6' height='4' rx='1'/> <rect x='15' y='16' width='6' height='4' rx='1'/> <line x1='12' y1='6' x2='12' y2='11'/> <path d='M6 11h12v5'/> <line x1='6' y1='11' x2='6' y2='16'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='9' y='2' width='6' height='4' rx='1'/> <rect x='3' y='16' width='6' height='4' rx='1'/> <rect x='15' y='16' width='6' height='4' rx='1'/> <line x1='12' y1='6' x2='12' y2='11'/> <path d='M6 11h12v5'/> <line x1='6' y1='11' x2='6' y2='16'/> </g></svg>");
}
.icon-search {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='10.5' cy='10.5' r='7'/> <line x1='16' y1='16' x2='21' y2='21'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='10.5' cy='10.5' r='7'/> <line x1='16' y1='16' x2='21' y2='21'/> </g></svg>");
}
.icon-menu {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='3' y1='6' x2='21' y2='6'/> <line x1='3' y1='12' x2='21' y2='12'/> <line x1='3' y1='18' x2='21' y2='18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='3' y1='6' x2='21' y2='6'/> <line x1='3' y1='12' x2='21' y2='12'/> <line x1='3' y1='18' x2='21' y2='18'/> </g></svg>");
}
.icon-apps {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='%23000' stroke='none'> <circle cx='6' cy='6' r='1.2'/><circle cx='12' cy='6' r='1.2'/><circle cx='18' cy='6' r='1.2'/> <circle cx='6' cy='12' r='1.2'/><circle cx='12' cy='12' r='1.2'/><circle cx='18' cy='12' r='1.2'/> <circle cx='6' cy='18' r='1.2'/><circle cx='12' cy='18' r='1.2'/><circle cx='18' cy='18' r='1.2'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='%23000' stroke='none'> <circle cx='6' cy='6' r='1.2'/><circle cx='12' cy='6' r='1.2'/><circle cx='18' cy='6' r='1.2'/> <circle cx='6' cy='12' r='1.2'/><circle cx='12' cy='12' r='1.2'/><circle cx='18' cy='12' r='1.2'/> <circle cx='6' cy='18' r='1.2'/><circle cx='12' cy='18' r='1.2'/><circle cx='18' cy='18' r='1.2'/> </g></svg>");
}
.icon-launch {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10 5H6a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-4'/> <polyline points='15 3 21 3 21 9'/> <line x1='10' y1='14' x2='21' y2='3'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10 5H6a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-4'/> <polyline points='15 3 21 3 21 9'/> <line x1='10' y1='14' x2='21' y2='3'/> </g></svg>");
}
.icon-warning {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10.3 4l-8.7 15a1.5 1.5 0 0 0 1.3 2.25h17.4a1.5 1.5 0 0 0 1.3-2.25L13.7 4a1.5 1.5 0 0 0-2.6 0z'/> <line x1='12' y1='9' x2='12' y2='13.5'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10.3 4l-8.7 15a1.5 1.5 0 0 0 1.3 2.25h17.4a1.5 1.5 0 0 0 1.3-2.25L13.7 4a1.5 1.5 0 0 0-2.6 0z'/> <line x1='12' y1='9' x2='12' y2='13.5'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
}
.icon-info {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <line x1='12' y1='7.5' x2='12.01' y2='7.5'/> <line x1='12' y1='11' x2='12' y2='17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <line x1='12' y1='7.5' x2='12.01' y2='7.5'/> <line x1='12' y1='11' x2='12' y2='17'/> </g></svg>");
}
.icon-bookmark {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z'/> </g></svg>");
}
.icon-globe {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <line x1='3.3' y1='7' x2='20.7' y2='7'/> <line x1='2' y1='12' x2='22' y2='12'/> <line x1='3.3' y1='17' x2='20.7' y2='17'/> <line x1='12' y1='2' x2='12' y2='22'/> <path d='M12 2 Q2 12 12 22'/> <path d='M12 2 Q22 12 12 22'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <line x1='3.3' y1='7' x2='20.7' y2='7'/> <line x1='2' y1='12' x2='22' y2='12'/> <line x1='3.3' y1='17' x2='20.7' y2='17'/> <line x1='12' y1='2' x2='12' y2='22'/> <path d='M12 2 Q2 12 12 22'/> <path d='M12 2 Q22 12 12 22'/> </g></svg>");
}
.icon-play {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M8 5v14l11-7z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M8 5v14l11-7z'/></svg>");
}
.icon-paper {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/> <polyline points='14 2 14 8 20 8'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='16' y2='17'/> <line x1='8' y1='9' x2='11' y2='9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/> <polyline points='14 2 14 8 20 8'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='16' y2='17'/> <line x1='8' y1='9' x2='11' y2='9'/> </g></svg>");
}
.icon-download {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='3' x2='12' y2='15'/> <polyline points='8 11 12 15 16 11'/> <path d='M5 19v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='3' x2='12' y2='15'/> <polyline points='8 11 12 15 16 11'/> <path d='M5 19v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1'/> </g></svg>");
}
.icon-clipboard {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/> <path d='M15 2H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z'/> <line x1='8' y1='9' x2='16' y2='9'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='14' y2='17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/> <path d='M15 2H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z'/> <line x1='8' y1='9' x2='16' y2='9'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='14' y2='17'/> </g></svg>");
}
.icon-copy {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M9 8 L9 5.5 Q9 4 10.5 4 L18.5 4 Q20 4 20 5.5 L20 16.5 Q20 18 18.5 18 L15 18'/> <rect x='3' y='8' width='12' height='14' rx='1.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M9 8 L9 5.5 Q9 4 10.5 4 L18.5 4 Q20 4 20 5.5 L20 16.5 Q20 18 18.5 18 L15 18'/> <rect x='3' y='8' width='12' height='14' rx='1.5'/> </g></svg>");
}
.icon-share {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='18' cy='5' r='2'/><circle cx='6' cy='12' r='2'/><circle cx='18' cy='19' r='2'/> <line x1='7.9' y1='10.7' x2='16.1' y2='6.3'/> <line x1='7.9' y1='13.3' x2='16.1' y2='17.7'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='18' cy='5' r='2'/><circle cx='6' cy='12' r='2'/><circle cx='18' cy='19' r='2'/> <line x1='7.9' y1='10.7' x2='16.1' y2='6.3'/> <line x1='7.9' y1='13.3' x2='16.1' y2='17.7'/> </g></svg>");
}
.icon-print {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 6 3 18 3 18 9'/> <path d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/> <rect x='6' y='14' width='12' height='8'/> <line x1='18' y1='11' x2='18.01' y2='11'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 6 3 18 3 18 9'/> <path d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/> <rect x='6' y='14' width='12' height='8'/> <line x1='18' y1='11' x2='18.01' y2='11'/> </g></svg>");
}
.icon-email {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M4 5 Q2 5 2 7 V17 Q2 19 4 19 H20 Q22 19 22 17 V7 Q22 5 20 5 H4z'/> <polyline points='2 7 12 14 22 7'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M4 5 Q2 5 2 7 V17 Q2 19 4 19 H20 Q22 19 22 17 V7 Q22 5 20 5 H4z'/> <polyline points='2 7 12 14 22 7'/> </g></svg>");
}
.icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='6' y='2' width='12' height='20' rx='2'/> <line x1='6' y1='5.5' x2='18' y2='5.5'/> <line x1='6' y1='18.5' x2='18' y2='18.5'/> <line x1='10' y1='4' x2='14' y2='4'/> <circle cx='12' cy='20.25' r='0.8'/> <path d='M3.5 10 C2.2 11.5 2.2 12.5 3.5 14'/> <path d='M1.5 8 C-0.5 10.5 -0.5 13.5 1.5 16'/> <path d='M20.5 10 C21.8 11.5 21.8 12.5 20.5 14'/> <path d='M22.5 8 C24.5 10.5 24.5 13.5 22.5 16'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='6' y='2' width='12' height='20' rx='2'/> <line x1='6' y1='5.5' x2='18' y2='5.5'/> <line x1='6' y1='18.5' x2='18' y2='18.5'/> <line x1='10' y1='4' x2='14' y2='4'/> <circle cx='12' cy='20.25' r='0.8'/> <path d='M3.5 10 C2.2 11.5 2.2 12.5 3.5 14'/> <path d='M1.5 8 C-0.5 10.5 -0.5 13.5 1.5 16'/> <path d='M20.5 10 C21.8 11.5 21.8 12.5 20.5 14'/> <path d='M22.5 8 C24.5 10.5 24.5 13.5 22.5 16'/> </g></svg>");
}
.icon-image {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='2' y='5' width='20' height='14' rx='2'/> <circle cx='7.5' cy='9.5' r='1.5'/> <polyline points='2 17 8 11 13 16 16 13 22 19'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='2' y='5' width='20' height='14' rx='2'/> <circle cx='7.5' cy='9.5' r='1.5'/> <polyline points='2 17 8 11 13 16 16 13 22 19'/> </g></svg>");
}
.icon-rx {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='7' y='9' width='10' height='12' rx='1'/> <rect x='5' y='6.5' width='14' height='2.5' rx='1'/> <rect x='8' y='4' width='8' height='2.5' rx='1'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='7' y='9' width='10' height='12' rx='1'/> <rect x='5' y='6.5' width='14' height='2.5' rx='1'/> <rect x='8' y='4' width='8' height='2.5' rx='1'/> </g></svg>");
}
.icon-coffee {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M8 7 Q9 6 8 5 Q7 4 8 3'/> <path d='M13 7 Q14 6 13 5 Q12 4 13 3'/> <path d='M5 9h12v8a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V9z'/> <path d='M17 11h1.5a1.5 1.5 0 0 1 0 3H17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M8 7 Q9 6 8 5 Q7 4 8 3'/> <path d='M13 7 Q14 6 13 5 Q12 4 13 3'/> <path d='M5 9h12v8a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V9z'/> <path d='M17 11h1.5a1.5 1.5 0 0 1 0 3H17'/> </g></svg>");
}
.icon-user {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='8' r='4'/> <path d='M5 21a7 7 0 0 1 14 0'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='8' r='4'/> <path d='M5 21a7 7 0 0 1 14 0'/> </g></svg>");
}
.icon-people {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='8.5' cy='7.5' r='3.5'/> <path d='M2 21v-1a5 5 0 0 1 5-5h3a5 5 0 0 1 5 5v1'/> <circle cx='17.5' cy='8.5' r='2.5'/> <path d='M17.5 14a4 4 0 0 1 4 4v1'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='8.5' cy='7.5' r='3.5'/> <path d='M2 21v-1a5 5 0 0 1 5-5h3a5 5 0 0 1 5 5v1'/> <circle cx='17.5' cy='8.5' r='2.5'/> <path d='M17.5 14a4 4 0 0 1 4 4v1'/> </g></svg>");
}
.icon-settings {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='3'/> <path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='3'/> <path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/> </g></svg>");
}
.icon-edit {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/> <path d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/> <path d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'/> </g></svg>");
}
.icon-trash {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='3 6 5 6 21 6'/> <path d='M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/> <path d='M9 6V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2'/> <line x1='10' y1='11' x2='10' y2='17'/> <line x1='14' y1='11' x2='14' y2='17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='3 6 5 6 21 6'/> <path d='M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/> <path d='M9 6V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2'/> <line x1='10' y1='11' x2='10' y2='17'/> <line x1='14' y1='11' x2='14' y2='17'/> </g></svg>");
}
.icon-filter {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m838.13 847.4v-70.031c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.562c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m838.13 716.9v-69.984c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.516c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m814.13 903.37v31.312c0 21.281-19.594 40.172-50.766 55.547v-111.61c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.2031v139.08c-18.094 6.7969-38.578 12.656-60.516 17.438v-163.08c-4.4531 1.4531-8.4844 3.1406-12 4.875-5.25 2.5781-9.3281 5.2031-12 7.0781v155.9c-19.594 3.4219-39.984 6-60.516 7.6406v-650.53c21.094-1.4531 41.344-3.8438 60.516-7.0312v166.13c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188v-164.11c21.984-4.5938 42.281-10.312 60.516-16.922v184.08c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 7.9688 3.375 12 5.4844v-203.53c20.953-9.6562 38.156-20.719 50.766-32.859v269.72c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0156 2.2969 12 3v-322.18c0-0.5625-0.14062-1.0781-0.1875-1.5938 0.046875-0.89062 0.1875-1.8281 0.1875-2.7188 0-68.25-129.98-121.74-295.87-121.74-165.94 0-295.92 53.484-295.92 121.74 0 0.89063 0.14062 1.8281 0.1875 2.7188 0 0.5625-0.1875 1.0781-0.1875 1.5938v8.0.45c0 68.25 129.98 121.74 295.92 121.74s295.87-53.484 295.87-121.74v-26.812c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70313-7.875-1.6406-12-2.8125zm-543.79 31.359v-626.02c11.719 11.297 27.422 21.609 46.406 30.75v648.52c-28.594-14.906-46.406-33-46.406-53.25zm55.172-732.47c53.484-24.984 137.86-40.078 216.74-40.078s163.22 15.141 216.71 40.078c8.4844 3.9375 16.172 8.1562 22.922 12.562 20.203 13.219 32.25 28.406 32.25 45.047 0 0.84375-0.14062 1.6406-0.1875 2.4375-4.0312 56.25-144.94 95.25-271.69 95.25-126.76 0-267.71-39-271.74-95.25-0.046875-0.79688-0.1875-1.6406-0.1875-2.4375 0-16.688 12.047-31.875 32.25-45.047 6.7969-4.4062 14.484-8.625 22.922-12.562zm160.26 827.68c-20.578-1.7812-40.969-4.4531-60.516-8.0156v-649.82c19.172 3.2812 39.422 5.7656 60.516 7.4062zm-145.03-680.16c18.141 6.8906 38.438 12.797 60.516 17.625v649.64c-22.078-4.9688-42.562-11.109-60.516-18.141zm169.03 31.125c10.641 0.46875 21.469 0.70312 32.438 0.70312 9.4688 0 18.844-0.1875 28.078-0.5625v8.0.72c-9.375 0.42188-18.75 0.65625-28.078 0.65625-10.734 0-21.609-0.28125-32.438-0.84375z'/> <path d='m542.26 319.22c66.75 0 134.39-20.344 134.39-59.297 0-13.5-8.25-24.703-21.609-33.656-6.8906-4.6406-15.141-8.625-24.469-12-16.312-5.9062-35.672-9.9375-56.062-12-10.594-1.0781-21.422-1.6406-32.25-1.6406s-21.656 0.60938-32.25 1.6406c-20.391 2.0625-39.75 6.0938-56.062 12-9.2812 3.375-17.578 7.4062-24.469 12-13.359 8.9531-21.609 20.156-21.609 33.656 0 38.906 67.594 59.297 134.39 59.297zm0-94.594c11.25 0 21.703 0.60938 31.5 1.6406 48.938 5.1562 78.891 21.656 78.891 33.656 0 14.391-42.984 35.297-110.39 35.297-67.359 0-110.39-20.906-110.39-35.297 0-12 29.953-28.453 78.891-33.656 9.7969-1.0312 20.25-1.6406 31.5-1.6406z'/> <path d='m678.84 662.9v-68.953c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188z'/> <path d='m678.84 793.36v-69c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-0.98438 7.875-1.9219 12-2.6719z'/> <path d='m763.36 806.02v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 8.0156 3.3281 12 5.4375z'/> <path d='m763.36 675.56v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2344-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5469 8.0156 3.3281 12 5.4375z'/> <path d='m937.45 815.86-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.6719 7.0781 10.547 1.6406 0.79688 3.375 1.2656 5.2031 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.5312-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.859-1.3594 16.922 4.3125 5.0156 11.859 5.6719 16.922 1.3594 0.70312-0.60938 6.3281-5.2031 15.281-10.078 3.5156-1.9219 7.5469-3.8438 12-5.625 3.75-1.5 7.6875-2.9062 12-4.0781 16.922-4.5 38.016-5.3438 60.516 4.9688 3.9375 1.8281 7.9688 3.9375 12 6.4688 3.8906 2.4375 7.8281 5.25 11.766 8.4844 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.375-3.0469-3.375-7.1719-5.1562-12.094-5.1094z'/> <path d='m937.45 685.36-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.0781 10.547 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.7188 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-10.031 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4062 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.6406-1.0312-9.1406-4.0781-12.422-3-3.2812-7.6875-5.1094-12-5.0156z'/> <path d='m937.45 554.9-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.125 10.5 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.89062-14.812 0.75-22.219-0.23438-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.6719 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-9.9844 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.422-3.0469-3.2344-7.3125-4.8281-12.047-4.9688z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m838.13 847.4v-70.031c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.562c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m838.13 716.9v-69.984c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.516c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m814.13 903.37v31.312c0 21.281-19.594 40.172-50.766 55.547v-111.61c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.2031v139.08c-18.094 6.7969-38.578 12.656-60.516 17.438v-163.08c-4.4531 1.4531-8.4844 3.1406-12 4.875-5.25 2.5781-9.3281 5.2031-12 7.0781v155.9c-19.594 3.4219-39.984 6-60.516 7.6406v-650.53c21.094-1.4531 41.344-3.8438 60.516-7.0312v166.13c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188v-164.11c21.984-4.5938 42.281-10.312 60.516-16.922v184.08c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 7.9688 3.375 12 5.4844v-203.53c20.953-9.6562 38.156-20.719 50.766-32.859v269.72c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0156 2.2969 12 3v-322.18c0-0.5625-0.14062-1.0781-0.1875-1.5938 0.046875-0.89062 0.1875-1.8281 0.1875-2.7188 0-68.25-129.98-121.74-295.87-121.74-165.94 0-295.92 53.484-295.92 121.74 0 0.89063 0.14062 1.8281 0.1875 2.7188 0 0.5625-0.1875 1.0781-0.1875 1.5938v8.0.45c0 68.25 129.98 121.74 295.92 121.74s295.87-53.484 295.87-121.74v-26.812c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70313-7.875-1.6406-12-2.8125zm-543.79 31.359v-626.02c11.719 11.297 27.422 21.609 46.406 30.75v648.52c-28.594-14.906-46.406-33-46.406-53.25zm55.172-732.47c53.484-24.984 137.86-40.078 216.74-40.078s163.22 15.141 216.71 40.078c8.4844 3.9375 16.172 8.1562 22.922 12.562 20.203 13.219 32.25 28.406 32.25 45.047 0 0.84375-0.14062 1.6406-0.1875 2.4375-4.0312 56.25-144.94 95.25-271.69 95.25-126.76 0-267.71-39-271.74-95.25-0.046875-0.79688-0.1875-1.6406-0.1875-2.4375 0-16.688 12.047-31.875 32.25-45.047 6.7969-4.4062 14.484-8.625 22.922-12.562zm160.26 827.68c-20.578-1.7812-40.969-4.4531-60.516-8.0156v-649.82c19.172 3.2812 39.422 5.7656 60.516 7.4062zm-145.03-680.16c18.141 6.8906 38.438 12.797 60.516 17.625v649.64c-22.078-4.9688-42.562-11.109-60.516-18.141zm169.03 31.125c10.641 0.46875 21.469 0.70312 32.438 0.70312 9.4688 0 18.844-0.1875 28.078-0.5625v8.0.72c-9.375 0.42188-18.75 0.65625-28.078 0.65625-10.734 0-21.609-0.28125-32.438-0.84375z'/> <path d='m542.26 319.22c66.75 0 134.39-20.344 134.39-59.297 0-13.5-8.25-24.703-21.609-33.656-6.8906-4.6406-15.141-8.625-24.469-12-16.312-5.9062-35.672-9.9375-56.062-12-10.594-1.0781-21.422-1.6406-32.25-1.6406s-21.656 0.60938-32.25 1.6406c-20.391 2.0625-39.75 6.0938-56.062 12-9.2812 3.375-17.578 7.4062-24.469 12-13.359 8.9531-21.609 20.156-21.609 33.656 0 38.906 67.594 59.297 134.39 59.297zm0-94.594c11.25 0 21.703 0.60938 31.5 1.6406 48.938 5.1562 78.891 21.656 78.891 33.656 0 14.391-42.984 35.297-110.39 35.297-67.359 0-110.39-20.906-110.39-35.297 0-12 29.953-28.453 78.891-33.656 9.7969-1.0312 20.25-1.6406 31.5-1.6406z'/> <path d='m678.84 662.9v-68.953c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188z'/> <path d='m678.84 793.36v-69c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-0.98438 7.875-1.9219 12-2.6719z'/> <path d='m763.36 806.02v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 8.0156 3.3281 12 5.4375z'/> <path d='m763.36 675.56v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2344-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5469 8.0156 3.3281 12 5.4375z'/> <path d='m937.45 815.86-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.6719 7.0781 10.547 1.6406 0.79688 3.375 1.2656 5.2031 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.5312-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.859-1.3594 16.922 4.3125 5.0156 11.859 5.6719 16.922 1.3594 0.70312-0.60938 6.3281-5.2031 15.281-10.078 3.5156-1.9219 7.5469-3.8438 12-5.625 3.75-1.5 7.6875-2.9062 12-4.0781 16.922-4.5 38.016-5.3438 60.516 4.9688 3.9375 1.8281 7.9688 3.9375 12 6.4688 3.8906 2.4375 7.8281 5.25 11.766 8.4844 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.375-3.0469-3.375-7.1719-5.1562-12.094-5.1094z'/> <path d='m937.45 685.36-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.0781 10.547 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.7188 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-10.031 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4062 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.6406-1.0312-9.1406-4.0781-12.422-3-3.2812-7.6875-5.1094-12-5.0156z'/> <path d='m937.45 554.9-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.125 10.5 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.89062-14.812 0.75-22.219-0.23438-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.6719 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-9.9844 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.422-3.0469-3.2344-7.3125-4.8281-12.047-4.9688z'/> </g></svg>");
}
.icon-calendar {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m98.438 815.63c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-150h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-107.81c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v150zm707.81-150h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150z'/> <path d='m1087.5 140.63h-46.875v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-581.26v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-46.875c-62.016 0-112.5 50.484-112.5 112.5v787.5c0 62.016 50.484 112.5 112.5 112.5h975c62.016 0 112.5-50.484 112.5-112.5v-787.5c0-62.016-50.484-112.5-112.5-112.5zm-159.37-37.5c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm-731.26 0c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm890.63 1012.5h-975c-41.344 0-75-33.656-75-75h1125c0 41.344-33.656 75-75 75zm75-112.5h-1125v-525h1125zm0-562.5h-1125v-187.5c0-41.344 33.656-75 75-75h46.875v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h581.26v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h46.875c41.344 0 75 33.656 75 75z'/> <path d='m759.37 290.63h-318.74c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h318.74c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m98.438 815.63c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-150h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-107.81c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v150zm707.81-150h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150z'/> <path d='m1087.5 140.63h-46.875v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-581.26v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-46.875c-62.016 0-112.5 50.484-112.5 112.5v787.5c0 62.016 50.484 112.5 112.5 112.5h975c62.016 0 112.5-50.484 112.5-112.5v-787.5c0-62.016-50.484-112.5-112.5-112.5zm-159.37-37.5c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm-731.26 0c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm890.63 1012.5h-975c-41.344 0-75-33.656-75-75h1125c0 41.344-33.656 75-75 75zm75-112.5h-1125v-525h1125zm0-562.5h-1125v-187.5c0-41.344 33.656-75 75-75h46.875v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h581.26v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h46.875c41.344 0 75 33.656 75 75z'/> <path d='m759.37 290.63h-318.74c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h318.74c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75z'/> </g></svg>");
}
.icon-clock {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <polyline points='12 6 12 12 16 14'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <polyline points='12 6 12 12 16 14'/> </g></svg>");
}
.icon-tag {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/> <circle cx='7' cy='7' r='1.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/> <circle cx='7' cy='7' r='1.5'/> </g></svg>");
}
.icon-lock {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='5' y='11' width='14' height='11' rx='2'/> <path d='M8 11V7a4 4 0 0 1 8 0v4'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='5' y='11' width='14' height='11' rx='2'/> <path d='M8 11V7a4 4 0 0 1 8 0v4'/> </g></svg>");
}
.icon-close {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/> </g></svg>");
}
.icon-arrow-right {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/><polyline points='13 6 19 12 13 18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/><polyline points='13 6 19 12 13 18'/> </g></svg>");
}
.icon-arrow-left {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='19' y1='12' x2='5' y2='12'/><polyline points='11 18 5 12 11 6'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='19' y1='12' x2='5' y2='12'/><polyline points='11 18 5 12 11 6'/> </g></svg>");
}
.icon-arrow-up {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='19' x2='12' y2='5'/><polyline points='6 11 12 5 18 11'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='19' x2='12' y2='5'/><polyline points='6 11 12 5 18 11'/> </g></svg>");
}
.icon-arrow-down {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><polyline points='6 13 12 19 18 13'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><polyline points='6 13 12 19 18 13'/> </g></svg>");
}
.icon-nav-down {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 12 15 18 9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 12 15 18 9'/> </g></svg>");
}
.icon-nav-up {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 15 12 9 18 15'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 15 12 9 18 15'/> </g></svg>");
}
.icon-nav-right {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='9 6 15 12 9 18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='9 6 15 12 9 18'/> </g></svg>");
}
.icon-nav-left {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='15 6 9 12 15 18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='15 6 9 12 15 18'/> </g></svg>");
}
.icon-plus {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
}
.icon-minus {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
}
.icon-check {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='4 12 9 17 20 6'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='4 12 9 17 20 6'/> </g></svg>");
}
.icon-check-circle {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
}
.icon-star {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>");
}
.icon-star-empty {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/> </g></svg>");
}
.icon-checkbox {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/> </g></svg>");
}
.icon-checkedbox {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
}
.icon-list {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> </g></svg>");
}
.icon-list-dot {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> <circle cx='12' cy='12' r='4' fill='%23000' stroke='none'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> <circle cx='12' cy='12' r='4' fill='%23000' stroke='none'/> </g></svg>");
}
.icon-new {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-1.2,-1.2) scale(0.022)' fill='%23000' stroke='%23000' stroke-width='40' stroke-linejoin='round'> <path d='m622.14 823.84c12.168-0.039062 23.824-4.8945 32.418-13.508 8.5977-8.6094 13.434-20.273 13.453-32.438v-66.617h281.5v-220.59h-281.5v-66.617c0.007812-16.184-8.5117-31.172-22.422-39.445-13.91-8.2695-31.148-8.6016-45.363-0.87109l-325.75 176.91h-0.003906c-9.7227 5.2734-17.211 13.887-21.086 24.25-3.8711 10.359-3.8711 21.773 0 32.133 3.875 10.363 11.363 18.973 21.086 24.25l325.75 176.91c6.7188 3.6797 14.254 5.6133 21.914 5.6289zm293.37-146.57h-281.5v100.62c0.003906 4.1836-2.1992 8.0625-5.7969 10.199-3.5977 2.1406-8.0586 2.2266-11.734 0.22656l-325.79-176.99c-3.8242-2.0742-6.207-6.0742-6.207-10.426 0-4.3516 2.3828-8.3555 6.207-10.43l325.75-176.84c3.6797-2.0156 8.1523-1.9414 11.762 0.20312 3.6094 2.1406 5.8203 6.0312 5.8086 10.227v100.62h281.5z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-1.2,-1.2) scale(0.022)' fill='%23000' stroke='%23000' stroke-width='40' stroke-linejoin='round'> <path d='m622.14 823.84c12.168-0.039062 23.824-4.8945 32.418-13.508 8.5977-8.6094 13.434-20.273 13.453-32.438v-66.617h281.5v-220.59h-281.5v-66.617c0.007812-16.184-8.5117-31.172-22.422-39.445-13.91-8.2695-31.148-8.6016-45.363-0.87109l-325.75 176.91h-0.003906c-9.7227 5.2734-17.211 13.887-21.086 24.25-3.8711 10.359-3.8711 21.773 0 32.133 3.875 10.363 11.363 18.973 21.086 24.25l325.75 176.91c6.7188 3.6797 14.254 5.6133 21.914 5.6289zm293.37-146.57h-281.5v100.62c0.003906 4.1836-2.1992 8.0625-5.7969 10.199-3.5977 2.1406-8.0586 2.2266-11.734 0.22656l-325.79-176.99c-3.8242-2.0742-6.207-6.0742-6.207-10.426 0-4.3516 2.3828-8.3555 6.207-10.43l325.75-176.84c3.6797-2.0156 8.1523-1.9414 11.762 0.20312 3.6094 2.1406 5.8203 6.0312 5.8086 10.227v100.62h281.5z'/> </g></svg>");
}
.icon-scale {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m1070.8 462.25c-4.3086-39.383-37.359-69.082-76.871-69.082h-235.95c-44.473-36.215-100.25-56.258-158.06-56.258-57.676 0-113.4 20.039-157.9 56.258h-218.92c-38.543 0-71.492 28.797-76.656 66.992l-84.73 632.67c-2.9766 22.066 3.75 44.363 18.441 61.176 14.707 16.828 35.926 26.477 58.23 26.477 955.94-9.2461 938.71 21.223 980.79-25.629 14.656-16.309 21.699-38.203 19.344-60.051zm-260.65 102.43c-3.2578 3.832-7.9766 6.0273-12.98 6.0273-387.32-2.1055-416.29 10.777-411.25-19.625 6.7812-40.691 26.613-81.988 59.02-115.23l21.336 21.332 23.82-23.82-19.695-19.691c32.766-24.445 71.812-39.148 112.67-42.324v23.504h33.688v-23.508c40.914 3.168 79.992 17.844 112.73 42.25l-19.777 19.773 23.82 23.82 21.43-21.422c40.707 41.766 68.199 113.51 55.184 128.92zm283.97 567.66c-24.605 27.387-0.20703 9.2734-955.73 14.449-12.586 0-24.559-5.4531-32.867-14.961-8.2891-9.4844-12.09-22.059-10.414-34.512l84.734-632.67c2.9102-21.551 21.5-37.793 43.262-37.793h184.57c-31.57 37.844-75.145 122.46-43.676 159.61 9.6562 11.398 23.754 17.938 38.672 17.938h394.5c14.922 0 29.016-6.5391 38.672-17.93 31.254-36.867-12.172-121.94-43.543-159.61h201.62c22.289 0 40.945 16.785 43.379 39.02l67.723 632.52c1.3594 12.551-2.5078 24.602-10.898 33.945z'/> <path d='m614.68 511.26-14.75-90.094-14.758 90.145c-26.387 15.387-15.266 55.52 14.758 55.52 16.449 0 29.824-13.375 29.824-29.816-0.003906-11.051-6.1172-20.605-15.074-25.754zm-18.621 25.754c0-2.1367 1.7266-3.875 3.8672-3.875 2.2695 0 4.0469 1.7031 4.0469 3.875 0 4.082-7.9141 4.2695-7.9141 0z'/> <path d='m856.92 615.02c-57.656 0-102.83 72.223-102.83 164.41 0 77.344 47.625 108.28-11.91 221.65-22.727 47.578 3.418 103.62 55.699 117.98 60.496 16.625 106.5-40.797 104.84-104.09-1.8906-71.746 34.43-132.02 34.809-132.62l1.5938-3.4219c53.781-159.77-16.297-263.93-82.199-263.93zm12.105 400.86c0.49219 18.102-3.4883 34.215-11.48 46.609-38.074 58.988-108.91 3.3633-85.293-46.223 2.0547-3.8828 50.402-95.859 28.145-162.53-3.5195-13.199-12.617-52.277-12.617-74.305 0-69.641 32.309-130.73 69.137-130.73 37.488 0 69.156 59.867 69.156 130.73 0 84.008-59.859 129.6-57.047 236.45z'/> <path d='m432.2 862.39c41.41-155.89-28.34-247.36-89.109-247.36-57.656 0-102.83 72.223-102.83 164.41 0 30.672 11.891 72.699 22.238 102.93 54.418 90.285 17.672 145.7 51.668 198.39 61.352 94.98 185.64 8.1211 143.34-80.332-12.203-22.898-40.578-92.145-25.312-138.05zm-38.969 224.2c-37.75 10.355-63.293-30.965-62.246-70.711 2.8203-107.17-57.031-152.05-57.031-236.44 0-70.859 31.664-130.73 69.137-130.73 36.832 0 69.137 61.086 69.137 130.73 0 70.742-49.953 114.53 15.215 236.18 14.152 29.609-3.4336 62.512-34.211 70.973z'/> <path d='m966.79 313.97c40.777 0 73.957-33.172 73.957-73.949v-154.46c0-37.148-30.219-67.375-67.379-67.375h-814.1v181.58h623.25v114.21zm0-33.688h-150.58v-80.523h150.58c53.262 0 53.277 80.523 0 80.523zm-773.83-114.21v-114.2h84.371v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003907-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h50.684c18.57 0 33.688 15.109 33.688 33.688v92.465c-36.293-23.648-75.469-5.3594-224.54-11.949z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m1070.8 462.25c-4.3086-39.383-37.359-69.082-76.871-69.082h-235.95c-44.473-36.215-100.25-56.258-158.06-56.258-57.676 0-113.4 20.039-157.9 56.258h-218.92c-38.543 0-71.492 28.797-76.656 66.992l-84.73 632.67c-2.9766 22.066 3.75 44.363 18.441 61.176 14.707 16.828 35.926 26.477 58.23 26.477 955.94-9.2461 938.71 21.223 980.79-25.629 14.656-16.309 21.699-38.203 19.344-60.051zm-260.65 102.43c-3.2578 3.832-7.9766 6.0273-12.98 6.0273-387.32-2.1055-416.29 10.777-411.25-19.625 6.7812-40.691 26.613-81.988 59.02-115.23l21.336 21.332 23.82-23.82-19.695-19.691c32.766-24.445 71.812-39.148 112.67-42.324v23.504h33.688v-23.508c40.914 3.168 79.992 17.844 112.73 42.25l-19.777 19.773 23.82 23.82 21.43-21.422c40.707 41.766 68.199 113.51 55.184 128.92zm283.97 567.66c-24.605 27.387-0.20703 9.2734-955.73 14.449-12.586 0-24.559-5.4531-32.867-14.961-8.2891-9.4844-12.09-22.059-10.414-34.512l84.734-632.67c2.9102-21.551 21.5-37.793 43.262-37.793h184.57c-31.57 37.844-75.145 122.46-43.676 159.61 9.6562 11.398 23.754 17.938 38.672 17.938h394.5c14.922 0 29.016-6.5391 38.672-17.93 31.254-36.867-12.172-121.94-43.543-159.61h201.62c22.289 0 40.945 16.785 43.379 39.02l67.723 632.52c1.3594 12.551-2.5078 24.602-10.898 33.945z'/> <path d='m614.68 511.26-14.75-90.094-14.758 90.145c-26.387 15.387-15.266 55.52 14.758 55.52 16.449 0 29.824-13.375 29.824-29.816-0.003906-11.051-6.1172-20.605-15.074-25.754zm-18.621 25.754c0-2.1367 1.7266-3.875 3.8672-3.875 2.2695 0 4.0469 1.7031 4.0469 3.875 0 4.082-7.9141 4.2695-7.9141 0z'/> <path d='m856.92 615.02c-57.656 0-102.83 72.223-102.83 164.41 0 77.344 47.625 108.28-11.91 221.65-22.727 47.578 3.418 103.62 55.699 117.98 60.496 16.625 106.5-40.797 104.84-104.09-1.8906-71.746 34.43-132.02 34.809-132.62l1.5938-3.4219c53.781-159.77-16.297-263.93-82.199-263.93zm12.105 400.86c0.49219 18.102-3.4883 34.215-11.48 46.609-38.074 58.988-108.91 3.3633-85.293-46.223 2.0547-3.8828 50.402-95.859 28.145-162.53-3.5195-13.199-12.617-52.277-12.617-74.305 0-69.641 32.309-130.73 69.137-130.73 37.488 0 69.156 59.867 69.156 130.73 0 84.008-59.859 129.6-57.047 236.45z'/> <path d='m432.2 862.39c41.41-155.89-28.34-247.36-89.109-247.36-57.656 0-102.83 72.223-102.83 164.41 0 30.672 11.891 72.699 22.238 102.93 54.418 90.285 17.672 145.7 51.668 198.39 61.352 94.98 185.64 8.1211 143.34-80.332-12.203-22.898-40.578-92.145-25.312-138.05zm-38.969 224.2c-37.75 10.355-63.293-30.965-62.246-70.711 2.8203-107.17-57.031-152.05-57.031-236.44 0-70.859 31.664-130.73 69.137-130.73 36.832 0 69.137 61.086 69.137 130.73 0 70.742-49.953 114.53 15.215 236.18 14.152 29.609-3.4336 62.512-34.211 70.973z'/> <path d='m966.79 313.97c40.777 0 73.957-33.172 73.957-73.949v-154.46c0-37.148-30.219-67.375-67.379-67.375h-814.1v181.58h623.25v114.21zm0-33.688h-150.58v-80.523h150.58c53.262 0 53.277 80.523 0 80.523zm-773.83-114.21v-114.2h84.371v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003907-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h50.684c18.57 0 33.688 15.109 33.688 33.688v92.465c-36.293-23.648-75.469-5.3594-224.54-11.949z'/> </g></svg>");
}
.icon-bottle {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m848.53 927.47c4.6875 4.6875 4.6875 12.234 0 16.922-2.3906 2.3906-5.3906 3.6094-8.5312 3.6094s-6.1406-1.2188-8.5312-3.4688l-96-96c-2.1562-2.2969-3.4688-5.2969-3.4688-8.5312v-120c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v115.08zm147.47-87.469c0 138.94-113.06 252-252 252-34.312 0-67.547-6.8438-98.859-20.297-11.297 12.844-27.281 20.297-44.672 20.297h-336.94c-32.906 0-59.531-26.766-59.531-59.531v-151.55c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-230.16c0-7.5469-3.1406-15-8.5312-20.391-9.8438-9.9844-15.469-23.531-15.469-37.453v-56.391c0-63.375 31.453-122.06 84.141-157.08l45-30c9.375-6.2344 14.859-16.688 14.859-27.938v-11.672h-12c-6.6094 0-12-5.3906-12-12v-84.375c0-26.25 21.375-47.625 47.625-47.625h120.71c26.297 0 47.672 21.375 47.672 47.625v84.375c0 6.6094-5.3906 12-12 12h-12v11.625c0 11.297 5.625 21.703 15 27.938l45 30c52.547 35.062 84 93.75 84 157.13v56.391c0 13.922-5.625 27.469-15.469 37.453-5.3906 5.3906-8.5312 12.844-8.5312 20.391v19.547c33.609-15.938 70.547-24.469 108-24.469 138.94 0 252 113.06 252 252zm-648-612h168v-72.375c0-13.078-10.547-23.625-23.625-23.625h-120.74c-13.078 0-23.625 10.547-23.625 23.625zm274.22 832.69c-0.375-0.23438-0.70312-0.46875-1.0781-0.70312-1.9219-1.0781-3.8438-2.2969-5.7656-3.4688-3.1406-1.7812-6.1406-3.6094-9.1406-5.625-2.0625-1.3125-3.9375-2.7656-5.8594-4.0781-2.7656-1.9219-5.5312-3.8438-8.2969-6-1.9219-1.5469-3.8438-3.1406-5.7656-4.6875-2.5312-2.0625-5.1562-4.0781-7.5469-6.2344-1.9219-1.6875-3.7031-3.375-5.625-5.1562-2.3906-2.1562-4.6875-4.4531-6.9375-6.6094-1.7812-1.7812-3.6094-3.7031-5.2969-5.5312-2.1562-2.2969-4.3125-4.6875-6.375-6.9375-1.6875-1.9219-3.375-3.9375-5.0625-6-1.9219-2.3906-3.9375-4.9219-5.7656-7.3125-1.5469-2.0625-3.1406-4.2188-4.6875-6.375-1.7812-2.5312-3.6094-5.1562-5.2969-7.6875-1.4531-2.1562-2.8594-4.3125-4.2188-6.6094-1.6875-2.625-3.2344-5.3906-4.6875-8.0625-1.3125-2.2969-2.5312-4.5469-3.7031-6.8438-1.4531-2.7656-2.8594-5.625-4.2188-8.3906-1.0781-2.3906-2.2969-4.6875-3.2344-7.0781-1.3125-2.8594-2.3906-5.7656-3.6094-8.7656-0.9375-2.3906-1.9219-4.7812-2.7656-7.2188-1.0781-3-2.0625-6.1406-3-9.1406-0.70312-2.3906-1.5469-4.7812-2.2969-7.2188-0.9375-3.1406-1.6875-6.375-2.5312-9.6094-0.60938-2.3906-1.2188-4.7812-1.6875-7.2188-0.70312-3.375-1.3125-6.8438-1.9219-10.312-0.375-2.2969-0.84375-4.5469-1.2188-6.8438-0.60938-3.8438-0.84375-7.6875-1.3125-11.625-0.23438-1.9219-0.46875-3.8438-0.60938-5.7656-0.46875-5.8125-0.70312-11.719-0.70312-17.578 0-5.5312 0.23438-11.062 0.60938-16.547 0.14062-1.7812 0.375-3.6094 0.46875-5.5312 0.375-3.6094 0.60938-7.2188 1.0781-10.781 0.23438-2.1562 0.70312-4.2188 1.0781-6.375 0.46875-3.2344 0.9375-6.4688 1.6875-9.7031 0.46875-2.2969 1.0781-4.4531 1.5469-6.7031 0.70312-3.1406 1.3125-6.1406 2.1562-9.1406 0.60938-2.2969 1.3125-4.5469 2.0625-6.8438 0.84375-2.8594 1.6875-5.8594 2.625-8.7656 0.70312-2.2969 1.6875-4.5469 2.5312-6.7031 1.0781-2.7656 2.0625-5.625 3.1406-8.3906 0.9375-2.2969 1.9219-4.4531 3-6.7031 1.2188-2.625 2.3906-5.3906 3.7031-8.0625 1.0781-2.1562 2.2969-4.3125 3.375-6.4688 1.3125-2.625 2.625-5.1562 4.0781-7.6875 1.2188-2.1562 2.5312-4.3125 3.8438-6.375 1.5469-2.5312 3-4.9219 4.5469-7.3125 1.3125-2.0625 2.8594-4.0781 4.3125-6.2344 1.6875-2.3906 3.2344-4.6875 5.0625-6.9375 1.5469-2.0625 3.1406-3.9375 4.6875-5.8594 1.7812-2.2969 3.6094-4.4531 5.3906-6.6094 1.6875-1.9219 3.375-3.8438 5.0625-5.625 1.9219-2.1562 3.8438-4.2188 5.8594-6.2344 1.7812-1.7812 3.6094-3.6094 5.5312-5.3906 2.0625-1.9219 4.0781-3.9375 6.2344-5.8594 1.9219-1.6875 3.8438-3.375 5.8594-5.0625 2.1562-1.7812 4.3125-3.7031 6.6094-5.3906 2.0625-1.5469 4.2188-3.1406 6.2344-4.6875 2.2969-1.6875 4.5469-3.375 6.9375-5.0625 2.1562-1.4531 4.4531-2.8594 6.6094-4.3125 1.4531-0.9375 2.7656-1.9219 4.2188-2.7656v-32.531c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-56.391c0-55.312-27.469-106.55-73.312-137.16l-45-30c-16.219-11.109-25.828-29.109-25.828-48.328v-11.625h-120v11.625c0 19.219-9.6094 37.219-25.547 47.859l-45 30c-45.984 30.656-73.453 81.891-73.453 137.21v56.391c0 7.5469 3.1406 15 8.5312 20.391 2.625 2.625 4.7812 5.3906 6.8438 8.5312h212.63c6.6094 0 12 5.3906 12 12s-5.3906 12-12 12h-204.47c0.14063 1.6875 0.46875 3.2344 0.46875 4.9219v230.16c0 1.6875-0.375 3.2344-0.46875 4.9219h132.47c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-140.63c-1.9219 3-4.2188 5.8594-6.8438 8.5312-5.3906 5.3906-8.5312 12.844-8.5312 20.391v151.55c0 19.547 15.938 35.531 35.531 35.531h336.94c8.0625 0 15.609-2.625 21.75-7.3125zm349.18-208.69h-11.391c-6.6094 0-12-5.3906-12-12s5.3906-12 12-12h11.391c-6.0938-116.16-99.234-209.29-215.39-215.39v11.391c0 6.6094-5.3906 12-12 12s-12-5.3906-12-12v-11.625c-35.859 1.9219-70.922 12.234-102 30.234-4.4531 2.5312-8.625 5.1562-12.844 8.0625-49.453 33.141-83.625 84.234-96 141.71-1.2188 5.7656-2.3906 11.625-3.1406 17.531-0.84375 6-1.3125 12-1.5469 18.141l11.531-0.046876c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-11.531c4.4531 82.922 54.375 158.29 129.94 194.16 27.141 12.844 55.781 20.062 85.547 21.609l0.046875-11.766c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v11.391c116.16-6.0938 209.29-99.234 215.39-215.39zm-239.39-493.55c0-64.219 62.297-137.06 99.469-174.84 2.2969-2.2969 5.2969-3.6094 8.5312-3.6094s6.375 1.3125 8.5312 3.6094c45.328 46.078 99.469 113.86 99.469 174.84 0 60.328-48.469 109.55-108 109.55s-108-49.219-108-109.55zm24 0c0 47.156 37.688 85.547 84 85.547s84-38.391 84-85.547c0-51.234-49.219-112.31-84-149.16-53.531 56.625-84 110.48-84 149.16z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m848.53 927.47c4.6875 4.6875 4.6875 12.234 0 16.922-2.3906 2.3906-5.3906 3.6094-8.5312 3.6094s-6.1406-1.2188-8.5312-3.4688l-96-96c-2.1562-2.2969-3.4688-5.2969-3.4688-8.5312v-120c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v115.08zm147.47-87.469c0 138.94-113.06 252-252 252-34.312 0-67.547-6.8438-98.859-20.297-11.297 12.844-27.281 20.297-44.672 20.297h-336.94c-32.906 0-59.531-26.766-59.531-59.531v-151.55c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-230.16c0-7.5469-3.1406-15-8.5312-20.391-9.8438-9.9844-15.469-23.531-15.469-37.453v-56.391c0-63.375 31.453-122.06 84.141-157.08l45-30c9.375-6.2344 14.859-16.688 14.859-27.938v-11.672h-12c-6.6094 0-12-5.3906-12-12v-84.375c0-26.25 21.375-47.625 47.625-47.625h120.71c26.297 0 47.672 21.375 47.672 47.625v84.375c0 6.6094-5.3906 12-12 12h-12v11.625c0 11.297 5.625 21.703 15 27.938l45 30c52.547 35.062 84 93.75 84 157.13v56.391c0 13.922-5.625 27.469-15.469 37.453-5.3906 5.3906-8.5312 12.844-8.5312 20.391v19.547c33.609-15.938 70.547-24.469 108-24.469 138.94 0 252 113.06 252 252zm-648-612h168v-72.375c0-13.078-10.547-23.625-23.625-23.625h-120.74c-13.078 0-23.625 10.547-23.625 23.625zm274.22 832.69c-0.375-0.23438-0.70312-0.46875-1.0781-0.70312-1.9219-1.0781-3.8438-2.2969-5.7656-3.4688-3.1406-1.7812-6.1406-3.6094-9.1406-5.625-2.0625-1.3125-3.9375-2.7656-5.8594-4.0781-2.7656-1.9219-5.5312-3.8438-8.2969-6-1.9219-1.5469-3.8438-3.1406-5.7656-4.6875-2.5312-2.0625-5.1562-4.0781-7.5469-6.2344-1.9219-1.6875-3.7031-3.375-5.625-5.1562-2.3906-2.1562-4.6875-4.4531-6.9375-6.6094-1.7812-1.7812-3.6094-3.7031-5.2969-5.5312-2.1562-2.2969-4.3125-4.6875-6.375-6.9375-1.6875-1.9219-3.375-3.9375-5.0625-6-1.9219-2.3906-3.9375-4.9219-5.7656-7.3125-1.5469-2.0625-3.1406-4.2188-4.6875-6.375-1.7812-2.5312-3.6094-5.1562-5.2969-7.6875-1.4531-2.1562-2.8594-4.3125-4.2188-6.6094-1.6875-2.625-3.2344-5.3906-4.6875-8.0625-1.3125-2.2969-2.5312-4.5469-3.7031-6.8438-1.4531-2.7656-2.8594-5.625-4.2188-8.3906-1.0781-2.3906-2.2969-4.6875-3.2344-7.0781-1.3125-2.8594-2.3906-5.7656-3.6094-8.7656-0.9375-2.3906-1.9219-4.7812-2.7656-7.2188-1.0781-3-2.0625-6.1406-3-9.1406-0.70312-2.3906-1.5469-4.7812-2.2969-7.2188-0.9375-3.1406-1.6875-6.375-2.5312-9.6094-0.60938-2.3906-1.2188-4.7812-1.6875-7.2188-0.70312-3.375-1.3125-6.8438-1.9219-10.312-0.375-2.2969-0.84375-4.5469-1.2188-6.8438-0.60938-3.8438-0.84375-7.6875-1.3125-11.625-0.23438-1.9219-0.46875-3.8438-0.60938-5.7656-0.46875-5.8125-0.70312-11.719-0.70312-17.578 0-5.5312 0.23438-11.062 0.60938-16.547 0.14062-1.7812 0.375-3.6094 0.46875-5.5312 0.375-3.6094 0.60938-7.2188 1.0781-10.781 0.23438-2.1562 0.70312-4.2188 1.0781-6.375 0.46875-3.2344 0.9375-6.4688 1.6875-9.7031 0.46875-2.2969 1.0781-4.4531 1.5469-6.7031 0.70312-3.1406 1.3125-6.1406 2.1562-9.1406 0.60938-2.2969 1.3125-4.5469 2.0625-6.8438 0.84375-2.8594 1.6875-5.8594 2.625-8.7656 0.70312-2.2969 1.6875-4.5469 2.5312-6.7031 1.0781-2.7656 2.0625-5.625 3.1406-8.3906 0.9375-2.2969 1.9219-4.4531 3-6.7031 1.2188-2.625 2.3906-5.3906 3.7031-8.0625 1.0781-2.1562 2.2969-4.3125 3.375-6.4688 1.3125-2.625 2.625-5.1562 4.0781-7.6875 1.2188-2.1562 2.5312-4.3125 3.8438-6.375 1.5469-2.5312 3-4.9219 4.5469-7.3125 1.3125-2.0625 2.8594-4.0781 4.3125-6.2344 1.6875-2.3906 3.2344-4.6875 5.0625-6.9375 1.5469-2.0625 3.1406-3.9375 4.6875-5.8594 1.7812-2.2969 3.6094-4.4531 5.3906-6.6094 1.6875-1.9219 3.375-3.8438 5.0625-5.625 1.9219-2.1562 3.8438-4.2188 5.8594-6.2344 1.7812-1.7812 3.6094-3.6094 5.5312-5.3906 2.0625-1.9219 4.0781-3.9375 6.2344-5.8594 1.9219-1.6875 3.8438-3.375 5.8594-5.0625 2.1562-1.7812 4.3125-3.7031 6.6094-5.3906 2.0625-1.5469 4.2188-3.1406 6.2344-4.6875 2.2969-1.6875 4.5469-3.375 6.9375-5.0625 2.1562-1.4531 4.4531-2.8594 6.6094-4.3125 1.4531-0.9375 2.7656-1.9219 4.2188-2.7656v-32.531c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-56.391c0-55.312-27.469-106.55-73.312-137.16l-45-30c-16.219-11.109-25.828-29.109-25.828-48.328v-11.625h-120v11.625c0 19.219-9.6094 37.219-25.547 47.859l-45 30c-45.984 30.656-73.453 81.891-73.453 137.21v56.391c0 7.5469 3.1406 15 8.5312 20.391 2.625 2.625 4.7812 5.3906 6.8438 8.5312h212.63c6.6094 0 12 5.3906 12 12s-5.3906 12-12 12h-204.47c0.14063 1.6875 0.46875 3.2344 0.46875 4.9219v230.16c0 1.6875-0.375 3.2344-0.46875 4.9219h132.47c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-140.63c-1.9219 3-4.2188 5.8594-6.8438 8.5312-5.3906 5.3906-8.5312 12.844-8.5312 20.391v151.55c0 19.547 15.938 35.531 35.531 35.531h336.94c8.0625 0 15.609-2.625 21.75-7.3125zm349.18-208.69h-11.391c-6.6094 0-12-5.3906-12-12s5.3906-12 12-12h11.391c-6.0938-116.16-99.234-209.29-215.39-215.39v11.391c0 6.6094-5.3906 12-12 12s-12-5.3906-12-12v-11.625c-35.859 1.9219-70.922 12.234-102 30.234-4.4531 2.5312-8.625 5.1562-12.844 8.0625-49.453 33.141-83.625 84.234-96 141.71-1.2188 5.7656-2.3906 11.625-3.1406 17.531-0.84375 6-1.3125 12-1.5469 18.141l11.531-0.046876c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-11.531c4.4531 82.922 54.375 158.29 129.94 194.16 27.141 12.844 55.781 20.062 85.547 21.609l0.046875-11.766c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v11.391c116.16-6.0938 209.29-99.234 215.39-215.39zm-239.39-493.55c0-64.219 62.297-137.06 99.469-174.84 2.2969-2.2969 5.2969-3.6094 8.5312-3.6094s6.375 1.3125 8.5312 3.6094c45.328 46.078 99.469 113.86 99.469 174.84 0 60.328-48.469 109.55-108 109.55s-108-49.219-108-109.55zm24 0c0 47.156 37.688 85.547 84 85.547s84-38.391 84-85.547c0-51.234-49.219-112.31-84-149.16-53.531 56.625-84 110.48-84 149.16z'/> </g></svg>");
}

/* ── data-icon pseudo-element for contentCards ────────────────── */
.contentCard[data-icon]::before {
  content: '';
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -0.3em;
  margin-right: 0.4em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.contentCard[data-icon="principles"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-9.6,-9.6) scale(0.036)' fill='%23000' stroke='%23000' stroke-width='16' stroke-linejoin='round'><path d='m358.17 358.17c-24.961 0-45.344 20.645-45.344 45.344v317.4c0 7.9141 7.1992 15.113 15.113 15.113h544.11c7.9141 0 15.113-7.1992 15.113-15.113v-317.4c0-24.699-20.383-45.344-45.344-45.344h-483.66zm0 30.23h483.66c10.504 0 15.113 4.7969 15.113 15.113v302.29h-513.89v-302.29c0-10.316 4.6133-15.113 15.113-15.113zm241.83 30.23c-29.035 0-52.898 23.863-52.898 52.898s23.863 52.898 52.898 52.898 52.898-23.863 52.898-52.898-23.863-52.898-52.898-52.898zm0 105.8c-27.438 0-52.473 6.0391-71.793 17.238-19.32 11.203-34.008 29.043-34.008 50.773v60.457c0.074219 6.4453 4.6797 12.594 10.863 14.406 27.766 7.9023 50.695 7.6016 79.586 8.2656h30.699c28.891-0.66406 51.824-0.36328 79.586-8.2656 6.1836-1.8125 10.82-7.9609 10.863-14.406v-60.457c0-21.73-14.684-39.574-34.008-50.773-19.32-11.203-44.355-17.238-71.793-17.238zm0-75.57c12.699 0 22.672 9.9727 22.672 22.672 0 12.699-9.9727 22.672-22.672 22.672s-22.672-9.9727-22.672-22.672c0-12.699 9.9727-22.672 22.672-22.672zm0 105.8c22.801 0 43.219 5.4219 56.68 13.227 13.461 7.8047 18.895 16.516 18.895 24.562v47.703c-18.621 3.832-35.895 4.6328-60.457 5.1953h-30.23c-24.562-0.55859-41.836-1.3633-60.457-5.1953v-47.703c0-8.0469 5.4336-16.758 18.895-24.562 13.461-7.8047 33.879-13.227 56.68-13.227zm-318.82 204.04c-7.4297 0.70312-13.73 7.6523-13.699 15.113v22.672c0 15.367 9.4688 28.133 21.02 35.188 11.551 7.0547 25.352 10.156 39.438 10.156h544.11c14.09 0 27.887-3.1016 39.438-10.156 11.547-7.0547 21.02-19.82 21.02-35.188v-22.672c0-7.9141-7.1992-15.113-15.113-15.113h-636.22zm16.531 30.23h604.57c1.7148 16.637-17.625 22.43-30.23 22.672h-544.11c-17.355-0.22656-30.254-7.3203-30.23-22.672z'/></g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-9.6,-9.6) scale(0.036)' fill='%23000' stroke='%23000' stroke-width='16' stroke-linejoin='round'><path d='m358.17 358.17c-24.961 0-45.344 20.645-45.344 45.344v317.4c0 7.9141 7.1992 15.113 15.113 15.113h544.11c7.9141 0 15.113-7.1992 15.113-15.113v-317.4c0-24.699-20.383-45.344-45.344-45.344h-483.66zm0 30.23h483.66c10.504 0 15.113 4.7969 15.113 15.113v302.29h-513.89v-302.29c0-10.316 4.6133-15.113 15.113-15.113zm241.83 30.23c-29.035 0-52.898 23.863-52.898 52.898s23.863 52.898 52.898 52.898 52.898-23.863 52.898-52.898-23.863-52.898-52.898-52.898zm0 105.8c-27.438 0-52.473 6.0391-71.793 17.238-19.32 11.203-34.008 29.043-34.008 50.773v60.457c0.074219 6.4453 4.6797 12.594 10.863 14.406 27.766 7.9023 50.695 7.6016 79.586 8.2656h30.699c28.891-0.66406 51.824-0.36328 79.586-8.2656 6.1836-1.8125 10.82-7.9609 10.863-14.406v-60.457c0-21.73-14.684-39.574-34.008-50.773-19.32-11.203-44.355-17.238-71.793-17.238zm0-75.57c12.699 0 22.672 9.9727 22.672 22.672 0 12.699-9.9727 22.672-22.672 22.672s-22.672-9.9727-22.672-22.672c0-12.699 9.9727-22.672 22.672-22.672zm0 105.8c22.801 0 43.219 5.4219 56.68 13.227 13.461 7.8047 18.895 16.516 18.895 24.562v47.703c-18.621 3.832-35.895 4.6328-60.457 5.1953h-30.23c-24.562-0.55859-41.836-1.3633-60.457-5.1953v-47.703c0-8.0469 5.4336-16.758 18.895-24.562 13.461-7.8047 33.879-13.227 56.68-13.227zm-318.82 204.04c-7.4297 0.70312-13.73 7.6523-13.699 15.113v22.672c0 15.367 9.4688 28.133 21.02 35.188 11.551 7.0547 25.352 10.156 39.438 10.156h544.11c14.09 0 27.887-3.1016 39.438-10.156 11.547-7.0547 21.02-19.82 21.02-35.188v-22.672c0-7.9141-7.1992-15.113-15.113-15.113h-636.22zm16.531 30.23h604.57c1.7148 16.637-17.625 22.43-30.23 22.672h-544.11c-17.355-0.22656-30.254-7.3203-30.23-22.672z'/></g></svg>");
}
.contentCard[data-icon="book"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(0,2.1006) scale(0.195312)' fill='%23000'> <path d='M12.64,77.27l0.31-54.92h-6.2v69.88c8.52-2.2,17.07-3.6,25.68-3.66c7.95-0.05,15.9,1.06,23.87,3.76 c-4.95-4.01-10.47-6.96-16.36-8.88c-7.42-2.42-15.44-3.22-23.66-2.52c-1.86,0.15-3.48-1.23-3.64-3.08 C12.62,77.65,12.62,77.46,12.64,77.27L12.64,77.27z M103.62,19.48c-0.02-0.16-0.04-0.33-0.04-0.51c0-0.17,0.01-0.34,0.04-0.51V7.34 c-7.8-0.74-15.84,0.12-22.86,2.78c-6.56,2.49-12.22,6.58-15.9,12.44V85.9c5.72-3.82,11.57-6.96,17.58-9.1 c6.85-2.44,13.89-3.6,21.18-3.02V19.48L103.62,19.48z M110.37,15.6h9.14c1.86,0,3.37,1.51,3.37,3.37v77.66 c0,1.86-1.51,3.37-3.37,3.37c-0.38,0-0.75-0.06-1.09-0.18c-9.4-2.69-18.74-4.48-27.99-4.54c-9.02-0.06-18.03,1.53-27.08,5.52 c-0.56,0.37-1.23,0.57-1.92,0.56c-0.68,0.01-1.35-0.19-1.92-0.56c-9.04-4-18.06-5.58-27.08-5.52c-9.25,0.06-18.58,1.85-27.99,4.54 c-0.34,0.12-0.71,0.18-1.09,0.18C1.51,100.01,0,98.5,0,96.64V18.97c0-1.86,1.51-3.37,3.37-3.37h9.61l0.06-11.26 c0.01-1.62,1.15-2.96,2.68-3.28l0,0c8.87-1.85,19.65-1.39,29.1,2.23c6.53,2.5,12.46,6.49,16.79,12.25 c4.37-5.37,10.21-9.23,16.78-11.72c8.98-3.41,19.34-4.23,29.09-2.8c1.68,0.24,2.88,1.69,2.88,3.33h0V15.6L110.37,15.6z M68.13,91.82c7.45-2.34,14.89-3.3,22.33-3.26c8.61,0.05,17.16,1.46,25.68,3.66V22.35h-5.77v55.22c0,1.86-1.51,3.37-3.37,3.37 c-0.27,0-0.53-0.03-0.78-0.09c-7.38-1.16-14.53-0.2-21.51,2.29C79.09,85.15,73.57,88.15,68.13,91.82L68.13,91.82z M58.12,85.25 V22.46c-3.53-6.23-9.24-10.4-15.69-12.87c-7.31-2.8-15.52-3.43-22.68-2.41l-0.38,66.81c7.81-0.28,15.45,0.71,22.64,3.06 C47.73,78.91,53.15,81.64,58.12,85.25L58.12,85.25z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(0,2.1006) scale(0.195312)' fill='%23000'> <path d='M12.64,77.27l0.31-54.92h-6.2v69.88c8.52-2.2,17.07-3.6,25.68-3.66c7.95-0.05,15.9,1.06,23.87,3.76 c-4.95-4.01-10.47-6.96-16.36-8.88c-7.42-2.42-15.44-3.22-23.66-2.52c-1.86,0.15-3.48-1.23-3.64-3.08 C12.62,77.65,12.62,77.46,12.64,77.27L12.64,77.27z M103.62,19.48c-0.02-0.16-0.04-0.33-0.04-0.51c0-0.17,0.01-0.34,0.04-0.51V7.34 c-7.8-0.74-15.84,0.12-22.86,2.78c-6.56,2.49-12.22,6.58-15.9,12.44V85.9c5.72-3.82,11.57-6.96,17.58-9.1 c6.85-2.44,13.89-3.6,21.18-3.02V19.48L103.62,19.48z M110.37,15.6h9.14c1.86,0,3.37,1.51,3.37,3.37v77.66 c0,1.86-1.51,3.37-3.37,3.37c-0.38,0-0.75-0.06-1.09-0.18c-9.4-2.69-18.74-4.48-27.99-4.54c-9.02-0.06-18.03,1.53-27.08,5.52 c-0.56,0.37-1.23,0.57-1.92,0.56c-0.68,0.01-1.35-0.19-1.92-0.56c-9.04-4-18.06-5.58-27.08-5.52c-9.25,0.06-18.58,1.85-27.99,4.54 c-0.34,0.12-0.71,0.18-1.09,0.18C1.51,100.01,0,98.5,0,96.64V18.97c0-1.86,1.51-3.37,3.37-3.37h9.61l0.06-11.26 c0.01-1.62,1.15-2.96,2.68-3.28l0,0c8.87-1.85,19.65-1.39,29.1,2.23c6.53,2.5,12.46,6.49,16.79,12.25 c4.37-5.37,10.21-9.23,16.78-11.72c8.98-3.41,19.34-4.23,29.09-2.8c1.68,0.24,2.88,1.69,2.88,3.33h0V15.6L110.37,15.6z M68.13,91.82c7.45-2.34,14.89-3.3,22.33-3.26c8.61,0.05,17.16,1.46,25.68,3.66V22.35h-5.77v55.22c0,1.86-1.51,3.37-3.37,3.37 c-0.27,0-0.53-0.03-0.78-0.09c-7.38-1.16-14.53-0.2-21.51,2.29C79.09,85.15,73.57,88.15,68.13,91.82L68.13,91.82z M58.12,85.25 V22.46c-3.53-6.23-9.24-10.4-15.69-12.87c-7.31-2.8-15.52-3.43-22.68-2.41l-0.38,66.81c7.81-0.28,15.45,0.71,22.64,3.06 C47.73,78.91,53.15,81.64,58.12,85.25L58.12,85.25z'/> </g></svg>");
}
.contentCard[data-icon="meals"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(1.5)' fill='%23000'> <path d='M13 .5c0-.276-.226-.506-.498-.465-1.703.257-2.94 2.012-3 8.462a.5.5 0 0 0 .498.5c.56.01 1 .13 1 1.003v5.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5zM4.25 0a.25.25 0 0 1 .25.25v5.122a.128.128 0 0 0 .256.006l.233-5.14A.25.25 0 0 1 5.24 0h.522a.25.25 0 0 1 .25.238l.233 5.14a.128.128 0 0 0 .256-.006V.25A.25.25 0 0 1 6.75 0h.29a.5.5 0 0 1 .498.458l.423 5.07a1.69 1.69 0 0 1-1.059 1.711l-.053.022a.92.92 0 0 0-.58.884L6.47 15a.971.971 0 1 1-1.942 0l.202-6.855a.92.92 0 0 0-.58-.884l-.053-.022a1.69 1.69 0 0 1-1.059-1.712L3.462.458A.5.5 0 0 1 3.96 0z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(1.5)' fill='%23000'> <path d='M13 .5c0-.276-.226-.506-.498-.465-1.703.257-2.94 2.012-3 8.462a.5.5 0 0 0 .498.5c.56.01 1 .13 1 1.003v5.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5zM4.25 0a.25.25 0 0 1 .25.25v5.122a.128.128 0 0 0 .256.006l.233-5.14A.25.25 0 0 1 5.24 0h.522a.25.25 0 0 1 .25.238l.233 5.14a.128.128 0 0 0 .256-.006V.25A.25.25 0 0 1 6.75 0h.29a.5.5 0 0 1 .498.458l.423 5.07a1.69 1.69 0 0 1-1.059 1.711l-.053.022a.92.92 0 0 0-.58.884L6.47 15a.971.971 0 1 1-1.942 0l.202-6.855a.92.92 0 0 0-.58-.884l-.053-.022a1.69 1.69 0 0 1-1.059-1.712L3.462.458A.5.5 0 0 1 3.96 0z'/> </g></svg>");
}
.contentCard[data-icon="activity"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000' fill-rule='evenodd'> <path d='m638.56 60c-59.461 0-107.82 48.359-107.82 107.82 0 59.828 48.379 107.82 107.82 107.82 59.828 0 108.32-47.992 108.32-107.82 0-59.461-48.492-107.82-108.32-107.82zm-62.445 247.45c-92.047 0-194.7 64.562-240.51 138.23-31.918 53.051-34.859 113.13-34.609 195.75-0.28906 23.617 18.828 42.887 42.441 42.812 23.621-0.074219 42.609-19.457 42.199-43.07-0.25-79.875 4.3984-121.76 22.496-151.85 13.836-22.992 39.484-45.27 87.656-73.492-15.035 69.652-28.879 139.47-42.953 208.88 66.996 159.16 134 318.31 201 477.46 12.637 31.281 48.43 46.172 79.52 33.082 31.098-13.09 45.465-49.094 31.926-79.996l-161.68-384.07 20.59-85.953 15.078-62.914c43.219 78.484 143.56 99.723 212.24 116.03 22.906 5.7422 46.074-8.3711 51.488-31.355 5.4102-22.984-9.0312-45.957-32.09-51.035-77.758-18.312-117.43-32.539-142.49-57.133-13.105-12.859-25.855-30.77-35.766-58.34-9.9102-27.57-14.543-58.031-23.367-85.266l-0.085938-0.28125v0.039062c-18.461-47.637-51.75-47.371-93.078-47.527zm-136.46 380.33-40.988 203.24-93.758 156.72c-17.73 28.695-8.543 66.352 20.402 83.668 28.945 17.316 66.469 7.5977 83.371-21.594l102.02-170.54c5.418-9.0547 8.3711-19.371 8.5664-29.922l0.22266-31.926c-26.613-63.215-53.223-126.43-79.832-189.64z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000' fill-rule='evenodd'> <path d='m638.56 60c-59.461 0-107.82 48.359-107.82 107.82 0 59.828 48.379 107.82 107.82 107.82 59.828 0 108.32-47.992 108.32-107.82 0-59.461-48.492-107.82-108.32-107.82zm-62.445 247.45c-92.047 0-194.7 64.562-240.51 138.23-31.918 53.051-34.859 113.13-34.609 195.75-0.28906 23.617 18.828 42.887 42.441 42.812 23.621-0.074219 42.609-19.457 42.199-43.07-0.25-79.875 4.3984-121.76 22.496-151.85 13.836-22.992 39.484-45.27 87.656-73.492-15.035 69.652-28.879 139.47-42.953 208.88 66.996 159.16 134 318.31 201 477.46 12.637 31.281 48.43 46.172 79.52 33.082 31.098-13.09 45.465-49.094 31.926-79.996l-161.68-384.07 20.59-85.953 15.078-62.914c43.219 78.484 143.56 99.723 212.24 116.03 22.906 5.7422 46.074-8.3711 51.488-31.355 5.4102-22.984-9.0312-45.957-32.09-51.035-77.758-18.312-117.43-32.539-142.49-57.133-13.105-12.859-25.855-30.77-35.766-58.34-9.9102-27.57-14.543-58.031-23.367-85.266l-0.085938-0.28125v0.039062c-18.461-47.637-51.75-47.371-93.078-47.527zm-136.46 380.33-40.988 203.24-93.758 156.72c-17.73 28.695-8.543 66.352 20.402 83.668 28.945 17.316 66.469 7.5977 83.371-21.594l102.02-170.54c5.418-9.0547 8.3711-19.371 8.5664-29.922l0.22266-31.926c-26.613-63.215-53.223-126.43-79.832-189.64z'/> </g></svg>");
}
.contentCard[data-icon="tips"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m600 290.24c-137.23 0-248.88 111.65-248.88 248.88 0 7.4727 6.0586 13.531 13.531 13.531 7.4727 0 13.531-6.0586 13.531-13.531 0-122.31 99.508-221.82 221.82-221.82 7.4727 0 13.531-6.0586 13.531-13.531 0-7.4688-6.0547-13.531-13.531-13.531z'/> <path d='m600 192.88c-92.797 0-180.04 36.434-245.65 102.6-65.629 66.176-101.35 153.75-100.57 246.58 0.80078 96.543 42.379 189.09 114.07 253.92 48.898 44.215 76.941 106.57 76.941 171.07v34.145c0 11.988 5.3633 23.168 14.719 30.664 1.9805 1.5898 4.0977 2.9414 6.293 4.1055v56.059 0.011718 13.883c0 16.121 7.2148 31.152 19.797 41.234 6.7148 5.3828 14.484 8.9297 22.648 10.566 3.5156 23.879 24.074 42.281 48.906 42.281h85.688c27.289 0 49.488-22.199 49.488-49.484v-29.23c24.73-6.3008 41.875-28.188 41.875-53.871v-29.613-0.011719-54.832c12.844-8.1328 21-22.359 21-38.383v-9.3047c0-49.137 21.812-94.625 59.84-124.8 83.375-66.152 131.19-165.05 131.19-271.35 0-190.91-155.32-346.23-346.23-346.24zm107.14 834.29-214.27 47.762v-35.422l214.27-47.762zm-64.301 145.77h-85.688c-10.355 0-19.07-7.0664-21.637-16.625l129.75-28.922v23.125c0 12.363-10.062 22.422-22.426 22.422zm41.93-77.621-160.5 35.777c-7.6836 1.7031-15.602-0.13281-21.742-5.0508-6.1367-4.918-9.6562-12.25-9.6562-20.121v-3.2656l214.27-47.762v12.52c0 13.492-9.1992 24.965-22.371 27.902zm113.45-306.05c-44.539 35.34-70.082 88.551-70.082 146v9.3047c0 8.6992-5.9297 16.094-14.418 17.988l-226.96 50.59c-3.6484 0.79688-7.4102-0.058594-10.324-2.4023-2.9141-2.332-4.582-5.8125-4.582-9.5469l-0.003906-34.152c0-72.141-31.293-141.81-85.855-191.14-66.094-59.766-104.43-145.08-105.16-234.07-0.71094-85.562 32.219-166.28 92.73-227.3 60.492-60.996 140.91-94.59 226.44-94.59 175.99 0.003907 319.17 143.19 319.17 319.18-0.003907 97.988-44.09 189.16-120.95 250.15z'/> <path d='m600 156.63c7.4727 0 13.531-6.0586 13.531-13.531v-129.57c0-7.4727-6.0586-13.531-13.531-13.531s-13.531 6.0586-13.531 13.531v129.57c0 7.4727 6.0586 13.535 13.531 13.535z'/> <path d='m1125.6 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531 0.003906-7.4727-6.0547-13.531-13.531-13.531z'/> <path d='m203.98 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531s-6.0586-13.531-13.531-13.531z'/> <path d='m889.6 809.59c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133l91.617 91.617c2.6445 2.6445 6.1055 3.9648 9.5703 3.9648 3.4609 0 6.9258-1.3203 9.5703-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133z'/> <path d='m310.4 268.66c2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4648 0 6.9258-1.3203 9.5664-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133l-91.617-91.617c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133z'/> <path d='m310.4 809.59-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4609 0 6.9258-1.3203 9.5664-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2773-5.2812-13.848-5.2852-19.133 0z'/> <path d='m880.03 272.62c3.4609 0 6.9258-1.3203 9.5703-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2852-5.2852-13.852-5.2852-19.137 0l-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1016 3.9648 9.5664 3.9648z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m600 290.24c-137.23 0-248.88 111.65-248.88 248.88 0 7.4727 6.0586 13.531 13.531 13.531 7.4727 0 13.531-6.0586 13.531-13.531 0-122.31 99.508-221.82 221.82-221.82 7.4727 0 13.531-6.0586 13.531-13.531 0-7.4688-6.0547-13.531-13.531-13.531z'/> <path d='m600 192.88c-92.797 0-180.04 36.434-245.65 102.6-65.629 66.176-101.35 153.75-100.57 246.58 0.80078 96.543 42.379 189.09 114.07 253.92 48.898 44.215 76.941 106.57 76.941 171.07v34.145c0 11.988 5.3633 23.168 14.719 30.664 1.9805 1.5898 4.0977 2.9414 6.293 4.1055v56.059 0.011718 13.883c0 16.121 7.2148 31.152 19.797 41.234 6.7148 5.3828 14.484 8.9297 22.648 10.566 3.5156 23.879 24.074 42.281 48.906 42.281h85.688c27.289 0 49.488-22.199 49.488-49.484v-29.23c24.73-6.3008 41.875-28.188 41.875-53.871v-29.613-0.011719-54.832c12.844-8.1328 21-22.359 21-38.383v-9.3047c0-49.137 21.812-94.625 59.84-124.8 83.375-66.152 131.19-165.05 131.19-271.35 0-190.91-155.32-346.23-346.23-346.24zm107.14 834.29-214.27 47.762v-35.422l214.27-47.762zm-64.301 145.77h-85.688c-10.355 0-19.07-7.0664-21.637-16.625l129.75-28.922v23.125c0 12.363-10.062 22.422-22.426 22.422zm41.93-77.621-160.5 35.777c-7.6836 1.7031-15.602-0.13281-21.742-5.0508-6.1367-4.918-9.6562-12.25-9.6562-20.121v-3.2656l214.27-47.762v12.52c0 13.492-9.1992 24.965-22.371 27.902zm113.45-306.05c-44.539 35.34-70.082 88.551-70.082 146v9.3047c0 8.6992-5.9297 16.094-14.418 17.988l-226.96 50.59c-3.6484 0.79688-7.4102-0.058594-10.324-2.4023-2.9141-2.332-4.582-5.8125-4.582-9.5469l-0.003906-34.152c0-72.141-31.293-141.81-85.855-191.14-66.094-59.766-104.43-145.08-105.16-234.07-0.71094-85.562 32.219-166.28 92.73-227.3 60.492-60.996 140.91-94.59 226.44-94.59 175.99 0.003907 319.17 143.19 319.17 319.18-0.003907 97.988-44.09 189.16-120.95 250.15z'/> <path d='m600 156.63c7.4727 0 13.531-6.0586 13.531-13.531v-129.57c0-7.4727-6.0586-13.531-13.531-13.531s-13.531 6.0586-13.531 13.531v129.57c0 7.4727 6.0586 13.535 13.531 13.535z'/> <path d='m1125.6 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531 0.003906-7.4727-6.0547-13.531-13.531-13.531z'/> <path d='m203.98 525.59h-129.57c-7.4727 0-13.531 6.0586-13.531 13.531s6.0586 13.531 13.531 13.531h129.57c7.4727 0 13.531-6.0586 13.531-13.531s-6.0586-13.531-13.531-13.531z'/> <path d='m889.6 809.59c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133l91.617 91.617c2.6445 2.6445 6.1055 3.9648 9.5703 3.9648 3.4609 0 6.9258-1.3203 9.5703-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133z'/> <path d='m310.4 268.66c2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4648 0 6.9258-1.3203 9.5664-3.9648 5.2852-5.2812 5.2852-13.852 0-19.133l-91.617-91.617c-5.2852-5.2852-13.852-5.2852-19.137 0-5.2852 5.2812-5.2852 13.852 0 19.133z'/> <path d='m310.4 809.59-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1055 3.9648 9.5664 3.9648 3.4609 0 6.9258-1.3203 9.5664-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2773-5.2812-13.848-5.2852-19.133 0z'/> <path d='m880.03 272.62c3.4609 0 6.9258-1.3203 9.5703-3.9648l91.617-91.617c5.2852-5.2812 5.2852-13.852 0-19.133-5.2852-5.2852-13.852-5.2852-19.137 0l-91.617 91.617c-5.2852 5.2812-5.2852 13.852 0 19.133 2.6406 2.6445 6.1016 3.9648 9.5664 3.9648z'/> </g></svg>");
}
.contentCard[data-icon="faq"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <path d='M9.5 9.5a2.5 2.5 0 0 1 5 0c0 1.5-1.2 2.3-2.3 3.2-.5.4-.7.8-.7 1.3'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <path d='M9.5 9.5a2.5 2.5 0 0 1 5 0c0 1.5-1.2 2.3-2.3 3.2-.5.4-.7.8-.7 1.3'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
}
.contentCard[data-icon="home"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M3 12L12 3l9 9'/> <path d='M5 10.5V20a1 1 0 0 0 1 1h4v-5h4v5h4a1 1 0 0 0 1-1V10.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M3 12L12 3l9 9'/> <path d='M5 10.5V20a1 1 0 0 0 1 1h4v-5h4v5h4a1 1 0 0 0 1-1V10.5'/> </g></svg>");
}
.contentCard[data-icon="sitemap"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='9' y='2' width='6' height='4' rx='1'/> <rect x='3' y='16' width='6' height='4' rx='1'/> <rect x='15' y='16' width='6' height='4' rx='1'/> <line x1='12' y1='6' x2='12' y2='11'/> <path d='M6 11h12v5'/> <line x1='6' y1='11' x2='6' y2='16'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='9' y='2' width='6' height='4' rx='1'/> <rect x='3' y='16' width='6' height='4' rx='1'/> <rect x='15' y='16' width='6' height='4' rx='1'/> <line x1='12' y1='6' x2='12' y2='11'/> <path d='M6 11h12v5'/> <line x1='6' y1='11' x2='6' y2='16'/> </g></svg>");
}
.contentCard[data-icon="search"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='10.5' cy='10.5' r='7'/> <line x1='16' y1='16' x2='21' y2='21'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='10.5' cy='10.5' r='7'/> <line x1='16' y1='16' x2='21' y2='21'/> </g></svg>");
}
.contentCard[data-icon="menu"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='3' y1='6' x2='21' y2='6'/> <line x1='3' y1='12' x2='21' y2='12'/> <line x1='3' y1='18' x2='21' y2='18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='3' y1='6' x2='21' y2='6'/> <line x1='3' y1='12' x2='21' y2='12'/> <line x1='3' y1='18' x2='21' y2='18'/> </g></svg>");
}
.contentCard[data-icon="apps"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='%23000' stroke='none'> <circle cx='6' cy='6' r='1.2'/><circle cx='12' cy='6' r='1.2'/><circle cx='18' cy='6' r='1.2'/> <circle cx='6' cy='12' r='1.2'/><circle cx='12' cy='12' r='1.2'/><circle cx='18' cy='12' r='1.2'/> <circle cx='6' cy='18' r='1.2'/><circle cx='12' cy='18' r='1.2'/><circle cx='18' cy='18' r='1.2'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='%23000' stroke='none'> <circle cx='6' cy='6' r='1.2'/><circle cx='12' cy='6' r='1.2'/><circle cx='18' cy='6' r='1.2'/> <circle cx='6' cy='12' r='1.2'/><circle cx='12' cy='12' r='1.2'/><circle cx='18' cy='12' r='1.2'/> <circle cx='6' cy='18' r='1.2'/><circle cx='12' cy='18' r='1.2'/><circle cx='18' cy='18' r='1.2'/> </g></svg>");
}
.contentCard[data-icon="launch"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10 5H6a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-4'/> <polyline points='15 3 21 3 21 9'/> <line x1='10' y1='14' x2='21' y2='3'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10 5H6a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-4'/> <polyline points='15 3 21 3 21 9'/> <line x1='10' y1='14' x2='21' y2='3'/> </g></svg>");
}
.contentCard[data-icon="warning"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10.3 4l-8.7 15a1.5 1.5 0 0 0 1.3 2.25h17.4a1.5 1.5 0 0 0 1.3-2.25L13.7 4a1.5 1.5 0 0 0-2.6 0z'/> <line x1='12' y1='9' x2='12' y2='13.5'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M10.3 4l-8.7 15a1.5 1.5 0 0 0 1.3 2.25h17.4a1.5 1.5 0 0 0 1.3-2.25L13.7 4a1.5 1.5 0 0 0-2.6 0z'/> <line x1='12' y1='9' x2='12' y2='13.5'/> <line x1='12' y1='17.5' x2='12.01' y2='17.5'/> </g></svg>");
}
.contentCard[data-icon="info"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <line x1='12' y1='7.5' x2='12.01' y2='7.5'/> <line x1='12' y1='11' x2='12' y2='17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='9.5'/> <line x1='12' y1='7.5' x2='12.01' y2='7.5'/> <line x1='12' y1='11' x2='12' y2='17'/> </g></svg>");
}
.contentCard[data-icon="bookmark"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z'/> </g></svg>");
}
.contentCard[data-icon="globe"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <line x1='3.3' y1='7' x2='20.7' y2='7'/> <line x1='2' y1='12' x2='22' y2='12'/> <line x1='3.3' y1='17' x2='20.7' y2='17'/> <line x1='12' y1='2' x2='12' y2='22'/> <path d='M12 2 Q2 12 12 22'/> <path d='M12 2 Q22 12 12 22'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <line x1='3.3' y1='7' x2='20.7' y2='7'/> <line x1='2' y1='12' x2='22' y2='12'/> <line x1='3.3' y1='17' x2='20.7' y2='17'/> <line x1='12' y1='2' x2='12' y2='22'/> <path d='M12 2 Q2 12 12 22'/> <path d='M12 2 Q22 12 12 22'/> </g></svg>");
}
.contentCard[data-icon="play"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M8 5v14l11-7z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M8 5v14l11-7z'/></svg>");
}
.contentCard[data-icon="paper"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/> <polyline points='14 2 14 8 20 8'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='16' y2='17'/> <line x1='8' y1='9' x2='11' y2='9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/> <polyline points='14 2 14 8 20 8'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='16' y2='17'/> <line x1='8' y1='9' x2='11' y2='9'/> </g></svg>");
}
.contentCard[data-icon="download"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='3' x2='12' y2='15'/> <polyline points='8 11 12 15 16 11'/> <path d='M5 19v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='3' x2='12' y2='15'/> <polyline points='8 11 12 15 16 11'/> <path d='M5 19v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1'/> </g></svg>");
}
.contentCard[data-icon="clipboard"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/> <path d='M15 2H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z'/> <line x1='8' y1='9' x2='16' y2='9'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='14' y2='17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/> <path d='M15 2H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z'/> <line x1='8' y1='9' x2='16' y2='9'/> <line x1='8' y1='13' x2='16' y2='13'/> <line x1='8' y1='17' x2='14' y2='17'/> </g></svg>");
}
.contentCard[data-icon="copy"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M9 8 L9 5.5 Q9 4 10.5 4 L18.5 4 Q20 4 20 5.5 L20 16.5 Q20 18 18.5 18 L15 18'/> <rect x='3' y='8' width='12' height='14' rx='1.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M9 8 L9 5.5 Q9 4 10.5 4 L18.5 4 Q20 4 20 5.5 L20 16.5 Q20 18 18.5 18 L15 18'/> <rect x='3' y='8' width='12' height='14' rx='1.5'/> </g></svg>");
}
.contentCard[data-icon="share"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='18' cy='5' r='2'/><circle cx='6' cy='12' r='2'/><circle cx='18' cy='19' r='2'/> <line x1='7.9' y1='10.7' x2='16.1' y2='6.3'/> <line x1='7.9' y1='13.3' x2='16.1' y2='17.7'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='18' cy='5' r='2'/><circle cx='6' cy='12' r='2'/><circle cx='18' cy='19' r='2'/> <line x1='7.9' y1='10.7' x2='16.1' y2='6.3'/> <line x1='7.9' y1='13.3' x2='16.1' y2='17.7'/> </g></svg>");
}
.contentCard[data-icon="print"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 6 3 18 3 18 9'/> <path d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/> <rect x='6' y='14' width='12' height='8'/> <line x1='18' y1='11' x2='18.01' y2='11'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 6 3 18 3 18 9'/> <path d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/> <rect x='6' y='14' width='12' height='8'/> <line x1='18' y1='11' x2='18.01' y2='11'/> </g></svg>");
}
.contentCard[data-icon="email"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M4 5 Q2 5 2 7 V17 Q2 19 4 19 H20 Q22 19 22 17 V7 Q22 5 20 5 H4z'/> <polyline points='2 7 12 14 22 7'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M4 5 Q2 5 2 7 V17 Q2 19 4 19 H20 Q22 19 22 17 V7 Q22 5 20 5 H4z'/> <polyline points='2 7 12 14 22 7'/> </g></svg>");
}
.contentCard[data-icon="phone"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='6' y='2' width='12' height='20' rx='2'/> <line x1='6' y1='5.5' x2='18' y2='5.5'/> <line x1='6' y1='18.5' x2='18' y2='18.5'/> <line x1='10' y1='4' x2='14' y2='4'/> <circle cx='12' cy='20.25' r='0.8'/> <path d='M3.5 10 C2.2 11.5 2.2 12.5 3.5 14'/> <path d='M1.5 8 C-0.5 10.5 -0.5 13.5 1.5 16'/> <path d='M20.5 10 C21.8 11.5 21.8 12.5 20.5 14'/> <path d='M22.5 8 C24.5 10.5 24.5 13.5 22.5 16'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='6' y='2' width='12' height='20' rx='2'/> <line x1='6' y1='5.5' x2='18' y2='5.5'/> <line x1='6' y1='18.5' x2='18' y2='18.5'/> <line x1='10' y1='4' x2='14' y2='4'/> <circle cx='12' cy='20.25' r='0.8'/> <path d='M3.5 10 C2.2 11.5 2.2 12.5 3.5 14'/> <path d='M1.5 8 C-0.5 10.5 -0.5 13.5 1.5 16'/> <path d='M20.5 10 C21.8 11.5 21.8 12.5 20.5 14'/> <path d='M22.5 8 C24.5 10.5 24.5 13.5 22.5 16'/> </g></svg>");
}
.contentCard[data-icon="image"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='2' y='5' width='20' height='14' rx='2'/> <circle cx='7.5' cy='9.5' r='1.5'/> <polyline points='2 17 8 11 13 16 16 13 22 19'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='2' y='5' width='20' height='14' rx='2'/> <circle cx='7.5' cy='9.5' r='1.5'/> <polyline points='2 17 8 11 13 16 16 13 22 19'/> </g></svg>");
}
.contentCard[data-icon="rx"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='7' y='9' width='10' height='12' rx='1'/> <rect x='5' y='6.5' width='14' height='2.5' rx='1'/> <rect x='8' y='4' width='8' height='2.5' rx='1'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='7' y='9' width='10' height='12' rx='1'/> <rect x='5' y='6.5' width='14' height='2.5' rx='1'/> <rect x='8' y='4' width='8' height='2.5' rx='1'/> </g></svg>");
}
.contentCard[data-icon="coffee"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M8 7 Q9 6 8 5 Q7 4 8 3'/> <path d='M13 7 Q14 6 13 5 Q12 4 13 3'/> <path d='M5 9h12v8a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V9z'/> <path d='M17 11h1.5a1.5 1.5 0 0 1 0 3H17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M8 7 Q9 6 8 5 Q7 4 8 3'/> <path d='M13 7 Q14 6 13 5 Q12 4 13 3'/> <path d='M5 9h12v8a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V9z'/> <path d='M17 11h1.5a1.5 1.5 0 0 1 0 3H17'/> </g></svg>");
}
.contentCard[data-icon="user"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='8' r='4'/> <path d='M5 21a7 7 0 0 1 14 0'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='8' r='4'/> <path d='M5 21a7 7 0 0 1 14 0'/> </g></svg>");
}
.contentCard[data-icon="people"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='8.5' cy='7.5' r='3.5'/> <path d='M2 21v-1a5 5 0 0 1 5-5h3a5 5 0 0 1 5 5v1'/> <circle cx='17.5' cy='8.5' r='2.5'/> <path d='M17.5 14a4 4 0 0 1 4 4v1'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='8.5' cy='7.5' r='3.5'/> <path d='M2 21v-1a5 5 0 0 1 5-5h3a5 5 0 0 1 5 5v1'/> <circle cx='17.5' cy='8.5' r='2.5'/> <path d='M17.5 14a4 4 0 0 1 4 4v1'/> </g></svg>");
}
.contentCard[data-icon="settings"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='3'/> <path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='3'/> <path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/> </g></svg>");
}
.contentCard[data-icon="edit"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/> <path d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/> <path d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'/> </g></svg>");
}
.contentCard[data-icon="trash"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='3 6 5 6 21 6'/> <path d='M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/> <path d='M9 6V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2'/> <line x1='10' y1='11' x2='10' y2='17'/> <line x1='14' y1='11' x2='14' y2='17'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='3 6 5 6 21 6'/> <path d='M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/> <path d='M9 6V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2'/> <line x1='10' y1='11' x2='10' y2='17'/> <line x1='14' y1='11' x2='14' y2='17'/> </g></svg>");
}
.contentCard[data-icon="filter"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m838.13 847.4v-70.031c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.562c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m838.13 716.9v-69.984c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.516c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m814.13 903.37v31.312c0 21.281-19.594 40.172-50.766 55.547v-111.61c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.2031v139.08c-18.094 6.7969-38.578 12.656-60.516 17.438v-163.08c-4.4531 1.4531-8.4844 3.1406-12 4.875-5.25 2.5781-9.3281 5.2031-12 7.0781v155.9c-19.594 3.4219-39.984 6-60.516 7.6406v-650.53c21.094-1.4531 41.344-3.8438 60.516-7.0312v166.13c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188v-164.11c21.984-4.5938 42.281-10.312 60.516-16.922v184.08c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 7.9688 3.375 12 5.4844v-203.53c20.953-9.6562 38.156-20.719 50.766-32.859v269.72c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0156 2.2969 12 3v-322.18c0-0.5625-0.14062-1.0781-0.1875-1.5938 0.046875-0.89062 0.1875-1.8281 0.1875-2.7188 0-68.25-129.98-121.74-295.87-121.74-165.94 0-295.92 53.484-295.92 121.74 0 0.89063 0.14062 1.8281 0.1875 2.7188 0 0.5625-0.1875 1.0781-0.1875 1.5938v8.0.45c0 68.25 129.98 121.74 295.92 121.74s295.87-53.484 295.87-121.74v-26.812c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70313-7.875-1.6406-12-2.8125zm-543.79 31.359v-626.02c11.719 11.297 27.422 21.609 46.406 30.75v648.52c-28.594-14.906-46.406-33-46.406-53.25zm55.172-732.47c53.484-24.984 137.86-40.078 216.74-40.078s163.22 15.141 216.71 40.078c8.4844 3.9375 16.172 8.1562 22.922 12.562 20.203 13.219 32.25 28.406 32.25 45.047 0 0.84375-0.14062 1.6406-0.1875 2.4375-4.0312 56.25-144.94 95.25-271.69 95.25-126.76 0-267.71-39-271.74-95.25-0.046875-0.79688-0.1875-1.6406-0.1875-2.4375 0-16.688 12.047-31.875 32.25-45.047 6.7969-4.4062 14.484-8.625 22.922-12.562zm160.26 827.68c-20.578-1.7812-40.969-4.4531-60.516-8.0156v-649.82c19.172 3.2812 39.422 5.7656 60.516 7.4062zm-145.03-680.16c18.141 6.8906 38.438 12.797 60.516 17.625v649.64c-22.078-4.9688-42.562-11.109-60.516-18.141zm169.03 31.125c10.641 0.46875 21.469 0.70312 32.438 0.70312 9.4688 0 18.844-0.1875 28.078-0.5625v8.0.72c-9.375 0.42188-18.75 0.65625-28.078 0.65625-10.734 0-21.609-0.28125-32.438-0.84375z'/> <path d='m542.26 319.22c66.75 0 134.39-20.344 134.39-59.297 0-13.5-8.25-24.703-21.609-33.656-6.8906-4.6406-15.141-8.625-24.469-12-16.312-5.9062-35.672-9.9375-56.062-12-10.594-1.0781-21.422-1.6406-32.25-1.6406s-21.656 0.60938-32.25 1.6406c-20.391 2.0625-39.75 6.0938-56.062 12-9.2812 3.375-17.578 7.4062-24.469 12-13.359 8.9531-21.609 20.156-21.609 33.656 0 38.906 67.594 59.297 134.39 59.297zm0-94.594c11.25 0 21.703 0.60938 31.5 1.6406 48.938 5.1562 78.891 21.656 78.891 33.656 0 14.391-42.984 35.297-110.39 35.297-67.359 0-110.39-20.906-110.39-35.297 0-12 29.953-28.453 78.891-33.656 9.7969-1.0312 20.25-1.6406 31.5-1.6406z'/> <path d='m678.84 662.9v-68.953c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188z'/> <path d='m678.84 793.36v-69c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-0.98438 7.875-1.9219 12-2.6719z'/> <path d='m763.36 806.02v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 8.0156 3.3281 12 5.4375z'/> <path d='m763.36 675.56v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2344-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5469 8.0156 3.3281 12 5.4375z'/> <path d='m937.45 815.86-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.6719 7.0781 10.547 1.6406 0.79688 3.375 1.2656 5.2031 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.5312-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.859-1.3594 16.922 4.3125 5.0156 11.859 5.6719 16.922 1.3594 0.70312-0.60938 6.3281-5.2031 15.281-10.078 3.5156-1.9219 7.5469-3.8438 12-5.625 3.75-1.5 7.6875-2.9062 12-4.0781 16.922-4.5 38.016-5.3438 60.516 4.9688 3.9375 1.8281 7.9688 3.9375 12 6.4688 3.8906 2.4375 7.8281 5.25 11.766 8.4844 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.375-3.0469-3.375-7.1719-5.1562-12.094-5.1094z'/> <path d='m937.45 685.36-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.0781 10.547 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.7188 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-10.031 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4062 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.6406-1.0312-9.1406-4.0781-12.422-3-3.2812-7.6875-5.1094-12-5.0156z'/> <path d='m937.45 554.9-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.125 10.5 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.89062-14.812 0.75-22.219-0.23438-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.6719 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-9.9844 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.422-3.0469-3.2344-7.3125-4.8281-12.047-4.9688z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m838.13 847.4v-70.031c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.562c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m838.13 716.9v-69.984c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70312-7.875-1.6406-12-2.8125v66.516c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0625 2.3438 12 3z'/> <path d='m814.13 903.37v31.312c0 21.281-19.594 40.172-50.766 55.547v-111.61c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.2031v139.08c-18.094 6.7969-38.578 12.656-60.516 17.438v-163.08c-4.4531 1.4531-8.4844 3.1406-12 4.875-5.25 2.5781-9.3281 5.2031-12 7.0781v155.9c-19.594 3.4219-39.984 6-60.516 7.6406v-650.53c21.094-1.4531 41.344-3.8438 60.516-7.0312v166.13c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188v-164.11c21.984-4.5938 42.281-10.312 60.516-16.922v184.08c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 7.9688 3.375 12 5.4844v-203.53c20.953-9.6562 38.156-20.719 50.766-32.859v269.72c4.0312 1.9688 8.0156 3.6562 12 4.9688 4.0312 1.3594 8.0156 2.2969 12 3v-322.18c0-0.5625-0.14062-1.0781-0.1875-1.5938 0.046875-0.89062 0.1875-1.8281 0.1875-2.7188 0-68.25-129.98-121.74-295.87-121.74-165.94 0-295.92 53.484-295.92 121.74 0 0.89063 0.14062 1.8281 0.1875 2.7188 0 0.5625-0.1875 1.0781-0.1875 1.5938v8.0.45c0 68.25 129.98 121.74 295.92 121.74s295.87-53.484 295.87-121.74v-26.812c-3.8438-0.375-7.875-0.9375-12-1.6875-3.8906-0.70313-7.875-1.6406-12-2.8125zm-543.79 31.359v-626.02c11.719 11.297 27.422 21.609 46.406 30.75v648.52c-28.594-14.906-46.406-33-46.406-53.25zm55.172-732.47c53.484-24.984 137.86-40.078 216.74-40.078s163.22 15.141 216.71 40.078c8.4844 3.9375 16.172 8.1562 22.922 12.562 20.203 13.219 32.25 28.406 32.25 45.047 0 0.84375-0.14062 1.6406-0.1875 2.4375-4.0312 56.25-144.94 95.25-271.69 95.25-126.76 0-267.71-39-271.74-95.25-0.046875-0.79688-0.1875-1.6406-0.1875-2.4375 0-16.688 12.047-31.875 32.25-45.047 6.7969-4.4062 14.484-8.625 22.922-12.562zm160.26 827.68c-20.578-1.7812-40.969-4.4531-60.516-8.0156v-649.82c19.172 3.2812 39.422 5.7656 60.516 7.4062zm-145.03-680.16c18.141 6.8906 38.438 12.797 60.516 17.625v649.64c-22.078-4.9688-42.562-11.109-60.516-18.141zm169.03 31.125c10.641 0.46875 21.469 0.70312 32.438 0.70312 9.4688 0 18.844-0.1875 28.078-0.5625v8.0.72c-9.375 0.42188-18.75 0.65625-28.078 0.65625-10.734 0-21.609-0.28125-32.438-0.84375z'/> <path d='m542.26 319.22c66.75 0 134.39-20.344 134.39-59.297 0-13.5-8.25-24.703-21.609-33.656-6.8906-4.6406-15.141-8.625-24.469-12-16.312-5.9062-35.672-9.9375-56.062-12-10.594-1.0781-21.422-1.6406-32.25-1.6406s-21.656 0.60938-32.25 1.6406c-20.391 2.0625-39.75 6.0938-56.062 12-9.2812 3.375-17.578 7.4062-24.469 12-13.359 8.9531-21.609 20.156-21.609 33.656 0 38.906 67.594 59.297 134.39 59.297zm0-94.594c11.25 0 21.703 0.60938 31.5 1.6406 48.938 5.1562 78.891 21.656 78.891 33.656 0 14.391-42.984 35.297-110.39 35.297-67.359 0-110.39-20.906-110.39-35.297 0-12 29.953-28.453 78.891-33.656 9.7969-1.0312 20.25-1.6406 31.5-1.6406z'/> <path d='m678.84 662.9v-68.953c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-1.0781 7.875-1.9688 12-2.7188z'/> <path d='m678.84 793.36v-69c-4.4062 1.4531-8.4844 3.1406-12 4.875-5.1094 2.5312-9.1875 5.1094-12 7.0781v63.516c3.8438-1.4062 7.875-2.6719 12-3.7969 3.8906-0.98438 7.875-1.9219 12-2.6719z'/> <path d='m763.36 806.02v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2812-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5938 8.0156 3.3281 12 5.4375z'/> <path d='m763.36 675.56v-57.844c-3.8438-2.7188-7.7344-5.5312-11.625-8.7188-0.14062-0.09375-0.23438-0.1875-0.375-0.28125-4.0312-3.2344-8.0156-5.8594-12-8.1562v65.391c3.9844 1.1719 7.9688 2.5312 12 4.1719 3.9844 1.5469 8.0156 3.3281 12 5.4375z'/> <path d='m937.45 815.86-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.6719 7.0781 10.547 1.6406 0.79688 3.375 1.2656 5.2031 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.5312-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.859-1.3594 16.922 4.3125 5.0156 11.859 5.6719 16.922 1.3594 0.70312-0.60938 6.3281-5.2031 15.281-10.078 3.5156-1.9219 7.5469-3.8438 12-5.625 3.75-1.5 7.6875-2.9062 12-4.0781 16.922-4.5 38.016-5.3438 60.516 4.9688 3.9375 1.8281 7.9688 3.9375 12 6.4688 3.8906 2.4375 7.8281 5.25 11.766 8.4844 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.375-3.0469-3.375-7.1719-5.1562-12.094-5.1094z'/> <path d='m937.45 685.36-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.0781 10.547 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.9375-14.812 0.79688-22.219-0.1875-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12.047-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.7188 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-10.031 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4062 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.6406-1.0312-9.1406-4.0781-12.422-3-3.2812-7.6875-5.1094-12-5.0156z'/> <path d='m937.45 554.9-28.125 0.60938-21.516 0.46875c-6.6562 0.14062-11.906 5.625-11.766 12.234 0.09375 4.6875 3.1406 8.625 7.125 10.5 1.6406 0.75 3.3281 1.2656 5.1562 1.2188l23.391-0.46875c-11.531 11.578-29.297 22.734-51.328 25.453-7.4062 0.89062-14.812 0.75-22.219-0.23438-3.9844-0.51562-7.9688-1.4062-12-2.4844-3.9844-1.0781-8.0156-2.4375-12-4.0781-11.953-4.875-23.953-12-35.859-21.75-4.9688-4.0781-9.9375-7.5938-14.906-10.688-4.0312-2.4844-8.0156-4.6406-12-6.5625-4.0312-1.9219-8.0156-3.5625-12-4.9219-22.031-7.6406-42.797-7.2188-60.516-3.3281-4.1719 0.89062-8.2031 1.9688-12 3.2344-4.2656 1.3594-8.25 2.9062-12 4.5-18.797 8.0156-30.516 17.719-30.797 17.953-5.0625 4.2656-5.6719 11.812-1.4062 16.875s11.812 5.6719 16.875 1.4531c0.75-0.60938 6.3281-5.1562 15.328-9.9844 3.5156-1.875 7.5469-3.7969 12-5.5781 3.75-1.5 7.6875-2.9062 12-4.0781 16.969-4.5 38.062-5.3438 60.516 4.875 3.9375 1.7812 7.9688 3.8906 12 6.4219 3.8906 2.4375 7.8281 5.25 11.766 8.4375 0.09375 0.09375 0.1875 0.14062 0.23438 0.1875 16.406 13.359 33.516 22.828 50.766 28.406 3.9844 1.3125 8.0156 2.3906 12 3.2812 3.9844 0.84375 7.9688 1.5469 12 1.9688 3.9844 0.42188 7.9219 0.70312 11.906 0.70312 4.4531 0 8.8594-0.28125 13.266-0.79688 23.812-2.9531 46.5-14.109 63.562-30.562l-2.1562 21.188c-0.14062 1.3125 0.09375 2.5312 0.375 3.75 1.0781 4.9219 5.0625 8.8594 10.359 9.375 0.375 0.046875 0.79688 0.046875 1.2188 0.046875 6.0938 0 11.297-4.6406 11.906-10.781l2.3438-23.484 2.625-25.969c0.46875-4.5938-1.0312-9.1406-4.0781-12.422-3.0469-3.2344-7.3125-4.8281-12.047-4.9688z'/> </g></svg>");
}
.contentCard[data-icon="calendar"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m98.438 815.63c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-150h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-107.81c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v150zm707.81-150h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150z'/> <path d='m1087.5 140.63h-46.875v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-581.26v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-46.875c-62.016 0-112.5 50.484-112.5 112.5v787.5c0 62.016 50.484 112.5 112.5 112.5h975c62.016 0 112.5-50.484 112.5-112.5v-787.5c0-62.016-50.484-112.5-112.5-112.5zm-159.37-37.5c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm-731.26 0c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm890.63 1012.5h-975c-41.344 0-75-33.656-75-75h1125c0 41.344-33.656 75-75 75zm75-112.5h-1125v-525h1125zm0-562.5h-1125v-187.5c0-41.344 33.656-75 75-75h46.875v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h581.26v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h46.875c41.344 0 75 33.656 75 75z'/> <path d='m759.37 290.63h-318.74c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h318.74c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m98.438 815.63c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h150v93.75c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-93.75h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-150h107.81c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75h-107.81v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-150v-93.75c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75v93.75h-107.81c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h107.81v150zm707.81-150h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150zm-187.5 0h150v150h-150z'/> <path d='m1087.5 140.63h-46.875v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-581.26v-37.5c0-31.031-25.219-56.25-56.25-56.25h-37.5c-31.031 0-56.25 25.219-56.25 56.25v37.5h-46.875c-62.016 0-112.5 50.484-112.5 112.5v787.5c0 62.016 50.484 112.5 112.5 112.5h975c62.016 0 112.5-50.484 112.5-112.5v-787.5c0-62.016-50.484-112.5-112.5-112.5zm-159.37-37.5c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm-731.26 0c0-10.359 8.3906-18.75 18.75-18.75h37.5c10.359 0 18.75 8.3906 18.75 18.75v112.5c0 10.359-8.3906 18.75-18.75 18.75h-37.5c-10.359 0-18.75-8.3906-18.75-18.75zm890.63 1012.5h-975c-41.344 0-75-33.656-75-75h1125c0 41.344-33.656 75-75 75zm75-112.5h-1125v-525h1125zm0-562.5h-1125v-187.5c0-41.344 33.656-75 75-75h46.875v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h581.26v37.5c0 31.031 25.219 56.25 56.25 56.25h37.5c31.031 0 56.25-25.219 56.25-56.25v-37.5h46.875c41.344 0 75 33.656 75 75z'/> <path d='m759.37 290.63h-318.74c-10.359 0-18.75 8.3906-18.75 18.75s8.3906 18.75 18.75 18.75h318.74c10.359 0 18.75-8.3906 18.75-18.75s-8.3906-18.75-18.75-18.75z'/> </g></svg>");
}
.contentCard[data-icon="clock"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <polyline points='12 6 12 12 16 14'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/> <polyline points='12 6 12 12 16 14'/> </g></svg>");
}
.contentCard[data-icon="tag"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/> <circle cx='7' cy='7' r='1.5'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/> <circle cx='7' cy='7' r='1.5'/> </g></svg>");
}
.contentCard[data-icon="lock"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='5' y='11' width='14' height='11' rx='2'/> <path d='M8 11V7a4 4 0 0 1 8 0v4'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='5' y='11' width='14' height='11' rx='2'/> <path d='M8 11V7a4 4 0 0 1 8 0v4'/> </g></svg>");
}
.contentCard[data-icon="close"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/> </g></svg>");
}
.contentCard[data-icon="arrow-right"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/><polyline points='13 6 19 12 13 18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/><polyline points='13 6 19 12 13 18'/> </g></svg>");
}
.contentCard[data-icon="arrow-left"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='19' y1='12' x2='5' y2='12'/><polyline points='11 18 5 12 11 6'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='19' y1='12' x2='5' y2='12'/><polyline points='11 18 5 12 11 6'/> </g></svg>");
}
.contentCard[data-icon="arrow-up"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='19' x2='12' y2='5'/><polyline points='6 11 12 5 18 11'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='19' x2='12' y2='5'/><polyline points='6 11 12 5 18 11'/> </g></svg>");
}
.contentCard[data-icon="arrow-down"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><polyline points='6 13 12 19 18 13'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><polyline points='6 13 12 19 18 13'/> </g></svg>");
}
.contentCard[data-icon="nav-down"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 12 15 18 9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 9 12 15 18 9'/> </g></svg>");
}
.contentCard[data-icon="nav-up"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 15 12 9 18 15'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='6 15 12 9 18 15'/> </g></svg>");
}
.contentCard[data-icon="nav-right"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='9 6 15 12 9 18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='9 6 15 12 9 18'/> </g></svg>");
}
.contentCard[data-icon="nav-left"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='15 6 9 12 15 18'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='15 6 9 12 15 18'/> </g></svg>");
}
.contentCard[data-icon="plus"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
}
.contentCard[data-icon="minus"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <line x1='5' y1='12' x2='19' y2='12'/> </g></svg>");
}
.contentCard[data-icon="check"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='4 12 9 17 20 6'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <polyline points='4 12 9 17 20 6'/> </g></svg>");
}
.contentCard[data-icon="check-circle"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='10'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
}
.contentCard[data-icon="star"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' stroke='none' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>");
}
.contentCard[data-icon="star-empty"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/> </g></svg>");
}
.contentCard[data-icon="checkbox"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/> </g></svg>");
}
.contentCard[data-icon="checkedbox"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <rect x='4' y='4' width='16' height='16' rx='2'/><polyline points='7.5 12 10.5 15 16.5 9'/> </g></svg>");
}
.contentCard[data-icon="list"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> </g></svg>");
}
.contentCard[data-icon="list-dot"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> <circle cx='12' cy='12' r='4' fill='%23000' stroke='none'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'> <circle cx='12' cy='12' r='8'/> <circle cx='12' cy='12' r='4' fill='%23000' stroke='none'/> </g></svg>");
}
.contentCard[data-icon="new"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-1.2,-1.2) scale(0.022)' fill='%23000' stroke='%23000' stroke-width='40' stroke-linejoin='round'> <path d='m622.14 823.84c12.168-0.039062 23.824-4.8945 32.418-13.508 8.5977-8.6094 13.434-20.273 13.453-32.438v-66.617h281.5v-220.59h-281.5v-66.617c0.007812-16.184-8.5117-31.172-22.422-39.445-13.91-8.2695-31.148-8.6016-45.363-0.87109l-325.75 176.91h-0.003906c-9.7227 5.2734-17.211 13.887-21.086 24.25-3.8711 10.359-3.8711 21.773 0 32.133 3.875 10.363 11.363 18.973 21.086 24.25l325.75 176.91c6.7188 3.6797 14.254 5.6133 21.914 5.6289zm293.37-146.57h-281.5v100.62c0.003906 4.1836-2.1992 8.0625-5.7969 10.199-3.5977 2.1406-8.0586 2.2266-11.734 0.22656l-325.79-176.99c-3.8242-2.0742-6.207-6.0742-6.207-10.426 0-4.3516 2.3828-8.3555 6.207-10.43l325.75-176.84c3.6797-2.0156 8.1523-1.9414 11.762 0.20312 3.6094 2.1406 5.8203 6.0312 5.8086 10.227v100.62h281.5z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='translate(-1.2,-1.2) scale(0.022)' fill='%23000' stroke='%23000' stroke-width='40' stroke-linejoin='round'> <path d='m622.14 823.84c12.168-0.039062 23.824-4.8945 32.418-13.508 8.5977-8.6094 13.434-20.273 13.453-32.438v-66.617h281.5v-220.59h-281.5v-66.617c0.007812-16.184-8.5117-31.172-22.422-39.445-13.91-8.2695-31.148-8.6016-45.363-0.87109l-325.75 176.91h-0.003906c-9.7227 5.2734-17.211 13.887-21.086 24.25-3.8711 10.359-3.8711 21.773 0 32.133 3.875 10.363 11.363 18.973 21.086 24.25l325.75 176.91c6.7188 3.6797 14.254 5.6133 21.914 5.6289zm293.37-146.57h-281.5v100.62c0.003906 4.1836-2.1992 8.0625-5.7969 10.199-3.5977 2.1406-8.0586 2.2266-11.734 0.22656l-325.79-176.99c-3.8242-2.0742-6.207-6.0742-6.207-10.426 0-4.3516 2.3828-8.3555 6.207-10.43l325.75-176.84c3.6797-2.0156 8.1523-1.9414 11.762 0.20312 3.6094 2.1406 5.8203 6.0312 5.8086 10.227v100.62h281.5z'/> </g></svg>");
}
.contentCard[data-icon="scale"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m1070.8 462.25c-4.3086-39.383-37.359-69.082-76.871-69.082h-235.95c-44.473-36.215-100.25-56.258-158.06-56.258-57.676 0-113.4 20.039-157.9 56.258h-218.92c-38.543 0-71.492 28.797-76.656 66.992l-84.73 632.67c-2.9766 22.066 3.75 44.363 18.441 61.176 14.707 16.828 35.926 26.477 58.23 26.477 955.94-9.2461 938.71 21.223 980.79-25.629 14.656-16.309 21.699-38.203 19.344-60.051zm-260.65 102.43c-3.2578 3.832-7.9766 6.0273-12.98 6.0273-387.32-2.1055-416.29 10.777-411.25-19.625 6.7812-40.691 26.613-81.988 59.02-115.23l21.336 21.332 23.82-23.82-19.695-19.691c32.766-24.445 71.812-39.148 112.67-42.324v23.504h33.688v-23.508c40.914 3.168 79.992 17.844 112.73 42.25l-19.777 19.773 23.82 23.82 21.43-21.422c40.707 41.766 68.199 113.51 55.184 128.92zm283.97 567.66c-24.605 27.387-0.20703 9.2734-955.73 14.449-12.586 0-24.559-5.4531-32.867-14.961-8.2891-9.4844-12.09-22.059-10.414-34.512l84.734-632.67c2.9102-21.551 21.5-37.793 43.262-37.793h184.57c-31.57 37.844-75.145 122.46-43.676 159.61 9.6562 11.398 23.754 17.938 38.672 17.938h394.5c14.922 0 29.016-6.5391 38.672-17.93 31.254-36.867-12.172-121.94-43.543-159.61h201.62c22.289 0 40.945 16.785 43.379 39.02l67.723 632.52c1.3594 12.551-2.5078 24.602-10.898 33.945z'/> <path d='m614.68 511.26-14.75-90.094-14.758 90.145c-26.387 15.387-15.266 55.52 14.758 55.52 16.449 0 29.824-13.375 29.824-29.816-0.003906-11.051-6.1172-20.605-15.074-25.754zm-18.621 25.754c0-2.1367 1.7266-3.875 3.8672-3.875 2.2695 0 4.0469 1.7031 4.0469 3.875 0 4.082-7.9141 4.2695-7.9141 0z'/> <path d='m856.92 615.02c-57.656 0-102.83 72.223-102.83 164.41 0 77.344 47.625 108.28-11.91 221.65-22.727 47.578 3.418 103.62 55.699 117.98 60.496 16.625 106.5-40.797 104.84-104.09-1.8906-71.746 34.43-132.02 34.809-132.62l1.5938-3.4219c53.781-159.77-16.297-263.93-82.199-263.93zm12.105 400.86c0.49219 18.102-3.4883 34.215-11.48 46.609-38.074 58.988-108.91 3.3633-85.293-46.223 2.0547-3.8828 50.402-95.859 28.145-162.53-3.5195-13.199-12.617-52.277-12.617-74.305 0-69.641 32.309-130.73 69.137-130.73 37.488 0 69.156 59.867 69.156 130.73 0 84.008-59.859 129.6-57.047 236.45z'/> <path d='m432.2 862.39c41.41-155.89-28.34-247.36-89.109-247.36-57.656 0-102.83 72.223-102.83 164.41 0 30.672 11.891 72.699 22.238 102.93 54.418 90.285 17.672 145.7 51.668 198.39 61.352 94.98 185.64 8.1211 143.34-80.332-12.203-22.898-40.578-92.145-25.312-138.05zm-38.969 224.2c-37.75 10.355-63.293-30.965-62.246-70.711 2.8203-107.17-57.031-152.05-57.031-236.44 0-70.859 31.664-130.73 69.137-130.73 36.832 0 69.137 61.086 69.137 130.73 0 70.742-49.953 114.53 15.215 236.18 14.152 29.609-3.4336 62.512-34.211 70.973z'/> <path d='m966.79 313.97c40.777 0 73.957-33.172 73.957-73.949v-154.46c0-37.148-30.219-67.375-67.379-67.375h-814.1v181.58h623.25v114.21zm0-33.688h-150.58v-80.523h150.58c53.262 0 53.277 80.523 0 80.523zm-773.83-114.21v-114.2h84.371v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003907-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h50.684c18.57 0 33.688 15.109 33.688 33.688v92.465c-36.293-23.648-75.469-5.3594-224.54-11.949z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m1070.8 462.25c-4.3086-39.383-37.359-69.082-76.871-69.082h-235.95c-44.473-36.215-100.25-56.258-158.06-56.258-57.676 0-113.4 20.039-157.9 56.258h-218.92c-38.543 0-71.492 28.797-76.656 66.992l-84.73 632.67c-2.9766 22.066 3.75 44.363 18.441 61.176 14.707 16.828 35.926 26.477 58.23 26.477 955.94-9.2461 938.71 21.223 980.79-25.629 14.656-16.309 21.699-38.203 19.344-60.051zm-260.65 102.43c-3.2578 3.832-7.9766 6.0273-12.98 6.0273-387.32-2.1055-416.29 10.777-411.25-19.625 6.7812-40.691 26.613-81.988 59.02-115.23l21.336 21.332 23.82-23.82-19.695-19.691c32.766-24.445 71.812-39.148 112.67-42.324v23.504h33.688v-23.508c40.914 3.168 79.992 17.844 112.73 42.25l-19.777 19.773 23.82 23.82 21.43-21.422c40.707 41.766 68.199 113.51 55.184 128.92zm283.97 567.66c-24.605 27.387-0.20703 9.2734-955.73 14.449-12.586 0-24.559-5.4531-32.867-14.961-8.2891-9.4844-12.09-22.059-10.414-34.512l84.734-632.67c2.9102-21.551 21.5-37.793 43.262-37.793h184.57c-31.57 37.844-75.145 122.46-43.676 159.61 9.6562 11.398 23.754 17.938 38.672 17.938h394.5c14.922 0 29.016-6.5391 38.672-17.93 31.254-36.867-12.172-121.94-43.543-159.61h201.62c22.289 0 40.945 16.785 43.379 39.02l67.723 632.52c1.3594 12.551-2.5078 24.602-10.898 33.945z'/> <path d='m614.68 511.26-14.75-90.094-14.758 90.145c-26.387 15.387-15.266 55.52 14.758 55.52 16.449 0 29.824-13.375 29.824-29.816-0.003906-11.051-6.1172-20.605-15.074-25.754zm-18.621 25.754c0-2.1367 1.7266-3.875 3.8672-3.875 2.2695 0 4.0469 1.7031 4.0469 3.875 0 4.082-7.9141 4.2695-7.9141 0z'/> <path d='m856.92 615.02c-57.656 0-102.83 72.223-102.83 164.41 0 77.344 47.625 108.28-11.91 221.65-22.727 47.578 3.418 103.62 55.699 117.98 60.496 16.625 106.5-40.797 104.84-104.09-1.8906-71.746 34.43-132.02 34.809-132.62l1.5938-3.4219c53.781-159.77-16.297-263.93-82.199-263.93zm12.105 400.86c0.49219 18.102-3.4883 34.215-11.48 46.609-38.074 58.988-108.91 3.3633-85.293-46.223 2.0547-3.8828 50.402-95.859 28.145-162.53-3.5195-13.199-12.617-52.277-12.617-74.305 0-69.641 32.309-130.73 69.137-130.73 37.488 0 69.156 59.867 69.156 130.73 0 84.008-59.859 129.6-57.047 236.45z'/> <path d='m432.2 862.39c41.41-155.89-28.34-247.36-89.109-247.36-57.656 0-102.83 72.223-102.83 164.41 0 30.672 11.891 72.699 22.238 102.93 54.418 90.285 17.672 145.7 51.668 198.39 61.352 94.98 185.64 8.1211 143.34-80.332-12.203-22.898-40.578-92.145-25.312-138.05zm-38.969 224.2c-37.75 10.355-63.293-30.965-62.246-70.711 2.8203-107.17-57.031-152.05-57.031-236.44 0-70.859 31.664-130.73 69.137-130.73 36.832 0 69.137 61.086 69.137 130.73 0 70.742-49.953 114.53 15.215 236.18 14.152 29.609-3.4336 62.512-34.211 70.973z'/> <path d='m966.79 313.97c40.777 0 73.957-33.172 73.957-73.949v-154.46c0-37.148-30.219-67.375-67.379-67.375h-814.1v181.58h623.25v114.21zm0-33.688h-150.58v-80.523h150.58c53.262 0 53.277 80.523 0 80.523zm-773.83-114.21v-114.2h84.371v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003907-21.855h53.691v21.855h33.688l0.003906-21.855h53.691v21.855h33.688v-21.855h53.691v21.855h33.688l0.003906-21.855h50.684c18.57 0 33.688 15.109 33.688 33.688v92.465c-36.293-23.648-75.469-5.3594-224.54-11.949z'/> </g></svg>");
}
.contentCard[data-icon="bottle"]::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m848.53 927.47c4.6875 4.6875 4.6875 12.234 0 16.922-2.3906 2.3906-5.3906 3.6094-8.5312 3.6094s-6.1406-1.2188-8.5312-3.4688l-96-96c-2.1562-2.2969-3.4688-5.2969-3.4688-8.5312v-120c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v115.08zm147.47-87.469c0 138.94-113.06 252-252 252-34.312 0-67.547-6.8438-98.859-20.297-11.297 12.844-27.281 20.297-44.672 20.297h-336.94c-32.906 0-59.531-26.766-59.531-59.531v-151.55c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-230.16c0-7.5469-3.1406-15-8.5312-20.391-9.8438-9.9844-15.469-23.531-15.469-37.453v-56.391c0-63.375 31.453-122.06 84.141-157.08l45-30c9.375-6.2344 14.859-16.688 14.859-27.938v-11.672h-12c-6.6094 0-12-5.3906-12-12v-84.375c0-26.25 21.375-47.625 47.625-47.625h120.71c26.297 0 47.672 21.375 47.672 47.625v84.375c0 6.6094-5.3906 12-12 12h-12v11.625c0 11.297 5.625 21.703 15 27.938l45 30c52.547 35.062 84 93.75 84 157.13v56.391c0 13.922-5.625 27.469-15.469 37.453-5.3906 5.3906-8.5312 12.844-8.5312 20.391v19.547c33.609-15.938 70.547-24.469 108-24.469 138.94 0 252 113.06 252 252zm-648-612h168v-72.375c0-13.078-10.547-23.625-23.625-23.625h-120.74c-13.078 0-23.625 10.547-23.625 23.625zm274.22 832.69c-0.375-0.23438-0.70312-0.46875-1.0781-0.70312-1.9219-1.0781-3.8438-2.2969-5.7656-3.4688-3.1406-1.7812-6.1406-3.6094-9.1406-5.625-2.0625-1.3125-3.9375-2.7656-5.8594-4.0781-2.7656-1.9219-5.5312-3.8438-8.2969-6-1.9219-1.5469-3.8438-3.1406-5.7656-4.6875-2.5312-2.0625-5.1562-4.0781-7.5469-6.2344-1.9219-1.6875-3.7031-3.375-5.625-5.1562-2.3906-2.1562-4.6875-4.4531-6.9375-6.6094-1.7812-1.7812-3.6094-3.7031-5.2969-5.5312-2.1562-2.2969-4.3125-4.6875-6.375-6.9375-1.6875-1.9219-3.375-3.9375-5.0625-6-1.9219-2.3906-3.9375-4.9219-5.7656-7.3125-1.5469-2.0625-3.1406-4.2188-4.6875-6.375-1.7812-2.5312-3.6094-5.1562-5.2969-7.6875-1.4531-2.1562-2.8594-4.3125-4.2188-6.6094-1.6875-2.625-3.2344-5.3906-4.6875-8.0625-1.3125-2.2969-2.5312-4.5469-3.7031-6.8438-1.4531-2.7656-2.8594-5.625-4.2188-8.3906-1.0781-2.3906-2.2969-4.6875-3.2344-7.0781-1.3125-2.8594-2.3906-5.7656-3.6094-8.7656-0.9375-2.3906-1.9219-4.7812-2.7656-7.2188-1.0781-3-2.0625-6.1406-3-9.1406-0.70312-2.3906-1.5469-4.7812-2.2969-7.2188-0.9375-3.1406-1.6875-6.375-2.5312-9.6094-0.60938-2.3906-1.2188-4.7812-1.6875-7.2188-0.70312-3.375-1.3125-6.8438-1.9219-10.312-0.375-2.2969-0.84375-4.5469-1.2188-6.8438-0.60938-3.8438-0.84375-7.6875-1.3125-11.625-0.23438-1.9219-0.46875-3.8438-0.60938-5.7656-0.46875-5.8125-0.70312-11.719-0.70312-17.578 0-5.5312 0.23438-11.062 0.60938-16.547 0.14062-1.7812 0.375-3.6094 0.46875-5.5312 0.375-3.6094 0.60938-7.2188 1.0781-10.781 0.23438-2.1562 0.70312-4.2188 1.0781-6.375 0.46875-3.2344 0.9375-6.4688 1.6875-9.7031 0.46875-2.2969 1.0781-4.4531 1.5469-6.7031 0.70312-3.1406 1.3125-6.1406 2.1562-9.1406 0.60938-2.2969 1.3125-4.5469 2.0625-6.8438 0.84375-2.8594 1.6875-5.8594 2.625-8.7656 0.70312-2.2969 1.6875-4.5469 2.5312-6.7031 1.0781-2.7656 2.0625-5.625 3.1406-8.3906 0.9375-2.2969 1.9219-4.4531 3-6.7031 1.2188-2.625 2.3906-5.3906 3.7031-8.0625 1.0781-2.1562 2.2969-4.3125 3.375-6.4688 1.3125-2.625 2.625-5.1562 4.0781-7.6875 1.2188-2.1562 2.5312-4.3125 3.8438-6.375 1.5469-2.5312 3-4.9219 4.5469-7.3125 1.3125-2.0625 2.8594-4.0781 4.3125-6.2344 1.6875-2.3906 3.2344-4.6875 5.0625-6.9375 1.5469-2.0625 3.1406-3.9375 4.6875-5.8594 1.7812-2.2969 3.6094-4.4531 5.3906-6.6094 1.6875-1.9219 3.375-3.8438 5.0625-5.625 1.9219-2.1562 3.8438-4.2188 5.8594-6.2344 1.7812-1.7812 3.6094-3.6094 5.5312-5.3906 2.0625-1.9219 4.0781-3.9375 6.2344-5.8594 1.9219-1.6875 3.8438-3.375 5.8594-5.0625 2.1562-1.7812 4.3125-3.7031 6.6094-5.3906 2.0625-1.5469 4.2188-3.1406 6.2344-4.6875 2.2969-1.6875 4.5469-3.375 6.9375-5.0625 2.1562-1.4531 4.4531-2.8594 6.6094-4.3125 1.4531-0.9375 2.7656-1.9219 4.2188-2.7656v-32.531c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-56.391c0-55.312-27.469-106.55-73.312-137.16l-45-30c-16.219-11.109-25.828-29.109-25.828-48.328v-11.625h-120v11.625c0 19.219-9.6094 37.219-25.547 47.859l-45 30c-45.984 30.656-73.453 81.891-73.453 137.21v56.391c0 7.5469 3.1406 15 8.5312 20.391 2.625 2.625 4.7812 5.3906 6.8438 8.5312h212.63c6.6094 0 12 5.3906 12 12s-5.3906 12-12 12h-204.47c0.14063 1.6875 0.46875 3.2344 0.46875 4.9219v230.16c0 1.6875-0.375 3.2344-0.46875 4.9219h132.47c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-140.63c-1.9219 3-4.2188 5.8594-6.8438 8.5312-5.3906 5.3906-8.5312 12.844-8.5312 20.391v151.55c0 19.547 15.938 35.531 35.531 35.531h336.94c8.0625 0 15.609-2.625 21.75-7.3125zm349.18-208.69h-11.391c-6.6094 0-12-5.3906-12-12s5.3906-12 12-12h11.391c-6.0938-116.16-99.234-209.29-215.39-215.39v11.391c0 6.6094-5.3906 12-12 12s-12-5.3906-12-12v-11.625c-35.859 1.9219-70.922 12.234-102 30.234-4.4531 2.5312-8.625 5.1562-12.844 8.0625-49.453 33.141-83.625 84.234-96 141.71-1.2188 5.7656-2.3906 11.625-3.1406 17.531-0.84375 6-1.3125 12-1.5469 18.141l11.531-0.046876c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-11.531c4.4531 82.922 54.375 158.29 129.94 194.16 27.141 12.844 55.781 20.062 85.547 21.609l0.046875-11.766c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v11.391c116.16-6.0938 209.29-99.234 215.39-215.39zm-239.39-493.55c0-64.219 62.297-137.06 99.469-174.84 2.2969-2.2969 5.2969-3.6094 8.5312-3.6094s6.375 1.3125 8.5312 3.6094c45.328 46.078 99.469 113.86 99.469 174.84 0 60.328-48.469 109.55-108 109.55s-108-49.219-108-109.55zm24 0c0 47.156 37.688 85.547 84 85.547s84-38.391 84-85.547c0-51.234-49.219-112.31-84-149.16-53.531 56.625-84 110.48-84 149.16z'/> </g></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g transform='scale(0.02)' fill='%23000'> <path d='m848.53 927.47c4.6875 4.6875 4.6875 12.234 0 16.922-2.3906 2.3906-5.3906 3.6094-8.5312 3.6094s-6.1406-1.2188-8.5312-3.4688l-96-96c-2.1562-2.2969-3.4688-5.2969-3.4688-8.5312v-120c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v115.08zm147.47-87.469c0 138.94-113.06 252-252 252-34.312 0-67.547-6.8438-98.859-20.297-11.297 12.844-27.281 20.297-44.672 20.297h-336.94c-32.906 0-59.531-26.766-59.531-59.531v-151.55c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-230.16c0-7.5469-3.1406-15-8.5312-20.391-9.8438-9.9844-15.469-23.531-15.469-37.453v-56.391c0-63.375 31.453-122.06 84.141-157.08l45-30c9.375-6.2344 14.859-16.688 14.859-27.938v-11.672h-12c-6.6094 0-12-5.3906-12-12v-84.375c0-26.25 21.375-47.625 47.625-47.625h120.71c26.297 0 47.672 21.375 47.672 47.625v84.375c0 6.6094-5.3906 12-12 12h-12v11.625c0 11.297 5.625 21.703 15 27.938l45 30c52.547 35.062 84 93.75 84 157.13v56.391c0 13.922-5.625 27.469-15.469 37.453-5.3906 5.3906-8.5312 12.844-8.5312 20.391v19.547c33.609-15.938 70.547-24.469 108-24.469 138.94 0 252 113.06 252 252zm-648-612h168v-72.375c0-13.078-10.547-23.625-23.625-23.625h-120.74c-13.078 0-23.625 10.547-23.625 23.625zm274.22 832.69c-0.375-0.23438-0.70312-0.46875-1.0781-0.70312-1.9219-1.0781-3.8438-2.2969-5.7656-3.4688-3.1406-1.7812-6.1406-3.6094-9.1406-5.625-2.0625-1.3125-3.9375-2.7656-5.8594-4.0781-2.7656-1.9219-5.5312-3.8438-8.2969-6-1.9219-1.5469-3.8438-3.1406-5.7656-4.6875-2.5312-2.0625-5.1562-4.0781-7.5469-6.2344-1.9219-1.6875-3.7031-3.375-5.625-5.1562-2.3906-2.1562-4.6875-4.4531-6.9375-6.6094-1.7812-1.7812-3.6094-3.7031-5.2969-5.5312-2.1562-2.2969-4.3125-4.6875-6.375-6.9375-1.6875-1.9219-3.375-3.9375-5.0625-6-1.9219-2.3906-3.9375-4.9219-5.7656-7.3125-1.5469-2.0625-3.1406-4.2188-4.6875-6.375-1.7812-2.5312-3.6094-5.1562-5.2969-7.6875-1.4531-2.1562-2.8594-4.3125-4.2188-6.6094-1.6875-2.625-3.2344-5.3906-4.6875-8.0625-1.3125-2.2969-2.5312-4.5469-3.7031-6.8438-1.4531-2.7656-2.8594-5.625-4.2188-8.3906-1.0781-2.3906-2.2969-4.6875-3.2344-7.0781-1.3125-2.8594-2.3906-5.7656-3.6094-8.7656-0.9375-2.3906-1.9219-4.7812-2.7656-7.2188-1.0781-3-2.0625-6.1406-3-9.1406-0.70312-2.3906-1.5469-4.7812-2.2969-7.2188-0.9375-3.1406-1.6875-6.375-2.5312-9.6094-0.60938-2.3906-1.2188-4.7812-1.6875-7.2188-0.70312-3.375-1.3125-6.8438-1.9219-10.312-0.375-2.2969-0.84375-4.5469-1.2188-6.8438-0.60938-3.8438-0.84375-7.6875-1.3125-11.625-0.23438-1.9219-0.46875-3.8438-0.60938-5.7656-0.46875-5.8125-0.70312-11.719-0.70312-17.578 0-5.5312 0.23438-11.062 0.60938-16.547 0.14062-1.7812 0.375-3.6094 0.46875-5.5312 0.375-3.6094 0.60938-7.2188 1.0781-10.781 0.23438-2.1562 0.70312-4.2188 1.0781-6.375 0.46875-3.2344 0.9375-6.4688 1.6875-9.7031 0.46875-2.2969 1.0781-4.4531 1.5469-6.7031 0.70312-3.1406 1.3125-6.1406 2.1562-9.1406 0.60938-2.2969 1.3125-4.5469 2.0625-6.8438 0.84375-2.8594 1.6875-5.8594 2.625-8.7656 0.70312-2.2969 1.6875-4.5469 2.5312-6.7031 1.0781-2.7656 2.0625-5.625 3.1406-8.3906 0.9375-2.2969 1.9219-4.4531 3-6.7031 1.2188-2.625 2.3906-5.3906 3.7031-8.0625 1.0781-2.1562 2.2969-4.3125 3.375-6.4688 1.3125-2.625 2.625-5.1562 4.0781-7.6875 1.2188-2.1562 2.5312-4.3125 3.8438-6.375 1.5469-2.5312 3-4.9219 4.5469-7.3125 1.3125-2.0625 2.8594-4.0781 4.3125-6.2344 1.6875-2.3906 3.2344-4.6875 5.0625-6.9375 1.5469-2.0625 3.1406-3.9375 4.6875-5.8594 1.7812-2.2969 3.6094-4.4531 5.3906-6.6094 1.6875-1.9219 3.375-3.8438 5.0625-5.625 1.9219-2.1562 3.8438-4.2188 5.8594-6.2344 1.7812-1.7812 3.6094-3.6094 5.5312-5.3906 2.0625-1.9219 4.0781-3.9375 6.2344-5.8594 1.9219-1.6875 3.8438-3.375 5.8594-5.0625 2.1562-1.7812 4.3125-3.7031 6.6094-5.3906 2.0625-1.5469 4.2188-3.1406 6.2344-4.6875 2.2969-1.6875 4.5469-3.375 6.9375-5.0625 2.1562-1.4531 4.4531-2.8594 6.6094-4.3125 1.4531-0.9375 2.7656-1.9219 4.2188-2.7656v-32.531c0-13.922 5.625-27.469 15.469-37.453 5.3906-5.3906 8.5312-12.844 8.5312-20.391v-56.391c0-55.312-27.469-106.55-73.312-137.16l-45-30c-16.219-11.109-25.828-29.109-25.828-48.328v-11.625h-120v11.625c0 19.219-9.6094 37.219-25.547 47.859l-45 30c-45.984 30.656-73.453 81.891-73.453 137.21v56.391c0 7.5469 3.1406 15 8.5312 20.391 2.625 2.625 4.7812 5.3906 6.8438 8.5312h212.63c6.6094 0 12 5.3906 12 12s-5.3906 12-12 12h-204.47c0.14063 1.6875 0.46875 3.2344 0.46875 4.9219v230.16c0 1.6875-0.375 3.2344-0.46875 4.9219h132.47c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-140.63c-1.9219 3-4.2188 5.8594-6.8438 8.5312-5.3906 5.3906-8.5312 12.844-8.5312 20.391v151.55c0 19.547 15.938 35.531 35.531 35.531h336.94c8.0625 0 15.609-2.625 21.75-7.3125zm349.18-208.69h-11.391c-6.6094 0-12-5.3906-12-12s5.3906-12 12-12h11.391c-6.0938-116.16-99.234-209.29-215.39-215.39v11.391c0 6.6094-5.3906 12-12 12s-12-5.3906-12-12v-11.625c-35.859 1.9219-70.922 12.234-102 30.234-4.4531 2.5312-8.625 5.1562-12.844 8.0625-49.453 33.141-83.625 84.234-96 141.71-1.2188 5.7656-2.3906 11.625-3.1406 17.531-0.84375 6-1.3125 12-1.5469 18.141l11.531-0.046876c6.6094 0 12 5.3906 12 12 0 6.6094-5.3906 12-12 12h-11.531c4.4531 82.922 54.375 158.29 129.94 194.16 27.141 12.844 55.781 20.062 85.547 21.609l0.046875-11.766c0-6.6094 5.3906-12 12-12s12 5.3906 12 12v11.391c116.16-6.0938 209.29-99.234 215.39-215.39zm-239.39-493.55c0-64.219 62.297-137.06 99.469-174.84 2.2969-2.2969 5.2969-3.6094 8.5312-3.6094s6.375 1.3125 8.5312 3.6094c45.328 46.078 99.469 113.86 99.469 174.84 0 60.328-48.469 109.55-108 109.55s-108-49.219-108-109.55zm24 0c0 47.156 37.688 85.547 84 85.547s84-38.391 84-85.547c0-51.234-49.219-112.31-84-149.16-53.531 56.625-84 110.48-84 149.16z'/> </g></svg>");
}

/* ── END ICON LIBRARY v9.0 ────────────────────────────────────── */