#localPlayer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

    display: none;
    z-index: 100;
}

#localPlayer.active {
    display: block;
}

#player {
    display: none;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#player.active {
    display: block !important;
}

#player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 110 !important;
}

.videoLogoPlaceholder {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

    z-index: 10;
    background-color: var(--color-secondary);
    cursor: pointer;
    border: 1px gray;
    border-style: dashed;
    border-radius: var(--radius-md);
    box-sizing: border-box;

    img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(.8);
        aspect-ratio: 1 / 1;
        height: 100%;
        opacity: 0.2;
        transition: opacity var(--ease-medium);
        filter: grayscale(1);
    }

    &:hover img { 
        opacity: 1;
        filter: none;
    }
}

.video_background_blur {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0px;
    left: 0px;

    display: block;
    filter: blur(210px) saturate(3);

    opacity: 1;
}

.video_background_blur_LB,
.video_background_blur_LT,
.video_background_blur_RB,
.video_background_blur_RT {
    position: absolute;
    width: 65%;
    height: 65%;
    transition: background-color 0.5s ease-in-out;
    opacity: 1 !important;
}

.video_background_blur_LB {
    bottom: 0px;
    left: 0px;
}

.video_background_blur_LT {
    top: 0px;
    left: 0px;
}

.video_background_blur_RB {
    bottom: 0px;
    right: 0px;
}

.video_background_blur_RT {
    top: 0px;
    right: 0px;
}

.videoControlsContainer {
    position: absolute;
    bottom: -40px;
    left: 0px;
    width: fit-content;
    height: 40px;
    padding: var(--padding-sm);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: var(--gap-sm);
    z-index: +10;

    button {
        padding: var(--padding-sm);
        display: flex;
        align-content: center;
        position: relative;
        overflow: visible !important;
        background-color: transparent;
        transition: background-color var(--ease-fast);

        &:hover {
            filter: brightness(1.5);
            background-color: var(--color-secondary);
        }
    }
}

.notesHover { 
    display: none;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100px;
    height: 100%;
    z-index: 99999;
    pointer-events: none;

    &::after {
        content: '';
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        border-radius: var(--radius-md) 0px 0px var(--radius-md);
        height: 15%;
        background-color: var(--color-secondary);
    }
}

.notesHover.videoFullscreen { display: block; }

#blurGrid {
  position:absolute;
  inset:0;
  display:grid;
  pointer-events:none;
  grid-template-columns:repeat(5, 1fr);
  grid-template-rows:repeat(5, 1fr);
}

#blurGrid .blur-cell {
  transition: background-color 0.5s ease;
  filter:brightness(1.05);
}