.debug-bar {
    background-color: #111;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.debug-bar > ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
}

.debug-module {
    position: relative;
}
.debug-module--full-width {
    position: static;
}

.debug-module-label {
    display: none;
}
@media screen and (min-width: 767px) {
    .debug-module-label {
        display: inline;
    }
}

.debug-module-icon {
    color: #666;
}

.debug-module-content {
    position: absolute;
    background-color: #161616;
    bottom: 40px;
    left: 0;
    padding: 12px;
    display: none;
    overflow-y: scroll;
}
.debug-module--full-width .debug-module-content {
    right: 0;
    width: 100%;
}
.debug-module--open .debug-module-content {
    display: block;
}

.debug-module-tab {
    display: block;
    line-height: 38px;
    color: #999;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0 12px;
    border-bottom: 2px solid #111;
}
.debug-module--open .debug-module-tab {
    border-bottom-color: #9c0;
    background-color: #161616;
}
.debug-module-tab--green {
    background-color: green !important;
    border-bottom-color: green !important;
}
.debug-module-tab--green .debug-module-icon svg path {
    fill: #eee;
}
.debug-module-tab--orange {
    background-color: orange !important;
    border-bottom-color: orange !important;
}
.debug-module-tab--orange .debug-module-icon svg path {
    fill: #eee;
}
.debug-module-tab--red {
    background-color: #900 !important;
    border-bottom-color: #900 !important;
}
.debug-module-tab--red .debug-module-icon svg path {
    fill: #eee;
}

.debug-module--breakpoint {
    position: absolute;
    right: 0;
    background-color: #111;
}
.debug-module--breakpoint .debug-module-tab > span {
    color: #eee;
}

.debug-module--database .debug-module-save-queries-warning {
    background-color: yellow;
    color: black;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 6px 12px;
    margin-bottom: 10px;
}
.debug-module--database .debug-module-save-queries-warning > span {
    font-weight: 600;
    text-transform: uppercase;
}
.debug-module--database .debug-module-content {
    max-height: 500px;
}
.debug-module--database .debug-module-query {
    background-color: #111;
    padding: 6px 12px;
    position: relative;
    margin-bottom: 10px;
}
.debug-module--database .debug-module-query:last-of-type {
    margin-bottom: 0;
}
.debug-module--database .debug-module-query-time {
    color: #eee;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    background-color: #0c0c0c;
}
.debug-module--database .debug-module-query-raw {
    font-family: Monaco, Consolas, "Courier New", Courier, monospace;
    font-size: 14px;
    padding-right: 60px;
}
.debug-module--database .debug-module-query-raw .syntax-word {
    color: #eee;
}
.debug-module--database .debug-module-query-raw .syntax-quote {
    color: #80a583;
}
.debug-module--database .debug-module-query-raw .syntax-backtick-quote {
    color: #9999dd;
}
.debug-module--database .debug-module-query-raw .syntax-reserved {
    color: #db9925;
}
.debug-module--database .debug-module-query-raw .syntax-boundary {
    color: #9fd0d5;
}
.debug-module--database .debug-module-query-raw .syntax-number {
    color: #ffc0cb;
}
.debug-module--database .debug-module-query-raw .syntax-variable {
    color: #00a8ef;
}
.debug-module--database .debug-module-query-stack-trace {
    color: #999;
    font-family: Monaco, Consolas, "Courier New", Courier, monospace;
    font-size: 12px;
    border-top: 1px solid #161616;
    padding-top: 4px;
    margin-top: 4px;
}

.debug-module-list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    list-style: none;
}
.debug-module-list-group > li {
    align-items: center;
    justify-content: space-between;
    display: flex;
    position: relative;
    white-space: nowrap;
    color: #999;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 2px 0;
}
.debug-module-list-group > li .debug-module-list-value {
    margin-left: 15px;
    color: #eee;
    font-family: Monaco, Consolas, "Courier New", Courier, monospace;
    padding: 0 4px;
    border-radius: 2px;
}
.debug-module-list-group > li .debug-module-list-value--green {
    background-color: green;
}
.debug-module-list-group > li .debug-module-list-value--red {
    background-color: #900;
}

.debug-module-highlight {
    color: #eee;
}

.debug-module--errors .debug-module-content {
    max-height: 500px;
}
.debug-module--errors .debug-module-error {
    background-color: #111;
    padding: 6px 12px;
    position: relative;
    margin-bottom: 10px;
}
.debug-module--errors .debug-module-error:last-of-type {
    margin-bottom: 0;
}
.debug-module--errors .debug-module-error-severity {
    color: #eee;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    background-color: #0c0c0c;
}
.debug-module--errors .debug-module-error-severity--warning {
    color: orange;
}
.debug-module--errors .debug-module-error-severity--notice {
    color: #900;
}
.debug-module--errors .debug-module-error-raw {
    color: #eee;
    font-family: Monaco, Consolas, "Courier New", Courier, monospace;
    font-size: 14px;
    padding-right: 60px;
}
.debug-module--errors .debug-module-error-stack-trace {
    color: #999;
    font-family: Monaco, Consolas, "Courier New", Courier, monospace;
    font-size: 12px;
    border-top: 1px solid #161616;
    padding-top: 4px;
    margin-top: 4px;
}

.debug-module--actions .debug-module-content {
    max-height: 500px;
}
.debug-module--actions .debug-module-action {
    background-color: #111;
    padding: 6px 12px;
    position: relative;
    margin-bottom: 10px;
}
.debug-module--actions .debug-module-action:last-of-type {
    margin-bottom: 0;
}
.debug-module--actions .debug-module-action-priority {
    color: #eee;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    background-color: #0c0c0c;
}
.debug-module--actions .debug-module-action-raw {
    color: #eee;
    font-family: Monaco, Consolas, "Courier New", Courier, monospace;
    font-size: 14px;
    padding-right: 60px;
}
.debug-module--actions .debug-module-action-raw .debug-module-action-file {
    color: #999;
    font-size: 12px;
}
.debug-module--actions .debug-module-action-raw .debug-module-action-callable {
    color: #fff;
}

.ss-wrapper {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    float: left;
    left: -6px;
}

.ss-content {
    height: 100%;
    width: 100%;
    padding: 0 16px 0 0;
    position: relative;
    right: -18px;
    overflow-y: scroll;
}

.ss-scroll {
    position: relative;
    background: #111;
    width: 10px;
    top: 0;
    z-index: 2;
    cursor: pointer;
}

.ss-container.debug-module-content {
    padding: 12px 0;
}

.ss-grabbed {
    user-select: none;
}