|
@@ -0,0 +1,2062 @@
|
|
|
+
|
|
|
+.flexy-grid {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+ padding: 4em 0;
|
|
|
+}
|
|
|
+
|
|
|
+.flexy-grid .flexy-column {
|
|
|
+ display: flex;
|
|
|
+ flex: 1;
|
|
|
+ justify-content: center;
|
|
|
+ margin-bottom: 3em;
|
|
|
+}
|
|
|
+
|
|
|
+.flexy-grid .flexy-column .flexy-item {
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.flexy-grid:nth-of-type(odd) {
|
|
|
+ background-color: #D8DBE4;
|
|
|
+}
|
|
|
+
|
|
|
+.flexy-grid input[type='checkbox'] {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.value-label {
|
|
|
+ position: relative;
|
|
|
+ display: inline-block;
|
|
|
+ margin: 4em 0 2.5em 0;
|
|
|
+ font-size: 1em;
|
|
|
+ font-weight: bold;
|
|
|
+ line-height: 1em;
|
|
|
+ padding: 1em;
|
|
|
+ color: #fefefe;
|
|
|
+ background-color: rgba(255, 105, 0, 0.6);
|
|
|
+ border: 1px solid rgba(153, 153, 153, 0.2);
|
|
|
+ border-radius: 0.25em;
|
|
|
+ box-shadow: 0 0.1em 0.25em rgba(153, 153, 153, 0.6), inset 0 0.15em 0.05em rgba(254, 254, 254, 0.2);
|
|
|
+}
|
|
|
+
|
|
|
+.value-label:hover {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.fa,
|
|
|
+.fa:before {
|
|
|
+ width: 1em;
|
|
|
+ height: 1em;
|
|
|
+ line-height: 1em;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.fa {
|
|
|
+ margin: 0 .1em;
|
|
|
+ transition: transform 0.25s ease-in-out;
|
|
|
+ transform-origin: 50% 55%;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+input[type='checkbox']:checked ~ .value-label {
|
|
|
+ background: #444444;
|
|
|
+ box-shadow: none;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+input[type='checkbox']:checked ~ .flexy-column .bar[aria-valuenow] .percentage:before {
|
|
|
+ width: 90%;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+input[type='checkbox']:checked ~ .flexy-column .bar[aria-valuenow].heat-gradient .tooltip {
|
|
|
+ background-color: #ec0071;
|
|
|
+ border-bottom: 1px solid #d30065;
|
|
|
+}
|
|
|
+
|
|
|
+input[type='checkbox']:checked ~ .flexy-column .bar[aria-valuenow].heat-gradient .tooltip:after {
|
|
|
+ border-bottom-color: #ec0071;
|
|
|
+}
|
|
|
+
|
|
|
+input[type='checkbox']:checked ~ .flexy-column .bar[aria-valuenow] .tooltip {
|
|
|
+ left: 90%;
|
|
|
+}
|
|
|
+
|
|
|
+input[type='checkbox']:checked ~ .flexy-column .bar[aria-valuenow] .tooltip:before {
|
|
|
+ content: '90%';
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.dots-pattern .percentage:before {
|
|
|
+ background: radial-gradient(rgba(254, 254, 254, 0.5) 10%, rgba(0, 0, 0, 0) 5%) 0 0, radial-gradient(rgba(254, 254, 254, 0.5) 10%, rgba(0, 0, 0, 0) 5%) 0.5em 0.5em;
|
|
|
+ background-size: 1em 1em;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar.heat-gradient .face-position.left {
|
|
|
+ background-color: rgba(241, 196, 15, 0.8);
|
|
|
+}
|
|
|
+
|
|
|
+.bar.heat-gradient .percentage:before {
|
|
|
+
|
|
|
+ background-color: rgba(241, 196, 15, 0.8);
|
|
|
+
|
|
|
+ background: -moz-linear-gradient(left, rgba(241, 196, 15, 0.8) 0%, rgba(236, 0, 113, 0.6) 100%);
|
|
|
+
|
|
|
+ background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(241, 196, 15, 0.8)), color-stop(100%, rgba(236, 0, 113, 0.6)));
|
|
|
+
|
|
|
+ background: -webkit-linear-gradient(left, rgba(241, 196, 15, 0.8) 0%, rgba(236, 0, 113, 0.6) 100%);
|
|
|
+
|
|
|
+ background: -o-linear-gradient(left, rgba(241, 196, 15, 0.8) 0%, rgba(236, 0, 113, 0.6) 100%);
|
|
|
+
|
|
|
+ background: -ms-linear-gradient(left, rgba(241, 196, 15, 0.8) 0%, rgba(236, 0, 113, 0.6) 100%);
|
|
|
+
|
|
|
+ background: linear-gradient(to right, rgba(241, 196, 15, 0.8) 0%, rgba(236, 0, 113, 0.6) 100%);
|
|
|
+
|
|
|
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
|
|
|
+
|
|
|
+ background-size: 16em;
|
|
|
+}
|
|
|
+
|
|
|
+.bar.heat-gradient .volume-lights.shine:before {
|
|
|
+ box-shadow: -2em 1.6em 3em -1em rgba(241, 196, 15, 0.3), 2em 1.6em 3em -1em rgba(236, 0, 113, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+.bar.heat-gradient[valuenow="100"] .face-position.right {
|
|
|
+ background-color: rgba(236, 0, 113, 0.6);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar.ruler .percentage:before {
|
|
|
+ background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, rgba(0, 0, 0, 0) 1px);
|
|
|
+ background-size: 1em 1em, 1.6em 2em, .8em 2em;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar.ruler-2 .percentage:before {
|
|
|
+ background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0.8em, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0.8em, rgba(0, 0, 0, 0) 1px);
|
|
|
+ background-size: 16em 1em;
|
|
|
+ background-position: 1.6em 0, 3.2em 0, 4.8em 0, 6.4em 0, 8em 0, 9.6em 0, 11.2em 0, 12.8em 0, 14.4em 0;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar.ruler-3 .percentage:before {
|
|
|
+ background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0.8em, rgba(0, 0, 0, 0) 1px);
|
|
|
+ background-size: 1.6em 2em;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar.move .bar-face.face-position.floor,
|
|
|
+.bar.rotate .bar-face.face-position.floor {
|
|
|
+ transition: all 0.5s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar.move:hover {
|
|
|
+ transform: rotateX(60deg) translateZ(0.1em);
|
|
|
+}
|
|
|
+
|
|
|
+.bar.move:hover .bar-face.face-position.floor.volume-lights {
|
|
|
+ box-shadow: 0 -0.1em 1em rgba(0, 0, 0, 0.15), 0 0.35em 0.2em -8px rgba(0, 0, 0, 0.15), 0 -0.75em 1.75em rgba(254, 254, 254, 0.6);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar.rotate.hover,
|
|
|
+.bar.rotate:hover {
|
|
|
+ transform: rotateX(60deg) rotate(90deg);
|
|
|
+}
|
|
|
+
|
|
|
+.bar.rotate.hover .bar-face.face-position.floor.volume-lights,
|
|
|
+.bar.rotate:hover .bar-face.face-position.floor.volume-lights {
|
|
|
+ box-shadow: 0 0 1em rgba(0, 0, 0, 0.3), 0.2em 0 0.1em -5px rgba(0, 0, 0, 0.3), -0.5em 0 1.75em rgba(254, 254, 254, 0.6);
|
|
|
+}
|
|
|
+
|
|
|
+.bar.rotate.hover .bar-face.face-position.shine:before,
|
|
|
+.bar.rotate:hover .bar-face.face-position.shine:before {
|
|
|
+ box-shadow: none;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.tooltip {
|
|
|
+ font-size: .65em;
|
|
|
+ font-weight: bold;
|
|
|
+ margin: 1.85em 0 0 -.5em;
|
|
|
+ display: inline-block;
|
|
|
+ position: absolute;
|
|
|
+ line-height: 1em;
|
|
|
+ height: 1em;
|
|
|
+ width: 1em;
|
|
|
+ left: 0;
|
|
|
+ background-color: #ff6db3;
|
|
|
+ color: #fefefe;
|
|
|
+ border-bottom: 1px solid #ff53a5;
|
|
|
+ box-shadow: 0 0.05em 0.1em -0.02em rgba(0, 0, 0, 0.4), 0 0.1em 0.6em rgba(0, 0, 0, 0.3);
|
|
|
+ transition: all 0.5s ease-out;
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip:after, .tooltip:before {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: .25em;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip:after {
|
|
|
+ content: '';
|
|
|
+ height: 0;
|
|
|
+ width: 0;
|
|
|
+ margin: -.75em 0 0 1em;
|
|
|
+ border: 1em solid transparent;
|
|
|
+ border-bottom-color: #ff6db3;
|
|
|
+ border-top-width: 0;
|
|
|
+ transition: all 0.5s ease-out;
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip:before {
|
|
|
+ height: 100%;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip.pos-2 {
|
|
|
+ box-shadow: none;
|
|
|
+ margin-top: -.6em;
|
|
|
+ transform: rotateX(-90deg) translateY(-0.5em);
|
|
|
+ transform-origin: 50% 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip.pos-2:after {
|
|
|
+ margin: 3.75em 0 0 1em;
|
|
|
+ border-bottom-color: inherit;
|
|
|
+ border-bottom-width: 0;
|
|
|
+ border-top-width: 1em;
|
|
|
+ border-top-color: #ff6db3;
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip.pos-2 .shadow {
|
|
|
+ display: inline-block;
|
|
|
+ width: 20%;
|
|
|
+ height: .02em;
|
|
|
+ background-color: transparent;
|
|
|
+ position: absolute;
|
|
|
+ left: 40%;
|
|
|
+ bottom: 0;
|
|
|
+ box-shadow: 0 0.7em 0.05em black, 0 0.7em 0.3em black;
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip.white {
|
|
|
+ background-color: #fefefe;
|
|
|
+ border-bottom: 1px solid #e5e5e5;
|
|
|
+ color: #444444;
|
|
|
+ box-shadow: 0 0.08em 0.1em 0em rgba(0, 0, 0, 0.2), 0 0.1em 1.6em rgba(0, 0, 0, 0.2);
|
|
|
+}
|
|
|
+
|
|
|
+.tooltip.white:after {
|
|
|
+ border-bottom-color: #fefefe;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='1'] .tooltip {
|
|
|
+ left: 1%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='1'] .tooltip:before {
|
|
|
+ content: "1%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='1'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0c20f;
|
|
|
+ border-bottom: 1px solid #d8af0e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='1'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0c20f;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='2'] .tooltip {
|
|
|
+ left: 2%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='2'] .tooltip:before {
|
|
|
+ content: "2%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='2'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0c010;
|
|
|
+ border-bottom: 1px solid #d9ad0e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='2'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0c010;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='3'] .tooltip {
|
|
|
+ left: 3%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='3'] .tooltip:before {
|
|
|
+ content: "3%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='3'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0be11;
|
|
|
+ border-bottom: 1px solid #daac0e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='3'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0be11;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='4'] .tooltip {
|
|
|
+ left: 4%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='4'] .tooltip:before {
|
|
|
+ content: "4%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='4'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0bc12;
|
|
|
+ border-bottom: 1px solid #dbab0e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='4'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0bc12;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='5'] .tooltip {
|
|
|
+ left: 5%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='5'] .tooltip:before {
|
|
|
+ content: "5%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='5'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0ba13;
|
|
|
+ border-bottom: 1px solid #dca90e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='5'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0ba13;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='6'] .tooltip {
|
|
|
+ left: 6%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='6'] .tooltip:before {
|
|
|
+ content: "6%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='6'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0b814;
|
|
|
+ border-bottom: 1px solid #dca80e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='6'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0b814;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='7'] .tooltip {
|
|
|
+ left: 7%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='7'] .tooltip:before {
|
|
|
+ content: "7%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='7'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0b615;
|
|
|
+ border-bottom: 1px solid #dda60e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='7'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0b615;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='8'] .tooltip {
|
|
|
+ left: 8%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='8'] .tooltip:before {
|
|
|
+ content: "8%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='8'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0b416;
|
|
|
+ border-bottom: 1px solid #dea50e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='8'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0b416;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='9'] .tooltip {
|
|
|
+ left: 9%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='9'] .tooltip:before {
|
|
|
+ content: "9%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='9'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0b217;
|
|
|
+ border-bottom: 1px solid #dfa30e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='9'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0b217;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='10'] .tooltip {
|
|
|
+ left: 10%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='10'] .tooltip:before {
|
|
|
+ content: "10%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='10'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0b018;
|
|
|
+ border-bottom: 1px solid #e0a20f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='10'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0b018;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='11'] .tooltip {
|
|
|
+ left: 11%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='11'] .tooltip:before {
|
|
|
+ content: "11%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='11'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0ae19;
|
|
|
+ border-bottom: 1px solid #e1a00f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='11'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0ae19;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='12'] .tooltip {
|
|
|
+ left: 12%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='12'] .tooltip:before {
|
|
|
+ content: "12%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='12'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0ac1a;
|
|
|
+ border-bottom: 1px solid #e29f0f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='12'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0ac1a;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='13'] .tooltip {
|
|
|
+ left: 13%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='13'] .tooltip:before {
|
|
|
+ content: "13%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='13'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0aa1b;
|
|
|
+ border-bottom: 1px solid #e39d0f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='13'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0aa1b;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='14'] .tooltip {
|
|
|
+ left: 14%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='14'] .tooltip:before {
|
|
|
+ content: "14%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='14'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0a81c;
|
|
|
+ border-bottom: 1px solid #e39b0f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='14'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0a81c;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='15'] .tooltip {
|
|
|
+ left: 15%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='15'] .tooltip:before {
|
|
|
+ content: "15%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='15'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0a61d;
|
|
|
+ border-bottom: 1px solid #e49a0f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='15'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0a61d;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='16'] .tooltip {
|
|
|
+ left: 16%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='16'] .tooltip:before {
|
|
|
+ content: "16%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='16'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0a41e;
|
|
|
+ border-bottom: 1px solid #e5980f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='16'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0a41e;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='17'] .tooltip {
|
|
|
+ left: 17%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='17'] .tooltip:before {
|
|
|
+ content: "17%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='17'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0a21f;
|
|
|
+ border-bottom: 1px solid #e6960f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='17'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0a21f;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='18'] .tooltip {
|
|
|
+ left: 18%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='18'] .tooltip:before {
|
|
|
+ content: "18%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='18'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f0a020;
|
|
|
+ border-bottom: 1px solid #e79410;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='18'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f0a020;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='19'] .tooltip {
|
|
|
+ left: 19%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='19'] .tooltip:before {
|
|
|
+ content: "19%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='19'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f09e21;
|
|
|
+ border-bottom: 1px solid #e89210;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='19'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f09e21;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='20'] .tooltip {
|
|
|
+ left: 20%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='20'] .tooltip:before {
|
|
|
+ content: "20%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='20'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #f09c22;
|
|
|
+ border-bottom: 1px solid #e99010;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='20'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #f09c22;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='21'] .tooltip {
|
|
|
+ left: 21%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='21'] .tooltip:before {
|
|
|
+ content: "21%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='21'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef9a23;
|
|
|
+ border-bottom: 1px solid #e88e11;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='21'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef9a23;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='22'] .tooltip {
|
|
|
+ left: 22%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='22'] .tooltip:before {
|
|
|
+ content: "22%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='22'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef9824;
|
|
|
+ border-bottom: 1px solid #e98c11;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='22'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef9824;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='23'] .tooltip {
|
|
|
+ left: 23%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='23'] .tooltip:before {
|
|
|
+ content: "23%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='23'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef9625;
|
|
|
+ border-bottom: 1px solid #e98a11;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='23'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef9625;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='24'] .tooltip {
|
|
|
+ left: 24%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='24'] .tooltip:before {
|
|
|
+ content: "24%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='24'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef9426;
|
|
|
+ border-bottom: 1px solid #ea8811;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='24'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef9426;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='25'] .tooltip {
|
|
|
+ left: 25%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='25'] .tooltip:before {
|
|
|
+ content: "25%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='25'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef9327;
|
|
|
+ border-bottom: 1px solid #eb8711;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='25'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef9327;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='26'] .tooltip {
|
|
|
+ left: 26%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='26'] .tooltip:before {
|
|
|
+ content: "26%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='26'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef9128;
|
|
|
+ border-bottom: 1px solid #ec8512;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='26'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef9128;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='27'] .tooltip {
|
|
|
+ left: 27%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='27'] .tooltip:before {
|
|
|
+ content: "27%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='27'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef8f29;
|
|
|
+ border-bottom: 1px solid #ed8312;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='27'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef8f29;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='28'] .tooltip {
|
|
|
+ left: 28%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='28'] .tooltip:before {
|
|
|
+ content: "28%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='28'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef8d2a;
|
|
|
+ border-bottom: 1px solid #ed8012;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='28'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef8d2a;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='29'] .tooltip {
|
|
|
+ left: 29%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='29'] .tooltip:before {
|
|
|
+ content: "29%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='29'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef8b2b;
|
|
|
+ border-bottom: 1px solid #ed7e13;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='29'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef8b2b;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='30'] .tooltip {
|
|
|
+ left: 30%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='30'] .tooltip:before {
|
|
|
+ content: "30%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='30'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef892c;
|
|
|
+ border-bottom: 1px solid #ed7c14;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='30'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef892c;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='31'] .tooltip {
|
|
|
+ left: 31%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='31'] .tooltip:before {
|
|
|
+ content: "31%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='31'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef872d;
|
|
|
+ border-bottom: 1px solid #ed7915;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='31'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef872d;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='32'] .tooltip {
|
|
|
+ left: 32%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='32'] .tooltip:before {
|
|
|
+ content: "32%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='32'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef852e;
|
|
|
+ border-bottom: 1px solid #ed7716;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='32'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef852e;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='33'] .tooltip {
|
|
|
+ left: 33%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='33'] .tooltip:before {
|
|
|
+ content: "33%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='33'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef832f;
|
|
|
+ border-bottom: 1px solid #ed7517;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='33'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef832f;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='34'] .tooltip {
|
|
|
+ left: 34%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='34'] .tooltip:before {
|
|
|
+ content: "34%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='34'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef8130;
|
|
|
+ border-bottom: 1px solid #ed7318;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='34'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef8130;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='35'] .tooltip {
|
|
|
+ left: 35%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='35'] .tooltip:before {
|
|
|
+ content: "35%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='35'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef7f31;
|
|
|
+ border-bottom: 1px solid #ed7019;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='35'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef7f31;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='36'] .tooltip {
|
|
|
+ left: 36%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='36'] .tooltip:before {
|
|
|
+ content: "36%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='36'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef7d32;
|
|
|
+ border-bottom: 1px solid #ed6e1a;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='36'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef7d32;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='37'] .tooltip {
|
|
|
+ left: 37%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='37'] .tooltip:before {
|
|
|
+ content: "37%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='37'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef7b33;
|
|
|
+ border-bottom: 1px solid #ed6c1b;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='37'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef7b33;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='38'] .tooltip {
|
|
|
+ left: 38%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='38'] .tooltip:before {
|
|
|
+ content: "38%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='38'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef7934;
|
|
|
+ border-bottom: 1px solid #ed691c;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='38'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef7934;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='39'] .tooltip {
|
|
|
+ left: 39%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='39'] .tooltip:before {
|
|
|
+ content: "39%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='39'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef7735;
|
|
|
+ border-bottom: 1px solid #ed671d;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='39'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef7735;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='40'] .tooltip {
|
|
|
+ left: 40%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='40'] .tooltip:before {
|
|
|
+ content: "40%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='40'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ef7536;
|
|
|
+ border-bottom: 1px solid #ed651e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='40'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ef7536;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='41'] .tooltip {
|
|
|
+ left: 41%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='41'] .tooltip:before {
|
|
|
+ content: "41%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='41'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee7337;
|
|
|
+ border-bottom: 1px solid #ec631f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='41'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee7337;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='42'] .tooltip {
|
|
|
+ left: 42%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='42'] .tooltip:before {
|
|
|
+ content: "42%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='42'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee7138;
|
|
|
+ border-bottom: 1px solid #ec6021;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='42'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee7138;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='43'] .tooltip {
|
|
|
+ left: 43%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='43'] .tooltip:before {
|
|
|
+ content: "43%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='43'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee6f39;
|
|
|
+ border-bottom: 1px solid #ec5e22;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='43'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee6f39;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='44'] .tooltip {
|
|
|
+ left: 44%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='44'] .tooltip:before {
|
|
|
+ content: "44%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='44'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee6d3a;
|
|
|
+ border-bottom: 1px solid #ec5c23;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='44'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee6d3a;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='45'] .tooltip {
|
|
|
+ left: 45%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='45'] .tooltip:before {
|
|
|
+ content: "45%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='45'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee6b3b;
|
|
|
+ border-bottom: 1px solid #ec5924;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='45'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee6b3b;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='46'] .tooltip {
|
|
|
+ left: 46%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='46'] .tooltip:before {
|
|
|
+ content: "46%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='46'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee693c;
|
|
|
+ border-bottom: 1px solid #ec5725;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='46'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee693c;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='47'] .tooltip {
|
|
|
+ left: 47%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='47'] .tooltip:before {
|
|
|
+ content: "47%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='47'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee673d;
|
|
|
+ border-bottom: 1px solid #ec5526;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='47'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee673d;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='48'] .tooltip {
|
|
|
+ left: 48%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='48'] .tooltip:before {
|
|
|
+ content: "48%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='48'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee653e;
|
|
|
+ border-bottom: 1px solid #ec5227;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='48'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee653e;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='49'] .tooltip {
|
|
|
+ left: 49%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='49'] .tooltip:before {
|
|
|
+ content: "49%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='49'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee633f;
|
|
|
+ border-bottom: 1px solid #ec5028;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='49'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee633f;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='50'] .tooltip {
|
|
|
+ left: 50%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='50'] .tooltip:before {
|
|
|
+ content: "50%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='50'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee6240;
|
|
|
+ border-bottom: 1px solid #ec4f29;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='50'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee6240;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='51'] .tooltip {
|
|
|
+ left: 51%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='51'] .tooltip:before {
|
|
|
+ content: "51%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='51'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee6040;
|
|
|
+ border-bottom: 1px solid #ec4d29;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='51'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee6040;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='52'] .tooltip {
|
|
|
+ left: 52%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='52'] .tooltip:before {
|
|
|
+ content: "52%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='52'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5e41;
|
|
|
+ border-bottom: 1px solid #ec4a2a;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='52'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5e41;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='53'] .tooltip {
|
|
|
+ left: 53%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='53'] .tooltip:before {
|
|
|
+ content: "53%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='53'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5c42;
|
|
|
+ border-bottom: 1px solid #ec482b;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='53'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5c42;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='54'] .tooltip {
|
|
|
+ left: 54%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='54'] .tooltip:before {
|
|
|
+ content: "54%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='54'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5a43;
|
|
|
+ border-bottom: 1px solid #ec452c;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='54'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5a43;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='55'] .tooltip {
|
|
|
+ left: 55%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='55'] .tooltip:before {
|
|
|
+ content: "55%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='55'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5844;
|
|
|
+ border-bottom: 1px solid #ec432d;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='55'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5844;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='56'] .tooltip {
|
|
|
+ left: 56%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='56'] .tooltip:before {
|
|
|
+ content: "56%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='56'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5645;
|
|
|
+ border-bottom: 1px solid #ec412e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='56'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5645;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='57'] .tooltip {
|
|
|
+ left: 57%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='57'] .tooltip:before {
|
|
|
+ content: "57%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='57'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5446;
|
|
|
+ border-bottom: 1px solid #ec3e2f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='57'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5446;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='58'] .tooltip {
|
|
|
+ left: 58%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='58'] .tooltip:before {
|
|
|
+ content: "58%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='58'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5247;
|
|
|
+ border-bottom: 1px solid #ec3c30;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='58'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5247;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='59'] .tooltip {
|
|
|
+ left: 59%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='59'] .tooltip:before {
|
|
|
+ content: "59%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='59'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee5048;
|
|
|
+ border-bottom: 1px solid #ec3a31;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='59'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee5048;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='60'] .tooltip {
|
|
|
+ left: 60%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='60'] .tooltip:before {
|
|
|
+ content: "60%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='60'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ee4e49;
|
|
|
+ border-bottom: 1px solid #ec3732;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='60'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ee4e49;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='61'] .tooltip {
|
|
|
+ left: 61%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='61'] .tooltip:before {
|
|
|
+ content: "61%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='61'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed4c4a;
|
|
|
+ border-bottom: 1px solid #eb3533;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='61'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed4c4a;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='62'] .tooltip {
|
|
|
+ left: 62%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='62'] .tooltip:before {
|
|
|
+ content: "62%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='62'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed4a4b;
|
|
|
+ border-bottom: 1px solid #eb3334;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='62'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed4a4b;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='63'] .tooltip {
|
|
|
+ left: 63%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='63'] .tooltip:before {
|
|
|
+ content: "63%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='63'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed484c;
|
|
|
+ border-bottom: 1px solid #eb3135;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='63'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed484c;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='64'] .tooltip {
|
|
|
+ left: 64%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='64'] .tooltip:before {
|
|
|
+ content: "64%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='64'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed464d;
|
|
|
+ border-bottom: 1px solid #eb2f37;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='64'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed464d;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='65'] .tooltip {
|
|
|
+ left: 65%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='65'] .tooltip:before {
|
|
|
+ content: "65%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='65'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed444e;
|
|
|
+ border-bottom: 1px solid #eb2d38;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='65'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed444e;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='66'] .tooltip {
|
|
|
+ left: 66%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='66'] .tooltip:before {
|
|
|
+ content: "66%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='66'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed424f;
|
|
|
+ border-bottom: 1px solid #eb2b39;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='66'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed424f;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='67'] .tooltip {
|
|
|
+ left: 67%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='67'] .tooltip:before {
|
|
|
+ content: "67%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='67'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed4050;
|
|
|
+ border-bottom: 1px solid #eb293b;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='67'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed4050;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='68'] .tooltip {
|
|
|
+ left: 68%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='68'] .tooltip:before {
|
|
|
+ content: "68%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='68'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3e51;
|
|
|
+ border-bottom: 1px solid #eb273c;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='68'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3e51;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='69'] .tooltip {
|
|
|
+ left: 69%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='69'] .tooltip:before {
|
|
|
+ content: "69%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='69'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3c52;
|
|
|
+ border-bottom: 1px solid #eb253d;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='69'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3c52;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='70'] .tooltip {
|
|
|
+ left: 70%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='70'] .tooltip:before {
|
|
|
+ content: "70%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='70'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3a53;
|
|
|
+ border-bottom: 1px solid #eb233f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='70'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3a53;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='71'] .tooltip {
|
|
|
+ left: 71%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='71'] .tooltip:before {
|
|
|
+ content: "71%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='71'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3854;
|
|
|
+ border-bottom: 1px solid #eb2140;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='71'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3854;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='72'] .tooltip {
|
|
|
+ left: 72%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='72'] .tooltip:before {
|
|
|
+ content: "72%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='72'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3655;
|
|
|
+ border-bottom: 1px solid #eb1f41;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='72'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3655;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='73'] .tooltip {
|
|
|
+ left: 73%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='73'] .tooltip:before {
|
|
|
+ content: "73%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='73'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3456;
|
|
|
+ border-bottom: 1px solid #eb1d42;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='73'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3456;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='74'] .tooltip {
|
|
|
+ left: 74%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='74'] .tooltip:before {
|
|
|
+ content: "74%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='74'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3257;
|
|
|
+ border-bottom: 1px solid #eb1b44;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='74'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3257;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='75'] .tooltip {
|
|
|
+ left: 75%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='75'] .tooltip:before {
|
|
|
+ content: "75%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='75'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed3158;
|
|
|
+ border-bottom: 1px solid #eb1a45;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='75'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed3158;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='76'] .tooltip {
|
|
|
+ left: 76%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='76'] .tooltip:before {
|
|
|
+ content: "76%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='76'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed2f59;
|
|
|
+ border-bottom: 1px solid #eb1846;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='76'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed2f59;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='77'] .tooltip {
|
|
|
+ left: 77%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='77'] .tooltip:before {
|
|
|
+ content: "77%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='77'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed2d5a;
|
|
|
+ border-bottom: 1px solid #eb1648;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='77'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed2d5a;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='78'] .tooltip {
|
|
|
+ left: 78%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='78'] .tooltip:before {
|
|
|
+ content: "78%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='78'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed2b5b;
|
|
|
+ border-bottom: 1px solid #eb1449;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='78'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed2b5b;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='79'] .tooltip {
|
|
|
+ left: 79%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='79'] .tooltip:before {
|
|
|
+ content: "79%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='79'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed295c;
|
|
|
+ border-bottom: 1px solid #e9144b;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='79'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed295c;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='80'] .tooltip {
|
|
|
+ left: 80%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='80'] .tooltip:before {
|
|
|
+ content: "80%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='80'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ed275d;
|
|
|
+ border-bottom: 1px solid #e7134d;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='80'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ed275d;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='81'] .tooltip {
|
|
|
+ left: 81%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='81'] .tooltip:before {
|
|
|
+ content: "81%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='81'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec255e;
|
|
|
+ border-bottom: 1px solid #e4144f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='81'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec255e;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='82'] .tooltip {
|
|
|
+ left: 82%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='82'] .tooltip:before {
|
|
|
+ content: "82%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='82'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec235f;
|
|
|
+ border-bottom: 1px solid #e21451;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='82'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec235f;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='83'] .tooltip {
|
|
|
+ left: 83%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='83'] .tooltip:before {
|
|
|
+ content: "83%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='83'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec2160;
|
|
|
+ border-bottom: 1px solid #e01353;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='83'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec2160;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='84'] .tooltip {
|
|
|
+ left: 84%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='84'] .tooltip:before {
|
|
|
+ content: "84%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='84'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1f61;
|
|
|
+ border-bottom: 1px solid #df1354;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='84'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1f61;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='85'] .tooltip {
|
|
|
+ left: 85%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='85'] .tooltip:before {
|
|
|
+ content: "85%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='85'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1d62;
|
|
|
+ border-bottom: 1px solid #dd1356;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='85'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1d62;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='86'] .tooltip {
|
|
|
+ left: 86%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='86'] .tooltip:before {
|
|
|
+ content: "86%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='86'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1b63;
|
|
|
+ border-bottom: 1px solid #db1257;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='86'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1b63;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='87'] .tooltip {
|
|
|
+ left: 87%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='87'] .tooltip:before {
|
|
|
+ content: "87%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='87'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1964;
|
|
|
+ border-bottom: 1px solid #da1259;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='87'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1964;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='88'] .tooltip {
|
|
|
+ left: 88%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='88'] .tooltip:before {
|
|
|
+ content: "88%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='88'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1765;
|
|
|
+ border-bottom: 1px solid #d8125a;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='88'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1765;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='89'] .tooltip {
|
|
|
+ left: 89%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='89'] .tooltip:before {
|
|
|
+ content: "89%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='89'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1566;
|
|
|
+ border-bottom: 1px solid #d6115c;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='89'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1566;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='90'] .tooltip {
|
|
|
+ left: 90%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='90'] .tooltip:before {
|
|
|
+ content: "90%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='90'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1367;
|
|
|
+ border-bottom: 1px solid #d4115d;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='90'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1367;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='91'] .tooltip {
|
|
|
+ left: 91%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='91'] .tooltip:before {
|
|
|
+ content: "91%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='91'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec1168;
|
|
|
+ border-bottom: 1px solid #d40f5e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='91'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec1168;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='92'] .tooltip {
|
|
|
+ left: 92%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='92'] .tooltip:before {
|
|
|
+ content: "92%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='92'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec0f69;
|
|
|
+ border-bottom: 1px solid #d40d5e;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='92'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec0f69;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='93'] .tooltip {
|
|
|
+ left: 93%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='93'] .tooltip:before {
|
|
|
+ content: "93%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='93'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec0d6a;
|
|
|
+ border-bottom: 1px solid #d40c5f;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='93'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec0d6a;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='94'] .tooltip {
|
|
|
+ left: 94%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='94'] .tooltip:before {
|
|
|
+ content: "94%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='94'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec0b6b;
|
|
|
+ border-bottom: 1px solid #d40a60;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='94'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec0b6b;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='95'] .tooltip {
|
|
|
+ left: 95%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='95'] .tooltip:before {
|
|
|
+ content: "95%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='95'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec096c;
|
|
|
+ border-bottom: 1px solid #d30861;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='95'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec096c;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='96'] .tooltip {
|
|
|
+ left: 96%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='96'] .tooltip:before {
|
|
|
+ content: "96%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='96'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec076d;
|
|
|
+ border-bottom: 1px solid #d30662;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='96'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec076d;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='97'] .tooltip {
|
|
|
+ left: 97%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='97'] .tooltip:before {
|
|
|
+ content: "97%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='97'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec056e;
|
|
|
+ border-bottom: 1px solid #d30462;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='97'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec056e;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='98'] .tooltip {
|
|
|
+ left: 98%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='98'] .tooltip:before {
|
|
|
+ content: "98%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='98'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec036f;
|
|
|
+ border-bottom: 1px solid #d30363;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='98'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec036f;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='99'] .tooltip {
|
|
|
+ left: 99%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='99'] .tooltip:before {
|
|
|
+ content: "99%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='99'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec0170;
|
|
|
+ border-bottom: 1px solid #d30164;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='99'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec0170;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.bar[aria-valuenow='100'] .tooltip {
|
|
|
+ left: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='100'] .tooltip:before {
|
|
|
+ content: "100%";
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='100'].heat-gradient .heat-gradient-tooltip {
|
|
|
+ background-color: #ec0071;
|
|
|
+ border-bottom: 1px solid #d30065;
|
|
|
+}
|
|
|
+
|
|
|
+.bar[aria-valuenow='100'].heat-gradient .heat-gradient-tooltip:after {
|
|
|
+ border-bottom-color: #ec0071;
|
|
|
+}
|