/* PrismJS 1.23.0
https://prismjs.com/download.html#themes=prism&languages=clike+swift&plugins=line-numbers */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

 :root {
    --code-padding: 30px;
    --code-font-size: 16px;
    --code-linenumbers-font-size: 12px;
    --code-line-height: 30px;
 }

.syntax-highlighted {
    -webkit-text-size-adjust: none;

    color: black;
    background: #191D26;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: var(--code-line-height);
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    color: white;

    border-spacing: 0;

    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    border-radius: 12px;

/*    position: relative;*/
}

.syntax-highlighted code {
    font-family: "IBM Plex Mono", Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: var(--code-font-size);
/*    position: absolute;*/
    height: var(--code-line-height);
}

.syntax-highlighted::-moz-selection,
.syntax-highlighted ::-moz-selection,
.syntax-highlighted::-moz-selection,
.syntax-highlighted ::-moz-selection {
    text-shadow: none;
    background: rgba(243, 253, 231, .2);
}

.syntax-highlighted::selection,
.syntax-highlighted ::selection,
.syntax-highlighted::selection,
.syntax-highlighted ::selection {
    text-shadow: none;
    background: rgba(243, 253, 231, .2);
    /* background: #F3FDE7; */
}

.syntax-highlighted .line-number {
    display: block;
    line-height: var(--code-line-height);

    white-space: inherit;
    pointer-events: none;
    background-color:#13161D;

    min-width: 4vw;
    font-size: var(--code-linenumbers-font-size);

    box-sizing: border-box;

    color: #585858;
    text-align: right;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    padding-right: 16px;
}

.syntax-highlighted .line-container {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    align-self: bottom;
}

.syntax-highlighted .line-container:first-child .line-number,
.syntax-highlighted .line-container:first-child .line {
    padding-top: var(--code-padding);
}

.syntax-highlighted .line-container:last-child .line-number,
.syntax-highlighted .line-container:last-child .line {
    padding-bottom: var(--code-padding);
}

.syntax-highlighted .line-number::before {
    content: attr(data-line-number);
}

.syntax-highlighted .line {
    padding: 0 30px;
}

@media print {
    .syntax-highlighted {
        text-shadow: none;
    }
}

.syntax-highlighted .token {
    display: inline-block;
}

.syntax-highlighted .token.comment,
.syntax-highlighted .token.prolog,
.syntax-highlighted .token.doctype,
.syntax-highlighted .token.cdata {
    color: slategray;
    /* color: red; */
}

.syntax-highlighted .token.punctuation {
    color: #999;
}

.syntax-highlighted .token.namespace {
    opacity: 0.7;
}

.syntax-highlighted .token.property,
.syntax-highlighted .token.tag,
.syntax-highlighted .token.boolean,
.syntax-highlighted .token.number,
.syntax-highlighted .token.constant,
.syntax-highlighted .token.symbol,
.syntax-highlighted .token.string,
.syntax-highlighted .token.deleted {
    color: #dd4a68;
}

.syntax-highlighted .token.selector,
.syntax-highlighted .token.attr-name,
.syntax-highlighted .token.char,
.syntax-highlighted .token.inserted {
    color: #00FFA6;
}

.syntax-highlighted .token.operator,
.syntax-highlighted .token.entity,
.syntax-highlighted .token.url
 {
    color: #9a6e3a;
}

.syntax-highlighted .token.atrule,
.syntax-highlighted .token.attr-value,
.syntax-highlighted .token.keyword {
    color: #9C66FF !important;
}

.syntax-highlighted .token.function,
.syntax-highlighted .token.class-name,
.syntax-highlighted .token.builtin {
    color: #00FFA6;
}

.syntax-highlighted .token.regex,
.syntax-highlighted .token.important,
.syntax-highlighted .token.variable {
    color: #e90;
}

.syntax-highlighted .token.important,
.syntax-highlighted .token.bold {
    font-weight: bold;
}

.syntax-highlighted .token.italic {
    font-style: italic;
}

.syntax-highlighted .token.entity {
    cursor: help;
}
