@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.6;
  box-sizing: border-box;
  /*font-size: 100%;
  font-weight: 400;*/
  word-break: break-all;
  caret-color: transparent;
}

input[type="text"] {
  caret-color: auto;
}

input[type="password"] {
  caret-color: auto;
}

html {
  height: 100%;
  font-family: sans-serif;
  font-size: 62.5%;
}

body {
  height: 100%;
  overflow: hidden;
  min-width: 1020px;
  min-height: 420px;
  background-color: #f2f2f2;
}

.white {
  background-color: #fff;
}


.container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}


.header {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 92px;
  color: #fff;
  background: linear-gradient(to right, #2896BE, #C94042);
}

.header-bottom-1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #258AAF, #BA3B3A);
}

.header-bottom-2 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2382A5, #AC3839);
  }
  

.header-title {
  position: relative;
  width: 360px;
  height: 100%;
  padding: 0 0px 0 0px;
  text-align: left;
}

.header-title-device {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.header-title-device-name {
  position: absolute;
  top: 25px;
  left: 30px;
  width: 300px;
  height: 32px;
  padding-top: 0px;
  padding-left: 5px;
  text-align: left;
  font-size: 18pt;
}

.header-title-version {
  position: absolute;
  top: 57px;
  left: 30px;
  width: 300px;
  height: 20px;
  padding-top: 0px;
  padding-left: 5px;
  text-align: left;
  font-size: 10pt;
  color: #4C82A2;
}


.header-items {
  position: absolute;
  top: 0;
  left: 360px;
  right: 0;
  bottom: 0;
  /*width: auto;*/
  height: 100%;
  padding: 0px 20px 0px 0px;
  text-align: right;
}

.header-item {
  position: relative;
  display: inline-block;
  width: 30%;
  min-width: 220px;
  height: 100%;
}

.header-item-caption {
  cursor: pointer;
  position: absolute;
  top: 21px;
  left: 0;
  width: 60%;
  height: 48px;
  padding-top: 4px;
  padding-right: 10px;
  text-align: right;
  font-size: 12pt;
  line-height: 1.4em;
  /*padding-top: 14px;*/
  white-space: pre-wrap;
}

.header-item-value {
  cursor: pointer;
  position: absolute;
  top: 21px;
  right: 0;
  width: 40%;
  height: 48px;
  padding-top: 6px;
  text-align: center;
  font-size: 18pt;
  background-color: rgba(172, 56, 57, 0.6);
}

.header-item-value-small {
  padding-top: 10px;
  font-size: 14pt;
}


.blink {
  -webkit-animation: blink 1s ease infinite;
  animation: blink 1s ease infinite;
}

.blink-low-battery {
  cursor: default;
  -webkit-animation: blink-low-battery 2s ease infinite;
  animation: blink-low-battery 2s ease infinite;
}

@-webkit-keyframes blink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes blink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes blink-low-battery {
  0% { opacity: 0; color: red; }
  100% { opacity: 1; color: #c9c9c9; }
}

@keyframes blink-low-battery {
  0% { opacity: 0; color: black; }
  100% { opacity: 1; color: #c9c9c9; }
}


.tooltip-header-item {
  display: none;
  position: absolute;
  top: 84px;
  left: 60%;
  width: 160px;
  transform: translateX(-40%);
  z-index: 1;
  background: #545454;
  padding: 10px 14px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeIn 0.6s;
  color: #FFF;
  border-radius: 3px;
  filter: drop-shadow(0px 1px 4px #aaa);
  white-space: pre-wrap;
  text-align: center;
}

.tooltip-header-item:before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 16px solid #545454;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: calc(100% - 184px);
  overflow: hidden;
}

.content-body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.footer {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 92px;
  background: #746D83;
}

.footer-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, #625C6F, #746D83);
}


.content-tab {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 60px 40px 60px;
}

.content-tab:not(.show) {
  display: none;
}

.content-tab-chart {
  padding: 10px;
  background-color: #fff;
}

.chart-draw-impossible {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 500px;
  height: 100px;
  margin: auto;
  color: #808080;
  text-align: center;
  font-size: 20pt;
  white-space: pre-wrap;
}


.init-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  margin: auto;
  color: #808080;
  text-align: center;
  font-size: 20pt;
}


#device-connect-button {
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/device-connect.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

#device-connect-button:disabled {
  cursor: default;
  background-image: url("../images/device-connect.png");
}


.list-header-right-gap {
  display: table-cell;
  width: 30px;
  height: 100%;
  text-align: center;
}


.content-tab-nav {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 270px;
  height: 100%;
  padding: 0px 0px 10px 0px;
  flex-direction: column;
  border: 0;
  background-color: #d9d9d9;
  overflow-y: auto;
}

.content-tab-nav-operation {
  display: none;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  justify-content: flex-start;
  flex-grow: 0;
  width: 100%;
  height: 60px;
}

.content-tab-nav-item {
  cursor: pointer;
  box-sizing: border-box;
  justify-content: flex-start;
  flex-grow: 0;
  width: 100%;
  height: 50px;
  padding: 12px 10px 12px 10px;
  border-top: 0px solid transparent;
  border-bottom: 1px solid #dfdfdf;
  border-left: 8px solid transparent;
  background-color: transparent;
  color: #707070;
  font-size: 12pt;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;

}

.content-tab-nav-item.active {
  cursor: default;
  border-left-color: #746D83;
  background-color: #dfdfdf;
  border-bottom: 0px;
}

.content-tab-nav-item.active::after {
  display: block;
}

.content-tab-nav-gap {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 270px;
  width: 10px;
  height: 100%;
  background: linear-gradient(to right, #d9d9d9, #a9a9a9);
}

.content-tab-body {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: calc(100% - 280px);
  height: 100%;
  padding: 30px 60px 40px 60px;
}


.experiment-title-area {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}

.experiment-title {
  display: none;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 50px;
  height: 50px;
  padding: 12px 16px 0px 16px;
  background-color: #d9d9d9;
  color: #707070;
  font-size: 14pt;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.experiment-title-input {
  display: none;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 50px;
  height: 50px;
  padding: 12px 16px 10px 16px;
  background-color: transparent;
  background-color: #d9d9d9;
  color: #707070;
  font-size: 14pt;
  outline: none;
}


.experiment-delete-button {
  /*display: none;*/
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  background-image: url("../images/delete-experiment-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 40px 40px;
}

.experiment-delete-button:disabled {
  cursor: default;
  background-image: url("../images/delete-experiment-disabled.png");
}


.list-header {
  display: table;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  color: #808080;
  font-size: 14pt;
  border-bottom: 1px solid #808080;
}

.list-header-measured-value {
  cursor: pointer;
  display: table-cell;
  position: relative;
  box-sizing: border-box;
  width: 15%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.list-header-measured-value div {
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: max-content;
  height: max-content;
  margin: auto;
}

.list-header-time {
  cursor: pointer;
  display: table-cell;
  box-sizing: border-box;
  width: 15%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.list-header-add-column {
  display: table-cell;
  position: relative;
  box-sizing: border-box;
  width: 60px;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}
  
.list-header-comment {
  display: table-cell;
  box-sizing: border-box;
  width: auto;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.list-header-delete {
  display: table-cell;
  box-sizing: border-box;
  width: 50px;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}


.list-body {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: calc(100% - 100px);
  overflow: auto;
}


.list-header-disconnected-sensor::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: transparent;
  background-image: url("../images/sensor-disconnected.png");
  background-repeat: no-repeat;
  background-size: contain;
}
  

.list-row {
  display: table;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #808080;
}

.list-row-measured-value {
  display: table-cell;
  position: relative;
  box-sizing: border-box;
  width: 15%;
  height: 100%;
  text-align: center;
}

.list-row-time {
  display: table-cell;
  position: relative;
  box-sizing: border-box;
  width: 15%;
  height: 100%;
  text-align: center;
}

.list-row-add-column {
  display: table-cell;
  position: relative;
  box-sizing: border-box;
  width: 60px;
  height: 100%;
  text-align: center;
}
  
.list-row-comment {
  display: table-cell;
  position: relative;
  box-sizing: border-box;
  width: auto;
  height: 100%;
  text-align: center;
}

.list-row-delete {
  display: table-cell;
  position: relative;
  box-sizing: border-box;
  width: 50px;
  height: 100%;
  text-align: center;
}


.list-measured-value {
  position: absolute;
  box-sizing: border-box;
  top: 10px;
  left: 0;
  width: 100%;
  height: 40px;
  padding-top: 5px;
  color: #808080;
  font-size: 16pt;
  text-align: center;
}

.list-time {
  position: absolute;
  box-sizing: border-box;
  top: 10px;
  left: 0;
  width: 100%;
  height: 40px;
  padding-top: 5px;
  color: #808080;
  font-size: 16pt;
  text-align: center;
}

.list-manual-input {
  position: absolute;
  box-sizing: border-box;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 40px;
  background-color: #d9d9d9;
}
  
.list-comment {
  position: absolute;
  box-sizing: border-box;
  top: 10px;
  left: 5px;
  right: 5px;
  height: 40px;
  background-color: #d9d9d9;
}

.list-delete {
  position: absolute;
  box-sizing: border-box;
  top: 10px;
  width: 100%;
  height: 40px;
  text-align: center;
}


.comment {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 8px;
  background-color: #d9d9d9;
  color: #808080;
  font-size: 14pt;
}


.manual-input {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 8px;
  background-color: #d9d9d9;
  color: #808080;
  font-size: 16pt;
  text-align: center;
}
  

#chart {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: #fff;
}


.warning-message-area {
  display: none;
  position: relative;
  width: 100%;
  height: 30px;
  padding-top: 10px;
  padding-left: 60px;
  text-align: left;
  color: red;
  font-size: 12pt;
}


.caption-enabled {
  color: #ffffff;
}

.caption-disabled {
  color: #9E99A8;
}


.chart-switch-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 106px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/chart-switch-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.chart-switch-button:disabled {
  cursor: default;
  background-image: url("../images/chart-switch-disabled.png");
}


.button-caption-chart-switch {
  position: absolute;
  top: 58px;
  left: 60px;
  width: 140px;
  height: 30px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.list-switch-button {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 106px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/list-switch-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.list-switch-button:disabled {
  cursor: default;
  background-image: url("../images/list-switch-disabled.png");
}


.button-caption-list-switch {
  display: none;
  position: absolute;
  top: 58px;
  left: 50px;
  width: 160px;
  height: 30px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.sensor-add-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 30%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  border: none;
  background: transparent;
  background-image: url("../images/add-sensor-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.sensor-add-button:disabled {
  cursor: default;
  background-image: url("../images/add-sensor-disabled.png");
}


.button-caption-sensor-add {
  position: absolute;
  top: 58px;
  left: 30%;
  width: 180px;
  height: 30px;
  margin-left: -90px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}
    

.record-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 50%;
  width: 48px;
  height: 48px;
  margin-right: -24px;
  border: none;
  background: transparent;
  background-image: url("../images/record-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.record-button:disabled {
  cursor: default;
  background-image: url("../images/record-disabled.png");
}


.button-caption-record {
  position: absolute;
  top: 58px;
  right: 50%;
  width: 180px;
  height: 30px;
  margin-right: -90px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.record-start-button {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 50%;
  width: 48px;
  height: 48px;
  margin-right: -24px;
  border: none;
  background: transparent;
  background-image: url("../images/record-start-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.record-start-button:disabled {
  cursor: default;
  background-image: url("../images/record-start-disabled.png");
}


.button-caption-record-start {
  display: none;
  position: absolute;
  top: 58px;
  right: 50%;
  width: 140px;
  height: 30px;
  margin-right: -70px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.record-stop-button {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 50%;
  width: 48px;
  height: 48px;
  margin-right: -24px;
  border: none;
  background: transparent;
  background-image: url("../images/record-stop-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.record-stop-button:disabled {
  cursor: default;
  background-image: url("../images/record-stop-disabled.png");
}


.button-caption-record-stop {
  display: none;
  position: absolute;
  top: 58px;
  right: 50%;
  width: 100px;
  height: 30px;
  margin-right: -50px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.reset-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 296px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/reset-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.reset-button:disabled {
  cursor: default;
  background-image: url("../images/reset-disabled.png");
}


.button-caption-reset {
  position: absolute;
  top: 58px;
  right: 270px;
  width: 100px;
  height: 30px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.export-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 186px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/export-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.export-button:disabled {
  cursor: default;
  background-image: url("../images/export-disabled.png");
}


.button-caption-export {
  position: absolute;
  top: 58px;
  right: 170px;
  width: 80px;
  height: 30px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.settings-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 76px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/settings-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.settings-button:disabled {
  cursor: default;
  background-image: url("../images/settings-disabled.png");
}


.button-caption-settings {
  position: absolute;
  top: 58px;
  right: 60px;
  width: 80px;
  height: 30px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
}


.chart-comment {
  position: absolute;
  top: 58px;
  right: 50%;
  width: 500px;
  height: 30px;
  margin-right: -250px;
  padding-top: 4px;
  text-align: center;
  font-size: 11pt;
  color: #fff;
}


#wireless-sensor-dialog-ok-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ok-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}
  
.button-caption-wireless-sensor-dialog-ok {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}
  
  
#wireless-sensor-dialog-cancel-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ng-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}
  
.button-caption-wireless-sensor-dialog-cancel {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


.wireless-sensor-form-item-usb-connect {
  position: relative;

}


#wireless-sensor-dialog-usb-connect-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 121px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/add-experiment-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}
    
.button-caption-wireless-sensor-dialog-usb-connect {
  position: absolute;
  top: 48px;
  right: 20px;
  width: 250px;
  height: 28px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


#wireless-sensor-dialog-refresh-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 46px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/refresh-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}
    
.button-caption-wireless-sensor-dialog-refresh {
  position: absolute;
  top: 48px;
  left: 20px;
  width: 100px;
  height: 28px;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


.form-check-wireless-sensor {
  position: relative;
}

.form-check-wireless-sensor input[type="checkbox"] {
  display: none;
}

.form-check-wireless-sensor input[type="checkbox"]~label {
  display: block;
  position: relative;
  padding: 11px 12px 11px 52px;
  word-break: break-all;
  font-size: 1.6rem;
  cursor: pointer;
}

.form-check-wireless-sensor input[type="checkbox"]~label::before {
  position: absolute;
  top: 2px;
  left: 6px;
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  background: transparent;
  background-image: url("../images/radio-off.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 40px 40px;
}

.form-check-wireless-sensor input[type="checkbox"]:checked~label::before {
  background-image: url("../images/radio-on.png");
}


.form-check-wireless-sensor input[type="checkbox"]~label div {
  position: relative;
  width: max-content;
  word-break: break-all;
  font-size: 1.6rem;
}

.form-check-wireless-sensor-disconnected::after {
  display: inline-block;
  position: absolute;
  content: "";
  top: 2px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  background: transparent;
  background-image: url("../images/sensor-disconnected.png");
  background-repeat: no-repeat;
  background-size: contain;
}


.form-radio-wireless-sensor {
  position: relative;
}
  
.form-radio-wireless-sensor input[type="radio"] {
  display: none;
}
  
.form-radio-wireless-sensor input[type="radio"]~label {
  display: block;
  position: relative;
  padding: 11px 12px 11px 52px;
  word-break: break-all;
  font-size: 1.6rem;
  cursor: pointer;
}
  
.form-radio-wireless-sensor input[type="radio"]~label::before {
  position: absolute;
  top: 2px;
  left: 6px;
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  background: transparent;
  background-image: url("../images/radio-off.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 40px 40px;
}
  
.form-radio-wireless-sensor input[type="radio"]:checked~label::before {
  background-image: url("../images/radio-on.png");
}


.form-radio-wireless-sensor input[type="radio"]~label div {
  position: relative;
  width: max-content;
  word-break: break-all;
  font-size: 1.6rem;
}

.form-radio-wireless-sensor-disconnected::after {
  display: inline-block;
  position: absolute;
  content: "";
  top: 2px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  background: transparent;
  background-image: url("../images/sensor-disconnected.png");
  background-repeat: no-repeat;
  background-size: contain;
}
      

#list-column-dialog-ok-button {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 48px;
    height: 48px;
    margin: auto;
    border: none;
    background: transparent;
    background-image: url("../images/popup-ok-normal.png");
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 48px 48px;
  }
    
  .button-caption-list-column-dialog-ok {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    width: 150px;
    height: 28px;
    margin: auto;
    padding-top: 4px;
    text-align: center;
    font-size: 12pt;
    color: #000;
  }
    
    
  #list-column-dialog-cancel-button {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 48px;
    height: 48px;
    margin: auto;
    border: none;
    background: transparent;
    background-image: url("../images/popup-ng-normal.png");
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 48px 48px;
  }
    
  .button-caption-list-column-dialog-cancel {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    width: 150px;
    height: 28px;
    margin: auto;
    padding-top: 4px;
    text-align: center;
    font-size: 12pt;
    color: #000;
  }
          

#settings-dialog-ok-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ok-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.button-caption-settings-dialog-ok {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


#settings-dialog-cancel-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ng-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.button-caption-settings-dialog-cancel {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


#settings-dialog-chart-y-axis {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 54px;
  margin: auto;
}

#settings-dialog-chart-x-axis {
  cursor: pointer;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  width: 200px;
  height: 54px;
  margin: auto;
}


.usb-device-configuration-apply-button {
  cursor: pointer;
  display: inline-block;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/device-connect.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.button-caption-usb-device-configuration-apply {
  position: absolute;
  width: 100%;
  height: 28px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}
          

#chart-axis-dialog-ok-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ok-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.button-caption-chart-axis-dialog-ok {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


#chart-axis-dialog-cancel-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ng-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.button-caption-chart-axis-dialog-cancel {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}
    

.notification-message-dialog-text-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  margin: auto;
  text-align: center;
  font-size: 16pt;
  color: #000;
}

.notification-message-dialog-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 80px;
  margin: auto;
  padding-top: 60px;
  text-align: center;
  font-size: 16pt;
  color: #000;
}


.popup-message-dialog-ok-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/device-connect.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.button-caption-popup-message-dialog-ok {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


.two-choices-message-dialog-yes-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ok-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.button-caption-2choices-message-dialog-yes {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


.two-choices-message-dialog-no-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-ng-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.button-caption-2choices-message-dialog-no {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  width: 150px;
  height: 28px;
  margin: auto;
  padding-top: 4px;
  text-align: center;
  font-size: 12pt;
  color: #000;
}


.two-choices-message-dialog-ok-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/device-connect.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.two-choices-message-dialog-return-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/popup-return-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}


.column-add-button {
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/add-column.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}
  

.delete-button {
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/delete-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 40px 40px;
}

.delete-button:disabled {
  cursor: default;
}


.experiment-add-button {
  cursor: pointer;
  position: absolute;
  top: 11px;
  left: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  background-image: url("../images/add-experiment-normal.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}

.experiment-add-button:disabled {
  cursor: default;
  background-image: url("../images/add-experiment-disable.png");
}


.button-caption-experiment-add {
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 70px;
  width: 200px;
  height: 30px;
  padding-top: 5px;
  padding-left: 10px;
  text-align: left;
  font-size: 12pt;
  color: #707070;
}


#serial-number-dialog-ok-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border: none;
  background: transparent;
  background-image: url("../images/device-connect.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 48px 48px;
}