/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	background: #333333;
	display: flex;
	justify-content: center;
	font-family: 'Open Sans', sans-serif;
}

.container {
	width: 550px;
	height: 500px;
	margin-top: 50px;
}

.container img.logo {
	width: 36px;
	margin-right: 10px;
}

h1 {
	font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    display: inline-block;
    vertical-align: super;
}

h2 {
	color: #6a6a6a;
	font-size: .8em;
	text-transform: uppercase;
	font-weight: 600;
}

.container p {
	color: #ffffff;
	font-size: .8em;
	text-align: justify;
	margin-top: 4px;
}

.container .connections {
	background: #292B2F;
	border-radius: 10px;
	padding: 15px;
}

.container .connections .connected {
	width: 72px;
	padding: 16px 8px 16px 8px;
	background: #2F3136;
	margin: 16px 8px 0 0;
	border-radius: 5px;
	display: inline-block;
}

.container .connections .inactive {
	width: 72px;
	padding: 16px 8px 16px 8px;
	background: #2F3136;
	margin: 16px 8px 0 0;
	border-radius: 5px;
	display: inline-block;
	filter: grayscale(100%);
}

.container .connections .inactive:hover {
	background: #34373e;
	cursor: pointer;
}

.container .connections img {
	height: 48px;
	width: auto;
	display: block;
	margin: 0 auto;
}

.container .spacer {
	margin: 15px 0 15px 0;
	border-bottom: 1px solid #41454B;
}

.container .platform {
	background: #292B2F;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 30px;
}

.container .platform img.platformImg {
	height: 48px;
	width: auto;
}

.container .platform div {
	display: inline-block;
	margin-top: 5px;
    vertical-align: top;
    margin-left: 10px;
}

.disconnect {
	float: right;
	padding: 5px;
}

.disconnect img {
	height: 28px;
	width: auto;
	display: block;
	margin: 0 auto;
}

.disconnect img:hover {
	background: #34373e;
	cursor: pointer;
	border-radius: 5px;
}

.button {
	width: 100%;
	height: 50px;
	background-color: #6441A4;
	font-family: Open Sans, sans-serif;
	font-size: 20px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.34);
	text-align: center;
	line-height: 50px;
	border-radius: 5px;
	display: block;
	margin: 25px auto 0 auto;
}

.logout {
	height: 35px;
	background-color: #01923E;
	color: #ffffff;
	font-family: Open Sans, sans-serif;
	font-size: 16px;
	text-transform: capitalize;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.34);
	text-align: center;
	line-height: 35px;
	border-radius: 5px;
	display: inline-block;
	padding: 0 10px;
	float: right;
}
@media screen and (max-width: 480px) {
  .logout span {
	  display: none;
  }
}
.logout img {
	height: 20px;
	vertical-align: sub;
	margin-left: 4px;
}

a {
	color: #ffffff;
	text-decoration: none;
}