﻿:root
{
	--color: #C5CAE9;
	--colordark: #004A7F;
	--coloraccent: #287AA9;
	--colortext: #000000;
	--colortexthover: #FFFFFF;
	--gui-color: var(--color);
	--gui-colordark: var(--colordark);
	--gui-coloraccent: var(--coloraccent);
	--gui-colortext: var(--colortext);
	--gui-colortexthover: var(--colortexthover);
}

*
{
    box-sizing: border-box;
    font-family: Verdana !important; /* 12px */
    outline: none;
    user-select: none;
}

html
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

body
{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 12px;
    font-weight: normal;
    color: #000000;
}

#pnlHead
{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 70px;
    background-color: var(--colordark);
    color: var(--colortexthover);
    padding: 10px;
}

#pnlHead #pnlCopyright
{
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 0.7em;
}

#pnlHead #pnlLogo
{
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
}

#pnlHead #pnlLogo img
{
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto 0 auto 0;
    width: 256px;
}

#pnlHead #pnlTitle
{
    position: absolute;
    display: inline-block;
    left: 70px;
    right: 70px;
    min-height: 50px;
    line-height: 50px;
    text-align: left;
    font-size: 2em;
    font-weight: bold;
    vertical-align: middle;
}

#pnlToolbar
{
    position: fixed;
    left: 0px;
    top: 70px;
    right: 0;
    height: 30px;
}

#pnlPlaying
{
    position: fixed;
    left: 0px;
    top: 96px;
    right: 0;
    height: 30px;
    padding-left: 5px;
    line-height: 30px;
    vertical-align: middle;
    font-weight: bold;
    font-size: 1.5em;
    background-color: var(--color);
}

#pnlFilter
{
    position: fixed;
    left: 0px;
    top: 130px;
    right: 0;
    height: 50px;
    padding-left: 5px;
}

#pnlContent
{
    position: fixed;
    left: 0px;
    top: 185px;
    right: 0;
    bottom: 0;
    padding: 5px;
    overflow-x: hidden;
}

#pnlChannelsList
{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.channel
{
    /*display: inline-block;*/
    padding: 5px;
    min-width: 100px;
    max-width: 100px;
    cursor: pointer;
    border: 2px solid transparent;
}

.channel > *
{
    flex: 1;
}

.channel img
{
    width: 85px;
    height: 85px;
}

.channel[checked=true]
{
    border: 2px solid var(--coloraccent);
}