.content-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    font-size: 15px;
    line-height: 17px;
    color: rgba(0, 0, 0, 0.75);
    margin-top: 6px;
    position: relative;
}
.content-panel ul:first-of-type {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-gap: 1px;
    margin-left: -3px;
}
.content-panel ul:last-of-type {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 3px;
}
.content-panel-layer {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}
.content-panel-layer.active {
    opacity: 0.5;
    visibility: visible;
}
html.dark .content-panel {
    color: rgba(255, 255, 255, 0.75);
}
.content-panel ul li {
    display: inline-block;
    padding: 4px 8px;
    cursor: help;
    border-radius: var(--border-radius);
    position: relative;
    transition: all 0.3s ease;
}
.content-panel ul li.active {
    background: var(--green);
    font-weight: 900;
    color: white !important;
    animation: contentPanel_popIn 0.3s ease;
}
.content-panel ul li.active {
    background: var(--green);
    font-weight: 900;
    color: white !important;
}
html.dark .content-panel ul li.active {
    color: black !important;
}
.content-panel ul .dev-root-bg.active {
    cursor: pointer !important;
}
.content-panel ul li span {
    margin-left: 4px;
}
.content-panel ul li .tooltip {
    top: -24px;
    width: 70px;
    left: -20px;
}
.content-panel ul li:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.content-panel ul:first-of-type li {
    margin-right: -3px;
}
.content-panel ul li.pointer {
    cursor: pointer;
}
.content-panel ul li.root {
    background: var(--color-root);
}
.content-panel ul li.pointer:hover {
    color: var(--color);
}
@media all and (max-width: 540px) {
    .content-panel ul li .tooltip {
        display: none !important;
    }
}