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 {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    background: #E0FCFF;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

#header {
    height: 108px;
    padding: 16px;
    background: #85BAC0;
    margin-bottom: 30px;
}

#header-inner {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    width: 270px;
    height: 106px;
    background: url(logo.png) no-repeat;
    text-indent: -9999px;
    float:left;
}

#status {
    float: right;
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px;
    color: #3E3E3E;
    font-size:20px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    margin-top: 30px;
}

#status-listening, #status-stopped {
    cursor: pointer;
}

#status-listening span {
    margin-left: 25px;
}

.ring-container {
    position: relative;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #ff0000;
    border-radius: 50%;
    position: absolute;
    top: 2px;
}

.ringring {
    border: 3px solid #ff0000;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    left: -8px;
    top: -6px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

#status.loading #status-listening,#status.loading #status-stopped {
    display: none;
}
#status.listening #status-loading, #status.listening #status-stopped {
    display: none;
}
#status.stopped #status-loading, #status.stopped #status-listening {
    display: none;
}

#content {
    max-width: 1200px;
    margin: 0 auto;
}

#health {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    line-height: 1.4;
}

#health.good {
    color: #13431B;
    background: #5FD273;
}
#health.warn {
    color: #434113;
    background: #C6D25F;
}
#health.bad {
    color: #431313;
    background: #D25F5F;
}


#health.good .warn, #health.good .bad {
    display: none;
}
#health.warn .good, #health.warn .bad {
    display: none;
}
#health.bad .good, #health.bad .warn {
    display: none;
}

#charts {
    padding: 30px 40px 40px 40px;
    background: #C1A898;
    border-radius: 5px;
    margin: 0 auto;
}

#resolutions {
    text-align: center;
    margin-bottom: 30px;
}

#resolutions li {
    padding: 10px 20px;
    background: #fff;
    display: inline-block;
    border-radius: 10px;
    color: #3E3E3E;
    font-size:20px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
}

#chart-container {
    background: #756458;
    padding: 30px;
    border-radius: 5px;
}

#testdata {
    margin-top: 30px;
    border-top: 1px solid #85BAC0;
    padding-top: 30px;
}

#testdata h2 {
    font-size: 24px;
}

#testdata li {
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    color: #3E3E3E;
    font-size:20px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    margin-right: 20px;
    margin-top: 10px;
}

#testdata li:hover {
    cursor: pointer;
}

#disclaimer {
    margin-top: 30px;
    border-top: 1px solid #85BAC0;
    padding-top: 30px;
    line-height: 1.4;
    color: #3E3E3E;
    font-size:12px;
}

#project {
    width: 500px;
    display: block;
    margin: 30px auto 0 auto;
}