

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    background: #1A1A1A;
    color: #F5F5F5;
    font-size: 16px;
    font-family: 'Inconsolata', 'Helvetica Neue', 'Arial';
}

.main {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.content {
    margin: 0 -10%;
    transform: rotate(5deg);
    padding: 6% 5%;
}
.middle, .leftside {
    transform: rotate(-5deg);
}
.whitecontentdiv {
    background: #DADFE3;
    color: #0f0f0f;
}
.redcontentdiv {
    background: #A63E3F;
}

.rightpanel {
    padding: 40px 30px 0;
    margin-top: 0;
    background: #2E2E2E;
    color: #F5F5F5;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
}

.rightpanelbgfixed {
    display: none;
    height: 100%;
    position: fixed !important;
}

.rightpaneltop {
    height: auto;
    width: 100&;
    margin-bottom: 40px;
    background: #2E2E2E;
    position: absolute;
    z-index: 5;
}

.rightpanel .logo {
    width: 100%;
    margin-left: -20px;
}

.rightpanel hr {
    display: block; height: 1px;
    border: 0; border-top: 1px solid #444444;
    margin: 1em 0; padding: 0;
}

.contact-header {
    color: #F5F5F5;
    text-align: center;
}

.faq > li {
    margin: 15px 0 0 -15px;
}

.serverrules li {
    list-style: none;
    margin: 5px 0 5px -35px;
}

.contactonsmall {
	display: none;
}

@media (max-height: 950px) {
    .rightpanel {
        position: absolute;
        height: auto;
    }
    .rightpanelbgfixed {
        position: fixed;
        display: block;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .content {
        margin: 0 -10%;
        padding-top: 10%;
        padding-bottom: 10%;
        transform: rotate(2deg);
    }
    .middle, .leftside {
        transform: rotate(-2deg);
    }
    .rightpanel {
		display: none;
    }
    .rightpanelbgfixed {
        display: none;
    }

	.contactonsmall {
		display: block;
	}

}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

.grayout {
    color: lightgray;
}
.buttonjoin {
    background: #F15942;
}
.rightpanel a:hover {
	text-decoration: none;
}

.loginFailed {
	color: red;
	padding: 8px;
}

.login-header {
	margin: 12px 0 15px;
}

.blur {
  -webkit-animation: blur 0.5s linear forwards;
  -moz-animation: blur 0.5s linear forwards;
  -ms-animation: blur 0.5s linear forwards;
  -o-animation: blur 0.5s linear forwards;
  animation: blur 0.5s linear forwards;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.delay {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
@-webkit-keyframes blur {
  to {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}
@-moz-keyframes blur {
  to {
    -moz-filter: blur(5px);
    filter: blur(5px);
  }
}
@keyframes blur {
  to {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    filter: blur(5px);
  }
}

.fade-out {
    -webkit-animation: fadeOut 2s forwards;
    animation: fadeOut 2s forwards;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

@-webkit-keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
    100% {visibility:hidden; width:0; height:0; margin: 0; padding: 0; background: transparent; overflow: hidden;}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
    100% {visibility:hidden; width:0; height:0; margin: 0; padding: 0; background: transparent; overflow: hidden;}
}
