@font-face {
    font-family: IBMPlexSansCondensed-Regular;
    src: url(fonts/IBMPlexSansCondensed-Regular.ttf);
}

@font-face {
    font-family: IBMPlexSansCondensed-Light;
    src: url(fonts/IBMPlexSansCondensed-Light.ttf);
}

@font-face {
    font-family: IBMPlexSansCondensed-Bold;
    src: url(fonts/IBMPlexSansCondensed-Bold.ttf);
}

body {
	background-color: #1e1e1e;
	color: #eaeaea;
	font-family: IBMPlexSansCondensed-Regular;
	padding-left: 7px;
}

h1 {
	font-family: IBMPlexSansCondensed-Light;
	padding: 10px;
	margin: 0;
	font-weight: normal;
}

h2 {
	font-family: IBMPlexSansCondensed-Regular;
	font-size: 16pt;
	padding: 10px;
	margin: 0;
}

td {
	padding-right: 20px;
}

a {
	color: #eaeaea;
}

#hosts {
	overflow: hidden;
	background-color: #262525;
	width: calc(100% - 7px);
	min-height: 190px;
	margin-bottom: 10px;
	-webkit-box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         7px 7px 0px 0px rgba(0, 0, 0, 0.3);
}

#services {
	overflow: hidden;
	background-color: #262525;
	width: calc(100% - 7px);
	min-height: 190px;
	margin-bottom: 10px;
	-webkit-box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         7px 7px 0px 0px rgba(0, 0, 0, 0.3);
}

#info {
	overflow: hidden;
	background-color: #262525;
	width: calc(100% - 7px);
	min-height: 60px;
	margin-bottom: 10px;
	-webkit-box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	font-family: IBMPlexSansCondensed-Bold;
}

#detail {
	float: left;
	background-color: #262525;
	width: calc(100% - 7px);
	margin-bottom: 10px;
	-webkit-box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	font-family: IBMPlexSansCondensed-Bold;
}

#wrapper {
	overflow: hidden;
	float: left;
	width: 60%
}

#wrapper_right {
	overflow: hidden;
	float: right;
	width: -moz-calc(40% - 15px);
	width: -webkit-calc(40% - 15px);
	width: -o-calc(40% - 15px);
	width: calc(40% - 15px);
}

#wrapperMobile {
	overflow: hidden;
	width: 100%
}

.center_text {
	text-align: center;
	position: relative;
	float: left;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dash{
	width: 150px;
	height: 150px;
	font-family: IBMPlexSansCondensed-Regular;
	font-size: 18pt;
	float: left;
	margin: 20px;
	-webkit-box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         7px 7px 0px 0px rgba(0, 0, 0, 0.3);
	background-color: #3d3d3d;
}

.big {
	font-size: 50pt;
	font-family: IBMPlexSansCondensed-Bold;
}

.greenDash {
	background-color: #49963f;
}

.redDash {
	-webkit-animation: redBlink 1s infinite;
	-moz-animation:    redBlink 1s infinite;
	animation:         redBlink 1s infinite;
}

.yellowDash {
	-webkit-animation: yellowBlink 1s infinite;
	-moz-animation:    yellowBlink 1s infinite;
	animation:         yellowBlink 1s infinite;
}

.blackDash {
	-webkit-animation: blackBlink 1s infinite;
	-moz-animation:    blackBlink 1s infinite;
	animation:         blackBlink 1s infinite;
}

.detailText {
	column-count: 1;
	margin: 15px;
}

.redText {
	color: #d81a1a;
}

.yellowText {
	color: #c1be00;
}

@-webkit-keyframes redBlink {
    0% { background-color: #d81a1a; }
    49% { background-color: #d81a1a; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: #d81a1a; }
}
@-moz-keyframes redBlink {
    0% { background-color: #d81a1a; }
    49% { background-color: #d81a1a; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: #d81a1a; }
}
@keyframes redBlink {
	0% { background-color: #d81a1a; }
    49% { background-color: #d81a1a; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: #d81a1a; }
}

@-webkit-keyframes yellowBlink {
    0% { background-color: #c1be00; }
    49% { background-color: #c1be00; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: #c1be00; }
}
@-moz-keyframes yellowBlink {
    0% { background-color: #c1be00; }
    49% { background-color: #c1be00; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: #c1be00; }
}
@keyframes yellowBlink {
	0% { background-color: #c1be00; }
    49% { background-color: #c1be00; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: #c1be00; }
}

@-webkit-keyframes blackBlink {
    0% { background-color: black; }
    49% { background-color: black; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: black; }
}
@-moz-keyframes blackBlink {
    0% { background-color: black; }
    49% { background-color: black; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: black; }
}
@keyframes blackBlink {
	0% { background-color: black; }
    49% { background-color: black; }
    50% { background-color: #3d3d3d; }
    99% { background-color: #3d3d3d; }
    100% { background-color: black; }
}