﻿body {
	background-color: #131313 !important;
	font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular !important;
	line-height: normal;
	color: #FFFFFF !important;
	scrollbar-DarkShadow-Color: #000000;
	scrollbar-Track-Color: #111111;
	scrollbar-Face-Color: #000000;
	scrollbar-Shadow-Color: #444444;
	scrollbar-Highlight-Color: #333333;
	scrollbar-3dLight-Color: #000000;
	scrollbar-Arrow-Color: #FFFFFF;
	margin-top: 50px;
	margin-bottom: 50px;
}

/* Animation */
.animatable { 
  /* initially hide animatable objects */
  visibility: hidden;
  
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}

/* show objects being animated */
.animated {
  visibility: visible;
  
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

/* CSS Animations */
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}



@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	60% {
		-webkit-transform: translateX(20px);
	}

	80% {
		-webkit-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}

	60% {
		-moz-transform: translateX(20px);
	}

	80% {
		-moz-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-o-transform: translateX(20px);
	}

	80% {
		-o-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}

	60% {
		transform: translateX(20px);
	}

	80% {
		transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}

	60% {
		-webkit-transform: translateX(-20px);
	}

	80% {
		-webkit-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}

	60% {
		-moz-transform: translateX(-20px);
	}

	80% {
		-moz-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}

	60% {
		-o-transform: translateX(-20px);
	}

	80% {
		-o-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}

	60% {
		transform: translateX(-20px);
	}

	80% {
		transform: translateX(5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	50% {
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes moveUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(40px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes moveUp {
	0% {
		opacity: 1;
		-moz-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes moveUp {
	0% {
		opacity: 1;
		-o-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@-o-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}

.animated.animationDelay{
	animation-delay:.4s;
	-webkit-animation-delay:.4s;
}
.animated.animationDelayMed{
	animation-delay:1.2s;
	-webkit-animation-delay:1.2s;
}
.animated.animationDelayLong{
	animation-delay:1.6s;
	-webkit-animation-delay:1.6s;
}
.animated.fadeBgColor {
	-webkit-animation-name: fadeBgColor;
	-moz-animation-name: fadeBgColor;
	-o-animation-name: fadeBgColor;
	animation-name: fadeBgColor;
}
.animated.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
.animated.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
.animated.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated.moveUp {
	-webkit-animation-name: moveUp;
	-moz-animation-name: moveUp;
	-o-animation-name: moveUp;
	animation-name: moveUp;
}


.blinken {   
    animation: blinken 1.5s ease-in-out 0s infinite alternate;
    -moz-animation: blinken 1.5s ease-in-out 0s infinite alternate;
    -webkit-animation: blinken 1.5s ease-in-out 0s infinite alternate;
} 

@keyframes blinken { 
    50% { opacity: 0.25; } 
}

@-moz-keyframes blinken {
    50% { opacity: 0.25; }
}

@-webkit-keyframes blinken { 
    50% { opacity: 0.25; }
} 


.box-spacer {
	padding-right: 0px !important;
    padding-left: 0px !important;	
}

.hardware-info {
    position: absolute;
    bottom: 10px;
    right: 14px;
	z-index: 1000;
	text-align: right;
	font-size: 6px;
}

.hardware-info:hover {
    bottom: 0px;
    right: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	border-radius: 0px;

}

.hardware-info-2:hover {
	position: absolute;
    bottom: 0px;
    right: 0px;
	width: 100%;
    font-size: 16px;
	color: #999999 !important;
	padding: 10px;
	transition: 0.3s ease;
}

.header-box {
	background-color: #1D1D1D;
	box-shadow: 5px 5px 20px #000;
	border: 0px;
	width: 85% !important;
    max-width: 1300px !important;
    text-align: center;
    margin: auto;
	margin-top: 50px;
}

.header-img {
	width: 100%;
    text-align: center;
    margin: auto;
	padding-right: 0px;
    padding-left: 0px;
}

.header-img-div {
	padding-right: 0px !important;
    padding-left: 0px !important;
	box-shadow: 5px 5px 20px #000;
	position: relative;
}

.header-text {
	padding: 35px 45px !important;
}

.icon {
	float: left;
	opacity: 1.0;	
}

.icon:hover {
	opacity: 0.4;	
}

.icon-2 {
	float: left;
	opacity: 1.0;	
}

.icon-box-infos {
	display: flex;
	align-items: center;
}

.img-div {
	max-width: 98%;
	box-shadow: 5px 5px 20px #000;
}

.row {
	margin: auto !important;
}
    
.row-header-box {
	margin-right: -45px !important;
    margin-left: -45px !important;
}

.row-server-info {
	
}

.text-box {
	background-color: #1D1D1D;
	box-shadow: 5px 5px 20px #000;
	border: 0px;
	width: 85% !important;
    max-width: 1300px !important;
    text-align: center;
    margin: auto;
	margin-bottom: 50px;
	padding: 40px 15px;
}

.text-box-2 {
	padding-bottom: 25px !important;
}

.text-box-3 {
	background-color: #1D1D1D;
	box-shadow: 10px 10px 20px #000;
	border: 0px;
	width: 85% !important;
    max-width: 1300px !important;
    text-align: center;
    margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding-bottom: 25px !important;
}

.text-box-4 {
	padding: 25px 45px !important;
}

.text-box-5 {
	padding: 0px 45px 25px 45px !important;
}

.text-box-infos {
	padding: 10px 0px;
	display: table;
    margin: auto;
    min-width: 300px;
	height: 65px;
}

.text-box-ip {
	padding-left: 20px;
	text-align: left;
}

.text-box-links {
	width: 48%;
}

.text-box-rechts {
	width: 48%;
}

.bold {
	font-weight: bold;
}

.text-10 {
	font-size: 10px;
}

.text-11 {
	font-size: 11px;
}

.text-12 {
	font-size: 12px;
}

.text-13 {
	font-size: 13px;
}

.text-14 {
	font-size: 14px;
}

.text-16 {
	font-size: 16px;
}

.text-18 {
	font-size: 18px;
}

.text-20 {
	font-size: 20px;
}

.text-24 {
	font-size: 24px;
}

.black {
	color: #000000 !important;
}

.grey-light {
	color: #EBEBEB !important;
}

.grey {
	color: #999999 !important;
}

.grey-dark {
	color: #444444 !important;
}

.red {
	color: #FF0033 !important;
}

.yellow {
	color: #FAFFA9 !important;
}

.white {
	color: #FFFFFF !important;
}


a:link {
	color: #EBEBEB;
	text-decoration: none;
}

a:active {
	color: #EBEBEB !important;
	text-decoration: none;
}

a:visited {
	color: #EBEBEB;
	text-decoration: none;
}

a:hover{
	color: #FAFFA9 !important;
}


.footer {
	text-align: center;
	margin-bottom: 20px;
}