html, body {
	overflow-x: hidden;
}

html {
	background: #191b22 url(bg.png) no-repeat center center fixed;
}

body {
	font-family: 'Montserrat', sans-serif;
	text-align: center;
}

h1 {
    margin: 35px 0px 0px 0px;
	color: white;
	font-weight: 400;
	font-size: 40px;
}

h2 {
	margin: -30px 0 20px 0;
	color: white;
	font-weight: 700;
	font-size: 16px;
}

.stack {
	width: 100%;
	margin: 45px auto;
}

.server {
	display: inline-block;
	padding: 10px;
	margin: 5px;
}

.server-name {
	color: white;
	font-weight: 400;
	font-size: 14px;
	padding: 10px 0;
	margin-top: 25px;
}

.server-status {
	width: 125px;
	height: 125px;
	border-radius: 100%;
}

.server-status.online {
	border: 2.1px solid #91FF00;
	color: #91FF00;
	width: 110px;
	height: 110px;
}

.server-status.lockdown {
	border: 2.1px solid #ff9d00;
	color: #ff9d00;
	width: 110px;
	height: 110px;
}

.server-status.offline {
	border: 2.1px solid #F53B3B;
	color: #F53B3B;
	width: 110px;
    height: 110px;
}

.server-status.warning {
	border: 2.1px solid #F53B3B;
	color: #FFA500;
	width: 110px;
    height: 110px;
}

#topbarStacks{
    position: fixed;
    width: 100%;
    height: 20px;
    z-index: 3;
}

.serv{
    display: inline-block;
    position: relative;
    height: 20px;
    -webkit-transition: width 1s; /* Safari */
    transition: width 1s;
    z-index: 3;
}

#issues-bar{
    float: left;
    top: 15px;
    position: fixed;
    height: 20px;
    z-index: 1;
    overflow-y: auto;
    height: 100%;
}

a:link, a:visited, a:hover, a:active{
    color: white;
    text-decoration: underline;
}

#mojang-bar{ 
    height: 90px;
    width: 200px;
    right: 0;
    position: fixed;
    top: 15px;
    z-index: 1;
}

.mojang-status-unstable{
    position: relative;
    height: 20px;
    background-color: orange;
    font-size: 12px;
    width: 200px;
    padding: 8px 0px 0px 0px;
    text-align: center;
    z-index: 1;
}

.mojang-status-offline{
    position: relative;
    height: 20px;
    background-color: rgb(170, 0, 0);
    font-size: 12px;
    width: 200px;
    padding: 8px 0px 0px 0px;
    text-align: center;
    z-index: 1;
}

.mojang-status-green{
    opacity: .99;
    position: relative;
    height: 20px;
    background-color: green;
    font-size: 12px;
    width: 200px;
    padding: 8px 0px 0px 0px;
    text-align: center;
    z-index: 1;
}

.serv .tooltiptext {
    visibility: hidden;
    color: #fff;
    text-align: center;
    position: absolute;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
    top: 20px;
    z-index: 3;
}

.serv .tooltiptext::after {
    content: "";
    position: absolute;
    z-index: 3;
}

.serv:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    position: absolute;
    width: 100vw;
    left: calc(-50vw + 50%);
    height: 15px;
    z-index: 3;
}

.tooltiptext{
    z-index: 3;
}

@media only screen and (max-width: 860px) {
    #mojang-bar{
    	display: none;
    }
	#issues-bar{
		display: none;
	}
}

.oneserver {
    width: auto;
    display: inline-block;
}

.no-margin-top {
	margin-top: 8px!important;
}

.gate-queue {
	position: relative;
	top: 8px;
	color: white;
}