body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#splashScreen {
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: whitesmoke;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#standbyScreen {
    width: 100%;
    height: 100%;
    min-height: 100%;
    
}

#playerScreen {
    width: 100%;
    height: 100%;
    padding: 0px;
    min-height: 100%;
    color: rgb(233, 129, 129);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

#divVinculacion{
    display: none;
}

#divInfoLeft{
    display: none;
}

#divInfoCenter{
    display: none;
}

#divInfoRight{
    display: none;
}

/* ########### Loader ########### */

.loader {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    font-size: 30px;
    clip-path: inset(0 3ch 0 0);
    animation: l4 1s steps(4) infinite;
}

.loader:before {
    content: "Loading..."
}

@keyframes l4 {
    to {
        clip-path: inset(0 -1ch 0 0)
    }
}

video {
    object-fit: fill;
}