/* =========================================================================
   Per-cookie art dials — the single source for BOTH the Cookie-Dex grid card
   and the cookie profile portrait.
   =========================================================================

   Consolidated 2026-08-26 from three maps that used to disagree:
   styles-card-dials.generated.css, styles-card-dials.mobile-comfy-overrides.css
   (which silently superseded the first for every cookie's phone values), and an
   inline copy inside styles-profile-page.css. One number now lives in one place.

   WHAT A DIAL IS
   Three values — an x nudge, a y nudge, a scale multiplier — nudging art that is
   already roughly placed by the base rules. Each is stored per cookie, per
   context, and a routing block below picks which context is live.

   THE CARD DIALS ARE MULTIPLIED, THE PROFILE DIALS ARE NOT.
   A card dial is scaled down by a per-context factor before it reaches the
   image, so the stored numbers are much larger than the movement they cause:
       compact        x1      (full strength; values sit near 0)
       comfy >=700px  x0.30   x / x0.35 y / x0.20 scale   (values around 50)
       comfy <=699px  x0.16   x / x0.18 y / x0.10 scale   (values in the hundreds)
   The factors live with the rules that consume them, in styles-responsive.css
   and assets/css/dex-cookie-card.css. Profile dials read straight through, so
   those numbers are real pixels.

   LOAD ORDER MATTERS ON THE PROFILE PAGE.
   Load this file BEFORE styles-profile-page.css. That file's <=324px
   splitscreen rule lifts every portrait a further 30px by re-declaring
   --profile-art-dial-y at the same specificity as the routing block below;
   it only keeps winning while it comes later.

   EVERY PAGE THAT RENDERS A COOKIE CARD NEEDS THIS FILE — the Dex, the team
   builder, the arena and guild hubs, /embed/, community guides and the baked
   event pages all draw the comfy card below 700px.

   ADDING A COOKIE
   Every cookie in data/cookies.json must appear below, even at neutral values,
   or its art silently falls back to defaults with nothing to tune in DevTools.
   Copy the block for a neighbouring cookie, keep the list alphabetical (sorted
   by id with hyphens ignored), and set what needs setting. `npm run check:dials`
   enforces coverage; `npm run check:dials -- --fix` appends neutral blocks for
   anything missing.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1) Card channel routing — density x breakpoint picks ONE stored channel.
   Mobile falls back to the desktop channel when a cookie sets no mobile value.
   ------------------------------------------------------------------------- */
body:not([data-density="compact"]) .cookie-card {
  --cookie-art-dial-x: var(--cookie-art-dial-x-comfy, 0px);
  --cookie-art-dial-y: var(--cookie-art-dial-y-comfy, 0px);
  --cookie-art-dial-scale: var(--cookie-art-dial-scale-comfy, 1);
}

body[data-density="compact"] .cookie-card {
  --cookie-art-dial-x: var(--cookie-art-dial-x-compact, 0px);
  --cookie-art-dial-y: var(--cookie-art-dial-y-compact, 0px);
  --cookie-art-dial-scale: var(--cookie-art-dial-scale-compact, 1);
}

@media (max-width: 699px) {
  body:not([data-density="compact"]) .cookie-card {
    --cookie-art-dial-x: var(--cookie-art-dial-x-comfy-mobile, var(--cookie-art-dial-x-comfy, 0px));
    --cookie-art-dial-y: var(--cookie-art-dial-y-comfy-mobile, var(--cookie-art-dial-y-comfy, 0px));
    --cookie-art-dial-scale: var(
      --cookie-art-dial-scale-comfy-mobile,
      var(--cookie-art-dial-scale-comfy, 1)
    );
  }
  /* Compact keeps one channel at every width. A -compact-mobile channel existed
     here until 2026-08-26 and no cookie ever set a value in it. */
}

/* -------------------------------------------------------------------------
   2) Profile portrait routing — breakpoint picks ONE stored channel.
   The intermediate band is optional and falls back to desktop; only a handful
   of cookies need it.
   ------------------------------------------------------------------------- */
.dex-profile {
  --profile-art-dial-x: 0px;
  --profile-art-dial-y: 0px;
  --profile-art-dial-scale: 1;
}

@media (min-width: 700px) {
  .dex-profile {
    --profile-art-dial-x: var(--profile-art-dial-x-desktop, 0px);
    --profile-art-dial-y: var(--profile-art-dial-y-desktop, 0px);
    --profile-art-dial-scale: var(--profile-art-dial-scale-desktop, 1);
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .dex-profile {
    --profile-art-dial-x: var(--profile-art-dial-x-intermediate, var(--profile-art-dial-x-desktop, 0px));
    --profile-art-dial-y: var(--profile-art-dial-y-intermediate, var(--profile-art-dial-y-desktop, 0px));
    --profile-art-dial-scale: var(--profile-art-dial-scale-intermediate, var(--profile-art-dial-scale-desktop, 1));
  }
}

@media (max-width: 699px) {
  .dex-profile {
    --profile-art-dial-x: var(--profile-art-dial-x-mobile, 0px);
    --profile-art-dial-y: var(--profile-art-dial-y-mobile, 0px);
    --profile-art-dial-scale: var(--profile-art-dial-scale-mobile, 1);
  }
}

/* -------------------------------------------------------------------------
   3) Per-cookie dials. One group per cookie: the grid card first, then the
   profile portrait. Alphabetical by id, hyphens ignored.
   ------------------------------------------------------------------------- */
/* >>> COOKIE ART DIALS >>> */
/* Adventurer Cookie */
.cookie-card[data-cookie-id="adventurer-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 98px;
  --cookie-art-dial-y-comfy: 90px;
  --cookie-art-dial-scale-comfy: 2.0;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 238px;
  --cookie-art-dial-y-comfy-mobile: 260px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="adventurer-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -70px;
  --profile-art-dial-scale-mobile: 0.8;
}

/* Affogato Cookie */
.cookie-card[data-cookie-id="affogato-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: -70px;
  --cookie-art-dial-y-comfy: 50px;
  --cookie-art-dial-scale-comfy: 3.0;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: -108px;
  --cookie-art-dial-y-comfy-mobile: 320px;
  --cookie-art-dial-scale-comfy-mobile: 14.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="affogato-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 1.0;
}

/* Agar Agar Cookie */
.cookie-card[data-cookie-id="agar-agar-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 40px;
  --cookie-art-dial-y-comfy: -10px;
  --cookie-art-dial-scale-comfy: 1.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 18px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 11.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="agar-agar-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 30px;
  --profile-art-dial-y-desktop: 50px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Alchemist Cookie */
.cookie-card[data-cookie-id="alchemist-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 40px;
  --cookie-art-dial-y-comfy: -40px;
  --cookie-art-dial-scale-comfy: 1.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 48px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="alchemist-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 20px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -50px;
  --profile-art-dial-scale-mobile: 0.8;
}

/* Almond Cookie */
.cookie-card[data-cookie-id="almond-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 20px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: -28px;
  --cookie-art-dial-y-comfy-mobile: 328px;
  --cookie-art-dial-scale-comfy-mobile: 12.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="almond-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 60px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Ananas Dragon Cookie */
.cookie-card[data-cookie-id="ananas-dragon-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 80px;
  --cookie-art-dial-y-comfy: 20px;
  --cookie-art-dial-scale-comfy: 1.6;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 180px;
  --cookie-art-dial-y-comfy-mobile: 60px;
  --cookie-art-dial-scale-comfy-mobile: 5;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="ananas-dragon-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Angel Cookie */
.cookie-card[data-cookie-id="angel-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 40px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.4;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 18px;
  --cookie-art-dial-y-comfy-mobile: 200px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="angel-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 60px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Ash Salt Cookie */
.cookie-card[data-cookie-id="ash-salt-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 94px;
  --cookie-art-dial-scale-comfy: 2.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 280px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="ash-salt-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 60px;
  --profile-art-dial-y-desktop: 80px;
  --profile-art-dial-scale-desktop: 1.1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 50px;
  --profile-art-dial-y-mobile: 50px;
  --profile-art-dial-scale-mobile: 1.3;
}

/* Asphodel Cookie */
.cookie-card[data-cookie-id="asphodel-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="asphodel-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -40px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -40px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 1;
}

/* Avocado Cookie */
.cookie-card[data-cookie-id="avocado-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 30px;
  --cookie-art-dial-y-comfy: 50px;
  --cookie-art-dial-scale-comfy: 2;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 240px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="avocado-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Beet Cookie */
.cookie-card[data-cookie-id="beet-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: -20px;
  --cookie-art-dial-y-comfy: 30px;
  --cookie-art-dial-scale-comfy: 2.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 9.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="beet-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: -40px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -60px;
  --profile-art-dial-scale-mobile: 0.85;
}

/* Blackberry Cookie */
.cookie-card[data-cookie-id="blackberry-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 100px;
  --cookie-art-dial-y-comfy: 50px;
  --cookie-art-dial-scale-comfy: 2.0;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 210px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="blackberry-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: -40px;
  --profile-art-dial-scale-desktop: 0.75;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Black Forest Cookie */
.cookie-card[data-cookie-id="black-forest-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 20px;
  --cookie-art-dial-y-comfy: 50px;
  --cookie-art-dial-scale-comfy: 1.9;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 8px;
  --cookie-art-dial-y-comfy-mobile: 200px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="black-forest-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -40px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Black Lemonade Cookie */
.cookie-card[data-cookie-id="black-lemonade-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 100px;
  --cookie-art-dial-y-comfy: 60px;
  --cookie-art-dial-scale-comfy: 1.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 218px;
  --cookie-art-dial-y-comfy-mobile: 380px;
  --cookie-art-dial-scale-comfy-mobile: 12.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="black-lemonade-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 80px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 50px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.8;
}

/* Black Pearl Cookie */
.cookie-card[data-cookie-id="black-pearl-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 80px;
  --cookie-art-dial-y-comfy: 30px;
  --cookie-art-dial-scale-comfy: 2.8;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 200px;
  --cookie-art-dial-y-comfy-mobile: 260px;
  --cookie-art-dial-scale-comfy-mobile: 15.8;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="black-pearl-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -10px;
  --profile-art-dial-y-desktop: -30px;
  --profile-art-dial-scale-desktop: 0.85;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Black Raisin Cookie */
.cookie-card[data-cookie-id="black-raisin-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 100px;
  --cookie-art-dial-y-comfy: -30px;
  --cookie-art-dial-scale-comfy: 1.8;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="black-raisin-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 20px;
  --profile-art-dial-y-desktop: -30px;
  --profile-art-dial-scale-desktop: 0.85;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Black Sapphire Cookie */
.cookie-card[data-cookie-id="black-sapphire-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 80px;
  --cookie-art-dial-y-comfy: 50px;
  --cookie-art-dial-scale-comfy: 1.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 218px;
  --cookie-art-dial-y-comfy-mobile: 230px;
  --cookie-art-dial-scale-comfy-mobile: 9.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="black-sapphire-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: -20px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Blueberry Pie Cookie */
.cookie-card[data-cookie-id="blueberry-pie-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 80px;
  --cookie-art-dial-y-comfy: 2px;
  --cookie-art-dial-scale-comfy: 1.4;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="blueberry-pie-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 60px;
  --profile-art-dial-y-desktop: 60px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1.25;
}

/* Burning Spice Cookie */
.cookie-card[data-cookie-id="burning-spice-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: -40px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 48px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: -20px;
  --cookie-art-dial-scale-compact: 1.2;
}

body.dex-profile[data-profile-cookie-id="burning-spice-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 40px;
  --profile-art-dial-scale-desktop: 1.1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Burnt Cheese Cookie */
.cookie-card[data-cookie-id="burnt-cheese-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 50px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.2;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="burnt-cheese-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -40px;
  --profile-art-dial-y-desktop: -40px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Butter Roll Cookie */
.cookie-card[data-cookie-id="butter-roll-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 60px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.5;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="butter-roll-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 40px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Camellia Cookie */
.cookie-card[data-cookie-id="camellia-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 80px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.4;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 240px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="camellia-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 40px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Candy Apple Cookie */
.cookie-card[data-cookie-id="candy-apple-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 60px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 0.9;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 260px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="candy-apple-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Candy Diver Cookie */
.cookie-card[data-cookie-id="candy-diver-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 100px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.2;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 268px;
  --cookie-art-dial-y-comfy-mobile: 240px;
  --cookie-art-dial-scale-comfy-mobile: 8.8;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="candy-diver-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.85;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Capsaicin Cookie */
.cookie-card[data-cookie-id="capsaicin-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 60px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.4;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="capsaicin-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 1;
}

/* Captain Caviar Cookie */
.cookie-card[data-cookie-id="captain-caviar-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 80px;
  --cookie-art-dial-y-comfy: -20px;
  --cookie-art-dial-scale-comfy: 1.4;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 9.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="captain-caviar-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 1;
}

/* Caramel Arrow Cookie */
.cookie-card[data-cookie-id="caramel-arrow-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 80px;
  --cookie-art-dial-y-comfy: -30px;
  --cookie-art-dial-scale-comfy: 1.3;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="caramel-arrow-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Caramel Choux Cookie */
.cookie-card[data-cookie-id="caramel-choux-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="caramel-choux-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Carol Cookie */
.cookie-card[data-cookie-id="carol-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="carol-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 1;
}

/* Carrot Cookie */
.cookie-card[data-cookie-id="carrot-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="carrot-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Charcoal Cookie */
.cookie-card[data-cookie-id="charcoal-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 84px;
  --cookie-art-dial-y-comfy: -20px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 238px;
  --cookie-art-dial-y-comfy-mobile: 130px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="charcoal-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Cherry Blossom Cookie */
.cookie-card[data-cookie-id="cherry-blossom-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 74px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.47;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cherry-blossom-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Cherry Cookie */
.cookie-card[data-cookie-id="cherry-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cherry-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -60px;
  --profile-art-dial-y-mobile: -60px;
  --profile-art-dial-scale-mobile: 1;
}

/* Chess Choco Cookie */
.cookie-card[data-cookie-id="chess-choco-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: -34px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 50px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="chess-choco-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Chili Pepper Cookie */
.cookie-card[data-cookie-id="chili-pepper-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="chili-pepper-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 40px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Choco Drizzle Cookie */
.cookie-card[data-cookie-id="choco-drizzle-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 210px;
  --cookie-art-dial-scale-comfy-mobile: 9.6;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="choco-drizzle-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Clotted Cream Cookie */
.cookie-card[data-cookie-id="clotted-cream-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 48px;
  --cookie-art-dial-y-comfy-mobile: 280px;
  --cookie-art-dial-scale-comfy-mobile: 9.4;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="clotted-cream-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Cloud Haetae Cookie */
.cookie-card[data-cookie-id="cloud-haetae-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 168px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cloud-haetae-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Clover Cookie */
.cookie-card[data-cookie-id="clover-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="clover-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Cocoa Cookie */
.cookie-card[data-cookie-id="cocoa-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cocoa-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -36px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 1;
}

/* Cotton Cookie */
.cookie-card[data-cookie-id="cotton-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cotton-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Cream Ferret Cookie */
.cookie-card[data-cookie-id="cream-ferret-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 208px;
  --cookie-art-dial-y-comfy-mobile: 80px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cream-ferret-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Cream Puff Cookie */
.cookie-card[data-cookie-id="cream-puff-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 160px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cream-puff-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 40px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Cream Soda Cookie */
.cookie-card[data-cookie-id="cream-soda-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cream-soda-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 60px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Cream Unicorn Cookie */
.cookie-card[data-cookie-id="cream-unicorn-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="cream-unicorn-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 1;
}

/* Creme Brulee Cookie */
.cookie-card[data-cookie-id="creme-brulee-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 74px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="creme-brulee-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: 30px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Crimson Coral Cookie */
.cookie-card[data-cookie-id="crimson-coral-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 220px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="crimson-coral-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Croissant Cookie */
.cookie-card[data-cookie-id="croissant-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 124px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="croissant-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Crunchy Chip Cookie */
.cookie-card[data-cookie-id="crunchy-chip-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="crunchy-chip-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -40px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Custard Cookie III */
.cookie-card[data-cookie-id="custard-cookie-iii"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="custard-cookie-iii"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Dark Cacao Cookie */
.cookie-card[data-cookie-id="dark-cacao-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="dark-cacao-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 50px;
  --profile-art-dial-y-desktop: 60px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 30px;
  --profile-art-dial-y-intermediate: 30px;
  --profile-art-dial-scale-intermediate: 1.1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 40px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Dark Cacao Cookie (Dragon Lord) */
.cookie-card[data-cookie-id="dark-cacao-cookie-dragon-lord"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 18px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="dark-cacao-cookie-dragon-lord"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 100px;
  --profile-art-dial-y-desktop: 50px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 60px;
  --profile-art-dial-y-intermediate: 20px;
  --profile-art-dial-scale-intermediate: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 50px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Dark Choco Cookie */
.cookie-card[data-cookie-id="dark-choco-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="dark-choco-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Dark Enchantress Cookie */
.cookie-card[data-cookie-id="dark-enchantress-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: -100px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 12.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: -20px;
  --cookie-art-dial-scale-compact: 1.24;
}

body.dex-profile[data-profile-cookie-id="dark-enchantress-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 50px;
  --profile-art-dial-y-desktop: 60px;
  --profile-art-dial-scale-desktop: 1.1;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 30px;
  --profile-art-dial-y-intermediate: 0px;
  --profile-art-dial-scale-intermediate: 1.1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 24px;
  --profile-art-dial-y-mobile: 10px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Devil Cookie */
.cookie-card[data-cookie-id="devil-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="devil-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Doughael */
.cookie-card[data-cookie-id="doughael"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 116px;
  --cookie-art-dial-y-comfy: -14px;
  --cookie-art-dial-scale-comfy: 2.0;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 60px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="doughael"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Eclair Cookie */
.cookie-card[data-cookie-id="eclair-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="eclair-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Elder Faerie Cookie */
.cookie-card[data-cookie-id="elder-faerie-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="elder-faerie-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Espresso Cookie */
.cookie-card[data-cookie-id="espresso-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 220px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="espresso-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -50px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Eternal Sugar Cookie */
.cookie-card[data-cookie-id="eternal-sugar-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 80px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="eternal-sugar-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 80px;
  --profile-art-dial-y-desktop: 50px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 50px;
  --profile-art-dial-y-mobile: 30px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Fettuccine Cookie */
.cookie-card[data-cookie-id="fettuccine-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="fettuccine-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Fig Cookie */
.cookie-card[data-cookie-id="fig-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="fig-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Financier */
.cookie-card[data-cookie-id="financier"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="financier"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Fire Spirit Cookie */
.cookie-card[data-cookie-id="fire-spirit-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="fire-spirit-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 80px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Frilled Jellyfish Cookie */
.cookie-card[data-cookie-id="frilled-jellyfish-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="frilled-jellyfish-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Frost Queen Cookie */
.cookie-card[data-cookie-id="frost-queen-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="frost-queen-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 10px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* GingerBrave */
.cookie-card[data-cookie-id="gingerbrave"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 94px;
  --cookie-art-dial-y-comfy: 84px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 248px;
  --cookie-art-dial-y-comfy-mobile: 240px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="gingerbrave"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Golden Cheese Cookie */
.cookie-card[data-cookie-id="golden-cheese-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.2;
}

body.dex-profile[data-profile-cookie-id="golden-cheese-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 18px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 30px;
  --profile-art-dial-y-intermediate: -40px;
  --profile-art-dial-scale-intermediate: 1.1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 18px;
  --profile-art-dial-y-mobile: -60px;
  --profile-art-dial-scale-mobile: 1.3;
}

/* Golden Cheese Cookie (Immortal) */
.cookie-card[data-cookie-id="golden-cheese-cookie-immortal"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: -14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 28px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="golden-cheese-cookie-immortal"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -40px;
  --profile-art-dial-y-desktop: 15px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 0px;
  --profile-art-dial-y-intermediate: -30px;
  --profile-art-dial-scale-intermediate: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -3px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Golden Osmanthus Cookie */
.cookie-card[data-cookie-id="golden-osmanthus-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="golden-osmanthus-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Grapefruit Cookie */
.cookie-card[data-cookie-id="grapefruit-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 94px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="grapefruit-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Green Tea Mousse Cookie */
.cookie-card[data-cookie-id="green-tea-mousse-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="green-tea-mousse-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Gumball Cookie */
.cookie-card[data-cookie-id="gumball-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="gumball-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Herb Cookie */
.cookie-card[data-cookie-id="herb-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 248px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="herb-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Hollyberry Cookie */
.cookie-card[data-cookie-id="hollyberry-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="hollyberry-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 0px;
  --profile-art-dial-y-intermediate: -40px;
  --profile-art-dial-scale-intermediate: 0.8;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Hollyberry Cookie (Aegis) */
.cookie-card[data-cookie-id="hollyberry-cookie-aegis"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 10px;
  --cookie-art-dial-y-comfy: -34px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: -68px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="hollyberry-cookie-aegis"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 40px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 0px;
  --profile-art-dial-y-intermediate: 0px;
  --profile-art-dial-scale-intermediate: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Icicle Yeti Cookie */
.cookie-card[data-cookie-id="icicle-yeti-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="icicle-yeti-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Jagae Cookie */
.cookie-card[data-cookie-id="jagae-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 28px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: -10px;
  --cookie-art-dial-scale-compact: 1.4;
}

body.dex-profile[data-profile-cookie-id="jagae-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Knight Cookie */
.cookie-card[data-cookie-id="knight-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="knight-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Kouign-Amann Cookie */
.cookie-card[data-cookie-id="kouign-amann-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="kouign-amann-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.85;
}

/* Kumiho Cookie */
.cookie-card[data-cookie-id="kumiho-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="kumiho-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Latte Cookie */
.cookie-card[data-cookie-id="latte-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="latte-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Lemon Cookie */
.cookie-card[data-cookie-id="lemon-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 34px;
  --cookie-art-dial-scale-comfy: 1.87;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 218px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="lemon-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Licorice Cookie */
.cookie-card[data-cookie-id="licorice-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="licorice-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Lilac Cookie */
.cookie-card[data-cookie-id="lilac-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 198px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="lilac-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 110px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Lime Cookie */
.cookie-card[data-cookie-id="lime-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="lime-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Linzer Cookie */
.cookie-card[data-cookie-id="linzer-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 124px;
  --cookie-art-dial-y-comfy: 24px;
  --cookie-art-dial-scale-comfy: 1.87;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="linzer-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Litmus Cookie */
.cookie-card[data-cookie-id="litmus-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 120px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.6;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 160px;
  --cookie-art-dial-y-comfy-mobile: 20px;
  --cookie-art-dial-scale-comfy-mobile: 4.6;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="litmus-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Macaron Cookie */
.cookie-card[data-cookie-id="macaron-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="macaron-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Madeleine Cookie */
.cookie-card[data-cookie-id="madeleine-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="madeleine-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 60px;
  --profile-art-dial-y-desktop: 160px;
  --profile-art-dial-scale-desktop: 1.2;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 40px;
  --profile-art-dial-y-mobile: 40px;
  --profile-art-dial-scale-mobile: 1.15;
}

/* Mala Sauce Cookie */
.cookie-card[data-cookie-id="mala-sauce-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="mala-sauce-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Mango Cookie */
.cookie-card[data-cookie-id="mango-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="mango-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 40px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Manju Cookie */
.cookie-card[data-cookie-id="manju-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="manju-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Marshmallow Bunny Cookie */
.cookie-card[data-cookie-id="marshmallow-bunny-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 78px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="marshmallow-bunny-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Matcha Cookie */
.cookie-card[data-cookie-id="matcha-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="matcha-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Menthol Cookie */
.cookie-card[data-cookie-id="menthol-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="menthol-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Mercurial Knight Cookie  */
.cookie-card[data-cookie-id="mercurial-knight-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="mercurial-knight-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Milk Cookie */
.cookie-card[data-cookie-id="milk-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="milk-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Milky Way Cookie */
.cookie-card[data-cookie-id="milky-way-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="milky-way-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Millennial Tree Cookie */
.cookie-card[data-cookie-id="millennial-tree-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.47;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 130px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="millennial-tree-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -100px;
  --profile-art-dial-y-desktop: -30px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -60px;
  --profile-art-dial-y-mobile: -28px;
  --profile-art-dial-scale-mobile: 1.05;
}

/* Mint Choco Cookie */
.cookie-card[data-cookie-id="mint-choco-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="mint-choco-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Mold Dough Cookie */
.cookie-card[data-cookie-id="mold-dough-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 260px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="mold-dough-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Moonlight Cookie */
.cookie-card[data-cookie-id="moonlight-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 138px;
  --cookie-art-dial-y-comfy-mobile: 220px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="moonlight-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Moon Rabbit Cookie */
.cookie-card[data-cookie-id="moon-rabbit-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="moon-rabbit-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Mozzarella Cookie */
.cookie-card[data-cookie-id="mozzarella-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="mozzarella-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Muscle Cookie */
.cookie-card[data-cookie-id="muscle-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="muscle-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Mystic Flour Cookie */
.cookie-card[data-cookie-id="mystic-flour-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="mystic-flour-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -30px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.85;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Nether Queen Cookie */
.cookie-card[data-cookie-id="nether-queen-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="nether-queen-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 80px;
  --profile-art-dial-scale-desktop: 1.2;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 40px;
  --profile-art-dial-scale-mobile: 1.4;
}

/* Ninja Cookie */
.cookie-card[data-cookie-id="ninja-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 124px;
  --cookie-art-dial-y-comfy: 34px;
  --cookie-art-dial-scale-comfy: 1.87;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="ninja-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Nutmeg Tiger Cookie */
.cookie-card[data-cookie-id="nutmeg-tiger-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 9.2;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="nutmeg-tiger-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Okchun Cookie */
.cookie-card[data-cookie-id="okchun-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 34px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="okchun-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -40px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Olive Cookie */
.cookie-card[data-cookie-id="olive-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 74px;
  --cookie-art-dial-y-comfy: 34px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="olive-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Onion Cookie */
.cookie-card[data-cookie-id="onion-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="onion-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Orange Cookie */
.cookie-card[data-cookie-id="orange-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 84px;
  --cookie-art-dial-y-comfy: 24px;
  --cookie-art-dial-scale-comfy: 1.87;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 9.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="orange-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Oyster Cookie */
.cookie-card[data-cookie-id="oyster-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 158px;
  --cookie-art-dial-y-comfy-mobile: 290px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="oyster-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pancake Cookie */
.cookie-card[data-cookie-id="pancake-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pancake-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Parfait Cookie */
.cookie-card[data-cookie-id="parfait-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: -14px;
  --cookie-art-dial-scale-comfy: 1.47;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 208px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="parfait-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pastry Cookie */
.cookie-card[data-cookie-id="pastry-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pastry-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pavlova Cookie */
.cookie-card[data-cookie-id="pavlova-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 80px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pavlova-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 1;
}

/* Peach Blossom Cookie */
.cookie-card[data-cookie-id="peach-blossom-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="peach-blossom-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Peppermint Cookie */
.cookie-card[data-cookie-id="peppermint-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="peppermint-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Pinecone Cookie */
.cookie-card[data-cookie-id="pinecone-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 60px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pinecone-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pitaya Dragon Cookie */
.cookie-card[data-cookie-id="pitaya-dragon-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pitaya-dragon-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 70px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: 10px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Poison Mushroom Cookie */
.cookie-card[data-cookie-id="poison-mushroom-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="poison-mushroom-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -28px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Pomegranate Cookie */
.cookie-card[data-cookie-id="pomegranate-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pomegranate-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Pom Pom Dough Cookie */
.cookie-card[data-cookie-id="pom-pom-dough-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 4px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 68px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pom-pom-dough-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: -60px;
  --profile-art-dial-scale-desktop: 0.85;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -50px;
  --profile-art-dial-scale-mobile: 1.0;
}

/* Povidone-Iodine Cookie */
.cookie-card[data-cookie-id="povidone-iodine-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 0px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 68px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="povidone-iodine-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 60px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.0;
}

/* Princess Cookie */
.cookie-card[data-cookie-id="princess-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="princess-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Prophet Cookie */
.cookie-card[data-cookie-id="prophet-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="prophet-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Prune Juice Cookie */
.cookie-card[data-cookie-id="prune-juice-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="prune-juice-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 12px;
  --profile-art-dial-y-mobile: -24px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pudding à la Mode Cookie */
.cookie-card[data-cookie-id="pudding-la-mode-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pudding-la-mode-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: -20px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pulpo Cookie */
.cookie-card[data-cookie-id="pulpo-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 40px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.8;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 80px;
  --cookie-art-dial-y-comfy-mobile: 80px;
  --cookie-art-dial-scale-comfy-mobile: 8;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1;
}

body.dex-profile[data-profile-cookie-id="pulpo-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pumpkin Pie Cookie */
.cookie-card[data-cookie-id="pumpkin-pie-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pumpkin-pie-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Pure Vanilla Cookie */
.cookie-card[data-cookie-id="pure-vanilla-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 60px;
  --cookie-art-dial-scale-comfy-mobile: 6.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: -12px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pure-vanilla-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 10px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 0px;
  --profile-art-dial-y-intermediate: -40px;
  --profile-art-dial-scale-intermediate: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 1;
}

/* Pure Vanilla Cookie (Compassionate) */
.cookie-card[data-cookie-id="pure-vanilla-cookie-compassionate"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: -34px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 78px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="pure-vanilla-cookie-compassionate"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 20px;
  --profile-art-dial-y-desktop: -10px;
  --profile-art-dial-scale-desktop: 0.8;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 0px;
  --profile-art-dial-y-intermediate: 0px;
  --profile-art-dial-scale-intermediate: 1.0;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 1;
}

/* Purple Yam Cookie */
.cookie-card[data-cookie-id="purple-yam-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 118px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="purple-yam-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Raspberry Cookie */
.cookie-card[data-cookie-id="raspberry-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="raspberry-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -50px;
  --profile-art-dial-y-mobile: 26px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Rebel Cookie */
.cookie-card[data-cookie-id="rebel-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="rebel-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Red Osmanthus Cookie */
.cookie-card[data-cookie-id="red-osmanthus-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="red-osmanthus-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Red Velvet Cookie */
.cookie-card[data-cookie-id="red-velvet-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 88px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="red-velvet-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 110px;
  --profile-art-dial-y-mobile: 50px;
  --profile-art-dial-scale-mobile: 1.3;
}

/* Rockstar Cookie */
.cookie-card[data-cookie-id="rockstar-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="rockstar-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 50px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Royal Margarine Cookie */
.cookie-card[data-cookie-id="royal-margarine-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="royal-margarine-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Rye Cookie */
.cookie-card[data-cookie-id="rye-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 64px;
  --cookie-art-dial-y-comfy: -14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="rye-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Salt Cellar Cookie */
.cookie-card[data-cookie-id="salt-cellar-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 68px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="salt-cellar-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Schwarzwälder */
.cookie-card[data-cookie-id="schwarzwlder"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="schwarzwlder"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 1;
}

/* Sea Fairy Cookie */
.cookie-card[data-cookie-id="sea-fairy-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: -34px;
  --cookie-art-dial-scale-comfy: 0.68;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 8px;
  --cookie-art-dial-y-comfy-mobile: 340px;
  --cookie-art-dial-scale-comfy-mobile: 12.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="sea-fairy-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -16px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Seltzer Cookie */
.cookie-card[data-cookie-id="seltzer-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 138px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="seltzer-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Shadow Milk Cookie */
.cookie-card[data-cookie-id="shadow-milk-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 10px;
  --cookie-art-dial-y-compact: -20px;
  --cookie-art-dial-scale-compact: 1.2;
}

body.dex-profile[data-profile-cookie-id="shadow-milk-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 50px;
  --profile-art-dial-scale-desktop: 0.9;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Sherbet Cookie */
.cookie-card[data-cookie-id="sherbet-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: -20px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="sherbet-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Shining Glitter Cookie */
.cookie-card[data-cookie-id="shining-glitter-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 168px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="shining-glitter-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Silent Salt Cookie */
.cookie-card[data-cookie-id="silent-salt-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 78px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.3;
}

body.dex-profile[data-profile-cookie-id="silent-salt-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 80px;
  --profile-art-dial-y-desktop: 80px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Silverbell Cookie */
.cookie-card[data-cookie-id="silverbell-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 114px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="silverbell-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Smoked Cheese Cookie */
.cookie-card[data-cookie-id="smoked-cheese-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 0px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 68px;
  --cookie-art-dial-y-comfy-mobile: 140px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="smoked-cheese-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -60px;
  --profile-art-dial-y-mobile: 30px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Snapdragon Cookie */
.cookie-card[data-cookie-id="snapdragon-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="snapdragon-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: -50px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Snow Sugar Cookie */
.cookie-card[data-cookie-id="snow-sugar-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 240px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="snow-sugar-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 40px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Sorbet Shark Cookie */
.cookie-card[data-cookie-id="sorbet-shark-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="sorbet-shark-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Space Doughnut */
.cookie-card[data-cookie-id="space-doughnut"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="space-doughnut"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -10px;
  --profile-art-dial-y-mobile: -10px;
  --profile-art-dial-scale-mobile: 0.92;
}

/* Sparkling Cookie */
.cookie-card[data-cookie-id="sparkling-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 124px;
  --cookie-art-dial-y-comfy: 64px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 228px;
  --cookie-art-dial-y-comfy-mobile: 220px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="sparkling-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Squid Ink Cookie */
.cookie-card[data-cookie-id="squid-ink-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 94px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="squid-ink-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Star Coral Cookie */
.cookie-card[data-cookie-id="star-coral-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 158px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="star-coral-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Stardust Cookie */
.cookie-card[data-cookie-id="stardust-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 158px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="stardust-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Stormbringer Cookie */
.cookie-card[data-cookie-id="stormbringer-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="stormbringer-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -40px;
  --profile-art-dial-y-mobile: 10px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Strawberry Cookie */
.cookie-card[data-cookie-id="strawberry-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 238px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="strawberry-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Strawberry Crepe Cookie */
.cookie-card[data-cookie-id="strawberry-crepe-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 158px;
  --cookie-art-dial-y-comfy-mobile: 120px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="strawberry-crepe-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -60px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Street Urchin Cookie */
.cookie-card[data-cookie-id="street-urchin-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="street-urchin-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Sugarfly Cookie */
.cookie-card[data-cookie-id="sugarfly-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="sugarfly-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Sugar Swan Cookie */
.cookie-card[data-cookie-id="sugar-swan-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="sugar-swan-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 60px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 0.85;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 50px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Tarte Tatin Cookie */
.cookie-card[data-cookie-id="tarte-tatin-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 20px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="tarte-tatin-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Tea Knight Cookie */
.cookie-card[data-cookie-id="tea-knight-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 108px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="tea-knight-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 80px;
  --profile-art-dial-y-mobile: 100px;
  --profile-art-dial-scale-mobile: 1.6;
}

/* Tiger Lily Cookie */
.cookie-card[data-cookie-id="tiger-lily-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 0px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 0px;
  --cookie-art-dial-y-comfy-mobile: 0px;
  --cookie-art-dial-scale-comfy-mobile: 1;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="tiger-lily-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Timekeeper Cookie */
.cookie-card[data-cookie-id="timekeeper-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 13px;
  --cookie-art-dial-y-comfy: 34px;
  --cookie-art-dial-scale-comfy: 2.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 128px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="timekeeper-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Time Shadow Cookie */
.cookie-card[data-cookie-id="time-shadow-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 60px;
  --cookie-art-dial-y-comfy: 0px;
  --cookie-art-dial-scale-comfy: 1.4;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 200px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 6;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1;
}

body.dex-profile[data-profile-cookie-id="time-shadow-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 40px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 1;
}

/* Twizzly Gummy Cookie */
.cookie-card[data-cookie-id="twizzly-gummy-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 58px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="twizzly-gummy-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 50px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Vampire Cookie */
.cookie-card[data-cookie-id="vampire-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 148px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="vampire-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* Venom Dough Cookie */
.cookie-card[data-cookie-id="venom-dough-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 8px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 48px;
  --cookie-art-dial-y-comfy-mobile: 60px;
  --cookie-art-dial-scale-comfy-mobile: 7.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="venom-dough-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -20px;
  --profile-art-dial-y-mobile: -40px;
  --profile-art-dial-scale-mobile: 1.0;
}

/* Wedding Cake Cookie */
.cookie-card[data-cookie-id="wedding-cake-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="wedding-cake-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: -20px;
  --profile-art-dial-scale-mobile: 0.9;
}

/* Werewolf Cookie */
.cookie-card[data-cookie-id="werewolf-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 68px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="werewolf-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: -30px;
  --profile-art-dial-y-mobile: -30px;
  --profile-art-dial-scale-mobile: 0.8;
}

/* White Lily Cookie */
.cookie-card[data-cookie-id="white-lily-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 58px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="white-lily-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 80px;
  --profile-art-dial-y-desktop: 75px;
  --profile-art-dial-scale-desktop: 1.0;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 20px;
  --profile-art-dial-y-intermediate: -20px;
  --profile-art-dial-scale-intermediate: 1.0;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 80px;
  --profile-art-dial-y-mobile: 65px;
  --profile-art-dial-scale-mobile: 1.4;
}

/* White Lily Cookie (Dawnbringer) */
.cookie-card[data-cookie-id="white-lily-cookie-dawnbringer"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: -24px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: -48px;
  --cookie-art-dial-y-comfy-mobile: 160px;
  --cookie-art-dial-scale-comfy-mobile: 10.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="white-lily-cookie-dawnbringer"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 40px;
  --profile-art-dial-y-desktop: 90px;
  --profile-art-dial-scale-desktop: 1.1;

  /* portrait, 701px - 1100px */
  --profile-art-dial-x-intermediate: 30px;
  --profile-art-dial-y-intermediate: 0px;
  --profile-art-dial-scale-intermediate: 1.1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 30px;
  --profile-art-dial-y-mobile: 40px;
  --profile-art-dial-scale-mobile: 1.5;
}

/* Wildberry Cookie */
.cookie-card[data-cookie-id="wildberry-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 104px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 208px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="wildberry-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 20px;
  --profile-art-dial-y-mobile: 20px;
  --profile-art-dial-scale-mobile: 1.2;
}

/* Wind Archer Cookie */
.cookie-card[data-cookie-id="wind-archer-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 53px;
  --cookie-art-dial-y-comfy: 14px;
  --cookie-art-dial-scale-comfy: 1.67;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 180px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="wind-archer-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: -30px;
  --profile-art-dial-y-desktop: 30px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1.1;
}

/* Wizard Cookie */
.cookie-card[data-cookie-id="wizard-cookie"] {
  /* comfy, desktop */
  --cookie-art-dial-x-comfy: 124px;
  --cookie-art-dial-y-comfy: -24px;
  --cookie-art-dial-scale-comfy: 1.57;

  /* comfy, <= 699px */
  --cookie-art-dial-x-comfy-mobile: 188px;
  --cookie-art-dial-y-comfy-mobile: 100px;
  --cookie-art-dial-scale-comfy-mobile: 8.0;

  /* compact, both widths */
  --cookie-art-dial-x-compact: 0px;
  --cookie-art-dial-y-compact: 0px;
  --cookie-art-dial-scale-compact: 1.0;
}

body.dex-profile[data-profile-cookie-id="wizard-cookie"] {
  /* portrait, >= 700px */
  --profile-art-dial-x-desktop: 0px;
  --profile-art-dial-y-desktop: 0px;
  --profile-art-dial-scale-desktop: 1;

  /* portrait, <= 699px */
  --profile-art-dial-x-mobile: 0px;
  --profile-art-dial-y-mobile: 0px;
  --profile-art-dial-scale-mobile: 1;
}

/* <<< COOKIE ART DIALS <<< */
