#rplayerSlideshow {
    display: none;
    cursor: none;
    opacity: 0;
    position: fixed;
    background-color: var(--rSlideshowBg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--rSlideshowZIndex);
}

#rplayerSlideshow img {
    position: absolute;
    opacity: 0;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto; 
}

#rplayerSlideshow div {
    position: absolute;
    text-align: center;
    font-size: 4em;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    text-shadow:
        -1px -1px 2px rgb(0,0,0),
        1px -1px 2px rgb(0,0,0),
        -1px 1px 2px rgb(0,0,0),
        1px 1px 2px rgb(0,0,0);
    padding: 1em;
    line-height: 1em;
    z-index: 1;
}