/**
 * Simple analog and digital gauge plugin for jQuery to build dashboards
 * @version    1.1.0
 * @release    2021-09-05
 * @repository https://github.com/peterthoeny/jquery.simplegauge
 * @author     Peter Thoeny, https://twiki.org/ & https://github.com/peterthoeny
 * @copyright  2021 Peter Thoeny, https://github.com/peterthoeny
 * @license    MIT, https://opensource.org/licenses/mit-license
 */
.simpleGauge_container {
    position: relative;
    overflow: hidden;
}
.simpleGauge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.simpleGauge_block {
    position: absolute;
    z-index: 3;
    overflow: visible !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.simpleGauge_bars {    /* Color bars */
    width: 100%;
    height: 100%;
}
.simpleGauge_bar {
}
.simpleGauge_labels {   /* Labels */
    width: 100%;
    height: 100%;
}
.simpleGauge_label {
    position: absolute;
}
.simpleGauge_ticks {    /* Tick marks */
}
.simpleGauge_tick {
    position: absolute;
    background: #999;
    width: 1px;
    height: 4px;
}
.simpleGauge_pointers {   /* Pointer (analog gauge digit) container */
    width: 100%;
    height: 100%;
}
.simpleGauge_pointer {
}
.simpleGauge_digital {  /* Digital Value */
    position: absolute;
    z-index: 2;
    top: 25%;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: 25px;
    font-family: "Digital Dream Skew Narrow","Helvetica Neue",Helvetica,Arial,sans-serif;
    text-shadow: #999 2px 2px 4px;
}
.simpleGauge_digital span {
    display: inline-block;
    padding: 3px 7px;
}
.simpleGauge_title {    /* Title */
    position: absolute;
    z-index: 1;
    top: 60%;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: 26px;
}
.simpleGauge_title span {
    display: inline-block;
    padding: 3px 7px;
}

/* EOF */
