
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
    background-color: #000000;

    user-select:none;
    -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */

   touch-action: manipulation;
}


#debuglog {
    overflow: scroll;
}
#debuglog span {
    font-family:'Courier New', Courier, monospace;
    font-size: 0.8em;
    
}

.hide {
	display: none;
}
#game {
    z-index: 400000;
    display: block;
    position: absolute;
    background-color: black;
    
}
.loadingWrap {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background-color: black;
    z-index: 20000;
}
.loading {
    width: 100%;
    top: calc(50% - 150px);
    /* left: calc(50% - 150px); */
    position: absolute;
    font-size: 60px;
    text-align: center;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#playerContainer {

    display: block;
    /* width: 100%;
    height: 100%; */
    background-color: #FFF;
    position: relative;
    color: black;

    /* width: 1920px;
    height: 1080px; */
    overflow: hidden;
    transform-origin: left top;
}

#noConnection {
    background-image: url(../images/noconnection.png);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1001;
}
#noBroadcast {
    background-image: url(../images/nobroadcast.png);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.overlayContainer {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 999;
}

.registrationContainer {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #2c8a55;
    color: white;
    top: 0;
    left: 0;
    font-size: 50px;
    
    text-align: center;
}
.contentContainer {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

    .contentContainer p {
        margin: 0px;
    }
    .contentContainer ol {
        margin: 0 0 0 20px;
    }
    .contentContainer ul {
        margin: 0 0 0 20px;
    }

.dnc_text_div {
    /* display: flex; */
    position: absolute;
    overflow: hidden;
    /* flex-direction: column; */
}

.dnc_image_div {
    display: block;
    position: absolute;
    background-position: center center;
    
}

/* #rssFooter, */
.dnc_ticker_div {    
	display: block;
	height: 100px;
	display: table;
	color: white;
	font-size: 60px;
    z-index: 999;
    position: fixed;
    bottom: 0;
    left: 500px;
    width: calc(100% - 500px);
    line-height: 100px;
    overflow: hidden;
}

.rssContainer{     
    display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: ticker;
	animation-duration: 100s;
	text-align: center;
	padding-left: 100%;
	width: max-content;
}

ul.rssticker {
	position: relative;
	font-weight: bold;
	list-style-type: none;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0s linear;
	-moz-transition: all 0s linear;
	-o-transition: all 0s linear;
	transition: all 0s linear;
}

ul.rssticker li {
	float: left;
	margin: 0;
	font-size: 0.8em;
	
}
ul.rssticker li a {
	color: #006;
	text-decoration: none;
}



ul.rssticker li:after {
    content: " - " !important;
    padding-right: 40px;
    padding-left: 30px;
}
ul.rssticker li.pipe:after {
    content: " | " !important;
}

ul.rssticker li.last:after {
    content: "" !important;
}



@-webkit-keyframes ticker {
	0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
	}
	100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
	}
}
@keyframes ticker {
	0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
	}
	100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
	}
}


.dnc_widget {
    display: block;
    position: absolute;
}