.js_debugLog {
    /* background: var(--recruit-debugLog-bg-color-rgba); */
    color: var(--recruit-debugLog-text-color-rgba);
    column-count: 1;
    column-fill: auto;
    column-gap: 1rem;
    font-family: monospace;
    font-size: 8px;
    height: calc(100vh - var(--recruit-header-fixed-height) - 0px);
    left: 0;
    line-height: 1.20;
    overflow-anchor: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 5px;
    position: fixed;
    top: calc(var(--recruit-header-fixed-height) + 0px);
    white-space: normal;
    width: 100%;
    word-break: break-word;
    z-index: 9999;

    pointer-events: none;

    @media screen and (min-width: 768px) {
        top: calc(var(--recruit-header-fixed-height) + 5px);
        height: calc(100vh - var(--recruit-header-fixed-height) - 5px);
    }

    &:not(.is-enabled) {
        display: none !important;
    }

    .el_log_devNotice {
        font-weight: var(--font-weight-light);
        background-color: #933;
        color: #fff;
        padding: 0.3rem;
        font-size: 1.0rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .el_log_header,
    .el_log_section {
        break-inside: avoid;
        display: block;
    }

    .el_log_header {
        color: var(--recruit-debugLog-text-color-rgba);
        font-weight: var(--font-weight-light);
        break-inside: avoid;
        display: block;
        margin-top: 1.5em;
    }

    .el_log_section {
        color: var(--recruit-debugLog-text-color-rgba);
        font-weight: var(--font-weight-light);
        break-inside: avoid;
        display: block;
        margin-top: 1.5em;
    }

    .el_log_key {
        color: var(--recruit-debugLog-text-color-rgba);
        font-weight: var(--font-weight-light);

        .el_blinking {
            animation: blink 1.25s ease-in-out infinite;
        }
    }

    .el_log_value {
        color: var(--recruit-debugLog-text-color-rgba);
        font-weight: var(--font-weight-bold);
    }

    .el_log_hr {
        border-top: 1px solid var(--recruit-debugLog-text-color-rgba);
        margin: 2px 0;
        break-inside: avoid;
    }

    .el_log_icon {
        display: inline-block;
        width: 1.25em;
        text-align: center;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}
