/*==============================================================================
============================== MAIN ============================================
==============================================================================*/

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0px;
  background-color: #f0f0f2;
  color: #333333;
  font-family: 'Titillium Web';
  font-size: 14px;
}

#main-body.popup-open {
  overflow: hidden;
}

#body {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/*==============================================================================
============================== MARGIN ==========================================
==============================================================================*/

.mt-0 {
  margin-top: 0em;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mb-0 {
  margin-bottom: 0em;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mr-2 {
  margin-right: 2em;
}

/*==============================================================================
============================== PADDING =========================================
==============================================================================*/

.pt-0 {
  padding-top: 0em !important;
}

.pb-0 {
  padding-bottom: 0em !important;
}

/*==============================================================================
============================== ALLGEMEIN =======================================
==============================================================================*/

.align-center {
  text-align: center;
}

.semibold {
  font-weight: 600;
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

.uppercase {
  text-transform: uppercase;
}

.hidden{
  display: none !important;
}



/*==============================================================================
============================== HEADS ===========================================
==============================================================================*/


h2 {
  font-size: 1.4em;
  line-height: 1.4em;
  /*text-transform: uppercase;*/
  margin-top: 0em;
  margin-bottom: 0em;
}

h3 {
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #222222;
}

h4 {
  font-size: 1em;
  line-height: 1em;
  font-weight: 400;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #888887;
  text-transform: uppercase;
}

h5 {
  font-weight: 400;
  font-size: 0.8em;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #222222;
}

h6 {
  font-weight: 400;
  font-size: 0.8em;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #A1A1A1;
}


.col-text-item {
  margin-bottom: 20px;
}

/*==============================================================================
============================== HEADER ==========================================
==============================================================================*/

#header {
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0px;
  background-color: #ffffff;
  border-bottom: 1px solid #dbdbdd;
  z-index: 100;
}

#header.closed {
  height: 115px;
}

#header.closed .header-content-sub-title {
  display: none;
}

#header.header-home {
  background-image: url(../img/header_straight_1.png);
}

#header.header-strategy {
  background-image: url(../img/header_straight_2.png);
}

#header.header-tank {
  background-image: url(../img/header_straight_3.png);
}

#header.header-settings {
  background-image: url(../img/header_straight_4.png);
}

.header-content {
  display: flex;
  flex-wrap: wrap;
  width: calc( 100% - 120px );
  color: #fff;
  padding-left: 20px;
}

.header-content-status {
  display: flex;
  width: 100%;
  height: 60px;
}

.header-content-status > div {
  /*width: 50%;*/
  height: 100%;
  padding-top: 1em;
}

.header-content-status-left {
  width: 40px;
}

.header-content-status-right {
  width: calc( 100% - 40px );
  display: flex;
  justify-content: flex-end;
}

.header-content-status-power {
  padding-right: 4px;
}


.header-content-text h2 {
  font-size: 1.8em;
  margin-top: 0px;
  margin-bottom: 0.4em;
  color: #ffffff;
  text-transform: none;
}

.header-content-text h5 {
  font-size: 1em;
  font-weight: 400;
  color: #ffffff;
}

.header-logo {
  position: absolute;
  top: -10px;
  right: 20px;
}

.header-content-status-item {
  display: flex;
  /*justify-content: right;*/
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}

.header-content-status-item-icon {
  display: flex;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.header-content-status-item-text {
  display: flex;
  justify-content: center;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  padding-top: 4px;
}

.header-content-status-sync {
  font-size: 0.7em;
  margin-bottom: 0.3em;
}


.battery-status {
  background: #143bbc;
  padding-left: 5px;
  padding-right: 5px;
}

.battery {
  border: 1px solid #ffffff;
  border-radius: 2px;
  width: 30px;
  height: 14px;
  position: relative;
  padding-left: 5px;
  display: flex;
  align-items: center;
}

.battery .battery-charge {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #ffffff;
  opacity: 0.3;
  left: 0px;
}

/*
.battery .battery-charge.battery-charge-40 {
  width: 40%;
}
*/

.battery::after {
  content: " ";
  display: block;
  width: 4px;
  height: 8px;
  background-color: #ffffff;
  position: absolute;
  left: 100%;
  top: 2px;
}

.battery > span {
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
}

.header-content-title {
  padding-top: 20px;
}

.header-content-title h1 {
  color: #333333;
  margin: 0px;
}


/*==============================================================================
============================== NAV =============================================
==============================================================================*/

#nav {
  position: fixed;
  bottom: 0px;
  height: 100px;
  width: 100%;
  background-color: #FCFCFC;
  z-index: 100;
}

.nav-top-line {
  height: 3px;
  width: 100%;
  background-image: url(../img/nav_line.png);
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 100;
}

ul.nav-links {
  display: flex;
  list-style-type: none;
  justify-content: space-around;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 30px;
  padding-bottom: 20px;
}

ul.nav-links li {
  display: flex;
  width: 60px;
  /*height: 50px;*/
}

ul.nav-links a {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
}

ul.nav-links a > img {
  width: 59px;
  height: 24px;
}

ul.nav-links a > h6 {
  font-weight: 400;
  font-size: 0.65em;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  text-decoration: none;
  color: #697D58;
}

ul.nav-links a > .nav-active-line-container {
  display: flex;
  width: 100%;
  height: 3px;
  justify-content: center;
}

ul.nav-links .nav-item a > .nav-active-line-container .nav-active-line {
  display: block;
  width: 22px;
  border-bottom: 2px solid transparent;
}


ul.nav-links .nav-item.nav-item-home.active a > .nav-active-line-container .nav-active-line {
  border-bottom: 2px solid #6eb631;
}

ul.nav-links .nav-item.nav-item-strategy.active a > .nav-active-line-container .nav-active-line {
  border-bottom: 2px solid #f9af29;
}

ul.nav-links .nav-item.nav-item-tank.active a > .nav-active-line-container .nav-active-line {
  border-bottom: 2px solid #4569b0;
}

ul.nav-links .nav-item.nav-item-settings.active a > .nav-active-line-container .nav-active-line {
  border-bottom: 2px solid #6B6B6B;
}


/*==============================================================================
============================== MENU ============================================
==============================================================================*/

#menu {
  min-height: 100vh;
  width: 300px;
  display: flex;
  border-right: 1px solid #dbdbdd;
  padding-top: 120px;
}

.menu-inner {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.menu-inner > a {
  display: block;
  padding: 10px;
  font-size: 1.4em;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #dbdbdd;
  border-top: 1px solid #dbdbdd;
}

/*==============================================================================
============================== LINK ============================================
==============================================================================*/

.link-container {
  display: flex;
  justify-content: center;
}

.link-container a {
  color: #888887;
  font-size: 0.8em;
}

/*==============================================================================
============================== CONTENT =========================================
==============================================================================*/

.content {
  padding-top: 120px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 100px;
  margin: auto;
  width: 100%;
  /*max-width: 340px;*/
  min-height: 100vh;
  width: calc(100% - 300px);
}

.content-inner{
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.content-bottom {
  display: flex;
  width: 100%;
  justify-content: center;
}

/*==============================================================================
============================== BREADCRUMBS =====================================
==============================================================================*/

.breadcrumbs {
  font-size: 1.6em;
}

.breadcrumbs span {
  font-weight: 700;
}

.breadcrumbs a {
  /*text-decoration: none;*/
  color: #333333;
}

.breadcrumbs {
  display: flex;
  justify-content: space-between;
}

.breadcrumbs-right {
  display: flex;
  align-items: center;
}

.table-search {
  display: flex;
}

.table-search > .table-search-label > label,
.table-search > .table-search-input > input {
  font-size: 18px;
  display: block;
}

.table-search > .table-search-input > input {
  width: 150px;
  margin-left: 10px;
  font-weight: 400;
}

/*==============================================================================
============================== LOGIN ===========================================
==============================================================================*/

.login-content {
  width: 100%;
  height: 100%;
  min-height: 100hv;
  display: flex;
  justify-content: center;
  align-items: center;
}


.login-container {
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #c2c2c4;
  width: 100%;
  max-width: 500px;
}

/*==============================================================================
============================== TOP BOX =========================================
==============================================================================*/


.top-box-container {
  display: flex;
  justify-content: space-between;
}


/*==============================================================================
============================== CONTENT BOX =====================================
==============================================================================*/

.content-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content-box-half {
  width: calc( 50% - 20px );
  margin-bottom: 20px;
}

.content-box-full {
  width: 100%;
  margin-bottom: 20px;
}

.content-box-sub {
  display: flex;
  justify-content: space-between;
}

.content-box-sub-half {
  width: calc( 50% - 10px );
}

.content-box-inner {
  background-color: #ffffff;
  padding: 20px;
}

.content-data-list-item {
  display: flex;
  margin-bottom: 5px;
}

.content-data-list-item-input {
  width: calc( 100% - 150px );
}

.content-data-list-item-input > select,
.content-data-list-item-input > input {
  width: 100%;
  max-width: 200px;
}

.content-data-list-item-input > select.form_error,
.content-data-list-item-input > input.form_error {
  border-color: red;
}


.content-data-list-item > span {
  display: inline-block;
  width: 150px;
}

.content-box-inner > h2 {
  margin-bottom: 1.2em;
  text-transform: uppercase;
}


@media screen and (max-width: 1980px) {
  .content-box-half {
    width: 100%;
  }
}


/*
.content-box {
  background-color: #ffffff;
  padding: 20px;
  width: 100%;
}



.content-box.content-box-schema {
  width: 800px;
}

.content-box.content-box-left {
  margin-right: 2em;
}

.content-box.content-box-geyser_data {
  width: calc( 100% - 2em - 800px );
}

.content-data-list {
  font-size: 1.2em;
}

.content-data-list-item > strong {
  display: inline-block;
  width: 150px;
}

content-box-sub-half*/


/*
.content-box.content-box-70 {
  width: 70%;
}

.content-box.content-box-30 {
  width: 30%;
}

.content-box.content-box-left {
  margin-right: 2em;
}

.content-box.content-box-70.content-box-left {
  width: calc( 70% - 2em );
} */


/*
.content-box-half
*/




/*==============================================================================
============================== GEYSER SCHEMA ===================================
==============================================================================*/

#geyser_schema_control {
  position: relative;
}

#geyser_schema_control > img {
  width: 600px;

}

.geyser_control_tank {
  position: absolute;
  background-color: #c8c3c3ab;
  width: 30px;
  height: 80px;
}

.geyser_control_tank_text {
  position: absolute;
  top: calc(50% - 10px);
  left: 0px;
  rotate: 90deg;
}

.geyser_control_tank_fill {
  position: absolute;
  bottom: 0px;
  background-color: #56caffad;
  width: 100%;
}

.geyser_control_button {
  position: absolute;
  display: flex;
}



.geyser_control_button > button {
  border: none;
  width: 100px;
  height: 50px;
  background-color: #ff0000;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  font-size: 12px;
}

.geyser_control_button.on > button {
  background-color: #008000;
}

#geyser_control_valve_2 {
  top: 48px;
  left: 54px;
}

#geyser_control_valve_12 {
  top: 370px;
  left: 287px;
}

#geyser_control_valve_13 {
  top: 206px;
  left: 400px;
}

#geyser_control_valve_14 {
  top: 313px;
  left: 400px;
}

#geyser_control_pump_8 {
  top: 35px;
  left: 262px;
}

#geyser_control_pump_10 {
  top: 35px;
  left: 404px;
}

#geyser_control_pump_11 {
  top: 212px;
  left: 256px;
}


#geyser_control_tank_1 {
  top: 121px;
  left: 193px;
}

#geyser_control_tank_2 {
  top: 121px;
  left: 278px;
}

#geyser_control_tank_3 {
  top: 121px;
  left: 397px;
}


/*==============================================================================
============================== HOME ============================================
==============================================================================*/

.home-container {
  min-height: calc( 100vh - 360px );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-notification-container {
  height: 70px;
  margin-bottom: 20px;
}

.home-geyser {
  padding-bottom: 10px;
}

.home-status-image {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.home-status-status {
  display: flex;
  justify-content: center;
}

.home-status-status-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

.home-status-status-icon > div {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #F95329;
}

.home-status-treatment {
  text-align: center;
}

.home-quickstart {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*==============================================================================
============================== TABLE ===========================================
==============================================================================*/

.table-container {
  width: 100%;
  background-color: #ffffff;
}

.table-container > .dt-container {
  border: 1px solid #dbdbdd;
  /*padding-bottom: 20px;*/
}


.table-container div.dt-container div.dt-layout-row.dt-layout-table {
  margin-top: -1.5em;
}

.table-icon-link {
  color: #333;
  background: transparent;
  border: none;
}

/*==============================================================================
============================== STRATEGIE =======================================
==============================================================================*/

#strategy-add-btn {
  position: fixed;
  bottom: 70px;
  left: calc(50% - 30px);
  z-index: 150;
  padding: 0px;
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
}

.strategy-item {
  margin-bottom: 2em;
  position: relative;
}

.strategy-body {
  /*display: flex;*/
  width: 100%;
  /*padding: 0.5em 1em;*/
  background: #ffffff;
  border-radius: 8px;
  box-shadow: #00000029 0px 3px 6px;
  position: relative;
}

.strategy-body.inactive::before {
  content: " ";
  position: absolute;
  display: block;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #ffffffc7;
  z-index: 10;
}

.strategy-cycle-add button {
  width: 100%;
  padding: 1em 1em;
  border: none;
  background: transparent;
}

.strategy-cycle-add button h4 {
  text-transform: none;
  margin-bottom: 1em;
}

.strategy-header {
  position: relative;
  display: flex;
  padding: 0.4em 1em;
}

.strategy-title {
  width: calc( 100% - 30px );
}

.strategy-title > input {
  width: 100%;
  color: #222222;
  font-size: 1.6em;
  font-weight: 700;
  background: transparent;
  border: none;
}

.strategy-edit > button {
  background: transparent;
  border: none;
  width: 30px;
}

.strategy-cycle-edit > button {
  background: transparent;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0px;
  display: flex;
  padding-top: 2px;
}

.strategy-cycle-edit > button > img {
  width: 15px;
  height: 4px;
}

.strategy-cycle-edit {
  display: flex;
  justify-content: flex-end;
}

.strategy-cycle-container {
  width: 100%;
}

.strategy-cycle-item {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0.8em 0.9em;
  border-bottom: 1px solid #00000029;
}

.strategy-cycle-left {
  min-width: 160px;
}

.strategy-cycle-right {
  width: 100%;
}

.strategy-cycle-data {
  display: flex;
}

.strategy-cycle-title h3 {
  font-size: 0.9em;
  margin-bottom: 0.8em;
}

.strategy-cycle-title h3 > span {
  font-weight: 400;
  padding-left: 1em;
}

.strategy-cycle-imagetext {
  display: flex;
}

.strategy-cycle-image {
  display: flex;
  align-items: center;
}

.strategy-cycle-image-turbo {
  width: 12px;
  height: 12px;
  background-color: #6EB631;
  border-radius: 6px;
}

.strategy-cycle-text {
  font-size: 1.2em;
  padding-left: 0.3em;
}

.strategy-cycle-duration {
  margin-left: 1em;
}


.strategy-cycle-toggle {
  margin-bottom: 0.8em;
  display: flex;
  justify-content: flex-end;
}

.strategy-cycle-days {
  padding-top: 2em;
  display: flex;
}

.strategy-cycle-day {
  width: 14px;
}

.strategy-cycle-day-circle {
  display: flex;
  justify-content: center;
}

.strategy-cycle-day-circle > div {
  width: 6px;
  height: 6px;
  border: 1px solid #F8B439;
  border-radius: 3px;
}

.strategy-cycle-day.active .strategy-cycle-day-circle > div {
  background-color: #F8B439;
}

.strategy-cycle-day-day {
  color: #888887;
  font-size: 0.7em;
  font-weight: 700;
  text-align: center;
}

.strategy-edit-menu {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
  z-index: 80;
  display: none;
}

.strategy-edit-menu.open {
  display: block;
}

.strategy-edit-menu-options {
  background-color: #fff;
  box-shadow: #00000029 0px 3px 6px;
  padding: 0em 0.2em;
  position: relative;
  z-index: 82;
}

.strategy-edit-menu.open.open-top .strategy-edit-menu-options {
  top: -188px;
  box-shadow: #00000029 0px -3px 6px;
}

.strategy-edit-menu.open.open-top .strategy-edit-menu-close button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.strategy-edit-menu-option {
  text-align: center;
  font-size: 1em;
  font-weight: 700;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #00000029;
}

.strategy-edit-menu-option:last-child {
  border-bottom:none;
}

.strategy-edit-menu-close {
  display: flex;
  justify-content: flex-end;
}

.strategy-edit-menu-close button {
  position: relative;
  z-index: 81;
  padding: 0.8em 1em;
  background-color: #fff;
  border: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: #00000029 0px 3px 6px;
}

.strategy-yesno-container {
  position: absolute;
  right: 0px;
  top: 4px;
  display: flex;
}

.strategy-yesno-container button {
  background-color: #F8F8F8;
  width: auto;
  padding-left: 0.6em;
  padding-right: 0.6em;
}

#form-cycle-duration-container {
  position: relative;
}

#form-cycle-duration-container .picker.picker-open {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

#form-cycle-duration-container .picker-dialog {
  width: 200px;
}

#form-cycle-duration-title-min {
  position: absolute;
  left: 30px;
  top: 38px;
}

#form-cycle-duration-title-sec {
  position: absolute;
  right: 30px;
  top: 38px;
}

/*==============================================================================
============================== TANK ============================================
==============================================================================*/

.tank-container {
  width: 100%;
}

.tank-item {
  display: flex;
  width: 100%;
  min-height: 109px;
  padding: 0.5em 1em;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: #00000029 0px 3px 6px;
  position: relative;
}

.tank-line {
  border-right: 1px solid #00000029;
}

.tank-left {
  padding-right: 0em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 100px;
}

.tank-right {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.tank-titel h2 {
  font-size: 1.4em;
  line-height: 1.4em;
  text-transform: uppercase;
  margin-top: 0em;
  margin-bottom: 0em;
}

.tank-item h3 {
  font-weight: 600;
  font-size: 1.2em;
  margin-top: 0em;
  margin-bottom: 0em;
}

.tank-item h5 {
  font-weight: 400;
  font-size: 0.8em;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #222222;
}

.tank-item h6 {
  font-weight: 400;
  font-size: 0.8em;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #A1A1A1;
}

.tank-titel h4 {
  font-size: 1em;
  line-height: 1em;
  font-weight: 400;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #888887;
  text-transform: uppercase;
}

.tank-status-content {
  display: flex;
}

.tank-status-content-icon {
  width: 30px;
}

.tank-status-content span {
  font-size: 0.8em;
  font-weight: 600;
  color: #888887;
  display: flex;
  align-items: center;
  margin-left: 0.5em;
}

.tank-edit-block {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.tank-content-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.tank-content-block-text {
  padding: 0.5em 0em 1.5em 1.5em;
}

.tank-content-block-center {
  justify-content: center;
  align-items: center;
}

.tank-content-block-edit {
  display: flex;
  align-items: flex-end;
}

.tank-content-icon {
  display: flex;
  justify-content: center;
}

.tank-toggle-container {
  display: flex;
  align-items: center;
  /*margin-right: 20px;*/
  position: relative;
  z-index: 10;
}

.tank-item.inactive::before {
  content: " ";
  position: absolute;
  display: block;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #ffffffc7;
  z-index: 10;
}


/*==============================================================================
============================== SETTINGS ========================================
==============================================================================*/

.settings-link-list {

}

.settings-link {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #00000029;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  text-decoration: none;
}

.settings-link h2 {
  text-transform: none;
  color: #222222;
}

.settings-link .settings-link-icon {
  display: flex;
}

.settings-link .settings-link-icon > span {
  display: flex;
  align-items: center;
  color: #F95329;
  font-size: 1.2em;
  font-weight: 700;
  margin-right: 1em;
}

.faq-item {
  display: flex;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 20px;
}

.faq-item-icon {
  padding-right: 20px;
  display: flex;
  align-items: center;
}

.faq-link {
  text-align: center;
}

.faq-link a {
  font-weight: 700;
  color: #F8B439;
}


/*==============================================================================
============================== FORM ============================================
==============================================================================*/

.form-container {
  width: 100%;
}

.form-input-container,
.form-item {
  display: flex;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 10px;
  padding-top: 10px;
}

.form-input-container input[type="password"] {
  max-width: 150px;
}

.form-input-container .form-input-inline-btn {
  width: 30px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
}

.form-input-btn-container {
  display: flex;
  justify-content: center;
}

.form-input-btn {
  padding: 0.5em 2em;

  background-color: transparent;
  color: #39a2f8;
  border: 1px solid #39a2f8;
  border-radius: 2px;
}

.form-img-button {
  border: none;
}

.form-input-container-2 {
  border-bottom: 1px solid #00000029;
  padding-bottom: 0.3em;
}

.form-input-container-2.form-error {
  border-bottom: 1px solid #ff0000;
}

.form-input-container-2 label {
  font-size: 0.8em;
  color: #222222;
}

.form-input-container-2 input {
  background-color: transparent;
  border: none;
  width: 100%;
  color: #222222;
  font-size: 0.9em;

}

.form-input-container-2 .form-input {
  display: flex;
  margin-top: 0.3em;
}

.form-input-container-2 .form-input .form-input-icon {
  display: flex;
  width: 12px;
  height: 30px;
  align-items: center;
}

.form-input-container-2 .form-input .form-input-icon.form-input-icon-width-auto {
  width: auto;
}

.form-input-container-2 .form-input .form-input-icon + input {
  padding-left: 1em;
}

.form-input-container-2 .form-input .form-input-input.form-input-input-type-2 {
  font-size: 1.2em;
}

.form-input-container-2 .form-input .form-input-input.form-input-input-type-2::placeholder {
  color: #BFBFBF;
  font-style: italic;
}


.form-input-container-3 {
  border-bottom: 1px solid #00000029;
  padding-bottom: 0.6em;
}

.form-input-container-3 .form-input-header {
  display: flex;
  justify-content: space-between;
}

.form-input-header .form-input-header-title {
  display: flex;
}

.form-input-header .form-input-header-title .form-input-header-title-img {
  width: 30px;
}

.form-input-header .form-input-header-title .form-input-header-title-text {
  font-size: 0.8em;
  font-weight: 700;
}

.form-input-container-3 .form-input-list {
  display: flex;
  justify-content: space-between;
  padding-top: 0.6em;
}

.form-inut-day-toggle input {
  display: none;
}

.form-inut-day-toggle label {
  display: block;
  width: 20px;
  height: 20px;
}

.form-inut-day-toggle .form-inut-day-toggle-circle {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #DCDCDC;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.form-inut-day-toggle input:checked + .form-inut-day-toggle-circle {
  background-color: #F9AF29;
}

.form-inut-day-toggle .form-inut-day-toggle-circle > span {
  color: #fff;
  font-size: 0.8em;
  text-align: center;
}

.form-input-container-3 .form-input-radiolist,
.form-input-container-3 .form-input-textblock {
  padding-left: 30px;
}

.form-input-container-3 .form-input-radiolist label {
  display: flex;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

.form-input-radiolist-item-title {
  width: 100%;
  font-size: 0.8em;
}

.form-input-radiolist-item-input {
  width: 30px;
}


.form-cycle-show-on-turbo,
.form-turbo-container.turbo .form-cycle-hide-on-turbo {
  display: none;
}

.form-cycle-hide-on-turbo,
.form-turbo-container.turbo .form-cycle-show-on-turbo {
  display: block;
}

.form-input-container-3 .form-input-textblock {
  display: flex;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}

.form-input-textblock-title {
  display: block;
  font-size: 0.7em;
  width: 70px;
}

.form-input-textblock-content {
  display: block;
  font-size: 0.7em;
  font-weight: 700;
}



.form-geyser-item-body {
  display: flex;
  justify-content: center;
  padding-top: 1em;
}

.form-geyser-item-body-inner {
  width: 270px;
  height: 50px;
  background-repeat: no-repeat;
  padding-left: 68px;
}

.form-geyser-item-body-inner input {
  width: 140px;
  background-color: transparent;
  height: 24px;
  border: 1px solid #707070;
  border-radius: 5px;
  text-align: center;
}

.form-geyser-item-body-inner.form-geyser-bg-1 {
  background-image: url( ../img/logo_settings_geyser_bg_1.png );
}

.form-geyser-item-body-inner.form-geyser-bg-2 {
  background-image: url( ../img/logo_settings_geyser_bg_2.png );
  background-position-x: 13px;
}

.form-geyser-item-body-inner.form-geyser-bg-3 {
  background-image: url( ../img/logo_settings_geyser_bg_3.png );
}

.form-geyser-item-body-inner.form-geyser-bg-4 {
  background-image: url( ../img/logo_settings_geyser_bg_4.png );
}

.form-geyser-item-body-inner.form-geyser-bg-5 {
  background-image: url( ../img/logo_settings_geyser_bg_5.png );
}

.form-geyser-item-right {
  text-align: right;
}

.form-geyser-item-tube-length {
  font-size: 0.8em;
  font-style: italic;
  color: #959595;
}

.form-geyser-item-right h5 {
  font-size: 1em;
}


.form-input-container input::placeholder {
  color: #BFBFBF;
  font-style: italic;
}


/*----------------------------------------------------------------------------*/

.form-input-container label {
  font-weight: 700;
  width: 100%;
}

.form-item-label {
  width: 150px;
}

.form-item-label.label-long {
  width: 200px;
}

.form-item-input {
  width: calc( 100% - 150px );
  display: flex;
  /*justify-content: flex-end;*/
}

.form-item-label.label-long + .form-item-input {
  width: calc( 100% - 200px );
}

.form-input-container input {
  background-color: transparent;
  border: none;
  width: 100%;
  max-width: 180px;
  color: #888887;
  font-size: 1em;
  text-align: right;
}

.form-item-input input,
.form-item-input select {
  background-color: transparent;
  border: none;
  width: 100%;
  /*max-width: 180px;*/
  color: #888887;
  font-size: 1em;
  /*text-align: right;*/
}

.form-item-input input:disabled,
.form-item-input select:disabled {
  color: #c2c2c2;
}

.form-item-input input::placeholder {
  color: #b8b8b8;
  font-style: italic;
}

.form-item-input input:disabled::placeholder {
  color: #dfdfdf;
}


.form-item-checkboxblock {
  width: 100%;
}

.form-item-checkboxblock-item {
  display: flex;
}

.form-item-checkboxblock-item-input {
  display: flex;
  align-items: center;
  margin-right: 5px;
}


.form-buttonrow {
  display: flex;
  justify-content: flex-end;
  padding-top: 1em;
}


.form-item-input input.form_error,
.form-item-input select.form_error {
  border-bottom: 1px solid red;
}

.form-item-input input[type="checkbox"].form_error {
  border: 1px solid red;
}

.form-item.form_error {
  border-bottom: 1px solid red;
}

/*
.form-item-input input[type="checkbox"].form_error {
  border: 1px solid red;
} */


/*==============================================================================
============================== KATEGORY FORM ===================================
==============================================================================*/

.kategory-form-item-body {
  padding-left: 1.2em;
}

.kategory-form-input-label > label {
  font-weight: 700;
}

.kategory-form-input {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #EEEEEE;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.kategory-form-input-input > input {
  width: 160px;
  text-align: right;
}

.kategory-form-input-input > input:disabled {
  border: none;
  color: #888887;
  background: transparent;
}

/*==============================================================================
============================== POPUP ===========================================
==============================================================================*/

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  /*left: calc( 50% - 150px );
  z-index: 500;
  width: 300px;
  height: auto;
  background-color: #FFFFFF;
  border-radius: 8px;*/
}

.popup.open {
  display: block;
}

.popup .popup-overlay {
  position: absolute;
  z-index: 400;
  width: 100%;
  height: 100%;
  background-color: #ffffffcc;
}

.popup-content {
  position: relative;
  top: 100px;
  left: calc( 50% - 150px );
  z-index: 500;
  width: 300px;
  height: auto;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: #00000029 0px 3px 6px;
}

.popup-content.center {
  top: calc(50vh - 100px);
}

.popup-header {
  width: 100%;
  display: flex;
}

.popup-header .popup-header-title {
  width: calc( 100% - 30px );
  padding: 0.5em 1em;
}

.popup-header .popup-header-title-top {
  display: flex;
}

.popup-header .popup-header-title-top .popup-warning-icon {
  margin-right: 10px;
}

.popup-header .popup-header-close {
  width: 30px;
}

.popup-body {
  padding: 2em 1em;
}

.popup-footer {
  width: 100%;
}

.popup-footer .popup-footer-btn {
  width: 100%;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  color: #ffffff;
  /*background-color: #6EB631;*/
  text-transform: uppercase;
  border: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-weight: 600;
}

.popup-footer-btn.btn-type-4 {
  background-color: #6EB631;
}

.popup-header-title {

}

.popup-yesno-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.popup-yesno-container > div {
  width: calc( 50% - 10px );
}

.popup-yesno-container button {
  width: 100%;
  padding: 0.7em;
  border-radius: 50px;
  border: 1px solid #707070;
  color: #707070;
  background: transparent;
}

.popup-yesno-yes button {
  color: #fff;
  border: 1px solid #F8B439;
  background-color: #F8B439;
}

.popup-yesno-yes button {

}

.popup-warning {
  display: flex;
}

.popup-warning-icon {
  width: 20px;
  height: 20px;
  background: #E0AC41;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-warning-icon > span {
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
}

.popup-warning-text {
  display: flex;
  margin-left: 10px;
  font-weight: 700;
}

/*==============================================================================
============================== ACCORDION =======================================
==============================================================================*/

.accordion .accordion-item-header {
  display: flex;
  /*border-bottom: 2px solid #EEEEEE;*/
  background-color: #ffffff;
  padding: 10px 20px;
  justify-content: space-between;
}

.accordion-item-body {
  display: none;
  padding: 20px;
  background-color: #ffffff;
}

.accordion-item.open .accordion-item-body {
  display: block;
}

/*==============================================================================
============================== BTN =============================================
==============================================================================*/

.btn {
  display: inline-block;
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  /*background-color: #F8B439;
  color: #FFFFFF;
  border: none;*/
  /*border-radius: 5em;*/
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
  text-decoration: none;
}

.btn:disabled {
  background-color: transparent;
  border: 1px solid #707070;
  color: #616161;
}

.btn-small-x {
  padding-left: 4em;
  padding-right: 4em;
}

.btn-min {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  padding-left: 1.1em;
  padding-right: 1.1em;
  display: flex;
  align-items: center;
}

.btn-min > img {
  margin-right: 10px;
}

.btn-back {
  color: #959595;
  border: 1px solid #D2D2D2;
  background-color: transparent;
}

.btn-submit-2 {
  color: #616161;
  border: 1px solid #616161;
  background-color: transparent;
  font-weight: 600;
}

.btn-submit-3 {
  font-weight: 600;
  color: #616161;
  background-color: #ffffff;
}

.btn-uppercase {
  text-transform: uppercase;
}

.btn-text-large {
  font-size: 14px;
  text-transform: uppercase;
}

.icon-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
}

.btn-tank {
  background-color: #5963AF;
}

.btn-strategy {
  background-color: #F9AF29;
}

.btn-fluid {
  width: 100%;
}

.form-input-inline-btn {
  width: 30px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
}

        /*

.btn-fluid {
  width: 100%;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  padding: 0px;
  border-radius: 50%;
  font-size: 22px;
}

.btn-fs {
  display: block;
  width: 100%;
}

.btn-blue {
  background-color: #7e9cd0;
  color: #ffffff;
}

.btn-blue:hover {
  background-color: #57585a;
  color: #ffffff;
}

.btn-grey {
  background-color: #ffffff;
  color: #57585a;
  border-color: #57585a;
}

.btn-grey:hover {
  background-color: #57585a;
  color: #ffffff;
}
*/

/*==============================================================================
============================== TOGGLE ==========================================
==============================================================================*/


.toggleswitch {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 21px;
}

.toggleswitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggleswitch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888887;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggleswitch .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggleswitch input:checked + .slider {
  background-color: #6EB630;
}

.toggleswitch input:focus + .slider {
  box-shadow: 0 0 1px #6EB630;
}

.toggleswitch input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.toggleswitch .slider.round {
  border-radius: 34px;
}

.toggleswitch .slider.round:before {
  border-radius: 50%;
}

.toggleswitch.toggleswitch-type-2 {
  height: 16px;
}

.toggleswitch.toggleswitch-type-2 .slider:before {
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
}

.toggleswitch.toggleswitch-type-2 input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.toggleswitch.toggleswitch-type-2 .slider .slider-text {
  font-size: 0.6em;
  color: #fff;
  position: absolute;
  right: 6px;
  top: 2px;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggleswitch.toggleswitch-type-2 input:checked + .slider .slider-text {
  -webkit-transform: translateX(-12px);
  -ms-transform: translateX(-12px);
  transform: translateX(-12px);
}



/*==============================================================================
============================== PICKER ==========================================
==============================================================================*/

.picker-dialog {
  border: none;
}

.picker-cell::before,
.picker-cell::after {
  background: transparent;
}

.picker-picked {
  color: #242424;
  font-weight: 700;
}

/*==============================================================================
============================== TABS ============================================
==============================================================================*/

.tabs > .tabs-header {
  display: flex;
  flex-wrap: wrap;
}

.tabs > .tabs-header > a {
  display: flex;
  text-decoration: none;
  padding: 10px 20px;
  color: #333333;
  border-left: 3px solid #fff;
}

.tabs > .tabs-header > a:first-child {
  border-left: none;
}

.tabs > .tabs-header > a > h2 {
  text-transform: uppercase;
  font-weight: 400;
}

.tabs > .tabs-header > a.tab-open {
  background-color: #ffffff;
}

.tabs > .tabs-header > a.tab-open > h2 {
  font-weight: 700;
}

.tabs > .tabs-body {
  display: flex;
  width: 100%;
}

.tabs > .tabs-body > div {
  display: none;
  padding: 20px;
  background-color: #ffffff;
  min-height: 400px;
}

.tabs > .tabs-body > div.tab-open {
  display: block;
  width: 100%;
}



.tabs.tabs-strategy-zone .tabs-strategy-zone-item {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  border-left: none;
}

.tabs.tabs-strategy-zone .tabs-strategy-zone-item .tabs-strategy-zone-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tabs-strategy-zone-img {
  display: flex;
  align-items: center;
  width: 40px;
}


.tabs-strategy-zone-item .SVG_Zone1_Black-1,
.tabs-strategy-zone-item .SVG_Zona1_Black-1,
.tabs-strategy-zone-item .SVG_Zone2_Black-1,
.tabs-strategy-zone-item .SVG_Zona2_Black-1  {
  fill: #d6d6d6;
}

.tabs-strategy-zone-item.tab-open .SVG_Zone1_Black-1,
.tabs-strategy-zone-item.tab-open .SVG_Zona1_Black-1,
.tabs-strategy-zone-item.tab-open .SVG_Zone2_Black-1,
.tabs-strategy-zone-item.tab-open .SVG_Zona2_Black-1  {
  fill: #1d1d1b;
}


.tabs-strategy-zone-titel > h2 {
  font-size: 11px;
}


.tabs.tabs-strategy-zone .tabs-strategy-zone-item > .tabs-strategy-zone-inner {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 4px;
  box-shadow: #00000029 0px 3px 6px;
  position: relative;
  color: #d5d5d5;
}

.tabs.tabs-strategy-zone .tabs-strategy-zone-item.tab-open {
  background-color: #ffffff;
  box-shadow: #00000029 1px -3px 4px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.tabs.tabs-strategy-zone .tabs-strategy-zone-item.tab-open > .tabs-strategy-zone-inner {
  background-color: #ffffff;
  box-shadow: none;
  color: #333;
}

.tabs.tabs-strategy-zone .tabs-strategy-zone-item > .tabs-strategy-zone-inner .tabs-strategy-zone-img-active,
.tabs.tabs-strategy-zone .tabs-strategy-zone-item.tab-open > .tabs-strategy-zone-inner .tabs-strategy-zone-img-inactive {
  display: none;
}

.tabs.tabs-strategy-zone .tabs-strategy-zone-item > .tabs-strategy-zone-inner .tabs-strategy-zone-img-inactive,
.tabs.tabs-strategy-zone .tabs-strategy-zone-item.tab-open > .tabs-strategy-zone-inner .tabs-strategy-zone-img-active {
  display: block;
}


.tabs.tabs-strategy-zone .tabs-body {
  box-shadow: #00000029 0px -5px 9px -7px;
}





#logs_support_control textarea {
  width: 100%;
  height: 150px;
  resize: none;
}

#logs_errors, #logs_support, #logs_strategies {
  max-height: 500px;
  overflow-y: auto;
}

.log-entry {
  display: flex;
  margin-bottom: 5px;
}

.log-entry > div {
  margin-right: 20px;
}


.log-entry > .log-entry-timestamp {
  width: 140px;
}

.log-entry > .log-entry-name {
  width: 140px;
}

.log-entry > .log-entry-resolved {
  width: 140px;
}

.log-entry > .log-entry-message {
  width: 300px;
}


.checkmark-img {
  display: flex;
  justify-content: center;
}

.checkmark-text_1 {
  text-align: center;
}

.has-info-mark {
  display: inline-flex !important;
  align-items: flex-start;
}

.info-mark {
  position: relative;
  display: flex;
  margin-left: 10px;
}

.info-mark:hover .info-mark-textbox {
  display: flex;
}

.info-mark-icon {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #ababab;
  display: flex;
  padding: 0px 5px;
  align-items: center;
  font-size: 12px;
  color: #ffffff;
}


.info-mark-textbox {
  z-index: 200;
  top: 20px;
  left: -180px;
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: #00000029 0px 3px 6px;
  padding: 10px 16px;
  border-radius: 6px;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  width: 200px;
  color: #000;
  text-align: left;
  font-family: 'Titillium Web';
}