@charset "UTF-8";
/* buttons */
/*drop-down-menu*/
/* buttons */
/*drop-down-menu*/
.btn {
  padding: 1rem 1.4rem;
  font-size: 1rem;
  line-height: 1rem;
  border-radius: 0px;
  /*font-family: "Viga", Helvetica, Arial, sans-serif;*/
  font-weight: 400;
  border: none;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease-in-out, ease-in-out;
}
.btn + .btn {
  margin-left: 10px;
}
.btn.btn-collapser-collapser {
  margin-bottom: 10px;
}
.btn.btn-collapser .fa-chevron-down, .btn.btn-collapser .fa-plus-circle {
  display: none;
}
.btn.btn-collapser .fa-chevron-up {
  display: inline-block;
}
.btn.btn-collapser.collapsed .fa-chevron-up {
  display: none;
}
.btn.btn-collapser.collapsed .fa-chevron-down, .btn.btn-collapser.collapsed .fa-plus-circle {
  display: inline-block;
}
.btn.btn-block + .btn {
  margin-left: 0;
}
.btn.btn-rounded {
  padding: 1rem 1.4rem;
  font-size: 1rem;
  line-height: 1rem;
  border-radius: 100px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease-in-out, ease-in-out;
}
.btn.disabled, .btn[disabled] {
  cursor: not-allowed;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: none;
  box-shadow: none;
}

fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  line-height: 1rem;
  /*height: 28px;*/
  /*width: 170px;*/
  text-align: center;
  /*border-radius: $border-round;*/
}

.btn-block {
  text-align: left;
}
.btn-block.btn-primary, .btn-block.btn-secondary, .btn-block.btn-default {
  text-align: center;
}

.btn-primary {
  background-color: #003057;
  border-bottom-color: #003057;
  border-bottom-width: 0.15rem;
  margin-top: 0;
  /*&.btn-toggle {
      &:active, &.active {
          color: $btn-blue-text;
          background-color: $btn-blue;
          border-color: $btn-blue-border;
      }
  }*/
}
.btn-primary:hover {
  background-color: rgba(0, 48, 87, 0.8);
  border-color: rgba(0, 48, 87, 0.8);
}
.btn-primary:active, .btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgba(0, 48, 87, 0.6);
  border-color: rgba(0, 48, 87, 0.6);
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary:focus:hover, .btn-primary:focus:focus, .btn-primary:focus.focus, .btn-primary.focus:hover, .btn-primary.focus:focus, .btn-primary.focus.focus {
  color: #fff;
  background-color: rgba(0, 48, 87, 0.8);
  border-color: rgba(0, 48, 87, 0.8);
}
.btn-primary.disabled {
  background: rgba(0, 48, 87, 0.4);
  /*#f3f3f3*/
  color: #fff;
  border: none;
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}
.btn-primary[disabled] {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}
.btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}

.open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #003057;
  border-color: #003057;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: rgba(0, 48, 87, 0.6);
  border-color: rgba(0, 48, 87, 0.6);
}

fieldset[disabled] .btn-primary {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}
fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}

.btn-secondary {
  background: #fff;
  color: #003057;
  border-bottom-color: #94b7bb;
  border-bottom-width: 0.15rem;
  margin-top: 0;
  /*&.btn-toggle {
      &:active, &.active {
          color: $btn-white-text;
          background-color: $btn-white;
          border-color: $btn-white-border;
      }
  }*/
}
.btn-secondary:hover {
  background-color: rgba(66, 152, 181, 0.4);
  border-color: rgba(66, 152, 181, 0.4);
  color: #003057;
}
.btn-secondary:active, .btn-secondary.active, .btn-secondary:focus, .btn-secondary.focus {
  color: #003057;
  background-color: rgba(66, 152, 181, 0.6);
  border-color: rgba(148, 183, 187, 0.6);
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
  color: #003057;
}
.btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus, .btn-secondary:focus:hover, .btn-secondary:focus:focus, .btn-secondary:focus.focus, .btn-secondary.focus:hover, .btn-secondary.focus:focus, .btn-secondary.focus.focus {
  color: #003057;
  background-color: rgba(66, 152, 181, 0.4);
  border-color: rgba(66, 152, 181, 0.4);
}
.btn-secondary.disabled {
  background: #fff;
  color: #003057;
  border: none;
}
.btn-secondary.disabled:hover, .btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary.disabled:active, .btn-secondary.disabled.active {
  background: #fff;
  color: #003057;
  border: none;
}
.btn-secondary[disabled] {
  background: #fff;
  color: #003057;
  border: none;
}
.btn-secondary[disabled]:hover, .btn-secondary[disabled]:focus, .btn-secondary[disabled].focus, .btn-secondary[disabled]:active, .btn-secondary[disabled].active {
  background: #fff;
  color: #003057;
  border: none;
}

.open > .btn-secondary.dropdown-toggle {
  color: #003057;
  background-color: #fff;
  border-color: #94b7bb;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
  color: #003057;
}
.open > .btn-secondary.dropdown-toggle:hover, .open > .btn-secondary.dropdown-toggle:focus, .open > .btn-secondary.dropdown-toggle.focus {
  color: #003057;
  background-color: rgba(66, 152, 181, 0.4);
  border-color: rgba(148, 183, 187, 0.8);
}

fieldset[disabled] .btn-secondary {
  background: #fff;
  color: #003057;
  border: none;
}
fieldset[disabled] .btn-secondary:hover, fieldset[disabled] .btn-secondary:focus, fieldset[disabled] .btn-secondary.focus, fieldset[disabled] .btn-secondary:active, fieldset[disabled] .btn-secondary.active {
  background: #fff;
  color: #003057;
  border: none;
}

.btn-default {
  padding: 1rem 1.4rem;
  font-size: 1rem;
  line-height: 1rem;
  border-radius: 0px;
  background: #fff;
  color: #003057;
  border-style: solid;
  border-width: 0.0714rem;
  border-color: #94b7bb;
}
.btn-default:hover {
  background-color: rgba(66, 152, 181, 0.4);
  border-color: rgba(148, 183, 187, 0.8);
  color: #003057;
}
.btn-default:active, .btn-default.active, .btn-default:focus, .btn-default.focus {
  color: rgba(0, 48, 87, 0.6);
  background-color: rgba(66, 152, 181, 0.6);
  border-color: rgba(148, 183, 187, 0.6);
  outline: none;
}
.btn-default.disabled {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: rgba(0, 48, 87, 0.4);
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: rgba(0, 48, 87, 0.4);
}
.btn-default[disabled] {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: rgba(0, 48, 87, 0.4);
}
.btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: rgba(0, 48, 87, 0.4);
}

.open > .btn-default.dropdown-toggle {
  color: #003057;
  background-color: #fff;
  border-color: #94b7bb;
  outline: none;
}

/*commented, because border color is overwritten in mobile mode*/
/*.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #50585f;
  background-color: white;
  border-color: #d6d6d6;
  outline: none; }*/
fieldset[disabled] .btn-default {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: rgba(0, 48, 87, 0.4);
}
fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: rgba(0, 48, 87, 0.4);
}

.btn-register {
  background-color: #003057;
  color: #fff;
  border-bottom-color: #003057;
  border-bottom-width: 0.15rem;
  margin-top: 0;
}
.btn-register:focus, .btn-register.focus {
  background-color: rgba(0, 48, 87, 0.8);
  border-color: rgba(0, 48, 87, 0.8);
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-register:hover {
  background-color: rgba(0, 48, 87, 0.8);
  border-color: rgba(0, 48, 87, 0.8);
}
.btn-register:active, .btn-register.active {
  color: #fff;
  background-color: rgba(0, 48, 87, 0.6);
  border-color: rgba(0, 48, 87, 0.6);
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-register:active:hover, .btn-register:active:focus, .btn-register:active.focus, .btn-register.active:hover, .btn-register.active:focus, .btn-register.active.focus {
  color: #fff;
  background-color: rgba(0, 48, 87, 0.8);
  border-color: rgba(0, 48, 87, 0.8);
}

.open > .btn-register.dropdown-toggle {
  color: #fff;
  background-color: #003057;
  border-color: #003057;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-register.dropdown-toggle:hover, .open > .btn-register.dropdown-toggle:focus, .open > .btn-register.dropdown-toggle.focus {
  color: #fff;
  background-color: rgba(0, 48, 87, 0.8);
  border-color: rgba(0, 48, 87, 0.8);
}

.btn-register.disabled {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}
.btn-register.disabled:hover, .btn-register.disabled:focus, .btn-register.disabled.focus, .btn-register.disabled:active, .btn-register.disabled.active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}
.btn-register[disabled] {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}
.btn-register[disabled]:hover, .btn-register[disabled]:focus, .btn-register[disabled].focus, .btn-register[disabled]:active, .btn-register[disabled].active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}

fieldset[disabled] .btn-register {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}
fieldset[disabled] .btn-register:hover, fieldset[disabled] .btn-register:focus, fieldset[disabled] .btn-register.focus, fieldset[disabled] .btn-register:active, fieldset[disabled] .btn-register.active {
  background: rgba(0, 48, 87, 0.4);
  color: #fff;
  border: none;
}

.btn-link {
  padding: 0.4rem 0rem;
  font-size: 0.9rem;
  line-height: 1rem;
  border-radius: 0px;
}

@media (max-width: 991px) {
  .btn-wrap {
    white-space: normal;
  }
}
.btn-group .btn {
  background-color: #fff;
  color: #003057;
}
.btn-group .btn:hover {
  background-color: rgba(66, 152, 181, 0.4);
  color: rgba(0, 48, 87, 0.8);
}
.btn-group .btn.dropdown-toggle {
  background-color: #003057;
  color: #fff;
}
.btn-group .btn.dropdown-toggle.open {
  background-color: #4298b5;
  color: #fff;
}
.btn-group .dropdown-menu {
  background-color: #003057;
}
.btn-group .dropdown-menu > li > a {
  color: #fff;
  cursor: pointer;
}
.btn-group .dropdown-menu > li > a:hover {
  background-color: #4298b5;
  color: #fff;
}
.btn-group .btn-primary {
  background-color: #003057;
  color: #fff;
}
.btn-group .btn-primary:hover {
  background-color: rgba(0, 48, 87, 0.8);
  color: #fff;
}
.btn-group .btn-primary:active, .btn-group .btn-primary .active, .btn-group .btn-primary:hover, .btn-group .btn-primary:focus {
  background-color: #003057;
  color: #fff;
}

.btn-file {
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  text-align: left !important;
}
.btn-file > input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translate(-300px, 0) scale(4);
  font-size: 23px;
  direction: ltr;
  cursor: pointer;
}
.btn-file:not(.btn-default):not(.btn-primary) {
  background-color: #003057;
  color: #fff;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background-color: #003057;
  color: #fff;
  cursor: inherit;
  display: block;
}

/* panels */
/* buttons */
/*drop-down-menu*/
.container-messages, .container-modify {
  background: #94b7bb;
}
.container-messages .container, .container-modify .container {
  padding: 10px 25px;
}

.container-tiles {
  background: #003057;
}
.container-tiles .container {
  padding: 10px 25px;
}

.container#main, .container#modify {
  padding-top: 20px;
}
.container#main > .row {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .container#main, .container#modify {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.panel-heading {
  padding: 15px 25px;
  border-radius: 0px;
  background-color: rgba(148, 183, 187, 0.12);
  color: #003057;
}
.panel-heading h1, .panel-heading h2 {
  margin: 0;
  text-transform: uppercase;
}

.panel-footer {
  padding: 15px 25px;
  border-radius: 0px;
  background-color: rgba(148, 183, 187, 0.12);
  color: #003057;
}

.panel-body {
  padding: 15px 25px;
  border-bottom: 1px solid rgba(148, 183, 187, 0.12);
  border-radius: 0px;
  background-color: rgba(148, 183, 187, 0.12);
}
.panel-body:before {
  content: " ";
  display: table;
}
.panel-body:after {
  content: " ";
  display: table;
  clear: both;
}
.panel-body.panel-table {
  padding: 0;
}
.panel-body.panel-table p {
  margin: 0;
}
.panel-body.panel-table .table tr {
  background-color: rgba(148, 183, 187, 0.12);
  border-bottom: 1px solid rgba(148, 183, 187, 0.12);
}
.panel-body.panel-table td {
  padding: 5px 15px;
}
.panel-body.panel-table td.text-right {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 25px;
  white-space: nowrap;
  display: inline-block;
  float: right;
}
.panel-body.panel-table td.text-right small {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  float: right;
}
.panel-body.panel-table .cell-electricity {
  background: #00c5b4;
  padding: 0 4px;
}
.panel-body.panel-table .cell-heating {
  background: #f66076;
  padding: 0 4px;
}
.panel-body.panel-table .cell-water {
  background: #07a6ff;
  padding: 0 4px;
}
.panel-body.panel-table small {
  color: #003057;
}
.panel-body .single-user, .panel-body .single-customer {
  padding: 0 20px;
  border-bottom: 1px solid rgba(148, 183, 187, 0.12);
}
.panel-body .single-user:last-of-type, .panel-body .single-customer:last-of-type {
  border-bottom: 0;
}
.panel-body .single-user .btn-collapser, .panel-body .single-customer .btn-collapser {
  padding-top: 20px;
  padding-bottom: 20px;
}

.panel {
  margin-bottom: 20px;
  border-radius: 0px;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid rgba(148, 183, 187, 0.12);
  box-shadow: none;
  /*.panel-heading, .panel-body {
      background-color: $panel-background;
      color: $primary;
  }*/
}
.panel .fa-chevron-down {
  display: none;
}
.panel .fa-chevron-up {
  display: inline-block;
}
.panel .collapsed .fa-chevron-up {
  display: none;
}
.panel .collapsed .fa-chevron-down {
  display: inline-block;
}
.panel.panel-info .panel-heading {
  padding: 10px 15px;
  border-radius: 0.4rem;
}
.panel.panel-info .panel-body {
  padding: 0;
}
.panel.panel-default .panel-body {
  padding-bottom: 0;
}
.panel.panel-default .panel-body img {
  height: 90%;
}
.panel.panel-default .panel-footer {
  background: transparent;
  border: none;
  text-align: center;
}
.panel.panel-default .badge {
  margin-top: -5px;
  margin-right: 0;
}

.panel-default {
  background-color: rgba(148, 183, 187, 0.12);
}
.panel-default .panel-heading, .panel-default .panel-body {
  background-color: transparent;
  color: #003057;
}
.panel-default .list-group {
  background-color: transparent;
  color: #003057;
}
.panel-default .panel-table > table > tr {
  background-color: rgba(148, 183, 187, 0.12);
}

.panel-new .panel-heading {
  position: relative;
}
.panel-new .panel-heading input[type=search] {
  padding: 24px 24px 23px 24px;
  margin: -15px 50px -15px -25px;
  border-radius: 0.4rem 0.4rem 0 0;
  display: none;
}
.panel-new .panel-heading .fa {
  margin: 0;
}
.panel-new .panel-heading .fa-angle-up {
  display: none;
}
.panel-new .panel-heading.open .fa-angle-up {
  display: inline-block;
}
.panel-new .panel-heading.open .fa-angle-down {
  display: none;
}
.panel-new .dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0%;
  bottom: 0;
  border-radius: none;
  border: none;
  border-radius: 0 0.4rem 0 0;
}
.panel-new .scrollable-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  /* Note: In the original this was 100, which was wrong since dropdown-backdrop has 1000 and
  it would catch mouse clicks and thus preventing them to go to actual menuitems. */
  z-index: 1000;
  background: #f3f3f3;
  border-radius: 0 0 0.4rem 0.4rem;
  border-right: 0.14rem solid rgba(0, 0, 0, 0.15);
  border-bottom: 0.14rem solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.panel-new .scrollable-menu .dropdown-menu {
  position: static;
  right: 0;
  background-color: #f3f3f3;
  height: auto;
  width: 100%;
  max-height: 260px;
  min-height: 167px;
  overflow-x: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
.panel-new .scrollable-menu .fa-plus-circle {
  display: inline-block;
}
.panel-new .scrollable-menu .add-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0;
}
.panel-new .scrollable-menu .add-new a {
  padding: 10px 25px 10px 10px;
  text-align: left;
  color: #50585f;
}
.panel-new .scrollable-menu li {
  padding: 10px 25px 10px 35px;
  cursor: pointer;
}
.panel-new .scrollable-menu li.active {
  font-weight: 700;
  position: relative;
}
.panel-new .scrollable-menu li.active:before {
  font-family: FontAwesome;
  content: "";
  position: absolute;
  color: #0072b4;
  top: 10px;
  left: 10px;
}
.panel-new .scrollable-menu li.product-electricity {
  border-right: 5px solid #00c5b4;
}
.panel-new .scrollable-menu li.product-heat {
  border-right: 5px solid #f66076;
}
.panel-new .scrollable-menu li.product-water {
  border-right: 5px solid #07a6ff;
}
.panel-new .open .scrollable-menu, .panel-new .open .dropdown-menu {
  display: block;
}
.panel-new .panel-body strong {
  /*font-family: "Viga", Helvetica, Arial, sans-serif;*/
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
}
.panel-new .panel-body .fa-arrow-up {
  color: #0072b4;
  padding: 5px 0;
  font-size: 24px;
}
.panel-new .panel-body .fa-arrow-down {
  color: #199de0;
  padding: 5px 0;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .panel-body.panel-table td {
    padding: 5px;
  }
}
@media (max-width: 1199px) {
  .panel-body.panel-table td.text-right {
    padding: 5px;
  }
}
#new-permission .panel {
  margin-bottom: 0;
  border: none;
}

@media (min-width: 768px) {
  .panel.panel-default {
    height: 255px;
  }
}
@media (min-width: 768px) {
  .panel.panel-default .panel-body {
    height: 145px;
  }
}
@media (min-width: 768px) {
  .panel.panel-default .panel-body.panel-table {
    height: 145px;
  }
}
.responsive .panel-title {
  position: relative;
}
.responsive .panel-title .badge {
  border: 1px solid #50585f;
  color: #50585f;
  line-height: inherit;
  border-radius: 50%;
  position: absolute;
  margin-left: 10px;
  top: calc(50% - 5px);
}

.panel.ajax-load {
  position: relative;
  overflow: hidden;
}

.panel-heading-sorting .row div {
  white-space: nowrap;
}
.panel-heading-sorting .sorting {
  margin-left: 10px;
  display: inline-block;
}
.panel-heading-sorting .row div:hover .fa {
  display: inline-block;
  opacity: 0.6;
}
.panel-heading-sorting .fa {
  display: none;
}
.panel-heading-sorting .active.sort-asc .fa {
  display: inline-block;
}
.panel-heading-sorting .active.sort-desc .fa {
  display: inline-block;
}
.panel-heading-sorting .active.sort-desc .fa-caret-up {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .panel-heading-sorting span {
    width: 100%;
    text-align: center;
    margin: 0 !important;
    display: inline-block;
    float: left;
  }
}
.panel-group.responsive .alert .fa, .tab-content.lisa-tabs .alert .fa {
  position: absolute;
  top: 15px;
  left: 20px;
}

/* panel styling */
.panel-nobox {
  border-bottom: 0;
  margin-bottom: 0;
}
.panel-nobox .panel-body {
  padding: 0;
}
.panel-nobox:hover {
  background: transparent;
}
.panel-nobox .product-status {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 50px;
}
.panel-nobox .product-status i {
  font-size: 18px;
}
.panel-nobox .product-status .fa-je-check {
  color: #0072b4;
  left: 5px;
}
.panel-nobox .product-status .fa-je-check:before {
  position: absolute;
  left: -5px;
  padding: 0 0 0 4px;
  border: 2px solid #0072b4;
  width: 28px;
  height: 28px;
  border-radius: 15px;
}
.panel-nobox .product-status .badge {
  float: right;
  background: transparent;
  color: #50585f;
}
.panel-nobox .panel-heading {
  background: transparent;
  position: relative;
  border: 0;
  padding: 0 0 10px;
}
.panel-nobox .panel-heading .fa {
  position: absolute;
  left: 10px;
  top: 0;
}
.panel-nobox .panel-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  padding-left: 60px;
  line-height: 40px;
}
.panel-nobox.product-electricity .panel-title .fa {
  color: #00c5b4;
  font-size: 40px;
  left: 10px;
}
.panel-nobox.product-heat .panel-title .fa {
  color: #f66076;
  font-size: 36px;
  left: 5px;
}
.panel-nobox.product-water .panel-title .fa {
  color: #07a6ff;
  font-size: 42px;
  left: 15px;
}

@media (max-width: 767px) {
  .panel-nobox .panel-heading {
    cursor: pointer;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .panel-nobox.product-electricity .panel-heading {
    border-bottom: 3px solid #00c5b4;
  }
}
@media (max-width: 767px) {
  .panel-nobox.product-heat .panel-heading {
    border-bottom: 3px solid #f66076;
  }
}
@media (max-width: 767px) {
  .panel-nobox.product-water .panel-heading {
    border-bottom: 3px solid #07a6ff;
  }
}
.panel.panel-bordered {
  border: 1px solid #d6d6d6;
}
.panel.panel-bordered .panel-title {
  text-transform: uppercase;
  font-size: 20px;
}

@media (max-width: 767px) {
  #tab-workflow .product-status {
    margin-right: 15px;
  }
}
/*.tab-content.permission-tabs .tab-pane, .panel-group.responsive .tab-pane {
    background: white;
    border-radius: 0 0.4rem 0.4rem 0.4rem;
}*/
.tab-content.lisa-tabs .tab-pane {
  background: white;
  border-radius: 0 0.4rem 0.4rem 0.4rem;
}
.tab-content.permission-tabs .alert {
  padding: 15px 25px 15px 65px;
  border-width: 0px;
  background: white;
  position: relative;
}

.panel-group.responsive .alert {
  padding: 15px 25px 15px 65px;
  border-width: 0px;
  background: white;
  position: relative;
}

/* panel styling */
.tab-content.lisa-tabs .alert {
  padding: 15px 25px 15px 65px;
  border-width: 0px;
  background: white;
  position: relative;
}
.tab-content.permission-tabs .alert .close {
  opacity: 0.7;
  color: #50585f;
  text-shadow: 0 1px 0 #00314e;
}

/* panel styling */
@media (min-width: 992px) {
  .tab-content.permission-tabs .alert, .panel-group.responsive .alert, .tab-content.lisa-tabs .alert {
    margin: 0;
    border-radius: 0 0.4rem 0 0;
    padding: 25px 45px 25px 85px;
  }
}
.panel-group.responsive .alert .close {
  opacity: 0.7;
  color: #50585f;
  text-shadow: 0 1px 0 #00314e;
}

/* panel styling */
.tab-content.lisa-tabs .alert .close {
  opacity: 0.7;
  color: #50585f;
  text-shadow: 0 1px 0 #00314e;
}
.tab-content.permission-tabs .alert .fa {
  position: absolute;
  top: 15px;
  left: 20px;
}

.panel-consumption .panel-heading {
  position: relative;
}
.panel-consumption .panel-heading h2 {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 50px;
}
.panel-consumption .panel-heading input[type=search] {
  padding: 24px 24px 23px 24px;
  margin: -15px 50px -15px -25px;
  border-radius: 0.4rem 0.4rem 0 0;
  display: none;
}
.panel-consumption .panel-heading .fa {
  margin: 0;
}
.panel-consumption .panel-heading .fa-angle-up {
  display: none;
}
.panel-consumption .panel-heading.open h2 {
  display: none;
}
.panel-consumption .panel-heading.open input, .panel-consumption .panel-heading.open .fa-angle-up {
  display: inline-block;
}
.panel-consumption .panel-heading.open .fa-angle-down {
  display: none;
}
.panel-consumption .dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0%;
  bottom: 0;
  border-radius: 0px;
  border: none;
  /*border-radius: 0 0.4rem 0 0;*/
}
.panel-consumption .scrollable-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-bottom: 37px;
  z-index: 100;
  background: rgba(148, 183, 187, 0.12);
  border-radius: 0 0 0.4rem 0.4rem;
  border-right: 0.14rem solid rgba(0, 0, 0, 0.15);
  border-bottom: 0.14rem solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.panel-consumption .scrollable-menu .dropdown-menu {
  position: static;
  right: 0;
  /*background-color: #f3f3f3;*/
  height: auto;
  width: 100%;
  max-height: 260px;
  min-height: 167px;
  overflow-x: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
.panel-consumption .scrollable-menu .fa-plus-circle {
  display: inline-block;
}
.panel-consumption .scrollable-menu .add-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0;
  background-color: rgba(148, 183, 187, 0.12);
}
.panel-consumption .scrollable-menu .add-new a {
  padding: 10px 25px 10px 10px;
  text-align: left;
  color: #003057;
}
.panel-consumption .scrollable-menu li {
  padding: 10px 25px 10px 35px;
  cursor: pointer;
  background-color: rgba(148, 183, 187, 0.12);
}
.panel-consumption .scrollable-menu li.active {
  font-weight: 700;
  position: relative;
}
.panel-consumption .scrollable-menu li.active:before {
  font-family: FontAwesome;
  content: "";
  position: absolute;
  color: #0072b4;
  top: 10px;
  left: 10px;
}
.panel-consumption .scrollable-menu li.product-electricity {
  border-left: 10px solid #00c5b4;
}
.panel-consumption .scrollable-menu li.product-electricity:hover {
  border-left-color: #00a497;
}
.panel-consumption .scrollable-menu li.product-heat {
  border-left: 10px solid #f66076;
}
.panel-consumption .scrollable-menu li.product-heat:hover {
  border-left-color: #9a1e31;
}
.panel-consumption .scrollable-menu li.product-water {
  border-left: 10px solid #07a6ff;
}
.panel-consumption .scrollable-menu li.product-water:hover {
  border-left-color: #05759d;
}
.panel-consumption .open .scrollable-menu, .panel-consumption .open .dropdown-menu {
  display: block;
}
.panel-consumption .panel-body .text-right {
  white-space: nowrap;
}
.panel-consumption .panel-body strong {
  font-family: "Viga", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}
.panel-consumption .panel-body .fa-arrow-up {
  color: #0072b4;
  font-size: 14px;
}
.panel-consumption .panel-body .fa-arrow-down {
  color: #199de0;
  font-size: 14px;
}

body.kirjaudu {
  /*background: url("images/coffeebg.jpg") no-repeat center;*/
  background: #fff;
  background-size: cover;
}

@media (min-width: 992px) {
  .container#login .login {
    padding-right: 0;
  }
  .container#login .login .panel-heading {
    border-radius: 0.4rem 0 0 0;
  }
}
@media (max-width: 991px) {
  .container#login .login .panel-footer {
    border-radius: 0;
  }
}
@media (min-width: 992px) {
  .container#login .register {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .container#login .register .panel-heading {
    border-radius: 0;
  }
}
.container#login {
  padding-top: 50px;
}
.container#login .nav-pills > li > a {
  padding: 1.4rem 1rem;
}
.container#login .tab-content {
  padding: 20px 0 0;
}
.container#login #accordion small {
  color: #50585f;
  /*font-family: "Lato", Helvetica, Arial, sans-serif;*/
}
.container#login .login .panel-footer {
  border-radius: 0 0 0 0.4rem;
}
.container#login .register {
  color: #003057;
}
.container#login .register > .panel {
  background: transparent;
}
.container#login .register .panel-heading {
  /*background: #818b94;*/
  /*border-bottom: none;
  border-radius: 0 0.4rem 0 0;*/
}
.container#login .register .panel-heading h2 {
  line-height: 1.5;
}
.container#login .register .btn-register {
  border-bottom-color: #003057;
}

body.rekisteroidy {
  /*background: url("images/coffeebg.jpg") no-repeat center top;*/
  background: #fff;
  background-attachment: fixed;
  background-size: cover;
}

.container#register {
  padding-top: 50px;
}
.container#register .panel-heading, .container#register .panel-footer {
  background: rgba(148, 183, 187, 0.12);
}

/* buttons */
/*drop-down-menu*/
@media (max-width: 991px) {
  .navbar li {
    position: static;
  }
}
.navbar li .badge {
  position: absolute;
  top: 15px;
  right: 10px;
  margin: 0;
  font-size: 10px;
  padding: 5px 7px;
  pointer-events: none;
  background: #f66078;
  font-weight: 300;
}

.navbar-fixed-top {
  border-width: 0;
}

#nav-back {
  margin-top: -5px;
}

.je-nav {
  background: #003057;
  font-weight: 500;
  margin: 0;
  color: #fff;
  /*
  .dropdown-menu {
      font-size: 14px;
      padding: 0;

      > li > a {
          padding: 10px 15px;

          span {
              margin-right: 5px;
              color: #f3f3f3;
          }
      }

      .divider {
          margin: 0;
          height: 1px;
      }
  }
  */
}
.je-nav .container {
  padding: 0;
}
.je-nav .container > .navbar-nav {
  margin: 0;
}
.je-nav .container > .navbar-nav#menu {
  float: left;
}
.je-nav .container > .navbar-nav#menu span.back-home {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.je-nav .container > .navbar-nav.open {
  background: #003057;
  color: #fff;
}
.je-nav .navbar-brand {
  margin: 6px 12px 6px 12px !important;
  max-height: 50px;
  height: 64%;
  width: 120px;
  padding: 0;
}
.je-nav .navbar-brand img {
  width: 100%;
  height: 100%;
}
.je-nav ul.navbar-nav {
  font-size: 1.25rem;
  /*.dropdown-main {
      background-color: $primary; //#1e82be;
      margin-right: 20px;

      .dropdown-toggle {
          font-family: DIN_W01_Light, "Arial", sans-serif; //"Viga", Helvetica, Arial, sans-serif;
          text-transform: uppercase;

          i {
              margin-right: 10px;
          }
      }

      .dropdown-header {
          font-size: inherit;
          padding: 0;
          color: #50585f;

          span {
              display: inline-block;
              padding: 10px 20px 10px 30px;
              font-size: 1.14rem;
              font-weight: 700;
              width: 100%;
              cursor: pointer;
              background: white;

              .fa {
                  font-weight: 300;
                  padding-top: 3px;
              }

              &.collapsed {
                  background: transparent;

                  .fa-plus-square-o {
                      display: block;
                  }

                  .fa-minus-square-o {
                      display: none;
                  }
              }

              .fa-plus-square-o {
                  display: none;
              }

              .fa-minus-square-o {
                  display: block;
              }
          }

          .nav > li > a {
              font-size: 0.85rem;
              padding: 10px 20px 10px 60px;
              font-weight: 400;
              color: #0072b4;
          }
      }
  }*/
}
.je-nav ul.navbar-nav h1 {
  margin-top: 24px;
  font-size: 1.4rem;
}
.je-nav ul.navbar-nav .dropdown .dropdown-toggle {
  background-color: #003057;
  color: #fff;
}
.je-nav ul.navbar-nav .dropdown.open .dropdown-toggle {
  background-color: #4298b5;
  /*color: $tertiary;*/
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li > a:hover, .je-nav ul.navbar-nav .dropdown .dropdown-menu > li > a:focus, .je-nav ul.navbar-nav .dropdown .dropdown-menu > li > a:active {
  background-color: #4298b5;
}
.je-nav ul.navbar-nav .dropdown-user .dropdown-toggle {
  max-height: 70px;
}
.je-nav ul.navbar-nav .dropdown-user .dropdown-header {
  font-size: inherit;
  padding: 10px 20px 10px 30px;
  color: #50585f;
  background: white;
}
.je-nav ul.navbar-nav .dropdown-user span {
  display: inline-block;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}
.je-nav ul.navbar-nav .dropdown-user span .fa {
  margin-left: 30px;
}
.je-nav ul.navbar-nav .dropdown-user span.user-email {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 0;
  padding: 0;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu {
  background: #003057;
  /*#f3f3f3*/
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.15);
  border-style: solid;
  border-width: 0;
  border-bottom-width: 0.14rem;
  border-right-width: 0.14rem;
  padding: 10px 0;
  /**/
  /*background-color: $primary; //#1e82be;*/
  margin-right: 20px;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu .dropdown-toggle {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  text-transform: uppercase;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu .dropdown-toggle i {
  margin-right: 10px;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li {
  /**/
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li:active, .je-nav ul.navbar-nav .dropdown .dropdown-menu > li:hover, .je-nav ul.navbar-nav .dropdown .dropdown-menu > li:focus {
  background-color: #4298b5;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header {
  font-size: inherit;
  padding: 0;
  /*color: $white;*/
  /*.nav > li > a {
      font-size: 0.85rem;
      padding: 10px 20px 10px 60px;
      font-weight: 400;
      color: #0072b4;
  }*/
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header span {
  display: inline-block;
  padding: 10px 20px 10px 30px;
  font-size: 1.14rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  background: #4298b5;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header span .fa {
  font-weight: 300;
  padding-top: 3px;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header span.collapsed {
  background: transparent;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header span.collapsed .fa-plus-square-o {
  display: block;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header span.collapsed .fa-minus-square-o {
  display: none;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header span .fa-plus-square-o {
  display: none;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header span .fa-minus-square-o {
  display: block;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header .nav > li > a {
  font-size: 0.85rem;
  padding: 10px 20px 10px 60px;
  font-weight: 400;
  background: #4298b5;
  color: #fff;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header .nav > li > a:hover, .je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header .nav > li > a:focus, .je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-header .nav > li > a:active {
  background: #94b7bb;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-menu-item {
  /*background-color: $primary;*/
  /*.dropdown-header {

  }*/
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-menu-item > a {
  color: #fff;
  padding: 10px 20px 10px 30px;
  font-size: 1.14rem;
  font-weight: 700;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-menu-item:hover {
  background-color: #94b7bb;
  /*#f7f7f7*/
  color: #fff;
  /*#50585f*/
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.dropdown-menu-item.active > a {
  background-color: #94b7bb;
  /*#f7f7f7*/
  color: #fff;
  /*#50585f*/
}
.je-nav .navbar-text {
  color: #fff;
  font-size: 1.14rem;
  line-height: 70px;
  margin: 0;
}
.je-nav .navbar-right .dropdown-menu {
  right: auto;
  left: 0;
}

@media (max-width: 1199px) {
  .je-nav .container {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .je-nav ul.navbar-nav > li > a {
    padding: 25px !important;
  }
}
@media (max-width: 767px) {
  .je-nav ul.navbar-nav .dropdown-user {
    float: right;
  }
}
@media (min-width: 992px) {
  .je-nav ul.navbar-nav .dropdown-user > a {
    padding-bottom: 14px;
  }
}
@media (min-width: 992px) {
  .je-nav ul.navbar-nav .dropdown-user .fa-je-user {
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .je-nav ul.navbar-nav .dropdown-user span {
    display: none;
  }
}
@media (max-width: 1199px) {
  .je-nav ul.navbar-nav .dropdown-user span.user-email {
    font-size: 12px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 991px) {
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu {
    position: absolute;
    float: none;
    width: auto;
    margin-top: 0;
    left: 0;
    right: 0;
  }
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a {
    color: #94b7bb;
  }
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a:hover, .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a:focus {
    color: #d6d6d6;
    background-color: transparent;
  }
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a:hover, .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a:focus {
    color: #d6d6d6;
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .je-nav .navbar-text {
    line-height: 20px;
    max-width: 200px;
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .je-nav .navbar-right {
    float: right;
    min-width: 160px;
  }
  .je-nav .navbar-right > .navbar-nav {
    margin: 0;
  }
  .je-nav .navbar-right > .navbar-nav > li {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .je-nav .navbar-nav {
    float: right;
    min-width: 160px;
  }
  .je-nav .navbar-nav > li {
    display: inline-block;
    background-color: #003057;
    color: #003057;
  }
  .je-nav .navbar-nav.open > li {
    display: inline-block;
    background-color: #003057;
    color: #003057;
  }
  .je-nav .navbar-nav > .navbar-nav {
    margin: 0;
  }
}
/* nav tabs*/
.navbar-toggle {
  margin-top: 30px;
}
.navbar-toggle .icon-bar {
  width: 32px;
  height: 4px;
  border-radius: 1px;
}

/* nav tabs*/
.nav-pills {
  background: #fff;
  display: inline-block;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.nav-pills.nav-pills-sm {
  /*font-family: "Viga", Helvetica, Arial, sans-serif;*/
  display: block;
  background: transparent;
}
.nav-pills.nav-pills-sm a {
  padding: 5px;
  border-radius: 0px;
  color: #003057;
  background: #fff;
  margin: 10px 10px 15px 0;
  white-space: nowrap;
}
.nav-pills.nav-pills-sm li.active > a {
  padding: 5px 5px 20px 5px;
  color: #003057;
  background: rgba(148, 183, 187, 0.12);
  margin: 10px 10px 0 0;
}
.nav-pills.nav-pills-sm li.active > a:hover {
  color: rgba(0, 48, 87, 0.8);
  background: rgba(66, 152, 181, 0.4);
  margin: 10px 10px 0 0;
  border-radius: 0px;
}
.nav-pills > li {
  /*&.active > {
      a, div {
          color: $btn-blue-text;
          background-color: $btn-blue;

          &:hover, &:focus {
              color: $btn-blue-text;
              background-color: $btn-blue;
          }
      }
  }*/
}
.nav-pills > li > a, .nav-pills > li > div {
  border-radius: 0px;
  color: #003057;
  background-color: #fff;
  padding: 1.4rem 1.4rem;
}
.nav-pills > li > a:hover, .nav-pills > li > afocus, .nav-pills > li > div:hover, .nav-pills > li > divfocus {
  color: rgba(0, 48, 87, 0.8);
  background-color: rgba(66, 152, 181, 0.4);
}
.nav-pills > li + li {
  margin-left: 0px;
}

@media (max-width: 767px) {
  .nav-pills.nav-pills-sm a {
    padding: 10px;
    margin: 0 0 10px;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 767px) {
  .nav-pills.nav-pills-sm li.active > a {
    padding: 10px;
    margin: 0 0 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.4rem !important;
    background: #fafafa;
  }
  .nav-pills.nav-pills-sm li.active > a:hover, .nav-pills.nav-pills-sm li.active > a:focus {
    padding: 10px;
    margin: 0 0 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.4rem !important;
    background: #fafafa;
  }
}
#register .nav-pills {
  background: transparent;
  width: 100%;
  margin: 10px 0 15px;
}
#register .nav-pills > li {
  padding: 0 !important;
  text-align: center;
  margin: 0;
}
#register .nav-pills > li a, #register .nav-pills > li div {
  padding: 0 1.4rem;
  height: 60px;
  line-height: 60px;
  cursor: default;
}
#register .nav-pills > li a:before, #register .nav-pills > li div:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 19px solid white;
  position: absolute;
  top: 50%;
  margin-top: -36px;
  margin-left: -3px;
  left: 100%;
  z-index: -1;
}
#register .nav-pills > li a span.number, #register .nav-pills > li div span.number {
  display: none;
  padding: 0 3px 0 0;
}
#register .nav-pills > li.pill-first {
  z-index: 30;
}
#register .nav-pills > li.pill-middle {
  z-index: 20;
  margin-left: -7px;
}
#register .nav-pills > li.pill-middle .number, #register .nav-pills > li.pill-middle .text {
  padding: 0 0 0 20px;
  white-space: nowrap;
}
#register .nav-pills > li.pill-middle + .pill-middle {
  z-index: 15;
}
#register .nav-pills > li.pill-middle a:after, #register .nav-pills > li.pill-middle div:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #f3f3f3;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.pill-last {
  z-index: 10;
  margin-left: -7px;
}
#register .nav-pills > li.success a, #register .nav-pills > li.success div {
  background-color: #0072b4;
  color: white;
}
#register .nav-pills > li.success a:after, #register .nav-pills > li.success div:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #0072b4;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.active a, #register .nav-pills > li.active div {
  background: #003057;
}
#register .nav-pills > li.active a:after, #register .nav-pills > li.active div:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #003057;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.active a span.text, #register .nav-pills > li.active div span.text {
  display: inline;
}
#register .nav-pills > li.active.pill-last a:after, #register .nav-pills > li.active.pill-last div:after {
  display: none;
}

@media (max-width: 767px) {
  #register .nav-pills > li a span.text, #register .nav-pills > li div span.text, #register .nav-pills > li a span.number, #register .nav-pills > li div span.number {
    display: none;
  }
}
@media (max-width: 767px) {
  #register .nav-pills.company span.text {
    display: none !important;
  }
  #register .nav-pills.company span.number {
    display: inline;
    padding: 0 0 0 10px;
  }
}
@media (max-width: 767px) {
  #register .nav-pills > li.pill-last.col-xs-2 {
    width: calc(16.66667% + 14px);
  }
  #register .nav-pills > li.pill-last.col-xs-3 {
    width: calc(25% + 14px);
  }
  #register .nav-pills > li.pill-last.col-xs-8 {
    width: calc(66.66667% + 14px);
  }
}
.nav-tabs {
  border-bottom: none;
  font-family: "Viga", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.nav-tabs .badge {
  border: 1px solid #50585f;
  color: #50585f;
  line-height: inherit;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: calc(50% - 11.5px);
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin: 5px 3px 3px 0;
  line-height: 1.42857;
  border: none;
  padding: 20px 20px;
  border-radius: 0.4rem 0.4rem 0 0;
  background: #f3f3f3;
  color: #50585f;
}
.nav-tabs > li > a:hover {
  border-color: #0072b4 #0072b4 #f3f3f3;
}
.nav-tabs > li.has-badge > a {
  padding-right: 50px;
}
.nav-tabs > li.active > a {
  color: #50585f;
  background-color: white;
  border: none;
  margin: 0 3px 0 0;
  border-top: 5px solid #fff;
  border-bottom: 3px solid #fff;
  cursor: default;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}
.nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #50585f;
  background-color: white;
  border: none;
  margin: 0 3px 0 0;
  border-top: 5px solid #fff;
  border-bottom: 3px solid #fff;
  cursor: default;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  .nav-tabs {
    font-size: 1.25rem;
  }
  .nav-tabs > li > a {
    padding: 25px 35px;
  }
}
@font-face {
  font-family: "DIN_W01_Light";
  src: url("fonts/5590868/25df6f92-ec41-4f60-91af-bddc19a3adc2.eot?#iefix");
  src: url("fonts/5590868/25df6f92-ec41-4f60-91af-bddc19a3adc2.eot?#iefix") format("embedded-opentype"), url("fonts/5590868/e39ef3e7-91b2-45d0-8c2f-cfdcd0c0ab94.woff2") format("woff2"), url("fonts/5590868/83ff78fa-6d76-4fb5-8bff-8af8eec8e368.woff") format("woff"), url("fonts/5590868/9be9615e-18d6-4bf7-bb05-068341c85df3.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
  font-weight: 400;
  font-size: 1rem;
  padding-top: 70px;
  min-height: 100%;
}

html {
  font-size: 14px;
  min-height: 100%;
}

h1 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
  margin-top: 0;
}
h1 .fa {
  margin-right: 10px;
}
h1 .fa.fa-fw {
  position: relative;
}
h1 small {
  color: #50585f;
  margin-left: 20px;
}

h2 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}
h2 .fa {
  margin-right: 10px;
}
h2:first-child {
  margin-top: 0;
}

h3 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
  line-height: 20px;
}
h3 .checkbox {
  margin-top: 0;
}
h3 .checkbox input {
  margin-top: 0;
}

h4 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

h5 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

h6 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

.h1 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

.h2 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

.h3 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
  line-height: 20px;
}

.h4 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

.h5 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

.h6 {
  font-family: DIN_W01_Light, "Arial", sans-serif !important;
}

.regContainer {
  width: 1120px;
  margin-top: 50px;
}

.regContainer2 {
  width: 750px;
  margin-top: 50px;
}

.panel.register {
  border-radius: 15px;
  padding: 30px;
  width: 700px;
  background-color: #003057;
  border-bottom: none;
  color: #fff;
  margin-bottom: 10px;
}

.panel {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: none;
}
.panel .fa-chevron-down {
  display: none;
}
.panel .fa-chevron-up {
  display: inline-block;
}
.panel .collapsed .fa-chevron-up {
  display: none;
}
.panel .collapsed .fa-chevron-down {
  display: inline-block;
}

.panel.login {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel.registering {
  border-radius: 15px;
  padding: 30px;
  width: 700px;
  background-color: #003057;
  border-bottom: none;
  color: #fff;
  margin-bottom: 10px;
}

.panel-heading.registering h1 {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  color: #fff;
  font-size: 3em;
  text-transform: none;
}
.panel-heading.registering h2 {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  color: #fff;
  font-size: 3em;
  text-transform: none;
}

.panel-body.registering {
  padding: 0px 25px;
  margin-top: -20px;
}

.panel-body.login {
  padding: 0px 25px;
  min-height: 300px;
  background-color: white;
}

p {
  margin: 0 0 2px;
}

p.register {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  color: #fff;
  font-size: 1.4em;
  margin-top: 20px;
  margin-bottom: -3px;
}

input[type=button].submitLoginForm {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  border: 1px solid #d1d3d4 !important;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  line-height: 1rem;
  color: white;
}

.btn-register-passive {
  background-color: #d1d3d4;
  color: #414042;
}

a {
  color: #003057;
}
a:focus {
  outline: none;
}

input:focus {
  outline: none;
}

input[type=button].register.active {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  color: #d1d3d4;
  background: #414042;
  font-size: 19px;
  border: 1px solid #fff !important;
  padding: 5px;
  border-radius: 5px;
}

input[type=text] {
  margin-bottom: 20px;
}

input[type=password] {
  margin-bottom: 20px;
}

input[type=text].register {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  padding: 5px;
  color: #000;
  margin-bottom: 10px;
}

input[type=password].register {
  font-family: DIN_W01_Light, "Arial", sans-serif;
  padding: 5px;
  color: #000;
  margin-bottom: 10px;
  margin-bottom: 0px;
}

.alertArea .alert-danger {
  margin-top: 10px;
  font-family: DIN_W01_Light, "Arial", sans-serif;
  padding: 10px;
  background: #eed3d7;
  color: #b94a48;
}
.alertArea .alert-success {
  margin-top: 10px;
  font-family: DIN_W01_Light, "Arial", sans-serif;
  padding: 10px;
  color: #3c763d;
  background-color: #dff0d8;
}

.alertMsgContainer .alert-danger {
  margin-top: 10px;
  font-family: DIN_W01_Light, "Arial", sans-serif;
  padding: 10px;
  background: #eed3d7;
  color: #b94a48;
}
.alertMsgContainer .alert-success {
  margin-top: 10px;
  font-family: DIN_W01_Light, "Arial", sans-serif;
  padding: 10px;
  color: #3c763d;
  background-color: #dff0d8;
}

label.housingtypelabel {
  float: none;
  font-family: DIN_W01_Light, "Arial", sans-serif;
  font-size: 0.9em;
  margin-left: 3px;
  font-weight: normal;
}

.container#login .registering {
  /*color: #fff;*/
}
.container#login .registering > .panel {
  background: transparent;
}
.container#login .registering .btn-register {
  border-bottom-color: #212528;
}
.container#login .nav-pills > li > a {
  padding: 1.4rem 1rem;
}
.container#login .tab-content {
  padding: 20px 0 0;
}
.container#login #accordion small {
  color: #50585f;
}
.container#login .register > .panel {
  background: transparent;
}
.container#login .register .panel-heading {
  background: #818b94;
  border-bottom: none;
}
.container#login .register .panel-heading h2 {
  line-height: 1.5;
}
.container#login .register .btn-register {
  border-bottom-color: #212528;
}

.row-nogutter > div > .panel {
  background: #50585f;
  background: #50585f;
}
.row-nogutter .panel {
  margin-bottom: 0;
  border: none;
  margin-bottom: 0;
  border: none;
}

.panel-heading {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  text-transform: uppercase;
  border-radius: 0px;
  background-color: rgba(148, 183, 187, 0.12);
  color: #003057;
}
.panel-heading h1 {
  margin: 0;
  text-transform: uppercase;
}
.panel-heading h2 {
  margin: 0;
  text-transform: uppercase;
}

.panel-heading.login {
  text-transform: uppercase;
  color: #fff;
  border-color: #003057;
  background: #003057;
}

/*.btn-primary {
    color: #414042;
    background: #d1d3d4;

    &:focus {
        background-color: #909ca0;
        border-color: #d9d9d8;
        border-bottom-width: 0.075rem;
        margin-top: 0.075rem;
        outline: none;
    }

    &:hover {
        background-color: #707a7f;
        border-color: #d9d9d8;
    }

    &:active {
        color: white;
        background-color: #909ca0;
        border-color: #d9d9d8;
        border-bottom-width: 0.075rem;
        margin-top: 0.075rem;
        outline: none;

        &:hover {
            color: white;
            background-color: #9aa6aa;
            border-color: #d9d9d8;
            border-bottom-width: 0.075rem;
            margin-top: 0.075rem;
            outline: none;
        }

        &:focus {
            color: white;
            background-color: #9aa6aa;
            border-color: #d9d9d8;
            border-bottom-width: 0.075rem;
            margin-top: 0.075rem;
            outline: none;
        }
    }

    &:active.focus {
        color: white;
        background-color: #9aa6aa;
        border-color: #d9d9d8;
        border-bottom-width: 0.075rem;
        margin-top: 0.075rem;
        outline: none;
    }
}*/
img {
  max-width: 100%;
}

.navbar-text {
  margin: 27px 0px 20px 15px !important;
  font-size: 1.14rem;
  margin: 0;
  color: #fff;
}

.container-messages {
  background: white;
}
.container-messages .container {
  padding: 10px 25px;
}
.container-messages h2 {
  margin: 0;
  line-height: 30px;
  text-transform: uppercase;
}
.container-messages p {
  margin: 0;
  line-height: 30px;
}
.container-messages .col-message {
  text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.container-messages .col-message p {
  text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.container-modify {
  background: white;
}
.container-modify .container {
  padding: 10px 25px;
}
.container-modify h2 {
  margin: 0;
  line-height: 30px;
  text-transform: uppercase;
}
.container-modify h2 small {
  margin-left: 20px;
}

.container-tiles {
  background: #d6d6d6;
}
.container-tiles .container {
  padding: 10px 25px;
}
.container-tiles ul {
  list-style: none;
}
.container-tiles li {
  float: left;
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  background: #fff;
}

.container#main {
  padding-top: 40px;
}
.container#main > .row {
  margin-bottom: 20px;
}

.container#modify {
  padding-top: 40px;
}
.container#modify .modify-tile {
  height: 157px;
  width: 100%;
  position: relative;
  border: 1px dashed #50585f;
  margin-bottom: 20px;
  border-radius: 0.4rem;
}
.container#modify .modify-tile .panel {
  position: relative;
  height: 155px;
  overflow: hidden;
}
.container#modify .modify-tile .panel:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.container#modify .modify-tile .panel .close {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #50585f;
  font-size: 14px;
  z-index: 200;
  opacity: 0.8;
}
.container#modify .modify-tile .panel .close .fa {
  color: #f66078;
}
.container#modify .modify-tile .panel .close:hover {
  opacity: 1;
}
.container#modify .add-tile {
  height: 157px;
  width: 100%;
  position: relative;
  border: 1px dashed #50585f;
  margin-bottom: 20px;
  border-radius: 0.4rem;
}
.container#modify .add-tile .panel {
  height: 155px;
}

.bg-electricity {
  color: #fff;
  background-color: #00c5b4;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.bg-electricity:hover {
  background-color: #00a497;
}

.bg-heat {
  color: #fff;
  background-color: #f66076;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.bg-heat:hover {
  background-color: #9a1e31;
}

.bg-water {
  color: #fff;
  background-color: #07a6ff;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.bg-water:hover {
  background-color: #05759d;
}

.bg-brand {
  color: #fff;
  background-color: #0072b4;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.bg-brand:hover {
  background-color: #199de0;
}

.product-electricity .col-collapser {
  color: #fff;
  background-color: #00c5b4;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.product-electricity:hover {
  background: #fafafa;
}
.product-electricity:hover .col-collapser {
  background-color: #00ac9d;
}

.product-heat .col-collapser {
  color: #fff;
  background-color: #f66076;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.product-heat:hover {
  background: #fafafa;
}
.product-heat:hover .col-collapser {
  background-color: #f54861;
}

.product-water .col-collapser {
  color: #fff;
  background-color: #07a6ff;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.product-water:hover {
  background: #fafafa;
}
.product-water:hover .col-collapser {
  background-color: #0098ed;
}

.product-none .col-collapser .fa-circle-thinner {
  border-color: #50585f;
}

.grid-24 .col-xs-1 {
  position: relative;
  float: left;
  width: 4.16667%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-2 {
  position: relative;
  float: left;
  width: 8.33333%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-3 {
  position: relative;
  float: left;
  width: 12.5%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-4 {
  position: relative;
  float: left;
  width: 16.66667%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-5 {
  position: relative;
  float: left;
  width: 20.83333%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-6 {
  position: relative;
  float: left;
  width: 25%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-7 {
  position: relative;
  float: left;
  width: 29.16667%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-8 {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-9 {
  position: relative;
  float: left;
  width: 37.5%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-12 {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-18 {
  position: relative;
  float: left;
  width: 75%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-xs-24 {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-1 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-2 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-3 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-4 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-5 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-6 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-8 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-9 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-10 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-16 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-sm-18 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-1 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-2 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-3 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-4 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-5 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-6 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-7 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-10 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-md-24 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-lg-1 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-lg-2 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-lg-3 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-lg-4 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-lg-5 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.grid-24 .col-lg-6 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.btn {
  /*padding: 1rem 1.4rem;
  font-size: 1rem;
  line-height: 1rem;
  border-radius: 0.4rem;
  font-weight: 400;
  border: none;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease-in-out, ease-in-out;*/
  /*&:active {
      outline: 0;
      background-image: none;
      -webkit-box-shadow: none;
      box-shadow: none;
  }*/
}
.btn .fa {
  margin-right: 10px;
}
.btn .fa:only-child {
  margin-right: 0;
}
.btn + .btn {
  margin-left: 10px;
}

.btn.btn-link .fa {
  margin-right: 5px;
}

strong .fa {
  margin-right: 10px;
}

.fa .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #f66076;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  padding: 0;
}

.fa-circled {
  margin-right: 5px;
}
.fa-circled .fa-angle-right:before {
  padding-left: 3px;
}

.fa-circle-thinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-style: solid;
  border-color: #0072b4;
  border-width: 1px;
}

.fa-stack-1-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1.3em;
  font-size: 1.5em;
}

.col-collapser {
  padding: 25px 0;
}
.col-collapser .fa-circle-thinner {
  border-color: white;
}
.col-collapser .fa-stack {
  margin: 0;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.item.collapser {
  padding: 25px 0;
}
.item.collapser .fa-circle-thinner {
  border-color: white;
}
.item.collapser .fa-stack {
  margin: 0;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.col-collapser.collapsed .fa-stack {
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.item.collapser.collapsed .fa-stack {
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-je-user.fa-lg {
  vertical-align: top;
  margin-top: 0px;
  font-size: 30px;
}

.fa-je-email.fa-lg {
  font-size: 24px;
}

.fa-je-home.fa-lg {
  font-size: 28px;
}

.fa-product-electricity {
  color: #00c5b4;
}

.fa-product-heat {
  color: #f66076;
}

.fa-product-water {
  color: #07a6ff;
}

h1.pisara {
  text-transform: uppercase;
}

.row-heading {
  margin-bottom: 0;
}
.row-heading h1 {
  line-height: 42px;
  margin-bottom: 0;
  margin-top: 20px;
}
.row-heading h1 .dropdown {
  display: inline-block;
}

.row-listing h1 {
  text-transform: none;
}
.row-listing .panel {
  border-bottom: none;
  margin-bottom: 0;
}
.row-listing .divider hr {
  border-top-color: #f3f3f3;
  margin-bottom: 0;
}
.row-listing .item {
  position: relative;
  padding: 10px 10px 10px 10px;
  border-bottom: 1px solid #d6d6d6;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.row-listing .item:last-of-type {
  border-bottom-right-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}
.row-listing .item:last-of-type .col-collapser {
  border-radius: 0 0 0 0.4rem;
}
.row-listing .panel-body {
  padding: 0;
  position: relative;
  border-radius: 0 0 0.4rem 0.4rem;
}
.row-listing .panel-body .col-collapser {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 20px 0;
  width: 50px;
}
.row-listing .panel-heading {
  padding: 15px 10px 15px 70px;
}
.row-listing .panel-heading a {
  color: #50585f;
  font-weight: 700;
}
.row-listing .row.collapse > div {
  padding-top: 10px;
  padding-bottom: 20px;
}
.row-listing .row.collapsing > div {
  padding-top: 10px;
  padding-bottom: 20px;
}

a[data-target] {
  cursor: pointer;
}

p.loader {
  display: none;
  color: #50585f;
}
p.loader i {
  color: #50585f;
  margin-right: 5px;
}

.list-group.list-group-todo {
  border: none;
}
.list-group.list-group-todo .list-group-item {
  border: none;
  border-radius: 0;
  padding-left: 60px;
  position: relative;
  background: #f3f3f3;
  margin-bottom: 2px;
}
.list-group.list-group-todo .list-group-item a {
  font-weight: 600;
}
.list-group.list-group-todo .list-group-item p {
  font-size: 12px;
  margin-top: 10px;
}
.list-group.list-group-todo .list-group-item:before {
  position: absolute;
  top: 10px;
  left: 20px;
  content: "";
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 4px;
  border: 1px solid #999;
  font-size: 11px;
  background: #fff;
}
.list-group.list-group-todo .list-group-item.disabled {
  font-style: italic;
  color: #808080;
  background: #f3f3f3;
}
.list-group.list-group-todo .list-group-item.disabled:before {
  opacity: 0.5;
}
.list-group.list-group-todo .list-group-item.list-group-item-success {
  background: none;
  color: #bbb;
}
.list-group.list-group-todo .list-group-item.list-group-item-success:before {
  content: "";
  color: #0072b4;
}

.list-group .todo-collapser {
  cursor: pointer;
  color: #0072b4;
  font-weight: 600;
  overflow: hidden;
}
.list-group .todo-collapser .close-collapser {
  position: absolute;
  right: -30px;
  top: 13px;
  transition: all 0.2s ease-in-out;
}
.list-group .todo-collapser:hover {
  background: #fafafa;
}
.list-group .todo-collapser:hover span {
  color: #0092e7;
}
.list-group .todo-collapser p {
  color: #50585f;
  font-weight: 400;
}
.list-group .todo-collapser.collapsed:hover {
  cursor: default;
}
.list-group .todo-collapser.collapsed .close-collapser {
  top: 13px;
  right: 13px;
  cursor: pointer;
}
.list-group .todo-collapser.collapsed .close-collapser:hover {
  color: #005281;
}
.list-group .list-product-total {
  border-left: 10px solid #50585f !important;
}
.list-group .list-product-electricity {
  border-left: 10px solid #00c5b4 !important;
}
.list-group .list-product-electricity dt i {
  color: #00c5b4;
}
.list-group .list-product-heat {
  border-left: 10px solid #f66076 !important;
}
.list-group .list-product-heat dt i {
  color: #f66076;
}
.list-group .list-product-water {
  border-left: 10px solid #07a6ff !important;
}
.list-group .list-product-water dt i {
  color: #07a6ff;
}

.list-group.list-group-products dt strong {
  font-size: 20px;
  text-transform: uppercase;
  margin-left: 10px;
}
.list-group.list-group-products dt i {
  vertical-align: top;
}
.list-group.list-group-products dd i {
  color: #50585f;
}

.list-group.list-group-workflow {
  border: none;
  position: relative;
}
.list-group.list-group-workflow:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  background-image: linear-gradient(#9d9d9d 20%, rgba(255, 255, 255, 0) 0%);
  background-position: top right;
  background-size: 1px 3px;
  background-repeat: repeat-y;
  z-index: 1;
}
.list-group.list-group-workflow .list-group-item {
  border: none;
  border-radius: 0;
  position: relative;
  padding: 5px 15px 20px 40px;
  min-height: 30px;
}
.list-group.list-group-workflow .list-group-item:last-of-type {
  padding-bottom: 0;
}
.list-group.list-group-workflow .list-group-item:last-of-type p {
  margin-bottom: 0;
}
.list-group.list-group-workflow .list-group-item:last-of-type:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  background: #fff;
  bottom: 0;
  z-index: 1;
}
.list-group.list-group-workflow .list-group-item p {
  margin-top: 0;
  margin-bottom: 0;
}
.list-group.list-group-workflow .list-group-item strong {
  width: 100%;
  display: inline-block;
  color: #0072b4;
  font-weight: 400;
}
.list-group.list-group-workflow .list-group-item small {
  width: 100%;
  display: inline-block;
}
.list-group.list-group-workflow .list-group-item:hover {
  background: transparent;
}
.list-group.list-group-workflow .list-group-item:hover strong {
  color: #0092e7;
}
.list-group.list-group-workflow .list-group-item a {
  font-weight: 600;
}
.list-group.list-group-workflow .list-group-item .collapse p {
  font-size: 12px;
  padding: 10px 0 5px;
}
.list-group.list-group-workflow .list-group-item .collapsed p {
  font-size: 12px;
  padding: 10px 0 5px;
}
.list-group.list-group-workflow .list-group-item .collapsing p {
  font-size: 12px;
  padding: 10px 0 5px;
}
.list-group.list-group-workflow .list-group-item:before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid #0072b4;
  font-size: 11px;
  background: #fff;
  z-index: 10;
}
.list-group.list-group-workflow .list-group-item.todo-collapser .close-collapser {
  top: 5px;
}
.list-group.list-group-workflow .list-group-item.todo-collapser.collapsed .close-collapser {
  top: 5px;
}
.list-group.list-group-workflow .list-group-item.disabled {
  color: #999;
  background: transparent;
}
.list-group.list-group-workflow .list-group-item.disabled strong {
  color: #808080;
}
.list-group.list-group-workflow .list-group-item.disabled:before {
  background: white;
  content: "JE";
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  text-align: center;
  border: 1px solid #9d9d9d;
  z-index: 100;
}
.list-group.list-group-workflow .list-group-item.list-group-item-success {
  background: none;
  color: #d6d6d6;
}
.list-group.list-group-workflow .list-group-item.list-group-item-success strong {
  color: #bbb;
}
.list-group.list-group-workflow .list-group-item.list-group-item-success:before {
  background: #9d9d9d;
  border: 1px solid #9d9d9d;
}
.list-group.list-group-workflow .list-group-item.list-group-item-success:after {
  content: "";
  color: white;
  font-size: 20px;
  top: -2px;
  left: 6px;
  position: absolute;
  z-index: 100;
}

.ui-menu-item {
  list-style: none;
}
.ui-menu-item a {
  display: inline-block;
  width: 100%;
  padding: 5px;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
}
.ui-menu-item:nth-child(2n-1) a {
  background-color: #f3f3f3;
}

.navbar li .badge {
  position: absolute;
  top: 15px;
  right: 10px;
  margin: 0;
  font-size: 10px;
  padding: 5px 7px;
  pointer-events: none;
  background: #f66078;
  font-weight: 300;
}

.navbar-fixed-top {
  border-width: 0;
}

#nav-back {
  margin-top: -5px;
}

.je-nav {
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.je-nav .container {
  padding: 0;
  width: 1110px;
}
.je-nav .container > .navbar-nav {
  margin: 0;
}
.je-nav .container > .navbar-nav#menu {
  float: left;
}
.je-nav .container > .navbar-nav#menu span.back-home {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.je-nav ul.navbar-nav {
  font-size: 1.25rem;
}
.je-nav ul.navbar-nav h1 {
  margin-top: 24px;
  font-size: 1.4rem;
}
.je-nav ul.navbar-nav .dropdown-user .dropdown-toggle {
  max-height: 70px;
}
.je-nav ul.navbar-nav .dropdown-user .dropdown-header {
  font-size: inherit;
  padding: 10px 20px 10px 30px;
  color: #50585f;
  background: white;
}
.je-nav ul.navbar-nav .dropdown-user span {
  display: inline-block;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}
.je-nav ul.navbar-nav .dropdown-user span .fa {
  margin-left: 30px;
}
.je-nav ul.navbar-nav .dropdown-user span.user-email {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 0;
  padding: 0;
  line-height: 50px;
}
.je-nav ul.navbar-nav .dropdown-main {
  background-color: #1e82be;
  margin-right: 20px;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-toggle {
  text-transform: uppercase;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-toggle i {
  margin-right: 10px;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header {
  font-size: inherit;
  padding: 0;
  color: #50585f;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header span {
  display: inline-block;
  padding: 10px 20px 10px 30px;
  font-size: 1.14rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  background: white;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header span .fa {
  font-weight: 300;
  padding-top: 3px;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header span .fa-plus-square-o {
  display: none;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header span .fa-minus-square-o {
  display: block;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header span.collapsed {
  background: transparent;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header span.collapsed .fa-plus-square-o {
  display: block;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header span.collapsed .fa-minus-square-o {
  display: none;
}
.je-nav ul.navbar-nav .dropdown-main .dropdown-header .nav > li > a {
  font-size: 0.85rem;
  padding: 10px 20px 10px 60px;
  font-weight: 400;
  color: #0072b4;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu {
  background: #f3f3f3;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.15);
  border-style: solid;
  border-width: 0;
  border-bottom-width: 0.14rem;
  border-right-width: 0.14rem;
  padding: 10px 0;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li > a {
  padding: 10px 20px 10px 30px;
  font-size: 1.14rem;
  font-weight: 700;
}
.je-nav ul.navbar-nav .dropdown .dropdown-menu > li.active > a {
  background-color: #f7f7f7;
  color: #50585f;
}
.je-nav .dropdown-menu {
  font-size: 14px;
  padding: 0;
}
.je-nav .dropdown-menu > li > a {
  padding: 10px 15px;
}
.je-nav .dropdown-menu > li > a span {
  margin-right: 5px;
  color: #f3f3f3;
}
.je-nav .dropdown-menu .divider {
  margin: 0;
  height: 1px;
}
.je-nav .navbar-right .dropdown-menu {
  right: auto;
  left: 0;
}

.collapser .on {
  display: inline;
}
.collapser .off {
  display: none;
}

.collapsed .on {
  display: none;
}
.collapsed .off {
  display: inline;
}

.navbar-toggle {
  margin-top: 30px;
}
.navbar-toggle .icon-bar {
  width: 32px;
  height: 4px;
  border-radius: 1px;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 0px 20px;
  font-size: 1rem;
  line-height: 1.42857;
  color: #50585f;
  background-color: white;
  background-image: none;
  border: 1px solid #d6d6d6;
  border-radius: 0.4rem;
  -webkit-box-shadow: inset 2px 3px 2px 0px #f2f2f2;
  box-shadow: inset 2px 3px 2px 0px #f2f2f2;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.input-lg {
  height: 40px;
  padding: 0px 20px;
  font-size: 1.1rem;
  line-height: 1.33;
  border-radius: 0.4rem;
}

.input-group-lg > .form-control {
  height: 40px;
  padding: 0px 20px;
  font-size: 1.1rem;
  line-height: 1.33;
  border-radius: 0.4rem;
}
.input-group-lg > .input-group-addon {
  height: 40px;
  padding: 0px 20px;
  font-size: 1.1rem;
  line-height: 1.33;
  border-radius: 0.4rem;
}
.input-group-lg > .input-group-btn > .btn {
  height: 40px;
  padding: 0px 20px;
  font-size: 1.1rem;
  line-height: 1.33;
  border-radius: 0.4rem;
}

.input-group-addon-btn {
  padding: 0;
}

.input-group.has-datepicker {
  width: 100%;
}
.input-group.has-datepicker .fa {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1000;
  pointer-events: none;
  cursor: pointer;
}

label {
  font-weight: 700;
  min-height: 15px;
}

.checkbox.disabled label {
  cursor: not-allowed;
  color: #d6d6d6;
}

.radio.disabled label {
  cursor: not-allowed;
  color: #d6d6d6;
}

fieldset[disabled] .checkbox label {
  cursor: not-allowed;
  color: #d6d6d6;
}
fieldset[disabled] .radio label {
  cursor: not-allowed;
  color: #d6d6d6;
}
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: none;
  box-shadow: none;
}
fieldset[disabled] .btn-primary {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-primary:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-primary:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-primary:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-primary.focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-primary.active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-secondary {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-secondary:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-secondary:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-secondary:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-secondary.focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-secondary.active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-default {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
fieldset[disabled] .btn-default:hover {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
fieldset[disabled] .btn-default:focus {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
fieldset[disabled] .btn-default:active {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
fieldset[disabled] .btn-default.focus {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
fieldset[disabled] .btn-default.active {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
fieldset[disabled] .btn-register {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-register:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-register:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-register:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-register.focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
fieldset[disabled] .btn-register.active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.required .control-label:after {
  content: "*";
  color: #199de0;
}

.input-group[class*=col-] {
  float: none;
  padding-left: 15px;
  padding-right: 15px;
}

.input-group-addon:not(:first-child):not(:last-child) {
  border-radius: 0.4rem;
}
.input-group-addon:first-child {
  border-radius: 0.4rem;
}
.input-group-addon:last-child {
  border-radius: 0.4rem;
}

.input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0.4rem;
}
.input-group-btn:first-child > .btn {
  border-radius: 0.4rem;
}
.input-group-btn:first-child > .btn:not(:first-child) {
  border-radius: 0.4rem;
}
.input-group-btn:first-child > .btn-group > .btn {
  border-radius: 0.4rem;
}
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-radius: 0.4rem;
}
.input-group-btn:first-child > .dropdown-toggle {
  border-radius: 0.4rem;
}
.input-group-btn:last-child > .btn {
  border-radius: 0.4rem;
}
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-radius: 0.4rem;
}
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-radius: 0.4rem;
}
.input-group-btn:last-child > .btn-group > .btn {
  border-radius: 0.4rem;
}
.input-group-btn:last-child > .dropdown-toggle {
  border-radius: 0.4rem;
}

.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0.4rem;
}
.input-group .form-control:first-child {
  border-radius: 0.4rem;
}
.input-group .form-control:last-child {
  border-radius: 0.4rem;
}
.input-group .input-group-addon:first-child {
  background: #d6d6d6;
}

.help-block {
  background: #199de0;
  color: #fff;
  border-radius: 0.4rem;
  padding: 1.4rem;
  position: relative;
  margin-top: 10px;
  border-bottom: 0.15rem solid #d9d9d8;
}
.help-block:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  z-index: 1;
}

::-webkit-input-placeholder {
  font-style: italic;
  font-size: 1rem;
}

:-moz-placeholder {
  font-style: italic;
  font-size: 1rem;
}

::-moz-placeholder {
  font-style: italic;
  font-size: 1rem;
}

:-ms-input-placeholder {
  font-style: italic;
  font-size: 1rem;
}

select::-ms-expand {
  width: 12px;
  margin-right: 10px;
  border: none;
  background: transparent;
}

select.form-control {
  padding-right: 0;
}

.fileupload {
  margin-bottom: 9px;
}
.fileupload .row {
  margin-top: 5px;
}
.fileupload .uneditable-input {
  display: inline-block;
  margin-bottom: 0px;
  vertical-align: middle;
  cursor: text;
}
.fileupload .thumbnail {
  overflow: hidden;
  display: inline-block;
  margin-bottom: 5px;
  vertical-align: middle;
  text-align: center;
}
.fileupload .thumbnail > img {
  display: inline-block;
  vertical-align: middle;
  max-height: 100%;
}
.fileupload .btn {
  vertical-align: middle;
}
.fileupload .close {
  font-size: 12px;
  margin-top: 5px;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-file {
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  text-align: left !important;
}
.btn-file > input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translate(-300px, 0) scale(4);
  font-size: 23px;
  direction: ltr;
  cursor: pointer;
}

.fileupload-exists .fileupload-new {
  display: none;
}
.fileupload-exists small {
  font-size: 0.8rem;
}

.fileupload-new .fileupload-exists {
  display: none;
}
.fileupload-new .input-append .btn-file {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

.fileupload-inline .fileupload-controls {
  display: inline;
}

.thumbnail-borderless .thumbnail {
  border: none;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.fileupload-new.thumbnail-borderless .thumbnail {
  border: 1px solid #ddd;
}

.control-group.warning .fileupload .uneditable-input {
  color: #a47e3c;
  border-color: #a47e3c;
}
.control-group.warning .fileupload .fileupload-preview {
  color: #a47e3c;
}
.control-group.warning .fileupload .thumbnail {
  border-color: #a47e3c;
}

.control-group.error .fileupload .uneditable-input {
  color: #b94a48;
  border-color: #b94a48;
}
.control-group.error .fileupload .fileupload-preview {
  color: #b94a48;
}
.control-group.error .fileupload .thumbnail {
  border-color: #b94a48;
}

.control-group.success .fileupload .uneditable-input {
  color: #468847;
  border-color: #468847;
}
.control-group.success .fileupload .fileupload-preview {
  color: #468847;
}
.control-group.success .fileupload .thumbnail {
  border-color: #468847;
}

.table {
  table-layout: auto;
  font-size: 14px;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.table > tbody > tr > td {
  border-top: none;
  white-space: nowrap;
  vertical-align: middle;
}

.table.table-lg {
  font-size: 18px;
}

.table.table-lined tr {
  border-bottom: 1px solid #d6d6d6;
}
.table.table-lined tr:last-of-type {
  border: none;
}

.tab-content .table {
  margin: 0;
}

.panel-body.panel-table {
  padding: 0;
}
.panel-body.panel-table p {
  margin: 0;
}
.panel-body.panel-table .table tr {
  border-bottom: 1px solid #f3f3f3;
}
.panel-body.panel-table td {
  padding: 5px 15px;
}
.panel-body.panel-table td.text-right {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 25px;
  white-space: nowrap;
  display: inline-block;
  float: right;
}
.panel-body.panel-table td.text-right small {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  float: right;
}
.panel-body.panel-table .cell-electricity {
  background: #00c5b4;
  padding: 0 4px;
}
.panel-body.panel-table .cell-heating {
  background: #f66076;
  padding: 0 4px;
}
.panel-body.panel-table .cell-water {
  background: #07a6ff;
  padding: 0 4px;
}
.panel-body.panel-table small {
  color: #9ca5ac;
}

.well {
  padding: 20px 25px 15px;
  border: none;
  border-bottom: 1px solid #d6d6d6;
  border-radius: 0.4rem;
  box-shadow: none;
}

#new-permission .panel {
  margin-bottom: 0;
  border: none;
}

.panel-body:before {
  content: " ";
  display: table;
}
.panel-body:after {
  content: " ";
  display: table;
  clear: both;
}

.panel-footer {
  padding: 15px 25px;
  background-color: #f3f3f3;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}

.panel.panel-info .panel-heading {
  padding: 10px 15px;
  border-radius: 0.4rem;
}
.panel.panel-info .panel-body {
  padding: 0;
}

.panel.panel-default .panel-body {
  padding-bottom: 0;
}
.panel.panel-default .panel-body img {
  height: 90%;
}
.panel.panel-default .panel-footer {
  background: transparent;
  border: none;
  text-align: center;
}
.panel.panel-default .badge {
  margin-top: -5px;
  margin-right: 0;
}

.responsive .panel-title {
  position: relative;
}
.responsive .panel-title .badge {
  border: 1px solid #50585f;
  color: #50585f;
  line-height: inherit;
  border-radius: 50%;
  position: absolute;
  margin-left: 10px;
  top: calc(50% - 5px);
}

.row-search {
  line-height: 30px;
  margin-bottom: 0 !important;
}
.row-search > div {
  padding-bottom: 30px !important;
}

.row-listing.row-listing-orders a {
  color: #50585f;
}
.row-listing.row-listing-orders .col-collapser {
  padding: 25px 0;
  background: transparent;
}
.row-listing.row-listing-orders .col-collapser .fa-circle-thinner {
  border-color: #50585f;
}
.row-listing.row-listing-orders p {
  margin-bottom: 0;
}

.row-listing.row-listing-messages .col-collapser {
  padding: 25px 0;
  background: transparent;
  color: #50585f;
}
.row-listing.row-listing-messages .col-collapser .fa-circle-thinner {
  border-color: #50585f;
}
.row-listing.row-listing-messages .item {
  cursor: pointer;
  background: #f3f3f3;
}
.row-listing.row-listing-messages .item:hover {
  background: white;
}
.row-listing.row-listing-messages .item.collapsed {
  cursor: default;
  background: white;
}
.row-listing.row-listing-messages .item.collapsed .fa-angle-right {
  color: white;
}
.row-listing.row-listing-messages .item.collapsed .fa-circle-thinner {
  border-color: white;
}
.row-listing.row-listing-messages .item.collapsed .col-collapser {
  background: #50585f;
}
.row-listing.row-listing-messages .item.item-new {
  background: #0072b4;
  color: #fff;
}
.row-listing.row-listing-messages .item.item-new .fa-angle-right {
  color: white;
}
.row-listing.row-listing-messages .item.item-new .fa-circle-thinner {
  border-color: white;
}
.row-listing.row-listing-messages .item.item-new .col-collapser {
  background: #50585f;
}
.row-listing.row-listing-messages .item.item-new.product-heat .col-collapser {
  background-color: #f66076;
}
.row-listing.row-listing-messages .item.collapsed.product-heat .col-collapser {
  background-color: #f66076;
}
.row-listing.row-listing-messages .item.item-new.product-water .col-collapser {
  background-color: #07a6ff;
}
.row-listing.row-listing-messages .item.collapsed.product-water .col-collapser {
  background-color: #07a6ff;
}
.row-listing.row-listing-messages .item.item-new.product-electricity .col-collapser {
  background-color: #00c5b4;
}
.row-listing.row-listing-messages .item.collapsed.product-electricity .col-collapser {
  background-color: #00c5b4;
}
.row-listing.row-listing-messages .panel-heading {
  padding: 15px 20px;
}

.panel.ajax-load {
  position: relative;
  overflow: hidden;
}

.loader-tile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0.4rem;
  z-index: 1000;
}
.loader-tile p {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 1.14rem;
}

.panel-heading-sorting .row div {
  white-space: nowrap;
}
.panel-heading-sorting .row div:hover .fa {
  display: inline-block;
  opacity: 0.6;
}
.panel-heading-sorting .sorting {
  margin-left: 10px;
  display: inline-block;
}
.panel-heading-sorting .fa {
  display: none;
}
.panel-heading-sorting .active.sort-asc .fa {
  display: inline-block;
}
.panel-heading-sorting .active.sort-desc .fa {
  display: inline-block;
}
.panel-heading-sorting .active.sort-desc .fa-caret-up {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.panel-nobox {
  border-bottom: 0;
  margin-bottom: 0;
}
.panel-nobox .panel-body {
  padding: 0;
}
.panel-nobox:hover {
  background: transparent;
}
.panel-nobox .product-status {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 50px;
}
.panel-nobox .product-status i {
  font-size: 18px;
}
.panel-nobox .product-status .fa-je-check {
  color: #0072b4;
  left: 5px;
}
.panel-nobox .product-status .fa-je-check:before {
  position: absolute;
  left: -5px;
  padding: 0 0 0 4px;
  border: 2px solid #0072b4;
  width: 28px;
  height: 28px;
  border-radius: 15px;
}
.panel-nobox .product-status .badge {
  float: right;
  background: transparent;
  color: #50585f;
}
.panel-nobox .panel-heading {
  background: transparent;
  position: relative;
  border: 0;
  padding: 0 0 10px;
}
.panel-nobox .panel-heading .fa {
  position: absolute;
  left: 10px;
  top: 0;
}
.panel-nobox .panel-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  padding-left: 60px;
  line-height: 40px;
}

.panel-nobox.product-electricity .panel-title .fa {
  color: #00c5b4;
  font-size: 40px;
  left: 10px;
}

.panel-nobox.product-heat .panel-title .fa {
  color: #f66076;
  font-size: 36px;
  left: 5px;
}

.panel-nobox.product-water .panel-title .fa {
  color: #07a6ff;
  font-size: 42px;
  left: 15px;
}

.panel.panel-bordered {
  border: 1px solid #d6d6d6;
}
.panel.panel-bordered .panel-title {
  text-transform: uppercase;
  font-size: 20px;
}

.btn.btn-block + .btn {
  margin-left: 0;
}

.btn.disabled {
  cursor: not-allowed;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*.btn.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    line-height: 1rem;
    border-radius: 0.4rem;
}*/
.btn-block {
  text-align: left;
}

.btn-block.btn-primary {
  text-align: center;
}

.btn-block.btn-secondary {
  text-align: center;
}

.btn-block.btn-default {
  text-align: center;
}

.btn-primary.focus {
  background-color: #909ca0;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-primary.active {
  color: white;
  background-color: #909ca0;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-primary.active:hover {
  color: white;
  background-color: #9aa6aa;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-primary.active:focus {
  color: white;
  background-color: #9aa6aa;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.open > .btn-primary.dropdown-toggle {
  color: white;
  background-color: #909ca0;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-primary.dropdown-toggle:hover {
  color: white;
  background-color: #9aa6aa;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-primary.dropdown-toggle:focus {
  color: white;
  background-color: #9aa6aa;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-primary.dropdown-toggle.focus {
  color: white;
  background-color: #9aa6aa;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-secondary.dropdown-toggle {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
  color: #50585f;
}
.open > .btn-secondary.dropdown-toggle:hover {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-secondary.dropdown-toggle:focus {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-secondary.dropdown-toggle.focus {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-default.dropdown-toggle {
  color: #50585f;
  background-color: #f3f3f3;
  border-color: #50585f;
  outline: none;
  color: #50585f;
}
.open > .btn-default.dropdown-toggle:hover {
  color: #50585f;
  background-color: white;
  border-color: #d6d6d6;
  outline: none;
}
.open > .btn-default.dropdown-toggle:focus {
  color: #50585f;
  background-color: white;
  border-color: #d6d6d6;
  outline: none;
}
.open > .btn-default.dropdown-toggle.focus {
  color: #50585f;
  background-color: white;
  border-color: #d6d6d6;
  outline: none;
}
.open > .btn-register.dropdown-toggle {
  color: white;
  background-color: #59bbec;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-register.dropdown-toggle:hover {
  color: white;
  background-color: #87cef2;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-register.dropdown-toggle:focus {
  color: white;
  background-color: #87cef2;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.open > .btn-register.dropdown-toggle.focus {
  color: white;
  background-color: #87cef2;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-primary.active.focus {
  color: white;
  background-color: #9aa6aa;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-primary.disabled {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-primary.disabled:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-primary.disabled:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-primary.disabled:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-primary.disabled.focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-primary.disabled.active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-primary[disabled] {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-primary[disabled]:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-primary[disabled]:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-primary[disabled]:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-primary[disabled].focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-primary[disabled].active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-secondary {
  background: #f3f3f3;
  color: #50585f;
  border-bottom-color: #d9d9d8;
  border-bottom-width: 0.15rem;
  margin-top: 0;
}
.btn-secondary:focus {
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
  color: #50585f;
}
.btn-secondary:hover {
  background-color: #f6f6f6;
  border-color: #d9d9d8;
  color: #50585f;
}
.btn-secondary:active {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
  color: #50585f;
}
.btn-secondary:active:hover {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-secondary:active:focus {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-secondary:active.focus {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-secondary.focus {
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
  color: #50585f;
}

.btn-secondary.active {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
  color: #50585f;
}
.btn-secondary.active:hover {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-secondary.active:focus {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-secondary.active.focus {
  color: #50585f;
  background-color: #f8f8f8;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-secondary.disabled {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-secondary.disabled:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-secondary.disabled:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-secondary.disabled:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-secondary.disabled.focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-secondary.disabled.active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-secondary[disabled] {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-secondary[disabled]:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-secondary[disabled]:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-secondary[disabled]:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-secondary[disabled].focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-secondary[disabled].active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

/*.btn-default {
    padding: 1rem 1.4rem;
    font-size: 1rem;
    line-height: 1rem;
    border-radius: 0.4rem;
    background: transparent;
    color: #50585f;
    border-style: solid;
    border-width: 0.0714rem;
    border-color: #50585f;

    &:focus {
        background-color: #f3f3f3;
        border-color: #d6d6d6;
        outline: none;
        color: #50585f;
    }

    &:hover {
        background-color: #f3f3f3;
        border-color: #d6d6d6;
        color: #50585f;
    }

    &:active {
        color: #50585f;
        background-color: #f3f3f3;
        border-color: #50585f;
        outline: none;
        color: #50585f;

        &:hover {
            color: #50585f;
            background-color: white;
            border-color: #d6d6d6;
            outline: none;
        }

        &:focus {
            color: #50585f;
            background-color: white;
            border-color: #d6d6d6;
            outline: none;
        }
    }

    &:active.focus {
        color: #50585f;
        background-color: white;
        border-color: #d6d6d6;
        outline: none;
    }
}*/
.btn-default.focus {
  background-color: #f3f3f3;
  border-color: #d6d6d6;
  outline: none;
  color: #50585f;
}

.btn-default.active {
  color: #50585f;
  background-color: #f3f3f3;
  border-color: #50585f;
  outline: none;
  color: #50585f;
}
.btn-default.active:hover {
  color: #50585f;
  background-color: white;
  border-color: #d6d6d6;
  outline: none;
}
.btn-default.active:focus {
  color: #50585f;
  background-color: white;
  border-color: #d6d6d6;
  outline: none;
}

.btn-default.active.focus {
  color: #50585f;
  background-color: white;
  border-color: #d6d6d6;
  outline: none;
}

.btn-default.disabled {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
.btn-default.disabled:hover {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
.btn-default.disabled:focus {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
.btn-default.disabled:active {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}

.btn-default.disabled.focus {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}

.btn-default.disabled.active {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}

.btn-default[disabled] {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
.btn-default[disabled]:hover {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
.btn-default[disabled]:focus {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}
.btn-default[disabled]:active {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}

.btn-default[disabled].focus {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}

.btn-default[disabled].active {
  background: #f8f8f8;
  color: #d6d6d6;
  border: white;
}

.btn-default-invert {
  color: white;
  border-color: #d6d6d6;
}

/*.btn-register {
    background-color: #199de0;
    color: white;
    border-bottom-color: #d9d9d8;
    border-bottom-width: 0.15rem;
    margin-top: 0;

    &:focus {
        background-color: #87cef2;
        border-color: #d9d9d8;
        border-bottom-width: 0.075rem;
        margin-top: 0.075rem;
        outline: none;
    }

    &:hover {
        background-color: #42b1ea;
        border-color: #d9d9d8;
    }

    &:active {
        color: white;
        background-color: #59bbec;
        border-color: #d9d9d8;
        border-bottom-width: 0.075rem;
        margin-top: 0.075rem;
        outline: none;

        &:hover {
            color: white;
            background-color: #87cef2;
            border-color: #d9d9d8;
            border-bottom-width: 0.075rem;
            margin-top: 0.075rem;
            outline: none;
        }

        &:focus {
            color: white;
            background-color: #87cef2;
            border-color: #d9d9d8;
            border-bottom-width: 0.075rem;
            margin-top: 0.075rem;
            outline: none;
        }
    }

    &:active.focus {
        color: white;
        background-color: #87cef2;
        border-color: #d9d9d8;
        border-bottom-width: 0.075rem;
        margin-top: 0.075rem;
        outline: none;
    }
}*/
.btn-register.focus {
  background-color: #87cef2;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-register.active {
  color: white;
  background-color: #59bbec;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-register.active:hover {
  color: white;
  background-color: #87cef2;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}
.btn-register.active:focus {
  color: white;
  background-color: #87cef2;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-register.active.focus {
  color: white;
  background-color: #87cef2;
  border-color: #d9d9d8;
  border-bottom-width: 0.075rem;
  margin-top: 0.075rem;
  outline: none;
}

.btn-register.disabled {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-register.disabled:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-register.disabled:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-register.disabled:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-register.disabled.focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-register.disabled.active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-register[disabled] {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-register[disabled]:hover {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-register[disabled]:focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}
.btn-register[disabled]:active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-register[disabled].focus {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-register[disabled].active {
  background: #f3f3f3;
  color: #d6d6d6;
  border: none;
}

.btn-link {
  padding: 0.4rem 0rem;
  font-size: 0.9rem;
  line-height: 1rem;
  border-radius: 0.4rem;
}

.btn.btn-collapser-collapser {
  margin-bottom: 10px;
}

.btn.btn-collapser .fa-chevron-down {
  display: none;
}
.btn.btn-collapser .fa-plus-circle {
  display: none;
}
.btn.btn-collapser .fa-chevron-up {
  display: inline-block;
}

.btn.btn-collapser.collapsed .fa-chevron-up {
  display: none;
}
.btn.btn-collapser.collapsed .fa-chevron-down {
  display: inline-block;
}
.btn.btn-collapser.collapsed .fa-plus-circle {
  display: inline-block;
}

.nav-pills {
  background: #f3f3f3;
  display: inline-block;
  border-radius: 0.4rem;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.nav-pills > li > a {
  border-radius: 0.4rem;
  background-color: #f3f3f3;
  color: #50585f;
  padding: 1.4rem 1.4rem;
}
.nav-pills > li > div {
  border-radius: 0.4rem;
  background-color: #f3f3f3;
  color: #50585f;
  padding: 1.4rem 1.4rem;
}
.nav-pills > li + li {
  margin-left: 0px;
}
.nav-pills > li.active > a {
  color: #fff;
  background-color: #0072b4;
}
.nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #0072b4;
}
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #0072b4;
}
.nav-pills > li.active > div {
  color: #fff;
  background-color: #0072b4;
}
.nav-pills > li.active > div:hover {
  color: #fff;
  background-color: #0072b4;
}
.nav-pills > li.active > div:focus {
  color: #fff;
  background-color: #0072b4;
}

.nav-pills.nav-pills-sm {
  display: block;
  background: transparent;
}
.nav-pills.nav-pills-sm a {
  padding: 5px;
  border-radius: 0.4rem !important;
  background: white;
  margin: 10px 10px 15px 0;
  white-space: nowrap;
}
.nav-pills.nav-pills-sm li.active > a {
  padding: 5px 5px 20px 5px;
  color: #50585f;
  background: white;
  margin: 10px 10px 0 0;
  border-radius: 0.4rem 0.4rem 0 0 !important;
}
.nav-pills.nav-pills-sm li.active > a:hover {
  padding: 5px 5px 20px 5px;
  color: #50585f;
  background: white;
  margin: 10px 10px 0 0;
  border-radius: 0.4rem 0.4rem 0 0 !important;
}
.nav-pills.nav-pills-sm li.active > a:focus {
  padding: 5px 5px 20px 5px;
  color: #50585f;
  background: white;
  margin: 10px 10px 0 0;
  border-radius: 0.4rem 0.4rem 0 0 !important;
}

#register .nav-pills {
  background: transparent;
  width: 100%;
  margin: 10px 0 15px;
}
#register .nav-pills > li {
  padding: 0 !important;
  text-align: center;
  margin: 0;
}
#register .nav-pills > li a {
  padding: 0 1.4rem;
  height: 60px;
  line-height: 60px;
  cursor: default;
}
#register .nav-pills > li a:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 19px solid white;
  position: absolute;
  top: 50%;
  margin-top: -36px;
  margin-left: -3px;
  left: 100%;
  z-index: -1;
}
#register .nav-pills > li a span.number {
  display: none;
  padding: 0 3px 0 0;
}
#register .nav-pills > li div {
  padding: 0 1.4rem;
  height: 60px;
  line-height: 60px;
  cursor: default;
}
#register .nav-pills > li div:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 19px solid white;
  position: absolute;
  top: 50%;
  margin-top: -36px;
  margin-left: -3px;
  left: 100%;
  z-index: -1;
}
#register .nav-pills > li div span.number {
  display: none;
  padding: 0 3px 0 0;
}
#register .nav-pills > li.pill-first {
  z-index: 30;
}
#register .nav-pills > li.pill-middle {
  z-index: 20;
  margin-left: -7px;
}
#register .nav-pills > li.pill-middle .number {
  padding: 0 0 0 20px;
  white-space: nowrap;
}
#register .nav-pills > li.pill-middle .text {
  padding: 0 0 0 20px;
  white-space: nowrap;
}
#register .nav-pills > li.pill-middle + .pill-middle {
  z-index: 15;
}
#register .nav-pills > li.pill-middle a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #f3f3f3;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.pill-middle div:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #f3f3f3;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.pill-last {
  z-index: 10;
  margin-left: -7px;
}
#register .nav-pills > li.success a {
  background-color: #0072b4;
  color: white;
}
#register .nav-pills > li.success a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #0072b4;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.success div {
  background-color: #0072b4;
  color: white;
}
#register .nav-pills > li.success div:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #0072b4;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.active a {
  background: #199de0;
}
#register .nav-pills > li.active a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #199de0;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.active a span.text {
  display: inline;
}
#register .nav-pills > li.active div {
  background: #199de0;
}
#register .nav-pills > li.active div:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 15px solid #199de0;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  margin-left: -1px;
  left: 100%;
  z-index: 1;
}
#register .nav-pills > li.active div span.text {
  display: inline;
}
#register .nav-pills > li.active.pill-last a:after {
  display: none;
}
#register .nav-pills > li.active.pill-last div:after {
  display: none;
}

.nav-tabs {
  border-bottom: none;
  font-size: 1rem;
  text-transform: uppercase;
}
.nav-tabs .badge {
  border: 1px solid #50585f;
  color: #50585f;
  line-height: inherit;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: calc(50% - 11.5px);
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin: 5px 3px 3px 0;
  line-height: 1.42857;
  border: none;
  padding: 20px 20px;
  border-radius: 0.4rem 0.4rem 0 0;
  background: #f3f3f3;
  color: #50585f;
}
.nav-tabs > li > a:hover {
  border-color: #0072b4 #0072b4 #f3f3f3;
}
.nav-tabs > li.has-badge > a {
  padding-right: 50px;
}
.nav-tabs > li.active > a {
  color: #50585f;
  background-color: white;
  border: none;
  margin: 0 3px 0 0;
  border-top: 5px solid #fff;
  border-bottom: 3px solid #fff;
  cursor: default;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}
.nav-tabs > li.active > a:hover {
  color: #50585f;
  background-color: white;
  border: none;
  margin: 0 3px 0 0;
  border-top: 5px solid #fff;
  border-bottom: 3px solid #fff;
  cursor: default;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}
.nav-tabs > li.active > a:focus {
  color: #50585f;
  background-color: white;
  border: none;
  margin: 0 3px 0 0;
  border-top: 5px solid #fff;
  border-bottom: 3px solid #fff;
  cursor: default;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}

.tab-content.permission-tabs .tab-pane {
  background: white;
  border-radius: 0 0.4rem 0.4rem 0.4rem;
}
.tab-content.permission-tabs .alert {
  padding: 15px 25px 15px 65px;
  border-width: 0px;
  background: white;
  position: relative;
}
.tab-content.permission-tabs .alert .close {
  opacity: 0.7;
  color: #50585f;
  text-shadow: 0 1px 0 #00314e;
}
.tab-content.permission-tabs .alert .fa {
  position: absolute;
  top: 15px;
  left: 20px;
}

.panel-group.responsive .tab-pane {
  background: white;
  border-radius: 0 0.4rem 0.4rem 0.4rem;
}
.panel-group.responsive .alert {
  padding: 15px 25px 15px 65px;
  border-width: 0px;
  background: white;
  position: relative;
}
.panel-group.responsive .alert .close {
  opacity: 0.7;
  color: #50585f;
  text-shadow: 0 1px 0 #00314e;
}
.panel-group.responsive .alert .fa {
  position: absolute;
  top: 15px;
  left: 20px;
}
.panel-group.responsive .panel-body {
  padding: 0;
}
.panel-group.responsive .panel-body .row-listing.row-listing-permissions .item {
  margin-bottom: 0;
}

.tab-content.lisa-tabs .tab-pane {
  background: white;
  border-radius: 0 0.4rem 0.4rem 0.4rem;
}
.tab-content.lisa-tabs .alert {
  padding: 15px 25px 15px 65px;
  border-width: 0px;
  background: white;
  position: relative;
}
.tab-content.lisa-tabs .alert .close {
  opacity: 0.7;
  color: #50585f;
  text-shadow: 0 1px 0 #00314e;
}
.tab-content.lisa-tabs .alert .fa {
  position: absolute;
  top: 15px;
  left: 20px;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 0.4rem;
}
.pagination > li {
  display: inline;
}
.pagination > li > a {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857;
  text-decoration: none;
  color: #50585f;
  background-color: transparent;
  border: 1px solid #50585f;
  margin-left: 10px;
  border-radius: 50%;
}
.pagination > li > a:hover {
  z-index: 3;
  color: #004268;
  background-color: #f7f7f7;
  border-color: #ddd;
}
.pagination > li > a:focus {
  z-index: 3;
  color: #004268;
  background-color: #f7f7f7;
  border-color: #ddd;
}
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857;
  text-decoration: none;
  color: #50585f;
  background-color: transparent;
  border: 1px solid #50585f;
  margin-left: 10px;
  border-radius: 50%;
}
.pagination > li > span:hover {
  z-index: 3;
  color: #004268;
  background-color: #f7f7f7;
  border-color: #ddd;
}
.pagination > li > span:focus {
  z-index: 3;
  color: #004268;
  background-color: #f7f7f7;
  border-color: #ddd;
}
.pagination > li:first-child > a {
  margin-left: 0;
  border-radius: 50%;
}
.pagination > li:first-child > span {
  margin-left: 0;
  border-radius: 50%;
}
.pagination > li:last-child > a {
  border-radius: 50%;
}
.pagination > li:last-child > span {
  border-radius: 50%;
}
.pagination > li.next > a {
  border: none;
  text-transform: uppercase;
}
.pagination > li.next > a:hover {
  background-color: transparent;
  color: #31353a;
}
.pagination > li.next > a i {
  line-height: 21px;
}
.pagination > li.prev > a {
  border: none;
  text-transform: uppercase;
}
.pagination > li.prev > a:hover {
  background-color: transparent;
  color: #31353a;
}
.pagination > li.prev > a i {
  line-height: 21px;
}
.pagination > .active > a {
  z-index: 2;
  color: white;
  background-color: #50585f;
  border-color: #50585f;
  cursor: default;
}
.pagination > .active > a:hover {
  z-index: 2;
  color: white;
  background-color: #50585f;
  border-color: #50585f;
  cursor: default;
}
.pagination > .active > a:focus {
  z-index: 2;
  color: white;
  background-color: #50585f;
  border-color: #50585f;
  cursor: default;
}
.pagination > .active > span {
  z-index: 2;
  color: white;
  background-color: #50585f;
  border-color: #50585f;
  cursor: default;
}
.pagination > .active > span:hover {
  z-index: 2;
  color: white;
  background-color: #50585f;
  border-color: #50585f;
  cursor: default;
}
.pagination > .active > span:focus {
  z-index: 2;
  color: white;
  background-color: #50585f;
  border-color: #50585f;
  cursor: default;
}
.pagination > .disabled > span {
  color: #f3f3f3;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > span:hover {
  color: #f3f3f3;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > span:focus {
  color: #f3f3f3;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > a {
  color: #f3f3f3;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > a:hover {
  color: #f3f3f3;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > a:focus {
  color: #f3f3f3;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.progress {
  margin-bottom: 2px;
  height: 18px;
  box-shadow: none;
}

.progress.product-electricity .progress-bar {
  background-color: #00c5b4;
}

.progress.product-heat .progress-bar {
  background-color: #f66076;
}

.progress.product-water .progress-bar {
  background-color: #07a6ff;
}

.sg-color {
  width: 150px;
  height: 150px;
  display: inline-block;
  margin: 0 10px 10px 0;
  line-height: 150px;
  text-align: center;
}

.sg-color--white {
  background: white;
}

.sg-color--lightgray {
  background: #f3f3f3;
}

.sg-color--gray {
  background: #d6d6d6;
}

.sg-color--lightblue {
  background: #199de0;
  color: #fff;
}

.sg-color--blue {
  background: #0072b4;
  color: #fff;
}

.sg-color--darkgray {
  background: #50585f;
  color: #fff;
}

body.kirjaudu {
  background: url("images/coffeebg.jpg") no-repeat center;
  background-size: cover;
}

.banks > div {
  margin-bottom: 10px;
  text-align: center;
}
.banks > div img {
  max-height: 30px;
  width: auto;
}

a.login {
  color: #fff;
  padding: 1rem 1.4rem;
  font-size: 1rem;
  line-height: 1rem;
  border-radius: 0.4rem;
  margin: 10px 0 0;
}
a.login .fa {
  margin-right: 10px;
}

a.login.fb-login {
  background: #3b5998;
}

a.login.gplus-login {
  background: #dd4b39;
}

body.rekisteroidy {
  background: url("images/coffeebg.jpg") no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
}

.container#register {
  padding-top: 50px;
}

.bubble {
  padding: 30px 20px;
  background: #f3f3f3;
  border-radius: 20px;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.bubble h2 {
  margin: 0;
}
.bubble:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #f3f3f3;
  position: absolute;
  right: -20px;
  top: calc(50% - 15px);
}

.panel-consumption .panel-heading {
  position: relative;
}
.panel-consumption .panel-heading h2 {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 50px;
}
.panel-consumption .panel-heading input[type=search] {
  padding: 24px 24px 23px 24px;
  margin: -15px 50px -15px -25px;
  border-radius: 0.4rem 0.4rem 0 0;
  display: none;
}
.panel-consumption .panel-heading .fa {
  margin: 0;
}
.panel-consumption .panel-heading .fa-angle-up {
  display: none;
}
.panel-consumption .panel-heading.open h2 {
  display: none;
}
.panel-consumption .panel-heading.open input {
  display: inline-block;
}
.panel-consumption .panel-heading.open .fa-angle-up {
  display: inline-block;
}
.panel-consumption .panel-heading.open .fa-angle-down {
  display: none;
}
.panel-consumption .dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0%;
  bottom: 0;
  border-radius: none;
  border: none;
  border-radius: 0 0.4rem 0 0;
}
.panel-consumption .scrollable-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-bottom: 37px;
  z-index: 100;
  background: #f3f3f3;
  border-radius: 0 0 0.4rem 0.4rem;
  border-right: 0.14rem solid rgba(0, 0, 0, 0.15);
  border-bottom: 0.14rem solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.panel-consumption .scrollable-menu .dropdown-menu {
  position: static;
  right: 0;
  background-color: #f3f3f3;
  height: auto;
  width: 100%;
  max-height: 260px;
  min-height: 167px;
  overflow-x: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
.panel-consumption .scrollable-menu .fa-plus-circle {
  display: inline-block;
}
.panel-consumption .scrollable-menu .add-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0;
}
.panel-consumption .scrollable-menu .add-new a {
  padding: 10px 25px 10px 10px;
  text-align: left;
  color: #50585f;
}
.panel-consumption .scrollable-menu li {
  padding: 10px 25px 10px 35px;
  cursor: pointer;
}
.panel-consumption .scrollable-menu li.active {
  font-weight: 700;
  position: relative;
}
.panel-consumption .scrollable-menu li.active:before {
  content: "";
  position: absolute;
  color: #0072b4;
  top: 10px;
  left: 10px;
}
.panel-consumption .scrollable-menu li.product-electricity {
  border-left: 10px solid #00c5b4;
}
.panel-consumption .scrollable-menu li.product-electricity:hover {
  border-left-color: #00a497;
}
.panel-consumption .scrollable-menu li.product-heat {
  border-left: 10px solid #f66076;
}
.panel-consumption .scrollable-menu li.product-heat:hover {
  border-left-color: #9a1e31;
}
.panel-consumption .scrollable-menu li.product-water {
  border-left: 10px solid #07a6ff;
}
.panel-consumption .scrollable-menu li.product-water:hover {
  border-left-color: #05759d;
}
.panel-consumption .open .scrollable-menu {
  display: block;
}
.panel-consumption .open .dropdown-menu {
  display: block;
}
.panel-consumption .panel-body .text-right {
  white-space: nowrap;
}
.panel-consumption .panel-body strong {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}
.panel-consumption .panel-body .fa-arrow-up {
  color: #0072b4;
  font-size: 14px;
}
.panel-consumption .panel-body .fa-arrow-down {
  color: #199de0;
  font-size: 14px;
}

.panel-marketing {
  background: transparent;
  height: 255px;
  overflow: hidden;
}
.panel-marketing .panel-body {
  padding: 0;
}
.panel-marketing .carousel {
  height: 255px;
}
.panel-marketing .carousel-indicators {
  top: 10px;
  bottom: auto;
  left: 10px;
  margin: 0;
  width: auto;
}
.panel-marketing .carousel-indicators li {
  border: none;
  background-color: white;
}
.panel-marketing .carousel-indicators .active {
  background-color: #50585f;
  border: none;
}
.panel-marketing .carousel-inner {
  overflow: hidden;
  height: 255px;
  border-radius: 0.4rem;
}
.panel-marketing .carousel-inner .item {
  height: auto;
}
.panel-marketing .carousel-inner img {
  width: 100%;
  height: auto;
}

.panel-omattiedot .row {
  margin: 0 0 15px 0;
}
.panel-omattiedot .fa {
  margin-right: 5px;
}

.panel-asiointi .panel-body {
  padding: 0;
}
.panel-asiointi .list-unstyled {
  margin-top: 2px;
}
.panel-asiointi .list-unstyled li {
  border-bottom: 1px solid #d6d6d6;
}
.panel-asiointi .list-unstyled li:last-of-type {
  border: none;
}
.panel-asiointi .list-unstyled a {
  padding: 10px 25px;
  display: block;
  width: 100%;
}
.panel-asiointi .list-unstyled a .fa {
  margin-top: 3px;
}

.badge.badge-bordered {
  border: 1px solid #50585f;
  font-size: 16px;
  background: transparent;
  border-radius: 20px;
  color: #50585f;
  font-weight: 300;
  margin-right: 10px;
  height: 28px;
  width: 28px;
  padding: 7px 0;
  line-height: 10px;
}

.carousel-caption {
  position: absolute;
  left: 0%;
  right: 0%;
  bottom: 0px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.5);
}
.carousel-caption .btn {
  text-shadow: none;
}

.gu-transit .modify-tile {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.gu-mirror {
  transition: opacity 0.4s ease-in-out;
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  position: absolute;
  width: 50px;
}

.gu-unselectable {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.gu-unselectable #movable > div:not(.gu-transit) .modify-tile {
  background: #ccc;
}
.gu-unselectable .close {
  display: none;
}
.gu-unselectable .handle {
  display: none;
}
.gu-unselectable .gu-mirror .handle {
  display: block;
}

.container .ex-moved {
  background-color: #e74c3c;
}

.container.ex-over {
  background-color: rgba(255, 255, 255, 0.3);
}

.handle {
  transition: all 0.3s ease-in-out;
  display: block;
  padding: 0 5px;
  margin-right: 5px;
  background-color: #0072b4;
  cursor: move;
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  z-index: 100;
  line-height: 40px;
  text-align: center;
  border-radius: 25px;
}
.handle .fa {
  pointer-events: none;
  color: #fff;
  font-size: 20px;
}

.up-down {
  display: none;
}

#movable .tile:first-of-type .up-down .fa:first-of-type {
  background: #f3f3f3;
  pointer-events: none;
}
#movable .tile:nth-last-child(2) .up-down .fa:last-of-type {
  background: #f3f3f3;
  pointer-events: none;
}

.panel-new .panel-heading {
  position: relative;
}
.panel-new .panel-heading input[type=search] {
  padding: 24px 24px 23px 24px;
  margin: -15px 50px -15px -25px;
  border-radius: 0.4rem 0.4rem 0 0;
  display: none;
}
.panel-new .panel-heading .fa {
  margin: 0;
}
.panel-new .panel-heading .fa-angle-up {
  display: none;
}
.panel-new .panel-heading.open .fa-angle-up {
  display: inline-block;
}
.panel-new .panel-heading.open .fa-angle-down {
  display: none;
}
.panel-new .dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0%;
  bottom: 0;
  border-radius: none;
  border: none;
  border-radius: 0 0.4rem 0 0;
}
.panel-new .scrollable-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #f3f3f3;
  border-radius: 0 0 0.4rem 0.4rem;
  border-right: 0.14rem solid rgba(0, 0, 0, 0.15);
  border-bottom: 0.14rem solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.panel-new .scrollable-menu .dropdown-menu {
  position: static;
  right: 0;
  background-color: #f3f3f3;
  height: auto;
  width: 100%;
  max-height: 260px;
  min-height: 167px;
  overflow-x: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
.panel-new .scrollable-menu .fa-plus-circle {
  display: inline-block;
}
.panel-new .scrollable-menu .add-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0;
}
.panel-new .scrollable-menu .add-new a {
  padding: 10px 25px 10px 10px;
  text-align: left;
  color: #50585f;
}
.panel-new .scrollable-menu li {
  padding: 10px 25px 10px 35px;
  cursor: pointer;
}
.panel-new .scrollable-menu li.active {
  font-weight: 700;
  position: relative;
}
.panel-new .scrollable-menu li.active:before {
  content: "";
  position: absolute;
  color: #0072b4;
  top: 10px;
  left: 10px;
}
.panel-new .scrollable-menu li.product-electricity {
  border-right: 5px solid #00c5b4;
}
.panel-new .scrollable-menu li.product-heat {
  border-right: 5px solid #f66076;
}
.panel-new .scrollable-menu li.product-water {
  border-right: 5px solid #07a6ff;
}
.panel-new .open .scrollable-menu {
  display: block;
}
.panel-new .open .dropdown-menu {
  display: block;
}
.panel-new .panel-body strong {
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
}
.panel-new .panel-body .fa-arrow-up {
  color: #0072b4;
  padding: 5px 0;
  font-size: 24px;
}
.panel-new .panel-body .fa-arrow-down {
  color: #199de0;
  padding: 5px 0;
  font-size: 24px;
}

.item .intro {
  padding-top: 10px;
  padding-bottom: 10px;
}
.item .intro p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
}
.item .date p {
  margin: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.item.collapsed .intro p {
  text-overflow: none;
  white-space: normal;
}
.item.collapsed .col-collapser:hover {
  cursor: pointer;
  background-color: #31353a !important;
}

.item.collapsed.product-heat .col-collapser:hover {
  cursor: pointer;
  background-color: #9a1e31 !important;
}

.item.collapsed.product-water .col-collapser:hover {
  cursor: pointer;
  background-color: #05759d !important;
}

.item.collapsed.product-electricity .col-collapser:hover {
  cursor: pointer;
  background-color: #00a497 !important;
}

#user-alarms .panel-body {
  position: relative;
}

.bg-full {
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
.bg-full .fa-stack {
  height: 90px;
  width: 85px;
  line-height: 4em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.bg-full .fa-stack-1x {
  font-size: 2em;
  line-height: 2.4em;
  width: 90px;
}
.bg-full .fa-stack-2x {
  font-size: 5em;
  width: 100px;
}

#katseluoikeudet .list-inline {
  margin: 10px 0;
}

#kayttajalistaus .list-inline {
  margin: 10px 0;
}

.single-user {
  padding: 0 20px;
  border-bottom: 1px solid #d6d6d6;
  background-color: #fbfbfb;
}
.single-user:last-of-type {
  border-bottom: 0;
}
.single-user .btn-collapser {
  padding-top: 20px;
  padding-bottom: 20px;
}

.single-customer {
  padding: 0 20px;
  border-bottom: 1px solid #d6d6d6;
  background-color: #fbfbfb;
}
.single-customer:last-of-type {
  border-bottom: 0;
}
.single-customer .btn-collapser {
  padding-top: 20px;
  padding-bottom: 20px;
}

.row-listing.row-listing-permissions {
  margin: 0 10px;
}
.row-listing.row-listing-permissions .item {
  padding-left: 15px;
  padding: 0px 15px;
}
.row-listing.row-listing-permissions .item .row {
  position: relative;
}
.row-listing.row-listing-permissions .item p {
  margin: 15px 0;
}
.row-listing.row-listing-permissions .item .form-group p {
  margin: 0;
}
.row-listing.row-listing-permissions .panel-heading {
  padding-left: 15px;
}
.row-listing.row-listing-permissions .panel-heading span {
  padding: 0px 15px;
  padding: 15px 0;
  display: inline-block;
}
.row-listing.row-listing-permissions .panel-heading span p {
  margin: 15px 0;
}
.row-listing.row-listing-permissions .panel-heading span .form-group p {
  margin: 0;
}
.row-listing.row-listing-permissions .item.panel-heading {
  border: none;
}
.row-listing.row-listing-permissions .item.panel-heading-sorting {
  border-radius: 0.4rem 0.4rem 0 0;
}
.row-listing.row-listing-permissions .item.panel-heading-sorting .row {
  background: white;
  padding: 0 15px;
  margin-left: -15px;
  margin-right: -15px;
  border: none;
}
.row-listing.row-listing-permissions .panel-body {
  border: 1px solid #d6d6d6;
  margin-bottom: 30px;
  border-radius: 0.4rem;
  overflow: hidden;
}
.row-listing.row-listing-permissions .panel-body > .item > .row {
  margin: 0 -15px;
  background: #f3f3f3;
}
.row-listing.row-listing-permissions .user-listing .panel-body {
  border: none;
}
.row-listing.row-listing-permissions #collapser {
  background: #f3f3f3;
  margin-left: -15px;
  margin-right: -15px;
}
.row-listing.row-listing-permissions #collapser > .panel {
  background: #f3f3f3;
}
.row-listing.row-listing-permissions #collapser > .panel h2 {
  padding-top: 20px;
}
.row-listing.row-listing-permissions #collapser > .panel h3 {
  padding-top: 20px;
}
.row-listing.row-listing-permissions .nav-pills .badge {
  border: none;
  background: transparent;
  color: #50585f;
  padding: 0;
}
.row-listing.row-listing-permissions .nav-pills .active .badge {
  color: #50585f;
}
.row-listing.row-listing-permissions .has-tabs {
  min-height: 50px;
}

.row-listing-permissions .tab-content {
  background: #fff;
  margin: 0;
  padding: 0;
  min-height: 0;
}
.row-listing-permissions .tab-pane {
  padding: 0 15px 15px 15px;
}
.row-listing-permissions .tab-pane h2 {
  border-bottom: 1px solid #f3f3f3;
  margin: 10px 0;
  padding: 15px;
}
.row-listing-permissions .tab-pane h2 a {
  margin-top: -10px;
}

.row-order {
  padding: 40px 40px;
  position: relative;
  z-index: 100;
}
.row-order .print {
  margin: -20px -10px 20px;
  font-size: 16px;
}
.row-order .print i {
  color: #50585f;
  font-size: 20px;
  margin-right: 6px;
}
.row-order .print a {
  margin-right: 20px;
}

.lisa-tabs .tab-pane {
  position: relative;
  z-index: 10;
}
.lisa-tabs .row-listing-messages {
  margin: 0 30px;
  padding-top: 40px;
}
.lisa-tabs .row-order + .row-listing-messages {
  padding-top: 0;
  padding-bottom: 50px;
}
.lisa-tabs dl {
  margin-top: 10px;
}
.lisa-tabs dl dd {
  margin-bottom: 8px;
}
.lisa-tabs dl dt {
  margin-bottom: 8px;
}

.todo-info {
  margin-top: 20px;
  font-size: 14px;
}
.todo-info li {
  margin-bottom: 5px;
  line-height: 20px;
}
.todo-info .fa-2x {
  font-size: 18px;
  width: 20px;
  position: relative;
  top: 4px;
}
.todo-info .fa-stack {
  width: 20px;
  position: relative;
  top: 4px;
}
.todo-info .fa-stack-2x {
  font-size: 18px;
}
.todo-info .fa-stack-1x {
  font-size: 10px;
  top: -6px;
  left: 1px;
}

.todo-own i {
  color: #0072b4;
}

.todo-je i {
  color: #9d9d9d;
}

.todo-finished .fa-stack-2x {
  color: #9d9d9d;
}

p.lead small {
  margin: 0 0 0 20px;
}

.drop-responsive .panel-heading {
  position: relative;
}
.drop-responsive .panel-heading .badge {
  color: #50585f;
  border: 1px solid #50585f;
  top: -3px;
  min-width: 16px;
  line-height: 16px;
  border-radius: 50%;
  float: right;
}
.drop-responsive .panel-heading h2 {
  font-size: 1.5rem;
}
.drop-responsive .panel-heading h2 .badge {
  margin-right: 45px;
}
.drop-responsive .panel-heading .fa {
  margin: 0;
}
.drop-responsive .panel-heading .fa-angle-up {
  display: none;
}
.drop-responsive .panel-heading.open h2 {
  display: none;
}
.drop-responsive .panel-heading.open input {
  display: inline-block;
}
.drop-responsive .panel-heading.open .fa-angle-up {
  display: inline-block;
}
.drop-responsive .panel-heading.open .fa-angle-down {
  display: none;
}
.drop-responsive .dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0%;
  bottom: 0;
  border-radius: none;
  border: none;
  border-radius: 0 0.4rem 0 0;
}
.drop-responsive .dropdown-menu {
  position: absolute;
  right: 0;
  background-color: #f3f3f3;
  height: auto;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
.drop-responsive .dropdown-menu li a {
  padding: 10px 25px 10px 25px;
}
.drop-responsive .dropdown-menu.open {
  display: block;
}

@media (min-width: 993px) {
  .container#login .login {
    padding-right: 0;
  }
  .container#login .login .panel-heading {
    border-radius: 10px 0 0 0;
  }
  .container#login .registering {
    padding-left: 0;
  }
  .container#login .registering .panel-heading {
    border-radius: 0 0.4rem 0 0;
  }

  .resoBig {
    display: block;
  }

  .resoSmall {
    display: none;
  }

  .navbar-brand {
    margin: 10px 15px 22px 15px !important;
    height: 30px;
    width: 130px;
    padding: 0;
  }

  .je-nav .navbar-brand img {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .resoBig {
    display: block;
  }

  .resoSmall {
    display: none;
  }

  .navbar-brand {
    height: 30px;
    width: 130px;
    padding: 0;
  }

  .je-nav .navbar-brand img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .resoBig {
    display: none;
  }

  .navbar-text {
    line-height: 20px;
    max-width: 370px;
  }

  .resoSmall {
    display: block;
  }

  .navbar-brand {
    height: 30px;
    width: 130px;
    padding: 0;
  }

  .je-nav .navbar-brand img {
    width: 100%;
  }
  .je-nav ul.navbar-nav .dropdown-user {
    float: right;
  }
  .je-nav .navbar-right {
    float: right;
    min-width: 160px;
  }
  .je-nav .navbar-right > .navbar-nav {
    margin: 0;
  }
  .je-nav .navbar-right > .navbar-nav > li {
    display: inline-block;
  }

  p span.pull-right {
    float: none !important;
    display: inline-block;
  }

  .col-collapser .fa-stack {
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .item.collapser .fa-stack {
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .col-collapser.collapsed .fa-stack {
    -ms-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  .item.collapser.collapsed .fa-stack {
    -ms-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  h1 small {
    display: inline-block;
    width: 100%;
    margin-left: 0px;
  }

  .row-heading .btn {
    width: 100%;
    display: block;
  }
  .row-heading h1 {
    width: 100%;
    display: block;
  }

  .col-xs-text-right {
    text-align: right;
  }

  .col-xs-text-left {
    text-align: left;
  }

  label:empty {
    display: none;
  }

  .help-block:before {
    border-bottom: 10px solid #199de0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    position: absolute;
    top: -10px;
    left: 10px;
  }

  .row-listing .panel {
    background-color: transparent;
  }
  .row-listing .item {
    padding: 20px 10px 10px 10px;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 0.4rem;
    overflow: hidden;
  }
  .row-listing .panel-heading {
    padding: 0;
  }
  .row-listing .panel-body .col-collapser {
    top: 0;
    bottom: auto;
    padding: 5px 0;
    width: 100%;
    border-radius: 0 !important;
  }
  .row-listing .panel-body .col-collapser .fa-stack {
    display: none;
  }

  .row-listing.row-listing-contracts .panel-heading {
    display: none;
  }

  .row-listing.row-listing-billing .panel-heading {
    display: none;
  }
  .row-listing.row-listing-billing .item {
    padding: 20px 10px 10px 10px;
  }

  .row-listing.row-listing-orders .panel-heading {
    display: none;
  }
  .row-listing.row-listing-orders .product {
    padding-left: 50px;
  }
  .row-listing.row-listing-orders .col-xs-block {
    position: absolute;
    top: 20px;
    left: 0;
    width: 50px;
    font-size: 12px;
    text-align: center;
  }
  .row-listing.row-listing-orders .col-xs-block i {
    margin-bottom: 10px;
    width: auto;
  }

  .panel-nobox .panel-heading {
    cursor: pointer;
    padding-top: 10px;
  }

  .panel-nobox.product-electricity .panel-heading {
    border-bottom: 3px solid #00c5b4;
  }

  .panel-nobox.product-heat .panel-heading {
    border-bottom: 3px solid #f66076;
  }

  .panel-nobox.product-water .panel-heading {
    border-bottom: 3px solid #07a6ff;
  }

  #tab-workflow .product-status {
    margin-right: 15px;
  }

  .nav-pills.nav-pills-sm a {
    padding: 10px;
    margin: 0 0 10px;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  }
  .nav-pills.nav-pills-sm li.active > a {
    padding: 10px;
    margin: 0 0 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.4rem !important;
    background: #fafafa;
  }
  .nav-pills.nav-pills-sm li.active > a:hover {
    padding: 10px;
    margin: 0 0 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.4rem !important;
    background: #fafafa;
  }
  .nav-pills.nav-pills-sm li.active > a:focus {
    padding: 10px;
    margin: 0 0 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.4rem !important;
    background: #fafafa;
  }

  #register .nav-pills > li a span.text {
    display: none;
  }
  #register .nav-pills > li a span.number {
    display: none;
  }
  #register .nav-pills > li div span.text {
    display: none;
  }
  #register .nav-pills > li div span.number {
    display: none;
  }
  #register .nav-pills > li.pill-last.col-xs-2 {
    width: calc(16.66667% + 14px);
  }
  #register .nav-pills > li.pill-last.col-xs-3 {
    width: calc(25% + 14px);
  }
  #register .nav-pills > li.pill-last.col-xs-8 {
    width: calc(66.66667% + 14px);
  }
  #register .nav-pills.company span.text {
    display: none !important;
  }
  #register .nav-pills.company span.number {
    display: inline;
    padding: 0 0 0 10px;
  }

  .pagination {
    width: 100%;
  }

  .banks > div:nth-child(2n+1) {
    clear: left;
  }

  .panel-default img {
    height: auto;
    width: 80%;
  }

  .item .date p {
    margin-bottom: 5px;
  }

  .row-order {
    padding: 0;
  }
  .row-order .order-info > div {
    padding: 0;
  }
  .row-order .order-info .panel {
    margin-bottom: 0;
  }
  .row-order .panel-bordered {
    border: none;
    margin-bottom: 0;
    cursor: pointer;
  }
  .row-order .panel-bordered .panel-heading {
    border-top: 1px solid #d6d6d6;
    border-radius: 0;
  }

  .todo-info {
    margin: 0px 25px 10px 60px;
  }

  .tab-content.lisa-tabs .tab-pane {
    border-radius: 0 0 0.4rem 0.4rem;
  }

  #tab-messages .panel-heading {
    display: none;
  }
}
@media (max-width: 992px) {
  .regContainer {
    width: unset;
  }
}
@media (min-width: 768px) {
  .container#main {
    padding-left: 25px;
    padding-right: 25px;
  }

  .container#modify {
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-24 .col-sm-1 {
    float: left;
    width: 4.16667%;
  }
  .grid-24 .col-sm-2 {
    float: left;
    width: 8.33333%;
  }
  .grid-24 .col-sm-3 {
    float: left;
    width: 12.5%;
  }
  .grid-24 .col-sm-4 {
    float: left;
    width: 16.66667%;
  }
  .grid-24 .col-sm-5 {
    float: left;
    width: 20.83333%;
  }
  .grid-24 .col-sm-6 {
    float: left;
    width: 25%;
  }
  .grid-24 .col-sm-8 {
    float: left;
    width: 33.33333%;
  }
  .grid-24 .col-sm-9 {
    float: left;
    width: 37.5%;
  }
  .grid-24 .col-sm-10 {
    float: left;
    width: 41.66667%;
  }
  .grid-24 .col-sm-12 {
    float: left;
    width: 50%;
  }
  .grid-24 .col-sm-16 {
    float: left;
    width: 66.66667%;
  }
  .grid-24 .col-sm-18 {
    float: left;
    width: 75%;
  }
  .grid-24 .col-sm-offset-1 {
    margin-left: 4.16667%;
  }
  .grid-24 .col-sm-offset-2 {
    margin-left: 8.33333%;
  }

  .form-horizontal .control-label {
    text-align: left;
  }

  .help-block {
    position: absolute;
    top: 0%;
    left: 15px;
    right: 15px;
    margin-top: -10px;
  }
  .help-block:before {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 10px solid #199de0;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: -10px;
  }

  .panel.panel-default {
    height: 255px;
  }
  .panel.panel-default .panel-body {
    height: 145px;
  }
  .panel.panel-default .panel-body.panel-table {
    height: 145px;
  }

  .row-listing.row-listing-contracts .item {
    padding-left: 70px;
  }
  .row-listing.row-listing-contracts .item:nth-child(2n) {
    background: #f3f3f3;
  }
  .row-listing.row-listing-contracts .item:nth-child(2n) .btn-default:hover {
    background-color: white;
    border-color: #d6d6d6;
    color: #50585f;
  }

  .row-listing.row-listing-billing .item {
    padding-left: 70px;
    padding-left: 70px;
  }
  .row-listing.row-listing-billing .item:nth-child(2n) {
    background: #f3f3f3;
  }
  .row-listing.row-listing-billing .item:nth-child(2n) .btn-default:hover {
    background-color: white;
    border-color: #d6d6d6;
    color: #50585f;
  }

  .row-listing.row-listing-orders .item {
    padding-left: 70px;
  }
  .row-listing.row-listing-orders .item:nth-child(2n) {
    background: #f3f3f3;
  }
  .row-listing.row-listing-orders .item:nth-child(2n) .btn-default:hover {
    background-color: white;
    border-color: #d6d6d6;
    color: #50585f;
  }

  .row-listing.row-listing-messages .item {
    padding-left: 70px;
  }

  .banks > div:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 992px) {
  .grid-24 .col-md-1 {
    float: left;
    width: 4.16667%;
  }
  .grid-24 .col-md-2 {
    float: left;
    width: 8.33333%;
  }
  .grid-24 .col-md-3 {
    float: left;
    width: 12.5%;
  }
  .grid-24 .col-md-4 {
    float: left;
    width: 16.66667%;
  }
  .grid-24 .col-md-5 {
    float: left;
    width: 20.83333%;
  }
  .grid-24 .col-md-6 {
    float: left;
    width: 25%;
  }
  .grid-24 .col-md-7 {
    float: left;
    width: 29.16667%;
  }
  .grid-24 .col-md-10 {
    float: left;
    width: 41.66667%;
  }
  .grid-24 .col-md-12 {
    float: left;
    width: 50%;
  }
  .grid-24 .col-md-24 {
    float: left;
    width: 100%;
  }
  .grid-24 .col-md-offset-1 {
    margin-left: 4.16667%;
  }
  .grid-24 .col-md-offset-2 {
    margin-left: 8.33333%;
  }

  .je-nav ul.navbar-nav .dropdown-user > a {
    padding-bottom: 14px;
  }
  .je-nav ul.navbar-nav .dropdown-user .fa-je-user {
    margin-right: 10px;
  }

  .nav-tabs {
    font-size: 1.25rem;
  }
  .nav-tabs > li > a {
    padding: 25px 35px;
  }

  .tab-content.permission-tabs .alert {
    margin: 0;
    border-radius: 0 0.4rem 0 0;
    padding: 25px 45px 25px 85px;
  }
  .tab-content.permission-tabs .alert .fa {
    top: 25px;
    left: 45px;
  }

  .panel-group.responsive .alert {
    margin: 0;
    border-radius: 0 0.4rem 0 0;
    padding: 25px 45px 25px 85px;
  }
  .panel-group.responsive .alert .fa {
    top: 25px;
    left: 45px;
  }

  .tab-content.lisa-tabs .alert {
    margin: 0;
    border-radius: 0 0.4rem 0 0;
    padding: 25px 45px 25px 85px;
  }
  .tab-content.lisa-tabs .alert .fa {
    top: 25px;
    left: 45px;
  }

  .container#login .login {
    padding-right: 0;
  }
  .container#login .login .panel-heading {
    border-radius: 0.4rem 0 0 0;
  }
  .container#login .register {
    padding-left: 0;
  }

  .container#modify #movable > div {
    padding: 20px;
  }

  .row-listing.row-listing-permissions {
    margin: 0 15px;
  }
  .row-listing.row-listing-permissions .panel-body > .item > .row {
    padding: 0 15px;
  }
  .row-listing.row-listing-permissions .has-tabs {
    min-height: 0;
    position: absolute;
    bottom: 0;
    right: 15px;
  }

  .row-listing-permissions .tab-pane h2 {
    margin: 0 -80px 20px;
    padding: 15px 35px;
  }
  .row-listing-permissions .tab-content .tab-pane {
    padding: 0 80px 30px;
    margin: 0 -30px;
  }
}
@media (min-width: 1200px) {
  .grid-24 .col-lg-1 {
    float: left;
    width: 4.16667%;
  }
  .grid-24 .col-lg-2 {
    float: left;
    width: 8.33333%;
  }
  .grid-24 .col-lg-3 {
    float: left;
    width: 12.5%;
  }
  .grid-24 .col-lg-4 {
    float: left;
    width: 16.66667%;
  }
  .grid-24 .col-lg-5 {
    float: left;
    width: 20.83333%;
  }
  .grid-24 .col-lg-6 {
    float: left;
    width: 25%;
  }
  .grid-24 .col-lg-offset-1 {
    margin-left: 4.16667%;
  }
  .grid-24 .col-lg-offset-2 {
    margin-left: 8.33333%;
  }

  .panel-consumption .panel-body strong {
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
  }
  .panel-consumption .panel-body .fa-arrow-up {
    font-size: 24px;
    padding: 5px 0;
  }
  .panel-consumption .panel-body .fa-arrow-down {
    font-size: 24px;
    padding: 5px 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  h1 > .form-control {
    width: 100% !important;
    margin: 10px 0 0 !important;
  }

  .handle {
    display: none;
  }

  .up-down {
    display: block;
    padding: 0 5px;
    margin-right: 5px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
    width: 40px;
  }
  .up-down .fa {
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    z-index: 100;
    line-height: 40px;
    text-align: center;
    border-radius: 25px;
    background-color: #0072b4;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .up-down .fa:hover {
    background-color: #0092e7;
  }
}
@media (max-width: 991px) {
  .col-sm-text-right {
    text-align: right;
  }

  .col-sm-text-left {
    text-align: left;
  }

  .navbar li {
    position: static;
  }

  .je-nav ul.navbar-nav > li > a {
    padding: 25px !important;
  }
  .je-nav ul.navbar-nav .dropdown-user span {
    display: none;
  }
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu {
    position: absolute;
    float: none;
    width: auto;
    margin-top: 0;
    left: 0;
    right: 0;
  }
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a {
    color: #50585f;
  }
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a:hover {
    color: #d6d6d6;
    background-color: transparent;
  }
  .je-nav ul.navbar-nav .dropdown.open .dropdown-menu > li > a:focus {
    color: #d6d6d6;
    background-color: transparent;
  }

  .row-listing .panel-heading a {
    font-size: 12px;
  }

  .panel-heading-sorting span {
    width: 100%;
    text-align: center;
    margin: 0 !important;
    display: inline-block;
    float: left;
  }

  .btn-wrap {
    white-space: normal;
  }

  .container#login .login .panel-footer {
    border-radius: 0;
  }
  .container#login .register .panel-heading {
    border-radius: 0;
  }

  .permissions .panel-heading .nav.nav-pills {
    width: 100%;
    margin-bottom: 10px;
  }
  .permissions .panel-heading .nav.nav-pills li {
    width: 33%;
  }
  .permissions .panel-heading .nav.nav-pills li:last-of-type  {
    width: 34%;
  }
  .permissions .panel-heading .nav.nav-pills li a {
    height: 70px;
  }

  .row-listing.row-listing-permissions .item.panel-heading-sorting {
    display: none;
  }

  .order-tracking h1 {
    line-height: 30px;
  }
  .order-tracking h1 .btn {
    width: auto;
    padding: 1rem;
  }
  .order-tracking h1 .btn span {
    display: none;
  }
  .order-tracking h1 .btn .fa {
    margin: 0;
  }
  .order-tracking p.lead {
    margin-bottom: 0;
  }
  .order-tracking p.lead small {
    width: 100%;
    display: inline-block;
    margin: 0;
  }

  .row-order {
    padding: 10px 20px;
  }
  .row-order .print {
    margin: 0;
    padding: 10px 25px;
    text-align: left;
  }

  .lisa-tabs .row-listing-messages {
    margin: 0 -10px;
    padding: 0;
  }
  .lisa-tabs .row-listing-messages .panel-heading-sorting {
    margin-bottom: 0;
  }
  .lisa-tabs .row-listing-messages .item {
    border-radius: 0;
    margin-bottom: 0;
  }
  .lisa-tabs .row-listing-messages .item:last-of-type {
    border-radius: 0 0 0.4rem 0.4rem;
  }
  .lisa-tabs .row-listing-messages .item.item-new {
    border-bottom: 0;
  }
  .lisa-tabs .row-order + .row-listing-messages {
    padding-bottom: 0;
    margin-bottom: 0px;
  }
}
@media (max-width: 1199px) {
  .je-nav .container {
    width: 100%;
    padding: 0;
  }
  .je-nav ul.navbar-nav .dropdown-user span.user-email {
    font-size: 12px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .panel-body.panel-table td {
    padding: 5px;
  }
  .panel-body.panel-table td.text-right {
    padding: 5px;
  }

  .container-messages .btn-primary i {
    margin-right: 0;
  }

  .container-modify .btn-primary i {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  table.sm-responsive {
    display: block;
  }
  table.sm-responsive thead {
    display: block;
  }
  table.sm-responsive thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  table.sm-responsive tbody {
    display: block;
  }
  table.sm-responsive tfoot {
    display: block;
  }
  table.sm-responsive th {
    display: block;
  }
  table.sm-responsive td {
    display: block;
    border: none;
    border-bottom: 1px solid #eee !important;
    position: relative;
    padding-left: 3% !important;
    white-space: normal !important;
    text-align: left;
    overflow: hidden;
  }
  table.sm-responsive td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    content: attr(data-title);
  }
  table.sm-responsive td input {
    float: right;
  }
  table.sm-responsive tr {
    display: block;
    border: 1px solid #ccc;
  }
}
@media (max-width: 992px) {
  .panel-marketing {
    height: auto;
  }
  .panel-marketing .carousel {
    height: auto;
  }
  .panel-marketing .carousel-inner {
    height: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .panel-marketing .carousel-inner .item {
    height: 255px;
  }
  .panel-marketing .carousel-inner img {
    height: auto;
    max-width: none;
  }
}
/*# sourceMappingURL=all2.css.map */