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,
u, 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;
    font-family: 'Raleway', sans-serif;
}
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 {
    color: #aaa
}

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

/**

    Style & Layout

*/

.header {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
}

.page {
    max-width: 1200px;
    min-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spacer {
    margin-left: 10px;
    margin-right: 10px;
}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.stretch {
    width: 100%;
}

.row {
    flex-direction: row;
}

.justify-end {
    justify-content: flex-end;
}

.hr {
    border-top: 1px solid #e5e5e5;
    height: 1px;
    width: 100%;
}

/**

    Page elements

*/

h1 {
    font-size: 21px;
}

.logo {
    height: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.info-header {
    background-color: #FFF;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.notification {
    color: #FFF;
    padding: 20px;
    border-radius: 4px;
}

.notification p {
    margin-top: 15px;
}

.notification.success {
    background-color: #2ecc71;
    border: 1px solid #289b44;
}

.notification.info {
    background-color: #3498db;
    border: 1px solid #286c9b;
}

.notification.warning {
    background-color: #f1c40f;
    border: 1px solid #b59b0c;
}

.notification.critical {
    background-color: #e74c3c;
    border: 1px solid #a3382b;
}

.indicator {
    display: inline-block;
    float: right;
}

.indicator.success {
    color: #2ecc71;
}

.indicator.info {
    color: #3498db;
}

.indicator.warning {
    color: #f1c40f;
}

.indicator.critical {
    color: #e74c3c;
}

.main > div {
    margin: 30px 10px;
}

.incidents {
    flex: 11;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    min-width: 250px;
}

.incidents h2 {
    text-transform: uppercase;
}

.incidents > .line {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px;
}

.incidents > .line:last-child {
    border-bottom: none;
}

.incidents > .empty {
    background-color: #f7f7f7;
}

.incidents > .line .date {
    color: #000;
    min-width: 120px;
}

.incidents > .line .content {
    flex: 1;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px;
    margin-bottom: 20px;
}

.incidents > .line .content h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.incidents > .line .content h3:first-child {
    margin-top: 0;
}

.incidents > .line .content b {
    color: #000;
    margin-bottom: 10px;
}

.incidents > .line .content p {
    color: #000;
    margin-bottom: 10px;
    line-height: 24px;
}

.services {
    flex: 5;
    min-width: 250px;
}

.services h2 {
    text-transform: uppercase;
    color: #000;
}

.services .group {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 20px;
}

.services .group:last-child {
    margin-bottom: 0px;
}

.services .group > .line {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px;
}

.services .group > .line:last-child {
    border-bottom: none;
}

.footer {
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer a:hover {
    text-decoration: underline;
}
