/* 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 {
	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;
}


html {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
}

.main {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-template-areas: "header" "main";
}

.header {
    background-color: #111;
    font-size: 55px;
    color: #c3c3c3;
    vertical-align: middle;
    padding: 17px 30px;
    grid-area: header;
    height: 120px;
	
}

.stat-container {
   background-color: #111;
}

body {
   background-color: #111;
}

.stats {
    display: flex;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1 0 auto;
    padding: 44px;
    border-radius: 10px;	
    margin: 6px;
    background-color: #1d1c1c;
    overflow: hidden;
    max-width: 100vw;
}

.stat-header {
    width: 100%;
    padding: 20px;
    font-size: 27px;
    color: #a8d6d6;
    background-color: #0f1010;
}

.stat .stat-description {
   font-size: 23px;
   color: #fffef6e8;
}

.stat .stat-value {
    font-size: 55px;
    color: #bbd6cc;	
}

.notes {
    font-size: 30px;
    height: 50px;
    width: 50px;
    background-color: #170cbd;
    float: right;
    margin-top: -106px;
    margin-right: -70px;
    transform: rotate(45deg);
    cursor: pointer;
}

.popover {
    padding: 15px;
    font-size: 15px !important;
    background-color: #ecedf7 !important;
}

.loading {
    color: #28f128;
}

.login-form-container {
    margin: auto;		    
}

.form-signin {
    color: orange;
    max-width: 350px;
    margin: auto;
}