/* #region | css reset */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

input,
button,
textarea,
select {
    font: inherit;
}

/* #endregion | css reset */

#PlayButtons {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 4px;
}

.PlayButton {
    padding: 8px;
    color: brown;
    background-color: blanchedalmond;
    border: 1px solid bisque;
    cursor: pointer;
    margin-right: 8px;
}

.PlayButton:last-child {
    margin-right: 0px;
}

#VideoContainerElement {
    top: 60px !important;
    max-height: calc(100dvh - 60px);
    opacity: 0;
    transition: opacity 100ms;
}

#VideoContainerElement.show {
    opacity: 1;
}

#VideoElement {
    width: 100%;
    height: 100%;
    max-height: calc(100dvh - 60px);

}