@charset "UTF-8";

body.locked {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.jsonview_open_debug {
    z-index: 16777271;
    position: fixed;
    bottom: 20px;
    left: 20px;
    margin: 0;
    padding: 17px 20px 15px;

    border: none;
    /*#3F2B58;*/
    background: #EF133C;
    border-bottom: 5px solid rgba(0,0,0,0.3);

    color: #fff;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;

    -webkit-transition: background .25s;
      -moz-transition: background .25s;
      -ms-transition: background .25s;
      -o-transition: background .25s;
      transition: background .25s;
}

.jsonview_open_debug:hover,
.jsonview_open_debug:focus {
    background: #D10F33;
}

.jsonview_data_debug {
    position: fixed;
    z-index: 16777271;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow: auto;
    top: 0;
    margin: 0;
    padding: 0;
    background: rgba(255,255,255,0.9);

    /* fix mobile browser fixed element scrolling */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    transform: translate3d(0, 0, 0);
    transform-origin: top;

    -webkit-transition: transform .25s;
      -moz-transition: transform .25s;
      -ms-transition: transform .25s;
      -o-transition: transform .25s;
      transition: transform .25s;


    box-sizing: border-box;
}

.jsonview_data_debug > *,
.jsonview_data_debug > *:before,
.jsonview_data_debug > *:after {
    box-sizing: inherit;
}

.jsonview_data_debug_closed {
    transform: translate3d(-120%, 0, 0);
    overflow: hidden;
}

.jsonview_close_debug {
    position: absolute;
    z-index: 16777271;
    display: block;
    top: 80px;
    right: 40px;
    width: 40px;
    height: 40px;
    padding: 0;

    border: none;
    background: #EF133C;

    text-align: center;
    line-height: 35px;
    font-size: 30px;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;

    outline:0;
    cursor:pointer;
    text-decoration:none;
    overflow:visible;

    -webkit-transition: background .25s;
      -moz-transition: background .25s;
      -ms-transition: background .25s;
      -o-transition: background .25s;
      transition: background .25s;
}

.jsonview_close_debug:hover,
.jsonview_close_debug:focus {
    background: #D10F33;
}

.jsonview_hide {
    display: none;
}

.jsonview {
    color: #333;
    padding: 40px;
    padding-top: 80px;
    font-family: monospace;
    font-size: 1.3em;
    white-space: pre-wrap;
    max-width: 100%;
}

.jsonview .prop {
    font-family: monospace;
    font-weight: bold;
}

.jsonview .null {
    font-family: monospace;
    color: red;
}

.jsonview .bool {
    font-family: monospace;
    color: blue;
}

.jsonview .num {
    font-family: monospace;
    color: blue;
}

.jsonview .string {
    font-family: monospace;
    color: green;
    white-space: pre-wrap;
}

.jsonview .string.multiline {
    font-family: monospace;
    display: inline-block;
    vertical-align: text-top;
}

.jsonview .collapser {
    font-family: monospace;
    position: absolute;
    left: -1em;
    cursor: pointer;
}

.jsonview .collapsible {
    font-family: monospace;
    transition: height 1.2s;
    transition: width 1.2s;
}

.jsonview .collapsible.collapsed {
    font-family: monospace;
    height: .8em;
    width: 1em;
    display: inline-block;
    overflow: hidden;
    margin: 0;
}

.jsonview .collapsible.collapsed:before {
    font-family: monospace;
    content: "…";
    width: 1em;
    margin-left: .2em;
}

.jsonview .collapser.collapsed {
    font-family: monospace;
    transform: rotate(0deg);
}

.jsonview .q {
    font-family: monospace;
    display: inline-block;
    width: 0px;
    color: transparent;
}

.jsonview li {
    font-family: monospace;
    position: relative;
}

.jsonview ul {
    font-family: monospace;
    list-style: none;
    margin: 0 0 0 2em;
    padding: 0;
}

.jsonview h1 {
    font-family: monospace;
    font-size: 1.2em;
}

@media print {
    *[class^='jsonview'] {
        display: none !important;
    }
}