body[--pip="true"] {
    font-size: 0px !important;
    pointer-events: none;
    * {
        font-size: 0px;
        background: transparent;
        border: none;
        opacity: 0;
    }
}

body[--pip="true"]::after {
    background: #081e30;
    content: "PIP is enabled";
    font-size: 90px !important;
    width: 100vw;
    height: 100vh;
    display: flex !important;
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 1;
}

body[--pip="true"][--pip-unloading="true"]::after {
    content: "Disabling PIP, please wait...";
    * {
        transition: 0s !important;
    }
}