/* Gets rid of the shitty padding from the pf2e hud module. */
ul.chat-log.plain, ol.chat-log.plain {
    list-style: none;
    margin: 0;
    padding: 0;
}

#effects-panel > .effect-item > .icon {
    border-radius: 50%;
    &.unidentified {
        filter: drop-shadow(0 0 0.2em var(--visibility-gm-bg));
        opacity: .5;
    }
}

/* Hide droppeth folder from view. */
li.folder[data-folder-id="UDV3J0xo0bAra0Q5"] {
    display: none !important;
}

#pf2e-hud-persistent [data-panel=owned-actors] .owned-actor .bars > .fills > .fill.hp,
#pf2e-hud-persistent [data-panel=owned-actors] .owned-actor .bars > .fills > .fill.sp {
    box-shadow: inset 0 0 0 1px #000 !important;
    border-radius: 0 !important;
}
#pf2e-hud-persistent [data-panel=owned-actors] .owned-actor img {
    object-fit: cover !important;
}

#pf2e-hud-persistent [data-panel=owned-actors] .owned-actor div:not(.fills):not(.fill) {
    opacity: 0.75 !important;
}

/* remove borders on subitems */
ul.items.subitems, ul.items.container-contents {
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    border-color: transparent;
    box-shadow: 0 0 0 1px var(--border-color);
}

button[data-action="openPartySheet"] {
    --fa: "\e533" !important;
}

#interface * {
    scrollbar-width: none;
}

a.inline-check.with-repost:not([data-pf2-dc]) {
    padding-left: 0;
    & > i:first-child {
        margin-right: 0;
    }
}

section#scenes li.directory-item.scene {
    height: 3em;
    transition-property: height;
    transition-duration: 0.5s;
    transition-delay: 0.25s;
    transition-timing-function: ease;
    &:not(:last-child) > img {
        min-height: var(--sidebar-scene-height);
    }
}

section#scenes li.directory-item.scene:hover {
    height: var(--sidebar-scene-height);
}