/* http://prismjs.com/download.html?themes=prism&languages=sas */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

/* for Lithium messages                                         */
/* a very specific style override for SAS language in a PRE tag */
#lia-body .lia-content .lia-message-body pre.language-sas,
#lia-body .lia-content .lia-message-body pre.language-python,
#lia-body .lia-content .lia-message-body pre.language-lua,
#lia-body .lia-content .lia-message-body pre.language-java {
    background-color: #ffffff;
}

code[class*="language-"],
pre[class*="language-"] {
    color: black;
    text-shadow: 0 1px white;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace !important;
    direction: ltr;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;

    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;

    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

pre[class*="language-jsl"]::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
}

pre[class*="language-jsl"]::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
}

#lia-body #content-wrapper pre span,
#lia-body #content-wrapper code span {
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
}

/* LIGHT BLUE #b3d4fc */
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
    text-shadow: none;
    background: #b3d4fc;
}

/* LIGHT BLUE #b3d4fc */
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
    text-shadow: none;
    background: #b3d4fc;

}

@media print {

    code[class*="language-"],
    pre[class*="language-"] {
        text-shadow: none;
    }
}

/* Code blocks */
pre[class*="language-"] {
    padding: 1em;
    margin: 1em 0;
    overflow: auto;

}

:not(pre)>code[class*="language-"],
pre[class*="language-"],
pre[class*="language-"][class~="lia-code-sample"] {
    background: #ffffff;
}

/* Inline code */
:not(pre)>code[class*="language-"] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal;
}

/* GREEN */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: rgb(0, 128, 0);
}

.token.operator,
.token.punctuation {
    color: #000000;
}

.namespace {
    opacity: .7;
}

/* BLUE GREEN  */
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: rgb(0, 128, 128);
    font-weight: bold;
}

/* 128,0,128 */
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: rgb(128, 0, 128);
}

/* LIGHT BROWN #a67f59 */
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #a67f59;
    /* background: hsla(0, 0%, 100%, .5); */
}

.token.atrule,
.token.attr-value,
.token.keyword,
.token.datalines.keyword,
.token.datalines.punctuation {
    color: blue;
    /* background: #ffffff; */
}

.token.messages {
    color: darkblue;
    /* background: #ffffff; */
}

.token.statement,
.token.macrostatement,
.token.function {
    color: blue;
}

.token.datalines {
    color: #DD4A68;
    background: #ffffc0;
}

.token.procnames {
    color: navy;
    font-weight: bold;
}

.token.macrobound {
    color: navy;
    font-weight: bold;
}

.token.macroname {
    color: navy;
    font-weight: bold;
    font-style: italic;
}

.token.regex,
.token.important,
.token.variable {
    color: #e90;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}