/* Minification failed. Returning unminified contents.
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,28): run-time error CSS1039: Token not allowed after unary operator: '-gray1'
(51,38): run-time error CSS1039: Token not allowed after unary operator: '-gray2'
(85,28): run-time error CSS1039: Token not allowed after unary operator: '-gray1'
(99,32): run-time error CSS1039: Token not allowed after unary operator: '-gray3'
(106,36): run-time error CSS1039: Token not allowed after unary operator: '-gray4'
(110,36): run-time error CSS1039: Token not allowed after unary operator: '-gray1'
(120,25): run-time error CSS1039: Token not allowed after unary operator: '-gray3'
(245,37): run-time error CSS1046: Expect comma, found '0'
(245,41): run-time error CSS1046: Expect comma, found '/'
(257,28): run-time error CSS1039: Token not allowed after unary operator: '-gray1'
(274,34): run-time error CSS1039: Token not allowed after unary operator: '-gray2'
(308,21): run-time error CSS1039: Token not allowed after unary operator: '-gray2'
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --gray1: #444;
    --gray2: #999;
    --gray3: #EEE;
    --gray4: #DDD;
}

body {
    color: black;
    font: 14px/18px Roboto;
    margin: 0;
}
.hide {
    display:none;
}
pre {
    margin: 0;
    background-color: var(--gray1);
    border-radius: 4px;
}

.page-wrapper {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    justify-content: center;
}

    header img {
        height: 50px;
    }

    header h1 {
        margin: 0;
        display: flex;
        flex-direction: column;
        line-height: normal;
        align-items: flex-end;
        padding-right: 15px;
        border-right: 1px solid var(--gray2);
        margin-right: 15px;
    }

        header h1 span {
            font-size: 14px;
            font-weight: 400;
            margin-top: 5px;
        }

footer {
    margin-top: 15px;
}

section {
    width: 100%;
}

    section h1 {
        margin: 0 0 15px 0;
    }

    section + section {
        margin-top: 30px;
    }

span[link-enum] {
    color: tomato;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

article {
    border: 1px solid var(--gray1);
    border-radius: 4px;
    overflow: hidden;
}

    article + article {
        margin-top: 5px;
    }

    article h1 {
        margin: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: var(--gray3);
        cursor: pointer;
        padding: 15px;
        font-size: 16px;
    }

        article h1:not(.open):hover {
            background-color: var(--gray4);
        }

        article h1.open {
            background-color: var(--gray1);
            color: white;
        }

        article h1 .method {
            font-size: 12px;
            text-transform: uppercase;
            line-height: 12px;
            border-radius: 15px;
            padding: 5px 10px;
            color: var(--gray3);
        }

            article h1 .method.post {
                background-color: forestgreen;
            }

            article h1 .method.get {
                background-color: dodgerblue;
            }

        article h1.open .method {
        }

        article h1 .endpoint {
            margin: 0 0 0 15px;
            font-weight: bold;
            font-family: monospace;
        }

        article h1 .description {
            margin: 0 0 0 15px;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            font-weight: 400;
            padding-top: 4px;
        }

    article .content {
        display: none;
    }


    article h1.open + .content {
        display: flex;
        flex-direction: column;
    }

    article .content .request,
    article .content .response,
    article .content .description {
        position: relative;
    }

        article .content .request > small > b,
        article .content .response > small > b,
        article .content .description > small > b {
            color: #999;
        }

    article .content table,
    .enum-type table {
        font-size: 14px;
        border-spacing: 0;
        width: 100%;
    }

        article .content table th,
        .enum-type table th {
            text-align: left;
            text-transform: uppercase;
            font-size: 12px;
            color: #999;
            padding: 0 10px 8px 0;
        }

        article .content table td,
        .enum-type table td {
            border-top: 1px solid #ccc;
            padding: 4px 10px 4px 0;
        }

        article .content table tbody tr:last-child td,
        .enum-type table tbody tr:last-child td {
            border-bottom: 1px solid #ccc;
        }

    article .content .code-wrapper {
        margin-top: 15px;
    }

    article .content h3 {
        text-transform: uppercase;
    }

    article .content > * + * {
        padding-top: 15px;
    }

    article > * {
        padding: 15px;
    }

.dialog-cover {
    display: none;
}

#dialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-height:80vh;
    overflow-y:auto;
}

    #dialog.show {
        display: block;
    }

        #dialog.show + .dialog-cover {
            width: 100%;
            height: 100%;
            display: block;
            position: fixed;
            left: 0;
            top: 0;
            background-color: rgb(0 0 0 / 40%);
            z-index: 1;
        }

    #dialog .dialog-title {
        font-size: 20px;
        display:block;
        margin-bottom:15px;
    }
/*json-editor*/

.json-editor-blackbord {
    background-color: var(--gray1);
    color: #fff;
    font-size: 13px;
    padding: 15px 15px 15px 25px;
    display: block;
    border-radius: 4px;
}

@media screen and (min-width: 1600px) {
    .json-editor-blackbord {
        font-size: 14px;
    }
}

ul.json-dict, ol.json-array {
    list-style-type: none;
    margin: 0 0 0 3px;
    border-left: 1px dotted var(--gray2);
    padding-left: 15px;
}

.json-string { /*color: #0B7500;*/ /*color: #BCCB86;*/
    color: #0ad161;
}

.json-literal { /*color: #1A01CC;*/ /*font-weight: bold;*/
    color: #ff8c00;
}

.json-url {
    color: #1e90ff;
}

.json-property {
    color: #4fdee5;
    font-weight: 500;
}
/* Toggle button */

a.json-toggle {
    position: relative;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

    a.json-toggle:focus {
        outline: none;
    }

    a.json-toggle:before {
        color: var(--gray2);
        content: "\25BC"; /* down arrow */
        position: absolute;
        display: inline-block;
        width: 1em;
        left: -1em;
        text-align: center;
    }

    a.json-toggle.collapsed:before {
        transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        line-height: 16px;
    }
/* Collapsable placeholder links */

a.json-placeholder {
    color: #aaa;
    padding: 0 1em;
    text-decoration: none;
}

    a.json-placeholder:hover {
        text-decoration: underline;
    }

