/*  

Description: Main Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
/*  

Description: Mixins
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
/** MEDIA QUERIES **/
/** TRANSITIONS **/
/** TRANSFORM  **/
/*  

Description: Variables
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
/** INCLUDE **/
@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.css");
/** COLORS **/
/** FONTS **/
/** VARS **/
/** ANIMATIONS **/
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*  

Description: Base Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
* {
  outline: 0px !important;
}

html {
  font-size: 12px;
}
@media only screen and (min-width: 990px) and (max-width: 1199px) {
  html {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  html {
    font-size: 14px;
  }
}

body {
  background-color: #F2F2F2;
  color: #ACACAC;
  font-family: "Montserrat", sans-serif;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  z-index: -10000;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
body:after {
  content: "";
  display: block;
  position: fixed;
  z-index: 1100;
  top: -100%;
  left: 50%;
  margin: -40px 0px 0px -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #D9D9D9;
  border-top: 3px solid #008085;
  animation: spin 1s linear infinite;
}
body.init:before, body.loading:before {
  z-index: 1000;
  opacity: 1;
}
body.init:after, body.loading:after {
  top: 50%;
  opacity: 1;
}
body.dark-mode {
  background-color: #b1003b;
  color: #FFFFFF;
}
body.dark-mode:after {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #008085;
}
@media only screen and (min-width: 1200px) {
  body:after {
    left: calc(50% + 150px);
  }
}

h1, h2, h3, h4, h5, h6, strong {
  color: #333333;
}
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6, .dark-mode strong {
  color: #FFFFFF;
}
h1.success, h2.success, h3.success, h4.success, h5.success, h6.success, strong.success {
  color: #42D179;
}

h1, h2, h3 {
  font-weight: 400;
}

h4, h5 {
  font-weight: 300;
}

hr {
  border-color: #D9D9D9;
  margin: 30px 0px;
}

.lead {
  color: #333333;
}
.lead a {
  color: #008085;
}

.btn {
  border-radius: 10px;
  box-shadow: none !important;
  white-space: nowrap;
}
.btn:active, .btn.pressed {
  transform: scale(0.9);
}
.btn svg {
  margin-top: -3px;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
.btn.btn-primary {
  border-color: #008085;
  background-color: #008085;
  padding: 5px 20px;
}
.btn.btn-primary:hover, .btn.btn-primary:not(:disabled):not(.disabled):active {
  border-color: #008085;
  background-color: #00676c;
}
.btn.btn-primary.m-w {
  max-width: 100%;
}
.btn.btn-secondary {
  border-color: #b1003b;
  background-color: #b1003b;
  padding: 5px 20px;
}
.btn.btn-secondary:hover, .btn.btn-secondary:not(:disabled):not(.disabled):active {
  border-color: #b1003b;
  background-color: #980033;
}
.dark-mode .btn.btn-secondary {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  color: #b1003b;
}
.dark-mode .btn.btn-secondary.disabled, .dark-mode .btn.btn-secondary:disabled {
  opacity: 0.3;
}
.btn.btn-modal-check {
  border-color: #008085;
  background-color: #008085;
  color: #ffffff;
  padding: 5px 20px;
}
.btn.btn-modal-check:hover, .btn.btn-modal-check:not(:disabled):not(.disabled):active {
  border-color: #008085;
  background-color: #00676c;
}
.btn.btn-outline-primary {
  border-color: #008085;
  color: #008085;
  padding: 5px 20px;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:not(:disabled):not(.disabled):active {
  border-color: #008085;
  background-color: #008085;
  color: #FFFFFF;
}
.btn.btn-outline-secondary {
  border-color: #b1003b;
  color: #b1003b;
  padding: 5px 20px;
}
.btn.btn-outline-secondary:hover, .btn.btn-outline-secondary:not(:disabled):not(.disabled):active {
  border-color: #b1003b;
  background-color: #b1003b;
  color: #FFFFFF;
}
.btn.btn-light {
  background-color: #F2F2F2;
  color: #b1003b;
}
.btn.btn-light:not(:disabled):not(.disabled).active, .btn.btn-light:not(:disabled):not(.disabled):active, .show > .btn.btn-light.dropdown-toggle {
  border-color: #b1003b;
  background-color: #b1003b;
  color: #FFFFFF;
}
.dark-mode .btn.btn-light {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .btn.btn-light:not(:disabled):not(.disabled).active, .dark-mode .btn.btn-light:not(:disabled):not(.disabled):active, .show > .dark-mode .btn.btn-light.dropdown-toggle {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  color: #b1003b;
}
.btn.btn-outline-dashed {
  border-color: #D9D9D9;
  border-style: dashed;
  border-width: 3px;
  border-radius: 10px;
}
.dark-mode .btn.btn-outline-dashed {
  border-color: rgba(255, 255, 255, 0.1);
}
.btn.btn-sm {
  padding: 3px 10px;
}
.btn.btn-sm svg {
  width: 14px;
  height: 14px;
}
.btn.btn-link {
  text-decoration: none;
  color: #008085;
}
.btn.btn-link svg {
  color: #008085;
}
.btn.btn-link:hover {
  color: #b1003b;
}
.dark-mode .btn.btn-link {
  color: #FFFFFF;
}
.btn.btn-share {
  background-color: #4267b2;
  color: #FFFFFF;
}
.btn.btn-share.fb {
  background-color: #4267b2;
}
.btn.btn-share.in {
  background-color: #117BB6;
}
.btn.btn[disabled] {
  cursor: not-allowed;
  background: #D9D9D9;
  color: #ACACAC;
  border-color: #D9D9D9;
}

.btn-action {
  text-align: center;
  max-width: 100px;
}

.badge {
  border-radius: 10px;
  font-weight: 400;
  font-size: 8px;
  vertical-align: middle;
  padding: 5px 10px;
}
.badge svg {
  margin-left: 3px;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  display: inline-block;
}
.badge.badge-success {
  background-color: #42D179;
}
.badge.badge-warning {
  background-color: #d4aa00;
  color: #FFFFFF;
}
.badge.badge-danger {
  background-color: #DC342D;
}
.badge.badge-secondary {
  background-color: #b1003b;
}
.badge.badge-light {
  background-color: #FFFFFF;
  border: 1px solid #42D179;
  color: #42D179;
}
.badge.badge-light-danger {
  background-color: #FFFFFF;
  border: 1px solid #DC342D;
  color: #DC342D;
}
.badge.badge-light-danger:hover {
  background-color: #DC342D;
  color: #FFFFFF;
}
.badge.badge-big {
  text-align: center;
  padding: 10px;
  overflow: hidden;
}
.badge.badge-big big {
  font-size: 13px;
  font-weight: 700;
  display: block;
}
.badge.badge-big svg {
  display: block;
  margin: 0px auto;
  width: 30px;
  height: auto;
}
.badge.step {
  background-color: #008085 !important;
  color: #fff !important;
}
.badge.step strong {
  color: #fff !important;
}
.badge.badge-mini {
  display: inline-block !important;
  color: #ACACAC;
  border-color: transparent;
  padding: 2.5px 10px 2.5px 0;
  margin: 2.5px 0 0 0 !important;
}
.badge.badge-mini svg {
  margin-left: 0px;
  margin-right: 5px;
  width: 12.5px;
  height: 12.5px;
  vertical-align: middle;
  display: inline-block !important;
  color: #ACACAC;
}
.dark-mode .badge.badge-mini {
  background: #b1003b;
  color: #FFFFFF;
}
.dark-mode .badge.badge-mini svg {
  color: #FFFFFF;
}
.dark-mode .badge.badge-secondary {
  background-color: #FFFFFF;
  color: #b1003b;
}

.pagination {
  flex-wrap: wrap;
}

.page-item .page-link {
  color: #ACACAC;
  border-color: #D9D9D9;
}
.page-item.active .page-link {
  border-color: #b1003b;
  background: #b1003b;
}
.dark-mode .page-item .page-link {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .page-item.active .page-link {
  color: #b1003b;
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}

.bg-danger {
  background-color: #DC342D !important;
  color: #FFFFFF;
}

.bg-warning {
  background-color: #d4aa00 !important;
  color: #FFFFFF;
}

.bg-success {
  background-color: #42D179 !important;
  color: #FFFFFF;
}

.nav-tabs {
  border-color: #D9D9D9;
}
.nav-tabs .nav-item {
  text-align: left;
}
.nav-tabs .nav-link {
  color: inherit;
  padding: 15px;
  padding-top: 0px;
  border-radius: 0px;
  border: 0px;
  border-bottom: 3px solid transparent;
}
.nav-tabs .nav-link svg {
  color: #ACACAC;
}
.nav-tabs .nav-link.active {
  background: transparent;
  border-color: #008085;
  color: inherit;
}
.nav-tabs .nav-link.active svg {
  color: #008085;
}
.dark-mode .nav-tabs {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .nav-tabs .nav-link.active {
  color: #008085;
}
.dark-mode .nav-tabs .nav-link.active h2 {
  color: #008085;
}
@media only screen and (max-width: 989px) {
  .nav-tabs .item-plant-info .item-plant-info-text p {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .nav-tabs .item-plant-info {
    display: block;
  }
  .nav-tabs .item-plant-info svg {
    margin-right: 0px;
    margin-bottom: 5px;
    width: 25px;
    height: 25px;
  }
  .nav-tabs .item-plant-info .item-plant-info-text h2 {
    font-size: 12px;
  }
}

.list-group .list-group-item {
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid #F2F2F2;
  color: #333333;
  background: transparent;
}
.list-group .list-group-item .form-group {
  margin: 0px;
}
.dark-mode .list-group .list-group-item {
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
@media only screen and (min-width: 768px) {
  .list-group.list-double {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .list-group.list-double .list-group-item {
    width: 50%;
  }
}

.modal-content {
  border: 0px;
  box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
  border-radius: 10px;
}
.modal-content .modal-header .close {
  color: #b1003b;
}
.modal-content .modal-header .close svg {
  width: 30px;
  height: 30px;
}
.modal-content .modal-body {
  padding: 15px;
}
.modal-content .modal-body .modal-divider {
  margin-left: -15px;
  margin-right: -15px;
}
.modal-content .data-list {
  margin-bottom: 15px;
}
.modal-content form {
  margin-bottom: 15px;
}
.modal-content .list-group {
  margin-bottom: 30px;
}
.dark-mode .modal-content {
  background: #b1003b;
  color: #FFFFFF;
}
.dark-mode .modal-content .modal-header {
  border-color: rgba(255, 255, 255, 0.1);
}

.req {
  color: #b1003b;
}

@media only screen and (min-width: 1850px) {
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media only screen and (min-width: 1850px) {
  .col-xxl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media only screen and (min-width: 1850px) {
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.daterangepicker td.off {
  opacity: 0.2;
}
.daterangepicker .calendar-table th {
  color: #333333;
}
.daterangepicker .calendar-table td {
  color: #333333;
}
.daterangepicker .calendar-table td.active, .daterangepicker .calendar-table td:hover {
  background-color: #333333;
  color: #FFFFFF;
}
.daterangepicker .month {
  color: #333333;
}

/** STRUCTURE **/
#title-bar {
  background: #008085;
  position: fixed;
  z-index: 90;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 60px;
  padding: 0px 15px;
  /*
  @media only screen
  and (min-device-width : 414px)
  and (max-device-height : 896px)
  and (-webkit-device-pixel-ratio : 3)
  and (orientation : landscape)
  {

  	.isScrolling & {
  		background: transparent;
  		transition: .4s ease-in-out;
  		.title-bar-logo {
  			opacity: 0;
  		}
  		.btn {
  			background: $color_palette1;
  			padding: ( $spacing * .5 ) ( $spacing * .75 );
  		}
  	}

  }


  @include media-query($small) {

  	.isScrolling & {
  		background: transparent;
  		transition: .4s ease-in-out;
  		.title-bar-logo {
  			opacity: 0;
  		}
  		.btn {
  			background: $color_palette1;
  			padding: ( $spacing * .5 ) ( $spacing * .75 );
  		}
  	}

  }
  */
}
#title-bar .row {
  height: 100%;
}
#title-bar .title-bar-logo img {
  vertical-align: middle;
  display: inline-block;
}
#title-bar .title-bar-logo .logo-symbol {
  height: 40px;
}
#title-bar .title-bar-logo .logo-title {
  margin-top: -5px;
  margin-left: 5px;
  height: 16px;
}
#title-bar .logo-western img {
  height: 45px;
}
#title-bar .btn {
  color: #FFFFFF;
}
#title-bar .btn svg {
  width: 20px;
}
@media only screen and (min-width: 1200px) {
  #title-bar {
    display: none;
  }
}
.isMobile.isScrolling #title-bar {
  background: transparent;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}
.isMobile.isScrolling #title-bar .title-bar-logo {
  opacity: 0;
}
.isMobile.isScrolling #title-bar .btn {
  pointer-events: all;
  background: #008085;
  padding: 7.5px 11.25px;
}
@media only screen and (min-width: 768px) {
  .isScrolling #title-bar {
    background: transparent;
    transition: 0.4s ease-in-out;
  }
  .isScrolling #title-bar .title-bar-logo {
    opacity: 0;
  }
  .isScrolling #title-bar .btn {
    background: #008085;
    padding: 7.5px 11.25px;
  }
}
@media (max-width: 1199px) {
  #title-bar {
    position: relative;
  }
}

#nav-panel {
  padding: 15px 30px;
  background: #008085;
  z-index: 200;
  position: fixed;
  top: 0px;
  right: -300px;
  bottom: 0px;
  width: 300px;
  max-height: 100vh;
  overflow-y: scroll;
  transition: 0.3s ease-in-out;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#nav-panel::-webkit-scrollbar {
  display: none;
}
#nav-panel .panel-logo {
  display: block;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  /*
  &:before {
  	content: 'My';
  	font-size: 14px;
  	color: white;
  	font-weight: 700;
  	position: absolute;
  	bottom: 26px;
  	letter-spacing: 2px;
  	left:0;
  	transform: rotate(-5deg);
  }
  */
}
#nav-panel .panel-logo .logo-symbol,
#nav-panel .panel-logo .logo-title {
  display: block;
  margin: auto;
}
#nav-panel .panel-logo .logo-symbol {
  margin-bottom: 10px;
  width: 60px;
  display: none;
}
#nav-panel .panel-logo .logo-title {
  width: 220px;
  margin-top: 15px;
  margin-bottom: 15px;
}
#nav-panel .panel-search {
  margin-bottom: 15px;
  position: relative;
}
#nav-panel .panel-search .form-control {
  padding-right: 35px;
}
#nav-panel .panel-search svg {
  width: 20px;
  height: 23px;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  right: 10px;
  top: 5px;
  color: #b1003b;
}
#nav-panel .panel-search #icon-search {
  display: inline-block;
}
#nav-panel .panel-search #icon-search-close {
  display: none;
  cursor: pointer;
}
.open-search-list #nav-panel .panel-search #icon-search {
  display: none;
}
.open-search-list #nav-panel .panel-search #icon-search-close {
  display: inline-block;
}
#nav-panel .panel-menu {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
#nav-panel .panel-menu.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
#nav-panel .nav {
  margin-bottom: 15px;
  display: block;
}
#nav-panel .nav .nav-link {
  padding-left: 0px;
  padding-right: 0px;
  line-height: 30px;
  font-weight: 300;
  color: #FFFFFF;
  opacity: 0.5;
}
#nav-panel .nav .nav-link svg {
  margin-right: 5px;
  vertical-align: middle;
  display: inline-block;
  width: 30px;
  height: 30px;
}
#nav-panel .nav .nav-link:hover, #nav-panel .nav .nav-link.active {
  opacity: 1;
}
#nav-panel .nav .link-back {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 7.5px;
}
#nav-panel .user-info {
  margin-top: 15px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
#nav-panel .user-info .icon-account {
  margin: 0px auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 50px;
  border: 1.5px solid #D9D9D9;
  color: #D9D9D9;
}
#nav-panel .user-info .icon-account svg {
  vertical-align: middle;
  display: inline-block;
  width: 30px;
  height: 30px;
}
#nav-panel .user-info h4 {
  margin: 7.5px;
  font-size: 18px;
}
.dark-mode #nav-panel .user-info {
  background: #b1003b;
}
#nav-panel .logo-western {
  margin: 7.5px 0px;
  text-align: center;
}
#nav-panel .logo-western img {
  display: inline-block;
  height: 45px;
}
.nav-open #nav-panel {
  right: 0px;
}
@media only screen and (min-width: 1200px) {
  #nav-panel {
    left: 0px;
    right: auto;
  }
}

#panel-list-search {
  opacity: 0;
  overflow-y: hidden;
  max-height: 0px;
  margin-left: -100%;
  transition: 0.3s ease-in-out;
}
#panel-list-search .nav-link {
  display: flex;
}
#panel-list-search .name {
  line-height: 1;
}
#panel-list-search .name small {
  font-size: 0.7em;
}
.open-search-list #panel-list-search {
  margin-left: 0px;
  opacity: 1;
  max-height: 100vh;
  overflow-y: scroll;
}

#panel-list-nav {
  transition: 0.3s ease-in-out;
}
.open-search-list #panel-list-nav {
  opacity: 0;
  overflow-y: hidden;
  max-height: 0px;
  margin-left: -100%;
  transition: 0.3s ease-in-out;
}

#panel-overlay {
  background: rgba(51, 51, 51, 0.5);
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  overflow: hidden;
  display: none;
}
.nav-open #panel-overlay {
  display: block;
}

#viewport {
  margin: 15px;
  margin-top: calc(60px + 15px);
  transition: 0.3s ease-in-out;
}
#viewport .container-fluid {
  max-width: 1600px;
}
#viewport .container-fluid.nolimit {
  max-width: none;
}
.init #viewport {
  opacity: 0;
}
@media only screen and (min-width: 1200px) {
  #viewport {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 330px;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #viewport {
    margin-left: 0px;
    margin-right: 0px;
  }
}

/** COMPONENTS **/
.big-icon {
  margin: 15px 0px;
}
.big-icon svg {
  width: 100px;
  color: #008085;
}
.big-icon.success svg {
  color: #42D179;
}

.group-component {
  margin: 45px 0px;
}
.group-component > h4 {
  margin-bottom: 15px;
}

.group-interval .btn {
  padding: 0.375rem 0.75rem;
}
.group-interval .group-interval-content {
  padding: 5px 20px;
  background: #F2F2F2;
  color: #b1003b;
  font-size: 0.8em;
  line-height: 2em;
}
.dark-mode .group-interval .group-interval-content {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .group-interval .group-interval-content {
    font-size: 0.7em;
  }
}

.tgl-buttons {
  margin: 15px 0px;
}
.tgl-buttons label,
.tgl-buttons .buttons {
  display: inline-block;
  vertical-align: middle;
}
.tgl-buttons label {
  margin: 0px;
}
.tgl-buttons .buttons {
  background: #D9D9D9;
  border-radius: 100px;
  padding: 5px;
}
.tgl-buttons .btn {
  border-radius: 100px;
}
.tgl-buttons .btn.active {
  background: #FFFFFF;
}
.dark-mode .tgl-buttons .buttons {
  background: rgba(0, 0, 0, 0.1);
}
.dark-mode .tgl-buttons .buttons .btn {
  color: #FFFFFF;
}
.dark-mode .tgl-buttons .buttons .btn.active {
  background: rgba(255, 255, 255, 0.1);
}
.dark-mode .tgl-buttons.tgl-buttons-filters .tgl-order .btn.btn-light {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
}
.dark-mode .tgl-buttons.tgl-buttons-filters .tgl-order .btn.btn-light.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .tgl-buttons.tgl-buttons-filters .tgl-order .apply-filters button {
  background: #D9D9D9;
  color: #333;
}
.dark-mode .tgl-buttons.tgl-buttons-filters .tgl-order .apply-filters button:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}
.tgl-buttons.tgl-buttons-filters {
  display: flex;
  align-items: center;
}
.tgl-buttons.tgl-buttons-filters form {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .tgl-buttons.tgl-buttons-filters form {
    flex-wrap: wrap;
  }
}
.tgl-buttons.tgl-buttons-filters .ml {
  margin-left: 1rem;
}
@media only screen and (max-width: 767px) {
  .tgl-buttons.tgl-buttons-filters .ml {
    margin-bottom: 1rem;
  }
}
.tgl-buttons.tgl-buttons-filters .tgl-order .btn.btn-light {
  color: #262626;
  background-color: #fff;
}
.tgl-buttons.tgl-buttons-filters .tgl-order .btn.btn-light.active {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
.tgl-buttons.tgl-buttons-filters .tgl-order .apply-filters {
  display: inline-block;
}
.tgl-buttons.tgl-buttons-filters .tgl-order .apply-filters button {
  font-size: 0.8em;
  background: #333;
  color: #fff;
}
.tgl-buttons.tgl-buttons-filters .tgl-order .apply-filters button:hover {
  background: #D9D9D9;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .tgl-buttons.tgl-buttons-filters .tgl-order .apply-filters {
    width: 100%;
  }
  .tgl-buttons.tgl-buttons-filters .tgl-order .apply-filters button {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  #btn-add-item {
    width: 100%;
    margin-top: 1rem;
  }
}

.section-cover {
  position: relative;
  overflow: hidden;
  height: 30vh;
  margin: -30px;
  margin-top: -15px;
  margin-bottom: 30px;
}
.section-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-cover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(51, 51, 51, 0.2);
}
@media only screen and (min-width: 1850px) {
  .section-cover {
    height: 100vh;
  }
}
@media only screen and (min-width: 1200px) {
  .section-cover {
    margin: 0px;
    margin-left: -45px;
    height: 125vh;
  }
}

.plant-color {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  background: #e5e5e5;
  border-radius: 3px;
}

.section-title {
  margin-top: 15px;
  margin-bottom: 30px;
  position: relative;
}
.section-title h1, .section-title h2 {
  border-bottom: 1px solid #D9D9D9;
}
.section-title h1 a, .section-title h2 a {
  color: #333333;
}
.dark-mode .section-title h1, .dark-mode .section-title h2 {
  border-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 1.5rem;
  }
}
.section-title p {
  padding-right: 40vw;
}
@media only screen and (min-width: 1200px) {
  .section-title p {
    padding-right: 10vw;
  }
}
@media only screen and (max-width: 989px) {
  .section-title p {
    padding-right: 50vw;
  }
}
.isMobile .section-title p {
  padding-right: 0;
}
.section-title .link-back {
  color: #008085;
  padding-left: 0px;
  margin-left: -5px;
}
.section-title.sub-section h1, .section-title.sub-section h2 {
  border-top: 1px solid #D9D9D9;
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-top: 10px;
  padding-right: 160px;
}
.dark-mode .section-title.sub-section h1, .dark-mode .section-title.sub-section h2 {
  border-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .section-title.sub-section h1, .section-title.sub-section h2 {
    word-break: break-word !important;
  }
}
.section-title .title-widgets {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: right;
}
.section-title .title-widgets small {
  font-size: 9px;
}
@media only screen and (max-width: 767px) {
  .section-title .title-widgets {
    top: -7.5px;
    display: flex;
    flex-direction: column;
  }
  .section-title .title-widgets a {
    margin: 0 0 5px 0;
  }
  .section-title .title-widgets small {
    display: none;
  }
}
.section-title .item-status {
  display: flex;
}
.section-title .item-status.user-item {
  flex-direction: row;
  width: 100%;
}
.section-title .item-status .badge {
  width: 70px;
  margin-left: 10px;
  margin-bottom: 10px;
}
.section-title .item-status .badge.badge-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-color: #D9D9D9;
  width: 60px;
}
.section-title .item-status .badge.badge-image img {
  width: 40px;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .section-title .item-status .badge {
    width: 55px;
    margin-left: 5px;
    padding: 5px;
  }
  .section-title .item-status .badge.badge-image {
    width: 40px;
  }
  .section-title .item-status .badge.badge-image img {
    width: 25px;
  }
}
.section-title .btn-share {
  margin-left: 10px;
}
.section-title .btn-share.btn-block {
  width: calc(100% - 10px);
}
@media only screen and (min-width: 768px) {
  .section-title .link-back {
    margin-left: -25px;
  }
}
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .section-title {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title {
    padding-right: 100px;
    margin-bottom: 15px;
  }
}

.section-actions {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-actions .form-inline .form-control {
  border-radius: 100px 0px 0px 100px;
}
.section-actions .form-inline .btn {
  border-radius: 0px 100px 100px 0px;
}
.section-actions.section-actions--btn-group .btn-group .btn-light {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
}
.section-actions.section-actions--btn-group .btn-group .btn-light:hover {
  border: 1px solid #b1003b;
}
.section-actions.section-actions--btn-group .btn-group .btn-light.active {
  border: 1px solid #b1003b;
}
.dark-mode .section-actions.section-actions--btn-group .btn-group .btn-light {
  background: #484848;
  border: 1px solid #2f2f2f;
}
.dark-mode .section-actions.section-actions--btn-group .btn-group .btn-light:hover {
  background: #FFFFFF;
  border: 1px solid #b1003b;
  color: #b1003b;
}
@media only screen and (max-width: 767px) {
  .section-actions {
    display: block;
  }
  .section-actions .form-control {
    width: 70%;
  }
  .section-actions .btn {
    margin: 10px 0;
  }
  .form-inline .section-actions .btn {
    width: 30%;
  }
}

.section-filters {
  background: #FFFFFF;
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 0px;
  margin-bottom: 30px;
  position: sticky;
  z-index: 50;
  top: 0px;
}
.section-filters .input-group-text {
  border: 0px;
  border-radius: 100px 0px 0px 100px;
  background: #333333;
  color: #FFFFFF;
}
.section-filters .input-group-text svg {
  width: 16px;
  height: 16px;
}
.dark-mode .section-filters .input-group-text {
  background: #FFFFFF;
  color: #b1003b;
}
.section-filters .daterange {
  background: #F2F2F2;
  text-align: center;
  color: #333333;
  font-weight: 400;
  font-size: 0.8em;
  max-width: 350px;
  border: 0px;
}
.dark-mode .section-filters .daterange {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.section-filters .btn.btn-tertiary {
  background-color: #484848;
  border: 1px solid #484848;
  color: #FFFFFF;
}
.dark-mode .section-filters {
  background: #b1003b;
  border-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
  .section-filters {
    top: 60px;
  }
}
@media only screen and (max-width: 989px) {
  .section-filters {
    padding-top: 0;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .section-filters {
    padding: 0 0 15px 0;
    margin-bottom: 15px;
  }
  .section-filters .btn-group {
    width: 100%;
    margin-bottom: 10px;
  }
  .section-filters .btn-group:last-child {
    margin-bottom: 0px;
  }
}
.isMobile .section-filters {
  padding-right: 33.75px;
  top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.isMobileLandscape .section-filters {
  padding-right: 33.75px;
}

.section-filters-export .input-group-text {
  border: 0px;
  border-radius: 100px 0px 0px 100px !important;
  background: #333333;
  color: #FFFFFF;
}
.section-filters-export .input-group-text svg {
  width: 16px;
  height: 16px;
}
.section-filters-export .daterange {
  background: #F2F2F2;
  text-align: left;
  color: #333333;
  font-weight: 400;
  font-size: 0.8em;
  max-width: 100%;
  border: 0px;
}
.section-filters-export .btn.btn-tertiary {
  background-color: #484848;
  border: 1px solid #484848;
  color: #FFFFFF;
}

.section-alerts {
  margin-bottom: 1.5rem;
}

.applyBtn {
  text-transform: uppercase;
  font-size: 1.2em;
}

.section-content.section-limit {
  max-width: 1200px;
}
.section-content.section-center {
  margin: 0px auto;
}

.section-block {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
  margin-bottom: 30px;
  padding: 15px;
}
.section-block .nav-tabs {
  margin-left: -15px;
  margin-right: -15px;
}
.section-block .tab-content {
  padding: 15px 0px;
}
.section-block .section-block-title {
  border-bottom: 1px solid #D9D9D9;
  padding: 15px;
  margin: -15px;
  margin-bottom: 15px;
}
.section-block .section-block-content {
  padding: 15px;
}
.dark-mode .section-block {
  background: #b1003b;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.dark-mode .section-block .section-block-title {
  border-color: rgba(255, 255, 255, 0.1);
}

.tgl-modal-info {
  display: inline-block;
  margin-top: 10px;
  color: #ACACAC;
  text-decoration: none;
}
.tgl-modal-info svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 3px;
  margin-top: -3px;
  color: #008085;
}
.tgl-modal-info:hover {
  color: #008085;
}

.map-box {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
  margin-bottom: 30px;
}
.map-box .map {
  height: 60vh;
}
.map-box .item-plant {
  padding: 7.5px;
}
.map-box.map-compact .map {
  height: 200px;
}
.dark-mode .map-box {
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.dark-mode .map-box .item-plant {
  color: #b1003b;
}
.dark-mode .map-box .item-plant h1, .dark-mode .map-box .item-plant h2 {
  color: #b1003b;
}
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .map-box {
    margin-bottom: 15px;
  }
  .map-box .map {
    height: 175px;
  }
}
@media only screen and (max-width: 767px) {
  .map-box .map {
    height: 40vh;
  }
}

.list-head {
  border-bottom: 1px solid #D9D9D9;
  justify-content: space-between;
  display: flex;
  font-size: 0.8em;
}
.list-head label {
  margin: 0px;
}

.list-head-noflex {
  border-bottom: 1px solid #D9D9D9;
  font-size: 0.8em;
}
.list-head-noflex label {
  margin: 0px;
}
@media only screen and (max-width: 767px) {
  .list-head-noflex {
    display: none;
  }
}

.item-plant-info {
  display: flex;
  align-items: center;
}
.item-plant-info svg {
  width: 35px;
  height: 35px;
  color: #008085;
  margin-right: 10px;
}
.item-plant-info img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.item-plant-info .item-plant-info-text {
  width: calc(100% - 35px);
}
.item-plant-info .item-plant-info-text h2 {
  font-size: 16px;
  margin: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-plant-info .item-plant-info-text p {
  font-size: 13px;
  margin: 0px;
}
.item-plant-info .item-plant-info-text.text-small p {
  font-size: 11px;
}
.item-plant-info .item-plant-info-text.item-plant-info-text-plant-id {
  min-width: 200px;
}
.item-plant-info .item-plant-info-text.item-plant-info-text-plant-key, .item-plant-info .item-plant-info-text.item-plant-info-text-t-key {
  min-width: 100px;
}
@media only screen and (max-width: 767px) {
  .item-plant-info .item-plant-info-text {
    width: 100%;
  }
  .item-plant-info .item-plant-info-text .item-plant-info-badges span {
    float: left;
    clear: both;
  }
}

.item-update {
  font-size: 8px;
}
.item-update svg {
  margin-right: 3px;
  width: 10px;
  height: 10px;
}

.item-plant {
  cursor: pointer;
}
.item-plant.inactive {
  cursor: default;
}
.item-plant a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.item-plant a.btn-user {
  width: 26%;
}
.item-plant .item-update {
  position: absolute;
  left: 15px;
  bottom: 15px;
}
.item-plant .item-chart {
  width: 100%;
  height: 65px;
  margin-bottom: 10px;
}
.item-plant .item-chart .graph {
  padding: 0px;
  margin: 0px;
  height: 100%;
}
.item-plant .item-chart .graph svg g[aria-labelledby*=-title] {
  display: none;
}
.item-plant.item-plant-list {
  cursor: auto;
}

.plants-overview {
  margin-bottom: 30px;
}
.plants-overview div[class*=col-] {
  margin-bottom: 30px;
}
.plants-overview .list-head {
  display: none;
}
.plants-overview .item-plant {
  background: #FFFFFF;
  box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
  border-radius: 10px;
  padding: 15px;
  position: relative;
  height: 100%;
}
.plants-overview .item-plant a {
  display: flex;
  justify-content: space-between;
}
.plants-overview .item-plant .item-data {
  width: calc(100% - 130px);
}
.plants-overview .item-plant .item-data.list-user {
  width: auto;
}
.plants-overview .item-plant .item-chart {
  width: 100%;
  height: 200px;
}
.plants-overview .item-plant .item-chart .simple-chart {
  border: 1px solid #F2F2F2;
  padding: 15px;
  padding-left: 0;
  margin-bottom: 30px;
  height: 100%;
  font-size: 10px;
}
.plants-overview .item-plant .item-status {
  width: 120px;
  display: flex;
  flex-direction: column;
}
.plants-overview .item-plant .item-status.user-item {
  flex-direction: row;
  width: 100%;
  align-self: center;
}
.plants-overview .item-plant .item-status .badge-big {
  width: 100%;
}
.plants-overview .item-plant .item-status .badge-big big {
  font-size: 18px !important;
  letter-spacing: 1px;
  line-height: 1.2;
  display: block;
}
.plants-overview .item-plant .item-status .badge-big.badge-light {
  white-space: normal;
  background: #F2F2F2;
  border-color: #ACACAC;
  color: #333333;
  font-size: 12px;
}
.plants-overview .item-plant .item-status .badge-big.badge-light.badge-light-primary {
  background: #008085;
  border-color: #008085;
  color: #FFFFFF;
}
.plants-overview .item-plant .item-status .badge-big.badge-light.badge-light-secondary {
  background: #b1003b;
  border-color: #b1003b;
  color: #FFFFFF;
}
.plants-overview .item-plant .item-notify {
  position: absolute;
  top: -15px;
  left: 15px;
  right: 15px;
  display: flex;
}
.plants-overview .item-plant .item-notify svg {
  margin: 0px 3px 0px 0px;
}
.plants-overview .item-plant .item-notify .timestamp {
  margin-left: auto;
}
.dark-mode .plants-overview .item-plant {
  background: #b1003b;
  color: #FFFFFF;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.plants-overview .badge {
  margin-bottom: 5px;
  display: block;
}
.plants-overview .badge:last-child {
  margin-bottom: 0px;
}
.plants-overview .badge.last-item {
  margin-bottom: auto;
  margin-right: 4px;
}
.plants-overview .badge.last-item.state-active {
  background-color: #42D179 !important;
  color: #FFFFFF !important;
}
.plants-overview .badge.last-item.state-inactive {
  background-color: #b1003b !important;
  color: #FFFFFF !important;
}
.plants-overview .badge.last-item.btn-send {
  background-color: #4267b2 !important;
  color: #FFFFFF !important;
}
.plants-overview .badge.btn-user-del {
  background-color: #b1003b !important;
  color: #FFFFFF !important;
  border: none;
  font-size: 0.8em;
}
.plants-overview .badge.btn-user-up {
  background-color: #008085 !important;
  color: #fff !important;
  border: none;
  font-size: 0.8em;
}
.plants-overview #btn-add-item {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.plants-overview #btn-add-item svg {
  display: block;
  margin: 0px auto;
  height: 30px;
}
.plants-overview.list-view .item-plant .item-status {
  flex-direction: column;
}
@media only screen and (min-width: 1200px) {
  .plants-overview.list-view {
    background: #FFFFFF;
    box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
    padding: 15px;
    border-radius: 10px;
    position: relative;
  }
  .plants-overview.list-view .list-head {
    display: flex;
  }
  .plants-overview.list-view .row {
    display: block;
  }
  .plants-overview.list-view div[class*=col-] {
    position: static;
    margin-bottom: 0px;
    width: 100%;
    max-width: none;
    flex: none;
  }
  .plants-overview.list-view .item-plant {
    border-bottom: 1px solid #D9D9D9;
    background: transparent;
    box-shadow: none;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 0px;
  }
  .plants-overview.list-view .item-plant a {
    align-items: center;
  }
  .plants-overview.list-view .item-plant .badge {
    margin: 0px;
    margin-left: 5px;
    margin-bottom: 5px;
  }
  .plants-overview.list-view .item-plant .badge.badge-big {
    padding: 5px 10px;
  }
  .plants-overview.list-view .item-plant .badge.badge-big svg,
  .plants-overview.list-view .item-plant .badge.badge-big big {
    display: inline-block;
    vertical-align: middle;
  }
  .plants-overview.list-view .item-plant .badge.badge-big svg {
    width: auto;
    height: 10px;
    margin: 0px 3px;
  }
  .plants-overview.list-view .item-plant .badge.badge-big big {
    font-size: 10px;
  }
  .plants-overview.list-view .item-plant .item-update {
    position: static;
    margin: 0px;
    margin: 0px 0px 0px 5px;
    width: auto;
    text-align: right;
  }
  .plants-overview.list-view .item-plant .item-chart {
    margin-bottom: 0px;
    margin-right: 7.5px;
  }
  .plants-overview.list-view .item-plant .item-data,
  .plants-overview.list-view .item-plant .item-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .plants-overview.list-view .item-plant .item-status {
    justify-content: flex-end;
  }
  .plants-overview.list-view .item-plant .item-data {
    width: 80%;
  }
  .plants-overview.list-view .item-plant .item-status {
    width: 20%;
  }
  .plants-overview.list-view .item-plant .item-notify {
    position: static;
  }
  .plants-overview.list-view .item-plant .item-plant-info {
    width: calc(45% - 75px);
    margin-right: 15px;
  }
  .plants-overview.list-view .item-plant .item-plant-info img {
    width: 25px;
    height: 25px;
  }
  .plants-overview.list-view .item-plant .item-plant-info svg {
    display: none;
  }
  .plants-overview.list-view .item-plant .item-plant-info .item-plant-info-text h2 {
    font-size: 14px;
    max-width: 90%;
  }
  .plants-overview.list-view #btn-add-item {
    position: absolute;
    top: -52.5px;
    right: 0px;
    height: auto;
  }
  .plants-overview.list-view #btn-add-item svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    height: 20px;
  }
  .dark-mode .plants-overview.list-view {
    background: #b1003b;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (min-width: 1850px) {
  .plants-overview.list-view {
    background: #FFFFFF;
    box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
    padding: 15px;
    border-radius: 10px;
    position: relative;
  }
  .plants-overview.list-view .list-head {
    display: flex;
  }
  .plants-overview.list-view .row {
    display: block;
  }
  .plants-overview.list-view div[class*=col-] {
    position: static;
    margin-bottom: 0px;
    width: 100%;
    max-width: none;
    flex: none;
  }
  .plants-overview.list-view .item-plant {
    border-bottom: 1px solid #D9D9D9;
    background: transparent;
    box-shadow: none;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 0px;
  }
  .plants-overview.list-view .item-plant a {
    align-items: center;
  }
  .plants-overview.list-view .item-plant .badge {
    margin: 0px;
    margin-left: 5px;
  }
  .plants-overview.list-view .item-plant .badge.badge-big {
    padding: 5px 10px;
  }
  .plants-overview.list-view .item-plant .badge.badge-big svg,
  .plants-overview.list-view .item-plant .badge.badge-big big {
    display: inline-block;
    vertical-align: middle;
  }
  .plants-overview.list-view .item-plant .badge.badge-big svg {
    width: auto;
    height: 10px;
    margin: 0px 3px;
  }
  .plants-overview.list-view .item-plant .badge.badge-big big {
    font-size: 10px;
  }
  .plants-overview.list-view .item-plant .item-update {
    position: static;
    margin: 0px;
    margin: 0px 0px 0px 5px;
    width: auto;
    text-align: right;
  }
  .plants-overview.list-view .item-plant .item-chart {
    margin-bottom: 0px;
    margin-right: 15px;
  }
  .plants-overview.list-view .item-plant .item-data,
  .plants-overview.list-view .item-plant .item-status {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .plants-overview.list-view .item-plant .item-status {
    justify-content: flex-end;
  }
  .plants-overview.list-view .item-plant .item-notify {
    position: static;
  }
  .plants-overview.list-view .item-plant .item-plant-info {
    width: calc(45% - 75px);
    margin-right: 15px;
  }
  .plants-overview.list-view .item-plant .item-plant-info svg {
    display: none;
  }
  .plants-overview.list-view .item-plant .item-plant-info .item-plant-info-text h2 {
    font-size: 14px;
    max-width: 90%;
  }
  .plants-overview.list-view #btn-add-item {
    position: absolute;
    top: -52.5px;
    right: 0px;
    height: auto;
  }
  .plants-overview.list-view #btn-add-item svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    height: 20px;
  }
  .dark-mode .plants-overview.list-view {
    background: #b1003b;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .plants-overview .item-plant {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .plants-overview .item-plant {
    padding: 15px;
  }
  .plants-overview .item-plant a {
    flex-direction: column;
  }
  .plants-overview .item-plant.inactive {
    cursor: default;
  }
  .plants-overview .item-plant .item-data {
    width: 100%;
  }
  .plants-overview .item-plant .item-status {
    width: 100%;
    margin-top: 15px;
  }
}

#tgl-view .buttons {
  width: 100px;
}
@media only screen and (max-width: 767px) {
  #tgl-view {
    display: none;
  }
}

.data-list .item-plant-info {
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 0px;
}
.data-list .item-plant-info label {
  margin: 0px;
}
.data-list .item-plant-info h4 {
  font-size: 14px;
}
.data-list .item-plant-info a {
  color: #b1003b;
}
.data-list .item-plant-info a:hover {
  color: #008085;
}
.dark-mode .data-list .item-plant-info {
  border-color: rgba(255, 255, 255, 0.1);
}

.plant-dashboard-data-list {
  margin-bottom: 5rem;
}
.plant-dashboard-data-list .data-list .item-plant-info:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .plant-dashboard-data-list {
    margin-bottom: 3rem;
  }
  .plant-dashboard-data-list .row div[class^=col-]:last-child .data-list .item-plant-info:first-child {
    border-top: 1px solid #D9D9D9;
  }
}

.wizard {
  background: #FFFFFF;
  box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
  border-radius: 10px;
  margin-bottom: 45px;
  padding: 15px;
}
.wizard .aligner {
  width: 100%;
}
.wizard .wizard-info {
  text-align: center;
}
.wizard .wizard-info svg {
  margin-bottom: 15px;
  display: inline-block;
  width: 100px;
  height: 100px;
  color: #008085;
}
.wizard .wizard-info p {
  margin: 15px auto;
  max-width: 200px;
  font-weight: 300;
}
.wizard .wizard-bullets,
.wizard .wizard-content,
.wizard .wizard-actions {
  margin: 30px auto;
  max-width: 450px;
}
.wizard .wizard-bullets {
  margin: 15px auto;
  text-align: center;
  position: relative;
  max-width: 100%;
}
.wizard .wizard-bullets:before {
  content: "";
  height: 1px;
  background: #D9D9D9;
  display: block;
  position: absolute;
  z-index: 1;
  left: 0px;
  right: 0px;
  top: 50%;
}
.wizard .wizard-bullets .bullet {
  position: relative;
  z-index: 10;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: #D9D9D9;
  display: inline-block;
  vertical-align: middle;
  margin: 0px 8px;
  width: 45px;
  height: 45px;
  line-height: 45px;
}
.wizard .wizard-bullets .bullet.done {
  background-color: #b1003b;
}
.wizard .wizard-bullets .bullet.current {
  background-color: #008085;
}
.wizard .wizard-actions {
  text-align: center;
}
.wizard .link-back {
  margin-top: 15px;
}
.wizard .link-back svg {
  color: #b1003b;
}
.wizard .link-back:hover svg {
  color: #008085;
}
@media only screen and (min-width: 990px) {
  .wizard .wizard-info {
    height: 100%;
    border-right: 1px solid #D9D9D9;
  }
  .wizard .wizard-info .aligner {
    position: sticky;
    top: 30px;
    padding-top: 30px;
  }
  .wizard .wizard-content {
    min-height: 40vh;
    display: flex;
    align-items: center;
  }
}
.dark-mode .wizard {
  background: #b1003b;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.dark-mode .wizard .wizard-info {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .wizard .wizard-bullets:before {
  background: rgba(255, 255, 255, 0.1);
}
.dark-mode .wizard .wizard-bullets .bullet:not(.current) {
  background-color: #484848;
}
.dark-mode .wizard .link-back svg {
  color: #FFFFFF;
}
.dark-mode .wizard .link-back:hover svg {
  color: #008085;
}

.plant-overview .data-list {
  margin-bottom: 15px;
}
@media only screen and (min-width: 990px) {
  .plant-overview {
    margin-top: -105px;
    position: sticky;
    top: 15px;
  }
}

@media only screen and (min-width: 990px) {
  .users-overview {
    margin-top: -105px;
    position: sticky;
    top: 15px;
  }
}
@media only screen and (max-width: 989px) {
  .users-overview {
    margin-top: 60px;
  }
}

.data-notify {
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: space-between;
}
.data-notify svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.data-notify .msg {
  color: #b1003b;
}
.dark-mode .data-notify .msg {
  color: #FFFFFF;
}
.data-notify .icon-notify {
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 28px;
  border-radius: 50%;
  margin-right: 5px;
}
.data-notify .timestamp {
  font-weight: 300;
}
.data-notify .timestamp svg {
  margin-left: 5px;
  margin-right: 5px;
}
.data-notify.noflex {
  display: block;
}
.data-notify.noflex .desc {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .data-notify {
    display: block;
  }
  .data-notify .timestamp {
    padding: 5px 0;
  }
  .data-notify .timestamp svg {
    float: left;
  }
}

.notify-list {
  border-top: 1px solid #D9D9D9;
  margin: 15px 0px;
}
.notify-list .data-notify {
  border-bottom: 1px solid #D9D9D9;
  padding: 8px 0px;
}
.notify-list a {
  display: block;
  color: #ACACAC;
}
.dark-mode .notify-list {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .notify-list .data-notify {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .notify-list a {
  color: #FFFFFF;
}

.data-user a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b1003b;
  text-decoration: none;
}
.dark-mode .data-user a {
  color: #FFFFFF;
}
.data-user svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  color: #ACACAC;
}
.data-user .name {
  margin-right: auto;
  color: #b1003b;
}
.data-user .name svg {
  margin-right: 5px;
}
.dark-mode .data-user .name {
  color: #FFFFFF;
}
.data-user .num svg {
  margin-left: 5px;
}
.data-user .status {
  width: 80px;
  margin-left: 15px;
}
.data-user .status .badge {
  display: block;
}

.user-list {
  margin: 15px 0px;
}
.user-list .data-user {
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 0px;
}

.alert {
  border: 0px;
  border-radius: 10px;
  padding: 0px 7.5px;
  margin-bottom: 7.5px;
}
.alert .msg {
  color: inherit;
}
.alert a {
  text-decoration: none;
  color: inherit;
}
.alert strong {
  color: inherit;
}
.alert.alert-danger {
  background: #DC342D;
  color: #FFFFFF;
}
.alert.alert-warning {
  background: #d4aa00;
  color: #FFFFFF;
}
.alert.alert-success {
  background: #42D179;
  color: #FFFFFF;
}
.alert.alert-light {
  color: inherit;
}
.alert.alert-light .msg {
  color: #333333;
  line-height: 1.1;
}
.alert.alert-dismissible .close {
  padding: 0px 10px;
}
.alert.alert-dismissible .close svg {
  width: 15px;
  height: 15px;
}

/** REMOTE CONSOLE **/
#remote-console {
  max-width: 600px;
  margin: 15px auto;
}

#console-container {
  background: #FFFFFF;
  box-shadow: 0px 3px 5px rgba(177, 0, 59, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}
#console-container canvas {
  margin: 0px auto;
  display: block;
  width: 100%;
  height: auto;
}

#console-menu {
  text-align: center;
}
#console-menu .btn {
  width: 100%;
  font-size: 10px;
}
#console-menu .btn svg {
  margin: 3px auto;
  width: 20px;
  height: 20px;
  display: block;
}
#console-menu .nav-buttons {
  background: rgba(177, 0, 59, 0.05);
  border-radius: 10px;
  padding: 7.5px 15px;
  margin: 15px -15px;
  margin-bottom: 45px;
}
#console-menu .nav-buttons .btn {
  margin: 7.5px 0px;
  border-color: rgba(177, 0, 59, 0.2);
}
#console-menu.console-menu-wrapped .nav-buttons {
  background-color: #e8e8e8;
}
#console-menu.console-menu-wrapped .nav-buttons-container {
  background-color: #e8e8e8;
  border: 1px solid #b2b2b2;
  border-radius: 10px;
  position: relative;
  padding-top: 1rem;
}
#console-menu.console-menu-wrapped .nav-buttons-container .nav-buttons-label {
  position: absolute;
  left: 1rem;
  top: -12px;
  background: #e8e8e8;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: #333;
  padding: 0.25rem 1rem;
  line-height: 20px;
  letter-spacing: 1px;
}
.dark-mode #console-menu.console-menu-wrapped .nav-buttons {
  background-color: #4a4a4a;
}
.dark-mode #console-menu.console-menu-wrapped .nav-buttons .btn {
  border-color: #3a3939;
}
.dark-mode #console-menu.console-menu-wrapped .nav-buttons-container {
  background-color: #4a4a4a;
  border: 1px solid #3a3939;
}
.dark-mode #console-menu.console-menu-wrapped .nav-buttons-container .nav-buttons-label {
  background: #4a4a4a;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #console-menu .dev-buttons .cmd-name {
    display: none;
  }
}

.disclaimer {
  background: #F0CF41;
  margin: 15px -15px;
  border-radius: 10px;
}
.disclaimer p {
  font-size: 14px;
  color: rgba(177, 0, 59, 0.8);
  line-height: 1.2;
}

/** GRAPHS **/
#realtime-schema {
  text-align: center;
  padding: 60px 0px;
}
#realtime-schema svg {
  width: 100%;
  height: auto;
}
#realtime-schema svg rect[stroke-width="3"] {
  stroke-width: 2;
}
#realtime-schema.is--admin svg #circle-storage {
  cursor: pointer;
}
.dark-mode #realtime-schema svg rect[fill="#fff"] {
  fill: #b1003b;
}
.dark-mode #realtime-schema svg rect[stroke="#f2f2f2"],
.dark-mode #realtime-schema svg line[stroke="#f2f2f2"] {
  stroke: #484848;
}
.dark-mode #realtime-schema svg g[fill="#fff"][stroke="#f2f2f2"] {
  fill: #b1003b;
  stroke: #484848;
}
.dark-mode #realtime-schema svg text[fill="#0c0c0c"] {
  fill: #FFFFFF;
}
.dark-mode #realtime-schema svg rect[stroke-width="3"] {
  stroke-width: 2;
}
.dark-mode #realtime-schema svg rect[stroke="#fff"] {
  stroke: #676767;
}
@media only screen and (max-width: 989px) {
  #realtime-schema {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  #realtime-schema {
    padding: 30px 0px;
  }
}

.graph {
  border: 1px solid #F2F2F2;
  /* padding: $spacing * 2; */
  padding-top: 20px;
  margin-bottom: 30px;
  height: 600px;
  font-size: 10px;
}
.dark-mode .graph {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .graph svg g[fill="#000000"] text {
  fill: #FFFFFF;
}
.dark-mode .graph svg g[stroke="#000000"] {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-opacity: 1;
}
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .graph#gr-energy-rate {
    height: 450px;
    padding-left: 20vw;
    padding-right: 20vw;
  }
}
.graph.main-chart {
  background: #FFFFFF;
  height: 450px;
}
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .graph.main-chart {
    height: 250px;
    padding: 0;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .graph {
    padding: 0px;
    border: 0px;
  }
  .graph.main-chart {
    height: 350px;
  }
}

.graph-title {
  margin-top: 7.5px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #333333;
}

.main-chart-sumup {
  position: absolute;
  top: -45px;
  right: 0;
  padding: 0 15px;
  width: 100%;
  justify-content: flex-end;
}
.main-chart-sumup .badge-big {
  min-width: 20%;
  max-width: 200px;
  padding: 8.5714285714px;
}
.main-chart-sumup .badge-big big {
  font-size: 24px !important;
  letter-spacing: 1px;
  line-height: 1.1;
  display: block;
}
.main-chart-sumup .badge-big.badge-light {
  white-space: normal;
  background: #F2F2F2;
  border-color: #ACACAC;
  color: #333333;
  font-size: 12px;
}
.main-chart-sumup .badge-big.badge-light.badge-light-primary {
  background: #008085;
  border-color: #008085;
  color: #FFFFFF;
}
.main-chart-sumup .badge-big.badge-light.badge-light-secondary {
  background: #b1003b;
  border-color: #b1003b;
  color: #FFFFFF;
}
.isMobile .main-chart-sumup {
  position: relative;
  top: auto;
  right: auto;
  flex-direction: column;
}
.isMobileLandscape .main-chart-sumup {
  flex-direction: row;
}
.isMobileLandscape .main-chart-sumup .badge {
  flex: 1 1 0;
  min-width: auto;
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .main-chart-sumup {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: column;
  }
  .main-chart-sumup .badge-big {
    min-width: 100%;
    max-width: 100%;
    margin: 0.5rem 0;
  }
}

/** FORMS **/
label:not(.form-check-label) {
  font-size: 0.8em;
}
label .req {
  font-size: 1.2em;
}
label.form-check-label-w-link a {
  color: #DC342D;
}
label.form-check-label-w-link a:hover {
  color: #b7251f;
}

legend {
  color: #333333;
  font-size: 1.2rem;
  display: flex;
  white-space: nowrap;
  align-items: center;
}
legend:before, legend:after {
  content: "";
  display: block;
  height: 1px;
  background: #D9D9D9;
}
legend:before {
  margin-right: 5px;
  width: calc(15px - 5px);
}
legend:after {
  margin-left: 5px;
  width: 100%;
}
.dark-mode legend {
  color: #FFFFFF;
}
.dark-mode legend:before, .dark-mode legend:after {
  background: rgba(255, 255, 255, 0.1);
}

fieldset {
  margin-top: 30px;
}
fieldset:first-child {
  margin-top: 0px;
}

select:not(.calendar-time select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='angle-down' class='svg-inline--fa fa-angle-down fa-w-8' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%230C0C0C' d='M119.5 326.9L3.5 209.1c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0L128 287.3l100.4-102.2c4.7-4.7 12.3-4.7 17 0l7.1 7.1c4.7 4.7 4.7 12.3 0 17L136.5 327c-4.7 4.6-12.3 4.6-17-.1z'%3E%3C/path%3E%3C/svg%3E") !important;
  background-position: right 10px center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.text-muted {
  color: #333333 !important;
  font-weight: 300;
}

.form-limit {
  max-width: 500px;
}

.form-control {
  border-radius: 100px;
  border-color: #D9D9D9;
  color: #333333;
  font-weight: 300;
}
.form-control::-moz-placeholder {
  color: #D9D9D9;
}
.form-control::placeholder {
  color: #D9D9D9;
}
.dark-mode .form-control {
  border-color: #FFFFFF;
}

textarea.form-control {
  border-radius: 15px;
}

.form-group label:not(.form-check-label) {
  margin-left: 1rem;
  margin-bottom: 0px;
}
@media only screen and (min-width: 1440px) {
  .form-group label:not(.form-check-label) {
    margin-left: 0;
  }
}
.form-group .form-text {
  margin-left: 1rem;
}
.form-group .input-group-prepend .input-group-text {
  border-radius: 100px;
  border-left: none;
  font-size: 11px;
  font-weight: 700;
}
.dark-mode .form-group .text-muted {
  color: #FFFFFF !important;
}
.form-group select {
  width: 100%;
}

.form-control-image {
  padding: 10px;
  border-radius: 100px;
  border: 1px solid #D9D9D9;
}

.form-gallery {
  margin: 1.5rem 0;
}
.form-gallery button {
  position: absolute;
  z-index: 10;
  top: -3px;
  right: -5px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.form-gallery .image {
  max-width: 30%;
  margin-bottom: 1rem;
  margin-right: 1rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
}
.form-gallery .image .img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.form-actions {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .form-actions .text-right {
    text-align: center !important;
    margin-top: 15px;
  }
}

.other-actions {
  margin-top: 60px;
}
.other-actions h6 {
  font-size: 0.8em;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .other-actions {
    text-align: center;
    margin-bottom: 30px;
  }
}

.progress {
  border-radius: 100px;
}

.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  color: #D9D9D9;
}

.form-toggle.checkbox label .toggle {
  margin-right: 5px;
}
.form-toggle.checkbox-inline .toggle {
  margin-right: 5px;
}
.form-toggle .form-check-label {
  color: #5d5d5d;
}
.form-toggle .toggle-group {
  width: 200%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left 0.35s;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.form-toggle .toggle {
  position: relative;
  overflow: hidden;
}
.form-toggle .toggle.btn {
  min-width: 59px;
  min-height: 34px;
  border-radius: 100px;
}
.form-toggle .toggle input[type=checkbox] {
  display: none;
}
.form-toggle .toggle .toggle-handle {
  width: 0;
  height: 100%;
  position: relative;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  border-width: 0 1px;
  background: #fff;
  border-radius: 100px;
}
.form-toggle .toggle .toggle-off.btn {
  padding-top: 8px;
  padding-left: 30px;
  background: #ACACAC;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}
.form-toggle .toggle .toggle-on.btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding-top: 8px;
  padding-right: 30px;
}
.form-toggle .toggle.off .toggle-handle {
  margin-left: 15px;
}
.form-toggle .toggle.off .toggle-group {
  left: -100%;
}
.dark-mode .form-toggle .form-check-label {
  color: #fff;
}

.chosen-container-multi {
  width: 100% !important;
}
.chosen-container-multi .chosen-choices {
  background: #fff !important;
  border-radius: 100px;
  border-color: #D9D9D9 !important;
  color: #333333;
  font-weight: 300;
  font-size: 1rem !important;
  min-height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  box-shadow: none;
}
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  min-height: calc(1.5em + 0.75rem + 2px) !important;
  padding: 0.375rem 0.75rem !important;
  color: #333333 !important;
  font-weight: 300 !important;
  font-size: 1rem !important;
  font-family: inherit !important;
}
.chosen-container-multi .chosen-choices li.search-choice {
  margin: 0.5rem 0 0.5rem 0.75rem !important;
  background: #F2F2F2 !important;
  border-color: #D9D9D9 !important;
  box-shadow: none !important;
}
.chosen-container-multi .chosen-drop {
  border: 1px solid #D9D9D9 !important;
  box-shadow: none !important;
  margin-top: 0.5rem;
}
.chosen-container-multi .chosen-drop .chosen-results li.highlighted {
  background: #008085;
  color: #fff;
}
.chosen-container-multi.chosen-container-active .chosen-choices {
  border-color: #ACACAC !important;
  box-shadow: none !important;
}

.img-share {
  margin: 60px auto;
  max-width: 800px;
  position: relative;
}
.img-share img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}
.img-share .values {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
}
.img-share .badge {
  width: 150px;
  margin-left: 7.5px;
}
.img-share .badge.badge-big {
  font-size: 10px;
}
.img-share .badge.badge-big svg {
  width: 60px;
  height: 60px;
}
.img-share .badge.badge-big big {
  font-size: 28px;
}
@media only screen and (max-width: 767px) {
  .img-share {
    margin: 30px auto;
  }
  .img-share .values {
    position: relative;
    margin-top: -22.5px;
    top: auto;
    right: auto;
  }
  .img-share .badge {
    margin: 0px 5px;
  }
}

.legend {
  text-align: center;
  margin: 15px 0px 30px 0px;
}
.legend .legend-item {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 15px;
  color: #333333;
  font-size: 0.8em;
}
.legend .legend-item:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #F2F2F2;
}
.legend .legend-item.t1:before {
  background: #D9D9D9;
}
.legend .legend-item.t2:before {
  background: #d4aa00;
}
.legend .legend-item.t3:before {
  background: #DC342D;
}

.area-credits p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}
.area-credits p a {
  color: inherit;
  text-decoration: underline;
}
.area-credits p a:hover {
  text-decoration: none;
}

#circle-storage #value rect {
  fill: #d4aa00;
}
#circle-storage #icon-battery,
#circle-storage #Pbat-OUT #arrow-2,
#circle-storage #Pbat-OUT #arrow,
#circle-storage #Pbat-IN #arrow-2,
#circle-storage #Pbat-IN #arrow {
  fill: #d4aa00;
}
#circle-storage #connection polyline {
  stroke: #d4aa00;
}
#circle-storage #dots-2 {
  stroke: #d4aa00;
}
#circle-storage #bg .meter {
  stroke: #d4aa00;
}

.notices-accordion .notice-item .card-header .btn {
  width: 100%;
}
.notices-accordion .notice-item .card-header .btn .icon svg {
  width: 20px;
  margin-right: 7.5px;
}
.notices-accordion .notice-item .card-header .btn .label {
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  line-height: 1.2;
}
.notices-accordion .notice-item .card-header .btn .label-info {
  text-align: left;
  font-style: italic;
  line-height: 1;
  padding-left: 20px;
}
.notices-accordion .notice-item .card-header .btn:active {
  transform: scale(1) !important;
}
.notices-accordion .notice-item .card-header h5 {
  font-weight: 700;
}
.notices-accordion .notice-item .card-body {
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .notices-accordion .notice-item .card-header {
    padding: 11.25px;
  }
  .notices-accordion .notice-item .card-header .btn .icon svg {
    width: 15px;
  }
  .notices-accordion .notice-item .card-header .btn .label-info {
    margin-top: 15px;
  }
}

/*
#circle-storage {

	text[font-size="20"] {
		font-size: 15px !important;
	}

}
*/
[data-name=dots].flux-out {
  animation: dash 60s linear infinite;
}

[data-name=dots].flux-in {
  animation: dash 60s linear infinite reverse;
}

text[data-name="--"][font-size="26"] {
  font-size: 32px;
}

text[data-name="--"][font-size="12"] {
  font-size: 18px;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}
/* Export Page template */
.export-page-template #viewport {
  padding: 15px;
  background: #FFFFFF;
  max-width: 1400px;
  margin: 15px auto;
}
.export-page-template #viewport .container-fluid {
  max-width: 100%;
}
.init .export-page-template #viewport {
  opacity: 0;
}
.export-page-template .graph-container .logo {
  background: #FFFFFF;
}
.export-page-template .graph-container .logo img {
  max-width: 250px;
  height: auto;
  width: auto;
}
.export-page-template .graph-container .export-period {
  margin: 15px 0;
}
.export-page-template .graph-container .export-period h6 {
  color: #ACACAC;
  font-size: 12px;
  font-style: italic;
  line-height: 1.4;
}
.export-page-template .graph-container .export-period .icon,
.export-page-template .graph-container .export-period .label {
  display: inline-flex;
  align-items: center;
  height: 30px;
}
.export-page-template .graph-container .export-period .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.export-page-template .graph-container .export-period .icon svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
}
.export-page-template .graph-container .export-period .label {
  color: #333333;
  font-size: 13px;
  font-weight: 300;
  border-radius: 100px;
}
.export-page-template .graph-container .data-list .item-plant-info:last-child {
  border-bottom: none;
}
.export-page-template .graph-container .graph {
  height: 400px;
}
.export-page-template .graph-container .graph#pieChart {
  height: 400px;
}
.export-page-template .graph-data-info {
  background: #F2F2F2;
}
.export-page-template .graph-data-info .item-plant-info-text label {
  font-size: 13px;
  color: #333333;
  line-height: 1;
}
.export-page-template .graph-data-info .item-plant-info-text h4 {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.export-page-template:after {
  display: none;
}

.input-group-dates {
  width: 350px;
  max-width: 100%;
}

/******NEW STYLE******/
.search {
  margin-right: -38px;
}

.upload-ok {
  background-color: #42D179 !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 100%;
}

.no-upload {
  background-color: #b1003b !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 100%;
}

.icon-list-user {
  width: calc(100% - 150px) !important;
}

.bedge-user-list {
  align-self: baseline;
}
.bedge-user-list.direction {
  flex-direction: column;
  width: 10%;
}
.bedge-user-list.w-290 {
  width: 290px !important;
}
.bedge-user-list.w-540 {
  width: 540px !important;
}
.bedge-user-list.w-788 {
  width: 788px !important;
}
.bedge-user-list.w-856 {
  width: 856px !important;
}
.bedge-user-list.w-610 {
  width: 604px !important;
}
.bedge-user-list.w-426 {
  width: 426px !important;
}

.d-content {
  display: contents;
}

.badge-gestore {
  background-color: #F0CF41 !important;
  color: #008085;
  font-size: 0.8em;
  width: 70px;
}

.badge-utente {
  background-color: #676767 !important;
  color: #fff;
  font-size: 0.8em;
  width: 70px;
}

.badge-attivo {
  background-color: #42D179 !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 70px;
}
.badge-attivo.badge-active-noact {
  width: 100%;
}

.badge-inattivo {
  background-color: #b1003b !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 70px;
}

.badge-pending {
  background-color: #4267b2 !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 70px;
}
.badge-pending.badge-active-noact {
  width: 100%;
}

.badge-restart {
  background-color: #117BB6 !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 70px;
}
.badge-restart.badge-active-noact {
  width: 100%;
}

.badge-wpro {
  background-color: #333333 !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 70px;
}
.badge-wpro.badge-active-noact {
  width: 100%;
}

.badge-sim {
  background-color: #008085 !important;
  color: #FFFFFF !important;
  font-size: 0.8em;
  width: 180px;
}

.w-100 {
  width: 100%;
}

.svg-list {
  width: 90px !important;
  align-self: flex-start;
}

.user-list-padding-sx {
  padding-left: 25px;
}
.user-list-padding-sx.w-pro-pd {
  padding-left: 22px !important;
}

.user-list-align-dx {
  text-align: right;
}

.bb {
  border-bottom: 1px solid #008085 !important;
}

.user-del-up {
  text-decoration: none !important;
  background: transparent;
  border: none;
}

.main-chart-user-comm {
  position: absolute;
  top: 90px;
  right: 210px;
  padding: 0 15px;
  width: 100%;
  justify-content: flex-end;
}
.main-chart-user-comm .badge-big {
  min-width: 20%;
  max-width: 200px;
  padding: 8.5714285714px;
}
.main-chart-user-comm .badge-big big {
  font-size: 24px !important;
  letter-spacing: 1px;
  line-height: 1.1;
  display: block;
}
.main-chart-user-comm .badge-big.badge-light {
  white-space: normal;
  background: #F2F2F2;
  border-color: #ACACAC;
  color: #333333;
  font-size: 12px;
}
.main-chart-user-comm .badge-big.badge-light.badge-light-primary {
  background: #008085;
  border-color: #008085;
  color: #FFFFFF;
}
.main-chart-user-comm .badge-big.badge-light.badge-light-secondary {
  background: #b1003b;
  border-color: #b1003b;
  color: #FFFFFF;
}
.isMobile .main-chart-user-comm {
  position: relative;
  top: auto;
  right: auto;
  flex-direction: column;
}
.isMobileLandscape .main-chart-user-comm {
  flex-direction: row;
}
.isMobileLandscape .main-chart-user-comm .badge {
  flex: 1 1 0;
  min-width: auto;
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .main-chart-user-comm {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: column;
  }
  .main-chart-user-comm .badge-big {
    min-width: 100%;
    max-width: 100%;
    margin: 0.5rem 0;
  }
}
@media only screen and (width: 1440px) {
  .main-chart-user-comm {
    position: absolute;
    top: 90px;
    right: 45px;
    padding: 0 15px;
    width: 100%;
    justify-content: flex-end;
  }
  .isMobile .main-chart-user-comm {
    position: relative;
    top: -406px;
    right: -803px;
    flex-direction: column;
  }
}

.main-chart-user-comm-user {
  position: absolute;
  top: 90px;
  right: 360px;
  padding: 0 15px;
  width: 100%;
  justify-content: flex-end;
}
.main-chart-user-comm-user .badge-big {
  min-width: 20%;
  max-width: 200px;
  padding: 8.5714285714px;
}
.main-chart-user-comm-user .badge-big big {
  font-size: 24px !important;
  letter-spacing: 1px;
  line-height: 1.1;
  display: block;
}
.main-chart-user-comm-user .badge-big.badge-light {
  white-space: normal;
  background: #F2F2F2;
  border-color: #ACACAC;
  color: #333333;
  font-size: 12px;
}
.main-chart-user-comm-user .badge-big.badge-light.badge-light-primary {
  background: #008085;
  border-color: #008085;
  color: #FFFFFF;
}
.main-chart-user-comm-user .badge-big.badge-light.badge-light-secondary {
  background: #b1003b;
  border-color: #b1003b;
  color: #FFFFFF;
}
.isMobile .main-chart-user-comm-user {
  position: relative;
  top: auto;
  right: auto;
  flex-direction: column;
}
.isMobileLandscape .main-chart-user-comm-user {
  flex-direction: row;
}
.isMobileLandscape .main-chart-user-comm-user .badge {
  flex: 1 1 0;
  min-width: auto;
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .main-chart-user-comm-user {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: column;
  }
  .main-chart-user-comm-user .badge-big {
    min-width: 100%;
    max-width: 100%;
    margin: 0.5rem 0;
  }
}
@media only screen and (width: 1440px) {
  .main-chart-user-comm-user {
    position: absolute;
    top: 90px;
    right: 45px;
    padding: 0 15px;
    width: 100%;
    justify-content: flex-end;
  }
  .isMobile .main-chart-user-comm-user {
    position: relative;
    top: -406px;
    right: -803px;
    flex-direction: column;
  }
}

.main-chart-user-comm-sdf {
  position: absolute;
  top: 410px;
  right: 360px;
  padding: 0 15px;
  width: 100%;
  justify-content: flex-end;
}
.main-chart-user-comm-sdf .badge-big {
  min-width: 10%;
  max-width: 200px;
  padding: 8.5714285714px;
}
.main-chart-user-comm-sdf .badge-big big {
  font-size: 24px !important;
  letter-spacing: 1px;
  line-height: 1.1;
  display: block;
}
.main-chart-user-comm-sdf .badge-big.badge-light {
  white-space: normal;
  background: #F2F2F2;
  border-color: #ACACAC;
  color: #333333;
  font-size: 12px;
}
.main-chart-user-comm-sdf .badge-big.badge-light.badge-light-primary {
  background: #008085;
  border-color: #008085;
  color: #FFFFFF;
}
.main-chart-user-comm-sdf .badge-big.badge-light.badge-light-secondary {
  background: #b1003b;
  border-color: #b1003b;
  color: #FFFFFF;
}
.isMobile .main-chart-user-comm-sdf {
  position: relative;
  top: auto;
  right: auto;
  flex-direction: column;
}
.isMobileLandscape .main-chart-user-comm-sdf {
  flex-direction: row;
}
.isMobileLandscape .main-chart-user-comm-sdf .badge {
  flex: 1 1 0;
  min-width: auto;
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .main-chart-user-comm-sdf {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: column;
  }
  .main-chart-user-comm-sdf .badge-big {
    min-width: 100%;
    max-width: 100%;
    margin: 0.5rem 0;
  }
}
@media only screen and (width: 1440px) {
  .main-chart-user-comm-sdf {
    position: absolute;
    top: 90px;
    right: 45px;
    padding: 0 15px;
    width: 100%;
    justify-content: flex-end;
  }
  .isMobile .main-chart-user-comm-sdf {
    position: relative;
    top: -406px;
    right: -803px;
    flex-direction: column;
  }
}

.label-id {
  width: 5% !important;
  text-align: center;
}
.label-id.user-list {
  width: 3% !important;
}
.label-id.ash {
  width: 5% !important;
}

.label-state {
  width: 7% !important;
  text-align: left;
}
.label-state.w-118 {
  width: 118px !important;
}

.label-name {
  /* padding-left: 8px!important; */
  justify-content: left;
  width: 30% !important;
}
.user-list-margin {
  margin-left: 25px;
}

.search-user-comm {
  right: 14px;
}
.search-user-comm svg {
  position: relative;
  right: -29px;
}

.send-invito {
  background-color: #117BB6 !important;
  color: #fff !important;
  border: none !important;
}

.btn-docu {
  margin-right: 20px;
}

.svg-doc {
  width: 30px;
}
@media only screen and (min-width: 1440px) {
  .svg-doc {
    width: 25px;
  }
}

.btn-file-list {
  background-color: #008085 !important;
  color: #fff !important;
  border: none !important;
  font-size: 0.8em;
}

.btn-fix {
  width: 200px;
}

.btn-wizard-cont {
  text-align: center;
}
.btn-wizard-cont .btn-wizard {
  background-color: #008085 !important;
  color: #fff !important;
  border: none !important;
  font-size: 1.1em;
  text-align: center;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-wizard-cont .btn-pdf {
  background-color: #b1003b !important;
  color: #fff !important;
  border: none !important;
  font-size: 1.1em;
  text-align: center;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-wizard-cont.update {
  text-align: left;
}

.new-doc {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.new-doc-icon {
  margin-left: 10px;
}

.user-t-doc {
  width: 100%;
  margin-bottom: 1rem;
  color: #333333 !important;
}
.user-t-doc label {
  font-weight: 400;
}
.user-t-doc th {
  color: #333333 !important;
}

.modal-dialog-docu {
  min-width: 1400px;
}

.centered {
  margin-left: 24%;
  margin-right: 24%;
}

.icon-btn {
  color: #333333;
}
.icon-btn :hover {
  color: #333333;
  text-decoration: none;
}

.info-block {
  margin-top: -40px !important;
  margin-left: 20% !important;
  margin-right: 20% !important;
  text-align: start;
}
.info-block .info-wizard {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 1440px) {
  .info-block {
    margin-top: -20px !important;
  }
  .info-block .info-wizard {
    font-size: 12px !important;
  }
}

.sdf-del {
  margin-left: 10px;
}

.p-filter-05 {
  padding-top: 30px;
}

.btn-frw {
  margin-top: 15px;
  width: 230px;
}

.lock-icon {
  margin-left: 40%;
}

.icon-inactive {
  color: #D9D9D9;
}
.icon-inactive a {
  color: #D9D9D9;
}
.icon-inactive a svg :hover {
  color: #D9D9D9;
  text-decoration: none;
  line-break: loose;
}

.color-red {
  color: #b1003b !important;
  font-size: 20px;
}
.color-red h4 {
  font-size: 1em;
}
@media only screen and (min-width: 1440px) {
  .color-red h4 {
    font-size: 0.7em;
  }
}

.modal-filter {
  display: flex;
  justify-content: start;
  align-items: baseline;
}
.modal-filter select {
  width: 150px;
}

.f1 {
  flex: 1;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #D9D9D9;
  border-radius: 30px !important;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
}

.province {
  display: flex;
  justify-content: center;
}
.province .p-badge {
  border: 1px solid;
  width: 75px;
  margin-bottom: 0;
  margin-right: 5px;
}
.province.multi-province {
  justify-content: start;
  padding-left: 7px;
}

.multi-prov {
  margin-left: 30px;
}
.multi-prov .prov-badge {
  border: 1px solid;
  border-radius: 10px;
  text-align: center;
  padding: 3px;
  font-size: 8px;
  display: inline-block;
  width: 75px;
}

.simulator {
  font-size: 15px !important;
}

.sim-svg {
  display: block;
  width: 246px;
  padding-left: 20%;
}

.sim-actors {
  min-width: 700px;
  text-align: start;
  padding: 5px;
  border: 1px solid #008085;
  border-radius: 10px;
  background-color: transparent;
  font-size: 20px;
}
.sim-actors strong {
  float: right;
  padding-right: 10px;
}

.upload-file-modal {
  margin-bottom: 20px;
}

.leaflet-attribution-flag {
  display: none !important;
}

.btn-wizard {
  border: 0;
  background: none;
  border-radius: 10px;
}

.icon-mr-5 {
  margin-right: 5px;
}

.icon-wizard {
  place-content: space-between;
}

.modal-check {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.modal-check h4 {
  margin-bottom: 20px;
}

.modal-check button {
  width: 100px;
}

.simulazione-filtri {
  display: flex;
}

.btn-check {
  width: 100px;
}

.order-arrow {
  border-bottom: 0 !important;
  white-space: nowrap;
  width: 1px;
}

.order-arrow svg {
  width: 10px;
  margin-left: 4px;
}

.justy-end {
  justify-content: end;
}

.btn-simulatore {
  border: none;
  background: transparent;
}

.btn-simulatore-chiudi {
  border: none;
  background: transparent;
}
.btn-simulatore-chiudi span {
  background-color: #b1003b !important;
}

.col-no-wrap {
  white-space: nowrap;
  width: 1px;
}

.icon-sim {
  justify-content: center;
}

.sim-no-btn {
  cursor: default;
}

.no-wrap {
  white-space: nowrap;
  width: 1px;
}

.user-table {
  font-size: 1.1em !important;
}

.filer-select {
  min-width: 200px;
}

.icon-sim {
  max-height: 500px;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.tabs-page-nav a.btn:active {
  transform: unset !important;
}
.tabs-page-nav a.btn {
  background-color: #f2f2f2;
}
.tabs-page-nav a.btn.active {
  border-color: #b1003b;
  background-color: #b1003b;
  color: #FFFFFF;
}
.tabs-page-nav a.link-active:hover {
  background-color: #b1003b;
  color: #FFFFFF;
}

/** LOADER **/
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  animation: spin 2s linear infinite;
  background: #b1003b;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.space {
  width: 29px;
}

.no-requst-margin {
  margin-top: -50px;
}

/** SUCCESS PAGE **/
.success-lablel {
  color: #b1003b;
  font-weight: 500;
}

.riepilogo-payment {
  padding-right: 0 !important;
  /**padding-top: 10px!important;**/
}

.success-align {
  align-self: flex-start !important;
  padding-top: 85px;
}

.btn-renew {
  color: #F0CF41 !important;
}

.txt-msg {
  color: #ACACAC !important;
}

.link-edit {
  color: #484848 !important;
}
.link-edit:hover:after {
  color: #b1003b !important;
  text-decoration: none !important;
  content: " >Edit";
}

.badge-aziendale {
  padding-right: 8px !important;
  width: auto !important;
}

/* MEDIA QUERIES WIZARD */
@media screen and (max-width: 600px) {
  .filter-mobile-wrapper {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .filter-mobile-wrapper .filter-mobile {
    width: 100% !important;
  }
  .filter-mobile-wrapper label {
    width: 30%;
  }
  .filter-mobile-wrapper .select-wizard {
    width: 100% !important;
  }
  .filter-mobile-wrapper select {
    width: 100% !important;
  }
}
@media screen and (max-width: 449px) {
  .search-mobile {
    width: 95% !important;
  }
  .mobile-table {
    display: inline-grid;
  }
}
@media screen and (min-width: 992px) and (max-width: 1439px) {
  .info-block-mobile {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
  .info-block-mobile strong {
    white-space: nowrap;
  }
}
@media screen and (min-width: 992px) and (max-width: 1302px) {
  .p13-bullet {
    margin: 0px 2px !important;
  }
}
.gestore {
  width: 125px !important;
}

.pl-18 {
  padding-left: 18px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

@media screen and (min-width: 992px) and (max-width: 2500px) {
  .ml_78 {
    margin-left: -78px !important;
  }
  .ml_42 {
    margin-left: -42px !important;
  }
}
/** Modifiche 09/01/24 **/
.payment-filter {
  display: flex;
  flex-direction: row;
}

.payment-filter .modal-filter {
  flex: 1;
}

.payment-filter .modal-filter .form-group {
  flex: 1;
  margin-left: 10px;
}

.no-w {
  white-space: nowrap !important;
}

.svg-list-2 {
  width: 40px !important;
  margin-left: 5px;
}

/** Modifiche 10/01/23 **/
.max-c {
  width: -moz-max-content !important;
  width: max-content !important;
}

.mr-label {
  margin-right: 48px;
}

/** Modifiche Mobile **/
@media screen and (max-width: 490px) {
  .wizard-bullets span {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    margin: 0px !important;
  }
  .no-w {
    white-space: nowrap !important;
  }
  .t-mob {
    overflow: auto;
  }
  .t-mob tbody th {
    width: 160px !important;
  }
  .t-mob td {
    padding-left: 0px !important;
    width: 140px !important;
  }
  .t-mob tbody td {
    width: 565px !important;
    padding-left: 36px !important;
    padding-right: 0px !important;
  }
  .t-mob tbody td.date-mob {
    padding-left: 46px !important;
    padding-right: 30px !important;
  }
  .filter-mob-type {
    justify-content: end !important;
  }
  /** Tabella Wizard 5**/
  .w5-action-title {
    text-align: right !important;
    width: 100%;
  }
  .w5-action-icon {
    text-align: right !important;
  }
  /** Tabella richiesta-documenti-comunita **/
  .filter-mob {
    flex-direction: column !important;
  }
  .m-doc-title {
    padding-right: 30px !important;
  }
}
.side-menu-icon {
  margin-left: 5px !important;
  margin-right: 0px !important;
}

/** MODIFICHE 19/02/2024 **/
.filter-bar {
  padding-top: 30px;
  padding-bottom: 30px;
}

.result-list-icon {
  max-width: 160px;
  margin: 3rem auto;
}
.result-list-icon svg {
  display: block;
  padding-left: 30px;
}

@media print {
  .print-table {
    display: table;
    width: 100%;
  }
  .print-table-row {
    display: table-row;
  }
  .print-table-cell {
    display: table-cell;
    width: 50%;
  }
  .print-table-cell.col-md-4 {
    display: table-cell;
    width: 33.3333333333% !important;
  }
  .avoid-page-break {
    page-break-inside: avoid;
  }
}
.fw-bold {
  font-weight: 700 !important;
}/*# sourceMappingURL=main.css.map */