html, body
{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

    background: #333;
}

div.table
{
    display: table;
    width: 100%;
    height: 100%;
    font-size: 0;
}

div.cd
{
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

div.cd div.inner
{
    height: 100%;
}

div.cd div.inner div.image
{
    width: auto;
    display: inline-block;

    position: relative;
    overflow: hidden;
}

div.cd div.inner img
{
    /* max-width: 100%;
    max-height: 100%;
    height: 100%; */
}

div.cover
{

}

div.cover .fill
{
    position: absolute;
    backdrop-filter: grayscale(100%) brightness(5%);
    -webkit-backdrop-filter: grayscale(100%) brightness(5%);
}

.fill.whole
{
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.fill.partial
{
    top: 0;
    left: 0;

    width: 100%;
    height: 30px;
}

.fill.cursor
{
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: rgba(0, 198, 199, 0.25);
    border: 1px solid rgba(255, 100, 0, 0.9);
    box-sizing: border-box;
}

.fill.cursor .interior
{
    backdrop-filter: grayscale(100%) brightness(20%);
    -webkit-backdrop-filter: grayscale(100%) brightness(20%);
    width: 100%;
    height: 50%;
    margin-top: 50%;
    -webkit-animation-name: flash;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    animation: flash ease 1s infinite;
    background-color: rgba(0, 0, 0, 0.5);
}

.hidden
{
    display: none;
}

@-webkit-keyframes flash
{
    0%, 100%
    {
        opacity: 80%;
    }

    50%
    {
        opacity: 10%;
    }
}

@keyframes flash
{
    0%, 100%
    {
        opacity: 80%;
    }

    50%
    {
        opacity: 10%;
    }
}

div.stats
{
    position: absolute;
    bottom: 10px;
    left: 10px;

    font-family: Arial, sans-serif;
    color: white;
}

div.stats span
{
    color: #00c6c7;
}

div.stats span[r]
{
    color: #f77;
}

div.stats h1
{
    margin: 0;
    font-size: 30px;
}

div.stats h2
{
    margin: 0;
    font-size: 24px;
}

div.stats h2.sm
{
    font-size: 18px;
}

div.stats h3
{
    margin: 0 0 5px;
    font-size: 20px;
    display: inline;
}

div.stats div.inputs
{
    margin-bottom: 20px;
}

div.stats div.inputs input
{
    margin-bottom: 10px;
    font-size: 20px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    width: 100px;
    padding: 2px 4px;
}
