.openReactionContentReports {
  padding: 0.5rem 1rem;
  margin-block: 0.5rem;
  color: var(--base-paragraph-text-color);
  background-color: var(--surface-warning-color);
  border: 1px solid var(--border-warning-color);
  border-radius: var(--border-radius-medium);
}

.openReactionContentReports p {
    margin: 0;
  }

:is(.openReactionContentReports p) .icon {
      --icon-color: var(--text-notice-message-color);

      margin-inline-end: 0.25rem;
    }

.openReactionContentReports ul {
    padding: 0;
    margin: 0.5rem 0 0;
    list-style: none;
  }

#commentColumn .openReactionContentReports {
    box-sizing: border-box;
    max-width: calc(var(--layout-width-centered-content) + 20px);
  }
/**
 * Styling for user-generated content, e.g. comments, V&A ads, productreviews etd.
 *
 * Also used in the wysiwyg-editor.
 */
.ugcContent {
  font-size: var(--font-size-content);
  line-height: 1.6;
  overflow-wrap: break-word;
}
.ugcContent a {
    color: var(--text-link-color);
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
:is(.ugcContent a):hover {
      color: var(--text-link-hover-color);
    }
/* Block margins */
.ugcContent blockquote,.ugcContent ul,.ugcContent ol,.ugcContent hr,.ugcContent table.rml,.ugcContent .edit,.ugcContent .offtopic,.ugcContent div:has( > .spoiler),.ugcContent div:has( > .membersonly),.ugcContent div.code,.ugcContent div.toc,.ugcContent div.video-container,.ugcContent div[class*="align-"] {
    margin-block: 1rem;
  }
/* Remove margins in certain situations where they don't collapse */
:is(.ugcContent td,.ugcContent th,.ugcContent li,.ugcContent blockquote .message-quote-div,.ugcContent fieldset.modbreak) > :first-child {
      margin-block-start: 0 !important;
    }
:is(.ugcContent td,.ugcContent th,.ugcContent li,.ugcContent blockquote .message-quote-div,.ugcContent fieldset.modbreak) > :last-child {
      margin-block-end: 0 !important;
    }
.ugcContent blockquote {
    padding-left: 0.5rem;
    margin-inline: 1rem 0;
    color: var(--tertiary-paragraph-text-color);
    border-left: 0.1875rem solid var(--border-base-color);
  }
.single-item:is(.ugcContent ul) {
      margin: 0;
    }
.rml-list:is(.ugcContent ul),.list-disc:is(.ugcContent ul) {
      list-style-type: disc;
    }
.list-square:is(.ugcContent ul) {
      list-style-type: square;
    }
.list-circle:is(.ugcContent ul) {
      list-style-type: circle;
    }
.rml-list:is(.ugcContent ol),.list-decimal:is(.ugcContent ol) {
      list-style-type: decimal;
    }
.list-lower-alpha:is(.ugcContent ol) {
      list-style-type: lower-alpha;
    }
.list-upper-alpha:is(.ugcContent ol) {
      list-style-type: upper-alpha;
    }
.list-lower-roman:is(.ugcContent ol) {
      list-style-type: lower-roman;
    }
.list-upper-roman:is(.ugcContent ol) {
      list-style-type: upper-roman;
    }
.ugcContent .edit,.ugcContent .offtopic,.ugcContent .me {
    color: var(--tertiary-paragraph-text-color);
  }
:is(.ugcContent .edit,.ugcContent .offtopic,.ugcContent .me) a {
      color: inherit;
    }
:is(:is(.ugcContent .edit,.ugcContent .offtopic,.ugcContent .me) a):hover {
        color: var(--brand-color);
      }
.ugcContent .edit,.ugcContent .offtopic {
    font-size: var(--font-size-small);
  }
.ugcContent .spoiler {
    padding: 0.125rem;
    color: var(--text-always-dark-color);
    cursor: pointer;
    background: var(--text-always-dark-color);
    font-variant-emoji: text;

    /* Hide smilies etc */
  }
:is(.ugcContent .spoiler) > * {
      visibility: hidden;
      pointer-events: none;
    }
.visible:is(.ugcContent .spoiler) {
      cursor: default;
      font-variant-emoji: normal;
    }
.visible:is(.ugcContent .spoiler) > * {
        visibility: visible;
        pointer-events: auto;
      }
.visible:is(.ugcContent .spoiler),.visible:is(.ugcContent .spoiler) a {
        color: var(--text-always-light-color) !important;
      }
.ugcContent .membersonly {
    box-sizing: border-box;
    display: inline-block;
    max-width: 100%;
    padding: 0.5rem;
    color: var(--base-paragraph-text-color);
    background: var(--surface-base-color);
    border: 0.0625rem solid var(--border-base-color);
  }
:is(.ugcContent .membersonly)::before {
      display: inline-block;
      width: 1rem;
      height: 1rem;
      margin-inline-end: 0.25rem;
      vertical-align: text-bottom;
      content: '';
      background: url(/x/build/images/fa-lock-open.297bcfa6.svg);
    }
.locked:is(:is(.ugcContent .membersonly)::before) {
        background: url(/x/build/images/fa-lock.6e8639e3.svg);
      }
.ugcContent hr {
    border: 0;
    border-top: 0.125rem solid var(--border-card-color);
  }
.ugcContent small {
    font-size: var(--font-size-small);
  }
.ugcContent .underline {
    border-bottom: 0.0625rem solid var(--tertiary-paragraph-text-color);
  }
.ugcContent .strike {
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
  }
/* Text alignment */
.ugcContent .align-left {
    text-align: left;
  }
.ugcContent .align-center {
    text-align: center;
  }
.ugcContent .align-right {
    text-align: right;
  }
.ugcContent .align-justify {
    text-align: justify;
  }
.ugcContent img[src*="/g/s/"] {
    vertical-align: -2px;
  }
.ugcContent table.rml {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    background: var(--surface-card-color);
  }
:is(.ugcContent table.rml) th,:is(.ugcContent table.rml) td {
      padding: 0.375rem 0.5rem;
      vertical-align: top;
      border: 0.0625rem solid var(--border-card-color);
    }
:is(.ugcContent table.rml) th {
      font-weight: var(--font-weight-bold);
      text-align: left;
    }
.ugcContent h4.rml,.ugcContent h5.rml,.ugcContent h6.rml {
    margin-block: 0.75rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
  }
.nostyle:is(.ugcContent h4.rml,.ugcContent h5.rml,.ugcContent h6.rml) {
      color: inherit;
      background: none;
    }
:is(.ugcContent h4.rml,.ugcContent h5.rml,.ugcContent h6.rml) a {
      color: inherit;
    }
.ugcContent h4.rml {
    font-size: var(--font-size-large);
  }
.ugcContent h5.rml {
    font-size: var(--font-size-medium-plus);
  }
.ugcContent h6.rml {
    font-size: var(--font-size-medium);
  }
.ugcContent img.rml {
    vertical-align: bottom;
    overflow-wrap: anywhere; /* For breaking up alt-text in chrome */
  }
.left:is(.ugcContent img.rml) {
      float: left;
      margin: 0.25rem 0.75rem 0.25rem 0;
    }
.right:is(.ugcContent img.rml) {
      float: right;
      margin: 0.25rem 0 0.25rem 0.75rem;
    }
.border:is(.ugcContent img.rml) {
      box-sizing: border-box;
      border: 0.0625rem solid var(--border-accentuate-color);
    }
.padding:is(.ugcContent img.rml) {
      box-sizing: border-box;
      padding: 0.125rem;
    }
.resized:is(.ugcContent img.rml) {
      float: none;
      box-sizing: border-box;
      border: 0.0625rem dashed var(--border-error-color);
    }
.ugcContent a > img.rml.resized {
    border-color: var(--border-info-color);
  }
.ugcContent div.toc {
    padding: 0.5rem 1rem 1rem;
    background: var(--surface-card-color);
  }
:is(.ugcContent div.toc) > h4 {
      margin-block-start: 0;
    }
:is(.ugcContent div.toc) ol {
      padding-inline-start: 2rem;
      margin: 0;
    }
/* Code-style tags */
.ugcContent pre {
    display: block;
    margin: 1rem 0;
    overflow: auto;
    overflow-wrap: normal;
  }
.ugcContent div.cmd,.ugcContent div.pre {
    margin: 1rem 0;
  }
:is(.ugcContent div.cmd,.ugcContent div.pre) pre {
      padding: 0.25rem;
      margin: 0;
      overflow: auto hidden;
      border: 0.0625rem solid var(--border-card-color);
    }
.ugcContent div.cmd pre {
    color: var(--base-paragraph-text-color);
    background-color: var(--surface-base-color);
  }
.ugcContent div.pre pre {
    background-color: var(--surface-card-color);
  }
/* Generic modbreak */
.ugcContent fieldset.modbreak {
    padding: 0.5rem;
    margin: 1rem 10%;
    border: 0.0625rem solid var(--border-error-color);
  }
:is(.ugcContent fieldset.modbreak) legend {
      display: block;
    }
:is(:is(.ugcContent fieldset.modbreak) legend) + * {
        margin-block-start: 0;
      }
:is(.ugcContent fieldset.modbreak) a {
      -webkit-text-decoration: underline;
      text-decoration: underline;
    }

.forumUgcContent {
  font-size: var(--font-size-forum-content);
}

[name]:is(.forumUgcContent a),[name]:is(.forumUgcContent a):hover {
      color: inherit;
      -webkit-text-decoration: none;
      text-decoration: none;
      cursor: default;
    }

.pwlink:is(.forumUgcContent a)::before {
      margin-right: 0.25rem;
      content: url(/x/build/images/mandje.3f6564f9.gif);
    }

.forumUgcContent fieldset.modbreak {
    padding: 0.5rem 1rem 1rem;
    margin-inline: 0;
    font-size: var(--font-size-small-plus);
    background-color: var(--surface-error-color);
    border: 0;
  }

:is(.forumUgcContent fieldset.modbreak) legend {
      font-size: var(--font-size-small);
      font-weight: bold;
      color: var(--brand-color);
    }

:is(:is(.forumUgcContent fieldset.modbreak) legend) a {
        color: var(--brand-color);
      }

:is(.forumUgcContent fieldset.modbreak) a {
      color: var(--text-link-color);
    }

.forumUgcContent blockquote {
    position: relative;
    padding: 0;
    margin-inline: 2rem;
    font-size: var(--font-size-small-plus);
    color: unset;
    border: 0;
  }

:is(.forumUgcContent blockquote) .message-quote-div {
      padding: var(--spacing-medium);
      margin-block: 0.125rem;
      color: var(--tertiary-paragraph-text-color);
      background: var(--surface-base-color);
      border: 0.0625rem solid var(--border-base-color);
      border-radius: var(--border-radius-small);
    }

:is(:is(.forumUgcContent blockquote) .message-quote-div) a {
        color: var(--secondary-paragraph-text-color);
        -webkit-text-decoration: underline;
        text-decoration: underline;
      }

:is(:is(:is(.forumUgcContent blockquote) .message-quote-div) a):hover {
          color: var(--text-link-hover-color);
        }

.messagelink:is(:is(:is(.forumUgcContent blockquote) .message-quote-div) a) {
          color: var(--secondary-paragraph-text-color);
          -webkit-text-decoration: none;
          text-decoration: none;
        }

.twitter-tweet:is(.forumUgcContent blockquote),.instagram-media:is(.forumUgcContent blockquote),.bluesky-embed:is(.forumUgcContent blockquote) {
      /* re-apply some rules here to make them more specific wrt _socialembeds.scss */
      padding: var(--spacing-medium);
      font-size: var(--font-size-medium);
      background: var(--surface-base-color);
      border: 0.0625rem solid var(--border-base-color);
    }

:is(.twitter-tweet:is(.forumUgcContent blockquote),.instagram-media:is(.forumUgcContent blockquote),.bluesky-embed:is(.forumUgcContent blockquote)) p {
        border-bottom: 0.0625rem solid var(--border-base-color);
      }

.forumUgcContent .mbr {
    color: var(--text-mbr-color);
  }

:is(.forumUgcContent .red),:is(.forumUgcContent .red) a {
      color: var(--rml-red);
    }

:is(.forumUgcContent .green),:is(.forumUgcContent .green) a {
      color: var(--rml-green);
    }

:is(.forumUgcContent .blue),:is(.forumUgcContent .blue) a {
      color: var(--rml-blue);
    }

.forumUgcContent .mono {
    padding: var(--spacing-extra-small);
    font-family: var(--font-family-monospace);
    background: var(--surface-bar-color);
    border-radius: 0.25rem;
  }

.forumUgcContent .serif {
    font-family: serif;
  }

.forumUgcContent .sansserif {
    font-family: var(--font-family-body);
  }

.forumUgcContent h4.rml,.forumUgcContent h5.rml,.forumUgcContent h6.rml {
    padding: var(--spacing-extra-small-min) var(--spacing-extra-small);
    margin-block: 1rem 0.375rem;
    line-height: 1.9;
    border-radius: var(--border-radius-small);
  }

.forumUgcContent h4.rml {
    color: var(--text-forum-message-h4);
    background: var(--surface-forum-message-h4);
  }

.forumUgcContent h5.rml {
    color: var(--text-forum-message-h5);
    background: var(--surface-forum-message-h5);
  }

.forumUgcContent h6.rml {
    color: var(--text-forum-message-h6);
    background-color: var(--surface-forum-message-h6);
  }

.forumUgcContent table.rml {
    width: auto;
    font-size: var(--font-size-body);
    background: none;
    border: 0 solid var(--border-card-color);
  }

[border]:is(.forumUgcContent table.rml) {
      border-width: 0.0625rem;
    }

:is(.forumUgcContent table.rml) tbody,:is(.forumUgcContent table.rml) tr,:is(.forumUgcContent table.rml) th,:is(.forumUgcContent table.rml) td {
      border: inherit;
    }

:is(.forumUgcContent table.rml) th,:is(.forumUgcContent table.rml) td {
      padding: revert-layer;
      font-size: 100%;
      line-height: 150%;
      vertical-align: revert-layer;
    }

[align="left"]:is(:is(.forumUgcContent table.rml) th,:is(.forumUgcContent table.rml) td) {
        text-align: left;
      }

[align="right"]:is(:is(.forumUgcContent table.rml) th,:is(.forumUgcContent table.rml) td) {
        text-align: right;
      }

[align="center"]:is(:is(.forumUgcContent table.rml) th,:is(.forumUgcContent table.rml) td) {
        text-align: center;
      }

[align="justify"]:is(:is(.forumUgcContent table.rml) th,:is(.forumUgcContent table.rml) td) {
        text-align: justify;
      }

:is(.forumUgcContent table.rml) th {
      font-weight: var(--font-weight-bold);
      text-align: center;
      background-color: var(--surface-base-color);
    }

/* 'contrast' means the table or cell has a dark background color, but no specific text-color given */

.forumUgcContent .contrast {
    color: var(--text-always-light-color);
  }

/* 'nocontrast' means the table or cell has a light background color, but no specific text-color given */

.forumUgcContent .nocontrast {
    color: var(--text-always-dark-color);
  }

:is(.forumUgcContent .contrast,.forumUgcContent .nocontrast) a {
      color: inherit;
    }

:is(:is(.forumUgcContent .contrast,.forumUgcContent .nocontrast) a) :hover {
        color: var(--brand-color);
      }

/* Code highlight table style */

.forumUgcContent table.phphighlight {
    width: 100%;
    margin: 0.125rem 0;
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: separate;
  }

:is(.forumUgcContent table.phphighlight) td {
      box-sizing: content-box;
      font-family: var(--font-family-monospace);
      font-size: var(--font-size-small);
      line-height: var(--line-height-compact);
      vertical-align: top;
      color: var(--base-paragraph-text-color);
      white-space: nowrap;
    }

:is(:is(.forumUgcContent table.phphighlight) td) pre {
        margin: 0;
        overflow: visible;
        white-space: pre;
      }

.phphighlightline:is(:is(.forumUgcContent table.phphighlight) td) {
        width: 1.5rem;
        min-width: 1.5rem;
        padding: 0.25rem;
        text-align: right;
        background: var(--surface-card-color);
        border: 0.0625rem solid var(--border-accentuate-color);
      }

.phphighlightcode:is(:is(.forumUgcContent table.phphighlight) td) {
        padding: 0;
        border: none;
        border-right: 0.0625rem solid var(--border-accentuate-color);
      }

.phphighlightcode:is(:is(.forumUgcContent table.phphighlight) td) > div {
          position: relative;
          z-index: 10;
          width: 100%;
          overflow: auto hidden;
          scrollbar-gutter: stable;
          background: var(--surface-base-color);
          border-top: 0.0625rem solid var(--border-accentuate-color);
          border-bottom: 0.0625rem solid var(--border-accentuate-color);
        }

:is(.phphighlightcode:is(:is(.forumUgcContent table.phphighlight) td) > div) pre {
            display: block;
            width: fit-content;
            padding: 0.25rem;
          }

:is(:is(.phphighlightcode:is(:is(.forumUgcContent table.phphighlight) td) > div) pre) span {
              line-height: 100%;
            }

/* Use a "desktop-first" approach here to match legacy css */
@media screen and (max-width: 1159px) {
    .ugcContent img.rml {
      max-width: 100%;
      height: auto;
    }
}

@media screen and (max-width: 799px) {
    /* No inline margins for quotes */
    .forumUgcContent blockquote {
      margin: var(--spacing-medium) 0;
    }

    .forumUgcContent table.rml {
      width: auto !important;
      max-width: 100%;
    }
}
/* See https://github.com/richleland/pygments-css */
/* stylelint-disable declaration-block-single-line-max-declarations, selector-class-pattern */

.code_hll { background-color: #ffc }
.code_c { font-style: italic; color: #998 } /* Comment */
.code_err { color: #a61717; background-color: #e3d2d2 } /* Error */
.code_k { font-weight: bold; color: #000 } /* Keyword */
.code_o { font-weight: bold; color: #000 } /* Operator */
.code_cm { font-style: italic; color: #998 } /* Comment.Multiline */
.code_cp { font-style: italic; font-weight: var(--font-weight-bold); color: #999 } /* Comment.Preproc */
.code_c1 { font-style: italic; color: #998 } /* Comment.Single */
.code_cs { font-style: italic; font-weight: var(--font-weight-bold); color: #999 } /* Comment.Special */
.code_gd { color: #000; background-color: #fdd } /* Generic.Deleted */
.code_ge { font-style: italic; color: #000 } /* Generic.Emph */
.code_gr { color: #a00 } /* Generic.Error */
.code_gh { color: #999 } /* Generic.Heading */
.code_gi { color: #000; background-color: #dfd } /* Generic.Inserted */
.code_go { color: #888 } /* Generic.Output */
.code_gp { color: #555 } /* Generic.Prompt */
.code_gs { font-weight: bold } /* Generic.Strong */
.code_gu { color: #aaa } /* Generic.Subheading */
.code_gt { color: #a00 } /* Generic.Traceback */
.code_kc { font-weight: bold; color: #000 } /* Keyword.Constant */
.code_kd { font-weight: bold; color: #000 } /* Keyword.Declaration */
.code_kn { font-weight: bold; color: #000 } /* Keyword.Namespace */
.code_kp { font-weight: bold; color: #000 } /* Keyword.Pseudo */
.code_kr { font-weight: bold; color: #000 } /* Keyword.Reserved */
.code_kt { font-weight: bold; color: #458 } /* Keyword.Type */
.code_m { color: #099 } /* Literal.Number */
.code_s { color: #d01040 } /* Literal.String */
.code_na { color: #008080 } /* Name.Attribute */
.code_nb { color: #0086B3 } /* Name.Builtin */
.code_nc { font-weight: bold; color: #458 } /* Name.Class */
.code_no { color: #008080 } /* Name.Constant */
.code_nd { font-weight: bold; color: #3c5d5d } /* Name.Decorator */
.code_ni { color: #800080 } /* Name.Entity */
.code_ne { font-weight: bold; color: #900 } /* Name.Exception */
.code_nf { font-weight: bold; color: #900 } /* Name.Function */
.code_nl { font-weight: bold; color: #900 } /* Name.Label */
.code_nn { color: #555 } /* Name.Namespace */
.code_nt { color: #000080 } /* Name.Tag */
.code_nv { color: #008080 } /* Name.Variable */
.code_ow { font-weight: bold; color: #000 } /* Operator.Word */
.code_w { color: #bbb } /* Text.Whitespace */
.code_mf { color: #099 } /* Literal.Number.Float */
.code_mh { color: #099 } /* Literal.Number.Hex */
.code_mi { color: #099 } /* Literal.Number.Integer */
.code_mo { color: #099 } /* Literal.Number.Oct */
.code_sb { color: #d01040 } /* Literal.String.Backtick */
.code_sc { color: #d01040 } /* Literal.String.Char */
.code_sd { color: #d01040 } /* Literal.String.Doc */
.code_s2 { color: #d01040 } /* Literal.String.Double */
.code_se { color: #d01040 } /* Literal.String.Escape */
.code_sh { color: #d01040 } /* Literal.String.Heredoc */
.code_si { color: #d01040 } /* Literal.String.Interpol */
.code_sx { color: #d01040 } /* Literal.String.Other */
.code_sr { color: #009926 } /* Literal.String.Regex */
.code_s1 { color: #d01040 } /* Literal.String.Single */
.code_ss { color: #990073 } /* Literal.String.Symbol */
.code_bp { color: #999 } /* Name.Builtin.Pseudo */
.code_vc { color: #008080 } /* Name.Variable.Class */
.code_vg { color: #008080 } /* Name.Variable.Global */
.code_vi { color: #008080 } /* Name.Variable.Instance */
.code_il { color: #099 } /* Literal.Number.Integer.Long */

/* DARK-MODE FIX/HACK */
.twk-dark .code_hll { background-color: darkslategray }
.twk-dark .code_c { font-style: italic; color: slategray }
/* Comment */
.twk-dark .code_err { color: crimson; background-color: darkred }
/* Error */
.twk-dark .code_k { font-weight: bold; color: ghostwhite }
/* Keyword */
.twk-dark .code_o { font-weight: bold; color: ghostwhite }
/* Operator */
.twk-dark .code_cm { font-style: italic; color: slategray }
/* Comment.Multiline */
.twk-dark .code_cp { font-style: italic; font-weight: var(--font-weight-bold); color: slategray }
/* Comment.Preproc */
.twk-dark .code_c1 { font-style: italic; color: slategray }
/* Comment.Single */
.twk-dark .code_cs { font-style: italic; font-weight: var(--font-weight-bold); color: slategray }
/* Comment.Special */
.twk-dark .code_gd { color: ghostwhite; background-color: darkred }
/* Generic.Deleted */
.twk-dark .code_ge { font-style: italic; color: ghostwhite }
/* Generic.Emph */
.twk-dark .code_gr { color: crimson }
/* Generic.Error */
.twk-dark .code_gh { color: slategray }
/* Generic.Heading */
.twk-dark .code_gi { color: ghostwhite; background-color: darkblue }
/* Generic.Inserted */
.twk-dark .code_go { color: slategray }
/* Generic.Output */
.twk-dark .code_gp { color: ghostwhite }
/* Generic.Prompt */
.twk-dark .code_gs { font-weight: bold }
/* Generic.Strong */
.twk-dark .code_gu { color: slategray }
/* Generic.Subheading */
.twk-dark .code_gt { color: crimson }
/* Generic.Traceback */
.twk-dark .code_kc { font-weight: bold; color: ghostwhite }
/* Keyword.Constant */
.twk-dark .code_kd { font-weight: bold; color: ghostwhite }
/* Keyword.Declaration */
.twk-dark .code_kn { font-weight: bold; color: ghostwhite }
/* Keyword.Namespace */
.twk-dark .code_kp { font-weight: bold; color: ghostwhite }
/* Keyword.Pseudo */
.twk-dark .code_kr { font-weight: bold; color: ghostwhite }
/* Keyword.Reserved */
.twk-dark .code_kt { font-weight: bold; color: deepskyblue }
/* Keyword.Type */
.twk-dark .code_m { color: mediumaquamarine }
/* Literal.Number */
.twk-dark .code_s { color: salmon }
/* Literal.String */
.twk-dark .code_na { color: lightgreen }
/* Name.Attribute */
.twk-dark .code_nb { color: skyblue }
/* Name.Builtin */
.twk-dark .code_nc { font-weight: bold; color: palevioletred }
/* Name.Class */
.twk-dark .code_no { color: lightblue }
/* Name.Constant */
.twk-dark .code_nd { font-weight: bold; color: lightgrey }
/* Name.Decorator */
.twk-dark .code_ni { color: violet }
/* Name.Entity */
.twk-dark .code_ne { font-weight: bold; color: crimson }
/* Name.Exception */
.twk-dark .code_nf { font-weight: bold; color: crimson }
/* Name.Function */
.twk-dark .code_nl { font-weight: bold; color: crimson }
/* Name.Label */
.twk-dark .code_nn { color: slategray }
/* Name.Namespace */
.twk-dark .code_nt { color: lightblue }
/* Name.Tag */
.twk-dark .code_nv { color: lightgreen }
/* Name.Variable */
.twk-dark .code_ow { font-weight: bold; color: ghostwhite }
/* Operator.Word */
.twk-dark .code_w { color: slategray }
/* Text.Whitespace */
.twk-dark .code_mf { color: aqua }
/* Literal.Number.Float */
.twk-dark .code_mh { color: aqua }
/* Literal.Number.Hex */
.twk-dark .code_mi { color: aqua }
/* Literal.Number.Integer */
.twk-dark .code_mo { color: aqua }
/* Literal.Number.Oct */
.twk-dark .code_sb { color: crimson }
/* Literal.String.Backtick */
.twk-dark .code_sc { color: crimson }
/* Literal.String.Char */
.twk-dark .code_sd { color: crimson }
/* Literal.String.Doc */
.twk-dark .code_s2 { color: crimson }
/* Literal.String.Double */
.twk-dark .code_se { color: crimson }
/* Literal.String.Escape */
.twk-dark .code_sh { color: crimson }
/* Literal.String.Heredoc */
.twk-dark .code_si { color: crimson }
/* Literal.String.Interpol */
.twk-dark .code_sx { color: crimson }
/* Literal.String.Other */
.twk-dark .code_sr { color: lightgreen }
/* Literal.String.Regex */
.twk-dark .code_s1 { color: crimson }
/* Literal.String.Single */
.twk-dark .code_ss { color: violet }
/* Literal.String.Symbol */
.twk-dark .code_bp { color: slategray }
/* Name.Builtin.Pseudo */
.twk-dark .code_vc { color: lightgreen }
/* Name.Variable.Class */
.twk-dark .code_vg { color: lightgreen }
/* Name.Variable.Global */
.twk-dark .code_vi { color: lightgreen }
/* Name.Variable.Instance */
.twk-dark .code_il { color: mediumaquamarine }
/* Literal.Number.Integer.Long */

@media (prefers-color-scheme: dark) {
    :root:not(.twk-light,.twk-dark) .code_hll { background-color: darkslategray }
    :root:not(.twk-light,.twk-dark) .code_c { font-style: italic; color: slategray } /* Comment */
    :root:not(.twk-light,.twk-dark) .code_err { color: crimson; background-color: darkred } /* Error */
    :root:not(.twk-light,.twk-dark) .code_k { font-weight: bold; color: ghostwhite } /* Keyword */
    :root:not(.twk-light,.twk-dark) .code_o { font-weight: bold; color: ghostwhite } /* Operator */
    :root:not(.twk-light,.twk-dark) .code_cm { font-style: italic; color: slategray } /* Comment.Multiline */
    :root:not(.twk-light,.twk-dark) .code_cp { font-style: italic; font-weight: var(--font-weight-bold); color: slategray } /* Comment.Preproc */
    :root:not(.twk-light,.twk-dark) .code_c1 { font-style: italic; color: slategray } /* Comment.Single */
    :root:not(.twk-light,.twk-dark) .code_cs { font-style: italic; font-weight: var(--font-weight-bold); color: slategray } /* Comment.Special */
    :root:not(.twk-light,.twk-dark) .code_gd { color: ghostwhite; background-color: darkred } /* Generic.Deleted */
    :root:not(.twk-light,.twk-dark) .code_ge { font-style: italic; color: ghostwhite } /* Generic.Emph */
    :root:not(.twk-light,.twk-dark) .code_gr { color: crimson } /* Generic.Error */
    :root:not(.twk-light,.twk-dark) .code_gh { color: slategray } /* Generic.Heading */
    :root:not(.twk-light,.twk-dark) .code_gi { color: ghostwhite; background-color: darkblue } /* Generic.Inserted */
    :root:not(.twk-light,.twk-dark) .code_go { color: slategray } /* Generic.Output */
    :root:not(.twk-light,.twk-dark) .code_gp { color: ghostwhite } /* Generic.Prompt */
    :root:not(.twk-light,.twk-dark) .code_gs { font-weight: bold } /* Generic.Strong */
    :root:not(.twk-light,.twk-dark) .code_gu { color: slategray } /* Generic.Subheading */
    :root:not(.twk-light,.twk-dark) .code_gt { color: crimson } /* Generic.Traceback */
    :root:not(.twk-light,.twk-dark) .code_kc { font-weight: bold; color: ghostwhite } /* Keyword.Constant */
    :root:not(.twk-light,.twk-dark) .code_kd { font-weight: bold; color: ghostwhite } /* Keyword.Declaration */
    :root:not(.twk-light,.twk-dark) .code_kn { font-weight: bold; color: ghostwhite } /* Keyword.Namespace */
    :root:not(.twk-light,.twk-dark) .code_kp { font-weight: bold; color: ghostwhite } /* Keyword.Pseudo */
    :root:not(.twk-light,.twk-dark) .code_kr { font-weight: bold; color: ghostwhite } /* Keyword.Reserved */
    :root:not(.twk-light,.twk-dark) .code_kt { font-weight: bold; color: deepskyblue } /* Keyword.Type */
    :root:not(.twk-light,.twk-dark) .code_m { color: mediumaquamarine } /* Literal.Number */
    :root:not(.twk-light,.twk-dark) .code_s { color: salmon } /* Literal.String */
    :root:not(.twk-light,.twk-dark) .code_na { color: lightgreen } /* Name.Attribute */
    :root:not(.twk-light,.twk-dark) .code_nb { color: skyblue } /* Name.Builtin */
    :root:not(.twk-light,.twk-dark) .code_nc { font-weight: bold; color: palevioletred } /* Name.Class */
    :root:not(.twk-light,.twk-dark) .code_no { color: lightblue } /* Name.Constant */
    :root:not(.twk-light,.twk-dark) .code_nd { font-weight: bold; color: lightgrey } /* Name.Decorator */
    :root:not(.twk-light,.twk-dark) .code_ni { color: violet } /* Name.Entity */
    :root:not(.twk-light,.twk-dark) .code_ne { font-weight: bold; color: crimson } /* Name.Exception */
    :root:not(.twk-light,.twk-dark) .code_nf { font-weight: bold; color: crimson } /* Name.Function */
    :root:not(.twk-light,.twk-dark) .code_nl { font-weight: bold; color: crimson } /* Name.Label */
    :root:not(.twk-light,.twk-dark) .code_nn { color: slategray } /* Name.Namespace */
    :root:not(.twk-light,.twk-dark) .code_nt { color: lightblue } /* Name.Tag */
    :root:not(.twk-light,.twk-dark) .code_nv { color: lightgreen } /* Name.Variable */
    :root:not(.twk-light,.twk-dark) .code_ow { font-weight: bold; color: ghostwhite } /* Operator.Word */
    :root:not(.twk-light,.twk-dark) .code_w { color: slategray } /* Text.Whitespace */
    :root:not(.twk-light,.twk-dark) .code_mf { color: aqua } /* Literal.Number.Float */
    :root:not(.twk-light,.twk-dark) .code_mh { color: aqua } /* Literal.Number.Hex */
    :root:not(.twk-light,.twk-dark) .code_mi { color: aqua } /* Literal.Number.Integer */
    :root:not(.twk-light,.twk-dark) .code_mo { color: aqua } /* Literal.Number.Oct */
    :root:not(.twk-light,.twk-dark) .code_sb { color: crimson } /* Literal.String.Backtick */
    :root:not(.twk-light,.twk-dark) .code_sc { color: crimson } /* Literal.String.Char */
    :root:not(.twk-light,.twk-dark) .code_sd { color: crimson } /* Literal.String.Doc */
    :root:not(.twk-light,.twk-dark) .code_s2 { color: crimson } /* Literal.String.Double */
    :root:not(.twk-light,.twk-dark) .code_se { color: crimson } /* Literal.String.Escape */
    :root:not(.twk-light,.twk-dark) .code_sh { color: crimson } /* Literal.String.Heredoc */
    :root:not(.twk-light,.twk-dark) .code_si { color: crimson } /* Literal.String.Interpol */
    :root:not(.twk-light,.twk-dark) .code_sx { color: crimson } /* Literal.String.Other */
    :root:not(.twk-light,.twk-dark) .code_sr { color: lightgreen } /* Literal.String.Regex */
    :root:not(.twk-light,.twk-dark) .code_s1 { color: crimson } /* Literal.String.Single */
    :root:not(.twk-light,.twk-dark) .code_ss { color: violet } /* Literal.String.Symbol */
    :root:not(.twk-light,.twk-dark) .code_bp { color: slategray } /* Name.Builtin.Pseudo */
    :root:not(.twk-light,.twk-dark) .code_vc { color: lightgreen } /* Name.Variable.Class */
    :root:not(.twk-light,.twk-dark) .code_vg { color: lightgreen } /* Name.Variable.Global */
    :root:not(.twk-light,.twk-dark) .code_vi { color: lightgreen } /* Name.Variable.Instance */
    :root:not(.twk-light,.twk-dark) .code_il { color: mediumaquamarine } /* Literal.Number.Integer.Long */
  }

