* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -ms-content-zooming: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    background-color: transparent;
    color: #000;
}

a,
a:hover,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

#container {
    width: 864px;
    height: 384px;
    background-color: #000;
    color: #3DA2E7;
    position: relative;
}

#chart {
    background-color: #000;
    display: block;
    float: left;
    width: 864px !important;
    height: 384px !important;
}

#clock,
#total {
    position: absolute;
    top: 10px;
}
#clock {
    left: auto;
    right: 10px;
    display: none;
}
#total {
    left: 10px;
}
#total-container {
    background-color: #333333;
    color: #FFF;
    font-size: 64px;
    line-height: 120%;
    height: 100%;
    position: absolute;
    padding: 0.1em;
}
#total-container #total {
    position: relative;
    top: 0px;
    left: 0px;
}
#total-container #total span {
    display: inline-block;
    width: 1.1em;
    background-color: #FFF;
    background: linear-gradient(0deg, rgba(173,173,173,1) 0%, rgba(255,255,255,1) 50%, rgba(173,173,173,1) 100%);
    color: #000;
    text-align: center;
    font-weight: bold;
    border: .1em solid #000;
    border-width: .1em 0 .1em .1em;
    border-collapse: collapse;
    box-shadow: inset 0 0 .1em #000;
}
#total-container #total span:last-child {
    border-width: .1em .1em .1em .1em;
}
#total-container #total span:nth-last-child(-n + 2) {
    background-color: #E30222;
    background: linear-gradient(0deg, rgba(159,1,24,1) 0%, rgba(227,2,34,1) 50%, rgba(159,1,24,1) 100%);
    color: #FFF;
}
#total-container #unit {
    display: inline-block;
    font-size: 80%;
    line-height: 120%;
    vertical-align: bottom;
    margin-left: -.2em;
    padding: 0 0 .1em;
}