.FormAlert {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: large;
    text-align: center;
    z-index: 99999999;
}

.z-calendar-date {
    background-color: transparent;
    box-shadow: none;
    color: #5676cc;
    height: 28px;
    line-height: 26px;
    margin: 0;
    padding: 0;
    width: 28px;
}

.z-selected-date, .z-calendar-date:focus, .z-calendar-date:hover {
    background-color: #8ecc0a;
    color: #fff;
}

.z-current-selection-date {
    background-color: #f3ca12;
    color: #fff;
}

.z-current-date, .z-current-date:hover {
    font-weight: bold;
    text-decoration: underline;
}

.z-disabled-date {
    background-color: transparent;
    color: #aaa;
}

.z-month-selector {
    background: none;
    border: none;
    color: #bbb;
    font-size: 17px;
    outline: none;
}

#loading-spinner {
    display: none;
    background: rgba(255, 255, 255, 0.4);
    height: 100%;
    position: fixed;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}

.loader.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
    border: 4px solid #CCC;
    border-radius: 50%;
    height: 48px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 48px;
}

.loader.spinning span:first-of-type {
    background-color: #337ab7;
    border-radius: 50%;
    display: block;
    height: 9px;
    margin: auto;
    width: 24px;
    position: absolute;
    top: -4px;
    right: 0;
    left: 0;
}

.loader.spinning span:last-of-type {
    background-color: #fff;
    border-radius: 50%;
    display: block;
    height: 40px;
    margin: auto;
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 40px;
}

.filters {
    font-family: sans Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
    background-color: #85C8F2;
    padding: 20px;
    margin-bottom: 50px;
}

.heading {
    padding: 0 10px;
}

.barchart,
.donutchart {
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
    font: normal 100%/150% arial, helvetica, sans-serif;
}

.barchart .bar:nth-child(odd) {
    fill: #0583F2;
}

.barchart .bar:nth-child(even) {
    fill: #44AFF2;
}

.donutchart svg {
    width: 100%;
    height: 100%;
}

.donutchart .labels text {
    font-size: 10px;
}

.donutchart polyline {
    opacity: 0.3;
    stroke: #000;
    stroke-width: 1px;
    fill: none;
}

.donutchart-tooltip {
    background: #FFF;
    border: 1px solid #313639;
    border-radius: 8px;
    color: #313639;
    font-size: 1.3rem;
    opacity: 0;
    padding: 0.5rem;
    pointer-events: none;
    position: fixed;
    text-align: left;
    z-index: 9;
}

.donutchart-tooltip h4.tooltip-header {
    border-bottom: 1px solid #aaa;
}

.donutchart-tooltip p {
    clear: both;
    font-size: 10px;
    margin: 0;
    padding: 0 10px;
}

.donutchart-tooltip p:nth-of-type(odd) {
    background-color: #f4f4f4;
}

.donutchart-tooltip p.total-row span.total-row-value-label {
    padding-right: 15px;
}

.donutchart-tooltip p.total-row {
    background-color: #ddd;
    border-top: 1px solid #ddd;
    font-size: 12px;
    font-weight: bold;
}

.donutchart-tooltip p span.value {
    float: right;
    font-weight: bold;
    padding: 0 0 0 24px;
}

.percentagechart svg {
    width: 140px;
    height: 140px;
}

.percentagechart .middle-circle text {
    font-size: 24px;
}

.percentagechart-tooltip {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    text-align: left;
    z-index: 9;
}

.percentagechart-tooltip p {
    background: #FFF;
    border: 1px solid #313639;
    border-radius: 8px;
    color: #313639;
    clear: both;
    font-size: 14px;
    margin: 0;
    padding: 0 10px;
}

.percentagechart-tooltip p:nth-of-type(odd) {
    background-color: #f4f4f4;
}

.percentagechart-tooltip p.total-row {
    background-color: #ddd;
    border-top: 1px solid #ddd;
    font-size: 12px;
    font-weight: bold;
}

.percentagechart-tooltip p span.value {
    float: right;
    font-weight: bold;
    padding: 0 0 0 24px;
}
