/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
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,
b, u, i, 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;
}

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;
}

* {
  font-family: 'Nunito', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  color: #009ffd;
  text-decoration: none;
}

#modal-root {
  z-index: 99;
}

#modal-fullscreen-root {
  z-index: 100;
}

.modal-open {
  overflow: hidden;
}

a:hover,
a:active {
  color: #eb008d;
}

a:focus {
  outline: none;
}

::-webkit-scrollbar {
  background-color: #dbdbdb;
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #009ffd;
  border-radius: 6px;
}

.clearfix::after {
  content: '';
  clear: both;
  display: table;
}

.auth-layout {
  width: 100vw;
  height: 100vh;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#009ffd), to(#073271));
  background-image: linear-gradient(to top, #009ffd, #073271);
  padding-top: 129px;
}

.auth-layout > div {
  width: 442px;
  overflow: hidden;
  border-radius: 25px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: 70px 70px 20px;
  position: relative;
}

@media screen and (max-height: 650px) {
  .auth-layout {
    padding-top: 80px;
  }
}

body {
  min-width: 1280px;
}

.app-layout {
  position: relative;
  padding-left: 58px;
  -webkit-transition: padding 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out;
}

.app-layout #sidebar-menu-icon {
  width: 17px;
  height: 14px;
  margin-right: 4px;
  display: block;
  cursor: pointer;
  background: url("/images/menu.svg?global") 50% 50% no-repeat;
  background-size: 17px 14px;
  float: right;
  position: relative;
}

.app-layout.isSidebarOpen {
  will-change: padding;
  padding-left: 200px;
}

.app-layout__sidebar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

.app-layout__content {
  margin: 0 auto;
  width: calc(100% - 90px);
  position: relative;
  max-width: 1280px;
}

.sidebar {
  height: 100vh;
  width: 58px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#009ffd), to(#073271));
  background-image: linear-gradient(to top, #009ffd, #073271);
  padding: 28px 16px 16px 12px;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
  overflow: hidden;
}

.sidebar.isOpen {
  will-change: width;
  width: 200px;
}

.sidebar ul {
  width: 200px;
  margin: 46px 0 0 0;
  clear: both;
  float: none;
}

.sidebar ul.myAccount {
  position: absolute;
  bottom: 16px;
  left: 12px;
}

.sidebar ul li {
  line-height: 26px;
  padding: 9px 0;
  height: 26px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  clear: both;
  float: none;
}

.sidebar ul a {
  display: block;
  overflow: hidden;
  height: 32px;
  padding-left: 4px;
}

.sidebar ul a:before {
  content: '';
  width: 26px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: none;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 15px 15px;
  border-radius: 50%;
  display: block;
  float: left;
  margin-right: 11px;
  -webkit-transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -webkit-box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0);
}

.sidebar ul a.dashboard:before {
  background-image: url("/images/dashboard.svg?global");
  background-size: 14px 13px;
}

.sidebar ul a.energy-costs:before {
  background-image: url("/images/energy.svg?global");
  background-size: 16px 20px;
}

.sidebar ul a.reports:before {
  background-image: url("/images/report.svg?global");
  background-size: 15px 15px;
}

.sidebar ul a.alerts:before {
  background-image: url("/images/alert.svg?global");
  background-size: 15px 19px;
}

.sidebar ul a.config:before {
  background-image: url("/images/config.svg?global");
}

.sidebar ul a.objects:before {
  background-image: url("/images/object.svg?global");
}

.sidebar ul .separator {
  position: relative;
  display: block;
  left: -12px;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: #fff;
  opacity: .1;
}

.sidebar ul a.isActive:before,
.sidebar ul a:hover:before {
  will-change: box-shadow, background-color;
  background-color: #009ffd;
  -webkit-box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.5);
}

.sidebar ul a > span {
  opacity: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 29px;
  color: #ffffff;
  display: block;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.sidebar.isOpen ul a > span {
  opacity: 0.8;
}

.sidebar.isOpen ul a:hover > span,
.sidebar.isOpen ul a.isActive > span {
  opacity: 1;
}

.sidebar__logo {
  display: block;
  width: 42px;
  height: 42px;
  background: url("/images/logo.svg?global") 50% 50% no-repeat;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 16px;
  top: 17px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.sidebar.isOpen .sidebar__logo {
  opacity: 1;
  will-change: opacity;
  pointer-events: all;
}

.sidebar .toggleLanguage {
  color: white;
  position: absolute;
  bottom: 54px;
  left: 12px;
}

.sidebar .toggleLanguage a {
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  line-height: 29px;
}

.sidebar .toggleLanguage:hover {
  opacity: 1;
  cursor: pointer;
}

.sidebar .toggleLanguage a::before {
  content: 'DE' !important;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-height: 430px) {
  .sidebar ul {
    margin: 5px 0 0;
  }
  .sidebar ul li {
    padding: 7px 0;
  }
}

@media screen and (max-height: 430px) {
  .sidebar ul {
    margin: 5px 0 0;
  }
  .sidebar ul li {
    padding: 7px 0;
  }
}

.snake-loader {
  display: block;
  margin: 0 auto;
  height: 28px;
  width: 28px;
  -webkit-animation: rotate 0.8s infinite linear;
          animation: rotate 0.8s infinite linear;
  border: 5px solid #eb008d;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: calc(50% - 14px);
}

.snake-loader.bright {
  border-color: #fff;
  border-right-color: transparent;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.svg-gauge path {
  opacity: 0.1;
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  transform-box: fill-box;
}

.progress-1 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-2 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-2 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-3 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-3 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-3 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-4 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-4 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-4 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-4 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-5 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-5 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-5 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-5 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-5 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-6 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-6 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-6 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-6 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-6 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-6 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-7 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-7 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-7 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-7 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-7 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-7 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-7 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-8 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-9 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-10 .svg-gauge path:nth-child(10) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(10) {
  opacity: 1;
  will-change: opacity;
}

.progress-11 .svg-gauge path:nth-child(11) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(10) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(11) {
  opacity: 1;
  will-change: opacity;
}

.progress-12 .svg-gauge path:nth-child(12) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(10) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(11) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(12) {
  opacity: 1;
  will-change: opacity;
}

.progress-13 .svg-gauge path:nth-child(13) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(10) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(11) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(12) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(13) {
  opacity: 1;
  will-change: opacity;
}

.progress-14 .svg-gauge path:nth-child(14) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(10) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(11) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(12) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(13) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(14) {
  opacity: 1;
  will-change: opacity;
}

.progress-15 .svg-gauge path:nth-child(15) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(1) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(2) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(3) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(4) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(5) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(6) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(7) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(8) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(9) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(10) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(11) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(12) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(13) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(14) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(15) {
  opacity: 1;
  will-change: opacity;
}

.progress-16 .svg-gauge path:nth-child(16) {
  opacity: 1;
  will-change: opacity;
}
