.debug-panel {
    display: block;
    height: 100%;
    max-height: 100%;
    /*border:1px solid red;*/
    border-left: 1px solid #dbdbdb;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #272727;
    z-index: 999;
    color: #eee;

    pre {
        max-height: 300px;
        white-space: nowrap; /*nowrap*/
    }

    .debug-btn {
        width: 45px;
        height: 150px;
        font-size: 1.1em;
        border-radius: 3px;
        background-color: #fff;
        color: #272727;
        text-align: center;
        /*transform: rotateY(20deg);*/
        /*margin-top: 250px;*/
        margin-left: -45px;
        /*float: left;*/
        /*padding: 10px;*/
        cursor: pointer;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        letter-spacing: 0.05em;
        line-height: 2.5em;
        text-align: left;
        padding-top: 10px;
        border: 1px solid #dbdbdb;
        top: 250px;
        position: absolute;
    }

    #global_debug .notification {
        overflow-wrap: break-word;
        padding: 10px 14px;
    }

    .debug-btn .tag {
        margin-right: 8px;
        margin-top: 5px;
        font-size: 1em;
        padding: 1px;
        font-family: arial;
    }

    .debug-content {
        display: none;
        padding: 10px;
        height: 100%;
        overflow: scroll;
        overflow-x: hidden;
    }

    .clear-btn {
        margin: 5px;
        float: right;
        margin-top: -27px;
    }

    .accordions .accordion .accordion-header {
        margin-bottom: 2px;
        border: 1px solid #494949;
        font-size: 1em;
        cursor: pointer;
        padding: 8px 15px;
    }

    .accordions .accordion .accordion-header .tag {
        float: right;
        margin-top: -25px;
    }

    .accordions .accordion .accordion-body {
        margin-top: -2px;
        border: 1px solid #494949;
        border-top: none;
        padding: 9px 15px;
        margin-bottom: 2px;
    }

    .debug-call {
        background-color: whitesmoke;
        padding: 10px;
        color: #222;
    }

    .debug-call ul {
        list-style-type: circle;
        margin-left: 30px;
    }

    .debug-return {
        font-style: italic;
        font-size: 12px;
        margin-top: 10px;
    }

    .debug-call .debug-call-header {
        margin: -10px;
        padding: 10px;
        border: 1px solid #e5e5e5;
        margin-bottom: 10px;
    }

    .debug-content::-webkit-scrollbar-track {
        /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
        background-color: #272727;
    }

    .debug-content::-webkit-scrollbar {
        width: 10px;
        background-color: #272727;
    }

    .debug-content::-webkit-scrollbar-thumb {
        background-color: #4c4c4c;
        border: 1px solid #272727;
    }

    .debug-panel #dragbar {
        background-color: black;
        height: 100%;
        float: left;
        width: 3px;
        cursor: col-resize;
    }

    #ghostbar {
        width: 3px;
        background-color: #000;
        opacity: 0.5;
        position: absolute;
        cursor: col-resize;
        z-index: 999;
    }

    .copied {
        animation-duration: 3s;
        animation-name: copied;
        animation-iteration-count: 1;
    }
    @keyframes copied {
        from {
            background-color: #00b300;
        }
        to {
            background-color: whitesmoke;
        }
    }

    .accordion .accordion-body {
        display: none;
    }

    .accordion .accordion-body.is-active {
        display: block;
        max-height: 100% !important;
    }
}
