@font-face {
    font-family: 'Genos-Light';
    src: url('fonts/Genos-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Genos-ExtraLight';
    src: url('fonts/Genos-ExtraLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root{
    --main-font-size:16px;
    --main-line-height:16px;
}
*{
	padding:0px;
	margin:0px;
	font-family:"Genos-Light", Helvetica, Ariel, sans-serif;
	-webkit-text-size-adjust: none;
    color:#fff;
    font-weight:normal;
    font-style: normal;
	font-size:var(--main-font-size);
    line-height: var(--main-line-height);
	border:0px;
	outline:none;
	text-align:left;
    text-shadow: 1px 1px 1px rgba(0,0,0,1),0px 0px 1px rgba(0,0,0,1);
    text-shadow: 0px 0px 1px rgba(0,0,0,1);
}
html,body{
    position:relative;
    width:100%;
	height:100%;
    background: #000;
    overflow: hidden;
}
.mitteXY{
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.mitteX{
	position:absolute;
	left:50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.mitteY{
	position:absolute;
	top:50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.bg{
    position: fixed;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
	background: #000000 url("images/backg.jpg") no-repeat fixed center;
    background-size: cover;
	z-index:1;
}
.bg .rahmen{
	position: absolute;
	left:0px;
    top:0px;
    width:100%;
    height:100%;
	box-shadow: inset 0px 0px 50px rgba(0,0,0,1),inset 0px -30px 30px rgba(0,0,0,0.5);
}
.bg .planet{
	position: absolute;
	bottom:-800px;
	right:-200px;
	width:1200px;
	height: 1200px;
	border-radius: 100%;
	box-shadow: 0px -30px 50px rgba(35,86,161,0.3);
	overflow: hidden;
}
.bg .planet img{
	position: absolute;
	width: 100%;
}
.bg .planet .schatten{
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	box-shadow: inset 0px 0px 5px #000,inset -150px -850px 150px #000;
}
h2{
    font-size: 20px;
    margin-bottom: 10px;
}
small{
    font-size:15px;
    line-height: 14px;
}
.in{
    display: block;
    width: calc(100% - 10px);
    padding: 2px 5px;
    border-radius: 3px;
    background: rgba(0,0,0,0.1);
    margin-top:5px;
    box-shadow: inset 0px 0px 1px rgba(255,255,255,0.7);
}
/* ### NAV ###################################################################*/
nav{
	position: fixed;
    top:15px;
	left:0px;
	width: 100%;
	height: 28px;
	z-index:100;
	text-align: center;
}
nav .logo{
	display: inline-block;
	font-size: 30px;
	line-height: 20px;
	vertical-align: top;
}
nav .linie{
	display: inline-block;
	background: #fff;
	width: 2px;
	border-radius: 2px;
	height: 24px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 0px;
	vertical-align: top;
}
nav .bt{
    position: relative;
	display:inline-block;
    width:24px;
    height:24px;
	padding:5px;
	vertical-align: top;
	margin-top: -3px;
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
}
nav .bt .ic{
	display:inline-block;
	width: 24px;
	height: 24px;
	stroke-width:1;
}
nav .bt span{
	display: none;
	position: absolute;
	top:30px;
}
nav .bt:hover .ic{
	stroke:#f00;
}
nav .bt:hover span{
	display: block;
}
nav .bt .ic.alert{
    animation: nav_alert 0.5s ease infinite;
}
@keyframes nav_alert {
  0% {stroke:#fff;stroke-width:1;} 50% {stroke:#f00;stroke-width:2;} 100% {stroke:#fff;stroke-width:1;}
}
/* ### CHAT ##################################################################*/
footer{
	position: fixed;
	bottom:15px;
	left:0px;
	width: 100%;
	height: 20px;
	z-index:99;
    text-align: center;
}
footer .cfg{
    position: absolute;
    left:15px;
    opacity: 0.5;
}
footer .logout{
    position: absolute;
    right:15px;
    opacity: 0.5;
}
footer .cfg:hover,footer .logout:hover{
    opacity: 1;
    stroke:#f00;
}
footer .ic{
	width:20px;
	height:20px;
    stroke-width:1;
    cursor: pointer;
}
footer .ic:hover{
    stroke:#f00;
}
/* ### MAIN ##################################################################*/
main{
    position: fixed;
    top:60px;
    left:30px;
    width:calc(100% - 60px);
    height: calc(100% - 120px);
    z-index: 10;
    text-align: center;
}
.win{
    display: inline-block;
    position: relative;
    width:240px;
    max-height: calc(100% - 40px);
    text-align: left;
    padding:20px;
    margin:0px 10px;
    vertical-align: top;

    border-radius: 3px;
    box-shadow: inset 0px 0px 1px rgba(255,255,255,0.5);

    background: rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    overflow: hidden;
}
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .win{
    background-color: rgba(0,0,0,0.8);
  }
}
.win .planet{
    position: relative;
    display:block;
    margin: auto;
    width:80%;
    box-shadow: 0px 0px 30px rgba(100,100,255,0.7),0px 0px 3px rgba(255,255,255,0.5);
    border-radius: 200px;
}
.win .linie{
    position: absolute;
    right:4px;
    top:4px;
    height: 90%;
    width: 1px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    box-shadow: 0px 0px 2px #000;
}
button{
    display:inline-block;
    padding:5px 10px;
    padding-bottom:7px;
    color:#fff;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 10px;
}
