/**
 *
 * Documentation CSS
 *
 */
.docs-section ul {
    margin-bottom: 30px;
    font-size: 16px;
}
.docs-section .collapsing {
    
}
.docs-section *:last-child, .docs-section .sub-section *:last-child {
    margin-bottom: 0;
}
.docs-section .sub-section {
    /*margin-left: -40px;*/
    margin-bottom: 60px;
    /*padding: 20px;*/
}
.docs-section .sub-section:first-child {
    padding-top: 0;
}
.docs-section .sub-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.docs-section pre[class*="language-"] {
    font-size: 16px;
    margin-bottom: 30px;
}

/* Header */
.docs-header {
    margin-bottom: 25px;
    padding: 25px 20px;
    border-bottom: 2px solid #2eaadc;
}
.docs-header .doc-links {
    margin-top: 10px;
}
.docs-header .doc-links > li {
    margin-right: 20px;
    display: inline-block;
    list-style-type: none;
}
.docs-header .doc-links > li:last-child {
    margin-right: 0;
}
.docs-header .doc-links > li > a, .docs-header .doc-links > li #versions {
    font-size: 15px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
}
.docs-header .doc-links > li .dropdown-menu {
    margin-top: 20px;
}
.docs-header .doc-links > li > .btn {
    font-weight: 400;
    color: white;
}

/* Footer */
.docs-footer {
    margin-top: 25px;
    padding: 25px 20px;
    border-top: 2px solid #2eaadc;
}
.docs-footer .doc-links a {
    margin-right: 15px;
}
.docs-footer .doc-links a:last-child {
    margin-right: 0;
}
.docs-footer p {
    margin: 0;
}
.docs-footer p, .docs-footer .doc-link {
    font-size: 15px;
    font-weight: 500;
    color: #999;
}

/* Navigation menu */
.docs-menu {
    margin-bottom: 20px;
}
.docs-menu .affix {
    position: fixed;
    top: 25px;
}
.docs-menu .affix-bottom {
    position: absolute;
}
.docs-menu ul {
    padding: 0;
    list-style-type: none;
}
.docs-menu ul a.changelog {
    margin-top: 10px;
}
.docs-menu ul a.back-to-top, .docs-menu ul a.changelog {
    color: #999;
    text-decoration: none;
    border: 0;
    font-weight: 400;
    font-size: 15px;
}
.docs-menu ul a.back-to-top:hover, .docs-menu ul a.changelog:hover {
    padding-left: 20px;
    color: #2eaadc;
    text-decoration: none;
    border: 0;
    font-weight: 400;
}
.docs-menu .nav a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #999;
    padding: 4px 20px;
}
.docs-menu .nav a:hover, .docs-menu .nav .active > a {
    color: #2eaadc;
    text-decoration: none;
    background-color: transparent;
    border-left: 2px solid #2eaadc;
    padding-left: 18px;
    font-weight: 700;
}
.docs-menu .nav .nav a:hover, .docs-menu .nav .nav .active > a {
    padding-left: 28px;
    font-weight: 500;
}
.docs-menu .nav .nav a {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 30px;
    font-size: 14px;
    font-weight: 400;
}

/* Typography */
.docs-section p {
    margin-bottom: 30px;
}
.docs-section .lead {
    font-size: 20px;
}
.docs-section:first-of-type h1 {
    margin-top: 0;
}
.docs-section h1 {
    margin-bottom: 30px !important;
    border-bottom: 2px solid #eee;
}
.docs-section a[data-toggle="collapse"] {
    font-size: 17px;
}
.docs-section a[data-toggle="collapse"] span.glyphicon {
    font-size: 13px;
}
.docs-section h4 a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
}

.docs-section h2:first-child {
    margin-top: 0;
}
.docs-section h2, .docs-section h4 {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .docs-section p {
        font-size: 16px;
    }
    .docs-section .lead {
        font-size: 21px;
    }
}

/* Tables */
.docs-section .table {
    font-size: 16px;
    margin-bottom: 30px;
    background: white;
}
.docs-section .table.docs-table .text-muted {
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.docs-section .table.docs-table > tbody > tr > td {
    padding: 15px;
}
.docs-section .table.docs-table > tbody > tr > td:nth-child(1) {
    width: 25%;
    text-align: right;
}
.docs-section .table.docs-table > tbody > tr > td:nth-child(2) {
    width: 75%;
}
.docs-section .table.docs-table > tbody > tr:last-child {
    border-bottom: 1px solid #ddd;
}

/**
 *
 * prismjs CSS
 *
 */
code[class*="language-"],
pre[class*="language-"] {
    color: black;
    background: none;
    text-shadow: 0 1px white;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    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-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
    text-shadow: none;
    background: #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: .5em 0;
    overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    background: #f5f2f0;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: slategray;
}

.token.punctuation {
    color: #999;
}

.namespace {
    opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #690;
}

.token.operator,
.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 {
    color: #07a;
}

.token.function {
    color: #DD4A68;
}

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

.token.important,
.token.bold {
    font-weight: bold;
}
.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}