/*
  Imports
 */
@import "../../vendors/css/bootstrap.min.css";
@import "../../vendors/css/angular-moment-picker.min.css";
@import "simple-line-icons.css";
@import "source-sans-pro.css";
/*
  Style
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}
body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  font-family: 'Source Sans Pro';
  background-color: #fcfcfc;
}
.full-height,
body,
html {
  height: 100%;
  width: 100%;
  position: relative;
}
::-ms-tooltip {
  display: none;
}
.undisplayed {
  display: none !important;
}
.fs-28 {
  font-size: 28px;
}
.fs-18 {
  font-size: 18px;
}
.w100 {
  width: 100% !important;
  min-width: 100%;
}
.w25px {
  width: 25px !important;
}
.red {
  color: #c3002f !important;
}
.white {
  color: #fff !important;
}
.white-bg {
  background-color: #fff !important;
}
.fs13 {
  font-size: 13px !important;
}
.fs12 {
  font-size: 12px !important;
}
.fw400 {
  font-weight: 400 !important;
}
.mt-4px {
  margin-top: 4px;
}
.mt-10px {
  margin-top: 10px;
}
.invisible {
  visibility: hidden !important;
}
/*
  Loader
 */
loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading p {
  color: #fff;
  font-size: 25px;
  font-weight: 300;
}
.loading .progress {
  height: 3px;
  width: 100%;
}
.loading .progress .progress-bar {
  background-color: #be1450;
}
.loading.ng-enter,
loader.ng-enter {
  transition: 0.1s linear all;
  opacity: 0;
}
.loading.ng-enter.ng-enter-active,
loader.ng-enter.ng-enter-active {
  opacity: 1;
}
.loading.ng-leave,
loader.ng-leave {
  transition: 0.1s linear all;
  opacity: 1;
}
.loading.ng-leave.ng-leave-active,
loader.ng-leave.ng-leave-active {
  opacity: 0;
}
.loading svg {
  width: 100px;
  display: block;
  margin: 0;
}
.loading .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
/* .loading .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
} */
.loading .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s ease-in-out forwards;
  animation: dash 0.9s ease-in-out forwards;
}
.loading .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.9s ease-in-out forwards;
  animation: dash-check 0.9s ease-in-out forwards;
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
/*
  Login
 */
.signin,
body.signin-container,
body.signin-container .signin .main {
  position: relative;
  display: flex;
  min-height: 100%;
  width: 100%;
}
body.signin-container .signin .bg {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-color: #be1450;
  background-image: url("../images/navbar/background.png");
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-position: center;
  background-size: cover;
}
body.signin-container .signin .wrap {
  width: 100%;
}
body.signin-container .main .logo,
body.signin-container .main .tag {
  z-index: 1;
  position: fixed;
  width: 25%;
  text-align: center;
}
body.signin-container .main .logo img,
body.signin-container .main .tag img {
  width: 200px;
}
body.signin-container .main .logo {
  top: 40px;
}
body.signin-container .main .tag {
  bottom: 40px;
}
body.signin-container .main .wrap .container > .row {
  height: 100vh;
  min-height: 100vh;
}
body.signin-container .main .wrap .container > .row form {
  margin-top: 25px;
}
.title-login {
  font-size: 3em;
  color: #151515;
  letter-spacing: -0.00966667em;
  line-height: 1.2em;
  font-weight: 300;
}
form.login .form-group {
  position: relative;
  margin-bottom: 14px;
}
form.login .form-group input[type=email],
form.login .form-group input[type=password] {
  -webkit-appearance: none;
  letter-spacing: 0;
  width: 100%;
  border: 1px solid #d2d2d2;
  height: 60px;
  color: #333;
  font-size: 16px;
  padding: 30px 10px 10px 30px;
  background: 0 0;
  outline: 0;
  transition: 0.2s ease-in-out;
}
form.login .form-group .placeholder {
  letter-spacing: 0;
  pointer-events: none;
  position: absolute;
  top: 13px;
  left: 30px;
  font-size: 12px;
  color: #7f7f7f;
  transition: 0.2s ease-in-out;
}
form.login .form-group input[type=email]:focus,
form.login .form-group input[type=password]:focus {
  border-color: #be1450;
}
form.login .form-group input[type=email]:focus + .placeholder,
form.login .form-group input[type=password]:focus + .placeholder {
  color: #be1450 !important;
  top: 5px;
}
body.signin-container .main .wrap > .container > .row form .forgot-password {
  padding-bottom: 20px;
}
.forgot-password p a {
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.46;
  letter-spacing: 0.7px;
  color: #9a9a9a;
  text-decoration: none;
}
.forgot-password p a:hover {
  color: #be1450 !important;
}
.version {
  text-align: center;
  color: #9a9a9a;
  font-size: 12px;
}
@media screen and (max-width: 767px) and (min-width: 0px) {
  .signin,
  body.signin-container,
  body.signin-container .signin .main {
    display: block;
  }
  body.signin-container .main > .bg {
    height: 248px;
    width: 100%;
    align-items: start;
    position: static;
  }
  body.signin-container .main .wrap .container > .row {
    align-items: start !important;
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    height: auto;
  }
  body.signin-container .main .tag {
    right: 40px;
    top: 192px;
  }
}
/*
  Navbar
 */
.hi-navbar {
  background-color: #ffffff;
  padding: 0 0 0 1rem;
}
@media (min-width: 768px) {
  .hi-navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1040;
    height: 200px;
  }
}
.hi-navbar .navbar-brand {
  margin-left: -15px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.hi-navbar .navbar-brand img {
  height: 20px;
  margin-left: 15px;
}
.hi-navbar-rmenu {
  width: 100%;
  height: 100%;
  background-image: url("../images/navbar/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  align-items: center;
  padding: 0 1rem;
  color: #ffffff;
}
.hi-hello-user {
  font-size: 39px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.49;
  letter-spacing: -0.5px;
  color: #ffffff;
}
.hi-menu .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hi-temp {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.29;
  letter-spacing: -0.5px;
  width: 35%;
  float: right;
  text-align: center;
  padding: 10px;
}
.hi-temp img {
  width: 20px;
  display: inline-block;
}
.hi-navbar-rmenu a.nav-link {
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
.hi-navbar-rmenu a.nav-link.active {
  background-color: rgba(255, 255, 255, 0.5);
  color: #c3002f;
  font-weight: bold;
}
.hi-navbar-rmenu a.nav-link:not(.active) .unhover,
.hi-navbar-rmenu a.nav-link.active .hover {
  display: inline-block;
}
.hi-navbar-rmenu a.nav-link.active .unhover,
.hi-navbar-rmenu a.nav-link:not(.active) .hover {
  display: none;
}
.hi-temp-city {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
@media (max-width: 767px) {
  .hi-navbar .navbar-brand {
    text-align: center;
    margin-left: auto;
    justify-content: center;
    margin-top: 1rem;
  }
}
/*
  Sidebar
 */
.hi-sidebar {
  order: 0;
  background-color: #ffffff;
  position: relative;
}
.hi-sidebar-cool-and-heat {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: left;
  padding: 0 0 0 calc(1rem + 15px);
}
.hi-sidebar-cool-and-heat img {
  height: 1rem;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hi-sidebar {
    -ms-flex: 0 1 320px;
    flex: 0 1 320px;
  }
}
@media (min-width: 768px) {
  .hi-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 200px;
    z-index: 1000;
    height: calc(100vh - 200px);
  }
}
@media (max-width: 767px) {
  .hi-sidebar {
    border-bottom: 1px solid #efefef;
    padding: 15px;
  }
}
.hi-links {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .hi-links {
    display: flex !important;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .hi-links {
    height: calc(100% - 2rem);
    overflow-y: auto;
  }
}
.hi-toc-item {
  padding-left: calc(1rem + 15px);
  height: 60px;
  display: flex;
  align-items: center;
}
.hi-toc-link {
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #151515;
  text-decoration: none;
  cursor: pointer;
}
.hi-toc-link img {
  margin-right: 10px;
}
.hi-toc-link .unhover {
  display: inline-block;
}
.hi-toc-link .hover {
  display: none;
}
.hi-toc-link.active,
.hi-toc-link:active,
.hi-toc-link:hover {
  text-decoration: none;
  font-weight: 600;
  color: #c3002f !important;
  cursor: pointer;
}
.hi-toc-link.active .unhover,
.hi-toc-link:active .unhover,
.hi-toc-link:hover .unhover {
  display: none;
}
.hi-toc-link.active .hover,
.hi-toc-link:active .hover,
.hi-toc-link:hover .hover {
  display: inline-block;
}
.hi-expand-sidebar-toggle {
  line-height: 1;
  color: #212529;
}
/*  Main */
main {
  padding: 40px 20px;
}
.hi-search-home-input > .form-control,
.hi-search-holiday-input > .form-control,
.hi-date-holiday-input > .form-control {
  border-radius: 0;
  height: 64px;
  outline: none;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -0.4px;
  color: #b9b9b9;
  border: 0;
  box-shadow: none;
}
.hi-search-holiday-input > .form-control,
.hi-date-holiday-input > .form-control {
  height: 34px;
  font-size: 15px;
  background-color: #FCFCFC;
  color: #b9b9b9;
}
.hi-search-home-input > .input-group-prepend > .input-group-text,
.hi-search-holiday-input > .input-group-prepend > .input-group-text,
.hi-date-holiday-input > .input-group-prepend > .input-group-text {
  border-radius: 0;
  background-color: #ffffff;
  color: #b9b9b9;
  font-size: 21px;
  border: 0;
}
.hi-search-holiday-input > .input-group-prepend > .input-group-text,
.hi-date-holiday-input > .input-group-prepend > .input-group-text {
  font-size: 14px;
  background-color: #FCFCFC;
  color: #b9b9b9;
}
.hi-home-green-control {
  width: 125px;
  float: right;
  background-color: #ffffff;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.45;
  letter-spacing: -0.1px;
  text-align: center;
  color: #9a9a9a;
  border-bottom: 2px solid transparent;
  transition: all 550ms ease;
  padding: 5px;
  cursor: pointer;
}
.hi-home-green-control.active {
  transition: all 550ms ease;
  color: #74D32D;
  border-color: #74D32D;
}
.hi-home-green-control .img-active {
  display: none;
}
.hi-home-green-control .img-unactive {
  display: block;
}
.hi-home-green-control.active .img-active {
  display: block;
}
.hi-home-green-control.active .img-unactive {
  display: none;
}
.hi-search-home-input > .form-control ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c9c9c9;
}
.hi-search-home-input > .form-control ::-moz-placeholder {
  /* Firefox 19+ */
  color: #c9c9c9;
}
.hi-search-home-input > .form-control :-ms-input-placeholder {
  /* IE 10+ */
  color: #c9c9c9;
}
.hi-search-home-input > .form-control :-moz-placeholder {
  /* Firefox 18- */
  color: #c9c9c9;
}
.hi-device-temperature {
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -0.5px;
  text-align: center;
  color: #151515;
}
/*
  Row height grid
 */
.hi {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
  position: relative;
}
.hi * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .hi {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (min-width: 1200px) {
  .hi {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (min-width: 1500px) {
  .hi {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}
.hi-panel {
  margin: 0;
  padding: 5px;
}
.hi-panel__content {
  width: 100%;
  padding: 20px;
}
.hi-panel__content-exec {
  position: absolute;
  top: -25px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3002f;
  font-size: 12px;
  font-weight: 600;
}
.hi-panel__content-exec span {
  padding: 5px;
  text-align: center;
  font-size: 50px;
}
@media (min-width: 768px) {
  .hi-panel {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
}
.hi-device-container {
  max-height: 280px;
  background-color: #ffffff;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
  padding: 30px 0 0;
  margin-bottom: 10px;
  position: relative;
}
.hi-device-container h2 {
  font-size: 18px;
  margin: 0;
}
.hi-device-container p {
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #151515;
  margin: 0;
}
.hi-device-row {
  padding: 10px;
  margin: 0;
}
.hi-device-row--mode {
  height: 100px;
}
.hi-device-row-modes-select {
  height: auto;
}
.hi-device-row--mode-divider {
  border-top: 1px solid #ededed;
}
.hi-device-row--plus-divider {
  border-top: 2px solid #c3002f;
}
.hi-device-container .hi-device-row--plus {
  font-size: 12px;
  font-weight: 600;
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}
.hi-device-caret {
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  height: 8px;
  display: flex;
  align-items: center;
  transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transition: transform 550ms ease;
  -moz-transition: -moz-transform 550ms ease;
  -ms-transition: -ms-transform 550ms ease;
  -o-transition: -o-transform 550ms ease;
  -webkit-transition: -webkit-transform 550ms ease;
}
.hi-device-container-active .hi-device-caret {
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transition: transform 550ms ease;
  -moz-transition: -moz-transform 550ms ease;
  -ms-transition: -ms-transform 550ms ease;
  -o-transition: -o-transform 550ms ease;
  -webkit-transition: -webkit-transform 550ms ease;
}
.hi-device-row-plus {
  display: none;
}
.hi-device-container-active {
  transition: max-height 0.35s ease;
  max-height: 1000px;
}
.hi-device-container-active .hi-device-row-plus {
  -webkit-animation: fadeInFromNone 0.4s ease-out;
  -moz-animation: fadeInFromNone 0.4s ease-out;
  -o-animation: fadeInFromNone 0.4s ease-out;
  animation: fadeInFromNone 0.4s ease-out;
  display: flex;
}
/* Buttons */
.hi-btn {
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  display: block;
  line-height: 51px;
  height: 54px;
  width: 100%;
  max-width: 160px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  border: 1px solid;
  text-align: center;
  transition: 0.3s ease-in-out;
  outline: none !important;
}
.hi-btn-sm {
  height: 34px;
  line-height: 31px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
}
.hi-white-btn {
  border-color: transparent;
  color: #000;
}
.hi-white-btn:hover {
  border-color: #000;
}
.hi-white-red-btn {
  border-color: transparent;
  color: #c3002f;
}
.hi-white-red-btn:hover {
  border-color: #c3002f;
}
.hi-red-btn {
  border-color: #c3002f;
  background-color: #c3002f;
  color: #fff;
}
.hi-red-btn:hover {
  border: 1px solid #a60028;
  background-color: #a60028;
}
/* KeyFrames */
@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-moz-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-o-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
/* KeyFrames */
@-webkit-keyframes fadeOutFromFlex {
  0% {
    display: flex;
    opacity: 1;
  }
  99% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-moz-keyframes fadeOutFromFlex {
  0% {
    display: flex;
    opacity: 1;
  }
  99% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-o-keyframes fadeOutFromFlex {
  0% {
    display: flex;
    opacity: 1;
  }
  99% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fadeOutFromFlex {
  0% {
    display: flex;
    opacity: 1;
  }
  99% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
/* Slider */
/* Device */
.hi-modes-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
.hi-mode-device-container {
  margin: 10px 0;
  padding: 10px;
  font-size: 11px;
  color: #9a9a9a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 50%;
  cursor: pointer;
}
.hi-device-row--mode .hi-mode-device-container {
  width: 100%;
}
.hi-mode-device-container .hi-mode-image {
  display: flex;
  width: 30px;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 6px;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
}
.hi-mode-device-container .hi-mode-image .img-unactive {
  display: block;
}
.hi-mode-device-container .hi-mode-image .img-active {
  display: none;
}
.hi-device-row--mode .hi-mode-device-container,
.hi-mode-device-container.active {
  color: #c3002f;
}
.hi-device-row--mode .hi-mode-device-container .hi-mode-image,
.hi-mode-device-container.active .hi-mode-image {
  border-color: #c3002f;
  background-color: #c3002f;
  transition: all 550ms ease;
}
.hi-mode-device-container.active .hi-mode-image .img-unactive {
  display: none;
}
.hi-mode-device-container.active .hi-mode-image .img-active {
  display: block;
}
/* Checkbox  */
.hi-switch {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  font-size: 17px;
  /* padding: 0 20px; */
  border: none;
  overflow: visible;
  width: 76px;
  height: 28px;
  z-index: 0;
  text-align: left;
  margin: 0;
}
.hi-switch__input {
  -webkit-appearance: none;
  appearance: none;
}
.hi-switch__toggle {
  background-color: #9A9A9A;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-border-radius: 14px;
  border-radius: 14px;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hi-switch__input:checked + .hi-switch__toggle {
  background-color: #42951C;
}
.hi-switch-on-off .hi-switch__input:checked + .hi-switch__toggle {
  background-color: #42951C;
}
.hi-switch__toggle:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: absolute;
  content: ' ';
  -webkit-border-radius: 22px;
  border-radius: 22px;
  height: 22px;
  width: 22px;
  background-color: #fff;
  left: 3px;
  top: 3px;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 1.6, 0.5, 1);
  -moz-transition-timing-function: cubic-bezier(0.5, 1.6, 0.5, 1);
  -o-transition-timing-function: cubic-bezier(0.5, 1.6, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.5, 1);
  background-image: url("../images/home/device/close-grey.png");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.hi-switch__input:checked + .hi-switch__toggle:before {
  -webkit-transform: translateX(48px);
  -moz-transform: translateX(48px);
  -ms-transform: translateX(48px);
  -o-transform: translateX(48px);
  transform: translateX(48px);
}
.hi-switch__toggle:after {
  content: 'OFF';
  color: white;
  right: 14px;
  position: absolute;
  top: 5px;
  font-size: 13px;
  font-weight: 600;
}
.hi-switch-auto .hi-switch__toggle:after {
  content: 'AUTO';
}
.hi-switch__input:checked + .hi-switch__toggle:after {
  content: 'ON';
  color: white;
  left: 14px;
  position: absolute;
  top: 5px;
  font-size: 13px;
  font-weight: 600;
}
.hi-switch__input:checked + .hi-switch__toggle:before {
  background-image: url("../images/home/device/check-green.png");
}
.hi-switch-on-off .hi-switch__input:checked + .hi-switch__toggle:before {
  background-image: url("../images/home/device/check-green.png");
}
/* Slider Range */
.hi-showR {
  width: 10vw;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
}
.hi-slider {
  position: relative;
  width: 50vw;
  height: 3rem;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
}
.hi-slider-output {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  box-sizing: border-box;
  transform: translateX(-50%);
}
.hi-slider-input {
  -webkit-appearance: none;
  background-color: transparent;
  position: absolute;
  width: 105%;
  margin-left: -2.5%;
  height: 2rem;
  outline: none;
}
.hi-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2rem;
  height: 8rem;
}
.hi-slider-thumb {
  height: 2rem;
  width: 2rem;
  border-radius: 1rem;
  position: absolute;
  top: -0.75rem;
  background-color: #be1450;
  font-size: 100%;
  line-height: 2rem;
  text-align: center;
}
.hi-slider-thumb {
  left: 50%;
  margin-left: -1rem;
}
.hi-slider-track {
  height: 0.5rem;
  background-color: #06a;
  border-radius: 0.25rem;
}
.hi-slider-level {
  height: 0.5rem;
  background-color: #be1450;
  width: 50%;
  border-radius: 1rem;
}
/*
  MODALS
 */
.hi-modal .modal-content,
.hi-modal .modal-footer,
.hi-modal .modal-header {
  border: 0;
  border-radius: 0;
}
/*
  Sliders
 */
.rzslider {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 4px;
  margin: 35px 0 15px;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rzslider.with-legend {
  margin-bottom: 40px;
}
.rzslider[disabled] {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-pointer {
  cursor: not-allowed;
  background-color: #d8e0f3;
}
.rzslider[disabled] .rz-draggable {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-selection {
  background: #8b91a2;
}
.rzslider[disabled] .rz-tick {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-tick.rz-selected {
  background: #8b91a2;
}
.rzslider span {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
}
.rzslider .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider .rz-bar-wrapper {
  left: 0;
  z-index: 1;
  width: 100%;
  height: 32px;
  padding-top: 16px;
  margin-top: -16px;
  box-sizing: border-box;
}
.rzslider .rz-draggable {
  cursor: move;
}
.rzslider .rz-bar {
  left: 0;
  z-index: 1;
  width: 100%;
  height: 4px;
  background: #d8e0f3;
  border-radius: 2px;
}
.rzslider .rz-bar-wrapper.rz-transparent .rz-bar {
  background: transparent;
}
.rzslider .rz-bar-wrapper.rz-left-out-selection .rz-bar {
  background: #df002d;
}
.rzslider .rz-bar-wrapper.rz-right-out-selection .rz-bar {
  background: #03a688;
}
.rzslider .rz-selection {
  z-index: 2;
  background: #0db9f0;
  border-radius: 2px;
}
.rzslider .rz-restricted {
  z-index: 3;
  background: #ff0000;
  border-radius: 2px;
}
.rzslider .rz-pointer {
  top: -14px;
  z-index: 3;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: #0db9f0;
  border-radius: 16px;
}
.rzslider .rz-bubble {
  bottom: 16px;
  padding: 1px 3px;
  color: #55637d;
  cursor: default;
}
.rzslider .rz-bubble.rz-limit {
  color: #55637d;
}
.rzslider .rz-ticks {
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
.rzslider .rz-ticks-values-under .rz-tick-value {
  top: auto;
  bottom: -32px;
}
.rzslider .rz-tick {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin-left: 11px;
  text-align: center;
  background: #d8e0f3;
  border-radius: 50%;
}
.rzslider .rz-tick.rz-selected {
  background: #0db9f0;
}
.rzslider .rz-tick-value {
  position: absolute;
  top: -30px;
  transform: translate(-50%, 0);
}
.rzslider .rz-tick-legend {
  position: absolute;
  top: 24px;
  max-width: 50px;
  white-space: normal;
  transform: translate(-50%, 0);
}
.rzslider.rz-vertical {
  position: relative;
  width: 4px;
  height: 100%;
  padding: 0;
  margin: 0 20px;
  vertical-align: baseline;
}
.rzslider.rz-vertical .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider.rz-vertical .rz-bar-wrapper {
  top: auto;
  left: 0;
  width: 32px;
  height: 100%;
  padding: 0 0 0 16px;
  margin: 0 0 0 -16px;
}
.rzslider.rz-vertical .rz-bar {
  bottom: 0;
  left: auto;
  width: 4px;
  height: 100%;
}
.rzslider.rz-vertical .rz-pointer {
  top: auto;
  bottom: 0;
  left: -14px !important;
}
.rzslider.rz-vertical .rz-bubble {
  bottom: 0;
  left: 16px !important;
  margin-left: 3px;
}
.rzslider.rz-vertical .rz-ticks {
  top: 0;
  left: -3px;
  z-index: 1;
  width: 0;
  height: 100%;
}
.rzslider.rz-vertical .rz-tick {
  margin-top: 11px;
  margin-left: auto;
  vertical-align: middle;
}
.rzslider.rz-vertical .rz-tick-value {
  top: auto;
  left: 24px;
  transform: translate(0, -28%);
}
.rzslider.rz-vertical .rz-tick-legend {
  top: auto;
  right: 24px;
  max-width: none;
  white-space: nowrap;
  transform: translate(0, -28%);
}
.rzslider.rz-vertical .rz-ticks-values-under .rz-tick-value {
  right: 24px;
  bottom: auto;
  left: auto;
}
/*
  Device Slider
 */
.hi-device-temp-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.hi-holiday-slider .rzslider,
.hi-prog-slider .rzslider,
.hi-device-temp-slider .rzslider,
.hi-fanpower-container .rzslider {
  margin: 0;
  height: 10px;
}
.hi-fanpower-container {
  width: 70%;
  position: relative;
  margin: 0 auto;
}
.hi-holiday-slider,
.hi-prog-slider {
  position: relative;
}
.hi-fanpower-container .left {
  position: absolute;
  left: calc(-10% + 1px);
  top: 3px;
  width: 10%;
}
.hi-fanpower-container .right {
  position: absolute;
  right: calc(-20% - 1px);
  top: -4px;
  width: 20%;
}
.hi-fanpower-container .left .img-active,
.hi-fanpower-container .left .img-auto,
.hi-fanpower-container .right .img-active,
.hi-fanpower-container .right .img-auto {
  width: 100%;
}
.hi-fanpower-container .left .img-active,
.hi-fanpower-container .right .img-active {
  display: block;
}
.hi-fanpower-container .left .img-auto,
.hi-fanpower-container .right .img-auto {
  display: none;
}
.hi-fanpower-container-auto .left .img-active,
.hi-fanpower-container-auto .right .img-active {
  display: none;
}
.hi-fanpower-container-auto .left .img-auto,
.hi-fanpower-container-auto .right .img-auto {
  display: block;
}
.hi-device-temp-slider .rzslider .rz-bar {
  height: 10px;
  border-radius: 0;
  top: 5px;
}
.hi-holiday-slider .rzslider .rz-bar-wrapper,
.hi-prog-slider .rzslider .rz-bar-wrapper,
.hi-device-temp-slider .rzslider .rz-bar-wrapper {
  left: 0;
  z-index: 1;
  width: 100% !important;
  box-sizing: border-box;
}
.hi-holiday-slider .rzslider .rz-pointer,
.hi-prog-slider .rzslider .rz-pointer,
.hi-device-temp-slider .rzslider .rz-pointer {
  top: -32px;
  z-index: 3;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #e4841a;
  border-radius: 50%;
  outline: none;
  border: 2px solid white;
}
.hi-holiday-slider .rzslider .rz-pointer {
  background-color: #c3002f;
}
.hi-holiday-slider .rzslider .rz-pointer,
.hi-prog-slider .rzslider .rz-pointer {
  height: 35px;
  width: 35px;
  top: -16px;
}
.hi-prog-slider.hi-cool-slider .rzslider .rz-pointer,
.hi-device-temp-slider.hi-cool-slider .rzslider .rz-pointer {
  background-color: #23779f;
}
.hi-holiday-slider .rzslider .rz-bubble.rz-limit,
.hi-prog-slider .rzslider .rz-bubble.rz-limit,
.hi-device-temp-slider .rzslider .rz-bubble.rz-limit,
.hi-fanpower-container .rzslider .rz-bubble.rz-limit {
  display: none;
}
.hi-holiday-slider .rzslider .rz-bubble,
.hi-prog-slider .rzslider .rz-bubble,
.hi-device-temp-slider .rzslider .rz-bubble {
  bottom: 3px;
  padding: 1px 3px;
  color: #fff;
  cursor: default;
  z-index: 3;
  font-weight: 300;
  font-size: 18px;
}
.hi-holiday-slider .rzslider .rz-bubble,
.hi-prog-slider .rzslider .rz-bubble {
  font-size: 11px;
  padding: 0;
  bottom: 0;
}
.hi-holiday-slider .rzslider .rz-bubble.rz-model-value:after,
.hi-prog-slider .rzslider .rz-bubble.rz-model-value:after,
.hi-device-temp-slider .rzslider .rz-bubble.rz-model-value:after {
  content: "\00b0 C";
}
.hi-fanpower-container .rzslider .rz-bubble {
  color: #fff;
  bottom: -1px;
  z-index: 3;
  font-size: 12px;
}
.hi-prog-slider .rzslider .rz-bar,
.hi-device-temp-slider .rzslider .rz-bar {
  background: #9A9A9A;
}
.hi-fanpower-container .rzslider .rz-pointer {
  top: -8px;
  z-index: 3;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background-color: #c3002f;
  border-radius: 16px;
  outline: none !important;
}
.hi-fanpower-container-auto .rzslider .rz-pointer {
  top: -8px;
  z-index: 3;
  width: 18px;
  height: 18px;
  cursor: disabled;
  background-color: #9a9a9a;
  border-radius: 16px;
  outline: none !important;
}
/* Spin */
.spin {
  display: block;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}
/* Fake Slider */
.fakeSlider__container {
  height: 10px;
}
fakeSlider {
  height: 10px;
  width: 100%;
  display: block;
  background-color: #be1450;
  position: relative;
}
fakeSlider .value {
  top: -20px;
  z-index: 3;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #be1450;
  border-radius: 50%;
  outline: none;
  border: 2px solid white;
  position: absolute;
  left: calc(50% - 25px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.row.hi-device-row.hi-device-row-plus.alert-row {
  padding: 15px;
  background-color: rgba(195, 0, 47, 0.75);
}
/*
  Prog
 */
.hi-prog-device-container {
  background: #FFFFFF;
  max-height: 58px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  transition: max-height 0.35s ease;
  position: relative;
}
.hi-prog-device-container.active {
  transition: max-height 0.35s ease;
  max-height: 10000px;
}
.hi-prog-device-state {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 58px;
}
.hi-prog-device-state .hi-prog-device-state-bg {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  left: -20px;
  background-image: linear-gradient(to right, #ee9b13, #cd4a2c, #cd4a2c);
  z-index: 0;
  transition: background 0.3s linear;
  transition: opacity 0.3s linear;
}
.hi-prog-device-state.cool .hi-prog-device-state-bg {
  background-image: linear-gradient(to right, #49b0d0, #23769e);
}
.hi-prog-device-state .hi-switch {
  z-index: 1;
}
.hi-prog-device-action {
  width: calc(100% - 180px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 12px;
  position: relative;
}
.hi-prog-caret {
  position: absolute;
  right: 0;
  cursor: pointer;
}
.hi-switch-prog {
  background-color: rgba(255, 255, 255, 0.5);
  width: 69px;
  height: 28px;
  border-radius: 14px;
  transition: background 0.3s linear;
  cursor: pointer;
}
.hi-switch-prog .hi-switch__input:checked + .hi-switch__toggle,
.hi-switch-prog .hi-switch__toggle {
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08);
  background-color: transparent;
}
.hi-switch-prog .hi-switch__toggle:before {
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 6px 0 rgba(30, 99, 130, 0.5);
  background-image: url("../images/prog/selectmode-cool.png");
}
.hi-switch-prog .hi-switch__toggle:after {
  content: '';
  background-image: url("../images/prog/selectmode-heat-inactive.png");
  right: 7px;
  height: 14px;
  width: 14px;
  background-repeat: no-repeat;
  top: 7px;
  background-size: contain;
}
.hi-switch-prog .hi-switch__input:checked + .hi-switch__toggle:after {
  content: '';
  background-image: url("../images/prog/selectmode-cool-inactive.png");
  left: 7px;
  height: 14px;
  width: 14px;
  background-repeat: no-repeat;
  top: 7px;
  background-size: contain;
}
.hi-switch-prog .hi-switch__input:checked + .hi-switch__toggle:before {
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  background-image: url("../images/prog/selectmode-heat.png");
  box-shadow: 0 4px 6px 0 rgba(210, 143, 109, 0.5);
}
.hi-prog-device-container.active .hi-prog-caret {
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transition: transform 550ms ease;
  -moz-transition: -moz-transform 550ms ease;
  -ms-transition: -ms-transform 550ms ease;
  -o-transition: -o-transform 550ms ease;
  -webkit-transition: -webkit-transform 550ms ease;
}
.hi-prog-row {
  padding: 15px;
  padding-bottom: 30px;
}
.hi-prog-row-plus {
  display: none;
}
.hi-prog-device-container.active .hi-prog-row-plus {
  -webkit-animation: fadeInFromNone 0.4s ease-out;
  -moz-animation: fadeInFromNone 0.4s ease-out;
  -o-animation: fadeInFromNone 0.4s ease-out;
  animation: fadeInFromNone 0.4s ease-out;
  display: flex;
}
.hi-prog-device-container.active .hi-prog-device-state .hi-prog-device-state-bg {
  height: 150px;
  width: 150px;
  left: -70px;
  top: -70px;
  opacity: 0.3;
}
.hi-prog-device-container.active .hi-prog-device-state .hi-switch-prog {
  background-image: linear-gradient(to left, #ee9b13, #cd4a2c, #cd4a2c);
}
.hi-prog-device-container.active .hi-prog-device-state.cool .hi-switch-prog {
  background-image: linear-gradient(to right, #49b0d0, #23769e);
}
.hi-prog-days-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.hi-prog-day-container {
  width: 14.28571429%;
  padding: 5px;
}
.hi-prog-day-head {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdf8f4;
  height: 28px;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -0.2px;
  text-align: center;
  color: #151515;
}
.hi-prog-day-head.today {
  background-color: rgba(66, 149, 28, 0.4);
  color: #ffffff;
}
.hi-prog-day-body {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}
.hi-day-prog-rule-container {
  position: relative;
  width: 100%;
  padding: 0 10px;
  height: 120px;
}
.hi-day-prog-rule-container:first-child {
  margin-top: 30px;
}
.hi-day-prog-rule-time {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 2px;
  box-shadow: 0 5px 13px 0 rgba(154, 154, 154, 0.3);
  background-color: #ffffff;
  z-index: 1;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: -0.2px;
  text-align: center;
  color: #585858;
  cursor: pointer;
  transition: all 0.3s linear;
}
.hi-day-prog-rule-time.active {
  box-shadow: 0 5px 13px 0 rgba(231, 184, 157, 0.4);
  background-color: #fdf8f4;
  transition: all 0.3s linear;
}
.hi-day-prog-rule-container .hi-day-prog-rule-temp {
  position: absolute;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border: solid 2px #ffffff;
  background-color: #e08122;
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 2;
  letter-spacing: -0.2px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  bottom: 40px;
  z-index: 1;
}
.hi-day-prog-rule-container.cool .hi-day-prog-rule-temp {
  background-color: #23769e;
}
.hi-day-prog-rule-container.off .hi-day-prog-rule-temp {
  background-color: #9A9A9A;
}
.hi-day-prog-new-rule {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 50px;
  height: 50px;
  box-shadow: 0 6px 12px 0 rgba(201, 168, 176, 0.5);
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s linear;
  z-index: 1;
}
.hi-day-prog-new-rule:hover {
  box-shadow: 0 6px 12px 0 rgba(184, 123, 138, 0.5);
  background-color: #c3002f;
  transition: all 0.3s linear;
}
.hi-day-prog-new-rule img.active {
  display: none;
}
.hi-day-prog-new-rule img.inactive {
  display: block;
}
.hi-day-prog-new-rule:hover img.inactive {
  display: none;
}
.hi-day-prog-new-rule:hover img.active {
  display: block;
}
.hi-day-prog-rule-container .hi-day-prog-rule-temp-line {
  width: 4px;
  background-color: #cd4a2c;
  min-height: 150px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
}
.hi-day-prog-rule-container.cool .hi-day-prog-rule-temp-line {
  background-color: #23769e;
}
.hi-day-prog-rule-container.off .hi-day-prog-rule-temp-line {
  background-color: #9A9A9A;
}
.hi-day-prog-rule-temp-top-line {
  width: 4px;
  background-image: -webkit-linear-gradient(#ffffff, #cd4a2c);
  background-image: -o-linear-gradient(#ffffff, #cd4a2c);
  background-image: linear-gradient(#ffffff, #cd4a2c);
  height: 40px;
  margin: 0 auto;
  margin-top: 10px;
}
.hi-day-prog-rule-temp-top-line.cool {
  background-image: -webkit-linear-gradient(#ffffff, #23769e);
  background-image: -o-linear-gradient(#ffffff, #23769e);
  background-image: linear-gradient(#ffffff, #23769e);
}
.hi-day-prog-rule-temp-top-line.off {
  background-image: -webkit-linear-gradient(#ffffff, #9A9A9A);
  background-image: -o-linear-gradient(#ffffff, #9A9A9A);
  background-image: linear-gradient(#ffffff, #9A9A9A);
}
.hi-day-prog-rule-temp-bottom-line {
  background-image: -webkit-linear-gradient(#cd4a2c, #ffffff);
  background-image: -o-linear-gradient(#cd4a2c, #ffffff);
  background-image: linear-gradient(#cd4a2c, #ffffff);
}
.hi-day-prog-rule-container.cool .hi-day-prog-rule-temp-bottom-line {
  background-image: -webkit-linear-gradient(#23769e, #ffffff);
  background-image: -o-linear-gradient(#23769e, #ffffff);
  background-image: linear-gradient(#23769e, #ffffff);
}
.hi-day-prog-rule-container.off .hi-day-prog-rule-temp-bottom-line {
  background-image: -webkit-linear-gradient(#9A9A9A, #ffffff);
  background-image: -o-linear-gradient(#9A9A9A, #ffffff);
  background-image: linear-gradient(#9A9A9A, #ffffff);
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  min-width: 250px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 1px;
  box-shadow: 0 4px 12px 0 rgba(121, 121, 121, 0.5);
  background-color: #ffffff;
}
.popover-header {
  padding: 10px 0.75rem;
  margin-bottom: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -0.2px;
  text-align: center;
  color: #151515;
}
.hi-prog-row {
  padding: 5px;
}
.close-popover {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s linear;
}
.close-popover:hover {
  border-color: #c3002f;
  transition: all 0.2s linear;
}
.hi-prog-time-selector {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #151515;
}
.hi-prog-input {
  height: 30px;
  border-radius: 0px;
  background-color: #fcfcfc;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #9a9a9a;
  border: none;
  border-bottom: 1px solid #fcfcfc;
  outline: none !important;
  transition: all 0.2s linear;
  text-align: center;
}
.hi-prog-input:focus {
  outline: none !important;
  color: #151515;
  border-color: #c3002f;
  background-color: #fcfcfc;
  box-shadow: none;
  transition: all 0.2s linear;
}
.hi-prog-device-loader {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hi-prog-device-loader span {
  font-size: 2.75rem;
  color: #c3002f;
}
.hi-account-container,
.hi-holidays-container {
  background-color: #fff;
}
/*
  Account Page
*/
.hi-account-container h2 {
  color: #b9b9b9;
  font-size: 24px;
  margin: 0;
  font-weight: 300;
}
.hi-account-container .hi-divider-horizontal {
  height: 2px;
  width: 100%;
  background-color: #ededed;
  position: relative;
  margin: 1rem 0;
}
.hi-account-container .hi-divider-horizontal > .hi-divider-square {
  height: 14px;
  width: 14px;
  position: absolute;
  top: -6.5px;
  left: 10%;
  background-color: #c3002f;
}
.hi-account-container .hi-divider-horizontal > .hi-divider-square.centered {
  left: calc(50% - 7px);
}
.hi-account-label {
  color: #b9b9b9;
  font-weight: 300;
}
.hi-account-container a {
  color: #c3002f;
  text-decoration: none;
  padding: 15px 10px;
  max-width: none;
  text-align: left;
  display: initial;
}
.hi-account-container a > img {
  width: 25px;
}
.hi-auto-fan-selector {
  border-radius: 30px;
  display: flex;
  justify-content: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  font-size: 17px;
  /* padding: 0 20px; */
  border: none;
  overflow: visible;
  width: 76px;
  height: 28px;
  z-index: 0;
  text-align: left;
  margin: 0;
  text-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #212529;
  color: #212529;
  transition: all 0.4s ease;
  cursor: pointer;
}
.hi-auto-fan-selector.active {
  background-color: #212529;
  color: #fff;
  transition: all 0.4s ease;
}
/*
  Holidays
*/
.hi-holidays-container {
  padding: 0 30px 30px 30px;
  border-left: 1px solid #b9b9b9;
  margin-left: 30px;
}
.hi-holidays-container--step {
  position: relative;
  margin-bottom: 20px;
}
.hi-holidays-container--step--caret {
  position: absolute;
  left: -21px;
  top: 0;
  height: 12px;
  width: 12px;
  background-color: #c3002f;
}
.hi-holiday-device {
  height: 50px;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 10px;
  border-top: 1px solid;
  border-color: #b9b9b9;
  overflow: hidden;
  transition: all 0.2s linear;
}
.hi-holiday-device-last {
  border-bottom: 1px solid #b9b9b9;
}
.hi-holiday-device.active {
  box-shadow: 0 0px 20px 5px rgba(0, 0, 0, 0.08);
  margin: 10px 0;
  border: 0;
  transition: all 0.2s linear;
}
.hi-holiday-device.left {
  width: 50%;
}
.hi-holiday-device.right {
  width: 50%;
}
.hi-holiday-device > .hi-holiday-device-state {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  right: -20px;
  background-color: #EDEDED;
  z-index: 0;
  transition: background 0.2s linear;
}
.hi-holiday-device > .hi-holiday-device-state > img {
  position: absolute;
  top: 36px;
  left: 27px;
}
.hi-holiday-device.active > .hi-holiday-device-state {
  background-color: #c3002f;
}
.hi-holiday-device .hi-holidays-checkbox {
  cursor: pointer;
}
.hi-holiday-device .hi-holidays-checkbox .hi-holidays-control-input {
  display: none;
}
.hi-holiday-device label {
  margin: 0;
}
.hi-holiday-device .hi-holidays-checkbox .hi-holidays-control-indicator {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid #b9b9b9;
  transition: 0.2s;
}
.hi-holiday-device .hi-holidays-checkbox .hi-holidays-control-indicator.active {
  -webkit-transform: rotateZ(45deg) translate(1px, -5px);
  transform: rotateZ(45deg) translate(1px, -5px);
  width: 10px;
  border-top: 0px solid #c3002f;
  border-left: 0px solid #c3002f;
  border-color: #c3002f !important;
}
.hi-holiday-device .hi-holidays-checkbox .hi-holidays-control-description {
  margin-left: 25px;
}
.hi-no-holidays-container {
  height: 400px;
  background-color: #fff;
  background-image: url(../images/holidays/no-holidays.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  background-size: 25%;
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
}
.hi-no-holidays-container div {
  font-size: 20px;
  font-weight: 300;
  height: 200px;
}
/*
  Error Codes
*/
.hi-no-ec-container {
  height: 400px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.hi-no-ec-container img {
  width: 100px;
}
.hi-holiday-hlrr {
  position: absolute;
  right: 110px;
  width: 20px;
  background: #c3002f;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  cursor: pointer;
}
.hi-holiday-hlrr:hover {
  background-color: #a60028;
}
.hi-holiday-hlrr--alert {
  position: absolute;
  right: -55%;
  top: 0;
  width: 50%;
}
.hi-holiday-hlrr--alert-container {
  position: relative;
  display: flex;
  padding: 10px;
  color: #151515;
  background-color: #fff;
  border: 1px solid #c3002f;
}
.hi-holiday-hlrr--alert-container:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 16px solid #c3002f;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  top: -1px;
  left: -17px;
}
.hi-holiday-hlrr--alert-container:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  top: 0;
  left: -15px;
}
.hi-hi-holiday-hlrr--alert--close {
  position: absolute;
  right: 5px;
  top: -2px;
  font-size: 20px;
  cursor: pointer;
  color: #c3002f;
}

/* Manuals link style */
a.custom-link {
  position: relative;
  color: #333;
  text-decoration: none;
}

a.custom-link::after {
  content:'';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 2px;
  width: 26px;
  background-color: rgba(195, 0, 47, 0.6);
  transition: width 0.3s linear;
}

a.custom-link:hover {
  color: #151515;
}

a.custom-link:hover::after {
  width: 100%;
  background-color: rgba(195, 0, 47, 1);
}

.manual-list {
  margin: 1rem 0 2rem;
  padding-inline-start: 1.25rem;
}
.manual-list li {
  margin-bottom: 1.1rem;
}
