.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px;
  border-radius: 6px;
}
.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb;
}
.rc-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  margin-top: -5px;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  touch-action: pan-x;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
}
.rc-slider-handle:focus {
  outline: none;
}
.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: grabbing;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-dot-reverse {
  margin-right: -4px;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}
.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}

/*!
 * # Semantic UI 2.2.11 - Reset
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */*,*:before,*:after{box-sizing:inherit}html{box-sizing:border-box}input[type="text"],input[type="email"],input[type="search"],input[type="password"]{-webkit-appearance:none;-moz-appearance:none}/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}/*!
 * # Semantic UI 2.2.11 - Site
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */html{height:100%}body{font-size:16px;margin:0px;padding:0px;overflow-x:hidden;min-width:320px;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:100%}h1,h2,h3,h4,h5{line-height:1.28571429em;margin:calc(2rem - 0.14285714em) 0em 1rem;font-weight:600;padding:0em}h1{min-height:1rem;font-size:2rem}h2{font-size:1.71428571rem}h3{font-size:1.28571429rem}h4{font-size:1.07142857rem}h5{font-size:1rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child{margin-top:0em}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child{margin-bottom:0em}p{margin:0em 0em 1em;line-height:1.4285em}p:first-child{margin-top:0em}p:last-child{margin-bottom:0em}a{text-decoration:none}a:hover{text-decoration:none}a:active{text-decoration:none}::-webkit-selection{background-color:#CCE2FF;color:rgba(0,0,0,0.87)}::selection{background-color:#CCE2FF;color:rgba(0,0,0,0.87)}textarea::-webkit-selection,input::-webkit-selection{background-color:rgba(100,100,100,0.4);color:rgba(0,0,0,0.87)}textarea::selection,input::selection{background-color:rgba(100,100,100,0.4);color:rgba(0,0,0,0.87)}.clr:after{content:"";display:table;clear:both}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-Light.d0096d39.eot);src:url(/static/media/HoneywellSansWeb-Light.d0096d39.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-Light.c0d30d0d.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-Light.e0220a6b.woff) format("woff"),url(/static/media/HoneywellSansWeb-Light.c0a92e57.svg) format("svg");font-weight:200;font-style:normal}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-Book.3fb72448.eot);src:url(/static/media/HoneywellSansWeb-Book.3fb72448.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-Book.f2cad760.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-Book.aefb5358.woff) format("woff"),url(/static/media/HoneywellSansWeb-Book.8d015807.svg) format("svg");font-weight:300;font-style:normal}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-Medium.eba0996d.eot);src:url(/static/media/HoneywellSansWeb-Medium.eba0996d.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-Medium.e43e9d12.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-Medium.256bd250.woff) format("woff"),url(/static/media/HoneywellSansWeb-Medium.066266cd.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-Bold.1bc89825.eot);src:url(/static/media/HoneywellSansWeb-Bold.1bc89825.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-Bold.fdfeb0b9.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-Bold.c6960ec2.woff) format("woff"),url(/static/media/HoneywellSansWeb-Bold.b38226f2.svg) format("svg");font-weight:600;font-style:normal}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-Bold.1bc89825.eot);src:url(/static/media/HoneywellSansWeb-Bold.1bc89825.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-Bold.fdfeb0b9.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-Bold.c6960ec2.woff) format("woff"),url(/static/media/HoneywellSansWeb-Bold.b38226f2.svg) format("svg");font-weight:600;font-style:bold}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-Extrabold.6f8b3261.eot);src:url(/static/media/HoneywellSansWeb-Extrabold.6f8b3261.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-Extrabold.02806164.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-Extrabold.03329aad.woff) format("woff"),url(/static/media/HoneywellSansWeb-Extrabold.1916187f.svg) format("svg");font-weight:700;font-style:normal}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-Black.308979a2.eot);src:url(/static/media/HoneywellSansWeb-Black.308979a2.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-Black.3002afed.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-Black.e22130c3.woff) format("woff"),url(/static/media/HoneywellSansWeb-Black.1d546cae.svg) format("svg");font-weight:800;font-style:normal}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-LightItalic.d62f9a22.eot);src:url(/static/media/HoneywellSansWeb-LightItalic.d62f9a22.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-LightItalic.b3a52196.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-LightItalic.68993e1b.woff) format("woff"),url(/static/media/HoneywellSansWeb-LightItalic.be7b87a4.svg) format("svg");font-weight:200;font-style:italic}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-BookItalic.ecf66d14.eot);src:url(/static/media/HoneywellSansWeb-BookItalic.ecf66d14.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-BookItalic.1dca4c3a.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-BookItalic.2015a153.woff) format("woff"),url(/static/media/HoneywellSansWeb-BookItalic.895a3f70.svg) format("svg");font-weight:300;font-style:italic}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-MediumItalic.aa338052.eot);src:url(/static/media/HoneywellSansWeb-MediumItalic.aa338052.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-MediumItalic.ad605dc0.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-MediumItalic.95fece3d.woff) format("woff"),url(/static/media/HoneywellSansWeb-MediumItalic.50e3958a.svg) format("svg");font-weight:400;font-style:italic}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-MediumItalic.aa338052.eot);src:url(/static/media/HoneywellSansWeb-MediumItalic.aa338052.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-MediumItalic.ad605dc0.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-MediumItalic.95fece3d.woff) format("woff"),url(/static/media/HoneywellSansWeb-MediumItalic.50e3958a.svg) format("svg");font-weight:normal;font-style:italic}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-BoldItalic.e3112e24.eot);src:url(/static/media/HoneywellSansWeb-BoldItalic.e3112e24.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-BoldItalic.4b13dddc.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-BoldItalic.35828120.woff) format("woff"),url(/static/media/HoneywellSansWeb-BoldItalic.11c3fcd6.svg) format("svg");font-weight:600;font-style:italic}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-ExtraboldItalic.586744dd.eot);src:url(/static/media/HoneywellSansWeb-ExtraboldItalic.586744dd.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-ExtraboldItalic.5bec5383.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-ExtraboldItalic.05494dad.woff) format("woff"),url(/static/media/HoneywellSansWeb-ExtraboldItalic.74857657.svg) format("svg");font-weight:700;font-style:italic}@font-face{font-family:'Honeywell Sans Web';src:url(/static/media/HoneywellSansWeb-BlackItalic.c67ac995.eot);src:url(/static/media/HoneywellSansWeb-BlackItalic.c67ac995.eot) format("embedded-opentype"),url(/static/media/HoneywellSansWeb-BlackItalic.b04309e4.woff2) format("woff2"),url(/static/media/HoneywellSansWeb-BlackItalic.7b1ce7cb.woff) format("woff"),url(/static/media/HoneywellSansWeb-BlackItalic.9d410b6b.svg) format("svg");font-weight:800;font-style:italic}@font-face{font-family:'Honeywell-Global';src:url(/static/media/Honeywell-Global.de59b214.eot);src:url(/static/media/Honeywell-Global.de59b214.eot) format("embedded-opentype"),url(/static/media/Honeywell-Global.ddaee783.ttf) format("truetype"),url(/static/media/Honeywell-Global.a662664e.woff) format("woff"),url(/static/media/Honeywell-Global.e8a580fe.svg) format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'Honeywell-Flight';src:url(/static/media/Honeywell-Flight.430975ff.eot);src:url(/static/media/Honeywell-Flight.430975ff.eot) format("embedded-opentype"),url(/static/media/Honeywell-Flight.e5826e6f.woff2) format("woff2"),url(/static/media/Honeywell-Flight.f691b364.ttf) format("truetype"),url(/static/media/Honeywell-Flight.5febd608.woff) format("woff"),url(/static/media/Honeywell-Flight.a691cc43.svg) format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'Honeywell-Addons';src:url(/static/media/Honeywell-Addons.c5dcf1e1.woff2) format("woff2"),url(/static/media/Honeywell-Addons.b73ad022.ttf) format("truetype"),url(/static/media/Honeywell-Addons.ea9085d8.woff) format("woff");font-weight:normal;font-style:normal}@font-face{font-family:'Honeywell-Buildings';src:url(/static/media/Honeywell-Buildings.32c3381d.eot);src:url(/static/media/Honeywell-Buildings.32c3381d.eot) format("embedded-opentype"),url(/static/media/Honeywell-Buildings.8c939e9e.woff2) format("woff2"),url(/static/media/Honeywell-Buildings.bc61e9b7.ttf) format("truetype"),url(/static/media/Honeywell-Buildings.1afe1685.woff) format("woff");font-weight:normal;font-style:normal}@font-face{font-family:'Honeywell-Weather';src:url(/static/media/Honeywell-Weather.c975459d.eot);src:url(/static/media/Honeywell-Weather.c975459d.eot) format("embedded-opentype"),url(/static/media/Honeywell-Weather.d6fe7a80.woff2) format("woff2"),url(/static/media/Honeywell-Weather.0f0c2527.ttf) format("truetype"),url(/static/media/Honeywell-Weather.02f993d7.woff) format("woff");font-weight:normal;font-style:normal}@font-face{font-family:'Honeywell-Icons';src:url(/static/media/Honeywell-Icons.5cf6ecd2.woff2) format("woff2"),url(/static/media/Honeywell-Icons.a108fd84.ttf) format("truetype"),url(/static/media/Honeywell-Icons.66d64e9a.woff) format("woff");font-weight:normal;font-style:normal}.h-icon.global{font-family:'Honeywell-Global' !important}.h-icon.global.badge-alert:before{content:"\E900"}.h-icon.global.badge-help:before{content:"\E901"}.h-icon.global.badge-info:before{content:"\E902"}.h-icon.global.badge-stop:before{content:"\E903"}.h-icon.global.badge-warning:before{content:"\E904"}.h-icon.global.battery-empty:before{content:"\E905"}.h-icon.global.battery-full:before{content:"\E906"}.h-icon.global.battery-low:before{content:"\E907"}.h-icon.global.battery-mid:before{content:"\E908"}.h-icon.global.calendar:before{content:"\E909"}.h-icon.global.camera:before{content:"\E90A"}.h-icon.global.caret-down:before{content:"\E90B"}.h-icon.global.caret-left:before{content:"\E90C"}.h-icon.global.caret-right:before{content:"\E90D"}.h-icon.global.caret-up:before{content:"\E90E"}.h-icon.global.check:before{content:"\E90F"}.h-icon.global.close:before{content:"\E910"}.h-icon.global.credit-card:before{content:"\E911"}.h-icon.global.delete:before{content:"\E912"}.h-icon.global.document:before{content:"\E913"}.h-icon.global.edit-circled:before{content:"\E914"}.h-icon.global.edit:before{content:"\E915"}.h-icon.global.email:before{content:"\E916"}.h-icon.global.expand:before{content:"\E917"}.h-icon.global.export:before{content:"\E918"}.h-icon.global.file-download:before{content:"\E919"}.h-icon.global.file-upload:before{content:"\E91A"}.h-icon.global.filter:before{content:"\E91B"}.h-icon.global.flag-icon:before{content:"\E91C"}.h-icon.global.fullscreen-enter:before{content:"\E91D"}.h-icon.global.fullscreen-exit:before{content:"\E91E"}.h-icon.global.globe:before{content:"\E91F"}.h-icon.global.graph:before{content:"\E920"}.h-icon.global.home:before{content:"\E921"}.h-icon.global.location:before{content:"\E922"}.h-icon.global.locked:before{content:"\E923"}.h-icon.global.map:before{content:"\E924"}.h-icon.global.menu-icon:before{content:"\E925"}.h-icon.global.message:before{content:"\E926"}.h-icon.global.multiple-devices:before{content:"\E927"}.h-icon.global.notification:before{content:"\E928"}.h-icon.global.paperclip:before{content:"\E929"}.h-icon.global.pc:before{content:"\E92A"}.h-icon.global.phone:before{content:"\E92B"}.h-icon.global.playback-pause:before{content:"\E92C"}.h-icon.global.playback-play:before{content:"\E92D"}.h-icon.global.print:before{content:"\E92E"}.h-icon.global.redo:before{content:"\E92F"}.h-icon.global.refresh:before{content:"\E930"}.h-icon.global.reminders:before{content:"\E931"}.h-icon.global.save:before{content:"\E932"}.h-icon.global.search:before{content:"\E933"}.h-icon.global.settings:before{content:"\E934"}.h-icon.global.share-2:before{content:"\E935"}.h-icon.global.share:before{content:"\E936"}.h-icon.global.shopping-bag:before{content:"\E937"}.h-icon.global.slider-controls-minus:before{content:"\E938"}.h-icon.global.slider-controls-plus:before{content:"\E939"}.h-icon.global.smartphone:before{content:"\E93A"}.h-icon.global.social-fb-sq:before{content:"\E93B"}.h-icon.global.social-fb:before{content:"\E93C"}.h-icon.global.social-ig-sq:before{content:"\E93D"}.h-icon.global.social-ig:before{content:"\E93E"}.h-icon.global.social-li-sq:before{content:"\E93F"}.h-icon.global.social-li:before{content:"\E940"}.h-icon.global.social-tw-sq:before{content:"\E941"}.h-icon.global.social-tw:before{content:"\E942"}.h-icon.global.social-yt-sq:before{content:"\E943"}.h-icon.global.social-yt:before{content:"\E944"}.h-icon.global.speaker-off:before{content:"\E945"}.h-icon.global.speaker-on:before{content:"\E946"}.h-icon.global.star:before{content:"\E947"}.h-icon.global.tools:before{content:"\E948"}.h-icon.global.undo:before{content:"\E949"}.h-icon.global.unlocked:before{content:"\E94A"}.h-icon.global.user:before{content:"\E94B"}.h-icon.global.users:before{content:"\E94C"}.h-icon.global.voice-message:before{content:"\E94D"}.h-icon.global.wifi:before{content:"\E94E"}.h-icon.global.shipping{font-family:"Honeywell-Addons" !important}.h-icon.global.shipping:before{content:"\1F399"}.h-icon.global.app-launcher{font-family:"Honeywell-Addons" !important}.h-icon.global.app-launcher:before{content:"\E900"}.h-icon.global.double-caret-right{font-family:"Honeywell-Addons" !important}.h-icon.global.double-caret-right:before{content:"\E901"}.h-icon.global.double-caret-left{font-family:"Honeywell-Addons" !important}.h-icon.global.double-caret-left:before{content:"\E902"}.h-icon.global.rtm{font-family:"Honeywell-Addons" !important}.h-icon.global.rtm:before{content:"\E916"}.h-icon.global.organization{font-family:"Honeywell-Addons" !important}.h-icon.global.organization:before{content:"\E90D"}.h-icon.global.dash{font-family:"Honeywell-Addons" !important}.h-icon.global.dash:before{content:"\E90E"}.h-icon.global.equipment{font-family:"Honeywell-Addons" !important}.h-icon.global.equipment:before{content:"\E90F"}.h-icon.global.inspections{font-family:"Honeywell-Addons" !important}.h-icon.global.inspections:before{content:"\E910"}.h-icon.global.reports{font-family:"Honeywell-Addons" !important}.h-icon.global.reports:before{content:"\E911"}.h-icon.global.training{font-family:"Honeywell-Addons" !important}.h-icon.global.training:before{content:"\E91A"}.h-icon.global.sites-pin{font-family:"Honeywell-Addons" !important}.h-icon.global.sites-pin:before{content:"\E919"}.h-icon.global.users-two{font-family:"Honeywell-Addons" !important}.h-icon.global.users-two:before{content:"\E91B"}.h-icon.global.unequal{font-family:"Honeywell-Addons" !important}.h-icon.global.unequal:before{content:"\E918"}.h-icon.aero{font-family:'Honeywell-Flight' !important}.h-icon.aero.ac-atr:before{content:"\E92A"}.h-icon.aero.ac-bga:before{content:"\E92B"}.h-icon.aero.ac-dns:before{content:"\E92C"}.h-icon.aero.ac-dualprop:before{content:"\E92D"}.h-icon.aero.ac-glider:before{content:"\E92E"}.h-icon.aero.ac-highwing:before{content:"\E92F"}.h-icon.aero.ac-lowwing:before{content:"\E930"}.h-icon.aero.ac-profile:before{content:"\E931"}.h-icon.aero.ac-right:before{content:"\E932"}.h-icon.aero.ac-settings:before{content:"\E933"}.h-icon.aero.ac-up:before{content:"\E934"}.h-icon.aero.airports-directory:before{content:"\E935"}.h-icon.aero.airports-nearby:before{content:"\E936"}.h-icon.aero.airports:before{content:"\E937"}.h-icon.aero.cabin-seat:before{content:"\E938"}.h-icon.aero.cabin:before{content:"\E939"}.h-icon.aero.cleaning:before{content:"\E93A"}.h-icon.aero.eapis-3:before{content:"\E93B"}.h-icon.aero.eapis-alt:before{content:"\E93C"}.h-icon.aero.eapis:before{content:"\E93D"}.h-icon.aero.egi-2:before{content:"\E93E"}.h-icon.aero.egi:before{content:"\E93F"}.h-icon.aero.fbo-1:before{content:"\E940"}.h-icon.aero.fbo-2:before{content:"\E941"}.h-icon.aero.fbo:before{content:"\E942"}.h-icon.aero.flight-attendant:before{content:"\E943"}.h-icon.aero.flight-plan-doc:before{content:"\E944"}.h-icon.aero.flight-plan-new:before{content:"\E945"}.h-icon.aero.flight-plan:before{content:"\E946"}.h-icon.aero.flight-schedule-alt:before{content:"\E947"}.h-icon.aero.flight-schedule:before{content:"\E948"}.h-icon.aero.fuel:before{content:"\E949"}.h-icon.aero.hangar:before{content:"\E94A"}.h-icon.aero.helicopter:before{content:"\E94B"}.h-icon.aero.intl-trip:before{content:"\E94C"}.h-icon.aero.luggage:before{content:"\E94D"}.h-icon.aero.notams-2:before{content:"\E94E"}.h-icon.aero.notams-3:before{content:"\E94F"}.h-icon.aero.notams:before{content:"\E950"}.h-icon.aero.pilot-crushcap:before{content:"\E951"}.h-icon.aero.plane-approach-1:before{content:"\E952"}.h-icon.aero.plane-approach-2:before{content:"\E953"}.h-icon.aero.psngr-boarding:before{content:"\E954"}.h-icon.aero.psngr-deboarding:before{content:"\E955"}.h-icon.aero.ramp-1:before{content:"\E956"}.h-icon.aero.ramp-2:before{content:"\E957"}.h-icon.aero.ramp-3:before{content:"\E958"}.h-icon.aero.runway-analysis-1:before{content:"\E959"}.h-icon.aero.runway-analysis-2:before{content:"\E95A"}.h-icon.aero.runway-analysis-3:before{content:"\E95B"}.h-icon.aero.runway:before{content:"\E95C"}.h-icon.aero.screen-seat:before{content:"\E95D"}.h-icon.aero.speed-indicator-air:before{content:"\E95E"}.h-icon.aero.speed-indicator-vertical:before{content:"\E95F"}.h-icon.aero.speed-indicator:before{content:"\E960"}.h-icon.aero.track-up-centered:before{content:"\E961"}.h-icon.aero.track-up:before{content:"\E962"}.h-icon.aero.trip-kit-add:before{content:"\E963"}.h-icon.aero.trip-kit-refresh:before{content:"\E964"}.h-icon.aero.trip-kit:before{content:"\E965"}.h-icon.aero.uav:before{content:"\E966"}.h-icon.aero.valance:before{content:"\E967"}.h-icon.aero.weather-chart:before{content:"\E968"}.h-icon.aero.wheel-chocks:before{content:"\E969"}.h-icon.aero.window-down:before{content:"\E96A"}.h-icon.aero.window-mid:before{content:"\E96B"}.h-icon.aero.window-up:before{content:"\E96C"}.h-icon.aero.ptmd{font-family:"Honeywell-Addons" !important}.h-icon.aero.ptmd:before{content:"\E903"}.h-icon.aero.flight-efficiency{font-family:"Honeywell-Addons" !important}.h-icon.aero.flight-efficiency:before{content:"\E904"}.h-icon.aero.cmx{font-family:"Honeywell-Addons" !important}.h-icon.aero.cmx:before{content:"\E905"}.h-icon.building{font-family:'Honeywell-Buildings' !important}.h-icon.building.add:before{content:"\E96D"}.h-icon.building.badge-alert:before{content:"\E96E"}.h-icon.building.badge-help:before{content:"\E96F"}.h-icon.building.badge-info:before{content:"\E970"}.h-icon.building.badge-stop:before{content:"\E971"}.h-icon.building.badge-warning:before{content:"\E972"}.h-icon.building.battery-empty:before{content:"\E973"}.h-icon.building.battery-full:before{content:"\E974"}.h-icon.building.battery-low:before{content:"\E975"}.h-icon.building.battery-mid:before{content:"\E976"}.h-icon.building.calendar .path1:before{content:"\E977"}.h-icon.building.calendar .path2:before{content:"\EA1B";margin-left:-1em}.h-icon.building.calendar .path3:before{content:"\EA1C";margin-left:-1em}.h-icon.building.calendar .path4:before{content:"\EA1D";margin-left:-1em}.h-icon.building.calendar .path5:before{content:"\EA1E";margin-left:-1em}.h-icon.building.calendar .path6:before{content:"\EA1F";margin-left:-1em}.h-icon.building.calendar .path7:before{content:"\EA20";margin-left:-1em}.h-icon.building.calendar .path8:before{content:"\EA21";margin-left:-1em}.h-icon.building.calendar .path9:before{content:"\EA22";margin-left:-1em}.h-icon.building.calendar .path10:before{content:"\EA23";margin-left:-1em}.h-icon.building.calendar .path11:before{content:"\EA24";margin-left:-1em}.h-icon.building.calendar .path12:before{content:"\EA25";margin-left:-1em}.h-icon.building.calendar .path13:before{content:"\EA26";margin-left:-1em}.h-icon.building.camera:before{content:"\E978"}.h-icon.building.caret-down:before{content:"\E979"}.h-icon.building.caret-left:before{content:"\E97A"}.h-icon.building.caret-right:before{content:"\E97B"}.h-icon.building.caret-up:before{content:"\E97C"}.h-icon.building.check:before{content:"\E97D"}.h-icon.building.close-circled:before{content:"\E97E"}.h-icon.building.close:before{content:"\E97F"}.h-icon.building.cloud-download:before{content:"\E980"}.h-icon.building.cloud-upload:before{content:"\E981"}.h-icon.building.collapse:before{content:"\E982"}.h-icon.building.credit-card:before{content:"\E983"}.h-icon.building.dashboard:before{content:"\E984"}.h-icon.building.delete:before{content:"\E985"}.h-icon.building.doc-add:before{content:"\E986"}.h-icon.building.doc-annotate:before{content:"\E987"}.h-icon.building.doc-certificate:before{content:"\E988"}.h-icon.building.doc-pdf:before{content:"\E989"}.h-icon.building.doc-photo:before{content:"\E98A"}.h-icon.building.doc-proc:before{content:"\E98B"}.h-icon.building.doc-search:before{content:"\E98C"}.h-icon.building.doc-test:before{content:"\E98D"}.h-icon.building.document:before{content:"\E98E"}.h-icon.building.edit-circled:before{content:"\E98F"}.h-icon.building.edit:before{content:"\E990"}.h-icon.building.email:before{content:"\E991"}.h-icon.building.expand:before{content:"\E992"}.h-icon.building.export:before{content:"\E993"}.h-icon.building.file-download:before{content:"\E994"}.h-icon.building.file-upload:before{content:"\E995"}.h-icon.building.filter:before{content:"\E996"}.h-icon.building.flag-icon:before{content:"\E997"}.h-icon.building.folder-music:before{content:"\E998"}.h-icon.building.folder:before{content:"\E999"}.h-icon.building.fullscreen-enter:before{content:"\E99A"}.h-icon.building.fullscreen-exit:before{content:"\E99B"}.h-icon.building.globe:before{content:"\E99C"}.h-icon.building.graph:before{content:"\E99D"}.h-icon.building.home:before{content:"\E99E"}.h-icon.building.location:before{content:"\E99F"}.h-icon.building.locked:before{content:"\E9A0"}.h-icon.building.map:before{content:"\E9A1"}.h-icon.building.menu-icon:before{content:"\E9A2"}.h-icon.building.message:before{content:"\E9A3"}.h-icon.building.messages:before{content:"\E9A4"}.h-icon.building.modify:before{content:"\E9A5"}.h-icon.building.multiple-devices:before{content:"\E9A6"}.h-icon.building.music:before{content:"\E9A7"}.h-icon.building.notification:before{content:"\E9A8"}.h-icon.building.paperclip:before{content:"\E9A9"}.h-icon.building.pc:before{content:"\E9AA"}.h-icon.building.phone:before{content:"\E9AB"}.h-icon.building.playback-pause:before{content:"\E9AC"}.h-icon.building.playback-play:before{content:"\E9AD"}.h-icon.building.playback-rec:before{content:"\E9AE"}.h-icon.building.playback-stop:before{content:"\E9AF"}.h-icon.building.print:before{content:"\E9B0"}.h-icon.building.redo:before{content:"\E9B1"}.h-icon.building.refresh:before{content:"\E9B2"}.h-icon.building.save:before{content:"\E9B3"}.h-icon.building.search:before{content:"\E9B4"}.h-icon.building.settings:before{content:"\E9B5"}.h-icon.building.share-2:before{content:"\E9B6"}.h-icon.building.share:before{content:"\E9B7"}.h-icon.building.shopping-bag:before{content:"\E9B8"}.h-icon.building.slider-controls-minus:before{content:"\E9B9"}.h-icon.building.slider-controls-plus:before{content:"\E9BA"}.h-icon.building.smartphone:before{content:"\E9BB"}.h-icon.building.social-fb:before{content:"\E9BC"}.h-icon.building.social-ig:before{content:"\E9BD"}.h-icon.building.social-tw:before{content:"\E9BE"}.h-icon.building.social-yt:before{content:"\E9BF"}.h-icon.building.speaker-off:before{content:"\E9C0"}.h-icon.building.speaker-on:before{content:"\E9C1"}.h-icon.building.star:before{content:"\E9C2"}.h-icon.building.tag:before{content:"\E9C3"}.h-icon.building.timeline:before{content:"\E9C4"}.h-icon.building.tools:before{content:"\E9C5"}.h-icon.building.undo:before{content:"\E9C6"}.h-icon.building.unlocked:before{content:"\E9C7"}.h-icon.building.user-filled:before{content:"\E9C8"}.h-icon.building.user:before{content:"\E9C9"}.h-icon.building.voicemessages:before{content:"\E9CA"}.h-icon.building.wifi:before{content:"\E9CB"}.h-icon.building.total-footprint{font-family:"Honeywell-Addons" !important}.h-icon.building.total-footprint:before{content:"\E912"}.h-icon.building.sites{font-family:"Honeywell-Addons" !important}.h-icon.building.sites:before{content:"\E913"}.h-icon.building.portfolio-savings{font-family:"Honeywell-Addons" !important}.h-icon.building.portfolio-savings:before{content:"\E914"}.h-icon.building.portfolio-cost{font-family:"Honeywell-Addons" !important}.h-icon.building.portfolio-cost:before{content:"\E915"}.h-icon.building.comfort{font-family:"Honeywell-Addons" !important}.h-icon.building.comfort:before{content:"\E906"}.h-icon.building.filter-alt{font-family:"Honeywell-Addons" !important}.h-icon.building.filter-alt:before{content:"\E907"}.h-icon.building.graph-alt{font-family:"Honeywell-Addons" !important}.h-icon.building.graph-alt:before{content:"\E90A"}.h-icon.building.home-alt{font-family:"Honeywell-Addons" !important}.h-icon.building.home-alt:before{content:"\E90B"}.h-icon.building.sites-alt{font-family:"Honeywell-Addons" !important}.h-icon.building.sites-alt:before{content:"\E90C"}.h-icon.building.operations{font-family:"Honeywell-Addons" !important}.h-icon.building.operations:before{content:"\E908"}.h-icon.building.energy{font-family:"Honeywell-Addons" !important}.h-icon.building.energy:before{content:"\E909"}.h-icon.building.rounds{font-family:"Honeywell-Addons" !important}.h-icon.building.rounds:before{content:"\E917"}.h-icon.weather{font-family:'Honeywell-Weather'}.h-icon.weather.blowingsnow:before{content:"\E900"}.h-icon.weather.breezy:before{content:"\E901"}.h-icon.weather.clear:before{content:"\E902"}.h-icon.weather.clearnight:before{content:"\E903"}.h-icon.weather.drizzle:before{content:"\E904"}.h-icon.weather.fewbrokenclowds:before{content:"\E905"}.h-icon.weather.fog:before{content:"\E906"}.h-icon.weather.freezingdrizzle:before{content:"\E907"}.h-icon.weather.freezingrain:before{content:"\E908"}.h-icon.weather.funnelcloud:before{content:"\E909"}.h-icon.weather.hail:before{content:"\E90A"}.h-icon.weather.haze:before{content:"\E90B"}.h-icon.weather.heavyfog:before{content:"\E90C"}.h-icon.weather.heavyrain:before{content:"\E90D"}.h-icon.weather.heavysnow:before{content:"\E90E"}.h-icon.weather.hot:before{content:"\E90F"}.h-icon.weather.hurricane:before{content:"\E910"}.h-icon.weather.ice:before{content:"\E911"}.h-icon.weather.icepellets:before{content:"\E912"}.h-icon.weather.lightfog:before{content:"\E913"}.h-icon.weather.lightrain:before{content:"\E914"}.h-icon.weather.lightsnow:before{content:"\E915"}.h-icon.weather.mixrainfall:before{content:"\E916"}.h-icon.weather.moderatefog:before{content:"\E917"}.h-icon.weather.moderaterain:before{content:"\E918"}.h-icon.weather.moderatesnow:before{content:"\E919"}.h-icon.weather.na:before{content:"\E91A"}.h-icon.weather.noreport:before{content:"\E91B"}.h-icon.weather.overcast:before{content:"\E91C"}.h-icon.weather.rain:before{content:"\E91D"}.h-icon.weather.rainshowers:before{content:"\E91E"}.h-icon.weather.sandustorm:before{content:"\E91F"}.h-icon.weather.scatteredclouds:before{content:"\E920"}.h-icon.weather.scatteredshowers:before{content:"\E921"}.h-icon.weather.scatteredthunderstorm:before{content:"\E922"}.h-icon.weather.smoke:before{content:"\E923"}.h-icon.weather.snowshowers:before{content:"\E924"}.h-icon.weather.sunrise:before{content:"\E925"}.h-icon.weather.sunset:before{content:"\E926"}.h-icon.weather.thunderstorm:before{content:"\E927"}.h-icon.weather.tropicalstorm:before{content:"\E928"}.h-icon.weather.water:before{content:"\E929"}html.honeywell-dark-theme{/*!
 * # Semantic UI 2.2.11 - Divider
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Header
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Input
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Label
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - List
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Loader
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Loader
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Step
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Table
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Item
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Statistic
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Accordion
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Checkbox
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Dimmer
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Dropdown
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Modal
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Popup
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Search
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Sidebar
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}html.honeywell-dark-theme body{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;background:#202020}html.honeywell-dark-theme h1,html.honeywell-dark-theme h2,html.honeywell-dark-theme h3,html.honeywell-dark-theme h4,html.honeywell-dark-theme h5{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif}html.honeywell-dark-theme a{color:#45A7EA}html.honeywell-dark-theme a:hover{color:#45A7EA}html.honeywell-dark-theme a:active{color:#8BC8F2}html.honeywell-dark-theme .ui.divider{margin:1rem 0rem;line-height:1;height:0em;font-weight:bold;text-transform:uppercase;letter-spacing:0.05em;color:rgba(0,0,0,0.85);user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}html.honeywell-dark-theme .ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(34,36,38,0.15);border-bottom:1px solid rgba(255,255,255,0.1)}html.honeywell-dark-theme .ui.grid>.column+.divider,html.honeywell-dark-theme .ui.grid>.row>.column+.divider{left:auto}html.honeywell-dark-theme .ui.horizontal.divider{display:table;white-space:nowrap;height:auto;margin:'';line-height:1;text-align:center}html.honeywell-dark-theme .ui.horizontal.divider:before,html.honeywell-dark-theme .ui.horizontal.divider:after{content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}html.honeywell-dark-theme .ui.horizontal.divider:before{background-position:right 1em top 50%}html.honeywell-dark-theme .ui.horizontal.divider:after{background-position:left 1em top 50%}html.honeywell-dark-theme .ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0rem;padding:0em;width:auto;height:50%;line-height:0em;text-align:center;transform:translateX(-50%)}html.honeywell-dark-theme .ui.vertical.divider:before,html.honeywell-dark-theme .ui.vertical.divider:after{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(34,36,38,0.15);border-right:1px solid rgba(255,255,255,0.1);width:0%;height:calc(100% -  1rem)}html.honeywell-dark-theme .ui.vertical.divider:before{top:-100%}html.honeywell-dark-theme .ui.vertical.divider:after{top:auto;bottom:0px}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.stackable.grid .ui.vertical.divider,html.honeywell-dark-theme .ui.grid .stackable.row .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;transform:none}html.honeywell-dark-theme .ui.stackable.grid .ui.vertical.divider:before,html.honeywell-dark-theme .ui.grid .stackable.row .ui.vertical.divider:before,html.honeywell-dark-theme .ui.stackable.grid .ui.vertical.divider:after,html.honeywell-dark-theme .ui.grid .stackable.row .ui.vertical.divider:after{position:static;left:0;border-left:none;border-right:none;content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}html.honeywell-dark-theme .ui.stackable.grid .ui.vertical.divider:before,html.honeywell-dark-theme .ui.grid .stackable.row .ui.vertical.divider:before{background-position:right 1em top 50%}html.honeywell-dark-theme .ui.stackable.grid .ui.vertical.divider:after,html.honeywell-dark-theme .ui.grid .stackable.row .ui.vertical.divider:after{background-position:left 1em top 50%}}html.honeywell-dark-theme .ui.divider>.icon{margin:0rem;font-size:1rem;height:1em;vertical-align:middle}html.honeywell-dark-theme .ui.hidden.divider{border-color:transparent !important}html.honeywell-dark-theme .ui.hidden.divider:before,html.honeywell-dark-theme .ui.hidden.divider:after{display:none}html.honeywell-dark-theme .ui.fitted.divider{margin:0em}html.honeywell-dark-theme .ui.clearing.divider{clear:both}html.honeywell-dark-theme .ui.section.divider{margin-top:2rem;margin-bottom:2rem}html.honeywell-dark-theme .ui.divider{font-size:1rem}html.honeywell-dark-theme .ui.horizontal.divider:before,html.honeywell-dark-theme .ui.horizontal.divider:after{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC")}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.stackable.grid .ui.vertical.divider:before,html.honeywell-dark-theme .ui.grid .stackable.row .ui.vertical.divider:before,html.honeywell-dark-theme .ui.stackable.grid .ui.vertical.divider:after,html.honeywell-dark-theme .ui.grid .stackable.row .ui.vertical.divider:after{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC")}}html.honeywell-dark-theme .ui.header{border:none;margin:calc(2rem -  0.14285714em) 0em 1rem;padding:0em 0em;font-weight:bold;line-height:1.28571429em;text-transform:none;color:rgba(0,0,0,0.87)}html.honeywell-dark-theme .ui.header:first-child{margin-top:-0.14285714em}html.honeywell-dark-theme .ui.header:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.header .sub.header{display:block;font-weight:normal;padding:0em;margin:0em;font-size:1rem;line-height:1.2em;color:rgba(0,0,0,0.6)}html.honeywell-dark-theme .ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:0.14285714em;vertical-align:middle}html.honeywell-dark-theme .ui.header .icon:only-child{display:inline-block;padding:0em;margin-right:0.75rem}html.honeywell-dark-theme .ui.header>.image:not(.icon),html.honeywell-dark-theme .ui.header>img{display:inline-block;margin-top:0.14285714em;width:2.5em;height:auto;vertical-align:middle}html.honeywell-dark-theme .ui.header>.image:not(.icon):only-child,html.honeywell-dark-theme .ui.header>img:only-child{margin-right:0.75rem}html.honeywell-dark-theme .ui.header .content{display:inline-block;vertical-align:top}html.honeywell-dark-theme .ui.header>img+.content,html.honeywell-dark-theme .ui.header>.image+.content{padding-left:0.75rem;vertical-align:middle}html.honeywell-dark-theme .ui.header>.icon+.content{padding-left:0.75rem;display:table-cell;vertical-align:middle}html.honeywell-dark-theme .ui.header .ui.label{font-size:'';margin-left:0.5rem;vertical-align:middle}html.honeywell-dark-theme .ui.header+p{margin-top:0em}html.honeywell-dark-theme h1.ui.header{font-size:2rem}html.honeywell-dark-theme h2.ui.header{font-size:1.71428571rem}html.honeywell-dark-theme h3.ui.header{font-size:1.28571429rem}html.honeywell-dark-theme h4.ui.header{font-size:1.07142857rem}html.honeywell-dark-theme h5.ui.header{font-size:1rem}html.honeywell-dark-theme h1.ui.header .sub.header{font-size:1.14285714rem}html.honeywell-dark-theme h2.ui.header .sub.header{font-size:1.14285714rem}html.honeywell-dark-theme h3.ui.header .sub.header{font-size:1rem}html.honeywell-dark-theme h4.ui.header .sub.header{font-size:1rem}html.honeywell-dark-theme h5.ui.header .sub.header{font-size:0.92857143rem}html.honeywell-dark-theme .ui.huge.header{min-height:1em;font-size:2em}html.honeywell-dark-theme .ui.large.header{font-size:1.71428571em}html.honeywell-dark-theme .ui.medium.header{font-size:1.28571429em}html.honeywell-dark-theme .ui.small.header{font-size:1.07142857em}html.honeywell-dark-theme .ui.tiny.header{font-size:1em}html.honeywell-dark-theme .ui.huge.header .sub.header{font-size:1.14285714rem}html.honeywell-dark-theme .ui.large.header .sub.header{font-size:1.14285714rem}html.honeywell-dark-theme .ui.header .sub.header{font-size:1rem}html.honeywell-dark-theme .ui.small.header .sub.header{font-size:1rem}html.honeywell-dark-theme .ui.tiny.header .sub.header{font-size:0.92857143rem}html.honeywell-dark-theme .ui.sub.header{padding:0em;margin-bottom:0.14285714rem;font-weight:bold;font-size:0.85714286em;text-transform:uppercase;color:''}html.honeywell-dark-theme .ui.small.sub.header{font-size:0.78571429em}html.honeywell-dark-theme .ui.sub.header{font-size:0.85714286em}html.honeywell-dark-theme .ui.large.sub.header{font-size:0.92857143em}html.honeywell-dark-theme .ui.huge.sub.header{font-size:1em}html.honeywell-dark-theme .ui.icon.header{display:inline-block;text-align:center;margin:2rem 0em 1rem}html.honeywell-dark-theme .ui.icon.header:after{content:'';display:block;height:0px;clear:both;visibility:hidden}html.honeywell-dark-theme .ui.icon.header:first-child{margin-top:0em}html.honeywell-dark-theme .ui.icon.header .icon{float:none;display:block;width:auto;height:auto;line-height:1;padding:0em;font-size:3em;margin:0em auto 0.5rem;opacity:1}html.honeywell-dark-theme .ui.icon.header .content{display:block;padding:0em}html.honeywell-dark-theme .ui.icon.header .circular.icon{font-size:2em}html.honeywell-dark-theme .ui.icon.header .square.icon{font-size:2em}html.honeywell-dark-theme .ui.block.icon.header .icon{margin-bottom:0em}html.honeywell-dark-theme .ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}html.honeywell-dark-theme .ui.disabled.header{opacity:0.45}html.honeywell-dark-theme .ui.left.aligned.header{text-align:left}html.honeywell-dark-theme .ui.right.aligned.header{text-align:right}html.honeywell-dark-theme .ui.centered.header,html.honeywell-dark-theme .ui.center.aligned.header{text-align:center}html.honeywell-dark-theme .ui.justified.header{text-align:justify}html.honeywell-dark-theme .ui.justified.header:after{display:inline-block;content:'';width:100%}html.honeywell-dark-theme .ui.floated.header,html.honeywell-dark-theme .ui[class*="left floated"].header{float:left;margin-top:0em;margin-right:0.5em}html.honeywell-dark-theme .ui[class*="right floated"].header{float:right;margin-top:0em;margin-left:0.5em}html.honeywell-dark-theme .ui.fitted.header{padding:0em}html.honeywell-dark-theme .ui.dividing.header{padding-bottom:0.21428571rem;border-bottom:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.dividing.header .sub.header{padding-bottom:0.21428571rem}html.honeywell-dark-theme .ui.dividing.header .icon{margin-bottom:0em}html.honeywell-dark-theme .ui.block.header{background:#F3F4F5;padding:0.78571429rem 1rem;box-shadow:none;border:1px solid #D4D4D5;border-radius:0.28571429rem}html.honeywell-dark-theme .ui.tiny.block.header{font-size:0.85714286rem}html.honeywell-dark-theme .ui.small.block.header{font-size:0.92857143rem}html.honeywell-dark-theme .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1rem}html.honeywell-dark-theme .ui.large.block.header{font-size:1.14285714rem}html.honeywell-dark-theme .ui.huge.block.header{font-size:1.42857143rem}html.honeywell-dark-theme .ui.attached.header{background:#FFFFFF;padding:0.78571429rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #D4D4D5}html.honeywell-dark-theme .ui.attached.block.header{background:#F3F4F5}html.honeywell-dark-theme .ui.attached:not(.top):not(.bottom).header{margin-top:0em;margin-bottom:0em;border-top:none;border-radius:0em}html.honeywell-dark-theme .ui.top.attached.header{margin-bottom:0em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.bottom.attached.header{margin-top:0em;border-top:none;border-radius:0em 0em 0.28571429rem 0.28571429rem}html.honeywell-dark-theme .ui.tiny.attached.header{font-size:0.85714286em}html.honeywell-dark-theme .ui.small.attached.header{font-size:0.92857143em}html.honeywell-dark-theme .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}html.honeywell-dark-theme .ui.large.attached.header{font-size:1.14285714em}html.honeywell-dark-theme .ui.huge.attached.header{font-size:1.42857143em}html.honeywell-dark-theme .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28571429em}html.honeywell-dark-theme .ui.input{position:relative;font-weight:normal;font-style:normal;display:inline-flex}html.honeywell-dark-theme .ui.input input{margin:0em;max-width:100%;flex:1 0 auto;outline:none;text-align:left;line-height:1.21428571em;padding:0.67857143em 1em;border-radius:0.28571429rem;transition:box-shadow 0.1s ease, border-color 0.1s ease;box-shadow:none}html.honeywell-dark-theme .ui.disabled.input,html.honeywell-dark-theme .ui.input:not(.disabled) input[disabled]{opacity:0.45}html.honeywell-dark-theme .ui.disabled.input input,html.honeywell-dark-theme .ui.input:not(.disabled) input[disabled]{pointer-events:none}html.honeywell-dark-theme .ui.input input:active,html.honeywell-dark-theme .ui.input.down input{box-shadow:none}html.honeywell-dark-theme .ui.loading.loading.input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem}html.honeywell-dark-theme .ui.loading.loading.input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}html.honeywell-dark-theme .ui.input.focus input,html.honeywell-dark-theme .ui.input input:focus{box-shadow:none}html.honeywell-dark-theme .ui.transparent.input input{border-color:transparent !important;background-color:transparent !important;padding:0em !important;box-shadow:none !important;border-radius:0px !important}html.honeywell-dark-theme .ui.icon.input>i.icon{cursor:default;position:absolute;line-height:1;text-align:center;top:0px;right:0px;margin:0em;height:100%;width:2.67142857em;opacity:0.5;border-radius:0em 0.28571429rem 0.28571429rem 0em;transition:opacity 0.3s ease}html.honeywell-dark-theme .ui.icon.input>i.icon:not(.link){pointer-events:none}html.honeywell-dark-theme .ui.icon.input input{padding-right:2.67142857em !important}html.honeywell-dark-theme .ui.icon.input>i.icon:before,html.honeywell-dark-theme .ui.icon.input>i.icon:after{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-0.5em}html.honeywell-dark-theme .ui.icon.input>i.link.icon{cursor:pointer}html.honeywell-dark-theme .ui.icon.input>i.circular.icon{top:0.35em;right:0.5em}html.honeywell-dark-theme .ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:0.28571429rem 0em 0em 0.28571429rem}html.honeywell-dark-theme .ui[class*="left icon"].input>i.circular.icon{right:auto;left:0.5em}html.honeywell-dark-theme .ui[class*="left icon"].input>input{padding-left:2.67142857em !important;padding-right:1em !important}html.honeywell-dark-theme .ui.icon.input>input:focus ~ i.icon{opacity:1}html.honeywell-dark-theme .ui.action.input>.button,html.honeywell-dark-theme .ui.action.input>.buttons{display:flex;align-items:center;flex:0 0 auto}html.honeywell-dark-theme .ui.action.input>.button,html.honeywell-dark-theme .ui.action.input>.buttons>.button{padding-top:0.78571429em;padding-bottom:0.78571429em;margin:0}html.honeywell-dark-theme .ui.fluid.input{display:flex}html.honeywell-dark-theme .ui.fluid.input>input{width:0px !important}html.honeywell-dark-theme .ui.input{font-size:1em}html.honeywell-dark-theme .ui.label{display:inline-block;line-height:1;vertical-align:baseline;margin:0em 0.14285714em;background-image:none;padding:0.5833em 0.833em;text-transform:none;font-weight:bold;border:0px solid transparent;border-radius:0.28571429rem;transition:background 0.1s ease}html.honeywell-dark-theme .ui.label:first-child{margin-left:0em}html.honeywell-dark-theme .ui.label:last-child{margin-right:0em}html.honeywell-dark-theme a.ui.label{cursor:pointer}html.honeywell-dark-theme .ui.label>a{cursor:pointer;color:inherit;opacity:0.5;transition:0.1s opacity ease}html.honeywell-dark-theme .ui.label>a:hover{opacity:1}html.honeywell-dark-theme .ui.label>img{width:auto !important;vertical-align:middle;height:2.1666em !important}html.honeywell-dark-theme .ui.label>.icon{width:auto;margin:0em 0.75em 0em 0em}html.honeywell-dark-theme .ui.label>.detail{display:inline-block;vertical-align:top;font-weight:bold;margin-left:1em;opacity:0.8}html.honeywell-dark-theme .ui.label>.detail .icon{margin:0em 0.25em 0em 0em}html.honeywell-dark-theme .ui.label>.close.icon,html.honeywell-dark-theme .ui.label>.delete.icon{cursor:pointer;margin-right:0em;margin-left:0.5em;font-size:0.92857143em;opacity:0.5;transition:background 0.1s ease}html.honeywell-dark-theme .ui.label>.delete.icon:hover{opacity:1}html.honeywell-dark-theme .ui.labels>.label{margin:0em 0.5em 0.5em 0em}html.honeywell-dark-theme .ui.header>.ui.label{margin-top:-0.29165em}html.honeywell-dark-theme .ui.attached.segment>.ui.top.left.attached.label,html.honeywell-dark-theme .ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}html.honeywell-dark-theme .ui.attached.segment>.ui.top.right.attached.label,html.honeywell-dark-theme .ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}html.honeywell-dark-theme .ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}html.honeywell-dark-theme .ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}html.honeywell-dark-theme .ui.top.attached.label:first-child+:not(.attached),html.honeywell-dark-theme .ui.top.attached.label+[class*="right floated"]+*{margin-top:2rem !important}html.honeywell-dark-theme .ui.bottom.attached.label:first-child ~ :last-child:not(.attached){margin-top:0em;margin-bottom:2rem !important}html.honeywell-dark-theme .ui.image.label{width:auto !important;margin-top:0em;margin-bottom:0em;max-width:9999px;vertical-align:baseline;text-transform:none;background:#E8E8E8;padding:0.5833em 0.833em 0.5833em 0.5em;border-radius:0.28571429rem;box-shadow:none}html.honeywell-dark-theme .ui.image.label img{display:inline-block;vertical-align:top;height:2.1666em;margin:-0.5833em 0.5em -0.5833em -0.5em;border-radius:0.28571429rem 0em 0em 0.28571429rem}html.honeywell-dark-theme .ui.image.label .detail{background:rgba(0,0,0,0.1);margin:-0.5833em -0.833em -0.5833em 0.5em;padding:0.5833em 0.833em;border-radius:0em 0.28571429rem 0.28571429rem 0em}html.honeywell-dark-theme .ui.tag.labels .label,html.honeywell-dark-theme .ui.tag.label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0em 0.28571429rem 0.28571429rem 0em;transition:none}html.honeywell-dark-theme .ui.tag.labels .label:before,html.honeywell-dark-theme .ui.tag.label:before{position:absolute;transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:'';background-color:inherit;background-image:none;width:1.56em;height:1.56em;transition:none}html.honeywell-dark-theme .ui.tag.labels .label:after,html.honeywell-dark-theme .ui.tag.label:after{position:absolute;content:'';top:50%;left:-0.25em;margin-top:-0.25em;background-color:#FFFFFF !important;width:0.5em;height:0.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,0.3);border-radius:500rem}html.honeywell-dark-theme .ui.corner.label{position:absolute;top:0em;right:0em;margin:0em;padding:0em;text-align:center;border-color:#E8E8E8;width:4em;height:4em;z-index:1;transition:border-color 0.1s ease}html.honeywell-dark-theme .ui.corner.label{background-color:transparent !important}html.honeywell-dark-theme .ui.corner.label:after{position:absolute;content:"";right:0em;top:0em;z-index:-1;width:0em;height:0em;background-color:transparent !important;border-top:0em solid transparent;border-right:4em solid transparent;border-bottom:4em solid transparent;border-left:0em solid transparent;border-right-color:inherit;transition:border-color 0.1s ease}html.honeywell-dark-theme .ui.corner.label .icon{cursor:default;position:relative;top:0.64285714em;left:0.78571429em;font-size:1.14285714em;margin:0em}html.honeywell-dark-theme .ui.left.corner.label,html.honeywell-dark-theme .ui.left.corner.label:after{right:auto;left:0em}html.honeywell-dark-theme .ui.left.corner.label:after{border-top:4em solid transparent;border-right:4em solid transparent;border-bottom:0em solid transparent;border-left:0em solid transparent;border-top-color:inherit}html.honeywell-dark-theme .ui.left.corner.label .icon{left:-0.78571429em}html.honeywell-dark-theme .ui.segment>.ui.corner.label{top:-1px;right:-1px}html.honeywell-dark-theme .ui.segment>.ui.left.corner.label{right:auto;left:-1px}html.honeywell-dark-theme .ui.ribbon.label{position:relative;margin:0em;min-width:max-content;border-radius:0em 0.28571429rem 0.28571429rem 0em;border-color:rgba(0,0,0,0.15)}html.honeywell-dark-theme .ui.ribbon.label:after{position:absolute;content:'';top:100%;left:0%;background-color:transparent !important;border-style:solid;border-width:0em 1.2em 1.2em 0em;border-color:transparent;border-right-color:inherit;width:0em;height:0em}html.honeywell-dark-theme .ui.ribbon.label{left:calc( -1rem  -  1.2em);margin-right:-1.2em;padding-left:calc( 1rem  +  1.2em);padding-right:1.2em}html.honeywell-dark-theme .ui[class*="right ribbon"].label{left:calc(100% +  1rem  +  1.2em);padding-left:1.2em;padding-right:calc( 1rem  +  1.2em)}html.honeywell-dark-theme .ui[class*="right ribbon"].label{text-align:left;transform:translateX(-100%);border-radius:0.28571429rem 0em 0em 0.28571429rem}html.honeywell-dark-theme .ui[class*="right ribbon"].label:after{left:auto;right:0%;border-style:solid;border-width:1.2em 1.2em 0em 0em;border-color:transparent;border-top-color:inherit}html.honeywell-dark-theme .ui.image>.ribbon.label,html.honeywell-dark-theme .ui.card .image>.ribbon.label{position:absolute;top:1rem}html.honeywell-dark-theme .ui.card .image>.ui.ribbon.label,html.honeywell-dark-theme .ui.image>.ui.ribbon.label{left:calc( 0.05rem  -  1.2em)}html.honeywell-dark-theme .ui.card .image>.ui[class*="right ribbon"].label,html.honeywell-dark-theme .ui.image>.ui[class*="right ribbon"].label{left:calc(100% +  -0.05rem  +  1.2em);padding-left:0.833em}html.honeywell-dark-theme .ui.table td>.ui.ribbon.label{left:calc( -0.78571429em  -  1.2em)}html.honeywell-dark-theme .ui.table td>.ui[class*="right ribbon"].label{left:calc(100% +  0.78571429em  +  1.2em);padding-left:0.833em}html.honeywell-dark-theme .ui.label.disabled{opacity:0.5}html.honeywell-dark-theme a.ui.labels .label:hover,html.honeywell-dark-theme a.ui.label:hover{background-color:#E0E0E0;border-color:#E0E0E0;background-image:none;color:rgba(0,0,0,0.8)}html.honeywell-dark-theme .ui.labels a.label:hover:before,html.honeywell-dark-theme a.ui.label:hover:before{color:rgba(0,0,0,0.8)}html.honeywell-dark-theme .ui.active.label{background-color:#D0D0D0;border-color:#D0D0D0;background-image:none;color:rgba(0,0,0,0.95)}html.honeywell-dark-theme .ui.active.label:before{background-color:#D0D0D0;background-image:none;color:rgba(0,0,0,0.95)}html.honeywell-dark-theme a.ui.labels .active.label:hover,html.honeywell-dark-theme a.ui.active.label:hover{background-color:#C8C8C8;border-color:#C8C8C8;background-image:none;color:rgba(0,0,0,0.95)}html.honeywell-dark-theme .ui.labels a.active.label:ActiveHover:before,html.honeywell-dark-theme a.ui.active.label:ActiveHover:before{background-color:#C8C8C8;background-image:none;color:rgba(0,0,0,0.95)}html.honeywell-dark-theme .ui.labels.visible .label,html.honeywell-dark-theme .ui.label.visible:not(.dropdown){display:inline-block !important}html.honeywell-dark-theme .ui.labels.hidden .label,html.honeywell-dark-theme .ui.label.hidden{display:none !important}html.honeywell-dark-theme .ui.black.corner.label,html.honeywell-dark-theme .ui.black.corner.label:hover{background-color:transparent !important}html.honeywell-dark-theme .ui.black.ribbon.label{border-color:#805031 !important}html.honeywell-dark-theme .ui.basic.label{background:none #FFFFFF;border:1px solid rgba(34,36,38,0.15);color:rgba(0,0,0,0.87);box-shadow:none}html.honeywell-dark-theme a.ui.basic.label:hover{text-decoration:none;background:none #FFFFFF;color:#1e70bf;box-shadow:1px solid rgba(34,36,38,0.15);box-shadow:none}html.honeywell-dark-theme .ui.basic.pointing.label:before{border-color:inherit}html.honeywell-dark-theme .ui.label.fluid,html.honeywell-dark-theme .ui.fluid.labels>.label{width:100%;box-sizing:border-box}html.honeywell-dark-theme .ui.horizontal.labels .label,html.honeywell-dark-theme .ui.horizontal.label{margin:0em 0.5em 0em 0em;padding:0.4em 0.833em;min-width:3em;text-align:center}html.honeywell-dark-theme .ui.circular.labels .label,html.honeywell-dark-theme .ui.circular.label{min-width:2em;min-height:2em;padding:0.5em !important;line-height:1em;text-align:center;border-radius:500rem}html.honeywell-dark-theme .ui.empty.circular.labels .label,html.honeywell-dark-theme .ui.empty.circular.label{min-width:0em;min-height:0em;overflow:hidden;width:0.5em;height:0.5em;vertical-align:baseline}html.honeywell-dark-theme .ui.mini.labels .label,html.honeywell-dark-theme .ui.mini.label{font-size:0.64285714rem}html.honeywell-dark-theme .ui.tiny.labels .label,html.honeywell-dark-theme .ui.tiny.label{font-size:0.71428571rem}html.honeywell-dark-theme .ui.small.labels .label,html.honeywell-dark-theme .ui.small.label{font-size:0.78571429rem}html.honeywell-dark-theme .ui.labels .label,html.honeywell-dark-theme .ui.label{font-size:0.85714286rem}html.honeywell-dark-theme .ui.large.labels .label,html.honeywell-dark-theme .ui.large.label{font-size:1rem}html.honeywell-dark-theme .ui.big.labels .label,html.honeywell-dark-theme .ui.big.label{font-size:1.28571429rem}html.honeywell-dark-theme .ui.huge.labels .label,html.honeywell-dark-theme .ui.huge.label{font-size:1.42857143rem}html.honeywell-dark-theme .ui.massive.labels .label,html.honeywell-dark-theme .ui.massive.label{font-size:1.71428571rem}html.honeywell-dark-theme ul.ui.list,html.honeywell-dark-theme ol.ui.list,html.honeywell-dark-theme .ui.list{list-style-type:none;margin:1em 0em;padding:0em 0em}html.honeywell-dark-theme ul.ui.list:first-child,html.honeywell-dark-theme ol.ui.list:first-child,html.honeywell-dark-theme .ui.list:first-child{margin-top:0em;padding-top:0em}html.honeywell-dark-theme ul.ui.list:last-child,html.honeywell-dark-theme ol.ui.list:last-child,html.honeywell-dark-theme .ui.list:last-child{margin-bottom:0em;padding-bottom:0em}html.honeywell-dark-theme ul.ui.list li,html.honeywell-dark-theme ol.ui.list li,html.honeywell-dark-theme .ui.list>.item,html.honeywell-dark-theme .ui.list .list>.item{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:0.21428571em 0em;line-height:1.14285714em}html.honeywell-dark-theme ul.ui.list>li:first-child:after,html.honeywell-dark-theme ol.ui.list>li:first-child:after,html.honeywell-dark-theme .ui.list>.list>.item,html.honeywell-dark-theme .ui.list>.item:after{content:"";display:block;height:0;clear:both;visibility:hidden}html.honeywell-dark-theme ul.ui.list li:first-child,html.honeywell-dark-theme ol.ui.list li:first-child,html.honeywell-dark-theme .ui.list .list>.item:first-child,html.honeywell-dark-theme .ui.list>.item:first-child{padding-top:0em}html.honeywell-dark-theme ul.ui.list li:last-child,html.honeywell-dark-theme ol.ui.list li:last-child,html.honeywell-dark-theme .ui.list .list>.item:last-child,html.honeywell-dark-theme .ui.list>.item:last-child{padding-bottom:0em}html.honeywell-dark-theme ul.ui.list ul,html.honeywell-dark-theme ol.ui.list ol,html.honeywell-dark-theme .ui.list .list{clear:both;margin:0em;padding:0.75em 0em 0.25em 0.5em}html.honeywell-dark-theme ul.ui.list ul li,html.honeywell-dark-theme ol.ui.list ol li,html.honeywell-dark-theme .ui.list .list>.item{padding:0.14285714em 0em;line-height:inherit}html.honeywell-dark-theme .ui.list .list>.item>i.icon,html.honeywell-dark-theme .ui.list>.item>i.icon{display:table-cell;margin:0em;padding-top:0.07142857em;padding-right:0.28571429em;vertical-align:top;transition:color 0.1s ease}html.honeywell-dark-theme .ui.list .list>.item>i.icon:only-child,html.honeywell-dark-theme .ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}html.honeywell-dark-theme .ui.list .list>.item>.image,html.honeywell-dark-theme .ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0em;vertical-align:top}html.honeywell-dark-theme .ui.list .list>.item>.image:not(:only-child):not(img),html.honeywell-dark-theme .ui.list>.item>.image:not(:only-child):not(img){padding-right:0.5em}html.honeywell-dark-theme .ui.list .list>.item>.image img,html.honeywell-dark-theme .ui.list>.item>.image img{vertical-align:top}html.honeywell-dark-theme .ui.list .list>.item>img.image,html.honeywell-dark-theme .ui.list .list>.item>.image:only-child,html.honeywell-dark-theme .ui.list>.item>img.image,html.honeywell-dark-theme .ui.list>.item>.image:only-child{display:inline-block}html.honeywell-dark-theme .ui.list .list>.item>.content,html.honeywell-dark-theme .ui.list>.item>.content{line-height:1.14285714em}html.honeywell-dark-theme .ui.list .list>.item>.image+.content,html.honeywell-dark-theme .ui.list .list>.item>.icon+.content,html.honeywell-dark-theme .ui.list>.item>.image+.content,html.honeywell-dark-theme .ui.list>.item>.icon+.content{display:table-cell;padding:0em 0em 0em 0.5em;vertical-align:top}html.honeywell-dark-theme .ui.list .list>.item>img.image+.content,html.honeywell-dark-theme .ui.list>.item>img.image+.content{display:inline-block}html.honeywell-dark-theme .ui.list .list>.item>.content>.list,html.honeywell-dark-theme .ui.list>.item>.content>.list{margin-left:0em;padding-left:0em}html.honeywell-dark-theme .ui.list .list>.item .header,html.honeywell-dark-theme .ui.list>.item .header{display:block;margin:0em;font-weight:bold}html.honeywell-dark-theme .ui.list .list>.item .description,html.honeywell-dark-theme .ui.list>.item .description{display:block}html.honeywell-dark-theme .ui.list>.item a,html.honeywell-dark-theme .ui.list .list>.item a{cursor:pointer}html.honeywell-dark-theme .ui[class*="left floated"].list{float:left}html.honeywell-dark-theme .ui[class*="right floated"].list{float:right}html.honeywell-dark-theme .ui.list .list>.item [class*="left floated"],html.honeywell-dark-theme .ui.list>.item [class*="left floated"]{float:left;margin:0em 1em 0em 0em}html.honeywell-dark-theme .ui.list .list>.item [class*="right floated"],html.honeywell-dark-theme .ui.list>.item [class*="right floated"]{float:right;margin:0em 0em 0em 1em}html.honeywell-dark-theme .ui.menu .ui.list>.item,html.honeywell-dark-theme .ui.menu .ui.list .list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:0.21428571em 0em;line-height:1.14285714em}html.honeywell-dark-theme .ui.menu .ui.list .list>.item:before,html.honeywell-dark-theme .ui.menu .ui.list>.item:before{border:none;background:none}html.honeywell-dark-theme .ui.menu .ui.list .list>.item:first-child,html.honeywell-dark-theme .ui.menu .ui.list>.item:first-child{padding-top:0em}html.honeywell-dark-theme .ui.menu .ui.list .list>.item:last-child,html.honeywell-dark-theme .ui.menu .ui.list>.item:last-child{padding-bottom:0em}html.honeywell-dark-theme .ui.horizontal.list{display:inline-block;font-size:0em}html.honeywell-dark-theme .ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}html.honeywell-dark-theme .ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0em !important;padding-left:0em !important}html.honeywell-dark-theme .ui.horizontal.list .list{padding-left:0em;padding-bottom:0em}html.honeywell-dark-theme .ui.horizontal.list>.item>.image,html.honeywell-dark-theme .ui.horizontal.list .list>.item>.image,html.honeywell-dark-theme .ui.horizontal.list>.item>.icon,html.honeywell-dark-theme .ui.horizontal.list .list>.item>.icon,html.honeywell-dark-theme .ui.horizontal.list>.item>.content,html.honeywell-dark-theme .ui.horizontal.list .list>.item>.content{vertical-align:middle}html.honeywell-dark-theme .ui.horizontal.list>.item:first-child,html.honeywell-dark-theme .ui.horizontal.list>.item:last-child{padding-top:0.21428571em;padding-bottom:0.21428571em}html.honeywell-dark-theme .ui.horizontal.list>.item>i.icon{margin:0em;padding:0em 0.25em 0em 0em}html.honeywell-dark-theme .ui.horizontal.list>.item>.icon,html.honeywell-dark-theme .ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}html.honeywell-dark-theme .ui.list .list>.disabled.item,html.honeywell-dark-theme .ui.list>.disabled.item{pointer-events:none}html.honeywell-dark-theme .ui.list[class*="top aligned"] .image,html.honeywell-dark-theme .ui.list[class*="top aligned"] .content,html.honeywell-dark-theme .ui.list [class*="top aligned"]{vertical-align:top !important}html.honeywell-dark-theme .ui.list[class*="middle aligned"] .image,html.honeywell-dark-theme .ui.list[class*="middle aligned"] .content,html.honeywell-dark-theme .ui.list [class*="middle aligned"]{vertical-align:middle !important}html.honeywell-dark-theme .ui.list[class*="bottom aligned"] .image,html.honeywell-dark-theme .ui.list[class*="bottom aligned"] .content,html.honeywell-dark-theme .ui.list [class*="bottom aligned"]{vertical-align:bottom !important}html.honeywell-dark-theme .ui.celled.selection.list .list>.item,html.honeywell-dark-theme .ui.divided.selection.list .list>.item,html.honeywell-dark-theme .ui.celled.selection.list>.item,html.honeywell-dark-theme .ui.divided.selection.list>.item{border-radius:0em}html.honeywell-dark-theme .ui.animated.list>.item{transition:0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s}html.honeywell-dark-theme .ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}html.honeywell-dark-theme .ui.fitted.list:not(.selection) .list>.item,html.honeywell-dark-theme .ui.fitted.list:not(.selection)>.item{padding-left:0em;padding-right:0em}html.honeywell-dark-theme .ui.fitted.selection.list .list>.item,html.honeywell-dark-theme .ui.fitted.selection.list>.item{margin-left:-0.5em;margin-right:-0.5em}html.honeywell-dark-theme ul.ui.list,html.honeywell-dark-theme .ui.bulleted.list{margin-left:1.25rem}html.honeywell-dark-theme ul.ui.list li,html.honeywell-dark-theme .ui.bulleted.list .list>.item,html.honeywell-dark-theme .ui.bulleted.list>.item{position:relative}html.honeywell-dark-theme ul.ui.list li:before,html.honeywell-dark-theme .ui.bulleted.list .list>.item:before,html.honeywell-dark-theme .ui.bulleted.list>.item:before{user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;font-weight:normal;margin-left:-1.25rem;content:"\2022";opacity:1;color:inherit;vertical-align:top}html.honeywell-dark-theme ul.ui.list ul,html.honeywell-dark-theme .ui.bulleted.list .list{padding-left:1.25rem}html.honeywell-dark-theme ul.ui.horizontal.bulleted.list,html.honeywell-dark-theme .ui.horizontal.bulleted.list{margin-left:0em}html.honeywell-dark-theme ul.ui.horizontal.bulleted.list li,html.honeywell-dark-theme .ui.horizontal.bulleted.list>.item{margin-left:1.75rem}html.honeywell-dark-theme ul.ui.horizontal.bulleted.list li:first-child,html.honeywell-dark-theme .ui.horizontal.bulleted.list>.item:first-child{margin-left:0em}html.honeywell-dark-theme ol.ui.list,html.honeywell-dark-theme .ui.ordered.list,html.honeywell-dark-theme .ui.ordered.list .list,html.honeywell-dark-theme ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}html.honeywell-dark-theme ol.ui.list li,html.honeywell-dark-theme .ui.ordered.list .list>.item,html.honeywell-dark-theme .ui.ordered.list>.item{list-style-type:none;position:relative}html.honeywell-dark-theme ol.ui.list li:before,html.honeywell-dark-theme .ui.ordered.list .list>.item:before,html.honeywell-dark-theme .ui.ordered.list>.item:before{position:absolute;top:auto;left:auto;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered, ".") " ";text-align:right;vertical-align:middle;opacity:0.8}html.honeywell-dark-theme .ui.ordered.list>.list>.item[data-value],html.honeywell-dark-theme .ui.ordered.list>.item[data-value]{content:attr(data-value)}html.honeywell-dark-theme ol.ui.list li[value]:before{content:attr(value)}html.honeywell-dark-theme ol.ui.list ol,html.honeywell-dark-theme .ui.ordered.list .list{margin-left:1em}html.honeywell-dark-theme ol.ui.list ol li:before,html.honeywell-dark-theme .ui.ordered.list .list>.item:before{margin-left:-2em}html.honeywell-dark-theme ol.ui.horizontal.list,html.honeywell-dark-theme .ui.ordered.horizontal.list{margin-left:0em}html.honeywell-dark-theme ol.ui.horizontal.list li:before,html.honeywell-dark-theme .ui.ordered.horizontal.list .list>.item:before,html.honeywell-dark-theme .ui.ordered.horizontal.list>.item:before{position:static;margin:0em 0.5em 0em 0em}html.honeywell-dark-theme .ui.divided.list .list>.item{border-top:none}html.honeywell-dark-theme .ui.divided.list .item .list>.item{border-top:none}html.honeywell-dark-theme .ui.divided.list .list>.item:first-child,html.honeywell-dark-theme .ui.divided.list>.item:first-child{border-top:none}html.honeywell-dark-theme .ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}html.honeywell-dark-theme .ui.divided.bulleted.list:not(.horizontal),html.honeywell-dark-theme .ui.divided.bulleted.list .list{margin-left:0em;padding-left:0em}html.honeywell-dark-theme .ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}html.honeywell-dark-theme .ui.divided.ordered.list{margin-left:0em}html.honeywell-dark-theme .ui.divided.ordered.list .list>.item,html.honeywell-dark-theme .ui.divided.ordered.list>.item{padding-left:1.25rem}html.honeywell-dark-theme .ui.divided.ordered.list .item .list{margin-left:0em;margin-right:0em;padding-bottom:0.21428571em}html.honeywell-dark-theme .ui.divided.ordered.list .item .list>.item{padding-left:1em}html.honeywell-dark-theme .ui.divided.selection.list .list>.item,html.honeywell-dark-theme .ui.divided.selection.list>.item{margin:0em;border-radius:0em}html.honeywell-dark-theme .ui.divided.horizontal.list{margin-left:0em}html.honeywell-dark-theme .ui.divided.horizontal.list>.item:not(:first-child){padding-left:0.5em}html.honeywell-dark-theme .ui.divided.horizontal.list>.item:not(:last-child){padding-right:0.5em}html.honeywell-dark-theme .ui.divided.horizontal.list>.item{border-top:none;margin:0em;line-height:0.6}html.honeywell-dark-theme .ui.horizontal.divided.list>.item:first-child{border-left:none}html.honeywell-dark-theme .ui.celled.list>.item,html.honeywell-dark-theme .ui.celled.list>.list{padding-left:0.5em;padding-right:0.5em}html.honeywell-dark-theme .ui.celled.list>.item:first-child,html.honeywell-dark-theme .ui.celled.list>.item:last-child{padding-top:0.21428571em;padding-bottom:0.21428571em}html.honeywell-dark-theme .ui.celled.list .item .list>.item{border-width:0px}html.honeywell-dark-theme .ui.celled.list .list>.item:first-child{border-top-width:0px}html.honeywell-dark-theme .ui.celled.bulleted.list{margin-left:0em}html.honeywell-dark-theme .ui.celled.bulleted.list .list>.item,html.honeywell-dark-theme .ui.celled.bulleted.list>.item{padding-left:1.25rem}html.honeywell-dark-theme .ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:0.21428571em}html.honeywell-dark-theme .ui.celled.ordered.list{margin-left:0em}html.honeywell-dark-theme .ui.celled.ordered.list .list>.item,html.honeywell-dark-theme .ui.celled.ordered.list>.item{padding-left:1.25rem}html.honeywell-dark-theme .ui.celled.ordered.list .item .list{margin-left:0em;margin-right:0em;padding-bottom:0.21428571em}html.honeywell-dark-theme .ui.celled.ordered.list .list>.item{padding-left:1em}html.honeywell-dark-theme .ui.horizontal.celled.list{margin-left:0em}html.honeywell-dark-theme .ui.horizontal.celled.list .list>.item,html.honeywell-dark-theme .ui.horizontal.celled.list>.item{border-top:none;margin:0em;padding-left:0.5em;padding-right:0.5em;line-height:0.6}html.honeywell-dark-theme .ui.horizontal.celled.list .list>.item:last-child,html.honeywell-dark-theme .ui.horizontal.celled.list>.item:last-child{border-bottom:none}html.honeywell-dark-theme .ui.relaxed.list:not(.horizontal)>.item:not(:first-child){padding-top:0.42857143em}html.honeywell-dark-theme .ui.relaxed.list:not(.horizontal)>.item:not(:last-child){padding-bottom:0.42857143em}html.honeywell-dark-theme .ui.horizontal.relaxed.list .list>.item:not(:first-child),html.honeywell-dark-theme .ui.horizontal.relaxed.list>.item:not(:first-child){padding-left:1rem}html.honeywell-dark-theme .ui.horizontal.relaxed.list .list>.item:not(:last-child),html.honeywell-dark-theme .ui.horizontal.relaxed.list>.item:not(:last-child){padding-right:1rem}html.honeywell-dark-theme .ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:first-child){padding-top:0.85714286em}html.honeywell-dark-theme .ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:last-child){padding-bottom:0.85714286em}html.honeywell-dark-theme .ui.horizontal[class*="very relaxed"].list .list>.item:not(:first-child),html.honeywell-dark-theme .ui.horizontal[class*="very relaxed"].list>.item:not(:first-child){padding-left:1.5rem}html.honeywell-dark-theme .ui.horizontal[class*="very relaxed"].list .list>.item:not(:last-child),html.honeywell-dark-theme .ui.horizontal[class*="very relaxed"].list>.item:not(:last-child){padding-right:1.5rem}html.honeywell-dark-theme .ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0px;text-align:center;z-index:1000;transform:translateX(-50%) translateY(-50%)}html.honeywell-dark-theme .ui.loader:before{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.loader:after{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;animation:loader 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}@keyframes loader{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme .ui.mini.loader:before,html.honeywell-dark-theme .ui.mini.loader:after{width:1rem;height:1rem;margin:0em 0em 0em -0.5rem}html.honeywell-dark-theme .ui.tiny.loader:before,html.honeywell-dark-theme .ui.tiny.loader:after{width:1.14285714rem;height:1.14285714rem;margin:0em 0em 0em -0.57142857rem}html.honeywell-dark-theme .ui.small.loader:before,html.honeywell-dark-theme .ui.small.loader:after{width:1.71428571rem;height:1.71428571rem;margin:0em 0em 0em -0.85714286rem}html.honeywell-dark-theme .ui.loader:before,html.honeywell-dark-theme .ui.loader:after{width:2.28571429rem;height:2.28571429rem;margin:0em 0em 0em -1.14285714rem}html.honeywell-dark-theme .ui.large.loader:before,html.honeywell-dark-theme .ui.large.loader:after{width:3.42857143rem;height:3.42857143rem;margin:0em 0em 0em -1.71428571rem}html.honeywell-dark-theme .ui.big.loader:before,html.honeywell-dark-theme .ui.big.loader:after{width:3.71428571rem;height:3.71428571rem;margin:0em 0em 0em -1.85714286rem}html.honeywell-dark-theme .ui.huge.loader:before,html.honeywell-dark-theme .ui.huge.loader:after{width:4.14285714rem;height:4.14285714rem;margin:0em 0em 0em -2.07142857rem}html.honeywell-dark-theme .ui.massive.loader:before,html.honeywell-dark-theme .ui.massive.loader:after{width:4.57142857rem;height:4.57142857rem;margin:0em 0em 0em -2.28571429rem}html.honeywell-dark-theme .ui.dimmer .loader{display:block}html.honeywell-dark-theme .ui.dimmer .ui.loader{color:rgba(255,255,255,0.9)}html.honeywell-dark-theme .ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,0.15)}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,0.87)}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}html.honeywell-dark-theme .ui.text.loader{width:auto !important;height:auto !important;text-align:center;font-style:normal}html.honeywell-dark-theme .ui.indeterminate.loader:after{animation-direction:reverse;animation-duration:1.2s}html.honeywell-dark-theme .ui.loader.active,html.honeywell-dark-theme .ui.loader.visible{display:block}html.honeywell-dark-theme .ui.loader.disabled,html.honeywell-dark-theme .ui.loader.hidden{display:none}html.honeywell-dark-theme .ui.inverted.dimmer .ui.mini.loader,html.honeywell-dark-theme .ui.mini.loader{width:1rem;height:1rem;font-size:0.78571429em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.tiny.loader,html.honeywell-dark-theme .ui.tiny.loader{width:1.14285714rem;height:1.14285714rem;font-size:0.85714286em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.small.loader,html.honeywell-dark-theme .ui.small.loader{width:1.71428571rem;height:1.71428571rem;font-size:0.92857143em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader,html.honeywell-dark-theme .ui.loader{width:2.28571429rem;height:2.28571429rem;font-size:1em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.large.loader,html.honeywell-dark-theme .ui.large.loader{width:3.42857143rem;height:3.42857143rem;font-size:1.14285714em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.big.loader,html.honeywell-dark-theme .ui.big.loader{width:3.71428571rem;height:3.71428571rem;font-size:1.28571429em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.huge.loader,html.honeywell-dark-theme .ui.huge.loader{width:4.14285714rem;height:4.14285714rem;font-size:1.42857143em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.massive.loader,html.honeywell-dark-theme .ui.massive.loader{width:4.57142857rem;height:4.57142857rem;font-size:1.71428571em}html.honeywell-dark-theme .ui.inverted.loader{color:rgba(255,255,255,0.9)}html.honeywell-dark-theme .ui.inverted.loader:before{border-color:rgba(255,255,255,0.15)}html.honeywell-dark-theme .ui.inverted.loader:after{border-top-color:#FFFFFF}html.honeywell-dark-theme .ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0px;text-align:center;z-index:1000;transform:translateX(-50%) translateY(-50%)}html.honeywell-dark-theme .ui.loader:before{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.loader:after{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;animation:loader 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}@keyframes loader{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme .ui.mini.loader:before,html.honeywell-dark-theme .ui.mini.loader:after{width:1rem;height:1rem;margin:0em 0em 0em -0.5rem}html.honeywell-dark-theme .ui.tiny.loader:before,html.honeywell-dark-theme .ui.tiny.loader:after{width:1.14285714rem;height:1.14285714rem;margin:0em 0em 0em -0.57142857rem}html.honeywell-dark-theme .ui.small.loader:before,html.honeywell-dark-theme .ui.small.loader:after{width:1.71428571rem;height:1.71428571rem;margin:0em 0em 0em -0.85714286rem}html.honeywell-dark-theme .ui.loader:before,html.honeywell-dark-theme .ui.loader:after{width:2.28571429rem;height:2.28571429rem;margin:0em 0em 0em -1.14285714rem}html.honeywell-dark-theme .ui.large.loader:before,html.honeywell-dark-theme .ui.large.loader:after{width:3.42857143rem;height:3.42857143rem;margin:0em 0em 0em -1.71428571rem}html.honeywell-dark-theme .ui.big.loader:before,html.honeywell-dark-theme .ui.big.loader:after{width:3.71428571rem;height:3.71428571rem;margin:0em 0em 0em -1.85714286rem}html.honeywell-dark-theme .ui.huge.loader:before,html.honeywell-dark-theme .ui.huge.loader:after{width:4.14285714rem;height:4.14285714rem;margin:0em 0em 0em -2.07142857rem}html.honeywell-dark-theme .ui.massive.loader:before,html.honeywell-dark-theme .ui.massive.loader:after{width:4.57142857rem;height:4.57142857rem;margin:0em 0em 0em -2.28571429rem}html.honeywell-dark-theme .ui.dimmer .loader{display:block}html.honeywell-dark-theme .ui.dimmer .ui.loader{color:rgba(255,255,255,0.9)}html.honeywell-dark-theme .ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,0.15)}html.honeywell-dark-theme .ui.dimmer .ui.loader:after{border-color:#FFFFFF transparent transparent}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,0.87)}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}html.honeywell-dark-theme .ui.text.loader{width:auto !important;height:auto !important;text-align:center;font-style:normal}html.honeywell-dark-theme .ui.indeterminate.loader:after{animation-direction:reverse;animation-duration:1.2s}html.honeywell-dark-theme .ui.loader.active,html.honeywell-dark-theme .ui.loader.visible{display:block}html.honeywell-dark-theme .ui.loader.disabled,html.honeywell-dark-theme .ui.loader.hidden{display:none}html.honeywell-dark-theme .ui.inverted.dimmer .ui.mini.loader,html.honeywell-dark-theme .ui.mini.loader{width:1rem;height:1rem;font-size:0.78571429em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.tiny.loader,html.honeywell-dark-theme .ui.tiny.loader{width:1.14285714rem;height:1.14285714rem;font-size:0.85714286em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.small.loader,html.honeywell-dark-theme .ui.small.loader{width:1.71428571rem;height:1.71428571rem;font-size:0.92857143em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.loader,html.honeywell-dark-theme .ui.loader{width:2.28571429rem;height:2.28571429rem;font-size:1em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.large.loader,html.honeywell-dark-theme .ui.large.loader{width:3.42857143rem;height:3.42857143rem;font-size:1.14285714em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.big.loader,html.honeywell-dark-theme .ui.big.loader{width:3.71428571rem;height:3.71428571rem;font-size:1.28571429em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.huge.loader,html.honeywell-dark-theme .ui.huge.loader{width:4.14285714rem;height:4.14285714rem;font-size:1.42857143em}html.honeywell-dark-theme .ui.inverted.dimmer .ui.massive.loader,html.honeywell-dark-theme .ui.massive.loader{width:4.57142857rem;height:4.57142857rem;font-size:1.71428571em}html.honeywell-dark-theme .ui.mini.text.loader{min-width:1rem;padding-top:1.78571429rem}html.honeywell-dark-theme .ui.tiny.text.loader{min-width:1.14285714rem;padding-top:1.92857143rem}html.honeywell-dark-theme .ui.small.text.loader{min-width:1.71428571rem;padding-top:2.5rem}html.honeywell-dark-theme .ui.text.loader{min-width:2.28571429rem;padding-top:3.07142857rem}html.honeywell-dark-theme .ui.large.text.loader{min-width:3.42857143rem;padding-top:4.21428571rem}html.honeywell-dark-theme .ui.big.text.loader{min-width:3.71428571rem;padding-top:4.5rem}html.honeywell-dark-theme .ui.huge.text.loader{min-width:4.14285714rem;padding-top:4.92857143rem}html.honeywell-dark-theme .ui.massive.text.loader{min-width:4.57142857rem;padding-top:5.35714286rem}html.honeywell-dark-theme .ui.inverted.loader{color:rgba(255,255,255,0.9)}html.honeywell-dark-theme .ui.inverted.loader:before{border-color:rgba(255,255,255,0.15)}html.honeywell-dark-theme .ui.inverted.loader:after{border-top-color:#FFFFFF}html.honeywell-dark-theme .ui.inline.loader{position:relative;vertical-align:middle;margin:0em;left:0em;top:0em;transform:none}html.honeywell-dark-theme .ui.inline.loader.active,html.honeywell-dark-theme .ui.inline.loader.visible{display:inline-block}html.honeywell-dark-theme .ui.centered.inline.loader.active,html.honeywell-dark-theme .ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}html.honeywell-dark-theme .ui.steps{display:inline-flex;flex-direction:row;align-items:stretch;margin:1em 0em;background:'';box-shadow:none;line-height:1.14285714em;border-radius:0.28571429rem}html.honeywell-dark-theme .ui.steps:first-child{margin-top:0em}html.honeywell-dark-theme .ui.steps:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.steps .step{position:relative;display:flex;flex:1 0 auto;flex-wrap:wrap;flex-direction:row;vertical-align:middle;align-items:center;justify-content:center;margin:0em 0em;padding:1.14285714em 2em;box-shadow:none;border-radius:0em;border:none;transition:background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease}html.honeywell-dark-theme .ui.steps .step:after{display:none;position:absolute;z-index:2;content:'';top:50%;right:0%;border:medium none;width:1.14285714em;height:1.14285714em;border-style:solid;border-width:0px 1px 1px 0px;transition:background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;transform:translateY(-50%) translateX(50%) rotate(-45deg)}html.honeywell-dark-theme .ui.steps .step:first-child{padding-left:2em;border-radius:0.28571429rem 0em 0em 0.28571429rem}html.honeywell-dark-theme .ui.steps .step:last-child{border-radius:0em 0.28571429rem 0.28571429rem 0em}html.honeywell-dark-theme .ui.steps .step:last-child{border-right:none;margin-right:0em}html.honeywell-dark-theme .ui.steps .step:only-child{border-radius:0.28571429rem}html.honeywell-dark-theme .ui.steps .step .title{font-size:1.14285714em;font-weight:bold}html.honeywell-dark-theme .ui.steps .step>.title{width:100%}html.honeywell-dark-theme .ui.steps .step .description{font-weight:normal;font-size:0.92857143em;color:rgba(0,0,0,0.87)}html.honeywell-dark-theme .ui.steps .step>.description{width:100%}html.honeywell-dark-theme .ui.steps .step .title ~ .description{margin-top:0.25em}html.honeywell-dark-theme .ui.steps .step>.icon{line-height:1;font-size:2.5em;margin:0em 1rem 0em 0em}html.honeywell-dark-theme .ui.steps .step>.icon,html.honeywell-dark-theme .ui.steps .step>.icon ~ .content{display:block;flex:0 1 auto;align-self:middle}html.honeywell-dark-theme .ui.steps .step>.icon ~ .content{flex-grow:1 0 auto}html.honeywell-dark-theme .ui.steps:not(.vertical) .step>.icon{width:auto}html.honeywell-dark-theme .ui.steps .link.step,html.honeywell-dark-theme .ui.steps a.step{cursor:pointer}html.honeywell-dark-theme .ui.ordered.steps{counter-reset:ordered}html.honeywell-dark-theme .ui.ordered.steps .step:before{display:block;position:static;text-align:center;content:counters(ordered, ".");align-self:middle;margin-right:1rem;font-size:2.5em;counter-increment:ordered;font-family:inherit;font-weight:bold}html.honeywell-dark-theme .ui.ordered.steps .step>*{display:block;align-self:middle}html.honeywell-dark-theme .ui.vertical.steps{display:inline-flex;flex-direction:column;overflow:visible}html.honeywell-dark-theme .ui.vertical.steps .step{justify-content:flex-start;border-radius:0em;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.vertical.steps .step:first-child{padding:1.14285714em 2em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.vertical.steps .step:last-child{border-bottom:none;border-radius:0em 0em 0.28571429rem 0.28571429rem}html.honeywell-dark-theme .ui.vertical.steps .step:only-child{border-radius:0.28571429rem}html.honeywell-dark-theme .ui.vertical.steps .step:after{display:none}html.honeywell-dark-theme .ui.vertical.steps .step:after{top:50%;right:0%;border-width:0px 1px 1px 0px}html.honeywell-dark-theme .ui.vertical.steps .step:after{display:none}html.honeywell-dark-theme .ui.vertical.steps .active.step:after{display:block}html.honeywell-dark-theme .ui.vertical.steps .step:last-child:after{display:none}html.honeywell-dark-theme .ui.vertical.steps .active.step:last-child:after{display:block}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.steps:not(.unstackable){display:inline-flex;overflow:visible;flex-direction:column}html.honeywell-dark-theme .ui.steps:not(.unstackable) .step{width:100% !important;flex-direction:column;border-radius:0em;padding:1.14285714em 2em}html.honeywell-dark-theme .ui.steps:not(.unstackable) .step:first-child{padding:1.14285714em 2em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.steps:not(.unstackable) .step:last-child{border-radius:0em 0em 0.28571429rem 0.28571429rem}html.honeywell-dark-theme .ui.steps:not(.unstackable) .step:after{display:none !important}html.honeywell-dark-theme .ui.steps:not(.unstackable) .step .content{text-align:center}html.honeywell-dark-theme .ui.steps:not(.unstackable) .step>.icon,html.honeywell-dark-theme .ui.ordered.steps:not(.unstackable) .step:before{margin:0em 0em 1rem 0em}}html.honeywell-dark-theme .ui.steps .step.active{cursor:auto}html.honeywell-dark-theme .ui.steps .step:after{display:block}html.honeywell-dark-theme .ui.steps .active.step:after{display:block}html.honeywell-dark-theme .ui.steps .step:last-child:after{display:none}html.honeywell-dark-theme .ui.steps .active.step:last-child:after{display:none}html.honeywell-dark-theme .ui.steps .link.active.step:hover::after,html.honeywell-dark-theme .ui.steps .link.active.step:hover,html.honeywell-dark-theme .ui.steps a.active.step:hover::after,html.honeywell-dark-theme .ui.steps a.active.step:hover{cursor:pointer}html.honeywell-dark-theme .ui.steps .disabled.step{cursor:auto;pointer-events:none}@media only screen and (max-width: 991px){html.honeywell-dark-theme .ui[class*="tablet stackable"].steps{display:inline-flex;overflow:visible;flex-direction:column}html.honeywell-dark-theme .ui[class*="tablet stackable"].steps .step{flex-direction:column;border-radius:0em;padding:1.14285714em 2em}html.honeywell-dark-theme .ui[class*="tablet stackable"].steps .step:first-child{padding:1.14285714em 2em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui[class*="tablet stackable"].steps .step:last-child{border-radius:0em 0em 0.28571429rem 0.28571429rem}html.honeywell-dark-theme .ui[class*="tablet stackable"].steps .step:after{display:none !important}html.honeywell-dark-theme .ui[class*="tablet stackable"].steps .step .content{text-align:center}html.honeywell-dark-theme .ui[class*="tablet stackable"].steps .step>.icon,html.honeywell-dark-theme .ui[class*="tablet stackable"].ordered.steps .step:before{margin:0em 0em 1rem 0em}}html.honeywell-dark-theme .ui.fluid.steps{display:flex;width:100%}html.honeywell-dark-theme .ui.attached.steps{width:calc(100% +  2px) !important;margin:0em -1px 0;max-width:calc(100% +  2px);border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.attached.steps .step:first-child{border-radius:0.28571429rem 0em 0em 0em}html.honeywell-dark-theme .ui.attached.steps .step:last-child{border-radius:0em 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.bottom.attached.steps{margin:0 -1px 0em;border-radius:0em 0em 0.28571429rem 0.28571429rem}html.honeywell-dark-theme .ui.bottom.attached.steps .step:first-child{border-radius:0em 0em 0em 0.28571429rem}html.honeywell-dark-theme .ui.bottom.attached.steps .step:last-child{border-radius:0em 0em 0.28571429rem 0em}html.honeywell-dark-theme .ui.one.steps,html.honeywell-dark-theme .ui.two.steps,html.honeywell-dark-theme .ui.three.steps,html.honeywell-dark-theme .ui.four.steps,html.honeywell-dark-theme .ui.five.steps,html.honeywell-dark-theme .ui.six.steps,html.honeywell-dark-theme .ui.seven.steps,html.honeywell-dark-theme .ui.eight.steps{width:100%}html.honeywell-dark-theme .ui.one.steps>.step,html.honeywell-dark-theme .ui.two.steps>.step,html.honeywell-dark-theme .ui.three.steps>.step,html.honeywell-dark-theme .ui.four.steps>.step,html.honeywell-dark-theme .ui.five.steps>.step,html.honeywell-dark-theme .ui.six.steps>.step,html.honeywell-dark-theme .ui.seven.steps>.step,html.honeywell-dark-theme .ui.eight.steps>.step{flex-wrap:nowrap}html.honeywell-dark-theme .ui.one.steps>.step{width:100%}html.honeywell-dark-theme .ui.two.steps>.step{width:50%}html.honeywell-dark-theme .ui.three.steps>.step{width:33.333%}html.honeywell-dark-theme .ui.four.steps>.step{width:25%}html.honeywell-dark-theme .ui.five.steps>.step{width:20%}html.honeywell-dark-theme .ui.six.steps>.step{width:16.666%}html.honeywell-dark-theme .ui.seven.steps>.step{width:14.285%}html.honeywell-dark-theme .ui.eight.steps>.step{width:12.500%}html.honeywell-dark-theme .ui.steps .step,html.honeywell-dark-theme .ui.step{font-size:1rem}html.honeywell-dark-theme .ui.menu{display:flex;margin:1rem 0em;font-weight:normal;min-height:2.85714286em}html.honeywell-dark-theme .ui.menu:after{content:'';display:block;height:0px;clear:both;visibility:hidden}html.honeywell-dark-theme .ui.menu:first-child{margin-top:0rem}html.honeywell-dark-theme .ui.menu:last-child{margin-bottom:0rem}html.honeywell-dark-theme .ui.menu .menu{margin:0em}html.honeywell-dark-theme .ui.menu:not(.vertical)>.menu{display:flex}html.honeywell-dark-theme .ui.menu:not(.vertical) .item{display:flex;align-items:center}html.honeywell-dark-theme .ui.menu .item{position:relative;vertical-align:middle;line-height:1;text-decoration:none;-webkit-tap-highlight-color:transparent;flex:0 0 auto;user-select:none;background:none;text-transform:none;font-weight:normal;transition:background 0.1s ease, box-shadow 0.1s}html.honeywell-dark-theme .ui.menu .item:before{position:absolute;content:'';top:0%;right:0px;height:100%;width:1px;background:rgba(34,36,38,0.1)}html.honeywell-dark-theme .ui.menu .text.item>*,html.honeywell-dark-theme .ui.menu .item>a:not(.ui),html.honeywell-dark-theme .ui.menu .item>p:only-child{user-select:text;line-height:1.3}html.honeywell-dark-theme .ui.menu .item>p:first-child{margin-top:0}html.honeywell-dark-theme .ui.menu .item>p:last-child{margin-bottom:0}html.honeywell-dark-theme .ui.menu .item>i.icon{opacity:0.9;float:none;margin:0em 0.35714286em 0em 0em}html.honeywell-dark-theme .ui.menu:not(.vertical) .item>.button{position:relative;top:0em;margin:-0.5em 0em;padding-bottom:0.78571429em;padding-top:0.78571429em;font-size:1em}html.honeywell-dark-theme .ui.menu>.grid,html.honeywell-dark-theme .ui.menu>.container{display:flex;align-items:inherit;flex-direction:inherit}html.honeywell-dark-theme .ui.menu .item>.input{width:100%}html.honeywell-dark-theme .ui.menu:not(.vertical) .item>.input{position:relative;top:0em;margin:-0.5em 0em}html.honeywell-dark-theme .ui.menu .item>.input input{font-size:1em;padding-top:0.57142857em;padding-bottom:0.57142857em}html.honeywell-dark-theme .ui.menu .header.item,html.honeywell-dark-theme .ui.vertical.menu .header.item{margin:0em;background:'';text-transform:normal;font-weight:bold}html.honeywell-dark-theme .ui.vertical.menu .item>.header:not(.ui){margin:0em 0em 0.5em;font-size:1em;font-weight:bold}html.honeywell-dark-theme .ui.menu .item>i.dropdown.icon{padding:0em;float:right;margin:0em 0em 0em 1em}html.honeywell-dark-theme .ui.menu .dropdown.item .menu{left:0px;min-width:calc(100% - 1px);margin:0em 0px 0px;flex-direction:column !important}html.honeywell-dark-theme .ui.menu .ui.dropdown .menu>.item{margin:0;text-align:left;font-size:1em !important;padding:0.78571429em 1.14285714em !important;background:transparent !important;text-transform:none;font-weight:normal;box-shadow:none !important;transition:none !important}html.honeywell-dark-theme .ui.menu .ui.dropdown .menu>.active.item{font-weight:bold !important}html.honeywell-dark-theme .ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}html.honeywell-dark-theme .ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;font-size:1em !important;float:none;margin:0em 0.75em 0em 0em}html.honeywell-dark-theme .ui.secondary.menu .dropdown.item>.menu,html.honeywell-dark-theme .ui.text.menu .dropdown.item>.menu{margin-top:0.35714286em}html.honeywell-dark-theme .ui.vertical.menu .dropdown.item>.icon{float:right;content:"\F0DA";margin-left:1em}html.honeywell-dark-theme .ui.vertical.menu .dropdown.item .menu{left:100%;min-width:0;margin:0em 0em 0em 0em;box-shadow:0 1px 3px 0px rgba(0,0,0,0.08)}html.honeywell-dark-theme .ui.vertical.menu .dropdown.item.upward .menu{bottom:0}html.honeywell-dark-theme .ui.vertical.menu .dropdown.item:not(.upward) .menu{top:0}html.honeywell-dark-theme .ui.vertical.menu .dropdown.active.item{box-shadow:none}html.honeywell-dark-theme .ui.item.menu .dropdown .menu .item{width:100%}html.honeywell-dark-theme .ui.menu .item>.label{margin-left:1em;padding:0.3em 0.78571429em}html.honeywell-dark-theme .ui.vertical.menu .item>.label{margin-top:-0.15em;margin-bottom:-0.15em;padding:0.3em 0.78571429em}html.honeywell-dark-theme .ui.menu .item>.floating.label{padding:0.3em 0.78571429em}html.honeywell-dark-theme .ui.link.menu .item:hover,html.honeywell-dark-theme .ui.menu .dropdown.item:hover,html.honeywell-dark-theme .ui.menu .link.item:hover,html.honeywell-dark-theme .ui.menu a.item:hover{cursor:pointer}html.honeywell-dark-theme .ui.menu .item.disabled,html.honeywell-dark-theme .ui.menu .item.disabled:hover{cursor:default}html.honeywell-dark-theme .ui.menu:not(.vertical) .left.item,html.honeywell-dark-theme .ui.menu:not(.vertical) .left.menu{display:flex;margin-right:auto !important}html.honeywell-dark-theme .ui.menu:not(.vertical) .right.item,html.honeywell-dark-theme .ui.menu:not(.vertical) .right.menu{display:flex;margin-left:auto !important}html.honeywell-dark-theme .ui.menu .right.item::before,html.honeywell-dark-theme .ui.menu .right.menu>.item::before{right:auto;left:0}html.honeywell-dark-theme .ui.vertical.menu{display:block;flex-direction:column}html.honeywell-dark-theme .ui.vertical.menu .item{display:block;background:none;border-top:none;border-right:none}html.honeywell-dark-theme .ui.vertical.menu .item>.label{float:right;text-align:center}html.honeywell-dark-theme .ui.vertical.menu .item:before{position:absolute;content:'';top:0%;left:0px;width:100%;height:1px}html.honeywell-dark-theme .ui.vertical.menu .item:first-child:before{display:none !important}html.honeywell-dark-theme .ui.vertical.menu .item>.menu{margin:0.5em -1.14285714em 0em}html.honeywell-dark-theme .ui.vertical.menu .menu .item{background:none;padding:0.5em 1.33333333em;font-size:0.85714286em}html.honeywell-dark-theme .ui.vertical.menu .menu .item:before{display:none}html.honeywell-dark-theme .ui.vertical.menu .active.item{border-radius:0em;box-shadow:none}html.honeywell-dark-theme .ui.vertical.menu .active.item .menu .active.item{border-left:none}html.honeywell-dark-theme .ui.vertical.menu .item .menu .active.item{background-color:transparent;font-weight:bold}html.honeywell-dark-theme .ui.secondary.menu{background:none;margin-left:-0.35714286em;margin-right:-0.35714286em;border-radius:0em;border:none;box-shadow:none}html.honeywell-dark-theme .ui.secondary.menu .item{align-self:center;box-shadow:none;border:none;padding:0.78571429em 0.92857143em;margin:0em 0.35714286em;background:none;transition:color 0.1s ease}html.honeywell-dark-theme .ui.secondary.menu .item:before{display:none !important}html.honeywell-dark-theme .ui.secondary.menu .header.item{border-radius:0em;border-right:none;background:none transparent}html.honeywell-dark-theme .ui.secondary.menu .active.item{box-shadow:none}html.honeywell-dark-theme .ui.secondary.menu .active.item:hover{box-shadow:none}html.honeywell-dark-theme .ui.secondary.item.menu{margin-left:0em;margin-right:0em}html.honeywell-dark-theme .ui.secondary.item.menu .item:last-child{margin-right:0em}html.honeywell-dark-theme .ui.secondary.attached.menu{box-shadow:none}html.honeywell-dark-theme .ui.vertical.secondary.menu .item:not(.dropdown)>.menu{margin:0em -0.92857143em}html.honeywell-dark-theme .ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item{margin:0em;padding:0.5em 1.33333333em}html.honeywell-dark-theme .ui.secondary.vertical.menu>.item{border:none;margin:0em 0em 0.35714286em}html.honeywell-dark-theme .ui.secondary.vertical.menu>.header.item{border-radius:0em}html.honeywell-dark-theme .ui.vertical.secondary.menu .item>.menu .item{background-color:transparent}html.honeywell-dark-theme .ui.menu.fluid,html.honeywell-dark-theme .ui.vertical.menu.fluid{width:100% !important}html.honeywell-dark-theme .ui.menu{font-size:1rem}html.honeywell-dark-theme .ui.vertical.menu{width:15rem}html.honeywell-dark-theme .ui.menu .item>.input{width:100%}html.honeywell-dark-theme .ui.menu:not(.vertical) .item>.input{position:relative;top:0em;margin:-0.5em 0em}html.honeywell-dark-theme .ui.menu .item>.input input{font-size:1em;padding-top:0.57142857em;padding-bottom:0.57142857em}html.honeywell-dark-theme .ui.table{width:100%;background:#FFFFFF;margin:1em 0em;border:1px solid rgba(34,36,38,0.15);box-shadow:none;border-radius:0.28571429rem;text-align:left;color:rgba(0,0,0,0.87);border-collapse:separate;border-spacing:0px}html.honeywell-dark-theme .ui.table:first-child{margin-top:0em}html.honeywell-dark-theme .ui.table:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.table th,html.honeywell-dark-theme .ui.table td{transition:background 0.1s ease, color 0.1s ease}html.honeywell-dark-theme .ui.table thead{box-shadow:none}html.honeywell-dark-theme .ui.table thead th{cursor:auto;background:#F9FAFB;text-align:inherit;color:rgba(0,0,0,0.87);padding:0.92857143em 0.78571429em;vertical-align:inherit;font-style:none;font-weight:bold;text-transform:none;border-bottom:1px solid rgba(34,36,38,0.1);border-left:none}html.honeywell-dark-theme .ui.table thead tr>th:first-child{border-left:none}html.honeywell-dark-theme .ui.table thead tr:first-child>th:first-child{border-radius:0.28571429rem 0em 0em 0em}html.honeywell-dark-theme .ui.table thead tr:first-child>th:last-child{border-radius:0em 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.table thead tr:first-child>th:only-child{border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.table tfoot{box-shadow:none}html.honeywell-dark-theme .ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,0.15);background:#F9FAFB;text-align:inherit;color:rgba(0,0,0,0.87);padding:0.78571429em 0.78571429em;vertical-align:middle;font-style:normal;font-weight:normal;text-transform:none}html.honeywell-dark-theme .ui.table tfoot tr>th:first-child{border-left:none}html.honeywell-dark-theme .ui.table tfoot tr:first-child>th:first-child{border-radius:0em 0em 0em 0.28571429rem}html.honeywell-dark-theme .ui.table tfoot tr:first-child>th:last-child{border-radius:0em 0em 0.28571429rem 0em}html.honeywell-dark-theme .ui.table tfoot tr:first-child>th:only-child{border-radius:0em 0em 0.28571429rem 0.28571429rem}html.honeywell-dark-theme .ui.table tr td{border-top:1px solid rgba(34,36,38,0.1)}html.honeywell-dark-theme .ui.table tr:first-child td{border-top:none}html.honeywell-dark-theme .ui.table td{padding:0.78571429em 0.78571429em;text-align:inherit}html.honeywell-dark-theme .ui.table>.icon{vertical-align:baseline}html.honeywell-dark-theme .ui.table>.icon:only-child{margin:0em}html.honeywell-dark-theme .ui.table.segment{padding:0em}html.honeywell-dark-theme .ui.table.segment:after{display:none}html.honeywell-dark-theme .ui.table.segment.stacked:after{display:block}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.table:not(.unstackable){width:100%}html.honeywell-dark-theme .ui.table:not(.unstackable) tbody,html.honeywell-dark-theme .ui.table:not(.unstackable) tr,html.honeywell-dark-theme .ui.table:not(.unstackable) tr>th,html.honeywell-dark-theme .ui.table:not(.unstackable) tr>td{width:auto !important;display:block !important}html.honeywell-dark-theme .ui.table:not(.unstackable){padding:0em}html.honeywell-dark-theme .ui.table:not(.unstackable) thead{display:block}html.honeywell-dark-theme .ui.table:not(.unstackable) tfoot{display:block}html.honeywell-dark-theme .ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0px -1px 0px 0px rgba(0,0,0,0.1) inset !important}html.honeywell-dark-theme .ui.table:not(.unstackable) tr>th,html.honeywell-dark-theme .ui.table:not(.unstackable) tr>td{background:none;border:none !important;padding:0.25em 0.75em !important;box-shadow:none !important}html.honeywell-dark-theme .ui.table:not(.unstackable) th:first-child,html.honeywell-dark-theme .ui.table:not(.unstackable) td:first-child{font-weight:bold}html.honeywell-dark-theme .ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none !important}}html.honeywell-dark-theme .ui.table th .image,html.honeywell-dark-theme .ui.table th .image img,html.honeywell-dark-theme .ui.table td .image,html.honeywell-dark-theme .ui.table td .image img{max-width:none}html.honeywell-dark-theme .ui.structured.table{border-collapse:collapse}html.honeywell-dark-theme .ui.structured.table thead th{border-left:none;border-right:none}html.honeywell-dark-theme .ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,0.15);border-right:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.structured.basic.table th{border-left:none;border-right:none}html.honeywell-dark-theme .ui.structured.celled.table tr th,html.honeywell-dark-theme .ui.structured.celled.table tr td{border-left:1px solid rgba(34,36,38,0.1);border-right:1px solid rgba(34,36,38,0.1)}html.honeywell-dark-theme .ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:normal;color:rgba(0,0,0,0.4);box-shadow:-1px -1px 0px 1px #FFFFFF}html.honeywell-dark-theme .ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:rgba(0,0,0,0.4);color:normal;box-shadow:1px 1px 0px 1px #FFFFFF}html.honeywell-dark-theme .ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0px -1px 0px 1px #FFFFFF}html.honeywell-dark-theme .ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0px 1px 0px 1px #FFFFFF}html.honeywell-dark-theme .ui.definition.table tr td:first-child:not(.ignored),html.honeywell-dark-theme .ui.definition.table tr td.definition{background:rgba(0,0,0,0.03);font-weight:bold;color:rgba(0,0,0,0.95);text-transform:'';box-shadow:'';text-align:'';font-size:1em;padding-left:'';padding-right:''}html.honeywell-dark-theme .ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.definition.table tfoot:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.definition.table td:nth-child(2){border-left:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.table tr.positive,html.honeywell-dark-theme .ui.table td.positive{box-shadow:0px 0px 0px #A3C293 inset}html.honeywell-dark-theme .ui.table tr.positive,html.honeywell-dark-theme .ui.table td.positive{background:#FCFFF5 !important;color:#2C662D !important}html.honeywell-dark-theme .ui.table tr.negative,html.honeywell-dark-theme .ui.table td.negative{box-shadow:0px 0px 0px #E0B4B4 inset}html.honeywell-dark-theme .ui.table tr.negative,html.honeywell-dark-theme .ui.table td.negative{background:#FFF6F6 !important;color:#9F3A38 !important}html.honeywell-dark-theme .ui.table tr.error,html.honeywell-dark-theme .ui.table td.error{box-shadow:0px 0px 0px #E0B4B4 inset}html.honeywell-dark-theme .ui.table tr.error,html.honeywell-dark-theme .ui.table td.error{background:#FFF6F6 !important;color:#9F3A38 !important}html.honeywell-dark-theme .ui.table tr.warning,html.honeywell-dark-theme .ui.table td.warning{box-shadow:0px 0px 0px #C9BA9B inset}html.honeywell-dark-theme .ui.table tr.warning,html.honeywell-dark-theme .ui.table td.warning{background:#FFFAF3 !important;color:#573A08 !important}html.honeywell-dark-theme .ui.table tr.active,html.honeywell-dark-theme .ui.table td.active{box-shadow:0px 0px 0px rgba(0,0,0,0.87) inset}html.honeywell-dark-theme .ui.table tr.active,html.honeywell-dark-theme .ui.table td.active{background:#E0E0E0 !important;color:rgba(0,0,0,0.87) !important}html.honeywell-dark-theme .ui.table tr.disabled td,html.honeywell-dark-theme .ui.table tr td.disabled,html.honeywell-dark-theme .ui.table tr.disabled:hover,html.honeywell-dark-theme .ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,0.3)}@media only screen and (max-width: 991px){html.honeywell-dark-theme .ui[class*="tablet stackable"].table,html.honeywell-dark-theme .ui[class*="tablet stackable"].table tbody,html.honeywell-dark-theme .ui[class*="tablet stackable"].table tr,html.honeywell-dark-theme .ui[class*="tablet stackable"].table tr>th,html.honeywell-dark-theme .ui[class*="tablet stackable"].table tr>td{width:100% !important;display:block !important}html.honeywell-dark-theme .ui[class*="tablet stackable"].table{padding:0em}html.honeywell-dark-theme .ui[class*="tablet stackable"].table thead{display:block}html.honeywell-dark-theme .ui[class*="tablet stackable"].table tfoot{display:block}html.honeywell-dark-theme .ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0px -1px 0px 0px rgba(0,0,0,0.1) inset !important}html.honeywell-dark-theme .ui[class*="tablet stackable"].table tr>th,html.honeywell-dark-theme .ui[class*="tablet stackable"].table tr>td{background:none;border:none !important;padding:0.25em 0.75em;box-shadow:none !important}html.honeywell-dark-theme .ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none !important}}html.honeywell-dark-theme .ui.table[class*="left aligned"],html.honeywell-dark-theme .ui.table [class*="left aligned"]{text-align:left}html.honeywell-dark-theme .ui.table[class*="center aligned"],html.honeywell-dark-theme .ui.table [class*="center aligned"]{text-align:center}html.honeywell-dark-theme .ui.table[class*="right aligned"],html.honeywell-dark-theme .ui.table [class*="right aligned"]{text-align:right}html.honeywell-dark-theme .ui.table[class*="top aligned"],html.honeywell-dark-theme .ui.table [class*="top aligned"]{vertical-align:top}html.honeywell-dark-theme .ui.table[class*="middle aligned"],html.honeywell-dark-theme .ui.table [class*="middle aligned"]{vertical-align:middle}html.honeywell-dark-theme .ui.table[class*="bottom aligned"],html.honeywell-dark-theme .ui.table [class*="bottom aligned"]{vertical-align:bottom}html.honeywell-dark-theme .ui.table th.collapsing,html.honeywell-dark-theme .ui.table td.collapsing{width:1px;white-space:nowrap}html.honeywell-dark-theme .ui.fixed.table{table-layout:fixed}html.honeywell-dark-theme .ui.fixed.table th,html.honeywell-dark-theme .ui.fixed.table td{overflow:hidden;text-overflow:ellipsis}html.honeywell-dark-theme .ui.selectable.table tbody tr:hover,html.honeywell-dark-theme .ui.table tbody tr td.selectable:hover{background:rgba(0,0,0,0.05) !important;color:rgba(0,0,0,0.95) !important}html.honeywell-dark-theme .ui.table tbody tr td.selectable{padding:0em}html.honeywell-dark-theme .ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:0.78571429em 0.78571429em}html.honeywell-dark-theme .ui.selectable.table tr.error:hover,html.honeywell-dark-theme .ui.table tr td.selectable.error:hover,html.honeywell-dark-theme .ui.selectable.table tr:hover td.error{background:#ffe7e7 !important;color:#943634 !important}html.honeywell-dark-theme .ui.selectable.table tr.warning:hover,html.honeywell-dark-theme .ui.table tr td.selectable.warning:hover,html.honeywell-dark-theme .ui.selectable.table tr:hover td.warning{background:#fff4e4 !important;color:#493107 !important}html.honeywell-dark-theme .ui.selectable.table tr.active:hover,html.honeywell-dark-theme .ui.table tr td.selectable.active:hover,html.honeywell-dark-theme .ui.selectable.table tr:hover td.active{background:#E0E0E0 !important;color:rgba(0,0,0,0.87) !important}html.honeywell-dark-theme .ui.selectable.table tr.positive:hover,html.honeywell-dark-theme .ui.table tr td.selectable.positive:hover,html.honeywell-dark-theme .ui.selectable.table tr:hover td.positive{background:#f7ffe6 !important;color:#275b28 !important}html.honeywell-dark-theme .ui.selectable.table tr.negative:hover,html.honeywell-dark-theme .ui.table tr td.selectable.negative:hover,html.honeywell-dark-theme .ui.selectable.table tr:hover td.negative{background:#ffe7e7 !important;color:#943634 !important}html.honeywell-dark-theme .ui.attached.table{top:0px;bottom:0px;border-radius:0px;margin:0em -1px;width:calc(100% +  2px);max-width:calc(100% +  2px);box-shadow:none;border:1px solid #D4D4D5}html.honeywell-dark-theme .ui.attached+.ui.attached.table:not(.top){border-top:none}html.honeywell-dark-theme .ui[class*="top attached"].table{bottom:0px;margin-bottom:0em;top:0px;margin-top:1em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.table[class*="top attached"]:first-child{margin-top:0em}html.honeywell-dark-theme .ui[class*="bottom attached"].table{bottom:0px;margin-top:0em;top:0px;margin-bottom:1em;box-shadow:none, none;border-radius:0em 0em 0.28571429rem 0.28571429rem}html.honeywell-dark-theme .ui[class*="bottom attached"].table:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.striped.table>tr:nth-child(2n),html.honeywell-dark-theme .ui.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,50,0.02)}html.honeywell-dark-theme .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#EFEFEF !important;color:rgba(0,0,0,0.95) !important}html.honeywell-dark-theme .ui.table[class*="single line"],html.honeywell-dark-theme .ui.table [class*="single line"]{white-space:nowrap}html.honeywell-dark-theme .ui.table[class*="single line"],html.honeywell-dark-theme .ui.table [class*="single line"]{white-space:nowrap}html.honeywell-dark-theme .ui.one.column.table td{width:100%}html.honeywell-dark-theme .ui.two.column.table td{width:50%}html.honeywell-dark-theme .ui.three.column.table td{width:33.33333333%}html.honeywell-dark-theme .ui.four.column.table td{width:25%}html.honeywell-dark-theme .ui.five.column.table td{width:20%}html.honeywell-dark-theme .ui.six.column.table td{width:16.66666667%}html.honeywell-dark-theme .ui.seven.column.table td{width:14.28571429%}html.honeywell-dark-theme .ui.eight.column.table td{width:12.5%}html.honeywell-dark-theme .ui.nine.column.table td{width:11.11111111%}html.honeywell-dark-theme .ui.ten.column.table td{width:10%}html.honeywell-dark-theme .ui.eleven.column.table td{width:9.09090909%}html.honeywell-dark-theme .ui.twelve.column.table td{width:8.33333333%}html.honeywell-dark-theme .ui.thirteen.column.table td{width:7.69230769%}html.honeywell-dark-theme .ui.fourteen.column.table td{width:7.14285714%}html.honeywell-dark-theme .ui.fifteen.column.table td{width:6.66666667%}html.honeywell-dark-theme .ui.sixteen.column.table td{width:6.25%}html.honeywell-dark-theme .ui.table th.one.wide,html.honeywell-dark-theme .ui.table td.one.wide{width:6.25%}html.honeywell-dark-theme .ui.table th.two.wide,html.honeywell-dark-theme .ui.table td.two.wide{width:12.5%}html.honeywell-dark-theme .ui.table th.three.wide,html.honeywell-dark-theme .ui.table td.three.wide{width:18.75%}html.honeywell-dark-theme .ui.table th.four.wide,html.honeywell-dark-theme .ui.table td.four.wide{width:25%}html.honeywell-dark-theme .ui.table th.five.wide,html.honeywell-dark-theme .ui.table td.five.wide{width:31.25%}html.honeywell-dark-theme .ui.table th.six.wide,html.honeywell-dark-theme .ui.table td.six.wide{width:37.5%}html.honeywell-dark-theme .ui.table th.seven.wide,html.honeywell-dark-theme .ui.table td.seven.wide{width:43.75%}html.honeywell-dark-theme .ui.table th.eight.wide,html.honeywell-dark-theme .ui.table td.eight.wide{width:50%}html.honeywell-dark-theme .ui.table th.nine.wide,html.honeywell-dark-theme .ui.table td.nine.wide{width:56.25%}html.honeywell-dark-theme .ui.table th.ten.wide,html.honeywell-dark-theme .ui.table td.ten.wide{width:62.5%}html.honeywell-dark-theme .ui.table th.eleven.wide,html.honeywell-dark-theme .ui.table td.eleven.wide{width:68.75%}html.honeywell-dark-theme .ui.table th.twelve.wide,html.honeywell-dark-theme .ui.table td.twelve.wide{width:75%}html.honeywell-dark-theme .ui.table th.thirteen.wide,html.honeywell-dark-theme .ui.table td.thirteen.wide{width:81.25%}html.honeywell-dark-theme .ui.table th.fourteen.wide,html.honeywell-dark-theme .ui.table td.fourteen.wide{width:87.5%}html.honeywell-dark-theme .ui.table th.fifteen.wide,html.honeywell-dark-theme .ui.table td.fifteen.wide{width:93.75%}html.honeywell-dark-theme .ui.table th.sixteen.wide,html.honeywell-dark-theme .ui.table td.sixteen.wide{width:100%}html.honeywell-dark-theme .ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,0.15);color:rgba(0,0,0,0.87)}html.honeywell-dark-theme .ui.sortable.table thead th:first-child{border-left:none}html.honeywell-dark-theme .ui.sortable.table thead th.sorted,html.honeywell-dark-theme .ui.sortable.table thead th.sorted:hover{user-select:none}html.honeywell-dark-theme .ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:normal;text-decoration:inherit;content:'';height:1em;width:auto;opacity:0.8;margin:0em 0em 0em 0.5em;font-family:'Icons'}html.honeywell-dark-theme .ui.sortable.table thead th.ascending:after{content:'\F0D8'}html.honeywell-dark-theme .ui.sortable.table thead th.descending:after{content:'\F0D7'}html.honeywell-dark-theme .ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,0.3)}html.honeywell-dark-theme .ui.sortable.table thead th:hover{background:rgba(0,0,0,0.05);color:rgba(0,0,0,0.8)}html.honeywell-dark-theme .ui.sortable.table thead th.sorted{background:rgba(0,0,0,0.05);color:rgba(0,0,0,0.95)}html.honeywell-dark-theme .ui.sortable.table thead th.sorted:after{display:inline-block}html.honeywell-dark-theme .ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,0.05);color:rgba(0,0,0,0.95)}html.honeywell-dark-theme .ui.collapsing.table{width:auto}html.honeywell-dark-theme .ui.basic.table{background:transparent;border:1px solid rgba(34,36,38,0.15);box-shadow:none}html.honeywell-dark-theme .ui.basic.table thead,html.honeywell-dark-theme .ui.basic.table tfoot{box-shadow:none}html.honeywell-dark-theme .ui.basic.table th{background:transparent;border-left:none}html.honeywell-dark-theme .ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.basic.table td{background:transparent}html.honeywell-dark-theme .ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,0.05) !important}html.honeywell-dark-theme .ui[class*="very basic"].table{border:none}html.honeywell-dark-theme .ui[class*="very basic"].table:not(.sortable):not(.striped) th,html.honeywell-dark-theme .ui[class*="very basic"].table:not(.sortable):not(.striped) td{padding:''}html.honeywell-dark-theme .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,html.honeywell-dark-theme .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child{padding-left:0em}html.honeywell-dark-theme .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,html.honeywell-dark-theme .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child{padding-right:0em}html.honeywell-dark-theme .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0em}html.honeywell-dark-theme .ui.celled.table tr th,html.honeywell-dark-theme .ui.celled.table tr td{border-left:1px solid rgba(34,36,38,0.1)}html.honeywell-dark-theme .ui.celled.table tr th:first-child,html.honeywell-dark-theme .ui.celled.table tr td:first-child{border-left:none}html.honeywell-dark-theme .ui.padded.table th{padding-left:1em;padding-right:1em}html.honeywell-dark-theme .ui.padded.table th,html.honeywell-dark-theme .ui.padded.table td{padding:1em 1em}html.honeywell-dark-theme .ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}html.honeywell-dark-theme .ui[class*="very padded"].table td{padding:1.5em 1.5em}html.honeywell-dark-theme .ui.compact.table th{padding-left:0.7em;padding-right:0.7em}html.honeywell-dark-theme .ui.compact.table td{padding:0.5em 0.7em}html.honeywell-dark-theme .ui[class*="very compact"].table th{padding-left:0.6em;padding-right:0.6em}html.honeywell-dark-theme .ui[class*="very compact"].table td{padding:0.4em 0.6em}html.honeywell-dark-theme .ui.small.table{font-size:0.9em}html.honeywell-dark-theme .ui.table{font-size:1em}html.honeywell-dark-theme .ui.large.table{font-size:1.1em}html.honeywell-dark-theme .ui.cards>.card,html.honeywell-dark-theme .ui.card{max-width:100%;position:relative;display:flex;flex-direction:column;min-height:0px;padding:0em;border:none}html.honeywell-dark-theme .ui.card{margin:1em 0em}html.honeywell-dark-theme .ui.cards>.card a,html.honeywell-dark-theme .ui.card a{cursor:pointer}html.honeywell-dark-theme .ui.card:first-child{margin-top:0em}html.honeywell-dark-theme .ui.card:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.cards{display:flex;margin:-0.875em -0.5em;flex-wrap:wrap}html.honeywell-dark-theme .ui.cards>.card{display:flex;margin:0.875em 0.5em;float:none}html.honeywell-dark-theme .ui.cards:after,html.honeywell-dark-theme .ui.card:after{display:block;content:' ';height:0px;clear:both;overflow:hidden;visibility:hidden}html.honeywell-dark-theme .ui.cards ~ .ui.cards{margin-top:0.875em}html.honeywell-dark-theme .ui.cards>.card>.content,html.honeywell-dark-theme .ui.card>.content{flex-grow:1;border:none;background:none;margin:0em;padding:1em 1em;box-shadow:none;font-size:1em;border-radius:0em}html.honeywell-dark-theme .ui.cards>.card>.content:after,html.honeywell-dark-theme .ui.card>.content:after{display:block;content:' ';height:0px;clear:both;overflow:hidden;visibility:hidden}html.honeywell-dark-theme .ui.cards>.card>.content>.header,html.honeywell-dark-theme .ui.card>.content>.header{display:block;margin:''}html.honeywell-dark-theme .ui.cards>.card>.content>.header:not(.ui),html.honeywell-dark-theme .ui.card>.content>.header:not(.ui){font-weight:bold;margin-top:-0.21425em}html.honeywell-dark-theme .ui.cards>.card>.content>.meta+.description,html.honeywell-dark-theme .ui.cards>.card>.content>.header+.description,html.honeywell-dark-theme .ui.card>.content>.meta+.description,html.honeywell-dark-theme .ui.card>.content>.header+.description{margin-top:0.5em}html.honeywell-dark-theme .ui.cards>.card>.content>.description,html.honeywell-dark-theme .ui.card>.content>.description{clear:both}html.honeywell-dark-theme .ui.cards>.card .meta,html.honeywell-dark-theme .ui.card .meta{font-size:1em}html.honeywell-dark-theme .ui.cards>.card .meta *,html.honeywell-dark-theme .ui.card .meta *{margin-right:0.3em}html.honeywell-dark-theme .ui.cards>.card .meta :last-child,html.honeywell-dark-theme .ui.card .meta :last-child{margin-right:0em}html.honeywell-dark-theme .ui.cards>.card>.extra,html.honeywell-dark-theme .ui.card>.extra{max-width:100%;min-height:0em !important;flex-grow:0;position:static;background:none;width:auto;margin:0em 0em;padding:0.75em 1em;top:0em;left:0em;box-shadow:none}html.honeywell-dark-theme .ui.raised.cards>.card,html.honeywell-dark-theme .ui.raised.card{box-shadow:0px 0px 0px 1px #D4D4D5,0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.raised.cards a.card:hover,html.honeywell-dark-theme .ui.link.cards .raised.card:hover,html.honeywell-dark-theme a.ui.raised.card:hover,html.honeywell-dark-theme .ui.link.raised.card:hover{box-shadow:0px 0px 0px 1px #D4D4D5,0px 2px 4px 0px rgba(34,36,38,0.15),0px 2px 10px 0px rgba(34,36,38,0.25)}html.honeywell-dark-theme .ui.raised.cards>.card,html.honeywell-dark-theme .ui.raised.card{box-shadow:0px 0px 0px 1px #D4D4D5,0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.centered.cards{justify-content:center}html.honeywell-dark-theme .ui.centered.card{margin-left:auto;margin-right:auto}html.honeywell-dark-theme .ui.fluid.card{width:100%;max-width:9999px}html.honeywell-dark-theme .ui.cards a.card,html.honeywell-dark-theme .ui.link.cards .card,html.honeywell-dark-theme a.ui.card,html.honeywell-dark-theme .ui.link.card{transform:none}html.honeywell-dark-theme .ui.cards a.card:hover,html.honeywell-dark-theme .ui.link.cards .card:hover,html.honeywell-dark-theme a.ui.card:hover,html.honeywell-dark-theme .ui.link.card:hover{cursor:pointer;z-index:5;border:none;box-shadow:0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5;transform:translateY(-3px)}html.honeywell-dark-theme .ui.cards>.card{font-size:1em}html.honeywell-dark-theme .ui.statistic{display:inline-flex;flex-direction:column;margin:1em 0em;max-width:auto}html.honeywell-dark-theme .ui.statistic+.ui.statistic{margin:0em 0em 0em 1.5em}html.honeywell-dark-theme .ui.statistic:first-child{margin-top:0em}html.honeywell-dark-theme .ui.statistic:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.statistics{display:flex;align-items:flex-start;flex-wrap:wrap}html.honeywell-dark-theme .ui.statistics>.statistic{display:inline-flex;flex:0 1 auto;flex-direction:column;margin:0em 1.5em 2em;max-width:auto}html.honeywell-dark-theme .ui.statistics{display:flex;margin:1em -1.5em -2em}html.honeywell-dark-theme .ui.statistics:after{display:block;content:' ';height:0px;clear:both;overflow:hidden;visibility:hidden}html.honeywell-dark-theme .ui.statistics:first-child{margin-top:0em}html.honeywell-dark-theme .ui.statistics:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.statistics .statistic>.value,html.honeywell-dark-theme .ui.statistic>.value{font-size:4rem;font-weight:normal;line-height:1em;color:#1B1C1D;text-transform:uppercase;text-align:center}html.honeywell-dark-theme .ui.statistics .statistic>.label,html.honeywell-dark-theme .ui.statistic>.label{font-size:1em;font-weight:bold;color:rgba(0,0,0,0.87);text-transform:uppercase;text-align:center}html.honeywell-dark-theme .ui.statistics .statistic>.label ~ .value,html.honeywell-dark-theme .ui.statistic>.label ~ .value{margin-top:0rem}html.honeywell-dark-theme .ui.statistics .statistic>.value ~ .label,html.honeywell-dark-theme .ui.statistic>.value ~ .label{margin-top:0rem}html.honeywell-dark-theme .ui.statistics .statistic>.value .icon,html.honeywell-dark-theme .ui.statistic>.value .icon{opacity:1;width:auto;margin:0em}html.honeywell-dark-theme .ui.statistics .statistic>.text.value,html.honeywell-dark-theme .ui.statistic>.text.value{line-height:1em;min-height:2em;font-weight:bold;text-align:center}html.honeywell-dark-theme .ui.statistics .statistic>.text.value+.label,html.honeywell-dark-theme .ui.statistic>.text.value+.label{text-align:center}html.honeywell-dark-theme .ui.statistics .statistic>.value img,html.honeywell-dark-theme .ui.statistic>.value img{max-height:3rem;vertical-align:baseline}html.honeywell-dark-theme .ui.ten.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.ten.statistics .statistic{min-width:10%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.nine.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.nine.statistics .statistic{min-width:11.11111111%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.eight.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.eight.statistics .statistic{min-width:12.5%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.seven.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.seven.statistics .statistic{min-width:14.28571429%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.six.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.six.statistics .statistic{min-width:16.66666667%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.five.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.five.statistics .statistic{min-width:20%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.four.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.four.statistics .statistic{min-width:25%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.three.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.three.statistics .statistic{min-width:33.33333333%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.two.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.two.statistics .statistic{min-width:50%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.one.statistics{margin:0em 0em -2em}html.honeywell-dark-theme .ui.one.statistics .statistic{min-width:100%;margin:0em 0em 2em}html.honeywell-dark-theme .ui.horizontal.statistic{flex-direction:row;align-items:center}html.honeywell-dark-theme .ui.horizontal.statistics{flex-direction:column;margin:0em;max-width:none}html.honeywell-dark-theme .ui.horizontal.statistics .statistic{flex-direction:row;align-items:center;max-width:none;margin:1em 0em}html.honeywell-dark-theme .ui.horizontal.statistic>.text.value,html.honeywell-dark-theme .ui.horizontal.statistics>.statistic>.text.value{min-height:0em !important}html.honeywell-dark-theme .ui.horizontal.statistics .statistic>.value .icon,html.honeywell-dark-theme .ui.horizontal.statistic>.value .icon{width:1.18em}html.honeywell-dark-theme .ui.horizontal.statistics .statistic>.value,html.honeywell-dark-theme .ui.horizontal.statistic>.value{display:inline-block;vertical-align:middle}html.honeywell-dark-theme .ui.horizontal.statistics .statistic>.label,html.honeywell-dark-theme .ui.horizontal.statistic>.label{display:inline-block;vertical-align:middle;margin:0em 0em 0em 0.75em}html.honeywell-dark-theme .ui[class*="left floated"].statistic{float:left;margin:0em 2em 1em 0em}html.honeywell-dark-theme .ui[class*="right floated"].statistic{float:right;margin:0em 0em 1em 2em}html.honeywell-dark-theme .ui.floated.statistic:last-child{margin-bottom:0em}html.honeywell-dark-theme .ui.mini.statistics .statistic>.value,html.honeywell-dark-theme .ui.mini.statistic>.value{font-size:1.5rem !important}html.honeywell-dark-theme .ui.mini.horizontal.statistics .statistic>.value,html.honeywell-dark-theme .ui.mini.horizontal.statistic>.value{font-size:1.5rem !important}html.honeywell-dark-theme .ui.mini.statistics .statistic>.text.value,html.honeywell-dark-theme .ui.mini.statistic>.text.value{font-size:1rem !important}html.honeywell-dark-theme .ui.tiny.statistics .statistic>.value,html.honeywell-dark-theme .ui.tiny.statistic>.value{font-size:2rem !important}html.honeywell-dark-theme .ui.tiny.horizontal.statistics .statistic>.value,html.honeywell-dark-theme .ui.tiny.horizontal.statistic>.value{font-size:2rem !important}html.honeywell-dark-theme .ui.tiny.statistics .statistic>.text.value,html.honeywell-dark-theme .ui.tiny.statistic>.text.value{font-size:1rem !important}html.honeywell-dark-theme .ui.small.statistics .statistic>.value,html.honeywell-dark-theme .ui.small.statistic>.value{font-size:3rem !important}html.honeywell-dark-theme .ui.small.horizontal.statistics .statistic>.value,html.honeywell-dark-theme .ui.small.horizontal.statistic>.value{font-size:2rem !important}html.honeywell-dark-theme .ui.small.statistics .statistic>.text.value,html.honeywell-dark-theme .ui.small.statistic>.text.value{font-size:1rem !important}html.honeywell-dark-theme .ui.statistics .statistic>.value,html.honeywell-dark-theme .ui.statistic>.value{font-size:4rem !important}html.honeywell-dark-theme .ui.horizontal.statistics .statistic>.value,html.honeywell-dark-theme .ui.horizontal.statistic>.value{font-size:3rem !important}html.honeywell-dark-theme .ui.statistics .statistic>.text.value,html.honeywell-dark-theme .ui.statistic>.text.value{font-size:2rem !important}html.honeywell-dark-theme .ui.large.statistics .statistic>.value,html.honeywell-dark-theme .ui.large.statistic>.value{font-size:5rem !important}html.honeywell-dark-theme .ui.large.horizontal.statistics .statistic>.value,html.honeywell-dark-theme .ui.large.horizontal.statistic>.value{font-size:4rem !important}html.honeywell-dark-theme .ui.large.statistics .statistic>.text.value,html.honeywell-dark-theme .ui.large.statistic>.text.value{font-size:2.5rem !important}html.honeywell-dark-theme .ui.huge.statistics .statistic>.value,html.honeywell-dark-theme .ui.huge.statistic>.value{font-size:6rem !important}html.honeywell-dark-theme .ui.huge.horizontal.statistics .statistic>.value,html.honeywell-dark-theme .ui.huge.horizontal.statistic>.value{font-size:5rem !important}html.honeywell-dark-theme .ui.huge.statistics .statistic>.text.value,html.honeywell-dark-theme .ui.huge.statistic>.text.value{font-size:2.5rem !important}html.honeywell-dark-theme .ui.accordion,html.honeywell-dark-theme .ui.accordion .accordion{max-width:100%}html.honeywell-dark-theme .ui.accordion .accordion{margin:1em 0em 0em;padding:0em}html.honeywell-dark-theme .ui.accordion .title,html.honeywell-dark-theme .ui.accordion .accordion .title{cursor:pointer}html.honeywell-dark-theme .ui.accordion .title:not(.ui){padding:0.5em 0em;font-size:1em}html.honeywell-dark-theme .ui.accordion .title ~ .content,html.honeywell-dark-theme .ui.accordion .accordion .title ~ .content{display:none}html.honeywell-dark-theme .ui.accordion:not(.styled) .title ~ .content:not(.ui),html.honeywell-dark-theme .ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui){margin:'';padding:0.5em 0em 1em}html.honeywell-dark-theme .ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child{padding-bottom:0em}html.honeywell-dark-theme .ui.accordion .title .dropdown.icon,html.honeywell-dark-theme .ui.accordion .accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0em 0.25rem 0em 0rem;padding:0em;font-size:1em;transition:transform 0.1s ease, opacity 0.1s ease;vertical-align:baseline;transform:none}html.honeywell-dark-theme .ui.accordion.menu .item .title{display:block;padding:0em}html.honeywell-dark-theme .ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:0.21425em 0em 0em 1em;transform:rotate(180deg)}html.honeywell-dark-theme .ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0em 0.25rem 0em 0rem}html.honeywell-dark-theme .ui.accordion .active.title .dropdown.icon,html.honeywell-dark-theme .ui.accordion .accordion .active.title .dropdown.icon{transform:rotate(90deg)}html.honeywell-dark-theme .ui.accordion.menu .item .active.title>.dropdown.icon{transform:rotate(90deg)}html.honeywell-dark-theme .ui.styled.accordion{width:600px}html.honeywell-dark-theme .ui.styled.accordion,html.honeywell-dark-theme .ui.styled.accordion .accordion{border-radius:0.28571429rem;background:#FFFFFF}html.honeywell-dark-theme .ui.styled.accordion .title,html.honeywell-dark-theme .ui.styled.accordion .accordion .title{margin:0em;padding:0.75em 1em;font-weight:bold;transition:background 0.1s ease, color 0.1s ease}html.honeywell-dark-theme .ui.styled.accordion>.title:first-child,html.honeywell-dark-theme .ui.styled.accordion .accordion .title:first-child{border-top:none}html.honeywell-dark-theme .ui.styled.accordion .content,html.honeywell-dark-theme .ui.styled.accordion .accordion .content{margin:0em;padding:0.5em 1em 1.5em}html.honeywell-dark-theme .ui.styled.accordion .accordion .content{padding:0em;padding:0.5em 1em 1.5em}html.honeywell-dark-theme .ui.accordion .active.content,html.honeywell-dark-theme .ui.accordion .accordion .active.content{display:block}html.honeywell-dark-theme .ui.fluid.accordion,html.honeywell-dark-theme .ui.fluid.accordion .accordion{width:100%}html.honeywell-dark-theme .ui.accordion .title .dropdown.icon,html.honeywell-dark-theme .ui.accordion .accordion .title .dropdown.icon{line-height:1;backface-visibility:hidden;font-weight:normal;font-style:normal;text-align:center}html.honeywell-dark-theme .ui.checkbox{position:relative;display:inline-block;backface-visibility:hidden;outline:none;vertical-align:baseline;font-style:normal;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}html.honeywell-dark-theme .ui.checkbox input[type="checkbox"],html.honeywell-dark-theme .ui.checkbox input[type="radio"]{cursor:pointer;position:absolute;top:0px;left:0px;opacity:0 !important;outline:none;z-index:3;width:17px;height:17px}html.honeywell-dark-theme .ui.checkbox .box,html.honeywell-dark-theme .ui.checkbox label{cursor:auto;position:relative;display:block;padding-left:1.85714em;outline:none;font-size:1em}html.honeywell-dark-theme .ui.checkbox .box:before,html.honeywell-dark-theme .ui.checkbox label:before{position:absolute;top:0px;left:0px;width:17px;height:17px;content:'';transition:border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease}html.honeywell-dark-theme .ui.checkbox .box:after,html.honeywell-dark-theme .ui.checkbox label:after{position:absolute;font-size:14px;top:0px;left:0px;width:17px;height:17px;text-align:center;opacity:0;transition:border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease}html.honeywell-dark-theme .ui.checkbox label,html.honeywell-dark-theme .ui.checkbox+label{transition:color 0.1s ease}html.honeywell-dark-theme .ui.checkbox+label{vertical-align:middle}html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate ~ .box:before,html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate ~ label:before{background:#FFFFFF;border-color:rgba(34,36,38,0.35)}html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate ~ .box:after,html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate ~ label:after{opacity:1;color:rgba(0,0,0,0.95)}html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before,html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before,html.honeywell-dark-theme .ui.checkbox input:checked:focus ~ .box:before,html.honeywell-dark-theme .ui.checkbox input:checked:focus ~ label:before{background:#FFFFFF;border-color:#96C8DA}html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after,html.honeywell-dark-theme .ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after,html.honeywell-dark-theme .ui.checkbox input:checked:focus ~ .box:after,html.honeywell-dark-theme .ui.checkbox input:checked:focus ~ label:after{color:rgba(0,0,0,0.95)}html.honeywell-dark-theme .ui.read-only.checkbox,html.honeywell-dark-theme .ui.read-only.checkbox label{cursor:default}html.honeywell-dark-theme .ui.disabled.checkbox .box:after,html.honeywell-dark-theme .ui.disabled.checkbox label,html.honeywell-dark-theme .ui.checkbox input[disabled] ~ .box:after,html.honeywell-dark-theme .ui.checkbox input[disabled] ~ label{cursor:default !important;opacity:0.5;color:#000000}html.honeywell-dark-theme .ui.checkbox input.hidden{z-index:-1}html.honeywell-dark-theme .ui.checkbox input.hidden+label{cursor:pointer;user-select:none}html.honeywell-dark-theme .ui.radio.checkbox{min-height:15px}html.honeywell-dark-theme .ui.radio.checkbox .box,html.honeywell-dark-theme .ui.radio.checkbox label{padding-left:1.85714em}html.honeywell-dark-theme .ui.radio.checkbox .box:before,html.honeywell-dark-theme .ui.radio.checkbox label:before{content:'';transform:none;width:15px;height:15px;border-radius:500rem;top:1px;left:0px}html.honeywell-dark-theme .ui.radio.checkbox .box:after,html.honeywell-dark-theme .ui.radio.checkbox label:after{border:none;content:'' !important;width:15px;height:15px;line-height:15px}html.honeywell-dark-theme .ui.radio.checkbox .box:after,html.honeywell-dark-theme .ui.radio.checkbox label:after{top:1px;left:0px;width:15px;height:15px;border-radius:500rem;transform:scale(0.46667);background-color:rgba(0,0,0,0.87)}html.honeywell-dark-theme .ui.toggle.checkbox{min-height:1.5rem}html.honeywell-dark-theme .ui.toggle.checkbox input{width:3.5rem;height:1.5rem}html.honeywell-dark-theme .ui.toggle.checkbox .box,html.honeywell-dark-theme .ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem}html.honeywell-dark-theme .ui.toggle.checkbox label{padding-top:0.15em}html.honeywell-dark-theme .ui.toggle.checkbox .box:before,html.honeywell-dark-theme .ui.toggle.checkbox label:before{display:block;position:absolute;content:'';z-index:1;transform:none;border:none;top:0rem;box-shadow:none;width:3.5rem;height:1.5rem;border-radius:500rem}html.honeywell-dark-theme .ui.toggle.checkbox .box:after,html.honeywell-dark-theme .ui.toggle.checkbox label:after{position:absolute;content:'' !important;opacity:1;z-index:2;border:none;box-shadow:0px 1px 2px 0 rgba(34,36,38,0.15),0px 0px 0px 1px rgba(34,36,38,0.15) inset;width:1.5rem;height:1.5rem;top:0rem;left:0em;border-radius:500rem;transition:background 0.3s ease, left 0.3s ease}html.honeywell-dark-theme .ui.toggle.checkbox input ~ .box:after,html.honeywell-dark-theme .ui.toggle.checkbox input ~ label:after{left:-0.05rem;box-shadow:none}html.honeywell-dark-theme .ui.toggle.checkbox input:focus ~ .box:before,html.honeywell-dark-theme .ui.toggle.checkbox input:focus ~ label:before{border:none}html.honeywell-dark-theme .ui.toggle.checkbox .box:hover::before,html.honeywell-dark-theme .ui.toggle.checkbox label:hover::before{border:none}html.honeywell-dark-theme .ui.toggle.checkbox input:checked ~ .box:after,html.honeywell-dark-theme .ui.toggle.checkbox input:checked ~ label:after{left:2.15rem;box-shadow:none}html.honeywell-dark-theme .dimmable:not(body){position:relative}html.honeywell-dark-theme .ui.dimmer{display:none;position:absolute;top:0em !important;left:0em !important;width:100%;height:100%;text-align:center;vertical-align:middle;background-color:rgba(0,0,0,0.85);opacity:0;line-height:1;animation-fill-mode:both;animation-duration:0.5s;transition:background-color 0.5s linear;user-select:none;will-change:opacity;z-index:1000}html.honeywell-dark-theme .ui.dimmer>.content{width:100%;height:100%;display:table;user-select:text}html.honeywell-dark-theme .ui.dimmer>.content>*{display:table-cell;vertical-align:middle;color:#FFFFFF}html.honeywell-dark-theme .ui.segment>.ui.dimmer{border-radius:inherit !important}html.honeywell-dark-theme .ui.dimmer:not(.inverted)::-webkit-scrollbar-track{background:rgba(255,255,255,0.1)}html.honeywell-dark-theme .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.25)}html.honeywell-dark-theme .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive{background:rgba(255,255,255,0.15)}html.honeywell-dark-theme .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,0.35)}html.honeywell-dark-theme .animating.dimmable:not(body),html.honeywell-dark-theme .dimmed.dimmable:not(body){overflow:hidden}html.honeywell-dark-theme .dimmed.dimmable>.ui.animating.dimmer,html.honeywell-dark-theme .dimmed.dimmable>.ui.visible.dimmer,html.honeywell-dark-theme .ui.active.dimmer{display:block;opacity:1}html.honeywell-dark-theme .ui.disabled.dimmer{width:0 !important;height:0 !important}html.honeywell-dark-theme .ui.page.dimmer{position:fixed;transform-style:'';perspective:2000px;transform-origin:center center}html.honeywell-dark-theme body.animating.in.dimmable,html.honeywell-dark-theme body.dimmed.dimmable{overflow:hidden}html.honeywell-dark-theme body.dimmable>.dimmer{position:fixed}html.honeywell-dark-theme .blurring.dimmable>:not(.dimmer){filter:blur(0px) grayscale(0);transition:800ms filter ease}html.honeywell-dark-theme .blurring.dimmed.dimmable>:not(.dimmer){filter:blur(5px) grayscale(0.7)}html.honeywell-dark-theme .blurring.dimmable>.dimmer{background-color:rgba(0,0,0,0.6)}html.honeywell-dark-theme .blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,0.6)}html.honeywell-dark-theme .ui.dimmer>.top.aligned.content>*{vertical-align:top}html.honeywell-dark-theme .ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}html.honeywell-dark-theme .ui.inverted.dimmer{background-color:rgba(255,255,255,0.85)}html.honeywell-dark-theme .ui.inverted.dimmer>.content>*{color:#FFFFFF}html.honeywell-dark-theme .ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0%;height:0%;z-index:-100;background-color:rgba(0,0,0,0)}html.honeywell-dark-theme .dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,0.85);z-index:1}html.honeywell-dark-theme .ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}html.honeywell-dark-theme .dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0.85)}html.honeywell-dark-theme .ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:none;text-align:left;transition:box-shadow 0.1s ease, width 0.1s ease;-webkit-tap-highlight-color:rgba(0,0,0,0)}html.honeywell-dark-theme .ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:none;top:100%;min-width:max-content;margin:0em;padding:0em 0em;font-size:1em;text-shadow:none;text-align:left;box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15);border-radius:0.28571429rem;transition:opacity 0.1s ease;z-index:11;will-change:transform, opacity}html.honeywell-dark-theme .ui.dropdown .menu>*{white-space:nowrap}html.honeywell-dark-theme .ui.dropdown>input:not(.search):first-child,html.honeywell-dark-theme .ui.dropdown>select{display:none !important}html.honeywell-dark-theme .ui.dropdown>.dropdown.icon{position:relative;width:auto;font-size:0.85714286em;margin:0em 0em 0em 1em}html.honeywell-dark-theme .ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0em 0em 0em 1em}html.honeywell-dark-theme .ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}html.honeywell-dark-theme .ui.dropdown>.text{display:inline-block;transition:none;max-width:calc(100% - 1.4rem);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 !important;padding-right:0.5rem}html.honeywell-dark-theme .ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;padding:0.78571429rem 1.14285714rem !important;font-size:1rem;text-transform:none;font-weight:normal;box-shadow:none;-webkit-touch-callout:none}html.honeywell-dark-theme .ui.dropdown .menu>.item:first-child{border-top-width:0px}html.honeywell-dark-theme .ui.dropdown>.text>[class*="right floated"],html.honeywell-dark-theme .ui.dropdown .menu .item>[class*="right floated"]{float:right !important;margin-right:0em !important;margin-left:1em !important}html.honeywell-dark-theme .ui.dropdown>.text>[class*="left floated"],html.honeywell-dark-theme .ui.dropdown .menu .item>[class*="left floated"]{float:left !important;margin-left:0em !important;margin-right:1em !important}html.honeywell-dark-theme .ui.dropdown .menu .item>.icon.floated,html.honeywell-dark-theme .ui.dropdown .menu .item>.flag.floated,html.honeywell-dark-theme .ui.dropdown .menu .item>.image.floated,html.honeywell-dark-theme .ui.dropdown .menu .item>img.floated{margin-top:0em}html.honeywell-dark-theme .ui.dropdown .menu>.header{margin:1rem 0rem 0.75rem;padding:0em 1.14285714rem;font-size:0.78571429em;font-weight:bold;text-transform:uppercase}html.honeywell-dark-theme .ui.dropdown .menu>.divider{height:0em;margin:0.5em 0em}html.honeywell-dark-theme .ui.dropdown .menu>.input{width:auto;display:flex;margin:1.14285714rem 0.78571429rem;min-width:10rem}html.honeywell-dark-theme .ui.dropdown .menu>.header+.input{margin-top:0em}html.honeywell-dark-theme .ui.dropdown .menu>.input:not(.transparent) input{padding:0.5em 1em}html.honeywell-dark-theme .ui.dropdown .menu>.input:not(.transparent) .button,html.honeywell-dark-theme .ui.dropdown .menu>.input:not(.transparent) .icon,html.honeywell-dark-theme .ui.dropdown .menu>.input:not(.transparent) .label{padding-top:0.5em;padding-bottom:0.5em}html.honeywell-dark-theme .ui.dropdown>.text>.description,html.honeywell-dark-theme .ui.dropdown .menu>.item>.description{float:right;margin:0em 0em 0em 1em}html.honeywell-dark-theme .ui.dropdown .menu>.message{padding:0.78571429rem 1.14285714rem;font-weight:normal}html.honeywell-dark-theme .ui.dropdown .menu .menu{top:0% !important;left:100%;right:auto;margin:0em 0em 0em -0.5em !important;border-radius:0.28571429rem !important;z-index:21 !important}html.honeywell-dark-theme .ui.dropdown .menu .menu:after{display:none}html.honeywell-dark-theme .ui.dropdown>.text>.icon,html.honeywell-dark-theme .ui.dropdown>.text>.label,html.honeywell-dark-theme .ui.dropdown>.text>.flag,html.honeywell-dark-theme .ui.dropdown>.text>img,html.honeywell-dark-theme .ui.dropdown>.text>.image{margin-top:0em}html.honeywell-dark-theme .ui.dropdown .menu>.item>.icon,html.honeywell-dark-theme .ui.dropdown .menu>.item>.label,html.honeywell-dark-theme .ui.dropdown .menu>.item>.flag,html.honeywell-dark-theme .ui.dropdown .menu>.item>.image,html.honeywell-dark-theme .ui.dropdown .menu>.item>img{margin-top:0em}html.honeywell-dark-theme .ui.dropdown>.text>.icon,html.honeywell-dark-theme .ui.dropdown>.text>.label,html.honeywell-dark-theme .ui.dropdown>.text>.flag,html.honeywell-dark-theme .ui.dropdown>.text>img,html.honeywell-dark-theme .ui.dropdown>.text>.image,html.honeywell-dark-theme .ui.dropdown .menu>.item>.icon,html.honeywell-dark-theme .ui.dropdown .menu>.item>.label,html.honeywell-dark-theme .ui.dropdown .menu>.item>.flag,html.honeywell-dark-theme .ui.dropdown .menu>.item>.image,html.honeywell-dark-theme .ui.dropdown .menu>.item>img{margin-left:0em;float:none;margin-right:0.78571429rem}html.honeywell-dark-theme .ui.dropdown .ui.menu>.item:before,html.honeywell-dark-theme .ui.menu .ui.dropdown .menu>.item:before{display:none}html.honeywell-dark-theme .ui.menu .ui.dropdown .menu .active.item{border-left:none}html.honeywell-dark-theme .ui.menu .right.menu .dropdown:last-child .menu,html.honeywell-dark-theme .ui.menu .right.dropdown.item .menu,html.honeywell-dark-theme .ui.buttons>.ui.dropdown:last-child .menu{left:auto;right:0em}html.honeywell-dark-theme .ui.label.dropdown .menu{min-width:100%}html.honeywell-dark-theme .ui.dropdown.icon.button>.dropdown.icon{margin:0em}html.honeywell-dark-theme .ui.button.dropdown .menu{min-width:100%}html.honeywell-dark-theme .ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height:1em;white-space:normal;outline:0;transform:rotateZ(0deg);min-width:14em;min-height:2.71428571em;display:inline-block;padding:0.78571429em 2.1em 0.78571429em 1em;box-shadow:none;border-radius:0.28571429rem;transition:box-shadow 0.1s ease, width 0.1s ease}html.honeywell-dark-theme .ui.selection.dropdown.visible,html.honeywell-dark-theme .ui.selection.dropdown.active{z-index:10;display:block;visibility:visible}html.honeywell-dark-theme select.ui.dropdown{height:38px;padding:0.5em;visibility:visible}html.honeywell-dark-theme .ui.selection.dropdown>.search.icon,html.honeywell-dark-theme .ui.selection.dropdown>.delete.icon,html.honeywell-dark-theme .ui.selection.dropdown>.dropdown.icon{cursor:pointer;position:absolute;width:auto;height:auto;line-height:1.21428571em;top:0.78571429em;right:1em;z-index:3;margin:-0.78571429em;padding:0.91666667em;opacity:0.8;transition:opacity 0.1s ease}html.honeywell-dark-theme .ui.compact.selection.dropdown{min-width:0px}html.honeywell-dark-theme .ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0px !important;width:auto;outline:none;margin:0px -1px;min-width:calc(100% +  2px);width:calc(100% +  2px);border-radius:0em 0em 0.28571429rem 0.28571429rem;box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15);transition:opacity 0.1s ease}html.honeywell-dark-theme .ui.selection.dropdown .menu:after,html.honeywell-dark-theme .ui.selection.dropdown .menu:before{display:none}html.honeywell-dark-theme .ui.selection.dropdown .menu>.message{padding:0.78571429rem 1.14285714rem}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.selection.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width: 768px){html.honeywell-dark-theme .ui.selection.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width: 992px){html.honeywell-dark-theme .ui.selection.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width: 1920px){html.honeywell-dark-theme .ui.selection.dropdown .menu{max-height:21.37142857rem}}html.honeywell-dark-theme .ui.selection.dropdown .menu>.item{padding:0.78571429rem 1.14285714rem !important;white-space:normal;word-wrap:normal}html.honeywell-dark-theme .ui.selection.dropdown .menu>.hidden.addition.item{display:none}html.honeywell-dark-theme .ui.selection.dropdown:hover{box-shadow:none}html.honeywell-dark-theme .ui.selection.active.dropdown{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.selection.active.dropdown .menu{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.selection.dropdown:focus{box-shadow:none}html.honeywell-dark-theme .ui.selection.dropdown:focus .menu{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.selection.visible.dropdown>.text:not(.default){font-weight:normal;color:rgba(0,0,0,0.8)}html.honeywell-dark-theme .ui.selection.active.dropdown:hover{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.selection.active.dropdown:hover .menu{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.active.selection.dropdown>.dropdown.icon,html.honeywell-dark-theme .ui.visible.selection.dropdown>.dropdown.icon{opacity:1;z-index:3}html.honeywell-dark-theme .ui.active.selection.dropdown{border-bottom-left-radius:0em !important;border-bottom-right-radius:0em !important}html.honeywell-dark-theme .ui.active.empty.selection.dropdown{border-radius:0.28571429rem !important;box-shadow:none !important}html.honeywell-dark-theme .ui.active.empty.selection.dropdown .menu{border:none !important;box-shadow:none !important}html.honeywell-dark-theme .ui.search.dropdown{min-width:''}html.honeywell-dark-theme .ui.search.dropdown>input.search{background:none transparent !important;border:none !important;box-shadow:none !important;cursor:text;top:0em;left:1px;width:100%;outline:none;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit}html.honeywell-dark-theme .ui.search.dropdown>input.search{position:absolute;z-index:2}html.honeywell-dark-theme .ui.search.dropdown>.text{cursor:text;position:relative;left:1px;z-index:3}html.honeywell-dark-theme .ui.search.selection.dropdown>input.search{line-height:1.21428571em;padding:0.67857143em 2.1em 0.67857143em 1em}html.honeywell-dark-theme .ui.search.selection.dropdown>span.sizer{line-height:1.21428571em;padding:0.67857143em 2.1em 0.67857143em 1em;display:none;white-space:pre}html.honeywell-dark-theme .ui.search.dropdown.active>input.search,html.honeywell-dark-theme .ui.search.dropdown.visible>input.search{cursor:auto}html.honeywell-dark-theme .ui.search.dropdown.active>.text,html.honeywell-dark-theme .ui.search.dropdown.visible>.text{pointer-events:none}html.honeywell-dark-theme .ui.active.search.dropdown input.search:focus+.text .icon,html.honeywell-dark-theme .ui.active.search.dropdown input.search:focus+.text .flag{opacity:0.45}html.honeywell-dark-theme .ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.search.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width: 768px){html.honeywell-dark-theme .ui.search.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width: 992px){html.honeywell-dark-theme .ui.search.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width: 1920px){html.honeywell-dark-theme .ui.search.dropdown .menu{max-height:21.37142857rem}}html.honeywell-dark-theme .ui.multiple.dropdown{padding:0.22619048em 2.1em 0.22619048em 0.35714286em}html.honeywell-dark-theme .ui.multiple.dropdown .menu{cursor:auto}html.honeywell-dark-theme .ui.multiple.search.dropdown,html.honeywell-dark-theme .ui.multiple.search.dropdown>input.search{cursor:text}html.honeywell-dark-theme .ui.multiple.dropdown>.label{user-select:none;display:inline-block;vertical-align:top;white-space:normal;font-size:1em;padding:0.35714286em 0.78571429em;margin:0.14285714rem 0.28571429rem 0.14285714rem 0em;box-shadow:0px 0px 0px 1px rgba(34,36,38,0.15) inset}html.honeywell-dark-theme .ui.multiple.dropdown .dropdown.icon{margin:'';padding:''}html.honeywell-dark-theme .ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:0.45238095em 0em 0.45238095em 0.64285714em;line-height:1.21428571em}html.honeywell-dark-theme .ui.multiple.dropdown>.label ~ input.search{margin-left:0.14285714em !important}html.honeywell-dark-theme .ui.multiple.dropdown>.label ~ .text{display:none}html.honeywell-dark-theme .ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:0.45238095em 0em 0.45238095em 0.64285714em;line-height:1.21428571em}html.honeywell-dark-theme .ui.multiple.search.dropdown>.label ~ .text{display:none}html.honeywell-dark-theme .ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:0.45238095em 0em 0.45238095em 0.64285714em;width:2.2em;line-height:1.21428571em}html.honeywell-dark-theme .ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}html.honeywell-dark-theme .ui.inline.dropdown .dropdown.icon{margin:0em 0.5em 0em 0.21428571em;vertical-align:baseline}html.honeywell-dark-theme .ui.inline.dropdown>.text{font-weight:bold}html.honeywell-dark-theme .ui.inline.dropdown .menu{cursor:auto;margin-top:0.21428571em;border-radius:0.28571429rem}html.honeywell-dark-theme .ui.dropdown .menu .active.item{background:transparent;font-weight:bold;box-shadow:none;z-index:12}html.honeywell-dark-theme .ui.dropdown .menu>.item:hover{z-index:13}html.honeywell-dark-theme .ui.loading.dropdown>i.icon{height:1em !important}html.honeywell-dark-theme .ui.loading.selection.dropdown>i.icon{padding:1.5em 1.28571429em !important}html.honeywell-dark-theme .ui.loading.dropdown>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.loading.dropdown>i.icon:after{position:absolute;content:'';top:50%;left:50%;box-shadow:0px 0px 0px 1px transparent;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:dropdown-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em}html.honeywell-dark-theme .ui.loading.dropdown.button>i.icon:before,html.honeywell-dark-theme .ui.loading.dropdown.button>i.icon:after{display:none}@keyframes dropdown-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme .ui.loading.dropdown>.text{transition:none}html.honeywell-dark-theme .ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}html.honeywell-dark-theme .ui.dropdown>.loading.menu{left:0px !important;right:auto !important}html.honeywell-dark-theme .ui.dropdown>.menu .loading.menu{left:100% !important;right:auto !important}html.honeywell-dark-theme .ui.dropdown>.filtered.text{visibility:hidden}html.honeywell-dark-theme .ui.dropdown .filtered.item{display:none !important}html.honeywell-dark-theme .ui.disabled.dropdown,html.honeywell-dark-theme .ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:0.45}html.honeywell-dark-theme .ui.dropdown .menu{left:0px}html.honeywell-dark-theme .ui.dropdown .right.menu>.menu,html.honeywell-dark-theme .ui.dropdown .menu .right.menu{left:100% !important;right:auto !important;border-radius:0.28571429rem !important}html.honeywell-dark-theme .ui.dropdown>.left.menu{left:auto !important;right:0px !important}html.honeywell-dark-theme .ui.dropdown>.left.menu .menu,html.honeywell-dark-theme .ui.dropdown .menu .left.menu{left:auto;right:100%;margin:0em -0.5em 0em 0em !important;border-radius:0.28571429rem !important}html.honeywell-dark-theme .ui.dropdown .item .left.dropdown.icon,html.honeywell-dark-theme .ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0em 0em 0em 0em}html.honeywell-dark-theme .ui.dropdown .item .left.dropdown.icon,html.honeywell-dark-theme .ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0em 0em 0em 0em}html.honeywell-dark-theme .ui.dropdown .item .left.dropdown.icon+.text,html.honeywell-dark-theme .ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em;margin-right:0em}html.honeywell-dark-theme .ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0px 0px 3px 0px rgba(0,0,0,0.08);border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.dropdown .upward.menu{top:auto !important;bottom:0 !important}html.honeywell-dark-theme .ui.simple.upward.active.dropdown,html.honeywell-dark-theme .ui.simple.upward.dropdown:hover{border-radius:0.28571429rem 0.28571429rem 0em 0em !important}html.honeywell-dark-theme .ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:0.28571429rem 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.upward.selection.dropdown .menu{border-top-width:1px !important;border-bottom-width:0px !important;box-shadow:0px -2px 3px 0px rgba(0,0,0,0.08)}html.honeywell-dark-theme .ui.upward.selection.dropdown:hover{box-shadow:0px 0px 2px 0px rgba(0,0,0,0.05)}html.honeywell-dark-theme .ui.active.upward.selection.dropdown{border-radius:0em 0em 0.28571429rem 0.28571429rem !important}html.honeywell-dark-theme .ui.upward.selection.dropdown.visible{box-shadow:0px 0px 3px 0px rgba(0,0,0,0.08);border-radius:0em 0em 0.28571429rem 0.28571429rem !important}html.honeywell-dark-theme .ui.upward.active.selection.dropdown:hover{box-shadow:0px 0px 3px 0px rgba(0,0,0,0.05)}html.honeywell-dark-theme .ui.upward.active.selection.dropdown:hover .menu{box-shadow:0px -2px 3px 0px rgba(0,0,0,0.08)}html.honeywell-dark-theme .ui.scrolling.dropdown .menu,html.honeywell-dark-theme .ui.dropdown .scrolling.menu{overflow-x:hidden;overflow-y:auto}html.honeywell-dark-theme .ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100% !important;width:auto !important}html.honeywell-dark-theme .ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;box-shadow:none !important;border-radius:0 !important;margin:0 !important;min-width:100% !important;width:auto !important;border-top:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.scrolling.dropdown .menu .item.item.item,html.honeywell-dark-theme .ui.dropdown .scrolling.menu>.item.item.item{border-top:none}html.honeywell-dark-theme .ui.scrolling.dropdown .menu .item:first-child,html.honeywell-dark-theme .ui.dropdown .scrolling.menu .item:first-child{border-top:none}html.honeywell-dark-theme .ui.dropdown>.animating.menu .scrolling.menu,html.honeywell-dark-theme .ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast: none){html.honeywell-dark-theme .ui.scrolling.dropdown .menu,html.honeywell-dark-theme .ui.dropdown .scrolling.menu{min-width:calc(100% -  17px)}}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.scrolling.dropdown .menu,html.honeywell-dark-theme .ui.dropdown .scrolling.menu{max-height:10.28571429rem}}@media only screen and (min-width: 768px){html.honeywell-dark-theme .ui.scrolling.dropdown .menu,html.honeywell-dark-theme .ui.dropdown .scrolling.menu{max-height:15.42857143rem}}@media only screen and (min-width: 992px){html.honeywell-dark-theme .ui.scrolling.dropdown .menu,html.honeywell-dark-theme .ui.dropdown .scrolling.menu{max-height:20.57142857rem}}@media only screen and (min-width: 1920px){html.honeywell-dark-theme .ui.scrolling.dropdown .menu,html.honeywell-dark-theme .ui.dropdown .scrolling.menu{max-height:20.57142857rem}}html.honeywell-dark-theme .ui.simple.dropdown .menu:before,html.honeywell-dark-theme .ui.simple.dropdown .menu:after{display:none}html.honeywell-dark-theme .ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px !important;opacity:0;width:0;height:0;transition:opacity 0.1s ease}html.honeywell-dark-theme .ui.simple.active.dropdown,html.honeywell-dark-theme .ui.simple.dropdown:hover{border-bottom-left-radius:0em !important;border-bottom-right-radius:0em !important}html.honeywell-dark-theme .ui.simple.active.dropdown>.menu,html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100% !important;opacity:1}html.honeywell-dark-theme .ui.simple.dropdown>.menu>.item:active>.menu,html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu>.item:hover>.menu{overflow:visible;width:auto;height:auto;top:0% !important;left:100% !important;opacity:1}html.honeywell-dark-theme .ui.simple.disabled.dropdown:hover .menu{display:none;height:0px;width:0px;overflow:hidden}html.honeywell-dark-theme .ui.simple.visible.dropdown>.menu{display:block;visibility:visible}html.honeywell-dark-theme .ui.fluid.dropdown{display:block;width:100%;min-width:0em}html.honeywell-dark-theme .ui.fluid.dropdown>.dropdown.icon{float:right}html.honeywell-dark-theme .ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15) !important;border-radius:0.28571429rem !important}html.honeywell-dark-theme .ui.floating.dropdown>.menu{margin-top:0.5em !important;border-radius:0.28571429rem !important}html.honeywell-dark-theme .ui.dropdown>.dropdown.icon{line-height:1;height:1em;width:1.23em;backface-visibility:hidden;font-weight:normal;font-style:normal;text-align:center}html.honeywell-dark-theme .ui.dropdown>.dropdown.icon{width:auto}html.honeywell-dark-theme .ui.modal{display:none;position:fixed;z-index:1001;text-align:left;border:none;align-self:center;justify-self:center;box-shadow:1px 3px 3px 0px rgba(0,0,0,0.2),1px 3px 15px 2px rgba(0,0,0,0.2);transform-origin:50% 25%;border-radius:0.28571429rem;user-select:text;will-change:top, left, margin, transform, opacity}html.honeywell-dark-theme .ui.modal>:first-child:not(.icon),html.honeywell-dark-theme .ui.modal>.icon:first-child+*{border-top-left-radius:0.28571429rem;border-top-right-radius:0.28571429rem}html.honeywell-dark-theme .ui.modal>:last-child{border-bottom-left-radius:0.28571429rem;border-bottom-right-radius:0.28571429rem}html.honeywell-dark-theme .modals.dimmer{justify-content:center}html.honeywell-dark-theme .ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:0.8;font-size:1.25em;width:2.25rem;height:2.25rem;padding:0.625rem 0rem 0rem 0rem}html.honeywell-dark-theme .ui.modal>.close:hover{opacity:1}html.honeywell-dark-theme .ui.modal>.header{display:block;margin:0em;padding:1.25rem 1.5rem;box-shadow:none;border-bottom:1px solid rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.modal>.header:not(.ui){font-size:1.42857143rem;line-height:1.28571429em;font-weight:bold}html.honeywell-dark-theme .ui.modal>.content{display:block;width:100%;font-size:1em;line-height:1.4;padding:1.5rem}html.honeywell-dark-theme .ui.modal>.image.content{display:flex;flex-direction:row}html.honeywell-dark-theme .ui.modal>.content>.image{display:block;flex:0 1 auto;width:'';align-self:top}html.honeywell-dark-theme .ui.modal>[class*="top aligned"]{align-self:top}html.honeywell-dark-theme .ui.modal>[class*="middle aligned"]{align-self:middle}html.honeywell-dark-theme .ui.modal>[class*="stretched"]{align-self:stretch}html.honeywell-dark-theme .ui.modal>.content>.description{display:block;flex:1 0 auto;min-width:0px;align-self:top}html.honeywell-dark-theme .ui.modal>.content>.icon+.description,html.honeywell-dark-theme .ui.modal>.content>.image+.description{flex:0 1 auto;min-width:'';width:auto;padding-left:2em}html.honeywell-dark-theme .ui.modal>.content>.image>i.icon{margin:0em;opacity:1;width:auto;line-height:1;font-size:8rem}html.honeywell-dark-theme .ui.modal>.actions{padding:1rem 1rem;border-top:1px solid rgba(34,36,38,0.15);text-align:right}html.honeywell-dark-theme .ui.modal .actions>.button{margin-left:0.75em}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.modal{width:95%}}@media only screen and (min-width: 768px){html.honeywell-dark-theme .ui.modal{width:88%}}@media only screen and (min-width: 992px){html.honeywell-dark-theme .ui.modal{width:850px}}@media only screen and (min-width: 1200px){html.honeywell-dark-theme .ui.modal{width:900px}}@media only screen and (min-width: 1920px){html.honeywell-dark-theme .ui.modal{width:950px}}@media only screen and (max-width: 991px){html.honeywell-dark-theme .ui.modal>.header{padding-right:2.25rem}html.honeywell-dark-theme .ui.modal>.close{top:1.0535rem;right:1rem}}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.modal>.header{padding:0.75rem 1rem !important;padding-right:2.25rem !important}html.honeywell-dark-theme .ui.modal>.content{display:block;padding:1rem !important}html.honeywell-dark-theme .ui.modal>.close{top:0.5rem !important;right:0.5rem !important}html.honeywell-dark-theme .ui.modal .image.content{flex-direction:column}html.honeywell-dark-theme .ui.modal .content>.image{display:block;max-width:100%;margin:0em auto !important;text-align:center;padding:0rem 0rem 1rem !important}html.honeywell-dark-theme .ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}html.honeywell-dark-theme .ui.modal .content>.description{display:block;width:100% !important;margin:0em !important;padding:1rem 0rem !important;box-shadow:none}html.honeywell-dark-theme .ui.modal>.actions{padding:1rem 1rem 0rem !important}html.honeywell-dark-theme .ui.modal .actions>.buttons,html.honeywell-dark-theme .ui.modal .actions>.button{margin-bottom:1rem}}html.honeywell-dark-theme .ui.active.modal{display:block}html.honeywell-dark-theme .scrolling.dimmable.dimmed{overflow:hidden}html.honeywell-dark-theme .scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}html.honeywell-dark-theme .scrolling.dimmable>.dimmer{position:fixed}html.honeywell-dark-theme .modals.dimmer .ui.scrolling.modal{position:static !important;margin:3.5rem auto !important}html.honeywell-dark-theme .scrolling.undetached.dimmable.dimmed{overflow:auto;-webkit-overflow-scrolling:touch}html.honeywell-dark-theme .scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}html.honeywell-dark-theme .scrolling.undetached.dimmable .ui.scrolling.modal{position:absolute;margin-top:3.5rem !important}html.honeywell-dark-theme .undetached.dimmable.dimmed>.pusher{z-index:auto}@media only screen and (max-width: 991px){html.honeywell-dark-theme .modals.dimmer .ui.scrolling.modal{margin-top:1rem !important;margin-bottom:1rem !important}}html.honeywell-dark-theme .ui.modal .scrolling.content{max-height:calc(70vh);overflow:unset}html.honeywell-dark-theme .ui.fullscreen.modal{width:95% !important;left:2.5% !important;margin:1em auto}html.honeywell-dark-theme .ui.fullscreen.scrolling.modal{left:0em !important}html.honeywell-dark-theme .ui.fullscreen.modal>.header{padding-right:2.25rem}html.honeywell-dark-theme .ui.fullscreen.modal>.close{top:1.0535rem;right:1rem}html.honeywell-dark-theme .ui.modal{font-size:1rem}html.honeywell-dark-theme .ui.mini.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.mini.modal{width:95%}}@media only screen and (min-width: 768px){html.honeywell-dark-theme .ui.mini.modal{width:35.2%}}@media only screen and (min-width: 992px){html.honeywell-dark-theme .ui.mini.modal{width:340px}}@media only screen and (min-width: 1200px){html.honeywell-dark-theme .ui.mini.modal{width:360px}}@media only screen and (min-width: 1920px){html.honeywell-dark-theme .ui.mini.modal{width:380px}}html.honeywell-dark-theme .ui.small.modal>.header:not(.ui){font-size:1.3em}html.honeywell-dark-theme .ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.small.modal{width:95%}}@media only screen and (min-width: 768px){html.honeywell-dark-theme .ui.small.modal{width:70.4%}}@media only screen and (min-width: 992px){html.honeywell-dark-theme .ui.small.modal{width:680px}}@media only screen and (min-width: 1200px){html.honeywell-dark-theme .ui.small.modal{width:720px}}@media only screen and (min-width: 1920px){html.honeywell-dark-theme .ui.small.modal{width:760px}}html.honeywell-dark-theme .ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.large.modal{width:95%}}@media only screen and (min-width: 768px){html.honeywell-dark-theme .ui.large.modal{width:88%}}@media only screen and (min-width: 992px){html.honeywell-dark-theme .ui.large.modal{width:1020px}}@media only screen and (min-width: 1200px){html.honeywell-dark-theme .ui.large.modal{width:1080px}}@media only screen and (min-width: 1920px){html.honeywell-dark-theme .ui.large.modal{width:1140px}}html.honeywell-dark-theme .ui.popup{display:none;position:absolute;top:0px;right:0px;min-width:min-content;z-index:1900;border:1px solid #D4D4D5;line-height:1.4285em;max-width:250px;background:#FFFFFF;padding:0.833em 1em;font-weight:normal;font-style:normal;color:rgba(0,0,0,0.87);border-radius:0.28571429rem;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.popup>.header{padding:0em;font-size:1.14285714em;line-height:1.2;font-weight:bold}html.honeywell-dark-theme .ui.popup>.header+.content{padding-top:0.5em}html.honeywell-dark-theme .ui.popup:before{position:absolute;content:'';width:0.71428571em;height:0.71428571em;background:#FFFFFF;transform:rotate(45deg);z-index:2}html.honeywell-dark-theme [data-tooltip]{position:relative}html.honeywell-dark-theme [data-tooltip]:before{pointer-events:none;position:absolute;content:'';font-size:1rem;width:0.71428571em;height:0.71428571em;background:#FFFFFF;transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0px 0px #bababc}html.honeywell-dark-theme [data-tooltip]:after{pointer-events:none;content:attr(data-tooltip);position:absolute;text-transform:none;text-align:left;white-space:nowrap;font-size:1rem;border:1px solid #D4D4D5;line-height:1.4285em;max-width:none;background:#FFFFFF;padding:0.833em 1em;font-weight:normal;font-style:normal;color:rgba(0,0,0,0.87);border-radius:0.28571429rem;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15);z-index:1}html.honeywell-dark-theme [data-tooltip]:not([data-position]):before{top:auto;right:auto;bottom:100%;left:50%;background:#FFFFFF;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html.honeywell-dark-theme [data-tooltip]:not([data-position]):after{left:50%;transform:translateX(-50%);bottom:100%;margin-bottom:0.5em}html.honeywell-dark-theme [data-tooltip]:before,html.honeywell-dark-theme [data-tooltip]:after{pointer-events:none;visibility:hidden}html.honeywell-dark-theme [data-tooltip]:before{opacity:0;transform:rotate(45deg) scale(0) !important;transform-origin:center top;transition:all 0.1s ease}html.honeywell-dark-theme [data-tooltip]:after{opacity:1;transform-origin:center bottom;transition:all 0.1s ease}html.honeywell-dark-theme [data-tooltip]:hover:before,html.honeywell-dark-theme [data-tooltip]:hover:after{visibility:visible;pointer-events:auto}html.honeywell-dark-theme [data-tooltip]:hover:before{transform:rotate(45deg) scale(1) !important;opacity:1}html.honeywell-dark-theme [data-tooltip]:after,html.honeywell-dark-theme [data-tooltip][data-position="top center"]:after,html.honeywell-dark-theme [data-tooltip][data-position="bottom center"]:after{transform:translateX(-50%) scale(0) !important}html.honeywell-dark-theme [data-tooltip]:hover:after,html.honeywell-dark-theme [data-tooltip][data-position="bottom center"]:hover:after{transform:translateX(-50%) scale(1) !important}html.honeywell-dark-theme [data-tooltip][data-position="left center"]:after,html.honeywell-dark-theme [data-tooltip][data-position="right center"]:after{transform:translateY(-50%) scale(0) !important}html.honeywell-dark-theme [data-tooltip][data-position="left center"]:hover:after,html.honeywell-dark-theme [data-tooltip][data-position="right center"]:hover:after{transform:translateY(-50%) scale(1) !important}html.honeywell-dark-theme [data-tooltip][data-position="top left"]:after,html.honeywell-dark-theme [data-tooltip][data-position="top right"]:after,html.honeywell-dark-theme [data-tooltip][data-position="bottom left"]:after,html.honeywell-dark-theme [data-tooltip][data-position="bottom right"]:after{transform:scale(0) !important}html.honeywell-dark-theme [data-tooltip][data-position="top left"]:hover:after,html.honeywell-dark-theme [data-tooltip][data-position="top right"]:hover:after,html.honeywell-dark-theme [data-tooltip][data-position="bottom left"]:hover:after,html.honeywell-dark-theme [data-tooltip][data-position="bottom right"]:hover:after{transform:scale(1) !important}html.honeywell-dark-theme [data-tooltip][data-inverted]:before{box-shadow:none !important}html.honeywell-dark-theme [data-tooltip][data-inverted]:before{background:#1B1C1D}html.honeywell-dark-theme [data-tooltip][data-inverted]:after{background:#1B1C1D;color:#FFFFFF;border:none;box-shadow:none}html.honeywell-dark-theme [data-tooltip][data-inverted]:after .header{background-color:none;color:#FFFFFF}html.honeywell-dark-theme [data-position="top center"][data-tooltip]:after{top:auto;right:auto;left:50%;bottom:100%;transform:translateX(-50%);margin-bottom:0.5em}html.honeywell-dark-theme [data-position="top center"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:50%;background:#FFFFFF;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html.honeywell-dark-theme [data-position="top left"][data-tooltip]:after{top:auto;right:auto;left:0;bottom:100%;margin-bottom:0.5em}html.honeywell-dark-theme [data-position="top left"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:1em;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html.honeywell-dark-theme [data-position="top right"][data-tooltip]:after{top:auto;left:auto;right:0;bottom:100%;margin-bottom:0.5em}html.honeywell-dark-theme [data-position="top right"][data-tooltip]:before{top:auto;left:auto;bottom:100%;right:1em;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html.honeywell-dark-theme [data-position="bottom center"][data-tooltip]:after{bottom:auto;right:auto;left:50%;top:100%;transform:translateX(-50%);margin-top:0.5em}html.honeywell-dark-theme [data-position="bottom center"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:50%;margin-left:-0.07142857rem;margin-top:0.14285714rem}html.honeywell-dark-theme [data-position="bottom left"][data-tooltip]:after{left:0;top:100%;margin-top:0.5em}html.honeywell-dark-theme [data-position="bottom left"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:1em;margin-left:-0.07142857rem;margin-top:0.14285714rem}html.honeywell-dark-theme [data-position="bottom right"][data-tooltip]:after{right:0;top:100%;margin-top:0.5em}html.honeywell-dark-theme [data-position="bottom right"][data-tooltip]:before{bottom:auto;left:auto;top:100%;right:1em;margin-left:-0.14285714rem;margin-top:0.07142857rem}html.honeywell-dark-theme [data-position="left center"][data-tooltip]:after{right:100%;top:50%;margin-right:0.5em;transform:translateY(-50%)}html.honeywell-dark-theme [data-position="left center"][data-tooltip]:before{right:100%;top:50%;margin-top:-0.14285714rem;margin-right:-0.07142857rem}html.honeywell-dark-theme [data-position="right center"][data-tooltip]:after{left:100%;top:50%;margin-left:0.5em;transform:translateY(-50%)}html.honeywell-dark-theme [data-position="right center"][data-tooltip]:before{left:100%;top:50%;margin-top:-0.07142857rem;margin-left:0.14285714rem}html.honeywell-dark-theme [data-position~="bottom"][data-tooltip]:before{background:#FFFFFF;box-shadow:-1px -1px 0px 0px #bababc}html.honeywell-dark-theme [data-position="left center"][data-tooltip]:before{background:#FFFFFF;box-shadow:1px -1px 0px 0px #bababc}html.honeywell-dark-theme [data-position="right center"][data-tooltip]:before{background:#FFFFFF;box-shadow:-1px 1px 0px 0px #bababc}html.honeywell-dark-theme [data-position~="top"][data-tooltip]:before{background:#FFFFFF}html.honeywell-dark-theme [data-inverted][data-position~="bottom"][data-tooltip]:before{background:#1B1C1D;box-shadow:-1px -1px 0px 0px #bababc}html.honeywell-dark-theme [data-inverted][data-position="left center"][data-tooltip]:before{background:#1B1C1D;box-shadow:1px -1px 0px 0px #bababc}html.honeywell-dark-theme [data-inverted][data-position="right center"][data-tooltip]:before{background:#1B1C1D;box-shadow:-1px 1px 0px 0px #bababc}html.honeywell-dark-theme [data-inverted][data-position~="top"][data-tooltip]:before{background:#1B1C1D}html.honeywell-dark-theme [data-position~="bottom"][data-tooltip]:before{transform-origin:center bottom}html.honeywell-dark-theme [data-position~="bottom"][data-tooltip]:after{transform-origin:center top}html.honeywell-dark-theme [data-position="left center"][data-tooltip]:before{transform-origin:top center}html.honeywell-dark-theme [data-position="left center"][data-tooltip]:after{transform-origin:right center}html.honeywell-dark-theme [data-position="right center"][data-tooltip]:before{transform-origin:right center}html.honeywell-dark-theme [data-position="right center"][data-tooltip]:after{transform-origin:left center}html.honeywell-dark-theme .ui.popup{margin:0em}html.honeywell-dark-theme .ui.top.popup{margin:0em 0em 0.71428571em}html.honeywell-dark-theme .ui.top.left.popup{transform-origin:left bottom}html.honeywell-dark-theme .ui.top.center.popup{transform-origin:center bottom}html.honeywell-dark-theme .ui.top.right.popup{transform-origin:right bottom}html.honeywell-dark-theme .ui.left.center.popup{margin:0em 0.71428571em 0em 0em;transform-origin:right 50%}html.honeywell-dark-theme .ui.right.center.popup{margin:0em 0em 0em 0.71428571em;transform-origin:left 50%}html.honeywell-dark-theme .ui.bottom.popup{margin:0.71428571em 0em 0em}html.honeywell-dark-theme .ui.bottom.left.popup{transform-origin:left top}html.honeywell-dark-theme .ui.bottom.center.popup{transform-origin:center top}html.honeywell-dark-theme .ui.bottom.right.popup{transform-origin:right top}html.honeywell-dark-theme .ui.bottom.center.popup:before{margin-left:-0.30714286em;top:-0.30714286em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0px 0px #bababc}html.honeywell-dark-theme .ui.bottom.left.popup{margin-left:0em}html.honeywell-dark-theme .ui.bottom.left.popup:before{top:-0.30714286em;left:1em;right:auto;bottom:auto;margin-left:0em;box-shadow:-1px -1px 0px 0px #bababc}html.honeywell-dark-theme .ui.bottom.right.popup{margin-right:0em}html.honeywell-dark-theme .ui.bottom.right.popup:before{top:-0.30714286em;right:1em;bottom:auto;left:auto;margin-left:0em;box-shadow:-1px -1px 0px 0px #bababc}html.honeywell-dark-theme .ui.top.center.popup:before{top:auto;right:auto;bottom:-0.30714286em;left:50%;margin-left:-0.30714286em}html.honeywell-dark-theme .ui.top.left.popup{margin-left:0em}html.honeywell-dark-theme .ui.top.left.popup:before{bottom:-0.30714286em;left:1em;top:auto;right:auto;margin-left:0em}html.honeywell-dark-theme .ui.top.right.popup{margin-right:0em}html.honeywell-dark-theme .ui.top.right.popup:before{bottom:-0.30714286em;right:1em;top:auto;left:auto;margin-left:0em}html.honeywell-dark-theme .ui.left.center.popup:before{top:50%;right:-0.30714286em;bottom:auto;left:auto;margin-top:-0.30714286em;box-shadow:1px -1px 0px 0px #bababc}html.honeywell-dark-theme .ui.right.center.popup:before{top:50%;left:-0.30714286em;bottom:auto;right:auto;margin-top:-0.30714286em;box-shadow:-1px 1px 0px 0px #bababc}html.honeywell-dark-theme .ui.bottom.popup:before{background:#FFFFFF}html.honeywell-dark-theme .ui.right.center.popup:before,html.honeywell-dark-theme .ui.left.center.popup:before{background:#FFFFFF}html.honeywell-dark-theme .ui.top.popup:before{background:#FFFFFF}html.honeywell-dark-theme .ui.inverted.bottom.popup:before{background:#1B1C1D}html.honeywell-dark-theme .ui.inverted.right.center.popup:before,html.honeywell-dark-theme .ui.inverted.left.center.popup:before{background:#1B1C1D}html.honeywell-dark-theme .ui.inverted.top.popup:before{background:#1B1C1D}html.honeywell-dark-theme .ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-0.7rem -0.875rem}html.honeywell-dark-theme .ui.loading.popup{display:block;visibility:hidden;z-index:-1}html.honeywell-dark-theme .ui.animating.popup,html.honeywell-dark-theme .ui.visible.popup{display:block}html.honeywell-dark-theme .ui.visible.popup{transform:translateZ(0px);backface-visibility:hidden}html.honeywell-dark-theme .ui.basic.popup:before{display:none}html.honeywell-dark-theme .ui.wide.popup{max-width:350px}html.honeywell-dark-theme .ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width: 767px){html.honeywell-dark-theme .ui.wide.popup,html.honeywell-dark-theme .ui[class*="very wide"].popup{max-width:250px}}html.honeywell-dark-theme .ui.fluid.popup{width:100%;max-width:none}html.honeywell-dark-theme .ui.inverted.popup{background:#1B1C1D;color:#FFFFFF;border:none;box-shadow:none}html.honeywell-dark-theme .ui.inverted.popup .header{background-color:none;color:#FFFFFF}html.honeywell-dark-theme .ui.inverted.popup:before{background-color:#1B1C1D;box-shadow:none !important}html.honeywell-dark-theme .ui.flowing.popup{max-width:none}html.honeywell-dark-theme .ui.mini.popup{font-size:0.78571429rem}html.honeywell-dark-theme .ui.tiny.popup{font-size:0.85714286rem}html.honeywell-dark-theme .ui.small.popup{font-size:0.92857143rem}html.honeywell-dark-theme .ui.popup{font-size:1rem}html.honeywell-dark-theme .ui.large.popup{font-size:1.14285714rem}html.honeywell-dark-theme .ui.huge.popup{font-size:1.42857143rem}html.honeywell-dark-theme .ui.search{position:relative}html.honeywell-dark-theme .ui.search>.prompt{margin:0em;outline:none;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:normal;line-height:1.21428571em;padding:0.67857143em 1em;font-size:1em;box-shadow:0em 0em 0em 0em transparent inset;transition:background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease}html.honeywell-dark-theme .ui.search .prompt{border-radius:500rem}html.honeywell-dark-theme .ui.search .prompt ~ .search.icon{cursor:pointer}html.honeywell-dark-theme .ui.search>.results{display:none;position:absolute;top:100%;left:0%;transform-origin:center top;white-space:normal;margin-top:0.5em;width:18em;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15);z-index:998}html.honeywell-dark-theme .ui.search>.results .result{cursor:pointer;display:block;overflow:hidden;font-size:1em;padding:0.85714286em 1.14285714em;line-height:1.33}html.honeywell-dark-theme .ui.search>.results .result:last-child{border-bottom:none !important}html.honeywell-dark-theme .ui.search>.results .result .image{float:right;overflow:hidden;background:none;width:5em;height:3em;border-radius:0.25em}html.honeywell-dark-theme .ui.search>.results .result .image img{display:block;width:auto;height:100%}html.honeywell-dark-theme .ui.search>.results .result .image+.content{margin:0em 6em 0em 0em}html.honeywell-dark-theme .ui.search>.results .result .title{margin:-0.14285714em 0em 0em;font-weight:bold;font-size:1em}html.honeywell-dark-theme .ui.search>.results .result .description{margin-top:0;font-size:0.92857143em}html.honeywell-dark-theme .ui.search>.results>.message{padding:1em 1em}html.honeywell-dark-theme .ui.search>.results>.message .header{font-size:1rem;font-weight:bold}html.honeywell-dark-theme .ui.search>.results>.message .description{margin-top:0.25rem;font-size:1em}html.honeywell-dark-theme .ui.search>.results>.action{display:block;border-top:none;padding:0.92857143em 1em;font-weight:bold;text-align:center}html.honeywell-dark-theme .ui.loading.search .input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.loading.search .input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}html.honeywell-dark-theme .ui.search>.results .result.active,html.honeywell-dark-theme .ui.category.search>.results .category .result.active{position:relative;box-shadow:none}html.honeywell-dark-theme .ui.search.selection .prompt{border-radius:0.28571429rem}html.honeywell-dark-theme .ui.search.selection>.icon.input>.remove.icon{pointer-events:none;position:absolute;left:auto;opacity:0;color:'';top:0em;right:0em;transition:color 0.1s ease, opacity 0.1s ease}html.honeywell-dark-theme .ui.search.selection>.icon.input>.active.remove.icon{cursor:pointer;opacity:0.8;pointer-events:auto}html.honeywell-dark-theme .ui.search.selection>.icon.input:not([class*="left icon"])>.icon ~ .remove.icon{right:1.85714em}html.honeywell-dark-theme .ui.search.selection>.icon.input>.remove.icon:hover{opacity:1;color:#DB2828}html.honeywell-dark-theme .ui.category.search .results{width:28em}html.honeywell-dark-theme .ui.category.search>.results .category{box-shadow:none;border-bottom:1px solid rgba(34,36,38,0.1);transition:background 0.1s ease, border-color 0.1s ease}html.honeywell-dark-theme .ui.category.search>.results .category:last-child{border-bottom:none}html.honeywell-dark-theme .ui.category.search>.results .category:first-child .name+.result{border-radius:0em 0.28571429rem 0em 0em}html.honeywell-dark-theme .ui.category.search>.results .category:last-child .result:last-child{border-radius:0em 0em 0.28571429rem 0em}html.honeywell-dark-theme .ui.category.search>.results .category .result{margin-left:100px;transition:background 0.1s ease, border-color 0.1s ease;padding:0.85714286em 1.14285714em}html.honeywell-dark-theme .ui.category.search>.results .category:last-child .result:last-child{border-bottom:none}html.honeywell-dark-theme .ui.category.search>.results .category>.name{width:100px;background:transparent;font-size:1em;float:1em;float:left;padding:0.4em 1em;font-weight:bold}html.honeywell-dark-theme .ui[class*="left aligned"].search>.results{right:auto;left:0%}html.honeywell-dark-theme .ui[class*="right aligned"].search>.results{right:0%;left:auto}html.honeywell-dark-theme .ui.fluid.search .results{width:100%}html.honeywell-dark-theme .ui.mini.search{font-size:0.78571429em}html.honeywell-dark-theme .ui.small.search{font-size:0.92857143em}html.honeywell-dark-theme .ui.search{font-size:1em}html.honeywell-dark-theme .ui.large.search{font-size:1.14285714em}html.honeywell-dark-theme .ui.big.search{font-size:1.28571429em}html.honeywell-dark-theme .ui.huge.search{font-size:1.42857143em}html.honeywell-dark-theme .ui.massive.search{font-size:1.71428571em}html.honeywell-dark-theme .ui.sidebar{position:fixed;top:0;left:0;backface-visibility:hidden;transition:none;will-change:transform;transform:translate3d(0, 0, 0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100% !important;max-height:100%;border-radius:0em !important;margin:0em !important;overflow-y:auto !important;z-index:102}html.honeywell-dark-theme .ui.sidebar>*{backface-visibility:hidden}html.honeywell-dark-theme .ui.left.sidebar{right:auto;left:0px;transform:translate3d(-100%, 0, 0)}html.honeywell-dark-theme .ui.right.sidebar{right:0px !important;left:auto !important;transform:translate3d(100%, 0%, 0)}html.honeywell-dark-theme .ui.top.sidebar,html.honeywell-dark-theme .ui.bottom.sidebar{width:100% !important;height:auto !important}html.honeywell-dark-theme .ui.top.sidebar{top:0px !important;bottom:auto !important;transform:translate3d(0, -100%, 0)}html.honeywell-dark-theme .ui.bottom.sidebar{top:auto !important;bottom:0px !important;transform:translate3d(0, 100%, 0)}html.honeywell-dark-theme .pushable{height:100%;overflow-x:hidden;padding:0em !important}html.honeywell-dark-theme .pushable:not(body){transform:translate3d(0, 0, 0)}html.honeywell-dark-theme .pushable:not(body)>.ui.sidebar,html.honeywell-dark-theme .pushable:not(body)>.fixed,html.honeywell-dark-theme .pushable:not(body)>.pusher:after{position:absolute}html.honeywell-dark-theme .pushable>.fixed{position:fixed;backface-visibility:hidden;transition:transform 500ms ease;will-change:transform;z-index:101}html.honeywell-dark-theme .pushable>.pusher{position:relative;backface-visibility:hidden;overflow:hidden;min-height:100%;transition:transform 500ms ease;z-index:2}html.honeywell-dark-theme .pushable>.pusher{background:inherit}html.honeywell-dark-theme .pushable>.pusher:after{position:fixed;top:0px;right:0px;content:'';background-color:rgba(0,0,0,0.4);overflow:hidden;opacity:0;transition:opacity 500ms;will-change:opacity;z-index:1000}html.honeywell-dark-theme .ui.sidebar.menu .item{border-radius:0em !important}html.honeywell-dark-theme .pushable>.pusher.dimmed:after{width:100% !important;height:100% !important;opacity:1 !important}html.honeywell-dark-theme .ui.animating.sidebar{visibility:visible}html.honeywell-dark-theme .ui.visible.sidebar{visibility:visible;transform:translate3d(0, 0, 0)}html.honeywell-dark-theme .ui.left.visible.sidebar,html.honeywell-dark-theme .ui.right.visible.sidebar{box-shadow:0px 0px 20px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.top.visible.sidebar,html.honeywell-dark-theme .ui.bottom.visible.sidebar{box-shadow:0px 0px 20px rgba(34,36,38,0.15)}html.honeywell-dark-theme .ui.visible.left.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.left.sidebar ~ .pusher{transform:translate3d(260px, 0, 0)}html.honeywell-dark-theme .ui.visible.right.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.right.sidebar ~ .pusher{transform:translate3d(-260px, 0, 0)}html.honeywell-dark-theme .ui.visible.top.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.top.sidebar ~ .pusher{transform:translate3d(0, 36px, 0)}html.honeywell-dark-theme .ui.visible.bottom.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.bottom.sidebar ~ .pusher{transform:translate3d(0, -36px, 0)}html.honeywell-dark-theme .ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher,html.honeywell-dark-theme .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher{transform:translate3d(0, 0, 0)}html.honeywell-dark-theme .ui.visible.thin.left.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.thin.left.sidebar ~ .pusher{transform:translate3d(150px, 0, 0)}html.honeywell-dark-theme .ui.visible[class*="very thin"].left.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible[class*="very thin"].left.sidebar ~ .pusher{transform:translate3d(60px, 0, 0)}html.honeywell-dark-theme .ui.visible.wide.left.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.wide.left.sidebar ~ .pusher{transform:translate3d(350px, 0, 0)}html.honeywell-dark-theme .ui.visible[class*="very wide"].left.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible[class*="very wide"].left.sidebar ~ .pusher{transform:translate3d(475px, 0, 0)}html.honeywell-dark-theme .ui.visible.thin.right.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.thin.right.sidebar ~ .pusher{transform:translate3d(-150px, 0, 0)}html.honeywell-dark-theme .ui.visible[class*="very thin"].right.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible[class*="very thin"].right.sidebar ~ .pusher{transform:translate3d(-60px, 0, 0)}html.honeywell-dark-theme .ui.visible.wide.right.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.wide.right.sidebar ~ .pusher{transform:translate3d(-350px, 0, 0)}html.honeywell-dark-theme .ui.visible[class*="very wide"].right.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible[class*="very wide"].right.sidebar ~ .pusher{transform:translate3d(-475px, 0, 0)}html.honeywell-dark-theme .ui.overlay.sidebar{z-index:102}html.honeywell-dark-theme .ui.left.overlay.sidebar{transform:translate3d(-100%, 0%, 0)}html.honeywell-dark-theme .ui.right.overlay.sidebar{transform:translate3d(100%, 0%, 0)}html.honeywell-dark-theme .ui.top.overlay.sidebar{transform:translate3d(0%, -100%, 0)}html.honeywell-dark-theme .ui.bottom.overlay.sidebar{transform:translate3d(0%, 100%, 0)}html.honeywell-dark-theme .animating.ui.overlay.sidebar,html.honeywell-dark-theme .ui.visible.overlay.sidebar{transition:transform 500ms ease}html.honeywell-dark-theme .ui.visible.left.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html.honeywell-dark-theme .ui.visible.right.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html.honeywell-dark-theme .ui.visible.top.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html.honeywell-dark-theme .ui.visible.bottom.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html.honeywell-dark-theme .ui.visible.overlay.sidebar ~ .fixed,html.honeywell-dark-theme .ui.visible.overlay.sidebar ~ .pusher{transform:none !important}html.honeywell-dark-theme .ui.push.sidebar{transition:transform 500ms ease;z-index:102}html.honeywell-dark-theme .ui.left.push.sidebar{transform:translate3d(-100%, 0, 0)}html.honeywell-dark-theme .ui.right.push.sidebar{transform:translate3d(100%, 0, 0)}html.honeywell-dark-theme .ui.top.push.sidebar{transform:translate3d(0%, -100%, 0)}html.honeywell-dark-theme .ui.bottom.push.sidebar{transform:translate3d(0%, 100%, 0)}html.honeywell-dark-theme .ui.visible.push.sidebar{transform:translate3d(0%, 0, 0)}html.honeywell-dark-theme .ui.uncover.sidebar{transform:translate3d(0, 0, 0);z-index:1}html.honeywell-dark-theme .ui.visible.uncover.sidebar{transform:translate3d(0, 0, 0);transition:transform 500ms ease}html.honeywell-dark-theme .ui.slide.along.sidebar{z-index:1}html.honeywell-dark-theme .ui.left.slide.along.sidebar{transform:translate3d(-50%, 0, 0)}html.honeywell-dark-theme .ui.right.slide.along.sidebar{transform:translate3d(50%, 0, 0)}html.honeywell-dark-theme .ui.top.slide.along.sidebar{transform:translate3d(0, -50%, 0)}html.honeywell-dark-theme .ui.bottom.slide.along.sidebar{transform:translate3d(0%, 50%, 0)}html.honeywell-dark-theme .ui.animating.slide.along.sidebar{transition:transform 500ms ease}html.honeywell-dark-theme .ui.visible.slide.along.sidebar{transform:translate3d(0%, 0, 0)}html.honeywell-dark-theme .ui.slide.out.sidebar{z-index:1}html.honeywell-dark-theme .ui.left.slide.out.sidebar{transform:translate3d(50%, 0, 0)}html.honeywell-dark-theme .ui.right.slide.out.sidebar{transform:translate3d(-50%, 0, 0)}html.honeywell-dark-theme .ui.top.slide.out.sidebar{transform:translate3d(0%, 50%, 0)}html.honeywell-dark-theme .ui.bottom.slide.out.sidebar{transform:translate3d(0%, -50%, 0)}html.honeywell-dark-theme .ui.animating.slide.out.sidebar{transition:transform 500ms ease}html.honeywell-dark-theme .ui.visible.slide.out.sidebar{transform:translate3d(0%, 0, 0)}html.honeywell-dark-theme .accordion.ui.fluid{border:#606060 .0625rem solid;border-top:none}html.honeywell-dark-theme .accordion.ui.fluid .title{border-top:#606060 .0625rem solid;background:#303030;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;padding-top:1rem;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;letter-spacing:0.25px;font-weight:600;color:#e0e0e0}html.honeywell-dark-theme .accordion.ui.fluid .title .root-icon{float:right;padding:.125rem}html.honeywell-dark-theme .accordion.ui.fluid .title .root-icon.left{float:left;padding-right:1rem}html.honeywell-dark-theme .accordion.ui.fluid .title.disabled{cursor:not-allowed;color:#606060}html.honeywell-dark-theme .accordion.ui.fluid .title.disabled .root-icon{color:#b0b0b0}html.honeywell-dark-theme .accordion.ui.fluid>:first-child{border-top:1px solid transparent}html.honeywell-dark-theme .accordion.ui.fluid .active.content{border-top:none;background:#303030;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0}html.honeywell-dark-theme .ui.accordion:not(.styled) .title ~ .content:not(.ui){padding-left:1rem;padding-right:1rem;padding-bottom:1rem !important;padding-top:0px}html.honeywell-dark-theme .ui.label.badge{color:#000 !important;font-size:.75rem;line-height:1rem;font-weight:600;min-height:1rem;min-width:1rem;padding:0 .25rem !important;vertical-align:middle}html.honeywell-dark-theme .ui.label.badge.circle-padding{padding:0 .125rem !important}html.honeywell-dark-theme .ui.label.badge.empty{width:.5rem !important;height:.5rem !important;padding:0 !important;min-width:0 !important;min-height:0 !important}html.honeywell-dark-theme .ui.label.badge.red{background-color:#F15A4F !important;border-color:#F15A4F !important;color:#fff !important}html.honeywell-dark-theme .ui.label.badge.yellow{background-color:#ffC627 !important;border-color:#ffC627 !important}html.honeywell-dark-theme .ui.label.badge.orange{background-color:#f37021 !important;border-color:#f37021 !important}html.honeywell-dark-theme .ui.label.badge.green{background-color:#7eb338 !important;border-color:#7eb338 !important}html.honeywell-dark-theme .ui.label.badge.blue{background-color:#1792e5 !important;border-color:#1792e5 !important;color:#fff !important}html.honeywell-dark-theme .ui.label.badge.grey{background-color:gray !important;border-color:gray !important;color:#fff !important}html.honeywell-dark-theme .badged-icon{position:relative;display:inline-block}html.honeywell-dark-theme .badged-icon .ui.label{position:absolute;z-index:100;bottom:50%;right:-25%;margin:0}html.honeywell-dark-theme .badged-icon .ui.label.empty{left:50%;top:-0em;width:.5rem;height:.5rem}html.honeywell-dark-theme .below-text{min-height:1.25rem;margin:.125rem 0}html.honeywell-dark-theme .below-text .ui.error-message{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#F15A4F;font-weight:600;display:block}html.honeywell-dark-theme .below-text .ui.helper-message{display:block;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#a0a0a0}html.honeywell-dark-theme .ui.breadcrumb{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#a0a0a0;display:flex;align-items:center;margin-top:.5rem !important;margin-bottom:.5rem !important;margin-left:1rem;color:#a0a0a0}html.honeywell-dark-theme .ui.breadcrumb .divider{margin:0 .25rem;display:flex;align-items:center}html.honeywell-dark-theme .ui.breadcrumb .divider .h-icon{font-size:.5rem;color:#fff}html.honeywell-dark-theme .ui.breadcrumb .divider:last-of-type{display:none}html.honeywell-dark-theme .ui.breadcrumb .section,html.honeywell-dark-theme .ui.breadcrumb .section:hover{color:#e0e0e0}html.honeywell-dark-theme .ui.breadcrumb .section{display:flex;align-items:center}html.honeywell-dark-theme .ui.breadcrumb a.section{cursor:pointer}html.honeywell-dark-theme .ui.button{cursor:pointer;outline:none;border-radius:0;transition:border-color 0.5s ease, background 0.5s ease, color 0.5s ease;box-sizing:border-box;text-transform:uppercase;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:600;padding-left:2.4375rem;padding-right:2.4375rem;padding-top:.4375rem;padding-bottom:.4375rem;margin:0;font-size:.875rem;letter-spacing:0.5px;line-height:1.375rem}html.honeywell-dark-theme .ui.button>.button-content{position:relative !important}html.honeywell-dark-theme .ui.button.no-transform{text-transform:none}html.honeywell-dark-theme .ui.button.disabled{opacity:1 !important}html.honeywell-dark-theme .ui.button.loading{position:relative;cursor:default;text-shadow:none !important;color:transparent !important;opacity:1;pointer-events:auto;transition:all 0s linear, opacity 0.1s ease}html.honeywell-dark-theme .ui.button.loading:before{position:absolute;content:"";top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.15)}html.honeywell-dark-theme .ui.button.loading:after{position:absolute;content:"";top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#ffffff transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}html.honeywell-dark-theme .ui.button.loading.icon .icon{background-color:transparent;box-shadow:none}@keyframes button-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme .ui.button.loading .basic:not(.inverted):before{border-color:rgba(0,0,0,0.1)}html.honeywell-dark-theme .ui.button.loading .basic:not(.inverted):after{border-top-color:#767676}html.honeywell-dark-theme .ui.button.primary{border:.0625rem solid #45A7EA;background-color:#45A7EA;color:#000}html.honeywell-dark-theme .ui.button.primary:focus{border:.0625rem solid #45A7EA;background:#45A7EA;color:#000}html.honeywell-dark-theme .ui.button.primary:hover{background-color:#5DB2EC;border-color:#5DB2EC}html.honeywell-dark-theme .ui.button.primary.disabled{background-color:#505050;border-color:#505050;color:#000}html.honeywell-dark-theme .ui.button.primary:active{background-color:#8BC8F2;border-color:#8BC8F2}html.honeywell-dark-theme .ui.button.secondary{border:.0625rem solid #45A7EA;color:#45A7EA;background-color:transparent}html.honeywell-dark-theme .ui.button.secondary:focus{border:.0625rem solid #45A7EA;color:#45A7EA;background-color:transparent}html.honeywell-dark-theme .ui.button.secondary:hover{color:#5DB2EC;border-color:#5DB2EC;background-color:transparent}html.honeywell-dark-theme .ui.button.secondary.disabled{background-color:#505050;border-color:#505050;color:#000}html.honeywell-dark-theme .ui.button.secondary:active{color:#8BC8F2;border-color:#8BC8F2;background-color:transparent}html.honeywell-dark-theme .ui.button.link{border:none;color:#45A7EA;background-color:transparent;text-transform:none;padding:0}html.honeywell-dark-theme .ui.button.link:hover{background-color:transparent;color:#5DB2EC}html.honeywell-dark-theme .ui.button.link.disabled{background-color:transparent;color:#606060}html.honeywell-dark-theme .ui.button.link:active{background-color:transparent;color:#b0b0b0}html.honeywell-dark-theme .ui.button.inline{border:.0625rem solid #e0e0e0;color:#000;background-color:#e0e0e0}html.honeywell-dark-theme .ui.button.inline:focus{border:.0625rem solid #e0e0e0;color:#000;background-color:#e0e0e0}html.honeywell-dark-theme .ui.button.inline:hover{color:#000;border-color:#d0d0d0;background-color:#d0d0d0}html.honeywell-dark-theme .ui.button.inline.disabled{background-color:#505050;border-color:#505050;color:#000}html.honeywell-dark-theme .ui.button.inline:active{background-color:#b0b0b0;border-color:#b0b0b0}html.honeywell-dark-theme .ui.button.inline-secondary{border:.0625rem solid #e0e0e0;color:#e0e0e0;background-color:transparent}html.honeywell-dark-theme .ui.button.inline-secondary:hover{color:#d0d0d0;border-color:#d0d0d0;background-color:transparent}html.honeywell-dark-theme .ui.button.inline-secondary.disabled{background-color:#505050;border-color:#505050;color:#000}html.honeywell-dark-theme .ui.button.inline-secondary:active{color:#b0b0b0;border-color:#b0b0b0;background-color:transparent}html.honeywell-dark-theme .ui.button.small{padding:0 .875rem;height:1.875rem}html.honeywell-dark-theme .ui.button.large{padding:30px 72px;font-size:1em}html.honeywell-dark-theme .ui.button .h-icon{opacity:1 !important;vertical-align:top;font-size:.875rem;line-height:.875rem;padding:.125rem}html.honeywell-dark-theme .ui.button .h-icon.left{padding-right:.25rem}html.honeywell-dark-theme .ui.button .h-icon.right{padding-left:.25rem}html.honeywell-dark-theme .ui.button+.ui.button{margin-left:1rem}html.honeywell-dark-theme .ui.buttons .ui.button{margin-left:0 !important;border-radius:0}html.honeywell-dark-theme .ui.buttons .ui.button:not(:last-child){border-right:0}html.honeywell-dark-theme .ui.buttons .ui.button:first-child{border-left:.0625rem solid #45A7EA}html.honeywell-dark-theme .ui.card{background-color:#303030;border:none !important;border-radius:0px !important;box-shadow:none;width:100%;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:flex;flex-direction:column}html.honeywell-dark-theme .ui.card .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;padding:.75rem 1rem 0;display:flex;align-items:center;justify-content:space-between;flex-grow:0}html.honeywell-dark-theme .ui.card .header .h-icon{color:#fff;margin:0}html.honeywell-dark-theme .ui.card .header>:not(.header){align-items:center;display:flex;justify-content:flex-start}html.honeywell-dark-theme .ui.card .meta{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#a0a0a0;padding:0 1rem 0}html.honeywell-dark-theme .ui.card .content{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;border-top:none !important;flex-grow:1;padding:1rem 1rem 1rem;position:relative}html.honeywell-dark-theme .ui.card .header+.content,html.honeywell-dark-theme .ui.card .meta+.content{padding:.5rem 1rem 1rem}html.honeywell-dark-theme .ui.card .content.footer{border-top:#606060 .0625rem solid !important;margin:0 1rem;flex-grow:0;padding:0;height:3rem;display:flex;justify-content:flex-end;align-items:center}html.honeywell-dark-theme .ui.card .content.footer .h-icon{color:#fff;margin:0 0 0 .75rem;padding:0.25rem}html.honeywell-dark-theme .ui.card .content.footer.align-left{justify-content:flex-start !important}html.honeywell-dark-theme .ui.card.raised{box-shadow:0 1px 2px rgba(0,0,0,0.5) !important}html.honeywell-dark-theme .ui.carousel{width:100%}html.honeywell-dark-theme .ui.carousel .carousel-core{position:relative;overflow:hidden;height:100%}html.honeywell-dark-theme .ui.carousel .carousel-prev,html.honeywell-dark-theme .ui.carousel .carousel-next{height:59px;width:59px;position:absolute;top:50%;transform:translateY(-50%);z-index:5;border-radius:59px;text-align:center;transition:background 500ms ease-in, color 500ms ease-in;cursor:pointer}html.honeywell-dark-theme .ui.carousel .carousel-prev .arrow,html.honeywell-dark-theme .ui.carousel .carousel-next .arrow{font-size:1.5rem;line-height:1.5rem;position:relative;top:25%}html.honeywell-dark-theme .ui.carousel .carousel-prev{left:15px}html.honeywell-dark-theme .ui.carousel .carousel-prev .arrow{right:2px}html.honeywell-dark-theme .ui.carousel .carousel-next{right:15px}html.honeywell-dark-theme .ui.carousel .carousel-next .arrow{left:2px}html.honeywell-dark-theme .ui.carousel .carousel-item{position:absolute;width:100%;height:100%;overflow:hidden;background-size:cover;z-index:1;opacity:0;transition-property:opacity;transition-duration:500ms;transition-timing-function:ease-in}html.honeywell-dark-theme .ui.carousel .carousel-item.current{z-index:2;opacity:1;display:block}html.honeywell-dark-theme .ui.carousel .carousel-item .carousel-content{position:absolute;left:90px;padding:1rem;width:40%;top:50%;transform:translateY(-50%);max-height:100%;text-align:left;color:#fff;font-weight:300 !important}html.honeywell-dark-theme .ui.carousel .slide-markers{position:absolute;left:50%;bottom:15px;list-style:none;z-index:5;transform:translateX(-50%);margin:0;padding:0}html.honeywell-dark-theme .ui.carousel .slide-markers .slide-marker-item{display:inline-block;border-radius:15px;border:2px solid;margin-left:15px;height:15px;width:15px;border:1px solid;cursor:pointer}html.honeywell-dark-theme .ui.carousel .slide-markers .slide-marker-item:hover,html.honeywell-dark-theme .ui.carousel .slide-markers .slide-marker-item.active{border-color:#fff;background:#fff}html.honeywell-dark-theme .ui.carousel .carousel-core.light .carousel-prev,html.honeywell-dark-theme .ui.carousel .carousel-core.light .carousel-next{background-color:#A0A0A0;color:#fff}html.honeywell-dark-theme .ui.carousel .carousel-core.light .carousel-content{background-color:rgba(48,48,48,0.6)}html.honeywell-dark-theme .ui.carousel .carousel-core.light .slide-marker-item{background-color:#D0D0D0;border-color:#fff}html.honeywell-dark-theme .ui.carousel .carousel-core.light .slide-marker-item.active{background-color:#4A4A4A}html.honeywell-dark-theme .ui.carousel .carousel-core.dark .carousel-prev,html.honeywell-dark-theme .ui.carousel .carousel-core.dark .carousel-next{background-color:#D8D8D8;color:#4A4A4A}html.honeywell-dark-theme .ui.carousel .carousel-core.dark .slide-marker-item{background-color:#C0C0C0;border-color:#000}html.honeywell-dark-theme .ui.carousel .carousel-core.dark .slide-marker-item.active{background-color:#fff}html.honeywell-dark-theme .ui.carousel .slide{width:100%;height:100%;text-align:center;overflow:hidden;background-size:cover}html.honeywell-dark-theme .ui.carousel .slide .call-to-action{font-size:1.625rem;font-weight:300;line-height:2.25rem;margin-bottom:.25rem}html.honeywell-dark-theme .ui.carousel .slide .subtitle{font-size:1rem;line-height:1rem;margin-bottom:.75rem}html.honeywell-dark-theme .ui.carousel .slide .content{font-size:.75rem;font-weight:300;line-height:1rem;margin-bottom:.75rem}html.honeywell-dark-theme .ui.checkbox{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;min-height:1rem;margin:0px .75rem .75rem 0px}html.honeywell-dark-theme .ui.checkbox .box,html.honeywell-dark-theme .ui.checkbox label{cursor:auto;line-height:1rem;padding-left:1.5rem}html.honeywell-dark-theme .ui.checkbox .box:before,html.honeywell-dark-theme .ui.checkbox label:before{width:1rem;height:1rem;content:"";background:#303030;border-radius:0;border:.0625rem solid #707070}html.honeywell-dark-theme .ui.checkbox .box:after,html.honeywell-dark-theme .ui.checkbox label:after{width:1rem;height:1rem}html.honeywell-dark-theme .ui.checkbox input ~ label,html.honeywell-dark-theme .ui.checkbox input ~ label:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;line-height:1rem}html.honeywell-dark-theme .ui.checkbox .box:hover::before,html.honeywell-dark-theme .ui.checkbox label:hover::before{background:#303030;border-color:#707070}html.honeywell-dark-theme .ui.checkbox input:focus ~ .box:before,html.honeywell-dark-theme .ui.checkbox input:focus ~ label:before{background:#303030;border-color:#707070}html.honeywell-dark-theme .ui.checkbox input:focus ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;line-height:1rem}html.honeywell-dark-theme .ui.checkbox input:checked ~ .box:after,html.honeywell-dark-theme .ui.checkbox input:checked ~ label:after{opacity:1;font-family:'Honeywell-Icons' !important;content:"\EA56";color:#fff !important;background:#45A7EA;transform:scale(1);padding-top:0;font-size:0.74em}html.honeywell-dark-theme .ui.checkbox input:checked ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;line-height:1rem}html.honeywell-dark-theme .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ .box:before,html.honeywell-dark-theme .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label:before,html.honeywell-dark-theme .ui.checkbox input:checked:focus ~ .box:before,html.honeywell-dark-theme .ui.checkbox input:checked:focus ~ label:before{background:#303030;border-color:#707070}html.honeywell-dark-theme .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label,html.honeywell-dark-theme .ui.checkbox input:checked:focus ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;line-height:1rem}html.honeywell-dark-theme .ui.disabled.checkbox .box:after,html.honeywell-dark-theme .ui.disabled.checkbox label,html.honeywell-dark-theme .ui.checkbox input[disabled] ~ .box:after,html.honeywell-dark-theme .ui.checkbox input[disabled] ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#606060 !important;opacity:1.0 !important;cursor:not-allowed !important;line-height:1rem !important}html.honeywell-dark-theme .ui.disabled.checkbox label:hover,html.honeywell-dark-theme .ui.checkbox input[disabled] ~ label:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#606060;line-height:1rem}html.honeywell-dark-theme .ui.disabled.checkbox label:before{background-color:#505050 !important;border:.0625rem solid #b0b0b0}html.honeywell-dark-theme .ui.disabled.checkbox label:after{background:#a0a0a0 !important}html.honeywell-dark-theme .ui.checkbox.indeterminate input:not([type=radio]):indeterminate ~ .box:before,html.honeywell-dark-theme .ui.checkbox.indeterminate input:not([type=radio]):indeterminate ~ label:before{background:#303030;border-color:#707070}html.honeywell-dark-theme .ui.checkbox.indeterminate input:not([type="radio"]) ~ .box:after,html.honeywell-dark-theme .ui.checkbox.indeterminate input:not([type="radio"]) ~ label:after{content:"";width:0px;height:0px;border-color:#707070;border-bottom:1rem solid #45A7EA;border-left:1rem solid transparent}html.honeywell-dark-theme .ui.toggle.checkbox input ~ label{padding-top:.125rem !important;padding-left:2.5rem;color:#e0e0e0 !important}html.honeywell-dark-theme .ui.toggle.checkbox input{height:1rem !important}html.honeywell-dark-theme .ui.toggle.checkbox input:focus ~ .label:after,html.honeywell-dark-theme .ui.toggle.checkbox input ~ label:after{top:.125rem;width:1rem !important;height:1rem !important;background-color:#fff !important;border:1px solid #b0b0b0 !important;border:0 !important;top:.375rem !important;left:2px !important;width:calc(.75rem + .125rem) !important;height:calc(.75rem + .125rem) !important;top:0.25rem !important;width:.75rem !important;height:.75rem !important}html.honeywell-dark-theme .ui.toggle.checkbox input:focus ~ .label:before,html.honeywell-dark-theme .ui.toggle.checkbox input ~ label:before{top:.125rem;width:2rem !important;height:1rem !important;background-color:#e0e0e0 !important;border-radius:2rem;border:1px solid #b0b0b0 !important;background-color:#404040 !important;border-width:2px !important}html.honeywell-dark-theme .ui.toggle.checkbox.checked label{color:#e0e0e0 !important}html.honeywell-dark-theme .ui.toggle.checkbox.checked input:checked ~ label{color:#e0e0e0 !important}html.honeywell-dark-theme .ui.toggle.checkbox.checked input:checked:focus ~ .label:before,html.honeywell-dark-theme .ui.toggle.checkbox.checked input:checked ~ label:before{background-color:#45A7EA !important;border:1px solid #45A7EA !important;background-color:#1274B7 !important;border:1px solid #1274B7 !important}html.honeywell-dark-theme .ui.toggle.checkbox.checked input:focus ~ .label:after,html.honeywell-dark-theme .ui.toggle.checkbox.checked input ~ label:after{left:1.062rem !important;border:1px solid #45A7EA !important;border:0 !important}html.honeywell-dark-theme .ui.toggle.checkbox.disabled input ~ label{color:#606060 !important}html.honeywell-dark-theme .ui.toggle.checkbox.disabled input:checked ~ label{color:#606060 !important}html.honeywell-dark-theme .ui.color-picker{background:#303030;box-shadow:0 12px 24px 0 rgba(0,0,0,0.5);padding:1rem;position:relative;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;width:11.625rem}html.honeywell-dark-theme .ui.color-picker .heading{padding-bottom:.5rem}html.honeywell-dark-theme .ui.color-picker .heading,html.honeywell-dark-theme .ui.color-picker .color-type-input-label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#a0a0a0;font-weight:600;text-transform:uppercase}html.honeywell-dark-theme .ui.color-picker .slider{height:.75rem;width:100%;position:relative;margin:.625rem 0;background:#fff}html.honeywell-dark-theme .ui.color-picker .slider:last-child{margin-bottom:.5rem}html.honeywell-dark-theme .ui.color-picker .circle-pointer{width:1rem;height:1rem;background:#303030;box-shadow:0 4px 8px 0 rgba(0,0,0,0.5);border-radius:1rem;position:absolute;top:-.125rem;left:-.5rem;border:#606060 .0625rem solid}html.honeywell-dark-theme .ui.color-picker .saturation-block{position:relative;width:8rem;padding-top:49%;display:inline-block}html.honeywell-dark-theme .ui.color-picker .current-selection-block{display:inline-block;margin-left:.5rem;width:1rem;height:4.72rem;position:relative;background:#fff}html.honeywell-dark-theme .ui.color-picker .current-selection-block .current-selection{width:1rem;height:4.72rem;position:absolute;z-index:5}html.honeywell-dark-theme .ui.color-picker .advanced-toggle{padding:.5rem 0;display:flex;justify-content:space-between;cursor:pointer}html.honeywell-dark-theme .ui.color-picker .advanced-toggle .heading{display:inline-block;padding-bottom:0;line-height:1.5rem}html.honeywell-dark-theme .ui.color-picker .advanced-toggle .toggle-btn{display:inline-block;align-self:center;padding-right:.125rem}html.honeywell-dark-theme .ui.color-picker .advanced-toggle .toggle-btn .toggle-icon{padding-bottom:.125rem}html.honeywell-dark-theme .ui.color-picker .advanced-toggle .toggle-icon{color:#fff;transition:color 0.1s linear;cursor:pointer}html.honeywell-dark-theme .ui.color-picker .advanced-toggle .toggle-icon:hover{color:#d0d0d0}html.honeywell-dark-theme .ui.color-picker .advanced-toggle .toggle-icon:active{color:#b0b0b0}html.honeywell-dark-theme .ui.color-picker .advanced-toggle .toggle-icon.disabled{color:#b0b0b0}html.honeywell-dark-theme .ui.color-picker .color-input-wrap{width:100%}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input,html.honeywell-dark-theme .ui.color-picker .color-input-wrap .multi-color-type-input{color:#e0e0e0;background-color:#303030;padding:.25rem;border:#606060 .0625rem solid;transition:#707070 150ms ease-in;outline:none;font-size:.75rem !important;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;width:100%}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input::-webkit-inner-spin-button,html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input::-webkit-outer-spin-button,html.honeywell-dark-theme .ui.color-picker .color-input-wrap .multi-color-type-input::-webkit-inner-spin-button,html.honeywell-dark-theme .ui.color-picker .color-input-wrap .multi-color-type-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input:focus,html.honeywell-dark-theme .ui.color-picker .color-input-wrap .multi-color-type-input:focus{border-color:#45A7EA}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .multi-color-type-input{margin-left:.125rem;font-size:.75rem !important;padding-right:.125rem}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .multi-color-type-input:first-child{margin-left:0}html.honeywell-dark-theme .ui.color-picker .button-row{border-top:#606060 .0625rem solid;box-sizing:border-box;padding-top:1rem;display:flex;justify-content:space-between;padding-left:-.125rem;padding-right:-.125rem}html.honeywell-dark-theme .ui.color-picker .button-row .action-btn+.action-btn{margin-left:.5rem}html.honeywell-dark-theme .ui.color-picker .button-row .action-btn{flex:1 1 auto;text-align:center;padding-left:0;padding-right:0;margin-left:.125rem;margin-right:.125rem}html.honeywell-dark-theme .ui.color-picker .color-input-wrap{display:flex;justify-content:space-between;padding-bottom:.5rem}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-icon{display:block;margin-bottom:.125rem;color:#fff;transition:color 0.1s linear;cursor:pointer;padding:.125rem}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-icon:hover{color:#d0d0d0}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-icon:active{color:#b0b0b0}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-icon.disabled{color:#b0b0b0}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-btn{display:flex;align-items:flex-end;cursor:pointer}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-btn:hover{opacity:.8}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-btn.prev-btn{margin-right:0px}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-btn.prev-btn{padding-right:.25rem !important}}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-nav-btn.next-btn{margin-left:0px}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .label-row .color-type-input-label:last-child{margin:0}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input-wrap{display:flex;flex-direction:column;justify-content:space-between;width:100%}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input-wrap .label-row{display:flex;flex-grow:1}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input-wrap .label-row .color-type-input-label{position:relative;display:flex;flex-grow:1;padding-left:0 !important;padding-right:0 !important}html.honeywell-dark-theme .ui.color-picker .color-input-wrap .color-type-input-wrap .label-row .multi-color-type-input{display:flex;position:relative;flex-grow:1;padding-left:.125rem;padding-right:0}html.honeywell-dark-theme .ui.color-picker .swatch-wrapper{border-bottom:#606060 .0625rem solid}html.honeywell-dark-theme .ui.color-picker .swatch-item{width:1.5rem;height:1.5rem;padding:.25rem;border:1px solid transparent;cursor:pointer;display:inline-block;margin-right:.125rem}html.honeywell-dark-theme .ui.color-picker .swatch-item:hover{border-color:#707070}html.honeywell-dark-theme .ui.color-picker .swatch-item.active{border-color:#45A7EA}html.honeywell-dark-theme .ui.color-picker .swatch-item .swatch{border:1px solid #707070;width:100%;height:100%}html.honeywell-dark-theme .ui.color-picker .swatch-row{margin-bottom:.125rem;height:1.5rem}html.honeywell-dark-theme .ui.color-picker .swatch-row .swatch-item:last-child{margin-right:0}html.honeywell-dark-theme .ui.color-picker .swatch-row:last-child{margin-bottom:.25rem}html.honeywell-dark-theme .ui.date-picker-calendar{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:inline-block;background:#303030;font-size:1.3rem;text-align:center;display:flex}html.honeywell-dark-theme .ui.date-picker-calendar .day{width:2rem;height:2rem;cursor:pointer;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#a0a0a0;border:1px solid transparent;transition:background .1s;display:flex;justify-content:center;align-items:center}html.honeywell-dark-theme .ui.date-picker-calendar .week>.day:not(.selected):not(.different-month):not(.disabled){font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0}html.honeywell-dark-theme .ui.date-picker-calendar .week>.day:not(.selected):not(.different-month):not(.disabled):hover{background:#404040 !important;border:1px solid #404040}html.honeywell-dark-theme .ui.date-picker-calendar .week>.day:not(.selected):not(.different-month):not(.disabled).today{border:1px solid #707070}html.honeywell-dark-theme .ui.date-picker-calendar .week>.day.selected:not(.different-month){background:#45A7EA;color:#fff}html.honeywell-dark-theme .ui.date-picker-calendar .week>.day.disabled{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#606060;cursor:default}html.honeywell-dark-theme .ui.date-picker-calendar .day-names{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#606060;cursor:default}html.honeywell-dark-theme .ui.date-picker-calendar .day-names .day{cursor:default}html.honeywell-dark-theme .ui.date-picker-calendar.highlight-weekends .week .day:not(.selected):first-child,html.honeywell-dark-theme .ui.date-picker-calendar.highlight-weekends .week .day:not(.selected):last-child,html.honeywell-dark-theme .ui.date-picker-calendar.highlight-weekends .day-names .day:not(.selected):first-child,html.honeywell-dark-theme .ui.date-picker-calendar.highlight-weekends .day-names .day:not(.selected):last-child{background:#202020}html.honeywell-dark-theme .ui.date-picker-calendar.range-select .week>.day.selected:not(.start):not(.different-month):not(.end){background:#404040;color:#e0e0e0}html.honeywell-dark-theme .ui.date-picker-calendar .month-wrap+.month-wrap{margin-left:1rem}html.honeywell-dark-theme .ui.date-picker-input{display:inline-block;position:relative}html.honeywell-dark-theme .ui.date-picker-input .vertical-center{display:flex;justify-content:center;align-items:center}html.honeywell-dark-theme .ui.date-picker-input .cal-row{display:flex;width:100%}html.honeywell-dark-theme .ui.date-picker-input .datetime-input-wrap{display:flex;align-items:flex-end}html.honeywell-dark-theme .ui.date-picker-input .datetime-input-wrap .picker-input.focused .input-box{border-color:#45A7EA}html.honeywell-dark-theme .ui.date-picker-input .datetime-input-wrap .picker-input.error+.picker-input .input-box{border-color:#F15A4F}html.honeywell-dark-theme .ui.date-picker-input .header{cursor:default;font-size:.75rem;display:block;user-select:none;padding-bottom:.75rem}html.honeywell-dark-theme .ui.date-picker-input .header .month-display{font-weight:600;align-items:center;justify-content:center}html.honeywell-dark-theme .ui.date-picker-input .header .month-label{flex:1 1 auto;display:block;height:1rem;line-height:1rem;justify-content:center;text-align:center}html.honeywell-dark-theme .ui.date-picker-input .header .month-label+.month-label{margin-left:1rem}html.honeywell-dark-theme .ui.date-picker-input .header .cal-nav-btn{cursor:pointer;display:flex;font-size:1rem;color:#fff;transition:color 0.1s linear;cursor:pointer}html.honeywell-dark-theme .ui.date-picker-input .header .cal-nav-btn:hover{color:#d0d0d0}html.honeywell-dark-theme .ui.date-picker-input .header .cal-nav-btn:active{color:#b0b0b0}html.honeywell-dark-theme .ui.date-picker-input .header .cal-nav-btn.disabled{color:#b0b0b0}html.honeywell-dark-theme .ui.date-picker-input .header .cal-nav-btn .cal-nav-icon{font-size:1em}html.honeywell-dark-theme .ui.date-picker-input .header .cal-nav-btn .cal-nav-icon:before{top:0}html.honeywell-dark-theme .ui.date-picker-input .overlay-position-wrap{z-index:4;position:relative;display:inline-block}html.honeywell-dark-theme .ui.date-picker-input .overlay-position-wrap .picker-input.datetime-time .input-wrap .input-box{border-left:none}html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay{position:absolute;box-shadow:0 4px 8px 0 rgba(0,0,0,0.5);z-index:500;bottom:calc(1.25rem + .25rem);transform:translateY(calc(100% + .25rem));display:flex}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay{transform:translateY(100%);box-shadow:none}}html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay.unreserved{bottom:0}html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay .calendar-overlay-wrap{display:flex;flex-direction:column;padding:1rem;background:#303030}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay .calendar-overlay-wrap{box-shadow:0 4px 8px 0 rgba(0,0,0,0.5);border:#606060 .0625rem solid;border-right:none}}html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay .time-wrap{border-left:#606060 .0625rem solid;max-height:376px;width:5rem;font-size:.75rem;display:flex;flex:1 0 auto;flex-direction:column;background:#303030;overflow-y:scroll;max-height:294px;width:6.75rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay .time-wrap{box-shadow:0 4px 8px 0 rgba(0,0,0,0.5);border:#606060 .0625rem solid;font-size:.5rem;height:294px;font-size:.75rem !important}}html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay .time-wrap .time-option{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;padding:.75rem;width:100%}html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay .time-wrap .time-option:hover{background:#404040}html.honeywell-dark-theme .ui.date-picker-input .calendar-overlay .time-wrap .time-option.selected{background-color:#45A7EA;color:#fff}html.honeywell-dark-theme .ui.date-picker-input .date-picker-footer{padding-top:1rem;display:flex;justify-content:center;align-items:center}html.honeywell-dark-theme .ui.date-picker-input .today-btn{color:#45A7EA;font-size:.875rem;font-weight:600;cursor:pointer}html.honeywell-dark-theme .ui.date-picker-input.is-range .date-picker-footer{justify-content:space-between}html.honeywell-dark-theme .ui.date-picker-input.is-range .picker-input,html.honeywell-dark-theme .ui.date-picker-input.is-range .picker-input .input-box{min-width:300px}html.honeywell-dark-theme .ui.date-picker-input.compact .date-picker-footer{justify-content:end}html.honeywell-dark-theme .ui.date-picker-input.fluid,html.honeywell-dark-theme .ui.date-picker-input.fluid .overlay-position-wrap{display:block}html.honeywell-dark-theme .ui.date-picker-input.fluid .datetime-date,html.honeywell-dark-theme .ui.date-picker-input.fluid .overlay-position-wrap .datetime-date{width:100%}html.honeywell-dark-theme .ui.date-picker-input.fluid .datetime-time,html.honeywell-dark-theme .ui.date-picker-input.fluid .overlay-position-wrap .datetime-time{width:100%}html.honeywell-dark-theme .ui.date-picker-input.open{z-index:30}html.honeywell-dark-theme .ui.date-picker-input.open-up .calendar-overlay{transform:translateY(0%);bottom:100%}html.honeywell-dark-theme .ui.divider{color:#e0e0e0}html.honeywell-dark-theme .ui.horizontal.divider:before,html.honeywell-dark-theme .ui.horizontal.divider:after{background-size:auto 1px;background-image:linear-gradient(#d0d0d0, #d0d0d0)}html.honeywell-dark-theme .ui.horizontal.divider{white-space:normal}html.honeywell-dark-theme .ui.vertical.divider{position:relative;line-height:1rem;text-align:center;height:50%;transform:none;margin:1rem;left:auto}html.honeywell-dark-theme .ui.vertical.divider:after,html.honeywell-dark-theme .ui.vertical.divider:before{border-left:1px solid #d0d0d0;height:calc(100% - 0.3rem)}html.honeywell-dark-theme .ui.vertical.divider:after{bottom:-100%}html.honeywell-dark-theme .nochild-divider{position:relative;display:flex;align-items:stretch;flex-direction:row;margin-left:1rem;margin-right:1rem;height:inherit;width:1px;top:0;bottom:0;background:#d0d0d0}html.honeywell-dark-theme .nochild-divider-fitted{position:relative;display:flex;align-items:stretch;flex-direction:row;margin-left:0.1rem;margin-right:0.1rem;height:inherit;width:1px;top:0;bottom:0;background:#d0d0d0}html.honeywell-dark-theme .nochild-divider-section{position:relative;display:flex;align-items:stretch;flex-direction:row;margin-left:2rem;margin-right:2rem;height:inherit;width:1px;top:0;bottom:0;background:#d0d0d0}html.honeywell-dark-theme .ui.divider:not(.vertical):not(.horizontal){border-top:1px solid #d0d0d0;border-bottom:none}html.honeywell-dark-theme .ui.file-drop{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;position:relative}html.honeywell-dark-theme .ui.file-drop .drop-zone{border:.0625rem dashed #606060;transition:border-color 150ms ease-in;padding:1rem;position:relative;display:flex;justify-content:center;align-items:center;min-height:316px}html.honeywell-dark-theme .ui.file-drop .success-icon{font-size:1.5rem;margin-top:.75rem}html.honeywell-dark-theme .ui.file-drop .drop-display-content{width:100%;text-align:center}html.honeywell-dark-theme .ui.file-drop .drop-zone-msg{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#a0a0a0;margin-bottom:.75rem}html.honeywell-dark-theme .ui.file-drop.populated .drop-zone{border-color:#45A7EA}html.honeywell-dark-theme .ui.file-drop .upload-button{display:inline-block}html.honeywell-dark-theme .ui.file-drop.error .drop-zone{border-color:#F15A4F}html.honeywell-dark-theme .ui.file-drop .error-msg{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#F15A4F;font-weight:600;margin-bottom:.75rem}html.honeywell-dark-theme .ui.file-drop.on-drag .drop-zone{background-color:#45A7EA;border-color:#45A7EA}html.honeywell-dark-theme .ui.file-drop.on-drag .upload-button{border-color:#fff !important;color:#fff !important}html.honeywell-dark-theme .ui.file-drop.on-drag .drop-zone-placeholder,html.honeywell-dark-theme .ui.file-drop.on-drag .drop-zone-msg,html.honeywell-dark-theme .ui.file-drop.on-drag .drop-zone-success-msg{color:#fff !important}html.honeywell-dark-theme .page-footer.ui.menu{margin-top:0;padding:1rem;border-radius:0;box-shadow:none;border:none;background-color:#000;display:flex;justify-content:space-between;flex-wrap:wrap}html.honeywell-dark-theme .page-footer.ui.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#fff;font-weight:400;padding:0 .25rem;color:#fff}html.honeywell-dark-theme .page-footer.ui.menu .item::before{width:0px}html.honeywell-dark-theme .page-footer.ui.menu .item:not(:last-child){border-right:solid 1px #e0e0e0}html.honeywell-dark-theme .page-footer.ui.menu .link{font-weight:600}html.honeywell-dark-theme .page-footer.ui.menu .link:hover{background:#000;color:#fff}html.honeywell-dark-theme .page-footer.ui.menu:after{display:none}html.honeywell-dark-theme .page-footer.ui.menu:not(.vertical)>.menu{flex-wrap:wrap}html.honeywell-dark-theme .page-footer.ui.menu:not(.vertical) .right.item{margin-left:0px !important}@media screen and (max-width: 768px){html.honeywell-dark-theme .page-footer.ui.menu{justify-content:center !important}html.honeywell-dark-theme .page-footer.ui.menu:not(.vertical)>.menu{justify-content:center !important}}html.honeywell-dark-theme .scuf-listitem-wrapper{background-color:#303030;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;position:relative}html.honeywell-dark-theme .scuf-listitem-wrapper .horizontal{display:block;font-size:1em}html.honeywell-dark-theme .scuf-listitem-wrapper .list.bulleted,html.honeywell-dark-theme .scuf-listitem-wrapper .list.ordered{margin-left:0}html.honeywell-dark-theme .scuf-listitem-wrapper .item{display:flex;flex-wrap:nowrap;width:100%;height:100%;padding-top:1rem;padding-bottom:1rem;color:#e0e0e0}html.honeywell-dark-theme .scuf-listitem-wrapper .item .column-flex{display:flex;justify-content:center;flex-direction:column}html.honeywell-dark-theme .scuf-listitem-wrapper .item div.item-image{margin-left:1rem;height:2.5rem;width:2.5rem;min-height:2.5rem;min-width:2.5rem;background-position:center;background-size:contain}html.honeywell-dark-theme .scuf-listitem-wrapper .item .content{margin-left:1rem;flex-grow:1}html.honeywell-dark-theme .scuf-listitem-wrapper .item .content .description{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#a0a0a0;margin-top:.125rem}html.honeywell-dark-theme .scuf-listitem-wrapper .item .time-container{text-align:right;margin-left:0}html.honeywell-dark-theme .scuf-listitem-wrapper .item .action-icon,html.honeywell-dark-theme .scuf-listitem-wrapper .item .time-stamp{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#a0a0a0;margin-top:auto;margin-bottom:auto;margin-left:1rem;margin-right:1rem;text-align:right;white-space:nowrap;display:inline-block}html.honeywell-dark-theme .scuf-listitem-wrapper .item .action-icon{font-size:1rem;cursor:pointer}html.honeywell-dark-theme .scuf-listitem-wrapper .item .descriptive-icon{margin-left:1rem;font-size:2rem;margin-right:0;cursor:default}html.honeywell-dark-theme .scuf-listitem-wrapper .item .header{color:#e0e0e0 !important}html.honeywell-dark-theme .scuf-listitem-wrapper.no-content .time-container{display:flex;justify-content:center;flex-direction:column}html.honeywell-dark-theme .scuf-listitem-wrapper.onclick{cursor:pointer}html.honeywell-dark-theme .scuf-listitem-wrapper+.scuf-listitem-wrapper:after{box-shadow:inset 0px -1px 0px 0px #606060;content:"";position:absolute;height:1px;left:1rem;right:1rem;background:#606060;top:-1px}html.honeywell-dark-theme .interactive+.interactive:after{left:0;right:0}html.honeywell-dark-theme .scuf-list-wrapper .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#e0e0e0}html.honeywell-dark-theme [class~="scuf-grid"],html.honeywell-dark-theme [class*="scuf-grid-"],html.honeywell-dark-theme [class*="scuf-grid_"]{box-sizing:border-box;display:flex;flex-flow:row wrap;margin:0 -.5rem}html.honeywell-dark-theme [class~="col"],html.honeywell-dark-theme [class*="col-"],html.honeywell-dark-theme [class*="col_"]{box-sizing:border-box;padding:0 .5rem 1rem;max-width:100%}html.honeywell-dark-theme [class~="col"],html.honeywell-dark-theme [class*="col_"]{flex:1 1}html.honeywell-dark-theme [class*="col-"]{flex:none}html.honeywell-dark-theme [class~="scuf-grid"][class~="col"],html.honeywell-dark-theme [class~="scuf-grid"][class*="col-"],html.honeywell-dark-theme [class~="scuf-grid"][class*="col_"],html.honeywell-dark-theme [class*="scuf-grid-"][class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="col_"],html.honeywell-dark-theme [class*="scuf-grid_"][class~="col"],html.honeywell-dark-theme [class*="scuf-grid_"][class*="col-"],html.honeywell-dark-theme [class*="scuf-grid_"][class*="col_"]{margin:0;padding:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]{margin:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]>[class*="col-"]{padding:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noWrap"]{flex-wrap:nowrap}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-center"]{justify-content:center}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-right"]{justify-content:flex-end;align-self:flex-end;margin-left:auto}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-top"]{align-items:flex-start}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-middle"]{align-items:center}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-bottom"]{align-items:flex-end}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-reverse"]{flex-direction:row-reverse}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column"]{flex-direction:column}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column"]>[class*="col-"]{flex-basis:auto}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column-reverse"]{flex-direction:column-reverse}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-spaceBetween"]{justify-content:space-between}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-spaceAround"]{justify-content:space-around}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]{align-self:stretch}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"]>*,html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"]>*,html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]>*{height:100%}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class*="col_"]{padding-bottom:0}html.honeywell-dark-theme [class*="col-"][class*="-top"]{align-self:flex-start}html.honeywell-dark-theme [class*="col-"][class*="-middle"]{align-self:center}html.honeywell-dark-theme [class*="col-"][class*="-bottom"]{align-self:flex-end}html.honeywell-dark-theme [class*="col-"][class*="-first"]{order:-1}html.honeywell-dark-theme [class*="col-"][class*="-last"]{order:1}html.honeywell-dark-theme [class*="scuf-grid-1"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-1"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="scuf-grid-2"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-2"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="scuf-grid-3"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-3"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="scuf-grid-4"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-4"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="scuf-grid-5"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-5"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="scuf-grid-6"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-6"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="scuf-grid-7"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-7"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="scuf-grid-8"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-8"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="scuf-grid-9"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-9"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="scuf-grid-10"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-10"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="scuf-grid-11"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-11"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="scuf-grid-12"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-12"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}@media (max-width: 80em){html.honeywell-dark-theme [class*="_lg-1"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_lg-2"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_lg-3"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_lg-4"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_lg-5"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_lg-6"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_lg-7"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_lg-8"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_lg-9"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_lg-10"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_lg-11"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_lg-12"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 64em){html.honeywell-dark-theme [class*="_md-1"]>[class~="col"],html.honeywell-dark-theme [class*="_md-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_md-2"]>[class~="col"],html.honeywell-dark-theme [class*="_md-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_md-3"]>[class~="col"],html.honeywell-dark-theme [class*="_md-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_md-4"]>[class~="col"],html.honeywell-dark-theme [class*="_md-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_md-5"]>[class~="col"],html.honeywell-dark-theme [class*="_md-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_md-6"]>[class~="col"],html.honeywell-dark-theme [class*="_md-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_md-7"]>[class~="col"],html.honeywell-dark-theme [class*="_md-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_md-8"]>[class~="col"],html.honeywell-dark-theme [class*="_md-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_md-9"]>[class~="col"],html.honeywell-dark-theme [class*="_md-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_md-10"]>[class~="col"],html.honeywell-dark-theme [class*="_md-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_md-11"]>[class~="col"],html.honeywell-dark-theme [class*="_md-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_md-12"]>[class~="col"],html.honeywell-dark-theme [class*="_md-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 48em){html.honeywell-dark-theme [class*="_sm-1"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_sm-2"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_sm-3"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_sm-4"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_sm-5"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_sm-6"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_sm-7"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_sm-8"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_sm-9"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_sm-10"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_sm-11"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_sm-12"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 36em){html.honeywell-dark-theme [class*="_xs-1"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_xs-2"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_xs-3"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_xs-4"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_xs-5"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_xs-6"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_xs-7"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_xs-8"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_xs-9"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_xs-10"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_xs-11"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_xs-12"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-11"]{margin-right:91.66667%}@media (max-width: 80em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_lg-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_lg-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_lg-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_lg-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_lg-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_lg-last"]{order:1}}@media (max-width: 64em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_md-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_md-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_md-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_md-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_md-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_md-last"]{order:1}}@media (max-width: 48em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_sm-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_sm-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_sm-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_sm-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_sm-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_sm-last"]{order:1}}@media (max-width: 36em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_xs-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_xs-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_xs-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_xs-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_xs-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_xs-last"]{order:1}}@media (max-width: 80em){html.honeywell-dark-theme [class*="lg-hidden"]{display:none}}@media (max-width: 64em){html.honeywell-dark-theme [class*="md-hidden"]{display:none}}@media (max-width: 48em){html.honeywell-dark-theme [class*="sm-hidden"]{display:none}}@media (max-width: 36em){html.honeywell-dark-theme [class*="xs-hidden"]{display:none}}html.honeywell-dark-theme .ui.scuf-grid{margin:0 1rem}html.honeywell-dark-theme .ui.scuf-grid .grid-row,html.honeywell-dark-theme .ui.scuf-grid .grid-col-12{padding-left:0 !important;padding-right:0 !important}html.honeywell-dark-theme .ui.scuf-grid .media-xs{margin-left:.25rem;margin-right:.25rem}html.honeywell-dark-theme [class~="scuf-grid"],html.honeywell-dark-theme [class*="scuf-grid-"],html.honeywell-dark-theme [class*="scuf-grid_"]{box-sizing:border-box;display:flex;flex-flow:row wrap;margin:0 -.5rem}html.honeywell-dark-theme [class~="col"],html.honeywell-dark-theme [class*="col-"],html.honeywell-dark-theme [class*="col_"]{box-sizing:border-box;padding:0 .5rem 1rem;max-width:100%}html.honeywell-dark-theme [class~="col"],html.honeywell-dark-theme [class*="col_"]{flex:1 1}html.honeywell-dark-theme [class*="col-"]{flex:none}html.honeywell-dark-theme [class~="scuf-grid"][class~="col"],html.honeywell-dark-theme [class~="scuf-grid"][class*="col-"],html.honeywell-dark-theme [class~="scuf-grid"][class*="col_"],html.honeywell-dark-theme [class*="scuf-grid-"][class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="col_"],html.honeywell-dark-theme [class*="scuf-grid_"][class~="col"],html.honeywell-dark-theme [class*="scuf-grid_"][class*="col-"],html.honeywell-dark-theme [class*="scuf-grid_"][class*="col_"]{margin:0;padding:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]{margin:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]>[class*="col-"]{padding:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noWrap"]{flex-wrap:nowrap}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-center"]{justify-content:center}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-right"]{justify-content:flex-end;align-self:flex-end;margin-left:auto}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-top"]{align-items:flex-start}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-middle"]{align-items:center}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-bottom"]{align-items:flex-end}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-reverse"]{flex-direction:row-reverse}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column"]{flex-direction:column}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column"]>[class*="col-"]{flex-basis:auto}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column-reverse"]{flex-direction:column-reverse}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-spaceBetween"]{justify-content:space-between}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-spaceAround"]{justify-content:space-around}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]{align-self:stretch}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"]>*,html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"]>*,html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]>*{height:100%}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class*="col_"]{padding-bottom:0}html.honeywell-dark-theme [class*="col-"][class*="-top"]{align-self:flex-start}html.honeywell-dark-theme [class*="col-"][class*="-middle"]{align-self:center}html.honeywell-dark-theme [class*="col-"][class*="-bottom"]{align-self:flex-end}html.honeywell-dark-theme [class*="col-"][class*="-first"]{order:-1}html.honeywell-dark-theme [class*="col-"][class*="-last"]{order:1}html.honeywell-dark-theme [class*="scuf-grid-1"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-1"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="scuf-grid-2"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-2"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="scuf-grid-3"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-3"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="scuf-grid-4"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-4"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="scuf-grid-5"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-5"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="scuf-grid-6"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-6"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="scuf-grid-7"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-7"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="scuf-grid-8"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-8"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="scuf-grid-9"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-9"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="scuf-grid-10"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-10"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="scuf-grid-11"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-11"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="scuf-grid-12"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-12"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}@media (max-width: 80em){html.honeywell-dark-theme [class*="_lg-1"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_lg-2"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_lg-3"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_lg-4"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_lg-5"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_lg-6"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_lg-7"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_lg-8"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_lg-9"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_lg-10"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_lg-11"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_lg-12"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 64em){html.honeywell-dark-theme [class*="_md-1"]>[class~="col"],html.honeywell-dark-theme [class*="_md-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_md-2"]>[class~="col"],html.honeywell-dark-theme [class*="_md-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_md-3"]>[class~="col"],html.honeywell-dark-theme [class*="_md-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_md-4"]>[class~="col"],html.honeywell-dark-theme [class*="_md-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_md-5"]>[class~="col"],html.honeywell-dark-theme [class*="_md-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_md-6"]>[class~="col"],html.honeywell-dark-theme [class*="_md-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_md-7"]>[class~="col"],html.honeywell-dark-theme [class*="_md-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_md-8"]>[class~="col"],html.honeywell-dark-theme [class*="_md-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_md-9"]>[class~="col"],html.honeywell-dark-theme [class*="_md-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_md-10"]>[class~="col"],html.honeywell-dark-theme [class*="_md-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_md-11"]>[class~="col"],html.honeywell-dark-theme [class*="_md-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_md-12"]>[class~="col"],html.honeywell-dark-theme [class*="_md-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 48em){html.honeywell-dark-theme [class*="_sm-1"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_sm-2"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_sm-3"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_sm-4"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_sm-5"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_sm-6"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_sm-7"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_sm-8"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_sm-9"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_sm-10"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_sm-11"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_sm-12"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 36em){html.honeywell-dark-theme [class*="_xs-1"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_xs-2"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_xs-3"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_xs-4"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_xs-5"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_xs-6"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_xs-7"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_xs-8"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_xs-9"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_xs-10"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_xs-11"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_xs-12"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-11"]{margin-right:91.66667%}@media (max-width: 80em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_lg-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_lg-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_lg-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_lg-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_lg-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_lg-last"]{order:1}}@media (max-width: 64em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_md-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_md-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_md-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_md-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_md-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_md-last"]{order:1}}@media (max-width: 48em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_sm-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_sm-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_sm-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_sm-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_sm-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_sm-last"]{order:1}}@media (max-width: 36em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_xs-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_xs-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_xs-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_xs-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_xs-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_xs-last"]{order:1}}@media (max-width: 80em){html.honeywell-dark-theme [class*="lg-hidden"]{display:none}}@media (max-width: 64em){html.honeywell-dark-theme [class*="md-hidden"]{display:none}}@media (max-width: 48em){html.honeywell-dark-theme [class*="sm-hidden"]{display:none}}@media (max-width: 36em){html.honeywell-dark-theme [class*="xs-hidden"]{display:none}}html.honeywell-dark-theme [class~="scuf-grid"],html.honeywell-dark-theme [class*="scuf-grid-"],html.honeywell-dark-theme [class*="scuf-grid_"]{box-sizing:border-box;display:flex;flex-flow:row wrap;margin:0 -.5rem}html.honeywell-dark-theme [class~="col"],html.honeywell-dark-theme [class*="col-"],html.honeywell-dark-theme [class*="col_"]{box-sizing:border-box;padding:0 .5rem 1rem;max-width:100%}html.honeywell-dark-theme [class~="col"],html.honeywell-dark-theme [class*="col_"]{flex:1 1}html.honeywell-dark-theme [class*="col-"]{flex:none}html.honeywell-dark-theme [class~="scuf-grid"][class~="col"],html.honeywell-dark-theme [class~="scuf-grid"][class*="col-"],html.honeywell-dark-theme [class~="scuf-grid"][class*="col_"],html.honeywell-dark-theme [class*="scuf-grid-"][class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="col_"],html.honeywell-dark-theme [class*="scuf-grid_"][class~="col"],html.honeywell-dark-theme [class*="scuf-grid_"][class*="col-"],html.honeywell-dark-theme [class*="scuf-grid_"][class*="col_"]{margin:0;padding:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]{margin:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noGutter"]>[class*="col-"]{padding:0}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noWrap"]{flex-wrap:nowrap}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-center"]{justify-content:center}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-right"]{justify-content:flex-end;align-self:flex-end;margin-left:auto}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-top"]{align-items:flex-start}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-middle"]{align-items:center}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-bottom"]{align-items:flex-end}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-reverse"]{flex-direction:row-reverse}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column"]{flex-direction:column}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column"]>[class*="col-"]{flex-basis:auto}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-column-reverse"]{flex-direction:column-reverse}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-spaceBetween"]{justify-content:space-between}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-spaceAround"]{justify-content:space-around}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]{align-self:stretch}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"]>*,html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"]>*,html.honeywell-dark-theme [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]>*{height:100%}html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-"][class*="-noBottom"]>[class*="col_"]{padding-bottom:0}html.honeywell-dark-theme [class*="col-"][class*="-top"]{align-self:flex-start}html.honeywell-dark-theme [class*="col-"][class*="-middle"]{align-self:center}html.honeywell-dark-theme [class*="col-"][class*="-bottom"]{align-self:flex-end}html.honeywell-dark-theme [class*="col-"][class*="-first"]{order:-1}html.honeywell-dark-theme [class*="col-"][class*="-last"]{order:1}html.honeywell-dark-theme [class*="scuf-grid-1"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-1"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="scuf-grid-2"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-2"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="scuf-grid-3"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-3"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="scuf-grid-4"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-4"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="scuf-grid-5"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-5"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="scuf-grid-6"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-6"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="scuf-grid-7"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-7"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="scuf-grid-8"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-8"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="scuf-grid-9"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-9"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="scuf-grid-10"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-10"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="scuf-grid-11"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-11"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="scuf-grid-12"]>[class~="col"],html.honeywell-dark-theme [class*="scuf-grid-12"]>[class*="col-"],html.honeywell-dark-theme [class*="scuf-grid-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}@media (max-width: 80em){html.honeywell-dark-theme [class*="_lg-1"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_lg-2"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_lg-3"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_lg-4"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_lg-5"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_lg-6"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_lg-7"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_lg-8"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_lg-9"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_lg-10"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_lg-11"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_lg-12"]>[class~="col"],html.honeywell-dark-theme [class*="_lg-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_lg-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 64em){html.honeywell-dark-theme [class*="_md-1"]>[class~="col"],html.honeywell-dark-theme [class*="_md-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_md-2"]>[class~="col"],html.honeywell-dark-theme [class*="_md-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_md-3"]>[class~="col"],html.honeywell-dark-theme [class*="_md-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_md-4"]>[class~="col"],html.honeywell-dark-theme [class*="_md-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_md-5"]>[class~="col"],html.honeywell-dark-theme [class*="_md-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_md-6"]>[class~="col"],html.honeywell-dark-theme [class*="_md-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_md-7"]>[class~="col"],html.honeywell-dark-theme [class*="_md-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_md-8"]>[class~="col"],html.honeywell-dark-theme [class*="_md-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_md-9"]>[class~="col"],html.honeywell-dark-theme [class*="_md-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_md-10"]>[class~="col"],html.honeywell-dark-theme [class*="_md-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_md-11"]>[class~="col"],html.honeywell-dark-theme [class*="_md-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_md-12"]>[class~="col"],html.honeywell-dark-theme [class*="_md-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_md-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 48em){html.honeywell-dark-theme [class*="_sm-1"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_sm-2"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_sm-3"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_sm-4"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_sm-5"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_sm-6"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_sm-7"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_sm-8"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_sm-9"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_sm-10"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_sm-11"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_sm-12"]>[class~="col"],html.honeywell-dark-theme [class*="_sm-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_sm-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 36em){html.honeywell-dark-theme [class*="_xs-1"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-1"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class*="_xs-2"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-2"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class*="_xs-3"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-3"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class*="_xs-4"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-4"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class*="_xs-5"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-5"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html.honeywell-dark-theme [class*="_xs-6"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-6"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class*="_xs-7"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-7"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html.honeywell-dark-theme [class*="_xs-8"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-8"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html.honeywell-dark-theme [class*="_xs-9"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-9"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html.honeywell-dark-theme [class*="_xs-10"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-10"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html.honeywell-dark-theme [class*="_xs-11"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-11"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html.honeywell-dark-theme [class*="_xs-12"]>[class~="col"],html.honeywell-dark-theme [class*="_xs-12"]>[class*="col-"],html.honeywell-dark-theme [class*="_xs-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="col-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="col-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="col-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="off-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="off-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="off-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="off-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="off-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="off-11"]{margin-right:91.66667%}@media (max-width: 80em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_lg-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_lg-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_lg-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_lg-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_lg-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_lg-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_lg-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_lg-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_lg-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_lg-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_lg-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_lg-last"]{order:1}}@media (max-width: 64em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_md-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_md-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_md-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_md-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_md-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_md-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_md-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_md-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_md-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_md-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_md-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_md-last"]{order:1}}@media (max-width: 48em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_sm-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_sm-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_sm-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_sm-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_sm-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_sm-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_sm-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_sm-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_sm-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_sm-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_sm-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_sm-last"]{order:1}}@media (max-width: 36em){html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-1"]{flex-basis:8.33333%;max-width:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-2"]{flex-basis:16.66667%;max-width:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-3"]{flex-basis:25%;max-width:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-4"]{flex-basis:33.33333%;max-width:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-5"]{flex-basis:41.66667%;max-width:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-6"]{flex-basis:50%;max-width:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-7"]{flex-basis:58.33333%;max-width:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-8"]{flex-basis:66.66667%;max-width:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-9"]{flex-basis:75%;max-width:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-10"]{flex-basis:83.33333%;max-width:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-11"]{flex-basis:91.66667%;max-width:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[class*="_xs-12"],html.honeywell-dark-theme [class*="scuf-grid-"]>[class*="_xs-12"],html.honeywell-dark-theme [class*="scuf-grid_"]>[class*="_xs-12"]{flex-basis:100%;max-width:100%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-0"]{margin-left:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-1"]{margin-left:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-2"]{margin-left:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-3"]{margin-left:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-4"]{margin-left:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-5"]{margin-left:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-6"]{margin-left:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-7"]{margin-left:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-8"]{margin-left:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-9"]{margin-left:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-10"]{margin-left:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-left*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-left*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-left*="_xs-11"]{margin-left:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-0"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-0"]{margin-right:0}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-1"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-1"]{margin-right:8.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-2"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-2"]{margin-right:16.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-3"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-3"]{margin-right:25%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-4"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-4"]{margin-right:33.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-5"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-5"]{margin-right:41.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-6"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-6"]{margin-right:50%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-7"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-7"]{margin-right:58.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-8"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-8"]{margin-right:66.66667%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-9"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-9"]{margin-right:75%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-10"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-10"]{margin-right:83.33333%}html.honeywell-dark-theme [class~="scuf-grid"]>[data-push-right*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid-"]>[data-push-right*="_xs-11"],html.honeywell-dark-theme [class*="scuf-grid_"]>[data-push-right*="_xs-11"]{margin-right:91.66667%}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_xs-first"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_xs-first"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_xs-first"]{order:-1}html.honeywell-dark-theme [class~="scuf-grid"] [class*="_xs-last"],html.honeywell-dark-theme [class*="scuf-grid-"] [class*="_xs-last"],html.honeywell-dark-theme [class*="scuf-grid_"] [class*="_xs-last"]{order:1}}@media (max-width: 80em){html.honeywell-dark-theme [class*="lg-hidden"]{display:none}}@media (max-width: 64em){html.honeywell-dark-theme [class*="md-hidden"]{display:none}}@media (max-width: 48em){html.honeywell-dark-theme [class*="sm-hidden"]{display:none}}@media (max-width: 36em){html.honeywell-dark-theme [class*="xs-hidden"]{display:none}}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher{padding:.75rem .5rem !important;box-sizing:border-box}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher>.trigger-container>.responsive-trigger-label{display:none}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher i.icon:not(.h-icon){display:none}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu::-webkit-scrollbar{display:none}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu{background:#000 !important;margin-top:.0625rem;border-radius:0 !important;width:14rem;right:0px !important;border:0px;display:flex !important;max-height:648px;flex-wrap:wrap;flex-direction:row !important;overflow-y:scroll;-ms-overflow-style:none;overflow:-moz-scrollbars-none}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item{width:7rem;font-weight:400 !important;padding:.75rem 1.5rem !important;color:#fff !important;height:7rem;justify-content:center;display:flex;flex-direction:column;white-space:initial}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item .h-icon{margin:0px !important;padding:4px;font-size:1.5rem !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item .app-name{margin-top:.5rem;min-height:2.25rem;font-size:.75rem;line-height:.75rem;overflow:hidden;text-align:center;display:-webkit-box;display:-moz-box;display:-ms-box;line-clamp:2;-ms-line-clamp:2;-moz-line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item .app-name{overflow:visible;white-space:pre-wrap;width:100%}}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item:hover,html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item.active{background:#404040 !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item.active .app-name{font-weight:700}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .menu-footer{display:flex;font-size:.75rem;flex-basis:100%;align-items:center;padding:.5rem 1rem;font-weight:400 !important;justify-content:space-between;cursor:pointer}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .menu-footer .h-icon{margin:0px !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .menu-footer .h-icon:before{font-size:.75rem !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .item-image{width:2rem;height:2rem;line-height:2rem;text-align:center;font-size:.875rem;font-weight:400;background-position:center;background-size:cover;background-repeat:no-repeat;text-transform:uppercase}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu .app-launcher>.trigger-container{display:flex;align-items:center}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu .app-launcher>.trigger-container i.trigger-icon{width:100%;padding-left:.25rem !important;padding-right:.25rem !important}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu .app-launcher>.trigger-container>.responsive-trigger-label{display:flex !important;padding-left:1rem}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu>.item.app-launcher.dropdown:hover>.menu.app-launcher-menu{height:auto;left:-14rem !important;right:9.52rem !important;right:10.64rem !important}html.honeywell-dark-theme .ui.page-header{position:relative;width:100%;background-color:#000;border-bottom:#606060 .0625rem solid !important;z-index:900}html.honeywell-dark-theme .ui.page-header .width-tester{position:absolute;top:0;left:0;right:0;bottom:0}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu{border-radius:0;border:none;box-shadow:none;margin-bottom:0;height:inherit}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.logo-item{position:relative;padding-left:1rem}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.logo-item:hover{background:none !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .main-logo{height:1.5rem;width:7.5rem;display:inline-block;padding-right:.75rem;margin-right:.75rem;background:url(/static/media/honeywell-logo-dark-theme.b7f0524b.svg);background-repeat:no-repeat;background-size:contain;background-origin:content-box;border-right:#606060 .0625rem solid}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .main-logo.honeywell-logo{background-position:0 4px}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .forge-logo{font-weight:900;font-size:1.125rem;padding-right:.75rem;margin-right:.75rem;border-right:#606060 .0625rem solid;position:relative;top:1px}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .logo-text{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;color:#fff;font-weight:400;line-height:1.5rem;font-size:1rem;position:relative}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .logo-link,html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .logo-text-link{position:relative;cursor:pointer;height:1.5rem}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;color:#fff;font-size:.875rem;line-height:1.375rem;font-weight:400;border:none;position:relative;border-radius:0;padding:0;padding:.75rem .5rem;min-width:2.5rem}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item:not(.logo-item){cursor:pointer}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item:not(.search-item){display:flex;justify-content:center;align-content:center}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item:before{display:none}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item:not(.logo-item):not(.menu-btn):hover{background:#404040}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.active{font-weight:700;background:#404040}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item .menu-btn{line-height:1em}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item .ui.input.expandable-input{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu>.item{text-align:center}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.menu-btn-item:hover,html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.logo-item:hover{background:none !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .full-header-menu{position:absolute;visibility:hidden;z-index:1}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .page-header-menu{z-index:2}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .menu-btn-item{padding:.75rem 1rem}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .menu-btn-item .menu-btn{padding:0}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .menu-btn-item .h-icon{padding:0px 0px 0px 0px}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .menu-btn-item:hover{background:none !important}html.honeywell-dark-theme .ui.page-header.has-menu .logo-item{padding-left:1rem}html.honeywell-dark-theme .ui.page-header.has-menu .logo-item:hover{background:none !important}html.honeywell-dark-theme .ui.page-header.has-menu .item.logo-item{padding-left:0 !important}html.honeywell-dark-theme .ui.page-header.has-menu .item.logo-item:hover{background:none !important}html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu .menu-btn-item{padding-top:.5rem !important;padding-bottom:.5rem !important;min-width:auto}html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu .logo-item{margin:auto;padding-top:0 !important;padding-bottom:0 !important}html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu .logo-item .logo-text{max-width:174px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:.875rem;line-height:1.5rem}html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu .main-logo,html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu .forge-logo{display:none}html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu .item,html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu .menu-btn-item{padding:.75rem .75rem}html.honeywell-dark-theme .ui.page-header.is-compressed .page-header-menu.ui.menu:not(.vertical) .right.menu{margin-left:0 !important}html.honeywell-dark-theme .ui.page-header.is-compressed:not(.has-menu) .logo-text{position:relative;left:30px}html.honeywell-dark-theme .ui.page-header{border-bottom:#606060 .0625rem solid !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .menu.notification-center-dropdown>.notification-center-item{border-bottom:#606060 .0625rem solid !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .menu.notification-center-dropdown>*{white-space:normal}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item{padding:0 !important;margin:0 !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification{background:#000}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification:hover{background-color:#404040 !important;cursor:pointer}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification,html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item .notification-center-item>.ui.notification{margin:0 !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification div.message,html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item .notification-center-item>.ui.notification div.message{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification .datetime,html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item .notification-center-item>.ui.notification .datetime{color:#fff}html.honeywell-dark-theme .ui.page-header .ui.notification-center.dropdown{padding:0 .25rem !important}html.honeywell-dark-theme .ui.page-header .ui.notification-center.dropdown>.item:first-child{padding:0 !important;display:flex;justify-content:center}html.honeywell-dark-theme .ui.page-header .ui.notification-center.dropdown .trigger-container .responsive-trigger-label{display:none}html.honeywell-dark-theme .ui.page-header .ui.notification-center.dropdown .trigger-container .trigger-icon{background:transparent}html.honeywell-dark-theme .ui.page-header .ui.notification-center.dropdown>.item:first-child{padding-top:0 !important;padding-bottom:0 !important}html.honeywell-dark-theme .ui.page-header .notification-center-dropdown.menu{min-width:16.8rem;width:16.8rem;background:#000}html.honeywell-dark-theme .ui.page-header .notification-center-dropdown.menu .ui.notification{border:none;margin:none !important}html.honeywell-dark-theme .ui.page-header .notification-center-dropdown.menu .see-all-container{padding:.75rem 1rem;color:#fff;text-align:right}html.honeywell-dark-theme .ui.page-header .notification-center-dropdown.menu .see-all-container>.see-all{display:inline;cursor:pointer;font-weight:500}html.honeywell-dark-theme .ui.page-header.is-collapsed .ui.notification-center.dropdown>.item:first-child,html.honeywell-dark-theme .ui.page-header .is-compressed .ui.notification-center.dropdown>.item:first-child{justify-content:flex-start}html.honeywell-dark-theme .ui.page-header.is-collapsed .ui.notification-center.dropdown>.item:first-child:hover,html.honeywell-dark-theme .ui.page-header .is-compressed .ui.notification-center.dropdown>.item:first-child:hover{background:none}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu .notification-center .trigger-container{display:flex}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu .notification-center .trigger-container .trigger-icon{width:0;padding:0 !important}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu .notification-center .trigger-container .responsive-trigger-label{padding-left:.125rem;display:flex;align-items:center}html.honeywell-dark-theme .ui.simple.dropdown:hover>.menu>.item:hover>.menu.notification-center-dropdown{width:auto;height:auto;left:-16.8rem !important;right:16.8rem !important}html.honeywell-dark-theme .ui.page-header .profile-icon{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;font-weight:700;display:flex;justify-content:center;align-items:center;width:2rem;height:2rem;border:#606060 .0625rem solid;border-radius:1.5rem;background:#303030 center/cover no-repeat}html.honeywell-dark-theme .ui.page-header .profile-icon.no-border{border:none}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop{text-align:left !important;display:flex;opacity:1 !important}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop .profile-icon{display:inline-block}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop .name-info{justify-content:center;padding-left:1rem}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop .name-info .role{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#606060}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu{min-width:4.75rem !important;padding-left:.75rem;padding-right:.75rem;color:#fff}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu i.icon:not(.button-icon){display:none}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu i.icon.button-icon{padding:0 14px;margin:0}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .trigger-icon{width:3.75rem;position:relative}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu:hover{background:#404040}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu>.active{background:#404040}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .menu{background:#000;color:#000 !important;border-radius:0 0 0 0 !important}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .menu .text{color:#fff}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .menu>.item{padding:.75rem 1.5rem !important;color:#fff !important}html.honeywell-dark-theme .page-header-menu.ui.menu .ui.dropdown.icon-menu .drop-badged-text{padding-left:1rem;display:inline-block}html.honeywell-dark-theme .ui.page-header.is-compressed .ui.dropdown.icon-menu{padding-left:.75rem;padding-right:.75rem;min-width:auto !important}html.honeywell-dark-theme .ui.page-header.is-compressed .ui.dropdown.icon-menu i.icon.button-icon{padding:0 13px;margin:0}html.honeywell-dark-theme .ui.page-header.is-compressed .ui.dropdown.icon-menu .trigger-icon{width:auto;position:relative}html.honeywell-dark-theme .ui.page-header.is-compressed .ui.dropdown.icon-menu .trigger-icon .profile-icon{width:1.5rem;height:1.5rem;line-height:1.5rem;padding-top:0;padding-bottom:0}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item{cursor:pointer;overflow-x:hidden;position:relative;transition:width 300ms ease-in;padding-top:.75rem;padding-bottom:.75rem;width:246px;background:none !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-icon{padding:0px 1px 0px .125rem;position:absolute;z-index:2;margin:0;color:#fff}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input{transition:opacity 150ms ease-in, border-color 150ms ease-in;background:#303030;border:#707070 .0625rem solid;position:relative;z-index:1;opacity:1;border-radius:0;color:#e0e0e0;outline:none}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus{border-color:#45A7EA;outline:none}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item:hover{background:none !important;color:#fff}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item:not(.open){width:2.5rem;margin-right:.5rem}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item:not(.open) .expandable-icon{position:relative}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item:not(.open) .expandable-input{opacity:0;width:0;cursor:pointer}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item.open .expandable-icon{color:#fff;padding-left:.25rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item.open .expandable-icon{top:.8125rem}}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .item.search-item.open .expandable-input{width:100%}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .user-profile-menu{padding:.25rem .5rem !important;box-sizing:border-box}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .user-profile-menu i.icon{display:none !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu{background:#1a1a1a;color:#fff !important;font-weight:400 !important;border-radius:0 !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu .text{color:#fff}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu>.item{background:#000 !important;font-weight:400 !important;padding:.75rem 1.5rem !important;color:#fff !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu>.item:hover{background:#404040 !important}html.honeywell-dark-theme .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu>.item.active{font-weight:700 !important}html.honeywell-dark-theme .h-icon:not(.common){font-size:1rem;display:inline-block;vertical-align:middle;opacity:1;margin:none;speak:none;font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html.honeywell-dark-theme .h-icon:not(.common).scuf-small{font-size:1rem !important}html.honeywell-dark-theme .h-icon:not(.common).scuf-medium{font-size:1.5rem !important}html.honeywell-dark-theme .h-icon:not(.common).scuf-large{font-size:2rem !important}html.honeywell-dark-theme .h-icon:not(.common).scuf-xlarge{font-size:4rem !important}html.honeywell-dark-theme .h-icon:not(.common).vertically-flipped{transform:scale(1, -1)}html.honeywell-dark-theme .h-icon:not(.common).horizontally-flipped{transform:scale(-1, 1)}html.honeywell-dark-theme .h-icon:not(.common).fitted{width:auto;margin:0em}html.honeywell-dark-theme .h-icon:not(.common).fitted::before{position:relative;top:0em}html.honeywell-dark-theme .h-icon:not(.common).loading{animation:icon-loading 2s linear infinite}html.honeywell-dark-theme .h-icon:not(.common).loading::before{position:relative;top:0em}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme .ui.single-input{position:relative;display:inline-block;vertical-align:top;z-index:1}html.honeywell-dark-theme .ui.single-input .input-box{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;background:#303030;border:#707070 .0625rem solid;border-radius:0;color:#e0e0e0;height:2.375rem;transition:border-color 150ms ease-in;box-sizing:border-box;padding:.6875rem .4375rem;z-index:1;position:relative;background:transparent;width:12rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.single-input .input-box{line-height:.875rem !important}}html.honeywell-dark-theme .ui.single-input .input-box:focus{border-color:#45A7EA;outline:none}html.honeywell-dark-theme .ui.single-input .input-box::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.single-input .input-box::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.single-input .input-box:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic;line-height:.875rem !important}html.honeywell-dark-theme .ui.single-input .input-box:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.single-input .input-box:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.single-input .input-box:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.single-input .input-wrap{position:relative;display:inline-flex;background:#303030}html.honeywell-dark-theme .ui.single-input.fluid{display:block}html.honeywell-dark-theme .ui.single-input.fluid .input-box,html.honeywell-dark-theme .ui.single-input.fluid .input-wrap{width:100%}html.honeywell-dark-theme .ui.single-input.error .input-box{border-color:#F15A4F;background-color:#303030}html.honeywell-dark-theme .ui.single-input.disabled{cursor:not-allowed !important}html.honeywell-dark-theme .ui.single-input.disabled .input-box{z-index:2;background:#505050}html.honeywell-dark-theme .ui.single-input.disabled .input-wrap{cursor:not-allowed !important}html.honeywell-dark-theme .ui.single-input.disabled .input-wrap .input-icon{z-index:2}html.honeywell-dark-theme .ui.single-input.disabled .input-wrap input{cursor:not-allowed !important;background:#505050;color:#a0a0a0 !important}html.honeywell-dark-theme .ui.single-input.disabled .input-icon{cursor:not-allowed}html.honeywell-dark-theme .ui.single-input .input-icon{position:absolute;z-index:1;color:#e0e0e0;top:50%;transform:translateY(-50%);cursor:pointer}html.honeywell-dark-theme .ui.single-input.has-icon.align-left .input-icon{left:.75rem}html.honeywell-dark-theme .ui.single-input.has-icon.align-left .input-box{padding-left:2.5rem}html.honeywell-dark-theme .ui.single-input.has-icon.align-right .input-icon{right:.75rem}html.honeywell-dark-theme .ui.single-input.has-icon.align-right .input-box{padding-right:2.5rem}html.honeywell-dark-theme .ui.single-input .search-icon{display:flex;position:relative;align-items:center;display:inline-flex;justify-content:center;width:2.5rem;height:2.375rem;color:#fff;transition:background-color 0.3s ease;background:#707070}html.honeywell-dark-theme .focused .input-wrap .search-icon{background:#45A7EA;cursor:pointer}html.honeywell-dark-theme .ui.single-input>.input-wrap>input{height:2.5rem}html.honeywell-dark-theme .ui.single-input>.input-wrap>.search-icon{height:2.5rem}html.honeywell-dark-theme div.ui.input-label{margin-bottom:.125rem;display:flex}html.honeywell-dark-theme div.ui.input-label .input-label-message{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;font-weight:700}html.honeywell-dark-theme div.ui.input-label .badge{align-self:flex-end;width:.5rem !important;height:.5rem !important;min-width:0rem !important;min-height:0rem !important;margin-left:.125rem;margin-bottom:.4rem !important;padding-bottom:0rem !important}html.honeywell-dark-theme div.ui.input-label .input-label-optional{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic;margin-left:.25rem}html.honeywell-dark-theme .ui.kpi-statistic{max-width:20rem;display:inline-flex;padding:1rem;margin-right:.75rem;margin-bottom:.75rem;background:#303030}html.honeywell-dark-theme .ui.kpi-statistic i.h-icon{font-size:3.75rem;margin-right:.75rem}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel{display:flex;justify-content:flex-start;flex-direction:row;transform:translateX(-0.7rem)}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel .dot{height:0.7rem;width:0.7rem;transform:translateX(-5px);margin-top:0.7rem;border-radius:50%;display:inline-block;min-width:0.7rem;min-height:0.7rem}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel .red{background-color:#ee3124 !important}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel .orange{background-color:#f37021 !important}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel .yellow{background-color:#ffC627 !important}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel .green{background-color:#7eb338 !important}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel .blue{background-color:#1792e5 !important}html.honeywell-dark-theme .ui.kpi-statistic .indicator-target-panel .grey{background-color:#707070 !important}html.honeywell-dark-theme .ui.kpi-statistic .item-image{width:3.75rem;height:3.75rem;background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:.25rem;margin-right:.75rem;min-width:3.75rem;min-height:3.75rem}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details{display:flex;flex-direction:column}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details h1{color:#e0e0e0;font-size:1.625rem}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details h5{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#a0a0a0;text-transform:uppercase}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details h3{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;text-transform:capitalize}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details h1,html.honeywell-dark-theme .ui.kpi-statistic .statistic-details h5,html.honeywell-dark-theme .ui.kpi-statistic .statistic-details h3{margin:0;padding:.125rem 0}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .red{color:#ee3124 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .orange{color:#f37021 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .yellow{color:#ffC627 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .green{color:#7eb338 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .blue{color:#1792e5 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .purple{color:#9b59b6 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .grey{color:#707070 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .black{color:#303030 !important}html.honeywell-dark-theme .ui.kpi-statistic .statistic-details .white{color:#f7f7f7 !important}html.honeywell-dark-theme .ui .list.scuf-list-wrapper .item.clickable{cursor:pointer}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.celled.list>.item,html.honeywell-dark-theme .ui .list.scuf-list-wrapper .ui.celled.list>.list{border-top:#606060 .0625rem solid}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.celled.list>.item:last-child{border-bottom:#606060 .0625rem solid}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.horizontal.celled.list>.item{border-top:none;border-bottom:none !important;border-left:#606060 .0625rem solid}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.divided.list>.item{border-top:#606060 .0625rem solid}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.divided.list .list>.item:first-child,html.honeywell-dark-theme .ui .list.scuf-list-wrapper.divided.list>.item:first-child{border-top:none}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.horizontal.bulleted.celled.list>.item{border-top:none;border-bottom:none !important;border-left:#606060 .0625rem solid}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.horizontal.bulleted.celled.list>.item::before{margin-left:0;position:relative;padding-right:.5rem}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.horizontal.list>.item{display:inline-flex !important;align-items:center}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.horizontal.celled.list>.item:last-child{border-right:#606060 .0625rem solid}html.honeywell-dark-theme .ui .list.scuf-list-wrapper.ordered.list>.item:before{color:#e0e0e0}html.honeywell-dark-theme .ui .relaxed.list .description{color:#e0e0e0}html.honeywell-dark-theme .ui.loader-wrap{display:none;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;vertical-align:middle;z-index:2}html.honeywell-dark-theme .ui.loader-wrap .color-overlay{background:#303030;position:absolute;z-index:2}html.honeywell-dark-theme .ui.loader-wrap .ui.loader{display:block;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:600;color:#e0e0e0;-webkit-font-smoothing:antialiased;line-height:1.375rem;font-size:.875rem;z-index:10}html.honeywell-dark-theme .ui.loader-wrap .ui.loader:before{border:.125rem solid rgba(224,224,224,0.15)}html.honeywell-dark-theme .ui.loader-wrap .ui.loader:after{border-color:#e0e0e0 transparent transparent;border-width:.125rem}html.honeywell-dark-theme .ui.loader-wrap .ui.loader.inverted{color:#fff}html.honeywell-dark-theme .ui.loader-wrap .ui.loader.inverted:before{border:.125rem solid rgba(255,255,255,0.15)}html.honeywell-dark-theme .ui.loader-wrap .ui.loader.inverted:after{border-color:#fff transparent transparent;border-width:.125rem}html.honeywell-dark-theme .ui.loader-wrap .ui.loader.large:before,html.honeywell-dark-theme .ui.loader-wrap .ui.loader.large:after{width:3rem;height:3rem;margin:0 0 0 -1.5rem}html.honeywell-dark-theme .ui.loader-wrap.loading{display:block}html.honeywell-dark-theme .ui.loader-wrap.loading .color-overlay{top:0;right:0;left:0;bottom:0}html.honeywell-dark-theme .ui.modal{border-radius:0 !important;border:none !important;padding:1rem;background-color:#303030;align-self:center;justify-self:center;position:relative}html.honeywell-dark-theme .ui.modal .header{background:0;border:none !important;padding:0 2.5rem 1rem 0;display:flex;justify-content:flex-start}html.honeywell-dark-theme .ui.modal .header .right{margin-left:auto}html.honeywell-dark-theme .ui.modal.small>.header:not(.ui),html.honeywell-dark-theme .ui.modal.mini>.header:not(.ui),html.honeywell-dark-theme .ui.modal.large>.header:not(.ui),html.honeywell-dark-theme .ui.modal.fullscreen>.header:not(.ui){font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1.625rem;line-height:2.125rem;color:silver;color:#e0e0e0}html.honeywell-dark-theme .ui.modal .close-icon-wrap{position:absolute;display:inline-block;right:1rem;top:1.25rem;font-size:.75rem;color:#fff;cursor:pointer}html.honeywell-dark-theme .ui.modal .close-icon-wrap .modal-close{margin:0;font-size:.75rem}html.honeywell-dark-theme .ui.modal .close-icon-wrap:hover{color:#d0d0d0}html.honeywell-dark-theme .ui.modal .content{padding:0;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;background-color:#303030}html.honeywell-dark-theme .ui.modal .actions{border:none;padding:2rem 0 0;background:none;display:flex;justify-content:flex-end;text-align:left}html.honeywell-dark-theme .ui.modal .actions .left{margin-right:auto}html.honeywell-dark-theme .modals.dimmer{justify-content:center}html.honeywell-dark-theme .blurring.dimmed.dimmable>:not(.dimmer){filter:blur(4px) !important}html.honeywell-dark-theme .blurring.dimmable>.dimmer{background-color:rgba(0,0,0,0.7) !important}html.honeywell-dark-theme .ui.fullscreen.modal,html.honeywell-dark-theme .modals.dimmer .ui.fullscreen.scrolling.modal{width:100% !important;left:0 !important;top:0 !important;height:100vh;margin:0 !important}html.honeywell-dark-theme .ui.large.modal{width:75%}html.honeywell-dark-theme .ui.small.modal{width:33%}html.honeywell-dark-theme .ui.notification{width:100%;background:#303030;margin:1em 0;border-left:.5rem solid;border-top:.125rem solid;border-right:.125rem solid;border-bottom:.125rem solid;display:flex}html.honeywell-dark-theme .ui.notification.critical{border-color:#F15A4F}html.honeywell-dark-theme .ui.notification.critical .icon .h-icon{color:#F15A4F}html.honeywell-dark-theme .ui.notification.important{border-color:#ffC627}html.honeywell-dark-theme .ui.notification.important .icon .h-icon{color:#ffC627}html.honeywell-dark-theme .ui.notification.information{border-color:#1792e5}html.honeywell-dark-theme .ui.notification.information .icon .h-icon{color:#1792e5}html.honeywell-dark-theme .ui.notification.success{border-color:#7eb338}html.honeywell-dark-theme .ui.notification.success .icon .h-icon{color:#7eb338}html.honeywell-dark-theme .ui.notification .icon{padding:1rem 0 0 1rem;display:flex}html.honeywell-dark-theme .ui.notification .icon .h-icon{font-size:1.5rem;padding:0 !important}html.honeywell-dark-theme .ui.notification .icon .h-icon::before{padding:0.25rem}html.honeywell-dark-theme .ui.notification .content{flex-grow:1;padding:1rem;padding-left:.5rem;width:100%}html.honeywell-dark-theme .ui.notification .content .content-top{display:flex;flex-direction:row;justify-content:flex-end}html.honeywell-dark-theme .ui.notification .content .heading{margin-bottom:.5rem;display:flex;align-items:flex-end;flex-grow:1}html.honeywell-dark-theme .ui.notification .content .heading .title{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;font-weight:700;display:inline-block;margin-right:3em}html.honeywell-dark-theme .ui.notification .content .details-button{float:right}html.honeywell-dark-theme .ui.notification .content .message{display:flex;justify-content:space-between;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0}html.honeywell-dark-theme .ui.notification .content .message p a{cursor:pointer;color:#45A7EA}html.honeywell-dark-theme .ui.notification .content .action-wrapper{margin-top:.5rem}html.honeywell-dark-theme .ui.notification .content .action-wrapper .action{float:right;cursor:pointer;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#45A7EA;font-weight:600;letter-spacing:0.5px}html.honeywell-dark-theme .ui.notification .content .action-wrapper .action:active{color:#8BC8F2}html.honeywell-dark-theme .ui.notification .content .action-wrapper .action:hover{color:#45A7EA}html.honeywell-dark-theme .ui.notification .content .action-wrapper .action:disabled{color:#606060}html.honeywell-dark-theme .ui.notification .content .tags{display:inline-block}html.honeywell-dark-theme .ui.notification .content .tags .badge{margin-right:.25rem}html.honeywell-dark-theme .ui.notification .content:first-child{padding-left:1rem}html.honeywell-dark-theme .ui.notification .close-wrapper{padding-left:2rem;display:flex}html.honeywell-dark-theme .ui.notification .close-wrapper .h-icon{color:#707070;cursor:pointer}html.honeywell-dark-theme .ui.notification .close-wrapper .h-icon:hover{color:#d0d0d0}html.honeywell-dark-theme .ui.notification .close-wrapper .h-icon:active{color:#fff}html.honeywell-dark-theme .ui.notification .datetime{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;font-weight:700}html.honeywell-dark-theme .ui.pagination{display:flex;border:#606060 .0625rem solid;background:#303030;width:100%;min-width:24rem;height:3.3rem;justify-content:center;align-items:center;position:relative;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-size:.875rem;font-weight:500}html.honeywell-dark-theme .ui.pagination .nav-container{display:flex}html.honeywell-dark-theme .ui.pagination .page-info{position:absolute;left:1rem}html.honeywell-dark-theme .ui.pagination .page-info .bold{font-weight:600}html.honeywell-dark-theme .ui.pagination .page-options{display:inline-flex;position:absolute;align-items:center;right:.25rem}html.honeywell-dark-theme .ui.pagination .page-options .scuf-dropdown-wrapper{padding-left:.5rem;width:6rem}html.honeywell-dark-theme .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown{min-width:auto;width:6rem}html.honeywell-dark-theme .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown .active{border:none !important}html.honeywell-dark-theme .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown .visible.menu{border:none !important;box-shadow:0 1px 2px rgba(0,0,0,0.5)}html.honeywell-dark-theme .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown .visible.menu .item:not(:last-child){border-bottom:#606060 .0625rem solid}html.honeywell-dark-theme .ui.pagination .goto-selector{display:initial;width:5.25rem}html.honeywell-dark-theme .ui.pagination .goto-selector .ui.selection.dropdown{min-width:auto;width:5.25rem}html.honeywell-dark-theme .ui.pagination .goto-selector .ui.selection.dropdown .active{border:none !important}html.honeywell-dark-theme .ui.pagination .goto-selector .ui.selection.dropdown .visible.menu{border:none !important;box-shadow:0 1px 2px rgba(0,0,0,0.5);bottom:2.9375rem;top:auto;overflow-y:auto;max-height:9rem}html.honeywell-dark-theme .ui.pagination .goto-selector .ui.selection.dropdown .visible.menu .item:not(:last-child){border-bottom:1px solid #606060}html.honeywell-dark-theme .ui.pagination .hide{display:none !important}html.honeywell-dark-theme .ui.pagination .page-btn{background:#303030;cursor:pointer;text-align:center;height:2.5rem;width:2.5rem;display:flex;justify-content:center;align-items:center;text-transform:uppercase;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;border:transparent .0625rem solid}html.honeywell-dark-theme .ui.pagination .page-btn:not(.nav-btn):hover{border:#606060 .0625rem solid}html.honeywell-dark-theme .ui.pagination .ellipse.noSelection:hover{border:none !important;cursor:initial}html.honeywell-dark-theme .ui.pagination .active{border:#45A7EA .0625rem solid !important}html.honeywell-dark-theme .ui.pagination .page-btn.disable{color:#505050 !important;border:transparent .0625rem solid !important}html.honeywell-dark-theme .ui.pagination .page-btn.disable:hover{cursor:default}html.honeywell-dark-theme .ui.pagination.hide-nav .item-btn:first-child,html.honeywell-dark-theme .ui.pagination.hide-nav .first-btn{margin-left:.25rem}html.honeywell-dark-theme .ui.pagination.hide-nav .item-btn:last-child,html.honeywell-dark-theme .ui.pagination.hide-nav .last-btn{margin-right:.25rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.pagination .page-info{top:1.4rem}html.honeywell-dark-theme .ui.pagination .page-options{top:.25rem}}html.honeywell-dark-theme .popup-pointer{cursor:pointer}html.honeywell-dark-theme .ui.popup.menu{padding:0px;border:0px;width:250px}html.honeywell-dark-theme .ui.popup.menu .ui.vertical.menu{width:250px;position:relative;box-shadow:none !important}html.honeywell-dark-theme .ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em 0em 2.5em;box-shadow:none;background:rgba(0,0,0,0.1);padding:0em;border-radius:0.28571429rem;font-size:1rem}html.honeywell-dark-theme .ui.progress:first-child{margin:0em 0em 2.5em}html.honeywell-dark-theme .ui.progress:last-child{margin:0em 0em 1.5em}html.honeywell-dark-theme .ui.progress .bar{height:1.75em;display:block;line-height:1;position:relative;width:0%;min-width:2em;transition:width 0.1s ease, background-color 0.1s ease}html.honeywell-dark-theme .ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:0.92857143em;top:50%;right:0.5em;left:auto;bottom:auto;color:rgba(255,255,255,0.7);text-shadow:none;margin-top:-0.5em}html.honeywell-dark-theme .ui.progress.small{font-size:0.92857143rem}html.honeywell-dark-theme .ui.progress.small .bar{height:1em}html.honeywell-dark-theme .ui.progress.large{font-size:1.14285714rem}html.honeywell-dark-theme .ui.progress.large .bar{height:2.5em}html.honeywell-dark-theme .ui.progress.big{font-size:1.28571429rem}html.honeywell-dark-theme .ui.progress.big .bar{height:3.5em}html.honeywell-dark-theme .scuf-progress-wrapper.stacked .bars-wrapper{width:100%;display:flex;background-color:#404040}html.honeywell-dark-theme .scuf-progress-wrapper.stacked .chart-legend{display:flex;justify-content:center;flex-wrap:wrap;margin-top:0.75rem}html.honeywell-dark-theme .scuf-progress-wrapper.stacked .chart-legend .legend-item{display:flex;align-items:center;margin-left:1rem}html.honeywell-dark-theme .scuf-progress-wrapper.stacked .chart-legend .legend-item .color-block{height:12px;width:12px;margin-right:0.25rem;border:0px;margin-top:0.5rem;margin-bottom:0.5rem}html.honeywell-dark-theme .scuf-progress-wrapper.stacked .bar{display:flex;justify-content:center;align-items:center;min-width:3%}html.honeywell-dark-theme .scuf-progress-wrapper.stacked .bar.zero{min-width:0%}html.honeywell-dark-theme .scuf-progress-wrapper.stacked .bar .progress-text.zero{display:none}html.honeywell-dark-theme .scuf-progress-wrapper .progress-text{font-weight:700}html.honeywell-dark-theme .scuf-progress-wrapper .ui.progress .bar .progress{font-weight:400 !important}html.honeywell-dark-theme .scuf-progress-wrapper .ui.progress .bar .progress,html.honeywell-dark-theme .scuf-progress-wrapper .progress-text{left:0%;text-align:center;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#fff;font-size:.75rem}html.honeywell-dark-theme .scuf-progress-wrapper.xlarge html.honeywell-dark-theme .scuf-progress-wrapper.zero .ui.progress .bar{min-width:0}html.honeywell-dark-theme .scuf-progress-wrapper.xlarge html.honeywell-dark-theme .scuf-progress-wrapper.zero .ui.progress .bar .progress{color:#e0e0e0}html.honeywell-dark-theme .scuf-progress-wrapper .ui.progress{border-radius:0;background-color:#404040;overflow-x:hidden}html.honeywell-dark-theme .scuf-progress-wrapper .ui.progress .bar{background-color:#45A7EA;border-radius:0}html.honeywell-dark-theme .scuf-progress-wrapper.xxsmall .bar{height:0.25rem !important}html.honeywell-dark-theme .scuf-progress-wrapper.xsmall .bar{height:0.5rem !important}html.honeywell-dark-theme .scuf-progress-wrapper.small .bar{height:0.75rem !important}html.honeywell-dark-theme .scuf-progress-wrapper.medium .bar{height:1rem !important}html.honeywell-dark-theme .scuf-progress-wrapper.large .bar{height:1.5rem !important}html.honeywell-dark-theme .scuf-progress-wrapper.xlarge .bar{height:2rem !important}html.honeywell-dark-theme .scuf-progress-wrapper.indeterminate .bar{animation:indeterminate-bar 1.6s infinite;animation-timing-function:linear}html.honeywell-dark-theme .scuf-progress-wrapper.indeterminate .bar .progress{visibility:hidden}@keyframes indeterminate-bar{0%{left:-25%}100%{left:100%}}html.honeywell-dark-theme .scuf-circular-wrapper{position:relative}html.honeywell-dark-theme .scuf-circular-wrapper .progress-title{position:absolute;width:100%;text-align:center;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;fill:#e0e0e0;line-height:1;top:45%;transform:translateY(-50%)}html.honeywell-dark-theme .scuf-circular-wrapper.xsmall{width:1rem}html.honeywell-dark-theme .scuf-circular-wrapper.small{width:2rem}html.honeywell-dark-theme .scuf-circular-wrapper.medium{width:3rem}html.honeywell-dark-theme .scuf-circular-wrapper.medium .progress-title{font-size:.6rem}html.honeywell-dark-theme .scuf-circular-wrapper.large{width:4rem}html.honeywell-dark-theme .scuf-circular-wrapper.large .progress-title{font-size:.8rem}html.honeywell-dark-theme .scuf-circular-wrapper.xlarge{width:6rem}html.honeywell-dark-theme .scuf-circular-wrapper.xlarge .progress-title{font-size:1.2rem}html.honeywell-dark-theme .scuf-circular-wrapper .definite{margin:auto;position:relative;overflow:visible !important}html.honeywell-dark-theme .scuf-circular-wrapper .definite .rc-progress-circle-path{stroke:#45A7EA;stroke-width:.25rem !important;transition:stroke-dashoffset 0.5s ease 0s}html.honeywell-dark-theme .scuf-circular-wrapper .definite .rc-progress-circle-trail{stroke:#404040 !important;stroke-width:.25rem !important}html.honeywell-dark-theme .scuf-circular-wrapper .indefinite{animation:spin 1s linear infinite;overflow:visible !important}html.honeywell-dark-theme .scuf-circular-wrapper .indefinite .rc-progress-circle-path{stroke:#45A7EA;stroke-width:.25rem !important;transition:stroke-dashoffset 0.5s ease 0s}html.honeywell-dark-theme .scuf-circular-wrapper .indefinite .rc-progress-circle-trail{stroke:#404040 !important;stroke-width:.25rem !important}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .definite .rc-progress-circle-path{transition:none !important}}html.honeywell-dark-theme .ui.radio.checkbox{min-height:1rem;margin:0px .75rem .75rem 0px;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0}html.honeywell-dark-theme .ui.radio.checkbox .box,html.honeywell-dark-theme .ui.radio.checkbox label{padding-left:1.5rem}html.honeywell-dark-theme .ui.radio.checkbox .box:before,html.honeywell-dark-theme .ui.radio.checkbox label:before{content:"";width:1rem;height:1rem;border-radius:1rem;top:1px;left:0px;border:.0625rem solid #707070;background-color:#303030}html.honeywell-dark-theme .ui.radio.checkbox .box:after,html.honeywell-dark-theme .ui.radio.checkbox label:after{border:none;content:"" !important;width:1rem;height:1rem;line-height:1rem}html.honeywell-dark-theme .ui.radio.checkbox .box:after,html.honeywell-dark-theme .ui.radio.checkbox label:after{top:1px;left:0px;width:1rem;height:1rem;border-radius:1rem}html.honeywell-dark-theme .ui.radio.checkbox input:focus ~ .box:before,html.honeywell-dark-theme .ui.radio.checkbox input:focus ~ label:before{background-color:#303030;border:.0625rem solid #707070}html.honeywell-dark-theme .ui.radio.checkbox input:focus ~ .box:after,html.honeywell-dark-theme .ui.radio.checkbox input:focus ~ label:after{background-color:#303030}html.honeywell-dark-theme .ui.radio.checkbox input:indeterminate ~ .box:after,html.honeywell-dark-theme .ui.radio.checkbox input:indeterminate ~ label:after{opacity:0}html.honeywell-dark-theme .ui.radio.checkbox.checked input ~ .box:before,html.honeywell-dark-theme .ui.radio.checkbox.checked input ~ label:before{background-color:#303030;border:.0625rem solid #707070}html.honeywell-dark-theme .ui.radio.checkbox.checked input ~ .box:after,html.honeywell-dark-theme .ui.radio.checkbox.checked input ~ label:after{background-color:#45A7EA;transform:scale(0.67);opacity:1 !important}html.honeywell-dark-theme .ui.radio.checkbox.checked input:focus ~ .box:before,html.honeywell-dark-theme .ui.radio.checkbox.checked input:focus ~ label:before{background-color:#303030}html.honeywell-dark-theme .ui.radio.checkbox.checked input:focus ~ .box:after,html.honeywell-dark-theme .ui.radio.checkbox.checked input:focus ~ label:after{background-color:#45A7EA;opacity:1 !important}html.honeywell-dark-theme .ui.radio.checkbox input ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;line-height:1rem}html.honeywell-dark-theme .ui.disabled.checkbox .box:after,html.honeywell-dark-theme .ui.disabled.checkbox label,html.honeywell-dark-theme .ui.checkbox input[disabled] ~ .box:after,html.honeywell-dark-theme .ui.checkbox input[disabled] ~ label{opacity:1.0;cursor:not-allowed !important;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0}html.honeywell-dark-theme .ui.disabled.radio.checkbox label:before{background-color:#505050;border:.0625rem solid #b0b0b0}html.honeywell-dark-theme .star-rating{display:flex;align-items:baseline}@keyframes pop{from{transform:scale(0, 0)}to{transform:scale(1, 1)}}html.honeywell-dark-theme .star-rating .spacing{margin-left:calc(.5rem / 2)}html.honeywell-dark-theme .star-rating .edit-mode svg{display:flex;align-items:baseline}html.honeywell-dark-theme .star-rating .edit-mode svg:hover{transition:all 0.1s ease;transform:scale(1.2, 1.2)}html.honeywell-dark-theme .star-rating .stars-container{display:flex;justify-content:flex-start;align-content:flex-end;position:relative}html.honeywell-dark-theme .star-rating .stars-container .icon-wrapper{position:absolute;top:0}html.honeywell-dark-theme .star-rating .stars-container .icon-wrapper .icon{cursor:default;display:flex;align-items:baseline;overflow:hidden;padding:0px !important}html.honeywell-dark-theme .star-rating .stars-container .icon-wrapper .icon.edit-mode:hover{transition:all 0.1s ease;transform:scale(1.2, 1.2)}html.honeywell-dark-theme .star-rating .stars-container .icon-wrapper .icon.edit-mode.unfilled{opacity:0}html.honeywell-dark-theme .star-rating .stars-container .unfilled-icon-wrapper{cursor:default}html.honeywell-dark-theme .star-rating .stars-container .unfilled-icon-wrapper .icon{cursor:default;display:flex;align-items:baseline;padding:0px !important}html.honeywell-dark-theme .star-rating .stars-container .unfilled-icon-wrapper .icon.hide-unfilled{opacity:0}html.honeywell-dark-theme .star-rating .rating-value{line-height:normal}html.honeywell-dark-theme .star-rating .rating-value.pop{animation:pop 0.5s forwards}html.honeywell-dark-theme .ui.search-wrap{position:relative;display:inline-block}html.honeywell-dark-theme .ui.search-wrap.error .ui.search.ui-search+.search-icon{border-left:.0625rem solid #F15A4F}html.honeywell-dark-theme .ui.search-wrap.disabled .ui.search.ui-search+.search-icon{background-color:#606060 !important;cursor:not-allowed !important}html.honeywell-dark-theme .ui.search-wrap .ui.focus.search.ui-search+.search-icon{color:#fff !important;background:#45A7EA}html.honeywell-dark-theme .ui.search-wrap .search-icon{display:flex;align-items:center;height:2.375rem;color:#fff;position:absolute;right:0;top:0;background:#707070;opacity:1;padding:.5rem .75rem;transition:background 150ms ease-in;cursor:pointer}html.honeywell-dark-theme .ui.search-wrap .search-icon:hover{background-color:#45A7EA !important}html.honeywell-dark-theme .ui.search-wrap .search-icon:active{background-color:#8BC8F2 !important}html.honeywell-dark-theme .ui.search-wrap.disabled{background:#505050}html.honeywell-dark-theme .ui.search-wrap.disabled .disabled{opacity:1;cursor:not-allowed !important}html.honeywell-dark-theme .ui.search-wrap.disabled .disabled input{cursor:not-allowed !important;background:#505050 !important;color:#a0a0a0 !important}html.honeywell-dark-theme .ui.search-wrap.error .ui-search .input input.prompt{border:.0625rem solid #F15A4F !important}html.honeywell-dark-theme .ui.search-wrap .close-icon{position:absolute;right:2.75rem;top:.4375rem;z-index:2;color:#fff;transition:color 0.1s linear;cursor:pointer}html.honeywell-dark-theme .ui.search-wrap .close-icon:hover{color:#d0d0d0}html.honeywell-dark-theme .ui.search-wrap .close-icon:active{color:#b0b0b0}html.honeywell-dark-theme .ui.search-wrap .close-icon.disabled{color:#b0b0b0}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search{position:relative}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .ui.icon.input .search.icon{display:none}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;background:#303030;border:#707070 .0625rem solid;border-radius:0;color:#e0e0e0;height:2.375rem;transition:border-color 150ms ease-in;box-sizing:border-box;padding:.6875rem .4375rem;margin:0em;text-shadow:none;padding-right:4rem !important}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt{line-height:.875rem !important}}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt:focus{border-color:#45A7EA;outline:none}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic;line-height:.875rem !important}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .prompt:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible{display:block;font-weight:normal;left:0%;background:#303030;margin-top:-0.0625rem;border-radius:0;min-width:368px;border:.0625rem solid #606060;border-top:.0625rem solid #45A7EA;box-shadow:none;width:auto;top:2.375rem}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .message.empty .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .result{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;background:#303030;margin-left:0px;border-bottom:none;border-left:none;padding:.5rem .75rem;box-sizing:border-box;border-bottom:none;border-radius:0px;z-index:900}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .result .title{font-weight:400}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .result:hover{background:#404040}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .result .result-icon{font-size:.75rem;line-height:.75rem;position:relative;top:0.125rem;margin-right:.5rem}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .category{border-bottom:#606060 .0625rem solid;padding-bottom:.5rem;background:#303030}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .category .results{border-top:none}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .category .name{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#a0a0a0;text-transform:uppercase;display:block;width:100%;float:none;background:#303030;padding-top:.75rem;padding-bottom:.125rem}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .results.visible .category:last-child{border-bottom:none;margin-bottom:none}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .ui.input{min-width:368px}html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .ui.input.focus input,html.honeywell-dark-theme .ui.search-wrap .ui.search.ui-search .ui.input input:focus{border-color:#45A7EA}html.honeywell-dark-theme .ui.search-wrap .ui.active.visible.focus.search.ui.search .ui.icon.input .search.icon,html.honeywell-dark-theme .ui.search-wrap .ui.category.focus.search.ui.search .ui.icon.input .search.icon,html.honeywell-dark-theme .ui.search-wrap .ui.active.visible.category.focus.search.ui.search .ui.icon.input .search.icon,html.honeywell-dark-theme .ui.search-wrap .ui.focus.search.ui.search .ui.icon.input .search.icon{background:#45A7EA !important;border-radius:0 !important}html.honeywell-dark-theme .ui.search-wrap .ui.active.visible.focus.search.ui.search .ui.icon.input .search.icon::before,html.honeywell-dark-theme .ui.search-wrap .ui.category.focus.search.ui.search .ui.icon.input .search.icon::before,html.honeywell-dark-theme .ui.search-wrap .ui.active.visible.category.focus.search.ui.search .ui.icon.input .search.icon::before,html.honeywell-dark-theme .ui.search-wrap .ui.focus.search.ui.search .ui.icon.input .search.icon::before{color:#fff !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:inline-block;vertical-align:top;z-index:1;width:12rem;cursor:pointer}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.expanded{z-index:2}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.error .label{border:.0625rem solid #F15A4F}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.error .label:first-child{border-right:none}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.error .label:last-child{border-left:none}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.error input{border-color:#F15A4F;background-color:#303030}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.fluid{display:block;width:100%}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.disabled{cursor:not-allowed}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.disabled .ui.disabled.dropdown{opacity:1;background:#505050}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.disabled .ui.disabled.dropdown i.icon{color:#a0a0a0}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper p.error-message{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#F15A4F;font-weight:600;margin-top:.125rem}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;padding:.438rem .5rem .438rem .75rem;border:#707070 .0625rem solid;max-height:2.5rem;border-radius:0;background:#303030;min-width:100%}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu .message,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu .message,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu .message{color:#a0a0a0}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item:hover,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item:hover,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item:hover{background-color:#404040}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.disabled.item:hover,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.disabled.item:hover,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.disabled.item:hover{background-color:#303030 !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;border:none;padding:.5rem .5rem .5rem .75rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item i.icon,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item i.icon,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item i.icon{margin-right:0 !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon{float:right;color:#fff;height:1rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.default.text,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown>.default.text,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled>.default.text{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic;color:#a0a0a0 !important;padding-right:.5rem}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;border:none;padding:.5rem .5rem .5rem .75rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item i.icon,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item i.icon,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item i.icon{margin-right:0 !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item .select-highlight,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item .select-highlight,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item .select-highlight{font-weight:700}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.label,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown>.label,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled>.label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;display:inline-flex;word-break:break-all;line-height:.875rem;margin:0px;background:#404040;padding:.125rem .25rem;padding-right:.125rem;border-radius:0px;position:relative;box-shadow:none;margin-right:.5rem;margin-bottom:.25rem}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.label:last-of-type,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown>.label:last-of-type,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled>.label:last-of-type{margin-right:0}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.chevron,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.chevron,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.chevron{font-family:"Honeywell-Icons" !important;font-size:.5rem}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.chevron:before,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.chevron:before,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.chevron:before{content:"\EA59" !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.delete,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.delete,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.delete{position:relative;font-family:"Honeywell-Icons" !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.delete:before,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.delete:before,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.delete:before{content:"\EA55" !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.delete:before,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.delete:before,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.delete:before{color:#a0a0a0;font-size:.5rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown.error,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown.error,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled.error{border:.0625rem solid #F15A4F}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown.fluid,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown.fluid,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled.fluid{width:100% !important;max-width:100% !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown{max-width:100%}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.text{max-width:calc(100% - 1rem);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 !important;padding-right:.5rem}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.no-chevron i.chevron.down.icon{display:none}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content i.chevron.down.icon{position:absolute;right:.5rem;top:.5rem}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.multiple.selection.dropdown{max-height:none !important;padding-bottom:.188rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content:not(.no-chevron)>.ui.multiple.selection.dropdown{padding-right:2rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper .ui.selection.dropdown:not(.search)>input.search{top:0;color:#e0e0e0 !important;width:100%;margin:0;position:absolute;padding:.562rem 2rem .562rem .75rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper .ui.selection.dropdown.search input.search{color:#e0e0e0;line-height:1rem}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper .ui.selection.dropdown.multiple>input.search{position:relative;top:-.125rem;margin-left:0}html.honeywell-dark-theme .ui.active.visible.selection.dropdown{border:.0625rem solid #45A7EA}html.honeywell-dark-theme .ui.active.visible.selection.dropdown .selected.item{background-color:#404040;word-break:break-all}html.honeywell-dark-theme .ui.active.visible.selection.dropdown .selected.item>.default.text{font-weight:400}html.honeywell-dark-theme .ui.active.visible.selection.dropdown .visible.menu.transition{display:inherit;background:#303030;border:.0625rem solid #45A7EA;border-radius:0;margin-left:-.0625rem;width:calc(100% + .125rem)}html.honeywell-dark-theme .ui.active.visible.selection.dropdown .visible.menu.transition :last-child{margin-bottom:0 !important}html.honeywell-dark-theme .ui.active.visible.selection.dropdown.error .visible.menu.transition{border:.0625rem solid #F15A4F}html.honeywell-dark-theme .ui.active.visible.selection.multiple.dropdown{border:1px solid #45A7EA}html.honeywell-dark-theme .ui.active.visible.selection.multiple.dropdown .selected.item{background-color:initial}html.honeywell-dark-theme .ui.active.visible.selection.multiple.dropdown .selected.item>.default.text{font-weight:400}html.honeywell-dark-theme .ui.active.visible.selection.multiple.dropdown .visible.menu.transition{background:#303030;border:.0625rem solid #45A7EA;border-radius:0;margin-left:-.0625rem;width:calc(100% + .125rem)}html.honeywell-dark-theme .ui.active.visible.selection.multiple.dropdown .visible.menu.transition :last-child{margin-bottom:0 !important}html.honeywell-dark-theme .ui.dropdown>.text{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0}html.honeywell-dark-theme .ui.dropdown.error,html.honeywell-dark-theme .ui.dropdown.error>.text,html.honeywell-dark-theme .ui.dropdown.error>.default.text{color:#e0e0e0 !important}html.honeywell-dark-theme .ui.selection.visible.dropdown>.text:not(.default){font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0}html.honeywell-dark-theme .ui.active.visible.selection.dropdown i.icon.down,html.honeywell-dark-theme .ui.active.visible.selection.dropdown.multiple i.icon.down{font-family:"Honeywell-Icons" !important;font-size:.5rem}html.honeywell-dark-theme .ui.active.visible.selection.dropdown i.icon.down:before,html.honeywell-dark-theme .ui.active.visible.selection.dropdown.multiple i.icon.down:before{content:"\EA3D" !important}html.honeywell-dark-theme .ui.active.visible.selection.dropdown i.icon.down::before,html.honeywell-dark-theme .ui.active.visible.selection.dropdown.multiple i.icon.down::before{color:#fff}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple{max-height:none !important;padding-bottom:0.188rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.search,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.search{padding-bottom:0.1rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.disabled,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.disabled{max-height:none !important;padding-bottom:0.188rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.disabled.search,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.disabled .selection,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.disabled.search,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.disabled .selection{padding-bottom:0.1rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.multiple.disabled>div.default.text{max-width:calc(100% - 1rem);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.search.selection>.text.filtered,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.search.selection>.text.filtered{margin-bottom:1.2rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.multiple.selection,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.selection{padding-bottom:0.438rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper>.ui.dropdown.multiple.selection.search,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.selection.search{padding-bottom:.1rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.disabled.multiple:not(.search),html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.disabled.multiple:not(.search){padding-bottom:0.438rem !important}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.disabled.multiple:not(.search)>.text.default,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.disabled.multiple:not(.search)>.text.default{margin:0}html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.disabled>.default.text,html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.disabled>.default.text{line-height:1.5rem}html.honeywell-dark-theme .sidebar-layout>.content{flex:1 1 auto}html.honeywell-dark-theme .sidebar-layout{overflow-x:hidden}html.honeywell-dark-theme .sidebar-layout>.sidebar{width:14.25rem;flex-shrink:0;transition:width 300ms ease-in;background:#000;color:#fff;overflow-x:hidden;z-index:2;border-right:#606060 .0625rem solid}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.vertical.menu{height:100%}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.vertical.menu .item:before{display:none}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu{width:14.25rem;background:transparent}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;color:#fff;font-size:.875rem;line-height:1.375rem;font-weight:400;text-transform:capitalize;border-left:0.25rem solid transparent;display:flex;align-items:center;padding:.75rem 1rem;transition:color 100ms ease-in, background-color 100ms ease-in}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item .badged-icon .badge{visibility:hidden}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item .sidebar-icon{margin-right:1rem}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item>.sidebar-label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;color:#fff;font-size:.875rem;line-height:1.375rem;font-weight:400;opacity:1;flex-grow:1;transition:opacity 300ms ease-in}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item>.open-indicator{opacity:1;padding-left:.5rem;transition:opacity 300ms ease-in}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item.active{border-color:#45A7EA}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item.active .sidebar-label{font-weight:700}html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item:hover,html.honeywell-dark-theme .sidebar-layout>.sidebar .ui.menu .item.active{color:#fff;background:#404040}html.honeywell-dark-theme .sidebar-layout.collapse>.sidebar{width:3.5rem}html.honeywell-dark-theme .sidebar-layout.collapse>.sidebar .ui.menu .item .sidebar-label,html.honeywell-dark-theme .sidebar-layout.collapse>.sidebar .ui.menu .item .open-indicator{opacity:0}html.honeywell-dark-theme .sidebar-layout.collapse>.sidebar .ui.menu .item .badged-icon .badge{visibility:visible}html.honeywell-dark-theme .sidebar-layout.collapse.compressed>.sidebar,html.honeywell-dark-theme .sidebar-layout.collapse.no-icons>.sidebar{width:0;transform:translateX(-.0625rem)}html.honeywell-dark-theme .sidebar-layout.collapse.compressed>.sidebar .ui.menu .item .badge,html.honeywell-dark-theme .sidebar-layout.collapse.no-icons>.sidebar .ui.menu .item .badge{visibility:hidden}html.honeywell-dark-theme .sidebar-layout>.sidebar .menu .submenu.open{background-color:#404040}html.honeywell-dark-theme .sidebar-layout>.sidebar .menu .submenu.open>.ui.menu{display:block;background:#303030}html.honeywell-dark-theme .sidebar-layout>.sidebar .menu .submenu>.ui.menu{display:none}html.honeywell-dark-theme .sidebar-layout{width:100%;display:flex;position:relative}html.honeywell-dark-theme .sidebar-layout.compressed{overflow:hidden}html.honeywell-dark-theme .sidebar-layout.compressed>.content{position:relative;min-width:100vw;z-index:1;left:0}html.honeywell-dark-theme .ui.slider .rc-slider-handle{position:relative;height:.875rem;width:.875rem;margin-top:0px;border:none;background-color:#e0e0e0;background-color:#606060;transform:translate(-50%, -50%);bottom:-1px;height:1rem;width:1rem}html.honeywell-dark-theme .ui.slider .rc-slider-handle .slider-handle-tooltip{display:none;position:absolute;left:50%;top:-.25rem;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;font-weight:700;color:#000;padding:.125rem .5rem;background-color:#e0e0e0;transform:scale(0.75) translate(-66%, -1.8rem)}html.honeywell-dark-theme .ui.slider .rc-slider-handle .slider-handle-tooltip:before{content:'';border-left:5px solid transparent;border-top:5px solid #e0e0e0;border-right:5px solid transparent;left:50%;bottom:0;position:absolute;transform:translate(-50%, 75%)}html.honeywell-dark-theme .ui.slider .rc-slider-handle:hover{transform:scale(1.25) translate(-50%, -40%);transform-origin:center}html.honeywell-dark-theme .ui.slider .rc-slider-handle:hover .slider-handle-tooltip{display:block}html.honeywell-dark-theme .ui.slider .rc-slider-handle:focus{box-shadow:unset}html.honeywell-dark-theme .ui.slider .rc-slider-handle:nth-of-type(2n+1){transform:translate(-100%, -50%)}html.honeywell-dark-theme .ui.slider .rc-slider-handle:nth-of-type(2n+1):hover{transform:scale(1.25) translate(-100%, -40%);transform-origin:center}html.honeywell-dark-theme .ui.slider-wrap .ui.slider{position:relative;display:flex;justify-content:center;align-items:center;width:min-content}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .from-input{margin-right:1rem}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider{width:296px;height:3px;padding:0;display:flex}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider .rc-slider-rail{background-color:#606060;height:3px;background-color:#000}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider .rc-slider-track{background-color:#e0e0e0;height:3px;background-color:#606060}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider .rc-slider-step .rc-slider-dot{height:3px;width:3px;margin-left:0px;background-color:#e0e0e0;border:none;bottom:1px;background-color:#606060}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider .rc-slider-step .rc-slider-dot:last-child{transform:translateX(-3px)}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-handle,html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-track,html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider:active .slider-handle-tooltip{background-color:#45A7EA}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-handle{transform:scale(1.25) translate(-50%, -40%)}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-handle:nth-of-type(2n+1){transform:scale(1.25) translate(-100%, -40%)}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider:active .slider-handle-tooltip{display:block}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider:active .slider-handle-tooltip:before{border-top-color:#45A7EA}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-handle,html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-track,html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-rail,html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-step .rc-slider-dot{background-color:#606060}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-handle:hover{transform:translateY(-50%) translateX(-50%)}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-handle:nth-of-type(2n+1){transform:translate(-50%, -50%)}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .slider-handle-tooltip{display:none}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled:active .rc-slider-handle{transform:scale(1) translateY(-50%) translateX(-50%)}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .input-label{margin-right:1rem}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .ui.single-input .input-wrap .input-box{width:calc(2.5rem + .25rem)}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .ui.single-input .input-wrap input[type='number']::-webkit-inner-spin-button,html.honeywell-dark-theme .ui.slider-wrap .ui.slider .ui.single-input .input-wrap input[type='number']::-webkit-outer-spin-button{-webkit-appearance:none}html.honeywell-dark-theme .ui.slider-wrap .ui.slider .max-value{margin:0 .5rem 0 1rem}html.honeywell-dark-theme .ui.slider-wrap.fluid{width:100%}html.honeywell-dark-theme .ui.slider-wrap.fluid .ui.slider,html.honeywell-dark-theme .ui.slider-wrap.fluid .ui.slider .rc-slider{width:100%}html.honeywell-dark-theme .ui.statistic .red{color:#ee3124 !important}html.honeywell-dark-theme .ui.statistic .orange{color:#f37021 !important}html.honeywell-dark-theme .ui.statistic .yellow{color:#ffC627 !important}html.honeywell-dark-theme .ui.statistic .green{color:#7eb338 !important}html.honeywell-dark-theme .ui.statistic .blue{color:#1792e5 !important}html.honeywell-dark-theme .ui.statistic .purple{color:#9b59b6 !important}html.honeywell-dark-theme .ui.statistic .grey{color:#707070 !important}html.honeywell-dark-theme .ui.statistic .black{color:#303030 !important}html.honeywell-dark-theme .ui.statistic .white{color:#f7f7f7 !important}html.honeywell-dark-theme .ui.statistic{margin:0px !important;padding:0px;padding-left:2.5rem;padding-right:2.5rem;padding-top:1rem;vertical-align:bottom}html.honeywell-dark-theme .ui.statistic.fluid{padding-left:1rem;padding-right:1rem;width:100%}html.honeywell-dark-theme .ui.statistic+.ui.statistic{padding-left:0px}html.honeywell-dark-theme .ui.statistic>.value.vertically{display:flex}html.honeywell-dark-theme .ui.statistic>.value.vertically .vertically{display:left}html.honeywell-dark-theme .ui.statistic>.value.vertically .vertically.value{line-height:2.5rem}html.honeywell-dark-theme .ui.statistic>.value{text-align:center;align-items:center;padding:0px;margin:0px;padding-top:.25rem;padding-bottom:.125rem}html.honeywell-dark-theme .ui.statistic>.value .h-icon{color:#b0b0b0;padding:0px !important;margin:0px !important}html.honeywell-dark-theme .ui.statistic>.value .h-icon.tiny{font-size:.75rem !important;width:.75rem !important;height:.75rem !important}html.honeywell-dark-theme .ui.statistic>.value .h-icon.small{font-size:1.5rem !important;width:1.5rem !important;height:1.5rem !important}html.honeywell-dark-theme .ui.statistic>.value .h-icon.huge{font-size:2.5rem !important;width:2.5rem !important;height:2.5rem !important}html.honeywell-dark-theme .ui.statistic>.value .h-icon::before{top:0px}html.honeywell-dark-theme .ui.statistic>.value .uom{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:400;font-size:1rem;margin-left:.125rem;color:#e0e0e0}html.honeywell-dark-theme .ui.statistic>.value .value{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:800;text-transform:none;color:#e0e0e0}html.honeywell-dark-theme .ui.statistic>.value .h-icon+.value:not(.vertically){margin-top:.25rem}html.honeywell-dark-theme .ui.statistic>.value .h-icon+.value.vertically{margin-left:.25rem}html.honeywell-dark-theme .ui.statistic>.value .value:not(.vertically)+.h-icon{margin-top:.25rem}html.honeywell-dark-theme .ui.statistic>.value .value.vertically+.h-icon{margin-left:.25rem}html.honeywell-dark-theme .ui.statistic>.value .roundedIcon{border-radius:2.5rem;overflow:hidden}html.honeywell-dark-theme .ui.tiny.statistic>.value{font-size:.75rem !important}html.honeywell-dark-theme .ui.small.statistic>.value{font-size:1rem !important}html.honeywell-dark-theme .ui.huge.statistic>.value{font-size:1.5rem !important}html.honeywell-dark-theme .ui.statistic>.label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:600;text-transform:none;text-align:center;font-size:.75rem;color:silver}html.honeywell-dark-theme .ui.statistic>.label .indicator{margin-right:.125rem}html.honeywell-dark-theme .ui.statistic>.label .up-arrow{transform:rotate(180deg);display:inline-block}html.honeywell-dark-theme .ui.statistic>.label.title{font-size:0.875rem}html.honeywell-dark-theme .steps.ui{border:0px;background:#303030;border-radius:0}html.honeywell-dark-theme .steps.ui a.item,html.honeywell-dark-theme .steps.ui .link.item{background:#303030;padding:1rem !important;border-top:#606060 .0625rem solid;border-bottom:#606060 .0625rem solid;border-left:#606060 .0625rem solid;border-right:0 !important;height:96px;color:#e0e0e0 !important}html.honeywell-dark-theme .steps.ui a.item .h-icon,html.honeywell-dark-theme .steps.ui .link.item .h-icon{padding-right:1rem !important;margin:initial}html.honeywell-dark-theme .steps.ui a.item:before,html.honeywell-dark-theme .steps.ui .link.item:before{color:#e0e0e0 !important}html.honeywell-dark-theme .steps.ui a.item:after,html.honeywell-dark-theme .steps.ui .link.item:after{background:#303030;border-color:#606060}html.honeywell-dark-theme .steps.ui a.item .description,html.honeywell-dark-theme .steps.ui a.item .title,html.honeywell-dark-theme .steps.ui .link.item .description,html.honeywell-dark-theme .steps.ui .link.item .title{color:#e0e0e0}html.honeywell-dark-theme .steps.ui a.item:hover,html.honeywell-dark-theme .steps.ui .link.item:hover{background:#404040 !important}html.honeywell-dark-theme .steps.ui a.item:hover:after,html.honeywell-dark-theme .steps.ui .link.item:hover:after{background:#404040 !important}html.honeywell-dark-theme .steps.ui a.item .content,html.honeywell-dark-theme .steps.ui .link.item .content{background:transparent !important}html.honeywell-dark-theme .steps.ui a.item:last-child,html.honeywell-dark-theme .steps.ui .link.item:last-child{border-radius:0;border-right:#606060 .0625rem solid !important}html.honeywell-dark-theme .steps.ui a.item:first-child,html.honeywell-dark-theme .steps.ui .link.item:first-child{border-radius:0}html.honeywell-dark-theme .steps.ui a.item.step.disabled,html.honeywell-dark-theme .steps.ui .link.item.step.disabled{color:#606060 !important}html.honeywell-dark-theme .steps.ui a.item.step.disabled .description,html.honeywell-dark-theme .steps.ui a.item.step.disabled .content,html.honeywell-dark-theme .steps.ui a.item.step.disabled .title,html.honeywell-dark-theme .steps.ui .link.item.step.disabled .description,html.honeywell-dark-theme .steps.ui .link.item.step.disabled .content,html.honeywell-dark-theme .steps.ui .link.item.step.disabled .title{color:#606060 !important}html.honeywell-dark-theme .steps.ui a.item.step.disabled:before,html.honeywell-dark-theme .steps.ui .link.item.step.disabled:before{color:#606060 !important}html.honeywell-dark-theme .steps.ui a.item.step.completed:before{font-family:'Honeywell-Icons' !important;content:'\EA56';font-size:1.5rem;font-weight:initial;color:#7eb338 !important;margin-right:.75rem;position:relative;top:-2px}html.honeywell-dark-theme .steps.ui a.item.step.active,html.honeywell-dark-theme .steps.ui .link.item.step.active{background:#404040 !important}html.honeywell-dark-theme .steps.ui a.item.step.active:after,html.honeywell-dark-theme .steps.ui .link.item.step.active:after{background:#404040 !important}html.honeywell-dark-theme .steps.ui a.item.step.active .content,html.honeywell-dark-theme .steps.ui .link.item.step.active .content{background:transparent !important}html.honeywell-dark-theme .steps.ui.vertical .link.item,html.honeywell-dark-theme .steps.ui.vertical a.item{border-right:#606060 .0625rem solid !important;border-left:#606060 .0625rem solid;border-bottom:0}html.honeywell-dark-theme .steps.ui.vertical .link.item:hover,html.honeywell-dark-theme .steps.ui.vertical a.item:hover{background:#404040 !important}html.honeywell-dark-theme .steps.ui.vertical .item:last-child{border-bottom:#606060 .0625rem solid}html.honeywell-dark-theme .h-icon.common{display:inline-block;vertical-align:middle;margin:none;font-family:'Honeywell-Icons' !important;font-size:1rem;speak:none;font-style:normal !important;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-transform:none !important;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu{background-color:transparent;border-bottom:none}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;margin-right:1rem;padding:0;padding-top:.5rem;padding-bottom:.25rem;min-width:4rem;max-width:20rem;border-bottom:.125rem solid transparent;margin-bottom:0;display:block;box-sizing:content-box;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu .item:after{content:attr(title);position:relative;display:block;height:0px;color:transparent;transform:none;visibility:hidden;top:auto;left:auto;transform:none;background:none;margin:0;border:none;overflow:hidden;width:auto;transition:none}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu .item:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu .link.item:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu .active.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;border-bottom:.125rem solid #45A7EA}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu .disabled.item{color:#606060}html.honeywell-dark-theme div.ui.pointing.secondary.ui.scuf-tab.menu .disabled.item:hover{color:#606060;cursor:not-allowed}html.honeywell-dark-theme .ui.label.badge.inTab.circle-padding{padding:0 0 !important}html.honeywell-dark-theme .ui.sortable.table thead th{border:none}html.honeywell-dark-theme .ui.table,html.honeywell-dark-theme .ui.sortable{border:#606060 .0625rem solid;border-radius:0px}html.honeywell-dark-theme .ui.table thead th,html.honeywell-dark-theme .ui.sortable thead th{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#a0a0a0;background-color:#303030;padding:.75rem 1.5rem .75rem 1rem;text-transform:uppercase;border-bottom:#606060 .0625rem solid}html.honeywell-dark-theme .ui.table thead th.right,html.honeywell-dark-theme .ui.sortable thead th.right{padding:.75rem 1rem .75rem 1.5rem}html.honeywell-dark-theme .ui.table tfoot th,html.honeywell-dark-theme .ui.sortable tfoot th{background-color:#303030}html.honeywell-dark-theme .ui.table tr td,html.honeywell-dark-theme .ui.sortable tr td{border:none;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;vertical-align:top;padding:.75rem 1.5rem .75rem 1rem}html.honeywell-dark-theme .ui.table tr td i,html.honeywell-dark-theme .ui.sortable tr td i{position:relative;top:-.125rem}html.honeywell-dark-theme .ui.table tr td .checkbox,html.honeywell-dark-theme .ui.sortable tr td .checkbox{margin-right:.5rem;margin-bottom:0}html.honeywell-dark-theme .ui.table tr td.right,html.honeywell-dark-theme .ui.sortable tr td.right{padding:.75rem 1rem .75rem 1.5rem}html.honeywell-dark-theme .ui.table tr td .badge,html.honeywell-dark-theme .ui.sortable tr td .badge{margin-bottom:.125rem !important;margin-left:-.75rem;margin-right:.25rem}html.honeywell-dark-theme .ui.table tr a,html.honeywell-dark-theme .ui.sortable tr a{cursor:pointer;color:#45A7EA}html.honeywell-dark-theme .ui.striped.table,html.honeywell-dark-theme .ui.striped.table tbody tr{background-color:#303030}html.honeywell-dark-theme .ui.striped.table>tr:nth-child(2n),html.honeywell-dark-theme .ui.striped.table tbody tr:nth-child(2n){background-color:#202020}html.honeywell-dark-theme .ui.sortable.table thead th:hover,html.honeywell-dark-theme .ui.sortable.table thead th.sorted{background-color:#404040 !important}html.honeywell-dark-theme .scuf-textarea-wrapper{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:inline-block;vertical-align:top}html.honeywell-dark-theme .scuf-textarea-wrapper textarea{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;min-height:6.875rem;min-width:368px;border:#707070 .0625rem solid;border-radius:0px;padding:.6875rem .4375rem;display:block;background-color:#303030;cursor:initial !important}html.honeywell-dark-theme .scuf-textarea-wrapper textarea:focus{border-color:#45A7EA;border-radius:0px;box-shadow:none;outline:0}html.honeywell-dark-theme .scuf-textarea-wrapper textarea:disabled{background-color:#505050;color:#a0a0a0 !important;overflow:hidden}html.honeywell-dark-theme .scuf-textarea-wrapper textarea::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .scuf-textarea-wrapper textarea::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .scuf-textarea-wrapper textarea:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .scuf-textarea-wrapper textarea:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .scuf-textarea-wrapper textarea:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .scuf-textarea-wrapper textarea:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#a0a0a0;font-style:italic}html.honeywell-dark-theme .scuf-textarea-wrapper.error textarea{border:.0625rem solid #F15A4F}html.honeywell-dark-theme .scuf-textarea-wrapper ::-webkit-scrollbar{width:.5rem}html.honeywell-dark-theme .scuf-textarea-wrapper ::-webkit-scrollbar-thumb{border-radius:0px;background-color:silver}html.honeywell-dark-theme .scuf-textarea-wrapper.fluid{display:block}html.honeywell-dark-theme .scuf-textarea-wrapper.fluid textarea{width:100%}html.honeywell-dark-theme .ui.tooltip{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#e0e0e0;color:#000;border:none;cursor:default;padding:.5rem;transition:stroke 150ms;text-align:left;box-shadow:0 12px 24px 0 rgba(0,0,0,0.5);stroke-width:0;border-radius:0px;pointer-events:none;background-color:#e0e0e0}html.honeywell-dark-theme .ui.tooltip:before{border:none !important;box-shadow:0 12px 24px 0 rgba(0,0,0,0.5) !important;background:#e0e0e0 !important}html.honeywell-dark-theme .tree-content{overflow:auto}html.honeywell-dark-theme .tree-content .mouse-pointer{cursor:pointer !important;display:flex;justify-content:flex-start !important;align-items:center}html.honeywell-dark-theme .tree-content .tree-item .content{display:flex;font-size:.75rem;flex-direction:row}html.honeywell-dark-theme .tree-content .tree-item .content:hover{background:#404040}html.honeywell-dark-theme .tree-content .tree-item .content .left-content{display:flex;align-items:center;width:100%}html.honeywell-dark-theme .tree-content .tree-item .content .left-content .h-icon,html.honeywell-dark-theme .tree-content .tree-item .content .left-content .indent{padding:.5rem 0 .5rem 0;margin-left:1rem}html.honeywell-dark-theme .tree-content .tree-item .content .left-content .title{width:100%;justify-content:end;padding:.5rem 0 .5rem 0}html.honeywell-dark-theme .tree-content .tree-item .content .right-content{display:flex;align-items:center;padding:.5rem 1rem .5rem 0}html.honeywell-dark-theme .tree-content .tree-item .content .right-content .h-icon{margin:initial !important}html.honeywell-dark-theme .tree-content .tree-item .content .h-icon{margin:initial;font-size:.75rem;width:1.5rem;margin-right:.5rem}html.honeywell-dark-theme .tree-content .tree-item .content .item-image{width:1.5rem;height:1.5rem;background-position:center;background-size:cover;background-repeat:no-repeat;text-transform:uppercase;margin-right:.5rem}html.honeywell-dark-theme .tree-content .tree-item .content.active{background:#404040;color:#e0e0e0}html.honeywell-dark-theme .tree-content .tree-item .content.active .h-icon.caret-up{color:#fff}html.honeywell-dark-theme .tree-content .tree-item .has-children .h-icon,html.honeywell-dark-theme .tree-content .tree-item .has-children .indent{padding:0 !important;margin-left:0 !important}html.honeywell-dark-theme .tree-content .tree-item .has-children .left-content{padding:0}html.honeywell-dark-theme .tree-content .tree-item .has-children .caret{padding:.5rem 0 .5rem 1rem}html.honeywell-dark-theme .tree-content .tree-item .has-children .title{padding:.5rem 0 .5rem 0}html.honeywell-dark-theme .tree-content .tree-item .custom-renderer{padding:.5rem 1rem .5rem 0}html.honeywell-dark-theme .tree-content .tree-item .child-open{min-width:max-content}html.honeywell-dark-theme .tree-content .tree-item .child-open .left-content .indent{padding-left:1rem;margin-left:0 !important}html.honeywell-dark-theme .tree-content .tree-item .child-open .left-content .h-icon{margin-left:0 !important}html.honeywell-dark-theme .tree-content .tree-item .child-open .has-children .left-content{padding:0 !important}html.honeywell-dark-theme .tree-content .tree-item .child-open .has-children .caret{padding-left:0}html.honeywell-dark-theme .tree-content .tree-item .child-open .has-children .title{padding:.5rem 0 .5rem 0}html.honeywell-dark-theme .tree-content .tree-item .child-close{display:none}html.honeywell-dark-theme .tree-content .tree-item .item-loader{position:relative;display:inline-flex;top:1rem;height:2rem}html.honeywell-dark-theme .tree-content .tree-item .item-loader .ui.loader-wrap{position:relative}html.honeywell-dark-theme .tree-content .tree-item .item-loader .ui.loader-wrap .loader,html.honeywell-dark-theme .tree-content .tree-item .item-loader .ui.loader-wrap .loader:before,html.honeywell-dark-theme .tree-content .tree-item .item-loader .ui.loader-wrap .loader:after{width:1.5rem !important;height:1.5rem !important}html.honeywell-dark-theme .ui.tree.nav-tree{border:#606060 .0625rem solid;background:#000}html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content{position:relative}html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content:hover{background:#404040 !important}html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content.expanded,html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content.expanded ~ .child-open{background:#303030}html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content.expanded .has-children,html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content.expanded .has-children ~ .child-open,html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content.expanded ~ .child-open .has-children,html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content.expanded ~ .child-open .has-children ~ .child-open{background:#000}html.honeywell-dark-theme .ui.tree.nav-tree .tree-item .content.active{background:#404040;border-left:.125rem solid #45A7EA}html.honeywell-dark-theme .tree-header{padding:1rem;display:flex;justify-content:space-between;align-items:center;border-bottom:#606060 .0625rem solid}html.honeywell-dark-theme .tree-header .header-actions{display:flex}html.honeywell-dark-theme .tree-header .header-actions>*{padding:0 .75rem}html.honeywell-dark-theme .tree-header .header-actions>*:first-child{padding-left:.5rem}html.honeywell-dark-theme .tree-header .header-actions>*:last-child{padding-right:0}html.honeywell-dark-theme .ui.tree{background-color:#303030;width:456px}html.honeywell-dark-theme .ui.tree .left-content>.indent{width:2.25rem}html.honeywell-dark-theme .ui.tree .left-content>.indent{width:2rem}html.honeywell-dark-theme .ui.menu.vertical-menu,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu{border-radius:0;box-shadow:0 1px 2px rgba(0,0,0,0.5);border:none;max-width:17rem;background-color:#303030}html.honeywell-dark-theme .ui.menu.vertical-menu .item,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;display:flex;align-items:center;max-height:3rem;padding:.5rem 0;border-radius:0 !important}html.honeywell-dark-theme .ui.menu.vertical-menu .item:before,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item:before{background:#606060;top:-1px}html.honeywell-dark-theme .ui.menu.vertical-menu .item .item-icon,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item .item-icon{color:#e0e0e0;margin:0 0 0 .75rem;display:inline-block;position:relative}html.honeywell-dark-theme .ui.menu.vertical-menu .item .content-wrap,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item .content-wrap{display:inline-block;padding:0 .75rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}html.honeywell-dark-theme .ui.menu.vertical-menu .item .item-icon+.content-wrap,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item .item-icon+.content-wrap{padding-left:.5rem !important}html.honeywell-dark-theme .ui.menu.vertical-menu .item:not(.disabled):hover,html.honeywell-dark-theme .ui.menu.vertical-menu .item:not(.disabled).active,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item:not(.disabled):hover,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item:not(.disabled).active{background:#404040 !important;border-radius:0 !important;color:#e0e0e0}html.honeywell-dark-theme .ui.menu.vertical-menu .item.disabled,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.disabled{color:#606060 !important;background-color:#303030 !important;background:#303030 !important;cursor:not-allowed}html.honeywell-dark-theme .ui.menu.vertical-menu .item.disabled .content-wrap,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.disabled .content-wrap{color:#606060}html.honeywell-dark-theme .ui.menu.vertical-menu .item.disabled .item-icon,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.disabled .item-icon{color:#b0b0b0}html.honeywell-dark-theme .ui.menu.vertical-menu .item.active>.item-icon,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.active>.item-icon{color:#606060}html.honeywell-dark-theme .ui.menu.vertical-menu .item.has-shortcut .content-wrap,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.has-shortcut .content-wrap{display:inline-block;width:50%}html.honeywell-dark-theme .ui.menu.vertical-menu .item.has-shortcut .shortcut-wrap,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.has-shortcut .shortcut-wrap{color:#e0e0e0;display:inline-block;width:50%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-left:.75rem;text-align:right;padding-right:.75rem}html.honeywell-dark-theme .ui.menu.vertical-menu .item.has-shortcut.disabled .shortcut-wrap,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.has-shortcut.disabled .shortcut-wrap{color:#606060}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu{align-items:center !important;position:relative !important;max-height:3rem !important;padding:.5rem 0 !important}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon{position:absolute;right:.75rem;font-family:"Honeywell-Icons" !important}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon:before,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon:before{content:"\EA57" !important}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right{min-width:12rem;top:-1px !important;border-radius:0 !important;background-color:#303030}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right>.item,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right>.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#e0e0e0;color:#e0e0e0 !important;display:flex;align-items:center;justify-content:flex-start;max-height:3rem;padding:.5rem 0 !important;border-radius:0 !important}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:before,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:before{visibility:visible;display:block;background:#606060;position:absolute;content:'';top:-1px;left:0px;width:100%;height:1px}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled):hover,html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled).active,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled):hover,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled).active{background:#404040 !important;border-radius:0 !important;color:#e0e0e0}html.honeywell-dark-theme .ui.menu.vertical-menu .header,html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#a0a0a0;line-height:1em;padding:.75rem .75rem .25rem .75rem;text-transform:uppercase}html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu{width:100% !important;border-bottom:1px solid #606060;position:relative;padding-bottom:.25rem;box-shadow:none}html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu:not(:last-child){margin-bottom:.25rem}html.honeywell-dark-theme .ui.menu.vertical-menu>.item+.ui.menu.vertical-menu:before{visibility:visible;display:block;background:#606060;position:absolute;content:'';top:-1px;left:0px;width:100%;height:1px}html.honeywell-dark-theme .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.menu.vertical-menu>.ui.menu.vertical-menu+.item::before{visibility:hidden}html.honeywell-dark-theme .ui.menu.vertical-menu.pointing>.item.active:after,html.honeywell-dark-theme .ui.menu.vertical-menu.pointing>.ui.menu.vertical-menu>.item.active:after{box-shadow:1px 1px 2px 0px rgba(0,0,0,0.1);background:#404040;border:none;width:.75rem;height:.75rem;transform:translateX(50%) translateY(-50%) rotate(-45deg);margin:0 !important}html.honeywell-dark-theme .ui.menu.vertical-menu.pointing>.item.active:hover:after,html.honeywell-dark-theme .ui.menu.vertical-menu.pointing>.ui.menu.vertical-menu>.item.active:hover:after{background:#404040}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu{justify-content:flex-start}html.honeywell-dark-theme .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon{position:absolute;right:1rem;display:flex;align-items:center;height:100%;top:0}}html:not(.honeywell-dark-theme){/*!
 * # Semantic UI 2.2.11 - Divider
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Header
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Input
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Label
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - List
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Loader
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Loader
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Step
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Table
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Item
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Statistic
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Accordion
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Checkbox
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Dimmer
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Dropdown
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Modal
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Popup
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Search
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 *//*!
 * # Semantic UI 2.2.11 - Sidebar
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}html:not(.honeywell-dark-theme) body{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;background:#f7f7f7}html:not(.honeywell-dark-theme) h1,html:not(.honeywell-dark-theme) h2,html:not(.honeywell-dark-theme) h3,html:not(.honeywell-dark-theme) h4,html:not(.honeywell-dark-theme) h5{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif}html:not(.honeywell-dark-theme) a{color:#1274B7}html:not(.honeywell-dark-theme) a:hover{color:#10659F}html:not(.honeywell-dark-theme) a:active{color:#1274B7}html:not(.honeywell-dark-theme) .ui.divider{margin:1rem 0rem;line-height:1;height:0em;font-weight:bold;text-transform:uppercase;letter-spacing:0.05em;color:rgba(0,0,0,0.85);user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}html:not(.honeywell-dark-theme) .ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(34,36,38,0.15);border-bottom:1px solid rgba(255,255,255,0.1)}html:not(.honeywell-dark-theme) .ui.grid>.column+.divider,html:not(.honeywell-dark-theme) .ui.grid>.row>.column+.divider{left:auto}html:not(.honeywell-dark-theme) .ui.horizontal.divider{display:table;white-space:nowrap;height:auto;margin:'';line-height:1;text-align:center}html:not(.honeywell-dark-theme) .ui.horizontal.divider:before,html:not(.honeywell-dark-theme) .ui.horizontal.divider:after{content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}html:not(.honeywell-dark-theme) .ui.horizontal.divider:before{background-position:right 1em top 50%}html:not(.honeywell-dark-theme) .ui.horizontal.divider:after{background-position:left 1em top 50%}html:not(.honeywell-dark-theme) .ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0rem;padding:0em;width:auto;height:50%;line-height:0em;text-align:center;transform:translateX(-50%)}html:not(.honeywell-dark-theme) .ui.vertical.divider:before,html:not(.honeywell-dark-theme) .ui.vertical.divider:after{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(34,36,38,0.15);border-right:1px solid rgba(255,255,255,0.1);width:0%;height:calc(100% -  1rem)}html:not(.honeywell-dark-theme) .ui.vertical.divider:before{top:-100%}html:not(.honeywell-dark-theme) .ui.vertical.divider:after{top:auto;bottom:0px}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.stackable.grid .ui.vertical.divider,html:not(.honeywell-dark-theme) .ui.grid .stackable.row .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;transform:none}html:not(.honeywell-dark-theme) .ui.stackable.grid .ui.vertical.divider:before,html:not(.honeywell-dark-theme) .ui.grid .stackable.row .ui.vertical.divider:before,html:not(.honeywell-dark-theme) .ui.stackable.grid .ui.vertical.divider:after,html:not(.honeywell-dark-theme) .ui.grid .stackable.row .ui.vertical.divider:after{position:static;left:0;border-left:none;border-right:none;content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}html:not(.honeywell-dark-theme) .ui.stackable.grid .ui.vertical.divider:before,html:not(.honeywell-dark-theme) .ui.grid .stackable.row .ui.vertical.divider:before{background-position:right 1em top 50%}html:not(.honeywell-dark-theme) .ui.stackable.grid .ui.vertical.divider:after,html:not(.honeywell-dark-theme) .ui.grid .stackable.row .ui.vertical.divider:after{background-position:left 1em top 50%}}html:not(.honeywell-dark-theme) .ui.divider>.icon{margin:0rem;font-size:1rem;height:1em;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.hidden.divider{border-color:transparent !important}html:not(.honeywell-dark-theme) .ui.hidden.divider:before,html:not(.honeywell-dark-theme) .ui.hidden.divider:after{display:none}html:not(.honeywell-dark-theme) .ui.fitted.divider{margin:0em}html:not(.honeywell-dark-theme) .ui.clearing.divider{clear:both}html:not(.honeywell-dark-theme) .ui.section.divider{margin-top:2rem;margin-bottom:2rem}html:not(.honeywell-dark-theme) .ui.divider{font-size:1rem}html:not(.honeywell-dark-theme) .ui.horizontal.divider:before,html:not(.honeywell-dark-theme) .ui.horizontal.divider:after{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC")}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.stackable.grid .ui.vertical.divider:before,html:not(.honeywell-dark-theme) .ui.grid .stackable.row .ui.vertical.divider:before,html:not(.honeywell-dark-theme) .ui.stackable.grid .ui.vertical.divider:after,html:not(.honeywell-dark-theme) .ui.grid .stackable.row .ui.vertical.divider:after{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC")}}html:not(.honeywell-dark-theme) .ui.header{border:none;margin:calc(2rem -  0.14285714em) 0em 1rem;padding:0em 0em;font-weight:bold;line-height:1.28571429em;text-transform:none;color:rgba(0,0,0,0.87)}html:not(.honeywell-dark-theme) .ui.header:first-child{margin-top:-0.14285714em}html:not(.honeywell-dark-theme) .ui.header:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.header .sub.header{display:block;font-weight:normal;padding:0em;margin:0em;font-size:1rem;line-height:1.2em;color:rgba(0,0,0,0.6)}html:not(.honeywell-dark-theme) .ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:0.14285714em;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.header .icon:only-child{display:inline-block;padding:0em;margin-right:0.75rem}html:not(.honeywell-dark-theme) .ui.header>.image:not(.icon),html:not(.honeywell-dark-theme) .ui.header>img{display:inline-block;margin-top:0.14285714em;width:2.5em;height:auto;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.header>.image:not(.icon):only-child,html:not(.honeywell-dark-theme) .ui.header>img:only-child{margin-right:0.75rem}html:not(.honeywell-dark-theme) .ui.header .content{display:inline-block;vertical-align:top}html:not(.honeywell-dark-theme) .ui.header>img+.content,html:not(.honeywell-dark-theme) .ui.header>.image+.content{padding-left:0.75rem;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.header>.icon+.content{padding-left:0.75rem;display:table-cell;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.header .ui.label{font-size:'';margin-left:0.5rem;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.header+p{margin-top:0em}html:not(.honeywell-dark-theme) h1.ui.header{font-size:2rem}html:not(.honeywell-dark-theme) h2.ui.header{font-size:1.71428571rem}html:not(.honeywell-dark-theme) h3.ui.header{font-size:1.28571429rem}html:not(.honeywell-dark-theme) h4.ui.header{font-size:1.07142857rem}html:not(.honeywell-dark-theme) h5.ui.header{font-size:1rem}html:not(.honeywell-dark-theme) h1.ui.header .sub.header{font-size:1.14285714rem}html:not(.honeywell-dark-theme) h2.ui.header .sub.header{font-size:1.14285714rem}html:not(.honeywell-dark-theme) h3.ui.header .sub.header{font-size:1rem}html:not(.honeywell-dark-theme) h4.ui.header .sub.header{font-size:1rem}html:not(.honeywell-dark-theme) h5.ui.header .sub.header{font-size:0.92857143rem}html:not(.honeywell-dark-theme) .ui.huge.header{min-height:1em;font-size:2em}html:not(.honeywell-dark-theme) .ui.large.header{font-size:1.71428571em}html:not(.honeywell-dark-theme) .ui.medium.header{font-size:1.28571429em}html:not(.honeywell-dark-theme) .ui.small.header{font-size:1.07142857em}html:not(.honeywell-dark-theme) .ui.tiny.header{font-size:1em}html:not(.honeywell-dark-theme) .ui.huge.header .sub.header{font-size:1.14285714rem}html:not(.honeywell-dark-theme) .ui.large.header .sub.header{font-size:1.14285714rem}html:not(.honeywell-dark-theme) .ui.header .sub.header{font-size:1rem}html:not(.honeywell-dark-theme) .ui.small.header .sub.header{font-size:1rem}html:not(.honeywell-dark-theme) .ui.tiny.header .sub.header{font-size:0.92857143rem}html:not(.honeywell-dark-theme) .ui.sub.header{padding:0em;margin-bottom:0.14285714rem;font-weight:bold;font-size:0.85714286em;text-transform:uppercase;color:''}html:not(.honeywell-dark-theme) .ui.small.sub.header{font-size:0.78571429em}html:not(.honeywell-dark-theme) .ui.sub.header{font-size:0.85714286em}html:not(.honeywell-dark-theme) .ui.large.sub.header{font-size:0.92857143em}html:not(.honeywell-dark-theme) .ui.huge.sub.header{font-size:1em}html:not(.honeywell-dark-theme) .ui.icon.header{display:inline-block;text-align:center;margin:2rem 0em 1rem}html:not(.honeywell-dark-theme) .ui.icon.header:after{content:'';display:block;height:0px;clear:both;visibility:hidden}html:not(.honeywell-dark-theme) .ui.icon.header:first-child{margin-top:0em}html:not(.honeywell-dark-theme) .ui.icon.header .icon{float:none;display:block;width:auto;height:auto;line-height:1;padding:0em;font-size:3em;margin:0em auto 0.5rem;opacity:1}html:not(.honeywell-dark-theme) .ui.icon.header .content{display:block;padding:0em}html:not(.honeywell-dark-theme) .ui.icon.header .circular.icon{font-size:2em}html:not(.honeywell-dark-theme) .ui.icon.header .square.icon{font-size:2em}html:not(.honeywell-dark-theme) .ui.block.icon.header .icon{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}html:not(.honeywell-dark-theme) .ui.disabled.header{opacity:0.45}html:not(.honeywell-dark-theme) .ui.left.aligned.header{text-align:left}html:not(.honeywell-dark-theme) .ui.right.aligned.header{text-align:right}html:not(.honeywell-dark-theme) .ui.centered.header,html:not(.honeywell-dark-theme) .ui.center.aligned.header{text-align:center}html:not(.honeywell-dark-theme) .ui.justified.header{text-align:justify}html:not(.honeywell-dark-theme) .ui.justified.header:after{display:inline-block;content:'';width:100%}html:not(.honeywell-dark-theme) .ui.floated.header,html:not(.honeywell-dark-theme) .ui[class*="left floated"].header{float:left;margin-top:0em;margin-right:0.5em}html:not(.honeywell-dark-theme) .ui[class*="right floated"].header{float:right;margin-top:0em;margin-left:0.5em}html:not(.honeywell-dark-theme) .ui.fitted.header{padding:0em}html:not(.honeywell-dark-theme) .ui.dividing.header{padding-bottom:0.21428571rem;border-bottom:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.dividing.header .sub.header{padding-bottom:0.21428571rem}html:not(.honeywell-dark-theme) .ui.dividing.header .icon{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.block.header{background:#F3F4F5;padding:0.78571429rem 1rem;box-shadow:none;border:1px solid #D4D4D5;border-radius:0.28571429rem}html:not(.honeywell-dark-theme) .ui.tiny.block.header{font-size:0.85714286rem}html:not(.honeywell-dark-theme) .ui.small.block.header{font-size:0.92857143rem}html:not(.honeywell-dark-theme) .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1rem}html:not(.honeywell-dark-theme) .ui.large.block.header{font-size:1.14285714rem}html:not(.honeywell-dark-theme) .ui.huge.block.header{font-size:1.42857143rem}html:not(.honeywell-dark-theme) .ui.attached.header{background:#FFFFFF;padding:0.78571429rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #D4D4D5}html:not(.honeywell-dark-theme) .ui.attached.block.header{background:#F3F4F5}html:not(.honeywell-dark-theme) .ui.attached:not(.top):not(.bottom).header{margin-top:0em;margin-bottom:0em;border-top:none;border-radius:0em}html:not(.honeywell-dark-theme) .ui.top.attached.header{margin-bottom:0em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.bottom.attached.header{margin-top:0em;border-top:none;border-radius:0em 0em 0.28571429rem 0.28571429rem}html:not(.honeywell-dark-theme) .ui.tiny.attached.header{font-size:0.85714286em}html:not(.honeywell-dark-theme) .ui.small.attached.header{font-size:0.92857143em}html:not(.honeywell-dark-theme) .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}html:not(.honeywell-dark-theme) .ui.large.attached.header{font-size:1.14285714em}html:not(.honeywell-dark-theme) .ui.huge.attached.header{font-size:1.42857143em}html:not(.honeywell-dark-theme) .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28571429em}html:not(.honeywell-dark-theme) .ui.input{position:relative;font-weight:normal;font-style:normal;display:inline-flex}html:not(.honeywell-dark-theme) .ui.input input{margin:0em;max-width:100%;flex:1 0 auto;outline:none;text-align:left;line-height:1.21428571em;padding:0.67857143em 1em;border-radius:0.28571429rem;transition:box-shadow 0.1s ease, border-color 0.1s ease;box-shadow:none}html:not(.honeywell-dark-theme) .ui.disabled.input,html:not(.honeywell-dark-theme) .ui.input:not(.disabled) input[disabled]{opacity:0.45}html:not(.honeywell-dark-theme) .ui.disabled.input input,html:not(.honeywell-dark-theme) .ui.input:not(.disabled) input[disabled]{pointer-events:none}html:not(.honeywell-dark-theme) .ui.input input:active,html:not(.honeywell-dark-theme) .ui.input.down input{box-shadow:none}html:not(.honeywell-dark-theme) .ui.loading.loading.input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem}html:not(.honeywell-dark-theme) .ui.loading.loading.input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}html:not(.honeywell-dark-theme) .ui.input.focus input,html:not(.honeywell-dark-theme) .ui.input input:focus{box-shadow:none}html:not(.honeywell-dark-theme) .ui.transparent.input input{border-color:transparent !important;background-color:transparent !important;padding:0em !important;box-shadow:none !important;border-radius:0px !important}html:not(.honeywell-dark-theme) .ui.icon.input>i.icon{cursor:default;position:absolute;line-height:1;text-align:center;top:0px;right:0px;margin:0em;height:100%;width:2.67142857em;opacity:0.5;border-radius:0em 0.28571429rem 0.28571429rem 0em;transition:opacity 0.3s ease}html:not(.honeywell-dark-theme) .ui.icon.input>i.icon:not(.link){pointer-events:none}html:not(.honeywell-dark-theme) .ui.icon.input input{padding-right:2.67142857em !important}html:not(.honeywell-dark-theme) .ui.icon.input>i.icon:before,html:not(.honeywell-dark-theme) .ui.icon.input>i.icon:after{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-0.5em}html:not(.honeywell-dark-theme) .ui.icon.input>i.link.icon{cursor:pointer}html:not(.honeywell-dark-theme) .ui.icon.input>i.circular.icon{top:0.35em;right:0.5em}html:not(.honeywell-dark-theme) .ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:0.28571429rem 0em 0em 0.28571429rem}html:not(.honeywell-dark-theme) .ui[class*="left icon"].input>i.circular.icon{right:auto;left:0.5em}html:not(.honeywell-dark-theme) .ui[class*="left icon"].input>input{padding-left:2.67142857em !important;padding-right:1em !important}html:not(.honeywell-dark-theme) .ui.icon.input>input:focus ~ i.icon{opacity:1}html:not(.honeywell-dark-theme) .ui.action.input>.button,html:not(.honeywell-dark-theme) .ui.action.input>.buttons{display:flex;align-items:center;flex:0 0 auto}html:not(.honeywell-dark-theme) .ui.action.input>.button,html:not(.honeywell-dark-theme) .ui.action.input>.buttons>.button{padding-top:0.78571429em;padding-bottom:0.78571429em;margin:0}html:not(.honeywell-dark-theme) .ui.fluid.input{display:flex}html:not(.honeywell-dark-theme) .ui.fluid.input>input{width:0px !important}html:not(.honeywell-dark-theme) .ui.input{font-size:1em}html:not(.honeywell-dark-theme) .ui.label{display:inline-block;line-height:1;vertical-align:baseline;margin:0em 0.14285714em;background-image:none;padding:0.5833em 0.833em;text-transform:none;font-weight:bold;border:0px solid transparent;border-radius:0.28571429rem;transition:background 0.1s ease}html:not(.honeywell-dark-theme) .ui.label:first-child{margin-left:0em}html:not(.honeywell-dark-theme) .ui.label:last-child{margin-right:0em}html:not(.honeywell-dark-theme) a.ui.label{cursor:pointer}html:not(.honeywell-dark-theme) .ui.label>a{cursor:pointer;color:inherit;opacity:0.5;transition:0.1s opacity ease}html:not(.honeywell-dark-theme) .ui.label>a:hover{opacity:1}html:not(.honeywell-dark-theme) .ui.label>img{width:auto !important;vertical-align:middle;height:2.1666em !important}html:not(.honeywell-dark-theme) .ui.label>.icon{width:auto;margin:0em 0.75em 0em 0em}html:not(.honeywell-dark-theme) .ui.label>.detail{display:inline-block;vertical-align:top;font-weight:bold;margin-left:1em;opacity:0.8}html:not(.honeywell-dark-theme) .ui.label>.detail .icon{margin:0em 0.25em 0em 0em}html:not(.honeywell-dark-theme) .ui.label>.close.icon,html:not(.honeywell-dark-theme) .ui.label>.delete.icon{cursor:pointer;margin-right:0em;margin-left:0.5em;font-size:0.92857143em;opacity:0.5;transition:background 0.1s ease}html:not(.honeywell-dark-theme) .ui.label>.delete.icon:hover{opacity:1}html:not(.honeywell-dark-theme) .ui.labels>.label{margin:0em 0.5em 0.5em 0em}html:not(.honeywell-dark-theme) .ui.header>.ui.label{margin-top:-0.29165em}html:not(.honeywell-dark-theme) .ui.attached.segment>.ui.top.left.attached.label,html:not(.honeywell-dark-theme) .ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}html:not(.honeywell-dark-theme) .ui.attached.segment>.ui.top.right.attached.label,html:not(.honeywell-dark-theme) .ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}html:not(.honeywell-dark-theme) .ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}html:not(.honeywell-dark-theme) .ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}html:not(.honeywell-dark-theme) .ui.top.attached.label:first-child+:not(.attached),html:not(.honeywell-dark-theme) .ui.top.attached.label+[class*="right floated"]+*{margin-top:2rem !important}html:not(.honeywell-dark-theme) .ui.bottom.attached.label:first-child ~ :last-child:not(.attached){margin-top:0em;margin-bottom:2rem !important}html:not(.honeywell-dark-theme) .ui.image.label{width:auto !important;margin-top:0em;margin-bottom:0em;max-width:9999px;vertical-align:baseline;text-transform:none;background:#E8E8E8;padding:0.5833em 0.833em 0.5833em 0.5em;border-radius:0.28571429rem;box-shadow:none}html:not(.honeywell-dark-theme) .ui.image.label img{display:inline-block;vertical-align:top;height:2.1666em;margin:-0.5833em 0.5em -0.5833em -0.5em;border-radius:0.28571429rem 0em 0em 0.28571429rem}html:not(.honeywell-dark-theme) .ui.image.label .detail{background:rgba(0,0,0,0.1);margin:-0.5833em -0.833em -0.5833em 0.5em;padding:0.5833em 0.833em;border-radius:0em 0.28571429rem 0.28571429rem 0em}html:not(.honeywell-dark-theme) .ui.tag.labels .label,html:not(.honeywell-dark-theme) .ui.tag.label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0em 0.28571429rem 0.28571429rem 0em;transition:none}html:not(.honeywell-dark-theme) .ui.tag.labels .label:before,html:not(.honeywell-dark-theme) .ui.tag.label:before{position:absolute;transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:'';background-color:inherit;background-image:none;width:1.56em;height:1.56em;transition:none}html:not(.honeywell-dark-theme) .ui.tag.labels .label:after,html:not(.honeywell-dark-theme) .ui.tag.label:after{position:absolute;content:'';top:50%;left:-0.25em;margin-top:-0.25em;background-color:#FFFFFF !important;width:0.5em;height:0.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,0.3);border-radius:500rem}html:not(.honeywell-dark-theme) .ui.corner.label{position:absolute;top:0em;right:0em;margin:0em;padding:0em;text-align:center;border-color:#E8E8E8;width:4em;height:4em;z-index:1;transition:border-color 0.1s ease}html:not(.honeywell-dark-theme) .ui.corner.label{background-color:transparent !important}html:not(.honeywell-dark-theme) .ui.corner.label:after{position:absolute;content:"";right:0em;top:0em;z-index:-1;width:0em;height:0em;background-color:transparent !important;border-top:0em solid transparent;border-right:4em solid transparent;border-bottom:4em solid transparent;border-left:0em solid transparent;border-right-color:inherit;transition:border-color 0.1s ease}html:not(.honeywell-dark-theme) .ui.corner.label .icon{cursor:default;position:relative;top:0.64285714em;left:0.78571429em;font-size:1.14285714em;margin:0em}html:not(.honeywell-dark-theme) .ui.left.corner.label,html:not(.honeywell-dark-theme) .ui.left.corner.label:after{right:auto;left:0em}html:not(.honeywell-dark-theme) .ui.left.corner.label:after{border-top:4em solid transparent;border-right:4em solid transparent;border-bottom:0em solid transparent;border-left:0em solid transparent;border-top-color:inherit}html:not(.honeywell-dark-theme) .ui.left.corner.label .icon{left:-0.78571429em}html:not(.honeywell-dark-theme) .ui.segment>.ui.corner.label{top:-1px;right:-1px}html:not(.honeywell-dark-theme) .ui.segment>.ui.left.corner.label{right:auto;left:-1px}html:not(.honeywell-dark-theme) .ui.ribbon.label{position:relative;margin:0em;min-width:max-content;border-radius:0em 0.28571429rem 0.28571429rem 0em;border-color:rgba(0,0,0,0.15)}html:not(.honeywell-dark-theme) .ui.ribbon.label:after{position:absolute;content:'';top:100%;left:0%;background-color:transparent !important;border-style:solid;border-width:0em 1.2em 1.2em 0em;border-color:transparent;border-right-color:inherit;width:0em;height:0em}html:not(.honeywell-dark-theme) .ui.ribbon.label{left:calc( -1rem  -  1.2em);margin-right:-1.2em;padding-left:calc( 1rem  +  1.2em);padding-right:1.2em}html:not(.honeywell-dark-theme) .ui[class*="right ribbon"].label{left:calc(100% +  1rem  +  1.2em);padding-left:1.2em;padding-right:calc( 1rem  +  1.2em)}html:not(.honeywell-dark-theme) .ui[class*="right ribbon"].label{text-align:left;transform:translateX(-100%);border-radius:0.28571429rem 0em 0em 0.28571429rem}html:not(.honeywell-dark-theme) .ui[class*="right ribbon"].label:after{left:auto;right:0%;border-style:solid;border-width:1.2em 1.2em 0em 0em;border-color:transparent;border-top-color:inherit}html:not(.honeywell-dark-theme) .ui.image>.ribbon.label,html:not(.honeywell-dark-theme) .ui.card .image>.ribbon.label{position:absolute;top:1rem}html:not(.honeywell-dark-theme) .ui.card .image>.ui.ribbon.label,html:not(.honeywell-dark-theme) .ui.image>.ui.ribbon.label{left:calc( 0.05rem  -  1.2em)}html:not(.honeywell-dark-theme) .ui.card .image>.ui[class*="right ribbon"].label,html:not(.honeywell-dark-theme) .ui.image>.ui[class*="right ribbon"].label{left:calc(100% +  -0.05rem  +  1.2em);padding-left:0.833em}html:not(.honeywell-dark-theme) .ui.table td>.ui.ribbon.label{left:calc( -0.78571429em  -  1.2em)}html:not(.honeywell-dark-theme) .ui.table td>.ui[class*="right ribbon"].label{left:calc(100% +  0.78571429em  +  1.2em);padding-left:0.833em}html:not(.honeywell-dark-theme) .ui.label.disabled{opacity:0.5}html:not(.honeywell-dark-theme) a.ui.labels .label:hover,html:not(.honeywell-dark-theme) a.ui.label:hover{background-color:#E0E0E0;border-color:#E0E0E0;background-image:none;color:rgba(0,0,0,0.8)}html:not(.honeywell-dark-theme) .ui.labels a.label:hover:before,html:not(.honeywell-dark-theme) a.ui.label:hover:before{color:rgba(0,0,0,0.8)}html:not(.honeywell-dark-theme) .ui.active.label{background-color:#D0D0D0;border-color:#D0D0D0;background-image:none;color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) .ui.active.label:before{background-color:#D0D0D0;background-image:none;color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) a.ui.labels .active.label:hover,html:not(.honeywell-dark-theme) a.ui.active.label:hover{background-color:#C8C8C8;border-color:#C8C8C8;background-image:none;color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) .ui.labels a.active.label:ActiveHover:before,html:not(.honeywell-dark-theme) a.ui.active.label:ActiveHover:before{background-color:#C8C8C8;background-image:none;color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) .ui.labels.visible .label,html:not(.honeywell-dark-theme) .ui.label.visible:not(.dropdown){display:inline-block !important}html:not(.honeywell-dark-theme) .ui.labels.hidden .label,html:not(.honeywell-dark-theme) .ui.label.hidden{display:none !important}html:not(.honeywell-dark-theme) .ui.black.corner.label,html:not(.honeywell-dark-theme) .ui.black.corner.label:hover{background-color:transparent !important}html:not(.honeywell-dark-theme) .ui.black.ribbon.label{border-color:#805031 !important}html:not(.honeywell-dark-theme) .ui.basic.label{background:none #FFFFFF;border:1px solid rgba(34,36,38,0.15);color:rgba(0,0,0,0.87);box-shadow:none}html:not(.honeywell-dark-theme) a.ui.basic.label:hover{text-decoration:none;background:none #FFFFFF;color:#1e70bf;box-shadow:1px solid rgba(34,36,38,0.15);box-shadow:none}html:not(.honeywell-dark-theme) .ui.basic.pointing.label:before{border-color:inherit}html:not(.honeywell-dark-theme) .ui.label.fluid,html:not(.honeywell-dark-theme) .ui.fluid.labels>.label{width:100%;box-sizing:border-box}html:not(.honeywell-dark-theme) .ui.horizontal.labels .label,html:not(.honeywell-dark-theme) .ui.horizontal.label{margin:0em 0.5em 0em 0em;padding:0.4em 0.833em;min-width:3em;text-align:center}html:not(.honeywell-dark-theme) .ui.circular.labels .label,html:not(.honeywell-dark-theme) .ui.circular.label{min-width:2em;min-height:2em;padding:0.5em !important;line-height:1em;text-align:center;border-radius:500rem}html:not(.honeywell-dark-theme) .ui.empty.circular.labels .label,html:not(.honeywell-dark-theme) .ui.empty.circular.label{min-width:0em;min-height:0em;overflow:hidden;width:0.5em;height:0.5em;vertical-align:baseline}html:not(.honeywell-dark-theme) .ui.mini.labels .label,html:not(.honeywell-dark-theme) .ui.mini.label{font-size:0.64285714rem}html:not(.honeywell-dark-theme) .ui.tiny.labels .label,html:not(.honeywell-dark-theme) .ui.tiny.label{font-size:0.71428571rem}html:not(.honeywell-dark-theme) .ui.small.labels .label,html:not(.honeywell-dark-theme) .ui.small.label{font-size:0.78571429rem}html:not(.honeywell-dark-theme) .ui.labels .label,html:not(.honeywell-dark-theme) .ui.label{font-size:0.85714286rem}html:not(.honeywell-dark-theme) .ui.large.labels .label,html:not(.honeywell-dark-theme) .ui.large.label{font-size:1rem}html:not(.honeywell-dark-theme) .ui.big.labels .label,html:not(.honeywell-dark-theme) .ui.big.label{font-size:1.28571429rem}html:not(.honeywell-dark-theme) .ui.huge.labels .label,html:not(.honeywell-dark-theme) .ui.huge.label{font-size:1.42857143rem}html:not(.honeywell-dark-theme) .ui.massive.labels .label,html:not(.honeywell-dark-theme) .ui.massive.label{font-size:1.71428571rem}html:not(.honeywell-dark-theme) ul.ui.list,html:not(.honeywell-dark-theme) ol.ui.list,html:not(.honeywell-dark-theme) .ui.list{list-style-type:none;margin:1em 0em;padding:0em 0em}html:not(.honeywell-dark-theme) ul.ui.list:first-child,html:not(.honeywell-dark-theme) ol.ui.list:first-child,html:not(.honeywell-dark-theme) .ui.list:first-child{margin-top:0em;padding-top:0em}html:not(.honeywell-dark-theme) ul.ui.list:last-child,html:not(.honeywell-dark-theme) ol.ui.list:last-child,html:not(.honeywell-dark-theme) .ui.list:last-child{margin-bottom:0em;padding-bottom:0em}html:not(.honeywell-dark-theme) ul.ui.list li,html:not(.honeywell-dark-theme) ol.ui.list li,html:not(.honeywell-dark-theme) .ui.list>.item,html:not(.honeywell-dark-theme) .ui.list .list>.item{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:0.21428571em 0em;line-height:1.14285714em}html:not(.honeywell-dark-theme) ul.ui.list>li:first-child:after,html:not(.honeywell-dark-theme) ol.ui.list>li:first-child:after,html:not(.honeywell-dark-theme) .ui.list>.list>.item,html:not(.honeywell-dark-theme) .ui.list>.item:after{content:"";display:block;height:0;clear:both;visibility:hidden}html:not(.honeywell-dark-theme) ul.ui.list li:first-child,html:not(.honeywell-dark-theme) ol.ui.list li:first-child,html:not(.honeywell-dark-theme) .ui.list .list>.item:first-child,html:not(.honeywell-dark-theme) .ui.list>.item:first-child{padding-top:0em}html:not(.honeywell-dark-theme) ul.ui.list li:last-child,html:not(.honeywell-dark-theme) ol.ui.list li:last-child,html:not(.honeywell-dark-theme) .ui.list .list>.item:last-child,html:not(.honeywell-dark-theme) .ui.list>.item:last-child{padding-bottom:0em}html:not(.honeywell-dark-theme) ul.ui.list ul,html:not(.honeywell-dark-theme) ol.ui.list ol,html:not(.honeywell-dark-theme) .ui.list .list{clear:both;margin:0em;padding:0.75em 0em 0.25em 0.5em}html:not(.honeywell-dark-theme) ul.ui.list ul li,html:not(.honeywell-dark-theme) ol.ui.list ol li,html:not(.honeywell-dark-theme) .ui.list .list>.item{padding:0.14285714em 0em;line-height:inherit}html:not(.honeywell-dark-theme) .ui.list .list>.item>i.icon,html:not(.honeywell-dark-theme) .ui.list>.item>i.icon{display:table-cell;margin:0em;padding-top:0.07142857em;padding-right:0.28571429em;vertical-align:top;transition:color 0.1s ease}html:not(.honeywell-dark-theme) .ui.list .list>.item>i.icon:only-child,html:not(.honeywell-dark-theme) .ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}html:not(.honeywell-dark-theme) .ui.list .list>.item>.image,html:not(.honeywell-dark-theme) .ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0em;vertical-align:top}html:not(.honeywell-dark-theme) .ui.list .list>.item>.image:not(:only-child):not(img),html:not(.honeywell-dark-theme) .ui.list>.item>.image:not(:only-child):not(img){padding-right:0.5em}html:not(.honeywell-dark-theme) .ui.list .list>.item>.image img,html:not(.honeywell-dark-theme) .ui.list>.item>.image img{vertical-align:top}html:not(.honeywell-dark-theme) .ui.list .list>.item>img.image,html:not(.honeywell-dark-theme) .ui.list .list>.item>.image:only-child,html:not(.honeywell-dark-theme) .ui.list>.item>img.image,html:not(.honeywell-dark-theme) .ui.list>.item>.image:only-child{display:inline-block}html:not(.honeywell-dark-theme) .ui.list .list>.item>.content,html:not(.honeywell-dark-theme) .ui.list>.item>.content{line-height:1.14285714em}html:not(.honeywell-dark-theme) .ui.list .list>.item>.image+.content,html:not(.honeywell-dark-theme) .ui.list .list>.item>.icon+.content,html:not(.honeywell-dark-theme) .ui.list>.item>.image+.content,html:not(.honeywell-dark-theme) .ui.list>.item>.icon+.content{display:table-cell;padding:0em 0em 0em 0.5em;vertical-align:top}html:not(.honeywell-dark-theme) .ui.list .list>.item>img.image+.content,html:not(.honeywell-dark-theme) .ui.list>.item>img.image+.content{display:inline-block}html:not(.honeywell-dark-theme) .ui.list .list>.item>.content>.list,html:not(.honeywell-dark-theme) .ui.list>.item>.content>.list{margin-left:0em;padding-left:0em}html:not(.honeywell-dark-theme) .ui.list .list>.item .header,html:not(.honeywell-dark-theme) .ui.list>.item .header{display:block;margin:0em;font-weight:bold}html:not(.honeywell-dark-theme) .ui.list .list>.item .description,html:not(.honeywell-dark-theme) .ui.list>.item .description{display:block}html:not(.honeywell-dark-theme) .ui.list>.item a,html:not(.honeywell-dark-theme) .ui.list .list>.item a{cursor:pointer}html:not(.honeywell-dark-theme) .ui[class*="left floated"].list{float:left}html:not(.honeywell-dark-theme) .ui[class*="right floated"].list{float:right}html:not(.honeywell-dark-theme) .ui.list .list>.item [class*="left floated"],html:not(.honeywell-dark-theme) .ui.list>.item [class*="left floated"]{float:left;margin:0em 1em 0em 0em}html:not(.honeywell-dark-theme) .ui.list .list>.item [class*="right floated"],html:not(.honeywell-dark-theme) .ui.list>.item [class*="right floated"]{float:right;margin:0em 0em 0em 1em}html:not(.honeywell-dark-theme) .ui.menu .ui.list>.item,html:not(.honeywell-dark-theme) .ui.menu .ui.list .list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:0.21428571em 0em;line-height:1.14285714em}html:not(.honeywell-dark-theme) .ui.menu .ui.list .list>.item:before,html:not(.honeywell-dark-theme) .ui.menu .ui.list>.item:before{border:none;background:none}html:not(.honeywell-dark-theme) .ui.menu .ui.list .list>.item:first-child,html:not(.honeywell-dark-theme) .ui.menu .ui.list>.item:first-child{padding-top:0em}html:not(.honeywell-dark-theme) .ui.menu .ui.list .list>.item:last-child,html:not(.honeywell-dark-theme) .ui.menu .ui.list>.item:last-child{padding-bottom:0em}html:not(.honeywell-dark-theme) .ui.horizontal.list{display:inline-block;font-size:0em}html:not(.honeywell-dark-theme) .ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}html:not(.honeywell-dark-theme) .ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0em !important;padding-left:0em !important}html:not(.honeywell-dark-theme) .ui.horizontal.list .list{padding-left:0em;padding-bottom:0em}html:not(.honeywell-dark-theme) .ui.horizontal.list>.item>.image,html:not(.honeywell-dark-theme) .ui.horizontal.list .list>.item>.image,html:not(.honeywell-dark-theme) .ui.horizontal.list>.item>.icon,html:not(.honeywell-dark-theme) .ui.horizontal.list .list>.item>.icon,html:not(.honeywell-dark-theme) .ui.horizontal.list>.item>.content,html:not(.honeywell-dark-theme) .ui.horizontal.list .list>.item>.content{vertical-align:middle}html:not(.honeywell-dark-theme) .ui.horizontal.list>.item:first-child,html:not(.honeywell-dark-theme) .ui.horizontal.list>.item:last-child{padding-top:0.21428571em;padding-bottom:0.21428571em}html:not(.honeywell-dark-theme) .ui.horizontal.list>.item>i.icon{margin:0em;padding:0em 0.25em 0em 0em}html:not(.honeywell-dark-theme) .ui.horizontal.list>.item>.icon,html:not(.honeywell-dark-theme) .ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}html:not(.honeywell-dark-theme) .ui.list .list>.disabled.item,html:not(.honeywell-dark-theme) .ui.list>.disabled.item{pointer-events:none}html:not(.honeywell-dark-theme) .ui.list[class*="top aligned"] .image,html:not(.honeywell-dark-theme) .ui.list[class*="top aligned"] .content,html:not(.honeywell-dark-theme) .ui.list [class*="top aligned"]{vertical-align:top !important}html:not(.honeywell-dark-theme) .ui.list[class*="middle aligned"] .image,html:not(.honeywell-dark-theme) .ui.list[class*="middle aligned"] .content,html:not(.honeywell-dark-theme) .ui.list [class*="middle aligned"]{vertical-align:middle !important}html:not(.honeywell-dark-theme) .ui.list[class*="bottom aligned"] .image,html:not(.honeywell-dark-theme) .ui.list[class*="bottom aligned"] .content,html:not(.honeywell-dark-theme) .ui.list [class*="bottom aligned"]{vertical-align:bottom !important}html:not(.honeywell-dark-theme) .ui.celled.selection.list .list>.item,html:not(.honeywell-dark-theme) .ui.divided.selection.list .list>.item,html:not(.honeywell-dark-theme) .ui.celled.selection.list>.item,html:not(.honeywell-dark-theme) .ui.divided.selection.list>.item{border-radius:0em}html:not(.honeywell-dark-theme) .ui.animated.list>.item{transition:0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s}html:not(.honeywell-dark-theme) .ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}html:not(.honeywell-dark-theme) .ui.fitted.list:not(.selection) .list>.item,html:not(.honeywell-dark-theme) .ui.fitted.list:not(.selection)>.item{padding-left:0em;padding-right:0em}html:not(.honeywell-dark-theme) .ui.fitted.selection.list .list>.item,html:not(.honeywell-dark-theme) .ui.fitted.selection.list>.item{margin-left:-0.5em;margin-right:-0.5em}html:not(.honeywell-dark-theme) ul.ui.list,html:not(.honeywell-dark-theme) .ui.bulleted.list{margin-left:1.25rem}html:not(.honeywell-dark-theme) ul.ui.list li,html:not(.honeywell-dark-theme) .ui.bulleted.list .list>.item,html:not(.honeywell-dark-theme) .ui.bulleted.list>.item{position:relative}html:not(.honeywell-dark-theme) ul.ui.list li:before,html:not(.honeywell-dark-theme) .ui.bulleted.list .list>.item:before,html:not(.honeywell-dark-theme) .ui.bulleted.list>.item:before{user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;font-weight:normal;margin-left:-1.25rem;content:"\2022";opacity:1;color:inherit;vertical-align:top}html:not(.honeywell-dark-theme) ul.ui.list ul,html:not(.honeywell-dark-theme) .ui.bulleted.list .list{padding-left:1.25rem}html:not(.honeywell-dark-theme) ul.ui.horizontal.bulleted.list,html:not(.honeywell-dark-theme) .ui.horizontal.bulleted.list{margin-left:0em}html:not(.honeywell-dark-theme) ul.ui.horizontal.bulleted.list li,html:not(.honeywell-dark-theme) .ui.horizontal.bulleted.list>.item{margin-left:1.75rem}html:not(.honeywell-dark-theme) ul.ui.horizontal.bulleted.list li:first-child,html:not(.honeywell-dark-theme) .ui.horizontal.bulleted.list>.item:first-child{margin-left:0em}html:not(.honeywell-dark-theme) ol.ui.list,html:not(.honeywell-dark-theme) .ui.ordered.list,html:not(.honeywell-dark-theme) .ui.ordered.list .list,html:not(.honeywell-dark-theme) ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}html:not(.honeywell-dark-theme) ol.ui.list li,html:not(.honeywell-dark-theme) .ui.ordered.list .list>.item,html:not(.honeywell-dark-theme) .ui.ordered.list>.item{list-style-type:none;position:relative}html:not(.honeywell-dark-theme) ol.ui.list li:before,html:not(.honeywell-dark-theme) .ui.ordered.list .list>.item:before,html:not(.honeywell-dark-theme) .ui.ordered.list>.item:before{position:absolute;top:auto;left:auto;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered, ".") " ";text-align:right;vertical-align:middle;opacity:0.8}html:not(.honeywell-dark-theme) .ui.ordered.list>.list>.item[data-value],html:not(.honeywell-dark-theme) .ui.ordered.list>.item[data-value]{content:attr(data-value)}html:not(.honeywell-dark-theme) ol.ui.list li[value]:before{content:attr(value)}html:not(.honeywell-dark-theme) ol.ui.list ol,html:not(.honeywell-dark-theme) .ui.ordered.list .list{margin-left:1em}html:not(.honeywell-dark-theme) ol.ui.list ol li:before,html:not(.honeywell-dark-theme) .ui.ordered.list .list>.item:before{margin-left:-2em}html:not(.honeywell-dark-theme) ol.ui.horizontal.list,html:not(.honeywell-dark-theme) .ui.ordered.horizontal.list{margin-left:0em}html:not(.honeywell-dark-theme) ol.ui.horizontal.list li:before,html:not(.honeywell-dark-theme) .ui.ordered.horizontal.list .list>.item:before,html:not(.honeywell-dark-theme) .ui.ordered.horizontal.list>.item:before{position:static;margin:0em 0.5em 0em 0em}html:not(.honeywell-dark-theme) .ui.divided.list .list>.item{border-top:none}html:not(.honeywell-dark-theme) .ui.divided.list .item .list>.item{border-top:none}html:not(.honeywell-dark-theme) .ui.divided.list .list>.item:first-child,html:not(.honeywell-dark-theme) .ui.divided.list>.item:first-child{border-top:none}html:not(.honeywell-dark-theme) .ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}html:not(.honeywell-dark-theme) .ui.divided.bulleted.list:not(.horizontal),html:not(.honeywell-dark-theme) .ui.divided.bulleted.list .list{margin-left:0em;padding-left:0em}html:not(.honeywell-dark-theme) .ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}html:not(.honeywell-dark-theme) .ui.divided.ordered.list{margin-left:0em}html:not(.honeywell-dark-theme) .ui.divided.ordered.list .list>.item,html:not(.honeywell-dark-theme) .ui.divided.ordered.list>.item{padding-left:1.25rem}html:not(.honeywell-dark-theme) .ui.divided.ordered.list .item .list{margin-left:0em;margin-right:0em;padding-bottom:0.21428571em}html:not(.honeywell-dark-theme) .ui.divided.ordered.list .item .list>.item{padding-left:1em}html:not(.honeywell-dark-theme) .ui.divided.selection.list .list>.item,html:not(.honeywell-dark-theme) .ui.divided.selection.list>.item{margin:0em;border-radius:0em}html:not(.honeywell-dark-theme) .ui.divided.horizontal.list{margin-left:0em}html:not(.honeywell-dark-theme) .ui.divided.horizontal.list>.item:not(:first-child){padding-left:0.5em}html:not(.honeywell-dark-theme) .ui.divided.horizontal.list>.item:not(:last-child){padding-right:0.5em}html:not(.honeywell-dark-theme) .ui.divided.horizontal.list>.item{border-top:none;margin:0em;line-height:0.6}html:not(.honeywell-dark-theme) .ui.horizontal.divided.list>.item:first-child{border-left:none}html:not(.honeywell-dark-theme) .ui.celled.list>.item,html:not(.honeywell-dark-theme) .ui.celled.list>.list{padding-left:0.5em;padding-right:0.5em}html:not(.honeywell-dark-theme) .ui.celled.list>.item:first-child,html:not(.honeywell-dark-theme) .ui.celled.list>.item:last-child{padding-top:0.21428571em;padding-bottom:0.21428571em}html:not(.honeywell-dark-theme) .ui.celled.list .item .list>.item{border-width:0px}html:not(.honeywell-dark-theme) .ui.celled.list .list>.item:first-child{border-top-width:0px}html:not(.honeywell-dark-theme) .ui.celled.bulleted.list{margin-left:0em}html:not(.honeywell-dark-theme) .ui.celled.bulleted.list .list>.item,html:not(.honeywell-dark-theme) .ui.celled.bulleted.list>.item{padding-left:1.25rem}html:not(.honeywell-dark-theme) .ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:0.21428571em}html:not(.honeywell-dark-theme) .ui.celled.ordered.list{margin-left:0em}html:not(.honeywell-dark-theme) .ui.celled.ordered.list .list>.item,html:not(.honeywell-dark-theme) .ui.celled.ordered.list>.item{padding-left:1.25rem}html:not(.honeywell-dark-theme) .ui.celled.ordered.list .item .list{margin-left:0em;margin-right:0em;padding-bottom:0.21428571em}html:not(.honeywell-dark-theme) .ui.celled.ordered.list .list>.item{padding-left:1em}html:not(.honeywell-dark-theme) .ui.horizontal.celled.list{margin-left:0em}html:not(.honeywell-dark-theme) .ui.horizontal.celled.list .list>.item,html:not(.honeywell-dark-theme) .ui.horizontal.celled.list>.item{border-top:none;margin:0em;padding-left:0.5em;padding-right:0.5em;line-height:0.6}html:not(.honeywell-dark-theme) .ui.horizontal.celled.list .list>.item:last-child,html:not(.honeywell-dark-theme) .ui.horizontal.celled.list>.item:last-child{border-bottom:none}html:not(.honeywell-dark-theme) .ui.relaxed.list:not(.horizontal)>.item:not(:first-child){padding-top:0.42857143em}html:not(.honeywell-dark-theme) .ui.relaxed.list:not(.horizontal)>.item:not(:last-child){padding-bottom:0.42857143em}html:not(.honeywell-dark-theme) .ui.horizontal.relaxed.list .list>.item:not(:first-child),html:not(.honeywell-dark-theme) .ui.horizontal.relaxed.list>.item:not(:first-child){padding-left:1rem}html:not(.honeywell-dark-theme) .ui.horizontal.relaxed.list .list>.item:not(:last-child),html:not(.honeywell-dark-theme) .ui.horizontal.relaxed.list>.item:not(:last-child){padding-right:1rem}html:not(.honeywell-dark-theme) .ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:first-child){padding-top:0.85714286em}html:not(.honeywell-dark-theme) .ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:last-child){padding-bottom:0.85714286em}html:not(.honeywell-dark-theme) .ui.horizontal[class*="very relaxed"].list .list>.item:not(:first-child),html:not(.honeywell-dark-theme) .ui.horizontal[class*="very relaxed"].list>.item:not(:first-child){padding-left:1.5rem}html:not(.honeywell-dark-theme) .ui.horizontal[class*="very relaxed"].list .list>.item:not(:last-child),html:not(.honeywell-dark-theme) .ui.horizontal[class*="very relaxed"].list>.item:not(:last-child){padding-right:1.5rem}html:not(.honeywell-dark-theme) .ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0px;text-align:center;z-index:1000;transform:translateX(-50%) translateY(-50%)}html:not(.honeywell-dark-theme) .ui.loader:before{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.loader:after{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;animation:loader 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}@keyframes loader{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) .ui.mini.loader:before,html:not(.honeywell-dark-theme) .ui.mini.loader:after{width:1rem;height:1rem;margin:0em 0em 0em -0.5rem}html:not(.honeywell-dark-theme) .ui.tiny.loader:before,html:not(.honeywell-dark-theme) .ui.tiny.loader:after{width:1.14285714rem;height:1.14285714rem;margin:0em 0em 0em -0.57142857rem}html:not(.honeywell-dark-theme) .ui.small.loader:before,html:not(.honeywell-dark-theme) .ui.small.loader:after{width:1.71428571rem;height:1.71428571rem;margin:0em 0em 0em -0.85714286rem}html:not(.honeywell-dark-theme) .ui.loader:before,html:not(.honeywell-dark-theme) .ui.loader:after{width:2.28571429rem;height:2.28571429rem;margin:0em 0em 0em -1.14285714rem}html:not(.honeywell-dark-theme) .ui.large.loader:before,html:not(.honeywell-dark-theme) .ui.large.loader:after{width:3.42857143rem;height:3.42857143rem;margin:0em 0em 0em -1.71428571rem}html:not(.honeywell-dark-theme) .ui.big.loader:before,html:not(.honeywell-dark-theme) .ui.big.loader:after{width:3.71428571rem;height:3.71428571rem;margin:0em 0em 0em -1.85714286rem}html:not(.honeywell-dark-theme) .ui.huge.loader:before,html:not(.honeywell-dark-theme) .ui.huge.loader:after{width:4.14285714rem;height:4.14285714rem;margin:0em 0em 0em -2.07142857rem}html:not(.honeywell-dark-theme) .ui.massive.loader:before,html:not(.honeywell-dark-theme) .ui.massive.loader:after{width:4.57142857rem;height:4.57142857rem;margin:0em 0em 0em -2.28571429rem}html:not(.honeywell-dark-theme) .ui.dimmer .loader{display:block}html:not(.honeywell-dark-theme) .ui.dimmer .ui.loader{color:rgba(255,255,255,0.9)}html:not(.honeywell-dark-theme) .ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,0.15)}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,0.87)}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}html:not(.honeywell-dark-theme) .ui.text.loader{width:auto !important;height:auto !important;text-align:center;font-style:normal}html:not(.honeywell-dark-theme) .ui.indeterminate.loader:after{animation-direction:reverse;animation-duration:1.2s}html:not(.honeywell-dark-theme) .ui.loader.active,html:not(.honeywell-dark-theme) .ui.loader.visible{display:block}html:not(.honeywell-dark-theme) .ui.loader.disabled,html:not(.honeywell-dark-theme) .ui.loader.hidden{display:none}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.mini.loader,html:not(.honeywell-dark-theme) .ui.mini.loader{width:1rem;height:1rem;font-size:0.78571429em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.tiny.loader,html:not(.honeywell-dark-theme) .ui.tiny.loader{width:1.14285714rem;height:1.14285714rem;font-size:0.85714286em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.small.loader,html:not(.honeywell-dark-theme) .ui.small.loader{width:1.71428571rem;height:1.71428571rem;font-size:0.92857143em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader,html:not(.honeywell-dark-theme) .ui.loader{width:2.28571429rem;height:2.28571429rem;font-size:1em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.large.loader,html:not(.honeywell-dark-theme) .ui.large.loader{width:3.42857143rem;height:3.42857143rem;font-size:1.14285714em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.big.loader,html:not(.honeywell-dark-theme) .ui.big.loader{width:3.71428571rem;height:3.71428571rem;font-size:1.28571429em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.huge.loader,html:not(.honeywell-dark-theme) .ui.huge.loader{width:4.14285714rem;height:4.14285714rem;font-size:1.42857143em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.massive.loader,html:not(.honeywell-dark-theme) .ui.massive.loader{width:4.57142857rem;height:4.57142857rem;font-size:1.71428571em}html:not(.honeywell-dark-theme) .ui.inverted.loader{color:rgba(255,255,255,0.9)}html:not(.honeywell-dark-theme) .ui.inverted.loader:before{border-color:rgba(255,255,255,0.15)}html:not(.honeywell-dark-theme) .ui.inverted.loader:after{border-top-color:#FFFFFF}html:not(.honeywell-dark-theme) .ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0px;text-align:center;z-index:1000;transform:translateX(-50%) translateY(-50%)}html:not(.honeywell-dark-theme) .ui.loader:before{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.loader:after{position:absolute;content:'';top:0%;left:50%;width:100%;height:100%;animation:loader 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}@keyframes loader{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) .ui.mini.loader:before,html:not(.honeywell-dark-theme) .ui.mini.loader:after{width:1rem;height:1rem;margin:0em 0em 0em -0.5rem}html:not(.honeywell-dark-theme) .ui.tiny.loader:before,html:not(.honeywell-dark-theme) .ui.tiny.loader:after{width:1.14285714rem;height:1.14285714rem;margin:0em 0em 0em -0.57142857rem}html:not(.honeywell-dark-theme) .ui.small.loader:before,html:not(.honeywell-dark-theme) .ui.small.loader:after{width:1.71428571rem;height:1.71428571rem;margin:0em 0em 0em -0.85714286rem}html:not(.honeywell-dark-theme) .ui.loader:before,html:not(.honeywell-dark-theme) .ui.loader:after{width:2.28571429rem;height:2.28571429rem;margin:0em 0em 0em -1.14285714rem}html:not(.honeywell-dark-theme) .ui.large.loader:before,html:not(.honeywell-dark-theme) .ui.large.loader:after{width:3.42857143rem;height:3.42857143rem;margin:0em 0em 0em -1.71428571rem}html:not(.honeywell-dark-theme) .ui.big.loader:before,html:not(.honeywell-dark-theme) .ui.big.loader:after{width:3.71428571rem;height:3.71428571rem;margin:0em 0em 0em -1.85714286rem}html:not(.honeywell-dark-theme) .ui.huge.loader:before,html:not(.honeywell-dark-theme) .ui.huge.loader:after{width:4.14285714rem;height:4.14285714rem;margin:0em 0em 0em -2.07142857rem}html:not(.honeywell-dark-theme) .ui.massive.loader:before,html:not(.honeywell-dark-theme) .ui.massive.loader:after{width:4.57142857rem;height:4.57142857rem;margin:0em 0em 0em -2.28571429rem}html:not(.honeywell-dark-theme) .ui.dimmer .loader{display:block}html:not(.honeywell-dark-theme) .ui.dimmer .ui.loader{color:rgba(255,255,255,0.9)}html:not(.honeywell-dark-theme) .ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,0.15)}html:not(.honeywell-dark-theme) .ui.dimmer .ui.loader:after{border-color:#FFFFFF transparent transparent}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,0.87)}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}html:not(.honeywell-dark-theme) .ui.text.loader{width:auto !important;height:auto !important;text-align:center;font-style:normal}html:not(.honeywell-dark-theme) .ui.indeterminate.loader:after{animation-direction:reverse;animation-duration:1.2s}html:not(.honeywell-dark-theme) .ui.loader.active,html:not(.honeywell-dark-theme) .ui.loader.visible{display:block}html:not(.honeywell-dark-theme) .ui.loader.disabled,html:not(.honeywell-dark-theme) .ui.loader.hidden{display:none}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.mini.loader,html:not(.honeywell-dark-theme) .ui.mini.loader{width:1rem;height:1rem;font-size:0.78571429em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.tiny.loader,html:not(.honeywell-dark-theme) .ui.tiny.loader{width:1.14285714rem;height:1.14285714rem;font-size:0.85714286em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.small.loader,html:not(.honeywell-dark-theme) .ui.small.loader{width:1.71428571rem;height:1.71428571rem;font-size:0.92857143em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.loader,html:not(.honeywell-dark-theme) .ui.loader{width:2.28571429rem;height:2.28571429rem;font-size:1em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.large.loader,html:not(.honeywell-dark-theme) .ui.large.loader{width:3.42857143rem;height:3.42857143rem;font-size:1.14285714em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.big.loader,html:not(.honeywell-dark-theme) .ui.big.loader{width:3.71428571rem;height:3.71428571rem;font-size:1.28571429em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.huge.loader,html:not(.honeywell-dark-theme) .ui.huge.loader{width:4.14285714rem;height:4.14285714rem;font-size:1.42857143em}html:not(.honeywell-dark-theme) .ui.inverted.dimmer .ui.massive.loader,html:not(.honeywell-dark-theme) .ui.massive.loader{width:4.57142857rem;height:4.57142857rem;font-size:1.71428571em}html:not(.honeywell-dark-theme) .ui.mini.text.loader{min-width:1rem;padding-top:1.78571429rem}html:not(.honeywell-dark-theme) .ui.tiny.text.loader{min-width:1.14285714rem;padding-top:1.92857143rem}html:not(.honeywell-dark-theme) .ui.small.text.loader{min-width:1.71428571rem;padding-top:2.5rem}html:not(.honeywell-dark-theme) .ui.text.loader{min-width:2.28571429rem;padding-top:3.07142857rem}html:not(.honeywell-dark-theme) .ui.large.text.loader{min-width:3.42857143rem;padding-top:4.21428571rem}html:not(.honeywell-dark-theme) .ui.big.text.loader{min-width:3.71428571rem;padding-top:4.5rem}html:not(.honeywell-dark-theme) .ui.huge.text.loader{min-width:4.14285714rem;padding-top:4.92857143rem}html:not(.honeywell-dark-theme) .ui.massive.text.loader{min-width:4.57142857rem;padding-top:5.35714286rem}html:not(.honeywell-dark-theme) .ui.inverted.loader{color:rgba(255,255,255,0.9)}html:not(.honeywell-dark-theme) .ui.inverted.loader:before{border-color:rgba(255,255,255,0.15)}html:not(.honeywell-dark-theme) .ui.inverted.loader:after{border-top-color:#FFFFFF}html:not(.honeywell-dark-theme) .ui.inline.loader{position:relative;vertical-align:middle;margin:0em;left:0em;top:0em;transform:none}html:not(.honeywell-dark-theme) .ui.inline.loader.active,html:not(.honeywell-dark-theme) .ui.inline.loader.visible{display:inline-block}html:not(.honeywell-dark-theme) .ui.centered.inline.loader.active,html:not(.honeywell-dark-theme) .ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}html:not(.honeywell-dark-theme) .ui.steps{display:inline-flex;flex-direction:row;align-items:stretch;margin:1em 0em;background:'';box-shadow:none;line-height:1.14285714em;border-radius:0.28571429rem}html:not(.honeywell-dark-theme) .ui.steps:first-child{margin-top:0em}html:not(.honeywell-dark-theme) .ui.steps:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.steps .step{position:relative;display:flex;flex:1 0 auto;flex-wrap:wrap;flex-direction:row;vertical-align:middle;align-items:center;justify-content:center;margin:0em 0em;padding:1.14285714em 2em;box-shadow:none;border-radius:0em;border:none;transition:background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease}html:not(.honeywell-dark-theme) .ui.steps .step:after{display:none;position:absolute;z-index:2;content:'';top:50%;right:0%;border:medium none;width:1.14285714em;height:1.14285714em;border-style:solid;border-width:0px 1px 1px 0px;transition:background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;transform:translateY(-50%) translateX(50%) rotate(-45deg)}html:not(.honeywell-dark-theme) .ui.steps .step:first-child{padding-left:2em;border-radius:0.28571429rem 0em 0em 0.28571429rem}html:not(.honeywell-dark-theme) .ui.steps .step:last-child{border-radius:0em 0.28571429rem 0.28571429rem 0em}html:not(.honeywell-dark-theme) .ui.steps .step:last-child{border-right:none;margin-right:0em}html:not(.honeywell-dark-theme) .ui.steps .step:only-child{border-radius:0.28571429rem}html:not(.honeywell-dark-theme) .ui.steps .step .title{font-size:1.14285714em;font-weight:bold}html:not(.honeywell-dark-theme) .ui.steps .step>.title{width:100%}html:not(.honeywell-dark-theme) .ui.steps .step .description{font-weight:normal;font-size:0.92857143em;color:rgba(0,0,0,0.87)}html:not(.honeywell-dark-theme) .ui.steps .step>.description{width:100%}html:not(.honeywell-dark-theme) .ui.steps .step .title ~ .description{margin-top:0.25em}html:not(.honeywell-dark-theme) .ui.steps .step>.icon{line-height:1;font-size:2.5em;margin:0em 1rem 0em 0em}html:not(.honeywell-dark-theme) .ui.steps .step>.icon,html:not(.honeywell-dark-theme) .ui.steps .step>.icon ~ .content{display:block;flex:0 1 auto;align-self:middle}html:not(.honeywell-dark-theme) .ui.steps .step>.icon ~ .content{flex-grow:1 0 auto}html:not(.honeywell-dark-theme) .ui.steps:not(.vertical) .step>.icon{width:auto}html:not(.honeywell-dark-theme) .ui.steps .link.step,html:not(.honeywell-dark-theme) .ui.steps a.step{cursor:pointer}html:not(.honeywell-dark-theme) .ui.ordered.steps{counter-reset:ordered}html:not(.honeywell-dark-theme) .ui.ordered.steps .step:before{display:block;position:static;text-align:center;content:counters(ordered, ".");align-self:middle;margin-right:1rem;font-size:2.5em;counter-increment:ordered;font-family:inherit;font-weight:bold}html:not(.honeywell-dark-theme) .ui.ordered.steps .step>*{display:block;align-self:middle}html:not(.honeywell-dark-theme) .ui.vertical.steps{display:inline-flex;flex-direction:column;overflow:visible}html:not(.honeywell-dark-theme) .ui.vertical.steps .step{justify-content:flex-start;border-radius:0em;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.vertical.steps .step:first-child{padding:1.14285714em 2em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.vertical.steps .step:last-child{border-bottom:none;border-radius:0em 0em 0.28571429rem 0.28571429rem}html:not(.honeywell-dark-theme) .ui.vertical.steps .step:only-child{border-radius:0.28571429rem}html:not(.honeywell-dark-theme) .ui.vertical.steps .step:after{display:none}html:not(.honeywell-dark-theme) .ui.vertical.steps .step:after{top:50%;right:0%;border-width:0px 1px 1px 0px}html:not(.honeywell-dark-theme) .ui.vertical.steps .step:after{display:none}html:not(.honeywell-dark-theme) .ui.vertical.steps .active.step:after{display:block}html:not(.honeywell-dark-theme) .ui.vertical.steps .step:last-child:after{display:none}html:not(.honeywell-dark-theme) .ui.vertical.steps .active.step:last-child:after{display:block}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.steps:not(.unstackable){display:inline-flex;overflow:visible;flex-direction:column}html:not(.honeywell-dark-theme) .ui.steps:not(.unstackable) .step{width:100% !important;flex-direction:column;border-radius:0em;padding:1.14285714em 2em}html:not(.honeywell-dark-theme) .ui.steps:not(.unstackable) .step:first-child{padding:1.14285714em 2em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.steps:not(.unstackable) .step:last-child{border-radius:0em 0em 0.28571429rem 0.28571429rem}html:not(.honeywell-dark-theme) .ui.steps:not(.unstackable) .step:after{display:none !important}html:not(.honeywell-dark-theme) .ui.steps:not(.unstackable) .step .content{text-align:center}html:not(.honeywell-dark-theme) .ui.steps:not(.unstackable) .step>.icon,html:not(.honeywell-dark-theme) .ui.ordered.steps:not(.unstackable) .step:before{margin:0em 0em 1rem 0em}}html:not(.honeywell-dark-theme) .ui.steps .step.active{cursor:auto}html:not(.honeywell-dark-theme) .ui.steps .step:after{display:block}html:not(.honeywell-dark-theme) .ui.steps .active.step:after{display:block}html:not(.honeywell-dark-theme) .ui.steps .step:last-child:after{display:none}html:not(.honeywell-dark-theme) .ui.steps .active.step:last-child:after{display:none}html:not(.honeywell-dark-theme) .ui.steps .link.active.step:hover::after,html:not(.honeywell-dark-theme) .ui.steps .link.active.step:hover,html:not(.honeywell-dark-theme) .ui.steps a.active.step:hover::after,html:not(.honeywell-dark-theme) .ui.steps a.active.step:hover{cursor:pointer}html:not(.honeywell-dark-theme) .ui.steps .disabled.step{cursor:auto;pointer-events:none}@media only screen and (max-width: 991px){html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].steps{display:inline-flex;overflow:visible;flex-direction:column}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].steps .step{flex-direction:column;border-radius:0em;padding:1.14285714em 2em}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].steps .step:first-child{padding:1.14285714em 2em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].steps .step:last-child{border-radius:0em 0em 0.28571429rem 0.28571429rem}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].steps .step:after{display:none !important}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].steps .step .content{text-align:center}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].steps .step>.icon,html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].ordered.steps .step:before{margin:0em 0em 1rem 0em}}html:not(.honeywell-dark-theme) .ui.fluid.steps{display:flex;width:100%}html:not(.honeywell-dark-theme) .ui.attached.steps{width:calc(100% +  2px) !important;margin:0em -1px 0;max-width:calc(100% +  2px);border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.attached.steps .step:first-child{border-radius:0.28571429rem 0em 0em 0em}html:not(.honeywell-dark-theme) .ui.attached.steps .step:last-child{border-radius:0em 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.bottom.attached.steps{margin:0 -1px 0em;border-radius:0em 0em 0.28571429rem 0.28571429rem}html:not(.honeywell-dark-theme) .ui.bottom.attached.steps .step:first-child{border-radius:0em 0em 0em 0.28571429rem}html:not(.honeywell-dark-theme) .ui.bottom.attached.steps .step:last-child{border-radius:0em 0em 0.28571429rem 0em}html:not(.honeywell-dark-theme) .ui.one.steps,html:not(.honeywell-dark-theme) .ui.two.steps,html:not(.honeywell-dark-theme) .ui.three.steps,html:not(.honeywell-dark-theme) .ui.four.steps,html:not(.honeywell-dark-theme) .ui.five.steps,html:not(.honeywell-dark-theme) .ui.six.steps,html:not(.honeywell-dark-theme) .ui.seven.steps,html:not(.honeywell-dark-theme) .ui.eight.steps{width:100%}html:not(.honeywell-dark-theme) .ui.one.steps>.step,html:not(.honeywell-dark-theme) .ui.two.steps>.step,html:not(.honeywell-dark-theme) .ui.three.steps>.step,html:not(.honeywell-dark-theme) .ui.four.steps>.step,html:not(.honeywell-dark-theme) .ui.five.steps>.step,html:not(.honeywell-dark-theme) .ui.six.steps>.step,html:not(.honeywell-dark-theme) .ui.seven.steps>.step,html:not(.honeywell-dark-theme) .ui.eight.steps>.step{flex-wrap:nowrap}html:not(.honeywell-dark-theme) .ui.one.steps>.step{width:100%}html:not(.honeywell-dark-theme) .ui.two.steps>.step{width:50%}html:not(.honeywell-dark-theme) .ui.three.steps>.step{width:33.333%}html:not(.honeywell-dark-theme) .ui.four.steps>.step{width:25%}html:not(.honeywell-dark-theme) .ui.five.steps>.step{width:20%}html:not(.honeywell-dark-theme) .ui.six.steps>.step{width:16.666%}html:not(.honeywell-dark-theme) .ui.seven.steps>.step{width:14.285%}html:not(.honeywell-dark-theme) .ui.eight.steps>.step{width:12.500%}html:not(.honeywell-dark-theme) .ui.steps .step,html:not(.honeywell-dark-theme) .ui.step{font-size:1rem}html:not(.honeywell-dark-theme) .ui.menu{display:flex;margin:1rem 0em;font-weight:normal;min-height:2.85714286em}html:not(.honeywell-dark-theme) .ui.menu:after{content:'';display:block;height:0px;clear:both;visibility:hidden}html:not(.honeywell-dark-theme) .ui.menu:first-child{margin-top:0rem}html:not(.honeywell-dark-theme) .ui.menu:last-child{margin-bottom:0rem}html:not(.honeywell-dark-theme) .ui.menu .menu{margin:0em}html:not(.honeywell-dark-theme) .ui.menu:not(.vertical)>.menu{display:flex}html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .item{display:flex;align-items:center}html:not(.honeywell-dark-theme) .ui.menu .item{position:relative;vertical-align:middle;line-height:1;text-decoration:none;-webkit-tap-highlight-color:transparent;flex:0 0 auto;user-select:none;background:none;text-transform:none;font-weight:normal;transition:background 0.1s ease, box-shadow 0.1s}html:not(.honeywell-dark-theme) .ui.menu .item:before{position:absolute;content:'';top:0%;right:0px;height:100%;width:1px;background:rgba(34,36,38,0.1)}html:not(.honeywell-dark-theme) .ui.menu .text.item>*,html:not(.honeywell-dark-theme) .ui.menu .item>a:not(.ui),html:not(.honeywell-dark-theme) .ui.menu .item>p:only-child{user-select:text;line-height:1.3}html:not(.honeywell-dark-theme) .ui.menu .item>p:first-child{margin-top:0}html:not(.honeywell-dark-theme) .ui.menu .item>p:last-child{margin-bottom:0}html:not(.honeywell-dark-theme) .ui.menu .item>i.icon{opacity:0.9;float:none;margin:0em 0.35714286em 0em 0em}html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .item>.button{position:relative;top:0em;margin:-0.5em 0em;padding-bottom:0.78571429em;padding-top:0.78571429em;font-size:1em}html:not(.honeywell-dark-theme) .ui.menu>.grid,html:not(.honeywell-dark-theme) .ui.menu>.container{display:flex;align-items:inherit;flex-direction:inherit}html:not(.honeywell-dark-theme) .ui.menu .item>.input{width:100%}html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .item>.input{position:relative;top:0em;margin:-0.5em 0em}html:not(.honeywell-dark-theme) .ui.menu .item>.input input{font-size:1em;padding-top:0.57142857em;padding-bottom:0.57142857em}html:not(.honeywell-dark-theme) .ui.menu .header.item,html:not(.honeywell-dark-theme) .ui.vertical.menu .header.item{margin:0em;background:'';text-transform:normal;font-weight:bold}html:not(.honeywell-dark-theme) .ui.vertical.menu .item>.header:not(.ui){margin:0em 0em 0.5em;font-size:1em;font-weight:bold}html:not(.honeywell-dark-theme) .ui.menu .item>i.dropdown.icon{padding:0em;float:right;margin:0em 0em 0em 1em}html:not(.honeywell-dark-theme) .ui.menu .dropdown.item .menu{left:0px;min-width:calc(100% - 1px);margin:0em 0px 0px;flex-direction:column !important}html:not(.honeywell-dark-theme) .ui.menu .ui.dropdown .menu>.item{margin:0;text-align:left;font-size:1em !important;padding:0.78571429em 1.14285714em !important;background:transparent !important;text-transform:none;font-weight:normal;box-shadow:none !important;transition:none !important}html:not(.honeywell-dark-theme) .ui.menu .ui.dropdown .menu>.active.item{font-weight:bold !important}html:not(.honeywell-dark-theme) .ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}html:not(.honeywell-dark-theme) .ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;font-size:1em !important;float:none;margin:0em 0.75em 0em 0em}html:not(.honeywell-dark-theme) .ui.secondary.menu .dropdown.item>.menu,html:not(.honeywell-dark-theme) .ui.text.menu .dropdown.item>.menu{margin-top:0.35714286em}html:not(.honeywell-dark-theme) .ui.vertical.menu .dropdown.item>.icon{float:right;content:"\F0DA";margin-left:1em}html:not(.honeywell-dark-theme) .ui.vertical.menu .dropdown.item .menu{left:100%;min-width:0;margin:0em 0em 0em 0em;box-shadow:0 1px 3px 0px rgba(0,0,0,0.08)}html:not(.honeywell-dark-theme) .ui.vertical.menu .dropdown.item.upward .menu{bottom:0}html:not(.honeywell-dark-theme) .ui.vertical.menu .dropdown.item:not(.upward) .menu{top:0}html:not(.honeywell-dark-theme) .ui.vertical.menu .dropdown.active.item{box-shadow:none}html:not(.honeywell-dark-theme) .ui.item.menu .dropdown .menu .item{width:100%}html:not(.honeywell-dark-theme) .ui.menu .item>.label{margin-left:1em;padding:0.3em 0.78571429em}html:not(.honeywell-dark-theme) .ui.vertical.menu .item>.label{margin-top:-0.15em;margin-bottom:-0.15em;padding:0.3em 0.78571429em}html:not(.honeywell-dark-theme) .ui.menu .item>.floating.label{padding:0.3em 0.78571429em}html:not(.honeywell-dark-theme) .ui.link.menu .item:hover,html:not(.honeywell-dark-theme) .ui.menu .dropdown.item:hover,html:not(.honeywell-dark-theme) .ui.menu .link.item:hover,html:not(.honeywell-dark-theme) .ui.menu a.item:hover{cursor:pointer}html:not(.honeywell-dark-theme) .ui.menu .item.disabled,html:not(.honeywell-dark-theme) .ui.menu .item.disabled:hover{cursor:default}html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .left.item,html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .left.menu{display:flex;margin-right:auto !important}html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .right.item,html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .right.menu{display:flex;margin-left:auto !important}html:not(.honeywell-dark-theme) .ui.menu .right.item::before,html:not(.honeywell-dark-theme) .ui.menu .right.menu>.item::before{right:auto;left:0}html:not(.honeywell-dark-theme) .ui.vertical.menu{display:block;flex-direction:column}html:not(.honeywell-dark-theme) .ui.vertical.menu .item{display:block;background:none;border-top:none;border-right:none}html:not(.honeywell-dark-theme) .ui.vertical.menu .item>.label{float:right;text-align:center}html:not(.honeywell-dark-theme) .ui.vertical.menu .item:before{position:absolute;content:'';top:0%;left:0px;width:100%;height:1px}html:not(.honeywell-dark-theme) .ui.vertical.menu .item:first-child:before{display:none !important}html:not(.honeywell-dark-theme) .ui.vertical.menu .item>.menu{margin:0.5em -1.14285714em 0em}html:not(.honeywell-dark-theme) .ui.vertical.menu .menu .item{background:none;padding:0.5em 1.33333333em;font-size:0.85714286em}html:not(.honeywell-dark-theme) .ui.vertical.menu .menu .item:before{display:none}html:not(.honeywell-dark-theme) .ui.vertical.menu .active.item{border-radius:0em;box-shadow:none}html:not(.honeywell-dark-theme) .ui.vertical.menu .active.item .menu .active.item{border-left:none}html:not(.honeywell-dark-theme) .ui.vertical.menu .item .menu .active.item{background-color:transparent;font-weight:bold}html:not(.honeywell-dark-theme) .ui.secondary.menu{background:none;margin-left:-0.35714286em;margin-right:-0.35714286em;border-radius:0em;border:none;box-shadow:none}html:not(.honeywell-dark-theme) .ui.secondary.menu .item{align-self:center;box-shadow:none;border:none;padding:0.78571429em 0.92857143em;margin:0em 0.35714286em;background:none;transition:color 0.1s ease}html:not(.honeywell-dark-theme) .ui.secondary.menu .item:before{display:none !important}html:not(.honeywell-dark-theme) .ui.secondary.menu .header.item{border-radius:0em;border-right:none;background:none transparent}html:not(.honeywell-dark-theme) .ui.secondary.menu .active.item{box-shadow:none}html:not(.honeywell-dark-theme) .ui.secondary.menu .active.item:hover{box-shadow:none}html:not(.honeywell-dark-theme) .ui.secondary.item.menu{margin-left:0em;margin-right:0em}html:not(.honeywell-dark-theme) .ui.secondary.item.menu .item:last-child{margin-right:0em}html:not(.honeywell-dark-theme) .ui.secondary.attached.menu{box-shadow:none}html:not(.honeywell-dark-theme) .ui.vertical.secondary.menu .item:not(.dropdown)>.menu{margin:0em -0.92857143em}html:not(.honeywell-dark-theme) .ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item{margin:0em;padding:0.5em 1.33333333em}html:not(.honeywell-dark-theme) .ui.secondary.vertical.menu>.item{border:none;margin:0em 0em 0.35714286em}html:not(.honeywell-dark-theme) .ui.secondary.vertical.menu>.header.item{border-radius:0em}html:not(.honeywell-dark-theme) .ui.vertical.secondary.menu .item>.menu .item{background-color:transparent}html:not(.honeywell-dark-theme) .ui.menu.fluid,html:not(.honeywell-dark-theme) .ui.vertical.menu.fluid{width:100% !important}html:not(.honeywell-dark-theme) .ui.menu{font-size:1rem}html:not(.honeywell-dark-theme) .ui.vertical.menu{width:15rem}html:not(.honeywell-dark-theme) .ui.menu .item>.input{width:100%}html:not(.honeywell-dark-theme) .ui.menu:not(.vertical) .item>.input{position:relative;top:0em;margin:-0.5em 0em}html:not(.honeywell-dark-theme) .ui.menu .item>.input input{font-size:1em;padding-top:0.57142857em;padding-bottom:0.57142857em}html:not(.honeywell-dark-theme) .ui.table{width:100%;background:#FFFFFF;margin:1em 0em;border:1px solid rgba(34,36,38,0.15);box-shadow:none;border-radius:0.28571429rem;text-align:left;color:rgba(0,0,0,0.87);border-collapse:separate;border-spacing:0px}html:not(.honeywell-dark-theme) .ui.table:first-child{margin-top:0em}html:not(.honeywell-dark-theme) .ui.table:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.table th,html:not(.honeywell-dark-theme) .ui.table td{transition:background 0.1s ease, color 0.1s ease}html:not(.honeywell-dark-theme) .ui.table thead{box-shadow:none}html:not(.honeywell-dark-theme) .ui.table thead th{cursor:auto;background:#F9FAFB;text-align:inherit;color:rgba(0,0,0,0.87);padding:0.92857143em 0.78571429em;vertical-align:inherit;font-style:none;font-weight:bold;text-transform:none;border-bottom:1px solid rgba(34,36,38,0.1);border-left:none}html:not(.honeywell-dark-theme) .ui.table thead tr>th:first-child{border-left:none}html:not(.honeywell-dark-theme) .ui.table thead tr:first-child>th:first-child{border-radius:0.28571429rem 0em 0em 0em}html:not(.honeywell-dark-theme) .ui.table thead tr:first-child>th:last-child{border-radius:0em 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.table thead tr:first-child>th:only-child{border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.table tfoot{box-shadow:none}html:not(.honeywell-dark-theme) .ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,0.15);background:#F9FAFB;text-align:inherit;color:rgba(0,0,0,0.87);padding:0.78571429em 0.78571429em;vertical-align:middle;font-style:normal;font-weight:normal;text-transform:none}html:not(.honeywell-dark-theme) .ui.table tfoot tr>th:first-child{border-left:none}html:not(.honeywell-dark-theme) .ui.table tfoot tr:first-child>th:first-child{border-radius:0em 0em 0em 0.28571429rem}html:not(.honeywell-dark-theme) .ui.table tfoot tr:first-child>th:last-child{border-radius:0em 0em 0.28571429rem 0em}html:not(.honeywell-dark-theme) .ui.table tfoot tr:first-child>th:only-child{border-radius:0em 0em 0.28571429rem 0.28571429rem}html:not(.honeywell-dark-theme) .ui.table tr td{border-top:1px solid rgba(34,36,38,0.1)}html:not(.honeywell-dark-theme) .ui.table tr:first-child td{border-top:none}html:not(.honeywell-dark-theme) .ui.table td{padding:0.78571429em 0.78571429em;text-align:inherit}html:not(.honeywell-dark-theme) .ui.table>.icon{vertical-align:baseline}html:not(.honeywell-dark-theme) .ui.table>.icon:only-child{margin:0em}html:not(.honeywell-dark-theme) .ui.table.segment{padding:0em}html:not(.honeywell-dark-theme) .ui.table.segment:after{display:none}html:not(.honeywell-dark-theme) .ui.table.segment.stacked:after{display:block}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.table:not(.unstackable){width:100%}html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tbody,html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tr,html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tr>th,html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tr>td{width:auto !important;display:block !important}html:not(.honeywell-dark-theme) .ui.table:not(.unstackable){padding:0em}html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) thead{display:block}html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tfoot{display:block}html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0px -1px 0px 0px rgba(0,0,0,0.1) inset !important}html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tr>th,html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) tr>td{background:none;border:none !important;padding:0.25em 0.75em !important;box-shadow:none !important}html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) th:first-child,html:not(.honeywell-dark-theme) .ui.table:not(.unstackable) td:first-child{font-weight:bold}html:not(.honeywell-dark-theme) .ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none !important}}html:not(.honeywell-dark-theme) .ui.table th .image,html:not(.honeywell-dark-theme) .ui.table th .image img,html:not(.honeywell-dark-theme) .ui.table td .image,html:not(.honeywell-dark-theme) .ui.table td .image img{max-width:none}html:not(.honeywell-dark-theme) .ui.structured.table{border-collapse:collapse}html:not(.honeywell-dark-theme) .ui.structured.table thead th{border-left:none;border-right:none}html:not(.honeywell-dark-theme) .ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,0.15);border-right:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.structured.basic.table th{border-left:none;border-right:none}html:not(.honeywell-dark-theme) .ui.structured.celled.table tr th,html:not(.honeywell-dark-theme) .ui.structured.celled.table tr td{border-left:1px solid rgba(34,36,38,0.1);border-right:1px solid rgba(34,36,38,0.1)}html:not(.honeywell-dark-theme) .ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:normal;color:rgba(0,0,0,0.4);box-shadow:-1px -1px 0px 1px #FFFFFF}html:not(.honeywell-dark-theme) .ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:rgba(0,0,0,0.4);color:normal;box-shadow:1px 1px 0px 1px #FFFFFF}html:not(.honeywell-dark-theme) .ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0px -1px 0px 1px #FFFFFF}html:not(.honeywell-dark-theme) .ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0px 1px 0px 1px #FFFFFF}html:not(.honeywell-dark-theme) .ui.definition.table tr td:first-child:not(.ignored),html:not(.honeywell-dark-theme) .ui.definition.table tr td.definition{background:rgba(0,0,0,0.03);font-weight:bold;color:rgba(0,0,0,0.95);text-transform:'';box-shadow:'';text-align:'';font-size:1em;padding-left:'';padding-right:''}html:not(.honeywell-dark-theme) .ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.definition.table tfoot:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.definition.table td:nth-child(2){border-left:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.table tr.positive,html:not(.honeywell-dark-theme) .ui.table td.positive{box-shadow:0px 0px 0px #A3C293 inset}html:not(.honeywell-dark-theme) .ui.table tr.positive,html:not(.honeywell-dark-theme) .ui.table td.positive{background:#FCFFF5 !important;color:#2C662D !important}html:not(.honeywell-dark-theme) .ui.table tr.negative,html:not(.honeywell-dark-theme) .ui.table td.negative{box-shadow:0px 0px 0px #E0B4B4 inset}html:not(.honeywell-dark-theme) .ui.table tr.negative,html:not(.honeywell-dark-theme) .ui.table td.negative{background:#FFF6F6 !important;color:#9F3A38 !important}html:not(.honeywell-dark-theme) .ui.table tr.error,html:not(.honeywell-dark-theme) .ui.table td.error{box-shadow:0px 0px 0px #E0B4B4 inset}html:not(.honeywell-dark-theme) .ui.table tr.error,html:not(.honeywell-dark-theme) .ui.table td.error{background:#FFF6F6 !important;color:#9F3A38 !important}html:not(.honeywell-dark-theme) .ui.table tr.warning,html:not(.honeywell-dark-theme) .ui.table td.warning{box-shadow:0px 0px 0px #C9BA9B inset}html:not(.honeywell-dark-theme) .ui.table tr.warning,html:not(.honeywell-dark-theme) .ui.table td.warning{background:#FFFAF3 !important;color:#573A08 !important}html:not(.honeywell-dark-theme) .ui.table tr.active,html:not(.honeywell-dark-theme) .ui.table td.active{box-shadow:0px 0px 0px rgba(0,0,0,0.87) inset}html:not(.honeywell-dark-theme) .ui.table tr.active,html:not(.honeywell-dark-theme) .ui.table td.active{background:#E0E0E0 !important;color:rgba(0,0,0,0.87) !important}html:not(.honeywell-dark-theme) .ui.table tr.disabled td,html:not(.honeywell-dark-theme) .ui.table tr td.disabled,html:not(.honeywell-dark-theme) .ui.table tr.disabled:hover,html:not(.honeywell-dark-theme) .ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,0.3)}@media only screen and (max-width: 991px){html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table,html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tbody,html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tr,html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tr>th,html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tr>td{width:100% !important;display:block !important}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table{padding:0em}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table thead{display:block}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tfoot{display:block}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0px -1px 0px 0px rgba(0,0,0,0.1) inset !important}html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tr>th,html:not(.honeywell-dark-theme) .ui[class*="tablet stackable"].table tr>td{background:none;border:none !important;padding:0.25em 0.75em;box-shadow:none !important}html:not(.honeywell-dark-theme) .ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none !important}}html:not(.honeywell-dark-theme) .ui.table[class*="left aligned"],html:not(.honeywell-dark-theme) .ui.table [class*="left aligned"]{text-align:left}html:not(.honeywell-dark-theme) .ui.table[class*="center aligned"],html:not(.honeywell-dark-theme) .ui.table [class*="center aligned"]{text-align:center}html:not(.honeywell-dark-theme) .ui.table[class*="right aligned"],html:not(.honeywell-dark-theme) .ui.table [class*="right aligned"]{text-align:right}html:not(.honeywell-dark-theme) .ui.table[class*="top aligned"],html:not(.honeywell-dark-theme) .ui.table [class*="top aligned"]{vertical-align:top}html:not(.honeywell-dark-theme) .ui.table[class*="middle aligned"],html:not(.honeywell-dark-theme) .ui.table [class*="middle aligned"]{vertical-align:middle}html:not(.honeywell-dark-theme) .ui.table[class*="bottom aligned"],html:not(.honeywell-dark-theme) .ui.table [class*="bottom aligned"]{vertical-align:bottom}html:not(.honeywell-dark-theme) .ui.table th.collapsing,html:not(.honeywell-dark-theme) .ui.table td.collapsing{width:1px;white-space:nowrap}html:not(.honeywell-dark-theme) .ui.fixed.table{table-layout:fixed}html:not(.honeywell-dark-theme) .ui.fixed.table th,html:not(.honeywell-dark-theme) .ui.fixed.table td{overflow:hidden;text-overflow:ellipsis}html:not(.honeywell-dark-theme) .ui.selectable.table tbody tr:hover,html:not(.honeywell-dark-theme) .ui.table tbody tr td.selectable:hover{background:rgba(0,0,0,0.05) !important;color:rgba(0,0,0,0.95) !important}html:not(.honeywell-dark-theme) .ui.table tbody tr td.selectable{padding:0em}html:not(.honeywell-dark-theme) .ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:0.78571429em 0.78571429em}html:not(.honeywell-dark-theme) .ui.selectable.table tr.error:hover,html:not(.honeywell-dark-theme) .ui.table tr td.selectable.error:hover,html:not(.honeywell-dark-theme) .ui.selectable.table tr:hover td.error{background:#ffe7e7 !important;color:#943634 !important}html:not(.honeywell-dark-theme) .ui.selectable.table tr.warning:hover,html:not(.honeywell-dark-theme) .ui.table tr td.selectable.warning:hover,html:not(.honeywell-dark-theme) .ui.selectable.table tr:hover td.warning{background:#fff4e4 !important;color:#493107 !important}html:not(.honeywell-dark-theme) .ui.selectable.table tr.active:hover,html:not(.honeywell-dark-theme) .ui.table tr td.selectable.active:hover,html:not(.honeywell-dark-theme) .ui.selectable.table tr:hover td.active{background:#E0E0E0 !important;color:rgba(0,0,0,0.87) !important}html:not(.honeywell-dark-theme) .ui.selectable.table tr.positive:hover,html:not(.honeywell-dark-theme) .ui.table tr td.selectable.positive:hover,html:not(.honeywell-dark-theme) .ui.selectable.table tr:hover td.positive{background:#f7ffe6 !important;color:#275b28 !important}html:not(.honeywell-dark-theme) .ui.selectable.table tr.negative:hover,html:not(.honeywell-dark-theme) .ui.table tr td.selectable.negative:hover,html:not(.honeywell-dark-theme) .ui.selectable.table tr:hover td.negative{background:#ffe7e7 !important;color:#943634 !important}html:not(.honeywell-dark-theme) .ui.attached.table{top:0px;bottom:0px;border-radius:0px;margin:0em -1px;width:calc(100% +  2px);max-width:calc(100% +  2px);box-shadow:none;border:1px solid #D4D4D5}html:not(.honeywell-dark-theme) .ui.attached+.ui.attached.table:not(.top){border-top:none}html:not(.honeywell-dark-theme) .ui[class*="top attached"].table{bottom:0px;margin-bottom:0em;top:0px;margin-top:1em;border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.table[class*="top attached"]:first-child{margin-top:0em}html:not(.honeywell-dark-theme) .ui[class*="bottom attached"].table{bottom:0px;margin-top:0em;top:0px;margin-bottom:1em;box-shadow:none, none;border-radius:0em 0em 0.28571429rem 0.28571429rem}html:not(.honeywell-dark-theme) .ui[class*="bottom attached"].table:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.striped.table>tr:nth-child(2n),html:not(.honeywell-dark-theme) .ui.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,50,0.02)}html:not(.honeywell-dark-theme) .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#EFEFEF !important;color:rgba(0,0,0,0.95) !important}html:not(.honeywell-dark-theme) .ui.table[class*="single line"],html:not(.honeywell-dark-theme) .ui.table [class*="single line"]{white-space:nowrap}html:not(.honeywell-dark-theme) .ui.table[class*="single line"],html:not(.honeywell-dark-theme) .ui.table [class*="single line"]{white-space:nowrap}html:not(.honeywell-dark-theme) .ui.one.column.table td{width:100%}html:not(.honeywell-dark-theme) .ui.two.column.table td{width:50%}html:not(.honeywell-dark-theme) .ui.three.column.table td{width:33.33333333%}html:not(.honeywell-dark-theme) .ui.four.column.table td{width:25%}html:not(.honeywell-dark-theme) .ui.five.column.table td{width:20%}html:not(.honeywell-dark-theme) .ui.six.column.table td{width:16.66666667%}html:not(.honeywell-dark-theme) .ui.seven.column.table td{width:14.28571429%}html:not(.honeywell-dark-theme) .ui.eight.column.table td{width:12.5%}html:not(.honeywell-dark-theme) .ui.nine.column.table td{width:11.11111111%}html:not(.honeywell-dark-theme) .ui.ten.column.table td{width:10%}html:not(.honeywell-dark-theme) .ui.eleven.column.table td{width:9.09090909%}html:not(.honeywell-dark-theme) .ui.twelve.column.table td{width:8.33333333%}html:not(.honeywell-dark-theme) .ui.thirteen.column.table td{width:7.69230769%}html:not(.honeywell-dark-theme) .ui.fourteen.column.table td{width:7.14285714%}html:not(.honeywell-dark-theme) .ui.fifteen.column.table td{width:6.66666667%}html:not(.honeywell-dark-theme) .ui.sixteen.column.table td{width:6.25%}html:not(.honeywell-dark-theme) .ui.table th.one.wide,html:not(.honeywell-dark-theme) .ui.table td.one.wide{width:6.25%}html:not(.honeywell-dark-theme) .ui.table th.two.wide,html:not(.honeywell-dark-theme) .ui.table td.two.wide{width:12.5%}html:not(.honeywell-dark-theme) .ui.table th.three.wide,html:not(.honeywell-dark-theme) .ui.table td.three.wide{width:18.75%}html:not(.honeywell-dark-theme) .ui.table th.four.wide,html:not(.honeywell-dark-theme) .ui.table td.four.wide{width:25%}html:not(.honeywell-dark-theme) .ui.table th.five.wide,html:not(.honeywell-dark-theme) .ui.table td.five.wide{width:31.25%}html:not(.honeywell-dark-theme) .ui.table th.six.wide,html:not(.honeywell-dark-theme) .ui.table td.six.wide{width:37.5%}html:not(.honeywell-dark-theme) .ui.table th.seven.wide,html:not(.honeywell-dark-theme) .ui.table td.seven.wide{width:43.75%}html:not(.honeywell-dark-theme) .ui.table th.eight.wide,html:not(.honeywell-dark-theme) .ui.table td.eight.wide{width:50%}html:not(.honeywell-dark-theme) .ui.table th.nine.wide,html:not(.honeywell-dark-theme) .ui.table td.nine.wide{width:56.25%}html:not(.honeywell-dark-theme) .ui.table th.ten.wide,html:not(.honeywell-dark-theme) .ui.table td.ten.wide{width:62.5%}html:not(.honeywell-dark-theme) .ui.table th.eleven.wide,html:not(.honeywell-dark-theme) .ui.table td.eleven.wide{width:68.75%}html:not(.honeywell-dark-theme) .ui.table th.twelve.wide,html:not(.honeywell-dark-theme) .ui.table td.twelve.wide{width:75%}html:not(.honeywell-dark-theme) .ui.table th.thirteen.wide,html:not(.honeywell-dark-theme) .ui.table td.thirteen.wide{width:81.25%}html:not(.honeywell-dark-theme) .ui.table th.fourteen.wide,html:not(.honeywell-dark-theme) .ui.table td.fourteen.wide{width:87.5%}html:not(.honeywell-dark-theme) .ui.table th.fifteen.wide,html:not(.honeywell-dark-theme) .ui.table td.fifteen.wide{width:93.75%}html:not(.honeywell-dark-theme) .ui.table th.sixteen.wide,html:not(.honeywell-dark-theme) .ui.table td.sixteen.wide{width:100%}html:not(.honeywell-dark-theme) .ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,0.15);color:rgba(0,0,0,0.87)}html:not(.honeywell-dark-theme) .ui.sortable.table thead th:first-child{border-left:none}html:not(.honeywell-dark-theme) .ui.sortable.table thead th.sorted,html:not(.honeywell-dark-theme) .ui.sortable.table thead th.sorted:hover{user-select:none}html:not(.honeywell-dark-theme) .ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:normal;text-decoration:inherit;content:'';height:1em;width:auto;opacity:0.8;margin:0em 0em 0em 0.5em;font-family:'Icons'}html:not(.honeywell-dark-theme) .ui.sortable.table thead th.ascending:after{content:'\F0D8'}html:not(.honeywell-dark-theme) .ui.sortable.table thead th.descending:after{content:'\F0D7'}html:not(.honeywell-dark-theme) .ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,0.3)}html:not(.honeywell-dark-theme) .ui.sortable.table thead th:hover{background:rgba(0,0,0,0.05);color:rgba(0,0,0,0.8)}html:not(.honeywell-dark-theme) .ui.sortable.table thead th.sorted{background:rgba(0,0,0,0.05);color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) .ui.sortable.table thead th.sorted:after{display:inline-block}html:not(.honeywell-dark-theme) .ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,0.05);color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) .ui.collapsing.table{width:auto}html:not(.honeywell-dark-theme) .ui.basic.table{background:transparent;border:1px solid rgba(34,36,38,0.15);box-shadow:none}html:not(.honeywell-dark-theme) .ui.basic.table thead,html:not(.honeywell-dark-theme) .ui.basic.table tfoot{box-shadow:none}html:not(.honeywell-dark-theme) .ui.basic.table th{background:transparent;border-left:none}html:not(.honeywell-dark-theme) .ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.basic.table td{background:transparent}html:not(.honeywell-dark-theme) .ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,0.05) !important}html:not(.honeywell-dark-theme) .ui[class*="very basic"].table{border:none}html:not(.honeywell-dark-theme) .ui[class*="very basic"].table:not(.sortable):not(.striped) th,html:not(.honeywell-dark-theme) .ui[class*="very basic"].table:not(.sortable):not(.striped) td{padding:''}html:not(.honeywell-dark-theme) .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,html:not(.honeywell-dark-theme) .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child{padding-left:0em}html:not(.honeywell-dark-theme) .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,html:not(.honeywell-dark-theme) .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child{padding-right:0em}html:not(.honeywell-dark-theme) .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0em}html:not(.honeywell-dark-theme) .ui.celled.table tr th,html:not(.honeywell-dark-theme) .ui.celled.table tr td{border-left:1px solid rgba(34,36,38,0.1)}html:not(.honeywell-dark-theme) .ui.celled.table tr th:first-child,html:not(.honeywell-dark-theme) .ui.celled.table tr td:first-child{border-left:none}html:not(.honeywell-dark-theme) .ui.padded.table th{padding-left:1em;padding-right:1em}html:not(.honeywell-dark-theme) .ui.padded.table th,html:not(.honeywell-dark-theme) .ui.padded.table td{padding:1em 1em}html:not(.honeywell-dark-theme) .ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}html:not(.honeywell-dark-theme) .ui[class*="very padded"].table td{padding:1.5em 1.5em}html:not(.honeywell-dark-theme) .ui.compact.table th{padding-left:0.7em;padding-right:0.7em}html:not(.honeywell-dark-theme) .ui.compact.table td{padding:0.5em 0.7em}html:not(.honeywell-dark-theme) .ui[class*="very compact"].table th{padding-left:0.6em;padding-right:0.6em}html:not(.honeywell-dark-theme) .ui[class*="very compact"].table td{padding:0.4em 0.6em}html:not(.honeywell-dark-theme) .ui.small.table{font-size:0.9em}html:not(.honeywell-dark-theme) .ui.table{font-size:1em}html:not(.honeywell-dark-theme) .ui.large.table{font-size:1.1em}html:not(.honeywell-dark-theme) .ui.cards>.card,html:not(.honeywell-dark-theme) .ui.card{max-width:100%;position:relative;display:flex;flex-direction:column;min-height:0px;padding:0em;border:none}html:not(.honeywell-dark-theme) .ui.card{margin:1em 0em}html:not(.honeywell-dark-theme) .ui.cards>.card a,html:not(.honeywell-dark-theme) .ui.card a{cursor:pointer}html:not(.honeywell-dark-theme) .ui.card:first-child{margin-top:0em}html:not(.honeywell-dark-theme) .ui.card:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.cards{display:flex;margin:-0.875em -0.5em;flex-wrap:wrap}html:not(.honeywell-dark-theme) .ui.cards>.card{display:flex;margin:0.875em 0.5em;float:none}html:not(.honeywell-dark-theme) .ui.cards:after,html:not(.honeywell-dark-theme) .ui.card:after{display:block;content:' ';height:0px;clear:both;overflow:hidden;visibility:hidden}html:not(.honeywell-dark-theme) .ui.cards ~ .ui.cards{margin-top:0.875em}html:not(.honeywell-dark-theme) .ui.cards>.card>.content,html:not(.honeywell-dark-theme) .ui.card>.content{flex-grow:1;border:none;background:none;margin:0em;padding:1em 1em;box-shadow:none;font-size:1em;border-radius:0em}html:not(.honeywell-dark-theme) .ui.cards>.card>.content:after,html:not(.honeywell-dark-theme) .ui.card>.content:after{display:block;content:' ';height:0px;clear:both;overflow:hidden;visibility:hidden}html:not(.honeywell-dark-theme) .ui.cards>.card>.content>.header,html:not(.honeywell-dark-theme) .ui.card>.content>.header{display:block;margin:''}html:not(.honeywell-dark-theme) .ui.cards>.card>.content>.header:not(.ui),html:not(.honeywell-dark-theme) .ui.card>.content>.header:not(.ui){font-weight:bold;margin-top:-0.21425em}html:not(.honeywell-dark-theme) .ui.cards>.card>.content>.meta+.description,html:not(.honeywell-dark-theme) .ui.cards>.card>.content>.header+.description,html:not(.honeywell-dark-theme) .ui.card>.content>.meta+.description,html:not(.honeywell-dark-theme) .ui.card>.content>.header+.description{margin-top:0.5em}html:not(.honeywell-dark-theme) .ui.cards>.card>.content>.description,html:not(.honeywell-dark-theme) .ui.card>.content>.description{clear:both}html:not(.honeywell-dark-theme) .ui.cards>.card .meta,html:not(.honeywell-dark-theme) .ui.card .meta{font-size:1em}html:not(.honeywell-dark-theme) .ui.cards>.card .meta *,html:not(.honeywell-dark-theme) .ui.card .meta *{margin-right:0.3em}html:not(.honeywell-dark-theme) .ui.cards>.card .meta :last-child,html:not(.honeywell-dark-theme) .ui.card .meta :last-child{margin-right:0em}html:not(.honeywell-dark-theme) .ui.cards>.card>.extra,html:not(.honeywell-dark-theme) .ui.card>.extra{max-width:100%;min-height:0em !important;flex-grow:0;position:static;background:none;width:auto;margin:0em 0em;padding:0.75em 1em;top:0em;left:0em;box-shadow:none}html:not(.honeywell-dark-theme) .ui.raised.cards>.card,html:not(.honeywell-dark-theme) .ui.raised.card{box-shadow:0px 0px 0px 1px #D4D4D5,0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.raised.cards a.card:hover,html:not(.honeywell-dark-theme) .ui.link.cards .raised.card:hover,html:not(.honeywell-dark-theme) a.ui.raised.card:hover,html:not(.honeywell-dark-theme) .ui.link.raised.card:hover{box-shadow:0px 0px 0px 1px #D4D4D5,0px 2px 4px 0px rgba(34,36,38,0.15),0px 2px 10px 0px rgba(34,36,38,0.25)}html:not(.honeywell-dark-theme) .ui.raised.cards>.card,html:not(.honeywell-dark-theme) .ui.raised.card{box-shadow:0px 0px 0px 1px #D4D4D5,0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.centered.cards{justify-content:center}html:not(.honeywell-dark-theme) .ui.centered.card{margin-left:auto;margin-right:auto}html:not(.honeywell-dark-theme) .ui.fluid.card{width:100%;max-width:9999px}html:not(.honeywell-dark-theme) .ui.cards a.card,html:not(.honeywell-dark-theme) .ui.link.cards .card,html:not(.honeywell-dark-theme) a.ui.card,html:not(.honeywell-dark-theme) .ui.link.card{transform:none}html:not(.honeywell-dark-theme) .ui.cards a.card:hover,html:not(.honeywell-dark-theme) .ui.link.cards .card:hover,html:not(.honeywell-dark-theme) a.ui.card:hover,html:not(.honeywell-dark-theme) .ui.link.card:hover{cursor:pointer;z-index:5;border:none;box-shadow:0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5;transform:translateY(-3px)}html:not(.honeywell-dark-theme) .ui.cards>.card{font-size:1em}html:not(.honeywell-dark-theme) .ui.statistic{display:inline-flex;flex-direction:column;margin:1em 0em;max-width:auto}html:not(.honeywell-dark-theme) .ui.statistic+.ui.statistic{margin:0em 0em 0em 1.5em}html:not(.honeywell-dark-theme) .ui.statistic:first-child{margin-top:0em}html:not(.honeywell-dark-theme) .ui.statistic:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.statistics{display:flex;align-items:flex-start;flex-wrap:wrap}html:not(.honeywell-dark-theme) .ui.statistics>.statistic{display:inline-flex;flex:0 1 auto;flex-direction:column;margin:0em 1.5em 2em;max-width:auto}html:not(.honeywell-dark-theme) .ui.statistics{display:flex;margin:1em -1.5em -2em}html:not(.honeywell-dark-theme) .ui.statistics:after{display:block;content:' ';height:0px;clear:both;overflow:hidden;visibility:hidden}html:not(.honeywell-dark-theme) .ui.statistics:first-child{margin-top:0em}html:not(.honeywell-dark-theme) .ui.statistics:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.statistic>.value{font-size:4rem;font-weight:normal;line-height:1em;color:#1B1C1D;text-transform:uppercase;text-align:center}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.label,html:not(.honeywell-dark-theme) .ui.statistic>.label{font-size:1em;font-weight:bold;color:rgba(0,0,0,0.87);text-transform:uppercase;text-align:center}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.label ~ .value,html:not(.honeywell-dark-theme) .ui.statistic>.label ~ .value{margin-top:0rem}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.value ~ .label,html:not(.honeywell-dark-theme) .ui.statistic>.value ~ .label{margin-top:0rem}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.value .icon,html:not(.honeywell-dark-theme) .ui.statistic>.value .icon{opacity:1;width:auto;margin:0em}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.text.value,html:not(.honeywell-dark-theme) .ui.statistic>.text.value{line-height:1em;min-height:2em;font-weight:bold;text-align:center}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.text.value+.label,html:not(.honeywell-dark-theme) .ui.statistic>.text.value+.label{text-align:center}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.value img,html:not(.honeywell-dark-theme) .ui.statistic>.value img{max-height:3rem;vertical-align:baseline}html:not(.honeywell-dark-theme) .ui.ten.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.ten.statistics .statistic{min-width:10%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.nine.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.nine.statistics .statistic{min-width:11.11111111%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.eight.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.eight.statistics .statistic{min-width:12.5%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.seven.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.seven.statistics .statistic{min-width:14.28571429%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.six.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.six.statistics .statistic{min-width:16.66666667%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.five.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.five.statistics .statistic{min-width:20%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.four.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.four.statistics .statistic{min-width:25%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.three.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.three.statistics .statistic{min-width:33.33333333%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.two.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.two.statistics .statistic{min-width:50%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.one.statistics{margin:0em 0em -2em}html:not(.honeywell-dark-theme) .ui.one.statistics .statistic{min-width:100%;margin:0em 0em 2em}html:not(.honeywell-dark-theme) .ui.horizontal.statistic{flex-direction:row;align-items:center}html:not(.honeywell-dark-theme) .ui.horizontal.statistics{flex-direction:column;margin:0em;max-width:none}html:not(.honeywell-dark-theme) .ui.horizontal.statistics .statistic{flex-direction:row;align-items:center;max-width:none;margin:1em 0em}html:not(.honeywell-dark-theme) .ui.horizontal.statistic>.text.value,html:not(.honeywell-dark-theme) .ui.horizontal.statistics>.statistic>.text.value{min-height:0em !important}html:not(.honeywell-dark-theme) .ui.horizontal.statistics .statistic>.value .icon,html:not(.honeywell-dark-theme) .ui.horizontal.statistic>.value .icon{width:1.18em}html:not(.honeywell-dark-theme) .ui.horizontal.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.horizontal.statistic>.value{display:inline-block;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.horizontal.statistics .statistic>.label,html:not(.honeywell-dark-theme) .ui.horizontal.statistic>.label{display:inline-block;vertical-align:middle;margin:0em 0em 0em 0.75em}html:not(.honeywell-dark-theme) .ui[class*="left floated"].statistic{float:left;margin:0em 2em 1em 0em}html:not(.honeywell-dark-theme) .ui[class*="right floated"].statistic{float:right;margin:0em 0em 1em 2em}html:not(.honeywell-dark-theme) .ui.floated.statistic:last-child{margin-bottom:0em}html:not(.honeywell-dark-theme) .ui.mini.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.mini.statistic>.value{font-size:1.5rem !important}html:not(.honeywell-dark-theme) .ui.mini.horizontal.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.mini.horizontal.statistic>.value{font-size:1.5rem !important}html:not(.honeywell-dark-theme) .ui.mini.statistics .statistic>.text.value,html:not(.honeywell-dark-theme) .ui.mini.statistic>.text.value{font-size:1rem !important}html:not(.honeywell-dark-theme) .ui.tiny.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.tiny.statistic>.value{font-size:2rem !important}html:not(.honeywell-dark-theme) .ui.tiny.horizontal.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.tiny.horizontal.statistic>.value{font-size:2rem !important}html:not(.honeywell-dark-theme) .ui.tiny.statistics .statistic>.text.value,html:not(.honeywell-dark-theme) .ui.tiny.statistic>.text.value{font-size:1rem !important}html:not(.honeywell-dark-theme) .ui.small.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.small.statistic>.value{font-size:3rem !important}html:not(.honeywell-dark-theme) .ui.small.horizontal.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.small.horizontal.statistic>.value{font-size:2rem !important}html:not(.honeywell-dark-theme) .ui.small.statistics .statistic>.text.value,html:not(.honeywell-dark-theme) .ui.small.statistic>.text.value{font-size:1rem !important}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.statistic>.value{font-size:4rem !important}html:not(.honeywell-dark-theme) .ui.horizontal.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.horizontal.statistic>.value{font-size:3rem !important}html:not(.honeywell-dark-theme) .ui.statistics .statistic>.text.value,html:not(.honeywell-dark-theme) .ui.statistic>.text.value{font-size:2rem !important}html:not(.honeywell-dark-theme) .ui.large.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.large.statistic>.value{font-size:5rem !important}html:not(.honeywell-dark-theme) .ui.large.horizontal.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.large.horizontal.statistic>.value{font-size:4rem !important}html:not(.honeywell-dark-theme) .ui.large.statistics .statistic>.text.value,html:not(.honeywell-dark-theme) .ui.large.statistic>.text.value{font-size:2.5rem !important}html:not(.honeywell-dark-theme) .ui.huge.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.huge.statistic>.value{font-size:6rem !important}html:not(.honeywell-dark-theme) .ui.huge.horizontal.statistics .statistic>.value,html:not(.honeywell-dark-theme) .ui.huge.horizontal.statistic>.value{font-size:5rem !important}html:not(.honeywell-dark-theme) .ui.huge.statistics .statistic>.text.value,html:not(.honeywell-dark-theme) .ui.huge.statistic>.text.value{font-size:2.5rem !important}html:not(.honeywell-dark-theme) .ui.accordion,html:not(.honeywell-dark-theme) .ui.accordion .accordion{max-width:100%}html:not(.honeywell-dark-theme) .ui.accordion .accordion{margin:1em 0em 0em;padding:0em}html:not(.honeywell-dark-theme) .ui.accordion .title,html:not(.honeywell-dark-theme) .ui.accordion .accordion .title{cursor:pointer}html:not(.honeywell-dark-theme) .ui.accordion .title:not(.ui){padding:0.5em 0em;font-size:1em}html:not(.honeywell-dark-theme) .ui.accordion .title ~ .content,html:not(.honeywell-dark-theme) .ui.accordion .accordion .title ~ .content{display:none}html:not(.honeywell-dark-theme) .ui.accordion:not(.styled) .title ~ .content:not(.ui),html:not(.honeywell-dark-theme) .ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui){margin:'';padding:0.5em 0em 1em}html:not(.honeywell-dark-theme) .ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child{padding-bottom:0em}html:not(.honeywell-dark-theme) .ui.accordion .title .dropdown.icon,html:not(.honeywell-dark-theme) .ui.accordion .accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0em 0.25rem 0em 0rem;padding:0em;font-size:1em;transition:transform 0.1s ease, opacity 0.1s ease;vertical-align:baseline;transform:none}html:not(.honeywell-dark-theme) .ui.accordion.menu .item .title{display:block;padding:0em}html:not(.honeywell-dark-theme) .ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:0.21425em 0em 0em 1em;transform:rotate(180deg)}html:not(.honeywell-dark-theme) .ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0em 0.25rem 0em 0rem}html:not(.honeywell-dark-theme) .ui.accordion .active.title .dropdown.icon,html:not(.honeywell-dark-theme) .ui.accordion .accordion .active.title .dropdown.icon{transform:rotate(90deg)}html:not(.honeywell-dark-theme) .ui.accordion.menu .item .active.title>.dropdown.icon{transform:rotate(90deg)}html:not(.honeywell-dark-theme) .ui.styled.accordion{width:600px}html:not(.honeywell-dark-theme) .ui.styled.accordion,html:not(.honeywell-dark-theme) .ui.styled.accordion .accordion{border-radius:0.28571429rem;background:#FFFFFF}html:not(.honeywell-dark-theme) .ui.styled.accordion .title,html:not(.honeywell-dark-theme) .ui.styled.accordion .accordion .title{margin:0em;padding:0.75em 1em;font-weight:bold;transition:background 0.1s ease, color 0.1s ease}html:not(.honeywell-dark-theme) .ui.styled.accordion>.title:first-child,html:not(.honeywell-dark-theme) .ui.styled.accordion .accordion .title:first-child{border-top:none}html:not(.honeywell-dark-theme) .ui.styled.accordion .content,html:not(.honeywell-dark-theme) .ui.styled.accordion .accordion .content{margin:0em;padding:0.5em 1em 1.5em}html:not(.honeywell-dark-theme) .ui.styled.accordion .accordion .content{padding:0em;padding:0.5em 1em 1.5em}html:not(.honeywell-dark-theme) .ui.accordion .active.content,html:not(.honeywell-dark-theme) .ui.accordion .accordion .active.content{display:block}html:not(.honeywell-dark-theme) .ui.fluid.accordion,html:not(.honeywell-dark-theme) .ui.fluid.accordion .accordion{width:100%}html:not(.honeywell-dark-theme) .ui.accordion .title .dropdown.icon,html:not(.honeywell-dark-theme) .ui.accordion .accordion .title .dropdown.icon{line-height:1;backface-visibility:hidden;font-weight:normal;font-style:normal;text-align:center}html:not(.honeywell-dark-theme) .ui.checkbox{position:relative;display:inline-block;backface-visibility:hidden;outline:none;vertical-align:baseline;font-style:normal;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}html:not(.honeywell-dark-theme) .ui.checkbox input[type="checkbox"],html:not(.honeywell-dark-theme) .ui.checkbox input[type="radio"]{cursor:pointer;position:absolute;top:0px;left:0px;opacity:0 !important;outline:none;z-index:3;width:17px;height:17px}html:not(.honeywell-dark-theme) .ui.checkbox .box,html:not(.honeywell-dark-theme) .ui.checkbox label{cursor:auto;position:relative;display:block;padding-left:1.85714em;outline:none;font-size:1em}html:not(.honeywell-dark-theme) .ui.checkbox .box:before,html:not(.honeywell-dark-theme) .ui.checkbox label:before{position:absolute;top:0px;left:0px;width:17px;height:17px;content:'';transition:border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease}html:not(.honeywell-dark-theme) .ui.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.checkbox label:after{position:absolute;font-size:14px;top:0px;left:0px;width:17px;height:17px;text-align:center;opacity:0;transition:border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease}html:not(.honeywell-dark-theme) .ui.checkbox label,html:not(.honeywell-dark-theme) .ui.checkbox+label{transition:color 0.1s ease}html:not(.honeywell-dark-theme) .ui.checkbox+label{vertical-align:middle}html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate ~ .box:before,html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate ~ label:before{background:#FFFFFF;border-color:rgba(34,36,38,0.35)}html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate ~ label:after{opacity:1;color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before,html:not(.honeywell-dark-theme) .ui.checkbox input:checked:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.checkbox input:checked:focus ~ label:before{background:#FFFFFF;border-color:#96C8DA}html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after,html:not(.honeywell-dark-theme) .ui.checkbox input:checked:focus ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox input:checked:focus ~ label:after{color:rgba(0,0,0,0.95)}html:not(.honeywell-dark-theme) .ui.read-only.checkbox,html:not(.honeywell-dark-theme) .ui.read-only.checkbox label{cursor:default}html:not(.honeywell-dark-theme) .ui.disabled.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.disabled.checkbox label,html:not(.honeywell-dark-theme) .ui.checkbox input[disabled] ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox input[disabled] ~ label{cursor:default !important;opacity:0.5;color:#000000}html:not(.honeywell-dark-theme) .ui.checkbox input.hidden{z-index:-1}html:not(.honeywell-dark-theme) .ui.checkbox input.hidden+label{cursor:pointer;user-select:none}html:not(.honeywell-dark-theme) .ui.radio.checkbox{min-height:15px}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box,html:not(.honeywell-dark-theme) .ui.radio.checkbox label{padding-left:1.85714em}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box:before,html:not(.honeywell-dark-theme) .ui.radio.checkbox label:before{content:'';transform:none;width:15px;height:15px;border-radius:500rem;top:1px;left:0px}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox label:after{border:none;content:'' !important;width:15px;height:15px;line-height:15px}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox label:after{top:1px;left:0px;width:15px;height:15px;border-radius:500rem;transform:scale(0.46667);background-color:rgba(0,0,0,0.87)}html:not(.honeywell-dark-theme) .ui.toggle.checkbox{min-height:1.5rem}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input{width:3.5rem;height:1.5rem}html:not(.honeywell-dark-theme) .ui.toggle.checkbox .box,html:not(.honeywell-dark-theme) .ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem}html:not(.honeywell-dark-theme) .ui.toggle.checkbox label{padding-top:0.15em}html:not(.honeywell-dark-theme) .ui.toggle.checkbox .box:before,html:not(.honeywell-dark-theme) .ui.toggle.checkbox label:before{display:block;position:absolute;content:'';z-index:1;transform:none;border:none;top:0rem;box-shadow:none;width:3.5rem;height:1.5rem;border-radius:500rem}html:not(.honeywell-dark-theme) .ui.toggle.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.toggle.checkbox label:after{position:absolute;content:'' !important;opacity:1;z-index:2;border:none;box-shadow:0px 1px 2px 0 rgba(34,36,38,0.15),0px 0px 0px 1px rgba(34,36,38,0.15) inset;width:1.5rem;height:1.5rem;top:0rem;left:0em;border-radius:500rem;transition:background 0.3s ease, left 0.3s ease}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input ~ .box:after,html:not(.honeywell-dark-theme) .ui.toggle.checkbox input ~ label:after{left:-0.05rem;box-shadow:none}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.toggle.checkbox input:focus ~ label:before{border:none}html:not(.honeywell-dark-theme) .ui.toggle.checkbox .box:hover::before,html:not(.honeywell-dark-theme) .ui.toggle.checkbox label:hover::before{border:none}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input:checked ~ .box:after,html:not(.honeywell-dark-theme) .ui.toggle.checkbox input:checked ~ label:after{left:2.15rem;box-shadow:none}html:not(.honeywell-dark-theme) .dimmable:not(body){position:relative}html:not(.honeywell-dark-theme) .ui.dimmer{display:none;position:absolute;top:0em !important;left:0em !important;width:100%;height:100%;text-align:center;vertical-align:middle;background-color:rgba(0,0,0,0.85);opacity:0;line-height:1;animation-fill-mode:both;animation-duration:0.5s;transition:background-color 0.5s linear;user-select:none;will-change:opacity;z-index:1000}html:not(.honeywell-dark-theme) .ui.dimmer>.content{width:100%;height:100%;display:table;user-select:text}html:not(.honeywell-dark-theme) .ui.dimmer>.content>*{display:table-cell;vertical-align:middle;color:#FFFFFF}html:not(.honeywell-dark-theme) .ui.segment>.ui.dimmer{border-radius:inherit !important}html:not(.honeywell-dark-theme) .ui.dimmer:not(.inverted)::-webkit-scrollbar-track{background:rgba(255,255,255,0.1)}html:not(.honeywell-dark-theme) .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.25)}html:not(.honeywell-dark-theme) .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive{background:rgba(255,255,255,0.15)}html:not(.honeywell-dark-theme) .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,0.35)}html:not(.honeywell-dark-theme) .animating.dimmable:not(body),html:not(.honeywell-dark-theme) .dimmed.dimmable:not(body){overflow:hidden}html:not(.honeywell-dark-theme) .dimmed.dimmable>.ui.animating.dimmer,html:not(.honeywell-dark-theme) .dimmed.dimmable>.ui.visible.dimmer,html:not(.honeywell-dark-theme) .ui.active.dimmer{display:block;opacity:1}html:not(.honeywell-dark-theme) .ui.disabled.dimmer{width:0 !important;height:0 !important}html:not(.honeywell-dark-theme) .ui.page.dimmer{position:fixed;transform-style:'';perspective:2000px;transform-origin:center center}html:not(.honeywell-dark-theme) body.animating.in.dimmable,html:not(.honeywell-dark-theme) body.dimmed.dimmable{overflow:hidden}html:not(.honeywell-dark-theme) body.dimmable>.dimmer{position:fixed}html:not(.honeywell-dark-theme) .blurring.dimmable>:not(.dimmer){filter:blur(0px) grayscale(0);transition:800ms filter ease}html:not(.honeywell-dark-theme) .blurring.dimmed.dimmable>:not(.dimmer){filter:blur(5px) grayscale(0.7)}html:not(.honeywell-dark-theme) .blurring.dimmable>.dimmer{background-color:rgba(0,0,0,0.6)}html:not(.honeywell-dark-theme) .blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,0.6)}html:not(.honeywell-dark-theme) .ui.dimmer>.top.aligned.content>*{vertical-align:top}html:not(.honeywell-dark-theme) .ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}html:not(.honeywell-dark-theme) .ui.inverted.dimmer{background-color:rgba(255,255,255,0.85)}html:not(.honeywell-dark-theme) .ui.inverted.dimmer>.content>*{color:#FFFFFF}html:not(.honeywell-dark-theme) .ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0%;height:0%;z-index:-100;background-color:rgba(0,0,0,0)}html:not(.honeywell-dark-theme) .dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,0.85);z-index:1}html:not(.honeywell-dark-theme) .ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}html:not(.honeywell-dark-theme) .dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0.85)}html:not(.honeywell-dark-theme) .ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:none;text-align:left;transition:box-shadow 0.1s ease, width 0.1s ease;-webkit-tap-highlight-color:rgba(0,0,0,0)}html:not(.honeywell-dark-theme) .ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:none;top:100%;min-width:max-content;margin:0em;padding:0em 0em;font-size:1em;text-shadow:none;text-align:left;box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15);border-radius:0.28571429rem;transition:opacity 0.1s ease;z-index:11;will-change:transform, opacity}html:not(.honeywell-dark-theme) .ui.dropdown .menu>*{white-space:nowrap}html:not(.honeywell-dark-theme) .ui.dropdown>input:not(.search):first-child,html:not(.honeywell-dark-theme) .ui.dropdown>select{display:none !important}html:not(.honeywell-dark-theme) .ui.dropdown>.dropdown.icon{position:relative;width:auto;font-size:0.85714286em;margin:0em 0em 0em 1em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0em 0em 0em 1em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}html:not(.honeywell-dark-theme) .ui.dropdown>.text{display:inline-block;transition:none;max-width:calc(100% - 1.4rem);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 !important;padding-right:0.5rem}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;padding:0.78571429rem 1.14285714rem !important;font-size:1rem;text-transform:none;font-weight:normal;box-shadow:none;-webkit-touch-callout:none}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item:first-child{border-top-width:0px}html:not(.honeywell-dark-theme) .ui.dropdown>.text>[class*="right floated"],html:not(.honeywell-dark-theme) .ui.dropdown .menu .item>[class*="right floated"]{float:right !important;margin-right:0em !important;margin-left:1em !important}html:not(.honeywell-dark-theme) .ui.dropdown>.text>[class*="left floated"],html:not(.honeywell-dark-theme) .ui.dropdown .menu .item>[class*="left floated"]{float:left !important;margin-left:0em !important;margin-right:1em !important}html:not(.honeywell-dark-theme) .ui.dropdown .menu .item>.icon.floated,html:not(.honeywell-dark-theme) .ui.dropdown .menu .item>.flag.floated,html:not(.honeywell-dark-theme) .ui.dropdown .menu .item>.image.floated,html:not(.honeywell-dark-theme) .ui.dropdown .menu .item>img.floated{margin-top:0em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.header{margin:1rem 0rem 0.75rem;padding:0em 1.14285714rem;font-size:0.78571429em;font-weight:bold;text-transform:uppercase}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.divider{height:0em;margin:0.5em 0em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.input{width:auto;display:flex;margin:1.14285714rem 0.78571429rem;min-width:10rem}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.header+.input{margin-top:0em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.input:not(.transparent) input{padding:0.5em 1em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.input:not(.transparent) .button,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.input:not(.transparent) .icon,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.input:not(.transparent) .label{padding-top:0.5em;padding-bottom:0.5em}html:not(.honeywell-dark-theme) .ui.dropdown>.text>.description,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.description{float:right;margin:0em 0em 0em 1em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.message{padding:0.78571429rem 1.14285714rem;font-weight:normal}html:not(.honeywell-dark-theme) .ui.dropdown .menu .menu{top:0% !important;left:100%;right:auto;margin:0em 0em 0em -0.5em !important;border-radius:0.28571429rem !important;z-index:21 !important}html:not(.honeywell-dark-theme) .ui.dropdown .menu .menu:after{display:none}html:not(.honeywell-dark-theme) .ui.dropdown>.text>.icon,html:not(.honeywell-dark-theme) .ui.dropdown>.text>.label,html:not(.honeywell-dark-theme) .ui.dropdown>.text>.flag,html:not(.honeywell-dark-theme) .ui.dropdown>.text>img,html:not(.honeywell-dark-theme) .ui.dropdown>.text>.image{margin-top:0em}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.icon,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.label,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.flag,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.image,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>img{margin-top:0em}html:not(.honeywell-dark-theme) .ui.dropdown>.text>.icon,html:not(.honeywell-dark-theme) .ui.dropdown>.text>.label,html:not(.honeywell-dark-theme) .ui.dropdown>.text>.flag,html:not(.honeywell-dark-theme) .ui.dropdown>.text>img,html:not(.honeywell-dark-theme) .ui.dropdown>.text>.image,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.icon,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.label,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.flag,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>.image,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item>img{margin-left:0em;float:none;margin-right:0.78571429rem}html:not(.honeywell-dark-theme) .ui.dropdown .ui.menu>.item:before,html:not(.honeywell-dark-theme) .ui.menu .ui.dropdown .menu>.item:before{display:none}html:not(.honeywell-dark-theme) .ui.menu .ui.dropdown .menu .active.item{border-left:none}html:not(.honeywell-dark-theme) .ui.menu .right.menu .dropdown:last-child .menu,html:not(.honeywell-dark-theme) .ui.menu .right.dropdown.item .menu,html:not(.honeywell-dark-theme) .ui.buttons>.ui.dropdown:last-child .menu{left:auto;right:0em}html:not(.honeywell-dark-theme) .ui.label.dropdown .menu{min-width:100%}html:not(.honeywell-dark-theme) .ui.dropdown.icon.button>.dropdown.icon{margin:0em}html:not(.honeywell-dark-theme) .ui.button.dropdown .menu{min-width:100%}html:not(.honeywell-dark-theme) .ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height:1em;white-space:normal;outline:0;transform:rotateZ(0deg);min-width:14em;min-height:2.71428571em;display:inline-block;padding:0.78571429em 2.1em 0.78571429em 1em;box-shadow:none;border-radius:0.28571429rem;transition:box-shadow 0.1s ease, width 0.1s ease}html:not(.honeywell-dark-theme) .ui.selection.dropdown.visible,html:not(.honeywell-dark-theme) .ui.selection.dropdown.active{z-index:10;display:block;visibility:visible}html:not(.honeywell-dark-theme) select.ui.dropdown{height:38px;padding:0.5em;visibility:visible}html:not(.honeywell-dark-theme) .ui.selection.dropdown>.search.icon,html:not(.honeywell-dark-theme) .ui.selection.dropdown>.delete.icon,html:not(.honeywell-dark-theme) .ui.selection.dropdown>.dropdown.icon{cursor:pointer;position:absolute;width:auto;height:auto;line-height:1.21428571em;top:0.78571429em;right:1em;z-index:3;margin:-0.78571429em;padding:0.91666667em;opacity:0.8;transition:opacity 0.1s ease}html:not(.honeywell-dark-theme) .ui.compact.selection.dropdown{min-width:0px}html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0px !important;width:auto;outline:none;margin:0px -1px;min-width:calc(100% +  2px);width:calc(100% +  2px);border-radius:0em 0em 0.28571429rem 0.28571429rem;box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15);transition:opacity 0.1s ease}html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu:after,html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu:before{display:none}html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu>.message{padding:0.78571429rem 1.14285714rem}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width: 768px){html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width: 992px){html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width: 1920px){html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu{max-height:21.37142857rem}}html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu>.item{padding:0.78571429rem 1.14285714rem !important;white-space:normal;word-wrap:normal}html:not(.honeywell-dark-theme) .ui.selection.dropdown .menu>.hidden.addition.item{display:none}html:not(.honeywell-dark-theme) .ui.selection.dropdown:hover{box-shadow:none}html:not(.honeywell-dark-theme) .ui.selection.active.dropdown{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.selection.active.dropdown .menu{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.selection.dropdown:focus{box-shadow:none}html:not(.honeywell-dark-theme) .ui.selection.dropdown:focus .menu{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.selection.visible.dropdown>.text:not(.default){font-weight:normal;color:rgba(0,0,0,0.8)}html:not(.honeywell-dark-theme) .ui.selection.active.dropdown:hover{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.selection.active.dropdown:hover .menu{box-shadow:0px 2px 3px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.active.selection.dropdown>.dropdown.icon,html:not(.honeywell-dark-theme) .ui.visible.selection.dropdown>.dropdown.icon{opacity:1;z-index:3}html:not(.honeywell-dark-theme) .ui.active.selection.dropdown{border-bottom-left-radius:0em !important;border-bottom-right-radius:0em !important}html:not(.honeywell-dark-theme) .ui.active.empty.selection.dropdown{border-radius:0.28571429rem !important;box-shadow:none !important}html:not(.honeywell-dark-theme) .ui.active.empty.selection.dropdown .menu{border:none !important;box-shadow:none !important}html:not(.honeywell-dark-theme) .ui.search.dropdown{min-width:''}html:not(.honeywell-dark-theme) .ui.search.dropdown>input.search{background:none transparent !important;border:none !important;box-shadow:none !important;cursor:text;top:0em;left:1px;width:100%;outline:none;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit}html:not(.honeywell-dark-theme) .ui.search.dropdown>input.search{position:absolute;z-index:2}html:not(.honeywell-dark-theme) .ui.search.dropdown>.text{cursor:text;position:relative;left:1px;z-index:3}html:not(.honeywell-dark-theme) .ui.search.selection.dropdown>input.search{line-height:1.21428571em;padding:0.67857143em 2.1em 0.67857143em 1em}html:not(.honeywell-dark-theme) .ui.search.selection.dropdown>span.sizer{line-height:1.21428571em;padding:0.67857143em 2.1em 0.67857143em 1em;display:none;white-space:pre}html:not(.honeywell-dark-theme) .ui.search.dropdown.active>input.search,html:not(.honeywell-dark-theme) .ui.search.dropdown.visible>input.search{cursor:auto}html:not(.honeywell-dark-theme) .ui.search.dropdown.active>.text,html:not(.honeywell-dark-theme) .ui.search.dropdown.visible>.text{pointer-events:none}html:not(.honeywell-dark-theme) .ui.active.search.dropdown input.search:focus+.text .icon,html:not(.honeywell-dark-theme) .ui.active.search.dropdown input.search:focus+.text .flag{opacity:0.45}html:not(.honeywell-dark-theme) .ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.search.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width: 768px){html:not(.honeywell-dark-theme) .ui.search.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width: 992px){html:not(.honeywell-dark-theme) .ui.search.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width: 1920px){html:not(.honeywell-dark-theme) .ui.search.dropdown .menu{max-height:21.37142857rem}}html:not(.honeywell-dark-theme) .ui.multiple.dropdown{padding:0.22619048em 2.1em 0.22619048em 0.35714286em}html:not(.honeywell-dark-theme) .ui.multiple.dropdown .menu{cursor:auto}html:not(.honeywell-dark-theme) .ui.multiple.search.dropdown,html:not(.honeywell-dark-theme) .ui.multiple.search.dropdown>input.search{cursor:text}html:not(.honeywell-dark-theme) .ui.multiple.dropdown>.label{user-select:none;display:inline-block;vertical-align:top;white-space:normal;font-size:1em;padding:0.35714286em 0.78571429em;margin:0.14285714rem 0.28571429rem 0.14285714rem 0em;box-shadow:0px 0px 0px 1px rgba(34,36,38,0.15) inset}html:not(.honeywell-dark-theme) .ui.multiple.dropdown .dropdown.icon{margin:'';padding:''}html:not(.honeywell-dark-theme) .ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:0.45238095em 0em 0.45238095em 0.64285714em;line-height:1.21428571em}html:not(.honeywell-dark-theme) .ui.multiple.dropdown>.label ~ input.search{margin-left:0.14285714em !important}html:not(.honeywell-dark-theme) .ui.multiple.dropdown>.label ~ .text{display:none}html:not(.honeywell-dark-theme) .ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:0.45238095em 0em 0.45238095em 0.64285714em;line-height:1.21428571em}html:not(.honeywell-dark-theme) .ui.multiple.search.dropdown>.label ~ .text{display:none}html:not(.honeywell-dark-theme) .ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:0.45238095em 0em 0.45238095em 0.64285714em;width:2.2em;line-height:1.21428571em}html:not(.honeywell-dark-theme) .ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}html:not(.honeywell-dark-theme) .ui.inline.dropdown .dropdown.icon{margin:0em 0.5em 0em 0.21428571em;vertical-align:baseline}html:not(.honeywell-dark-theme) .ui.inline.dropdown>.text{font-weight:bold}html:not(.honeywell-dark-theme) .ui.inline.dropdown .menu{cursor:auto;margin-top:0.21428571em;border-radius:0.28571429rem}html:not(.honeywell-dark-theme) .ui.dropdown .menu .active.item{background:transparent;font-weight:bold;box-shadow:none;z-index:12}html:not(.honeywell-dark-theme) .ui.dropdown .menu>.item:hover{z-index:13}html:not(.honeywell-dark-theme) .ui.loading.dropdown>i.icon{height:1em !important}html:not(.honeywell-dark-theme) .ui.loading.selection.dropdown>i.icon{padding:1.5em 1.28571429em !important}html:not(.honeywell-dark-theme) .ui.loading.dropdown>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.loading.dropdown>i.icon:after{position:absolute;content:'';top:50%;left:50%;box-shadow:0px 0px 0px 1px transparent;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:dropdown-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em}html:not(.honeywell-dark-theme) .ui.loading.dropdown.button>i.icon:before,html:not(.honeywell-dark-theme) .ui.loading.dropdown.button>i.icon:after{display:none}@keyframes dropdown-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) .ui.loading.dropdown>.text{transition:none}html:not(.honeywell-dark-theme) .ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}html:not(.honeywell-dark-theme) .ui.dropdown>.loading.menu{left:0px !important;right:auto !important}html:not(.honeywell-dark-theme) .ui.dropdown>.menu .loading.menu{left:100% !important;right:auto !important}html:not(.honeywell-dark-theme) .ui.dropdown>.filtered.text{visibility:hidden}html:not(.honeywell-dark-theme) .ui.dropdown .filtered.item{display:none !important}html:not(.honeywell-dark-theme) .ui.disabled.dropdown,html:not(.honeywell-dark-theme) .ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:0.45}html:not(.honeywell-dark-theme) .ui.dropdown .menu{left:0px}html:not(.honeywell-dark-theme) .ui.dropdown .right.menu>.menu,html:not(.honeywell-dark-theme) .ui.dropdown .menu .right.menu{left:100% !important;right:auto !important;border-radius:0.28571429rem !important}html:not(.honeywell-dark-theme) .ui.dropdown>.left.menu{left:auto !important;right:0px !important}html:not(.honeywell-dark-theme) .ui.dropdown>.left.menu .menu,html:not(.honeywell-dark-theme) .ui.dropdown .menu .left.menu{left:auto;right:100%;margin:0em -0.5em 0em 0em !important;border-radius:0.28571429rem !important}html:not(.honeywell-dark-theme) .ui.dropdown .item .left.dropdown.icon,html:not(.honeywell-dark-theme) .ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0em 0em 0em 0em}html:not(.honeywell-dark-theme) .ui.dropdown .item .left.dropdown.icon,html:not(.honeywell-dark-theme) .ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0em 0em 0em 0em}html:not(.honeywell-dark-theme) .ui.dropdown .item .left.dropdown.icon+.text,html:not(.honeywell-dark-theme) .ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em;margin-right:0em}html:not(.honeywell-dark-theme) .ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0px 0px 3px 0px rgba(0,0,0,0.08);border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.dropdown .upward.menu{top:auto !important;bottom:0 !important}html:not(.honeywell-dark-theme) .ui.simple.upward.active.dropdown,html:not(.honeywell-dark-theme) .ui.simple.upward.dropdown:hover{border-radius:0.28571429rem 0.28571429rem 0em 0em !important}html:not(.honeywell-dark-theme) .ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:0.28571429rem 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.upward.selection.dropdown .menu{border-top-width:1px !important;border-bottom-width:0px !important;box-shadow:0px -2px 3px 0px rgba(0,0,0,0.08)}html:not(.honeywell-dark-theme) .ui.upward.selection.dropdown:hover{box-shadow:0px 0px 2px 0px rgba(0,0,0,0.05)}html:not(.honeywell-dark-theme) .ui.active.upward.selection.dropdown{border-radius:0em 0em 0.28571429rem 0.28571429rem !important}html:not(.honeywell-dark-theme) .ui.upward.selection.dropdown.visible{box-shadow:0px 0px 3px 0px rgba(0,0,0,0.08);border-radius:0em 0em 0.28571429rem 0.28571429rem !important}html:not(.honeywell-dark-theme) .ui.upward.active.selection.dropdown:hover{box-shadow:0px 0px 3px 0px rgba(0,0,0,0.05)}html:not(.honeywell-dark-theme) .ui.upward.active.selection.dropdown:hover .menu{box-shadow:0px -2px 3px 0px rgba(0,0,0,0.08)}html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu{overflow-x:hidden;overflow-y:auto}html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100% !important;width:auto !important}html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;box-shadow:none !important;border-radius:0 !important;margin:0 !important;min-width:100% !important;width:auto !important;border-top:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu .item.item.item,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu>.item.item.item{border-top:none}html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu .item:first-child,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu .item:first-child{border-top:none}html:not(.honeywell-dark-theme) .ui.dropdown>.animating.menu .scrolling.menu,html:not(.honeywell-dark-theme) .ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast: none){html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu{min-width:calc(100% -  17px)}}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu{max-height:10.28571429rem}}@media only screen and (min-width: 768px){html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu{max-height:15.42857143rem}}@media only screen and (min-width: 992px){html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu{max-height:20.57142857rem}}@media only screen and (min-width: 1920px){html:not(.honeywell-dark-theme) .ui.scrolling.dropdown .menu,html:not(.honeywell-dark-theme) .ui.dropdown .scrolling.menu{max-height:20.57142857rem}}html:not(.honeywell-dark-theme) .ui.simple.dropdown .menu:before,html:not(.honeywell-dark-theme) .ui.simple.dropdown .menu:after{display:none}html:not(.honeywell-dark-theme) .ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px !important;opacity:0;width:0;height:0;transition:opacity 0.1s ease}html:not(.honeywell-dark-theme) .ui.simple.active.dropdown,html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover{border-bottom-left-radius:0em !important;border-bottom-right-radius:0em !important}html:not(.honeywell-dark-theme) .ui.simple.active.dropdown>.menu,html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100% !important;opacity:1}html:not(.honeywell-dark-theme) .ui.simple.dropdown>.menu>.item:active>.menu,html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu>.item:hover>.menu{overflow:visible;width:auto;height:auto;top:0% !important;left:100% !important;opacity:1}html:not(.honeywell-dark-theme) .ui.simple.disabled.dropdown:hover .menu{display:none;height:0px;width:0px;overflow:hidden}html:not(.honeywell-dark-theme) .ui.simple.visible.dropdown>.menu{display:block;visibility:visible}html:not(.honeywell-dark-theme) .ui.fluid.dropdown{display:block;width:100%;min-width:0em}html:not(.honeywell-dark-theme) .ui.fluid.dropdown>.dropdown.icon{float:right}html:not(.honeywell-dark-theme) .ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15) !important;border-radius:0.28571429rem !important}html:not(.honeywell-dark-theme) .ui.floating.dropdown>.menu{margin-top:0.5em !important;border-radius:0.28571429rem !important}html:not(.honeywell-dark-theme) .ui.dropdown>.dropdown.icon{line-height:1;height:1em;width:1.23em;backface-visibility:hidden;font-weight:normal;font-style:normal;text-align:center}html:not(.honeywell-dark-theme) .ui.dropdown>.dropdown.icon{width:auto}html:not(.honeywell-dark-theme) .ui.modal{display:none;position:fixed;z-index:1001;text-align:left;border:none;align-self:center;justify-self:center;box-shadow:1px 3px 3px 0px rgba(0,0,0,0.2),1px 3px 15px 2px rgba(0,0,0,0.2);transform-origin:50% 25%;border-radius:0.28571429rem;user-select:text;will-change:top, left, margin, transform, opacity}html:not(.honeywell-dark-theme) .ui.modal>:first-child:not(.icon),html:not(.honeywell-dark-theme) .ui.modal>.icon:first-child+*{border-top-left-radius:0.28571429rem;border-top-right-radius:0.28571429rem}html:not(.honeywell-dark-theme) .ui.modal>:last-child{border-bottom-left-radius:0.28571429rem;border-bottom-right-radius:0.28571429rem}html:not(.honeywell-dark-theme) .modals.dimmer{justify-content:center}html:not(.honeywell-dark-theme) .ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:0.8;font-size:1.25em;width:2.25rem;height:2.25rem;padding:0.625rem 0rem 0rem 0rem}html:not(.honeywell-dark-theme) .ui.modal>.close:hover{opacity:1}html:not(.honeywell-dark-theme) .ui.modal>.header{display:block;margin:0em;padding:1.25rem 1.5rem;box-shadow:none;border-bottom:1px solid rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.modal>.header:not(.ui){font-size:1.42857143rem;line-height:1.28571429em;font-weight:bold}html:not(.honeywell-dark-theme) .ui.modal>.content{display:block;width:100%;font-size:1em;line-height:1.4;padding:1.5rem}html:not(.honeywell-dark-theme) .ui.modal>.image.content{display:flex;flex-direction:row}html:not(.honeywell-dark-theme) .ui.modal>.content>.image{display:block;flex:0 1 auto;width:'';align-self:top}html:not(.honeywell-dark-theme) .ui.modal>[class*="top aligned"]{align-self:top}html:not(.honeywell-dark-theme) .ui.modal>[class*="middle aligned"]{align-self:middle}html:not(.honeywell-dark-theme) .ui.modal>[class*="stretched"]{align-self:stretch}html:not(.honeywell-dark-theme) .ui.modal>.content>.description{display:block;flex:1 0 auto;min-width:0px;align-self:top}html:not(.honeywell-dark-theme) .ui.modal>.content>.icon+.description,html:not(.honeywell-dark-theme) .ui.modal>.content>.image+.description{flex:0 1 auto;min-width:'';width:auto;padding-left:2em}html:not(.honeywell-dark-theme) .ui.modal>.content>.image>i.icon{margin:0em;opacity:1;width:auto;line-height:1;font-size:8rem}html:not(.honeywell-dark-theme) .ui.modal>.actions{padding:1rem 1rem;border-top:1px solid rgba(34,36,38,0.15);text-align:right}html:not(.honeywell-dark-theme) .ui.modal .actions>.button{margin-left:0.75em}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.modal{width:95%}}@media only screen and (min-width: 768px){html:not(.honeywell-dark-theme) .ui.modal{width:88%}}@media only screen and (min-width: 992px){html:not(.honeywell-dark-theme) .ui.modal{width:850px}}@media only screen and (min-width: 1200px){html:not(.honeywell-dark-theme) .ui.modal{width:900px}}@media only screen and (min-width: 1920px){html:not(.honeywell-dark-theme) .ui.modal{width:950px}}@media only screen and (max-width: 991px){html:not(.honeywell-dark-theme) .ui.modal>.header{padding-right:2.25rem}html:not(.honeywell-dark-theme) .ui.modal>.close{top:1.0535rem;right:1rem}}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.modal>.header{padding:0.75rem 1rem !important;padding-right:2.25rem !important}html:not(.honeywell-dark-theme) .ui.modal>.content{display:block;padding:1rem !important}html:not(.honeywell-dark-theme) .ui.modal>.close{top:0.5rem !important;right:0.5rem !important}html:not(.honeywell-dark-theme) .ui.modal .image.content{flex-direction:column}html:not(.honeywell-dark-theme) .ui.modal .content>.image{display:block;max-width:100%;margin:0em auto !important;text-align:center;padding:0rem 0rem 1rem !important}html:not(.honeywell-dark-theme) .ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}html:not(.honeywell-dark-theme) .ui.modal .content>.description{display:block;width:100% !important;margin:0em !important;padding:1rem 0rem !important;box-shadow:none}html:not(.honeywell-dark-theme) .ui.modal>.actions{padding:1rem 1rem 0rem !important}html:not(.honeywell-dark-theme) .ui.modal .actions>.buttons,html:not(.honeywell-dark-theme) .ui.modal .actions>.button{margin-bottom:1rem}}html:not(.honeywell-dark-theme) .ui.active.modal{display:block}html:not(.honeywell-dark-theme) .scrolling.dimmable.dimmed{overflow:hidden}html:not(.honeywell-dark-theme) .scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}html:not(.honeywell-dark-theme) .scrolling.dimmable>.dimmer{position:fixed}html:not(.honeywell-dark-theme) .modals.dimmer .ui.scrolling.modal{position:static !important;margin:3.5rem auto !important}html:not(.honeywell-dark-theme) .scrolling.undetached.dimmable.dimmed{overflow:auto;-webkit-overflow-scrolling:touch}html:not(.honeywell-dark-theme) .scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}html:not(.honeywell-dark-theme) .scrolling.undetached.dimmable .ui.scrolling.modal{position:absolute;margin-top:3.5rem !important}html:not(.honeywell-dark-theme) .undetached.dimmable.dimmed>.pusher{z-index:auto}@media only screen and (max-width: 991px){html:not(.honeywell-dark-theme) .modals.dimmer .ui.scrolling.modal{margin-top:1rem !important;margin-bottom:1rem !important}}html:not(.honeywell-dark-theme) .ui.modal .scrolling.content{max-height:calc(70vh);overflow:unset}html:not(.honeywell-dark-theme) .ui.fullscreen.modal{width:95% !important;left:2.5% !important;margin:1em auto}html:not(.honeywell-dark-theme) .ui.fullscreen.scrolling.modal{left:0em !important}html:not(.honeywell-dark-theme) .ui.fullscreen.modal>.header{padding-right:2.25rem}html:not(.honeywell-dark-theme) .ui.fullscreen.modal>.close{top:1.0535rem;right:1rem}html:not(.honeywell-dark-theme) .ui.modal{font-size:1rem}html:not(.honeywell-dark-theme) .ui.mini.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.mini.modal{width:95%}}@media only screen and (min-width: 768px){html:not(.honeywell-dark-theme) .ui.mini.modal{width:35.2%}}@media only screen and (min-width: 992px){html:not(.honeywell-dark-theme) .ui.mini.modal{width:340px}}@media only screen and (min-width: 1200px){html:not(.honeywell-dark-theme) .ui.mini.modal{width:360px}}@media only screen and (min-width: 1920px){html:not(.honeywell-dark-theme) .ui.mini.modal{width:380px}}html:not(.honeywell-dark-theme) .ui.small.modal>.header:not(.ui){font-size:1.3em}html:not(.honeywell-dark-theme) .ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.small.modal{width:95%}}@media only screen and (min-width: 768px){html:not(.honeywell-dark-theme) .ui.small.modal{width:70.4%}}@media only screen and (min-width: 992px){html:not(.honeywell-dark-theme) .ui.small.modal{width:680px}}@media only screen and (min-width: 1200px){html:not(.honeywell-dark-theme) .ui.small.modal{width:720px}}@media only screen and (min-width: 1920px){html:not(.honeywell-dark-theme) .ui.small.modal{width:760px}}html:not(.honeywell-dark-theme) .ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.large.modal{width:95%}}@media only screen and (min-width: 768px){html:not(.honeywell-dark-theme) .ui.large.modal{width:88%}}@media only screen and (min-width: 992px){html:not(.honeywell-dark-theme) .ui.large.modal{width:1020px}}@media only screen and (min-width: 1200px){html:not(.honeywell-dark-theme) .ui.large.modal{width:1080px}}@media only screen and (min-width: 1920px){html:not(.honeywell-dark-theme) .ui.large.modal{width:1140px}}html:not(.honeywell-dark-theme) .ui.popup{display:none;position:absolute;top:0px;right:0px;min-width:min-content;z-index:1900;border:1px solid #D4D4D5;line-height:1.4285em;max-width:250px;background:#FFFFFF;padding:0.833em 1em;font-weight:normal;font-style:normal;color:rgba(0,0,0,0.87);border-radius:0.28571429rem;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.popup>.header{padding:0em;font-size:1.14285714em;line-height:1.2;font-weight:bold}html:not(.honeywell-dark-theme) .ui.popup>.header+.content{padding-top:0.5em}html:not(.honeywell-dark-theme) .ui.popup:before{position:absolute;content:'';width:0.71428571em;height:0.71428571em;background:#FFFFFF;transform:rotate(45deg);z-index:2}html:not(.honeywell-dark-theme) [data-tooltip]{position:relative}html:not(.honeywell-dark-theme) [data-tooltip]:before{pointer-events:none;position:absolute;content:'';font-size:1rem;width:0.71428571em;height:0.71428571em;background:#FFFFFF;transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0px 0px #bababc}html:not(.honeywell-dark-theme) [data-tooltip]:after{pointer-events:none;content:attr(data-tooltip);position:absolute;text-transform:none;text-align:left;white-space:nowrap;font-size:1rem;border:1px solid #D4D4D5;line-height:1.4285em;max-width:none;background:#FFFFFF;padding:0.833em 1em;font-weight:normal;font-style:normal;color:rgba(0,0,0,0.87);border-radius:0.28571429rem;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15);z-index:1}html:not(.honeywell-dark-theme) [data-tooltip]:not([data-position]):before{top:auto;right:auto;bottom:100%;left:50%;background:#FFFFFF;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html:not(.honeywell-dark-theme) [data-tooltip]:not([data-position]):after{left:50%;transform:translateX(-50%);bottom:100%;margin-bottom:0.5em}html:not(.honeywell-dark-theme) [data-tooltip]:before,html:not(.honeywell-dark-theme) [data-tooltip]:after{pointer-events:none;visibility:hidden}html:not(.honeywell-dark-theme) [data-tooltip]:before{opacity:0;transform:rotate(45deg) scale(0) !important;transform-origin:center top;transition:all 0.1s ease}html:not(.honeywell-dark-theme) [data-tooltip]:after{opacity:1;transform-origin:center bottom;transition:all 0.1s ease}html:not(.honeywell-dark-theme) [data-tooltip]:hover:before,html:not(.honeywell-dark-theme) [data-tooltip]:hover:after{visibility:visible;pointer-events:auto}html:not(.honeywell-dark-theme) [data-tooltip]:hover:before{transform:rotate(45deg) scale(1) !important;opacity:1}html:not(.honeywell-dark-theme) [data-tooltip]:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="top center"]:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="bottom center"]:after{transform:translateX(-50%) scale(0) !important}html:not(.honeywell-dark-theme) [data-tooltip]:hover:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="bottom center"]:hover:after{transform:translateX(-50%) scale(1) !important}html:not(.honeywell-dark-theme) [data-tooltip][data-position="left center"]:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="right center"]:after{transform:translateY(-50%) scale(0) !important}html:not(.honeywell-dark-theme) [data-tooltip][data-position="left center"]:hover:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="right center"]:hover:after{transform:translateY(-50%) scale(1) !important}html:not(.honeywell-dark-theme) [data-tooltip][data-position="top left"]:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="top right"]:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="bottom left"]:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="bottom right"]:after{transform:scale(0) !important}html:not(.honeywell-dark-theme) [data-tooltip][data-position="top left"]:hover:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="top right"]:hover:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="bottom left"]:hover:after,html:not(.honeywell-dark-theme) [data-tooltip][data-position="bottom right"]:hover:after{transform:scale(1) !important}html:not(.honeywell-dark-theme) [data-tooltip][data-inverted]:before{box-shadow:none !important}html:not(.honeywell-dark-theme) [data-tooltip][data-inverted]:before{background:#1B1C1D}html:not(.honeywell-dark-theme) [data-tooltip][data-inverted]:after{background:#1B1C1D;color:#FFFFFF;border:none;box-shadow:none}html:not(.honeywell-dark-theme) [data-tooltip][data-inverted]:after .header{background-color:none;color:#FFFFFF}html:not(.honeywell-dark-theme) [data-position="top center"][data-tooltip]:after{top:auto;right:auto;left:50%;bottom:100%;transform:translateX(-50%);margin-bottom:0.5em}html:not(.honeywell-dark-theme) [data-position="top center"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:50%;background:#FFFFFF;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html:not(.honeywell-dark-theme) [data-position="top left"][data-tooltip]:after{top:auto;right:auto;left:0;bottom:100%;margin-bottom:0.5em}html:not(.honeywell-dark-theme) [data-position="top left"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:1em;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html:not(.honeywell-dark-theme) [data-position="top right"][data-tooltip]:after{top:auto;left:auto;right:0;bottom:100%;margin-bottom:0.5em}html:not(.honeywell-dark-theme) [data-position="top right"][data-tooltip]:before{top:auto;left:auto;bottom:100%;right:1em;margin-left:-0.07142857rem;margin-bottom:0.14285714rem}html:not(.honeywell-dark-theme) [data-position="bottom center"][data-tooltip]:after{bottom:auto;right:auto;left:50%;top:100%;transform:translateX(-50%);margin-top:0.5em}html:not(.honeywell-dark-theme) [data-position="bottom center"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:50%;margin-left:-0.07142857rem;margin-top:0.14285714rem}html:not(.honeywell-dark-theme) [data-position="bottom left"][data-tooltip]:after{left:0;top:100%;margin-top:0.5em}html:not(.honeywell-dark-theme) [data-position="bottom left"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:1em;margin-left:-0.07142857rem;margin-top:0.14285714rem}html:not(.honeywell-dark-theme) [data-position="bottom right"][data-tooltip]:after{right:0;top:100%;margin-top:0.5em}html:not(.honeywell-dark-theme) [data-position="bottom right"][data-tooltip]:before{bottom:auto;left:auto;top:100%;right:1em;margin-left:-0.14285714rem;margin-top:0.07142857rem}html:not(.honeywell-dark-theme) [data-position="left center"][data-tooltip]:after{right:100%;top:50%;margin-right:0.5em;transform:translateY(-50%)}html:not(.honeywell-dark-theme) [data-position="left center"][data-tooltip]:before{right:100%;top:50%;margin-top:-0.14285714rem;margin-right:-0.07142857rem}html:not(.honeywell-dark-theme) [data-position="right center"][data-tooltip]:after{left:100%;top:50%;margin-left:0.5em;transform:translateY(-50%)}html:not(.honeywell-dark-theme) [data-position="right center"][data-tooltip]:before{left:100%;top:50%;margin-top:-0.07142857rem;margin-left:0.14285714rem}html:not(.honeywell-dark-theme) [data-position~="bottom"][data-tooltip]:before{background:#FFFFFF;box-shadow:-1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) [data-position="left center"][data-tooltip]:before{background:#FFFFFF;box-shadow:1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) [data-position="right center"][data-tooltip]:before{background:#FFFFFF;box-shadow:-1px 1px 0px 0px #bababc}html:not(.honeywell-dark-theme) [data-position~="top"][data-tooltip]:before{background:#FFFFFF}html:not(.honeywell-dark-theme) [data-inverted][data-position~="bottom"][data-tooltip]:before{background:#1B1C1D;box-shadow:-1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) [data-inverted][data-position="left center"][data-tooltip]:before{background:#1B1C1D;box-shadow:1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) [data-inverted][data-position="right center"][data-tooltip]:before{background:#1B1C1D;box-shadow:-1px 1px 0px 0px #bababc}html:not(.honeywell-dark-theme) [data-inverted][data-position~="top"][data-tooltip]:before{background:#1B1C1D}html:not(.honeywell-dark-theme) [data-position~="bottom"][data-tooltip]:before{transform-origin:center bottom}html:not(.honeywell-dark-theme) [data-position~="bottom"][data-tooltip]:after{transform-origin:center top}html:not(.honeywell-dark-theme) [data-position="left center"][data-tooltip]:before{transform-origin:top center}html:not(.honeywell-dark-theme) [data-position="left center"][data-tooltip]:after{transform-origin:right center}html:not(.honeywell-dark-theme) [data-position="right center"][data-tooltip]:before{transform-origin:right center}html:not(.honeywell-dark-theme) [data-position="right center"][data-tooltip]:after{transform-origin:left center}html:not(.honeywell-dark-theme) .ui.popup{margin:0em}html:not(.honeywell-dark-theme) .ui.top.popup{margin:0em 0em 0.71428571em}html:not(.honeywell-dark-theme) .ui.top.left.popup{transform-origin:left bottom}html:not(.honeywell-dark-theme) .ui.top.center.popup{transform-origin:center bottom}html:not(.honeywell-dark-theme) .ui.top.right.popup{transform-origin:right bottom}html:not(.honeywell-dark-theme) .ui.left.center.popup{margin:0em 0.71428571em 0em 0em;transform-origin:right 50%}html:not(.honeywell-dark-theme) .ui.right.center.popup{margin:0em 0em 0em 0.71428571em;transform-origin:left 50%}html:not(.honeywell-dark-theme) .ui.bottom.popup{margin:0.71428571em 0em 0em}html:not(.honeywell-dark-theme) .ui.bottom.left.popup{transform-origin:left top}html:not(.honeywell-dark-theme) .ui.bottom.center.popup{transform-origin:center top}html:not(.honeywell-dark-theme) .ui.bottom.right.popup{transform-origin:right top}html:not(.honeywell-dark-theme) .ui.bottom.center.popup:before{margin-left:-0.30714286em;top:-0.30714286em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) .ui.bottom.left.popup{margin-left:0em}html:not(.honeywell-dark-theme) .ui.bottom.left.popup:before{top:-0.30714286em;left:1em;right:auto;bottom:auto;margin-left:0em;box-shadow:-1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) .ui.bottom.right.popup{margin-right:0em}html:not(.honeywell-dark-theme) .ui.bottom.right.popup:before{top:-0.30714286em;right:1em;bottom:auto;left:auto;margin-left:0em;box-shadow:-1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) .ui.top.center.popup:before{top:auto;right:auto;bottom:-0.30714286em;left:50%;margin-left:-0.30714286em}html:not(.honeywell-dark-theme) .ui.top.left.popup{margin-left:0em}html:not(.honeywell-dark-theme) .ui.top.left.popup:before{bottom:-0.30714286em;left:1em;top:auto;right:auto;margin-left:0em}html:not(.honeywell-dark-theme) .ui.top.right.popup{margin-right:0em}html:not(.honeywell-dark-theme) .ui.top.right.popup:before{bottom:-0.30714286em;right:1em;top:auto;left:auto;margin-left:0em}html:not(.honeywell-dark-theme) .ui.left.center.popup:before{top:50%;right:-0.30714286em;bottom:auto;left:auto;margin-top:-0.30714286em;box-shadow:1px -1px 0px 0px #bababc}html:not(.honeywell-dark-theme) .ui.right.center.popup:before{top:50%;left:-0.30714286em;bottom:auto;right:auto;margin-top:-0.30714286em;box-shadow:-1px 1px 0px 0px #bababc}html:not(.honeywell-dark-theme) .ui.bottom.popup:before{background:#FFFFFF}html:not(.honeywell-dark-theme) .ui.right.center.popup:before,html:not(.honeywell-dark-theme) .ui.left.center.popup:before{background:#FFFFFF}html:not(.honeywell-dark-theme) .ui.top.popup:before{background:#FFFFFF}html:not(.honeywell-dark-theme) .ui.inverted.bottom.popup:before{background:#1B1C1D}html:not(.honeywell-dark-theme) .ui.inverted.right.center.popup:before,html:not(.honeywell-dark-theme) .ui.inverted.left.center.popup:before{background:#1B1C1D}html:not(.honeywell-dark-theme) .ui.inverted.top.popup:before{background:#1B1C1D}html:not(.honeywell-dark-theme) .ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-0.7rem -0.875rem}html:not(.honeywell-dark-theme) .ui.loading.popup{display:block;visibility:hidden;z-index:-1}html:not(.honeywell-dark-theme) .ui.animating.popup,html:not(.honeywell-dark-theme) .ui.visible.popup{display:block}html:not(.honeywell-dark-theme) .ui.visible.popup{transform:translateZ(0px);backface-visibility:hidden}html:not(.honeywell-dark-theme) .ui.basic.popup:before{display:none}html:not(.honeywell-dark-theme) .ui.wide.popup{max-width:350px}html:not(.honeywell-dark-theme) .ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width: 767px){html:not(.honeywell-dark-theme) .ui.wide.popup,html:not(.honeywell-dark-theme) .ui[class*="very wide"].popup{max-width:250px}}html:not(.honeywell-dark-theme) .ui.fluid.popup{width:100%;max-width:none}html:not(.honeywell-dark-theme) .ui.inverted.popup{background:#1B1C1D;color:#FFFFFF;border:none;box-shadow:none}html:not(.honeywell-dark-theme) .ui.inverted.popup .header{background-color:none;color:#FFFFFF}html:not(.honeywell-dark-theme) .ui.inverted.popup:before{background-color:#1B1C1D;box-shadow:none !important}html:not(.honeywell-dark-theme) .ui.flowing.popup{max-width:none}html:not(.honeywell-dark-theme) .ui.mini.popup{font-size:0.78571429rem}html:not(.honeywell-dark-theme) .ui.tiny.popup{font-size:0.85714286rem}html:not(.honeywell-dark-theme) .ui.small.popup{font-size:0.92857143rem}html:not(.honeywell-dark-theme) .ui.popup{font-size:1rem}html:not(.honeywell-dark-theme) .ui.large.popup{font-size:1.14285714rem}html:not(.honeywell-dark-theme) .ui.huge.popup{font-size:1.42857143rem}html:not(.honeywell-dark-theme) .ui.search{position:relative}html:not(.honeywell-dark-theme) .ui.search>.prompt{margin:0em;outline:none;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:normal;line-height:1.21428571em;padding:0.67857143em 1em;font-size:1em;box-shadow:0em 0em 0em 0em transparent inset;transition:background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease}html:not(.honeywell-dark-theme) .ui.search .prompt{border-radius:500rem}html:not(.honeywell-dark-theme) .ui.search .prompt ~ .search.icon{cursor:pointer}html:not(.honeywell-dark-theme) .ui.search>.results{display:none;position:absolute;top:100%;left:0%;transform-origin:center top;white-space:normal;margin-top:0.5em;width:18em;box-shadow:0px 2px 4px 0px rgba(34,36,38,0.12),0px 2px 10px 0px rgba(34,36,38,0.15);z-index:998}html:not(.honeywell-dark-theme) .ui.search>.results .result{cursor:pointer;display:block;overflow:hidden;font-size:1em;padding:0.85714286em 1.14285714em;line-height:1.33}html:not(.honeywell-dark-theme) .ui.search>.results .result:last-child{border-bottom:none !important}html:not(.honeywell-dark-theme) .ui.search>.results .result .image{float:right;overflow:hidden;background:none;width:5em;height:3em;border-radius:0.25em}html:not(.honeywell-dark-theme) .ui.search>.results .result .image img{display:block;width:auto;height:100%}html:not(.honeywell-dark-theme) .ui.search>.results .result .image+.content{margin:0em 6em 0em 0em}html:not(.honeywell-dark-theme) .ui.search>.results .result .title{margin:-0.14285714em 0em 0em;font-weight:bold;font-size:1em}html:not(.honeywell-dark-theme) .ui.search>.results .result .description{margin-top:0;font-size:0.92857143em}html:not(.honeywell-dark-theme) .ui.search>.results>.message{padding:1em 1em}html:not(.honeywell-dark-theme) .ui.search>.results>.message .header{font-size:1rem;font-weight:bold}html:not(.honeywell-dark-theme) .ui.search>.results>.message .description{margin-top:0.25rem;font-size:1em}html:not(.honeywell-dark-theme) .ui.search>.results>.action{display:block;border-top:none;padding:0.92857143em 1em;font-weight:bold;text-align:center}html:not(.honeywell-dark-theme) .ui.loading.search .input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.loading.search .input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}html:not(.honeywell-dark-theme) .ui.search>.results .result.active,html:not(.honeywell-dark-theme) .ui.category.search>.results .category .result.active{position:relative;box-shadow:none}html:not(.honeywell-dark-theme) .ui.search.selection .prompt{border-radius:0.28571429rem}html:not(.honeywell-dark-theme) .ui.search.selection>.icon.input>.remove.icon{pointer-events:none;position:absolute;left:auto;opacity:0;color:'';top:0em;right:0em;transition:color 0.1s ease, opacity 0.1s ease}html:not(.honeywell-dark-theme) .ui.search.selection>.icon.input>.active.remove.icon{cursor:pointer;opacity:0.8;pointer-events:auto}html:not(.honeywell-dark-theme) .ui.search.selection>.icon.input:not([class*="left icon"])>.icon ~ .remove.icon{right:1.85714em}html:not(.honeywell-dark-theme) .ui.search.selection>.icon.input>.remove.icon:hover{opacity:1;color:#DB2828}html:not(.honeywell-dark-theme) .ui.category.search .results{width:28em}html:not(.honeywell-dark-theme) .ui.category.search>.results .category{box-shadow:none;border-bottom:1px solid rgba(34,36,38,0.1);transition:background 0.1s ease, border-color 0.1s ease}html:not(.honeywell-dark-theme) .ui.category.search>.results .category:last-child{border-bottom:none}html:not(.honeywell-dark-theme) .ui.category.search>.results .category:first-child .name+.result{border-radius:0em 0.28571429rem 0em 0em}html:not(.honeywell-dark-theme) .ui.category.search>.results .category:last-child .result:last-child{border-radius:0em 0em 0.28571429rem 0em}html:not(.honeywell-dark-theme) .ui.category.search>.results .category .result{margin-left:100px;transition:background 0.1s ease, border-color 0.1s ease;padding:0.85714286em 1.14285714em}html:not(.honeywell-dark-theme) .ui.category.search>.results .category:last-child .result:last-child{border-bottom:none}html:not(.honeywell-dark-theme) .ui.category.search>.results .category>.name{width:100px;background:transparent;font-size:1em;float:1em;float:left;padding:0.4em 1em;font-weight:bold}html:not(.honeywell-dark-theme) .ui[class*="left aligned"].search>.results{right:auto;left:0%}html:not(.honeywell-dark-theme) .ui[class*="right aligned"].search>.results{right:0%;left:auto}html:not(.honeywell-dark-theme) .ui.fluid.search .results{width:100%}html:not(.honeywell-dark-theme) .ui.mini.search{font-size:0.78571429em}html:not(.honeywell-dark-theme) .ui.small.search{font-size:0.92857143em}html:not(.honeywell-dark-theme) .ui.search{font-size:1em}html:not(.honeywell-dark-theme) .ui.large.search{font-size:1.14285714em}html:not(.honeywell-dark-theme) .ui.big.search{font-size:1.28571429em}html:not(.honeywell-dark-theme) .ui.huge.search{font-size:1.42857143em}html:not(.honeywell-dark-theme) .ui.massive.search{font-size:1.71428571em}html:not(.honeywell-dark-theme) .ui.sidebar{position:fixed;top:0;left:0;backface-visibility:hidden;transition:none;will-change:transform;transform:translate3d(0, 0, 0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100% !important;max-height:100%;border-radius:0em !important;margin:0em !important;overflow-y:auto !important;z-index:102}html:not(.honeywell-dark-theme) .ui.sidebar>*{backface-visibility:hidden}html:not(.honeywell-dark-theme) .ui.left.sidebar{right:auto;left:0px;transform:translate3d(-100%, 0, 0)}html:not(.honeywell-dark-theme) .ui.right.sidebar{right:0px !important;left:auto !important;transform:translate3d(100%, 0%, 0)}html:not(.honeywell-dark-theme) .ui.top.sidebar,html:not(.honeywell-dark-theme) .ui.bottom.sidebar{width:100% !important;height:auto !important}html:not(.honeywell-dark-theme) .ui.top.sidebar{top:0px !important;bottom:auto !important;transform:translate3d(0, -100%, 0)}html:not(.honeywell-dark-theme) .ui.bottom.sidebar{top:auto !important;bottom:0px !important;transform:translate3d(0, 100%, 0)}html:not(.honeywell-dark-theme) .pushable{height:100%;overflow-x:hidden;padding:0em !important}html:not(.honeywell-dark-theme) .pushable:not(body){transform:translate3d(0, 0, 0)}html:not(.honeywell-dark-theme) .pushable:not(body)>.ui.sidebar,html:not(.honeywell-dark-theme) .pushable:not(body)>.fixed,html:not(.honeywell-dark-theme) .pushable:not(body)>.pusher:after{position:absolute}html:not(.honeywell-dark-theme) .pushable>.fixed{position:fixed;backface-visibility:hidden;transition:transform 500ms ease;will-change:transform;z-index:101}html:not(.honeywell-dark-theme) .pushable>.pusher{position:relative;backface-visibility:hidden;overflow:hidden;min-height:100%;transition:transform 500ms ease;z-index:2}html:not(.honeywell-dark-theme) .pushable>.pusher{background:inherit}html:not(.honeywell-dark-theme) .pushable>.pusher:after{position:fixed;top:0px;right:0px;content:'';background-color:rgba(0,0,0,0.4);overflow:hidden;opacity:0;transition:opacity 500ms;will-change:opacity;z-index:1000}html:not(.honeywell-dark-theme) .ui.sidebar.menu .item{border-radius:0em !important}html:not(.honeywell-dark-theme) .pushable>.pusher.dimmed:after{width:100% !important;height:100% !important;opacity:1 !important}html:not(.honeywell-dark-theme) .ui.animating.sidebar{visibility:visible}html:not(.honeywell-dark-theme) .ui.visible.sidebar{visibility:visible;transform:translate3d(0, 0, 0)}html:not(.honeywell-dark-theme) .ui.left.visible.sidebar,html:not(.honeywell-dark-theme) .ui.right.visible.sidebar{box-shadow:0px 0px 20px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.top.visible.sidebar,html:not(.honeywell-dark-theme) .ui.bottom.visible.sidebar{box-shadow:0px 0px 20px rgba(34,36,38,0.15)}html:not(.honeywell-dark-theme) .ui.visible.left.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.left.sidebar ~ .pusher{transform:translate3d(260px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible.right.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.right.sidebar ~ .pusher{transform:translate3d(-260px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible.top.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.top.sidebar ~ .pusher{transform:translate3d(0, 36px, 0)}html:not(.honeywell-dark-theme) .ui.visible.bottom.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.bottom.sidebar ~ .pusher{transform:translate3d(0, -36px, 0)}html:not(.honeywell-dark-theme) .ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher,html:not(.honeywell-dark-theme) .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher{transform:translate3d(0, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible.thin.left.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.thin.left.sidebar ~ .pusher{transform:translate3d(150px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible[class*="very thin"].left.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible[class*="very thin"].left.sidebar ~ .pusher{transform:translate3d(60px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible.wide.left.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.wide.left.sidebar ~ .pusher{transform:translate3d(350px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible[class*="very wide"].left.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible[class*="very wide"].left.sidebar ~ .pusher{transform:translate3d(475px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible.thin.right.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.thin.right.sidebar ~ .pusher{transform:translate3d(-150px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible[class*="very thin"].right.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible[class*="very thin"].right.sidebar ~ .pusher{transform:translate3d(-60px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible.wide.right.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.wide.right.sidebar ~ .pusher{transform:translate3d(-350px, 0, 0)}html:not(.honeywell-dark-theme) .ui.visible[class*="very wide"].right.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible[class*="very wide"].right.sidebar ~ .pusher{transform:translate3d(-475px, 0, 0)}html:not(.honeywell-dark-theme) .ui.overlay.sidebar{z-index:102}html:not(.honeywell-dark-theme) .ui.left.overlay.sidebar{transform:translate3d(-100%, 0%, 0)}html:not(.honeywell-dark-theme) .ui.right.overlay.sidebar{transform:translate3d(100%, 0%, 0)}html:not(.honeywell-dark-theme) .ui.top.overlay.sidebar{transform:translate3d(0%, -100%, 0)}html:not(.honeywell-dark-theme) .ui.bottom.overlay.sidebar{transform:translate3d(0%, 100%, 0)}html:not(.honeywell-dark-theme) .animating.ui.overlay.sidebar,html:not(.honeywell-dark-theme) .ui.visible.overlay.sidebar{transition:transform 500ms ease}html:not(.honeywell-dark-theme) .ui.visible.left.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html:not(.honeywell-dark-theme) .ui.visible.right.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html:not(.honeywell-dark-theme) .ui.visible.top.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html:not(.honeywell-dark-theme) .ui.visible.bottom.overlay.sidebar{transform:translate3d(0%, 0%, 0)}html:not(.honeywell-dark-theme) .ui.visible.overlay.sidebar ~ .fixed,html:not(.honeywell-dark-theme) .ui.visible.overlay.sidebar ~ .pusher{transform:none !important}html:not(.honeywell-dark-theme) .ui.push.sidebar{transition:transform 500ms ease;z-index:102}html:not(.honeywell-dark-theme) .ui.left.push.sidebar{transform:translate3d(-100%, 0, 0)}html:not(.honeywell-dark-theme) .ui.right.push.sidebar{transform:translate3d(100%, 0, 0)}html:not(.honeywell-dark-theme) .ui.top.push.sidebar{transform:translate3d(0%, -100%, 0)}html:not(.honeywell-dark-theme) .ui.bottom.push.sidebar{transform:translate3d(0%, 100%, 0)}html:not(.honeywell-dark-theme) .ui.visible.push.sidebar{transform:translate3d(0%, 0, 0)}html:not(.honeywell-dark-theme) .ui.uncover.sidebar{transform:translate3d(0, 0, 0);z-index:1}html:not(.honeywell-dark-theme) .ui.visible.uncover.sidebar{transform:translate3d(0, 0, 0);transition:transform 500ms ease}html:not(.honeywell-dark-theme) .ui.slide.along.sidebar{z-index:1}html:not(.honeywell-dark-theme) .ui.left.slide.along.sidebar{transform:translate3d(-50%, 0, 0)}html:not(.honeywell-dark-theme) .ui.right.slide.along.sidebar{transform:translate3d(50%, 0, 0)}html:not(.honeywell-dark-theme) .ui.top.slide.along.sidebar{transform:translate3d(0, -50%, 0)}html:not(.honeywell-dark-theme) .ui.bottom.slide.along.sidebar{transform:translate3d(0%, 50%, 0)}html:not(.honeywell-dark-theme) .ui.animating.slide.along.sidebar{transition:transform 500ms ease}html:not(.honeywell-dark-theme) .ui.visible.slide.along.sidebar{transform:translate3d(0%, 0, 0)}html:not(.honeywell-dark-theme) .ui.slide.out.sidebar{z-index:1}html:not(.honeywell-dark-theme) .ui.left.slide.out.sidebar{transform:translate3d(50%, 0, 0)}html:not(.honeywell-dark-theme) .ui.right.slide.out.sidebar{transform:translate3d(-50%, 0, 0)}html:not(.honeywell-dark-theme) .ui.top.slide.out.sidebar{transform:translate3d(0%, 50%, 0)}html:not(.honeywell-dark-theme) .ui.bottom.slide.out.sidebar{transform:translate3d(0%, -50%, 0)}html:not(.honeywell-dark-theme) .ui.animating.slide.out.sidebar{transition:transform 500ms ease}html:not(.honeywell-dark-theme) .ui.visible.slide.out.sidebar{transform:translate3d(0%, 0, 0)}html:not(.honeywell-dark-theme) .accordion.ui.fluid{border:#d0d0d0 .0625rem solid;border-top:none}html:not(.honeywell-dark-theme) .accordion.ui.fluid .title{border-top:#d0d0d0 .0625rem solid;background:#fff;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;padding-top:1rem;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;letter-spacing:0.25px;font-weight:600;color:#303030}html:not(.honeywell-dark-theme) .accordion.ui.fluid .title .root-icon{float:right;padding:.125rem}html:not(.honeywell-dark-theme) .accordion.ui.fluid .title .root-icon.left{float:left;padding-right:1rem}html:not(.honeywell-dark-theme) .accordion.ui.fluid .title.disabled{cursor:not-allowed;color:#a0a0a0}html:not(.honeywell-dark-theme) .accordion.ui.fluid .title.disabled .root-icon{color:#b0b0b0}html:not(.honeywell-dark-theme) .accordion.ui.fluid>:first-child{border-top:1px solid transparent}html:not(.honeywell-dark-theme) .accordion.ui.fluid .active.content{border-top:none;background:#fff;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030}html:not(.honeywell-dark-theme) .ui.accordion:not(.styled) .title ~ .content:not(.ui){padding-left:1rem;padding-right:1rem;padding-bottom:1rem !important;padding-top:0px}html:not(.honeywell-dark-theme) .ui.label.badge{color:#000 !important;font-size:.75rem;line-height:1rem;font-weight:600;min-height:1rem;min-width:1rem;padding:0 .25rem !important;vertical-align:middle}html:not(.honeywell-dark-theme) .ui.label.badge.circle-padding{padding:0 .125rem !important}html:not(.honeywell-dark-theme) .ui.label.badge.empty{width:.5rem !important;height:.5rem !important;padding:0 !important;min-width:0 !important;min-height:0 !important}html:not(.honeywell-dark-theme) .ui.label.badge.red{background-color:#BE271C !important;border-color:#BE271C !important;color:#fff !important}html:not(.honeywell-dark-theme) .ui.label.badge.yellow{background-color:#ffC627 !important;border-color:#ffC627 !important}html:not(.honeywell-dark-theme) .ui.label.badge.orange{background-color:#f37021 !important;border-color:#f37021 !important}html:not(.honeywell-dark-theme) .ui.label.badge.green{background-color:#7eb338 !important;border-color:#7eb338 !important}html:not(.honeywell-dark-theme) .ui.label.badge.blue{background-color:#1792e5 !important;border-color:#1792e5 !important;color:#fff !important}html:not(.honeywell-dark-theme) .ui.label.badge.grey{background-color:gray !important;border-color:gray !important;color:#fff !important}html:not(.honeywell-dark-theme) .badged-icon{position:relative;display:inline-block}html:not(.honeywell-dark-theme) .badged-icon .ui.label{position:absolute;z-index:100;bottom:50%;right:-25%;margin:0}html:not(.honeywell-dark-theme) .badged-icon .ui.label.empty{left:50%;top:-0em;width:.5rem;height:.5rem}html:not(.honeywell-dark-theme) .below-text{min-height:1.25rem;margin:.125rem 0}html:not(.honeywell-dark-theme) .below-text .ui.error-message{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#BE271C;font-weight:600;display:block}html:not(.honeywell-dark-theme) .below-text .ui.helper-message{display:block;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#606060}html:not(.honeywell-dark-theme) .ui.breadcrumb{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#606060;display:flex;align-items:center;margin-top:.5rem !important;margin-bottom:.5rem !important;margin-left:1rem;color:#606060}html:not(.honeywell-dark-theme) .ui.breadcrumb .divider{margin:0 .25rem;display:flex;align-items:center}html:not(.honeywell-dark-theme) .ui.breadcrumb .divider .h-icon{font-size:.5rem;color:#303030}html:not(.honeywell-dark-theme) .ui.breadcrumb .divider:last-of-type{display:none}html:not(.honeywell-dark-theme) .ui.breadcrumb .section,html:not(.honeywell-dark-theme) .ui.breadcrumb .section:hover{color:#303030}html:not(.honeywell-dark-theme) .ui.breadcrumb .section{display:flex;align-items:center}html:not(.honeywell-dark-theme) .ui.breadcrumb a.section{cursor:pointer}html:not(.honeywell-dark-theme) .ui.button{cursor:pointer;outline:none;border-radius:0;transition:border-color 0.5s ease, background 0.5s ease, color 0.5s ease;box-sizing:border-box;text-transform:uppercase;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:600;padding-left:2.4375rem;padding-right:2.4375rem;padding-top:.4375rem;padding-bottom:.4375rem;margin:0;font-size:.875rem;letter-spacing:0.5px;line-height:1.375rem}html:not(.honeywell-dark-theme) .ui.button>.button-content{position:relative !important}html:not(.honeywell-dark-theme) .ui.button.no-transform{text-transform:none}html:not(.honeywell-dark-theme) .ui.button.disabled{opacity:1 !important}html:not(.honeywell-dark-theme) .ui.button.loading{position:relative;cursor:default;text-shadow:none !important;color:transparent !important;opacity:1;pointer-events:auto;transition:all 0s linear, opacity 0.1s ease}html:not(.honeywell-dark-theme) .ui.button.loading:before{position:absolute;content:"";top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:0.2em solid rgba(0,0,0,0.15)}html:not(.honeywell-dark-theme) .ui.button.loading:after{position:absolute;content:"";top:50%;left:50%;margin:-0.64285714em 0em 0em -0.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin 0.6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#ffffff transparent transparent;border-style:solid;border-width:0.2em;box-shadow:0px 0px 0px 1px transparent}html:not(.honeywell-dark-theme) .ui.button.loading.icon .icon{background-color:transparent;box-shadow:none}@keyframes button-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) .ui.button.loading .basic:not(.inverted):before{border-color:rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.button.loading .basic:not(.inverted):after{border-top-color:#767676}html:not(.honeywell-dark-theme) .ui.button.primary{border:.0625rem solid #1274B7;background-color:#1274B7;color:#fff}html:not(.honeywell-dark-theme) .ui.button.primary:focus{border:.0625rem solid #1274B7;background:#1274B7;color:#fff}html:not(.honeywell-dark-theme) .ui.button.primary:hover{background-color:#10659F;border-color:#10659F}html:not(.honeywell-dark-theme) .ui.button.primary.disabled{background-color:#a0a0a0;border-color:#a0a0a0;color:#fff}html:not(.honeywell-dark-theme) .ui.button.primary:active{background-color:#0B4872;border-color:#0B4872}html:not(.honeywell-dark-theme) .ui.button.secondary{border:.0625rem solid #1274B7;color:#1274B7;background-color:transparent}html:not(.honeywell-dark-theme) .ui.button.secondary:focus{border:.0625rem solid #1274B7;color:#1274B7;background-color:transparent}html:not(.honeywell-dark-theme) .ui.button.secondary:hover{color:#10659F;border-color:#10659F;background-color:transparent}html:not(.honeywell-dark-theme) .ui.button.secondary.disabled{background-color:#a0a0a0;border-color:#a0a0a0;color:#fff}html:not(.honeywell-dark-theme) .ui.button.secondary:active{color:#0B4872;border-color:#0B4872;background-color:transparent}html:not(.honeywell-dark-theme) .ui.button.link{border:none;color:#1274B7;background-color:transparent;text-transform:none;padding:0}html:not(.honeywell-dark-theme) .ui.button.link:hover{background-color:transparent;color:#10659F}html:not(.honeywell-dark-theme) .ui.button.link.disabled{background-color:transparent;color:#a0a0a0}html:not(.honeywell-dark-theme) .ui.button.link:active{background-color:transparent;color:#707070}html:not(.honeywell-dark-theme) .ui.button.inline{border:.0625rem solid #303030;color:#fff;background-color:#303030}html:not(.honeywell-dark-theme) .ui.button.inline:focus{border:.0625rem solid #303030;color:#fff;background-color:#303030}html:not(.honeywell-dark-theme) .ui.button.inline:hover{color:#fff;border-color:#404040;background-color:#404040}html:not(.honeywell-dark-theme) .ui.button.inline.disabled{background-color:#a0a0a0;border-color:#a0a0a0;color:#fff}html:not(.honeywell-dark-theme) .ui.button.inline:active{background-color:#707070;border-color:#707070}html:not(.honeywell-dark-theme) .ui.button.inline-secondary{border:.0625rem solid #303030;color:#303030;background-color:transparent}html:not(.honeywell-dark-theme) .ui.button.inline-secondary:hover{color:#404040;border-color:#404040;background-color:transparent}html:not(.honeywell-dark-theme) .ui.button.inline-secondary.disabled{background-color:#a0a0a0;border-color:#a0a0a0;color:#fff}html:not(.honeywell-dark-theme) .ui.button.inline-secondary:active{color:#707070;border-color:#707070;background-color:transparent}html:not(.honeywell-dark-theme) .ui.button.small{padding:0 .875rem;height:1.875rem}html:not(.honeywell-dark-theme) .ui.button.large{padding:30px 72px;font-size:1em}html:not(.honeywell-dark-theme) .ui.button .h-icon{opacity:1 !important;vertical-align:top;font-size:.875rem;line-height:.875rem;padding:.125rem}html:not(.honeywell-dark-theme) .ui.button .h-icon.left{padding-right:.25rem}html:not(.honeywell-dark-theme) .ui.button .h-icon.right{padding-left:.25rem}html:not(.honeywell-dark-theme) .ui.button+.ui.button{margin-left:1rem}html:not(.honeywell-dark-theme) .ui.buttons .ui.button{margin-left:0 !important;border-radius:0}html:not(.honeywell-dark-theme) .ui.buttons .ui.button:not(:last-child){border-right:0}html:not(.honeywell-dark-theme) .ui.buttons .ui.button:first-child{border-left:.0625rem solid #1274B7}html:not(.honeywell-dark-theme) .ui.card{background-color:#fff;border:none !important;border-radius:0px !important;box-shadow:none;width:100%;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:flex;flex-direction:column}html:not(.honeywell-dark-theme) .ui.card .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;padding:.75rem 1rem 0;display:flex;align-items:center;justify-content:space-between;flex-grow:0}html:not(.honeywell-dark-theme) .ui.card .header .h-icon{color:#303030;margin:0}html:not(.honeywell-dark-theme) .ui.card .header>:not(.header){align-items:center;display:flex;justify-content:flex-start}html:not(.honeywell-dark-theme) .ui.card .meta{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#606060;padding:0 1rem 0}html:not(.honeywell-dark-theme) .ui.card .content{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;border-top:none !important;flex-grow:1;padding:1rem 1rem 1rem;position:relative}html:not(.honeywell-dark-theme) .ui.card .header+.content,html:not(.honeywell-dark-theme) .ui.card .meta+.content{padding:.5rem 1rem 1rem}html:not(.honeywell-dark-theme) .ui.card .content.footer{border-top:#d0d0d0 .0625rem solid !important;margin:0 1rem;flex-grow:0;padding:0;height:3rem;display:flex;justify-content:flex-end;align-items:center}html:not(.honeywell-dark-theme) .ui.card .content.footer .h-icon{color:#303030;margin:0 0 0 .75rem;padding:0.25rem}html:not(.honeywell-dark-theme) .ui.card .content.footer.align-left{justify-content:flex-start !important}html:not(.honeywell-dark-theme) .ui.card.raised{box-shadow:0 1px 2px rgba(0,0,0,0.1) !important}html:not(.honeywell-dark-theme) .ui.carousel{width:100%}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core{position:relative;overflow:hidden;height:100%}html:not(.honeywell-dark-theme) .ui.carousel .carousel-prev,html:not(.honeywell-dark-theme) .ui.carousel .carousel-next{height:59px;width:59px;position:absolute;top:50%;transform:translateY(-50%);z-index:5;border-radius:59px;text-align:center;transition:background 500ms ease-in, color 500ms ease-in;cursor:pointer}html:not(.honeywell-dark-theme) .ui.carousel .carousel-prev .arrow,html:not(.honeywell-dark-theme) .ui.carousel .carousel-next .arrow{font-size:1.5rem;line-height:1.5rem;position:relative;top:25%}html:not(.honeywell-dark-theme) .ui.carousel .carousel-prev{left:15px}html:not(.honeywell-dark-theme) .ui.carousel .carousel-prev .arrow{right:2px}html:not(.honeywell-dark-theme) .ui.carousel .carousel-next{right:15px}html:not(.honeywell-dark-theme) .ui.carousel .carousel-next .arrow{left:2px}html:not(.honeywell-dark-theme) .ui.carousel .carousel-item{position:absolute;width:100%;height:100%;overflow:hidden;background-size:cover;z-index:1;opacity:0;transition-property:opacity;transition-duration:500ms;transition-timing-function:ease-in}html:not(.honeywell-dark-theme) .ui.carousel .carousel-item.current{z-index:2;opacity:1;display:block}html:not(.honeywell-dark-theme) .ui.carousel .carousel-item .carousel-content{position:absolute;left:90px;padding:1rem;width:40%;top:50%;transform:translateY(-50%);max-height:100%;text-align:left;color:#fff;font-weight:300 !important}html:not(.honeywell-dark-theme) .ui.carousel .slide-markers{position:absolute;left:50%;bottom:15px;list-style:none;z-index:5;transform:translateX(-50%);margin:0;padding:0}html:not(.honeywell-dark-theme) .ui.carousel .slide-markers .slide-marker-item{display:inline-block;border-radius:15px;border:2px solid;margin-left:15px;height:15px;width:15px;border:1px solid;cursor:pointer}html:not(.honeywell-dark-theme) .ui.carousel .slide-markers .slide-marker-item:hover,html:not(.honeywell-dark-theme) .ui.carousel .slide-markers .slide-marker-item.active{border-color:#fff;background:#fff}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.light .carousel-prev,html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.light .carousel-next{background-color:#A0A0A0;color:#fff}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.light .carousel-content{background-color:rgba(48,48,48,0.6)}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.light .slide-marker-item{background-color:#D0D0D0;border-color:#fff}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.light .slide-marker-item.active{background-color:#4A4A4A}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.dark .carousel-prev,html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.dark .carousel-next{background-color:#D8D8D8;color:#4A4A4A}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.dark .slide-marker-item{background-color:#C0C0C0;border-color:#000}html:not(.honeywell-dark-theme) .ui.carousel .carousel-core.dark .slide-marker-item.active{background-color:#fff}html:not(.honeywell-dark-theme) .ui.carousel .slide{width:100%;height:100%;text-align:center;overflow:hidden;background-size:cover}html:not(.honeywell-dark-theme) .ui.carousel .slide .call-to-action{font-size:1.625rem;font-weight:300;line-height:2.25rem;margin-bottom:.25rem}html:not(.honeywell-dark-theme) .ui.carousel .slide .subtitle{font-size:1rem;line-height:1rem;margin-bottom:.75rem}html:not(.honeywell-dark-theme) .ui.carousel .slide .content{font-size:.75rem;font-weight:300;line-height:1rem;margin-bottom:.75rem}html:not(.honeywell-dark-theme) .ui.checkbox{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;min-height:1rem;margin:0px .75rem .75rem 0px}html:not(.honeywell-dark-theme) .ui.checkbox .box,html:not(.honeywell-dark-theme) .ui.checkbox label{cursor:auto;line-height:1rem;padding-left:1.5rem}html:not(.honeywell-dark-theme) .ui.checkbox .box:before,html:not(.honeywell-dark-theme) .ui.checkbox label:before{width:1rem;height:1rem;content:"";background:#fff;border-radius:0;border:.0625rem solid #d0d0d0}html:not(.honeywell-dark-theme) .ui.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.checkbox label:after{width:1rem;height:1rem}html:not(.honeywell-dark-theme) .ui.checkbox input ~ label,html:not(.honeywell-dark-theme) .ui.checkbox input ~ label:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;line-height:1rem}html:not(.honeywell-dark-theme) .ui.checkbox .box:hover::before,html:not(.honeywell-dark-theme) .ui.checkbox label:hover::before{background:#fff;border-color:#d0d0d0}html:not(.honeywell-dark-theme) .ui.checkbox input:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.checkbox input:focus ~ label:before{background:#fff;border-color:#d0d0d0}html:not(.honeywell-dark-theme) .ui.checkbox input:focus ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;line-height:1rem}html:not(.honeywell-dark-theme) .ui.checkbox input:checked ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox input:checked ~ label:after{opacity:1;font-family:'Honeywell-Icons' !important;content:"\EA56";color:#fff !important;background:#1274B7;transform:scale(1);padding-top:0;font-size:0.74em}html:not(.honeywell-dark-theme) .ui.checkbox input:checked ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;line-height:1rem}html:not(.honeywell-dark-theme) .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label:before,html:not(.honeywell-dark-theme) .ui.checkbox input:checked:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.checkbox input:checked:focus ~ label:before{background:#fff;border-color:#d0d0d0}html:not(.honeywell-dark-theme) .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label,html:not(.honeywell-dark-theme) .ui.checkbox input:checked:focus ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;line-height:1rem}html:not(.honeywell-dark-theme) .ui.disabled.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.disabled.checkbox label,html:not(.honeywell-dark-theme) .ui.checkbox input[disabled] ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox input[disabled] ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#a0a0a0 !important;opacity:1.0 !important;cursor:not-allowed !important;line-height:1rem !important}html:not(.honeywell-dark-theme) .ui.disabled.checkbox label:hover,html:not(.honeywell-dark-theme) .ui.checkbox input[disabled] ~ label:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#a0a0a0;line-height:1rem}html:not(.honeywell-dark-theme) .ui.disabled.checkbox label:before{background-color:#f7f7f7 !important;border:.0625rem solid #b0b0b0}html:not(.honeywell-dark-theme) .ui.disabled.checkbox label:after{background:#a0a0a0 !important}html:not(.honeywell-dark-theme) .ui.checkbox.indeterminate input:not([type=radio]):indeterminate ~ .box:before,html:not(.honeywell-dark-theme) .ui.checkbox.indeterminate input:not([type=radio]):indeterminate ~ label:before{background:#fff;border-color:#d0d0d0}html:not(.honeywell-dark-theme) .ui.checkbox.indeterminate input:not([type="radio"]) ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox.indeterminate input:not([type="radio"]) ~ label:after{content:"";width:0px;height:0px;border-color:#d0d0d0;border-bottom:1rem solid #1274B7;border-left:1rem solid transparent}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input ~ label{padding-top:.125rem !important;padding-left:2.5rem;color:#303030 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input{height:1rem !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input:focus ~ .label:after,html:not(.honeywell-dark-theme) .ui.toggle.checkbox input ~ label:after{top:.125rem;width:1rem !important;height:1rem !important;background-color:#fff !important;border:1px solid #b0b0b0 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox input:focus ~ .label:before,html:not(.honeywell-dark-theme) .ui.toggle.checkbox input ~ label:before{top:.125rem;width:2rem !important;height:1rem !important;background-color:#e0e0e0 !important;border-radius:2rem;border:1px solid #b0b0b0 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox.checked label{color:#303030 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox.checked input:checked ~ label{color:#303030 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox.checked input:checked:focus ~ .label:before,html:not(.honeywell-dark-theme) .ui.toggle.checkbox.checked input:checked ~ label:before{background-color:#1274B7 !important;border:1px solid #1274B7 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox.checked input:focus ~ .label:after,html:not(.honeywell-dark-theme) .ui.toggle.checkbox.checked input ~ label:after{left:1.062rem !important;border:1px solid #1274B7 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox.disabled input ~ label{color:#a0a0a0 !important}html:not(.honeywell-dark-theme) .ui.toggle.checkbox.disabled input:checked ~ label{color:#a0a0a0 !important}html:not(.honeywell-dark-theme) .ui.color-picker{background:#fff;box-shadow:0 12px 24px 0 rgba(0,0,0,0.1);padding:1rem;position:relative;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;width:11.625rem}html:not(.honeywell-dark-theme) .ui.color-picker .heading{padding-bottom:.5rem}html:not(.honeywell-dark-theme) .ui.color-picker .heading,html:not(.honeywell-dark-theme) .ui.color-picker .color-type-input-label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#606060;font-weight:600;text-transform:uppercase}html:not(.honeywell-dark-theme) .ui.color-picker .slider{height:.75rem;width:100%;position:relative;margin:.625rem 0;background:#fff}html:not(.honeywell-dark-theme) .ui.color-picker .slider:last-child{margin-bottom:.5rem}html:not(.honeywell-dark-theme) .ui.color-picker .circle-pointer{width:1rem;height:1rem;background:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,0.1);border-radius:1rem;position:absolute;top:-.125rem;left:-.5rem;border:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.color-picker .saturation-block{position:relative;width:8rem;padding-top:49%;display:inline-block}html:not(.honeywell-dark-theme) .ui.color-picker .current-selection-block{display:inline-block;margin-left:.5rem;width:1rem;height:4.72rem;position:relative;background:#fff}html:not(.honeywell-dark-theme) .ui.color-picker .current-selection-block .current-selection{width:1rem;height:4.72rem;position:absolute;z-index:5}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle{padding:.5rem 0;display:flex;justify-content:space-between;cursor:pointer}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle .heading{display:inline-block;padding-bottom:0;line-height:1.5rem}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle .toggle-btn{display:inline-block;align-self:center;padding-right:.125rem}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle .toggle-btn .toggle-icon{padding-bottom:.125rem}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle .toggle-icon{color:#303030;transition:color 0.1s linear;cursor:pointer}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle .toggle-icon:hover{color:#404040}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle .toggle-icon:active{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.color-picker .advanced-toggle .toggle-icon.disabled{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap{width:100%}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input,html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .multi-color-type-input{color:#303030;background-color:#fff;padding:.25rem;border:#d0d0d0 .0625rem solid;transition:#d0d0d0 150ms ease-in;outline:none;font-size:.75rem !important;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;width:100%}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input::-webkit-inner-spin-button,html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input::-webkit-outer-spin-button,html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .multi-color-type-input::-webkit-inner-spin-button,html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .multi-color-type-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input:focus,html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .multi-color-type-input:focus{border-color:#1274B7}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .multi-color-type-input{margin-left:.125rem;font-size:.75rem !important;padding-right:.125rem}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .multi-color-type-input:first-child{margin-left:0}html:not(.honeywell-dark-theme) .ui.color-picker .button-row{border-top:#d0d0d0 .0625rem solid;box-sizing:border-box;padding-top:1rem;display:flex;justify-content:space-between;padding-left:-.125rem;padding-right:-.125rem}html:not(.honeywell-dark-theme) .ui.color-picker .button-row .action-btn+.action-btn{margin-left:.5rem}html:not(.honeywell-dark-theme) .ui.color-picker .button-row .action-btn{flex:1 1 auto;text-align:center;padding-left:0;padding-right:0;margin-left:.125rem;margin-right:.125rem}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap{display:flex;justify-content:space-between;padding-bottom:.5rem}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-icon{display:block;margin-bottom:.125rem;color:#303030;transition:color 0.1s linear;cursor:pointer;padding:.125rem}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-icon:hover{color:#404040}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-icon:active{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-icon.disabled{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-btn{display:flex;align-items:flex-end;cursor:pointer}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-btn:hover{opacity:.8}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-btn.prev-btn{margin-right:0px}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-btn.prev-btn{padding-right:.25rem !important}}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-nav-btn.next-btn{margin-left:0px}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .label-row .color-type-input-label:last-child{margin:0}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input-wrap{display:flex;flex-direction:column;justify-content:space-between;width:100%}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input-wrap .label-row{display:flex;flex-grow:1}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input-wrap .label-row .color-type-input-label{position:relative;display:flex;flex-grow:1;padding-left:0 !important;padding-right:0 !important}html:not(.honeywell-dark-theme) .ui.color-picker .color-input-wrap .color-type-input-wrap .label-row .multi-color-type-input{display:flex;position:relative;flex-grow:1;padding-left:.125rem;padding-right:0}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-wrapper{border-bottom:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-item{width:1.5rem;height:1.5rem;padding:.25rem;border:1px solid transparent;cursor:pointer;display:inline-block;margin-right:.125rem}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-item:hover{border-color:#d0d0d0}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-item.active{border-color:#1274B7}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-item .swatch{border:1px solid #d0d0d0;width:100%;height:100%}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-row{margin-bottom:.125rem;height:1.5rem}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-row .swatch-item:last-child{margin-right:0}html:not(.honeywell-dark-theme) .ui.color-picker .swatch-row:last-child{margin-bottom:.25rem}html:not(.honeywell-dark-theme) .ui.date-picker-calendar{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:inline-block;background:#fff;font-size:1.3rem;text-align:center;display:flex}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .day{width:2rem;height:2rem;cursor:pointer;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#606060;border:1px solid transparent;transition:background .1s;display:flex;justify-content:center;align-items:center}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .week>.day:not(.selected):not(.different-month):not(.disabled){font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .week>.day:not(.selected):not(.different-month):not(.disabled):hover{background:#f0f0f0 !important;border:1px solid #f0f0f0}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .week>.day:not(.selected):not(.different-month):not(.disabled).today{border:1px solid #d0d0d0}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .week>.day.selected:not(.different-month){background:#1274B7;color:#fff}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .week>.day.disabled{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#a0a0a0;cursor:default}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .day-names{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#a0a0a0;cursor:default}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .day-names .day{cursor:default}html:not(.honeywell-dark-theme) .ui.date-picker-calendar.highlight-weekends .week .day:not(.selected):first-child,html:not(.honeywell-dark-theme) .ui.date-picker-calendar.highlight-weekends .week .day:not(.selected):last-child,html:not(.honeywell-dark-theme) .ui.date-picker-calendar.highlight-weekends .day-names .day:not(.selected):first-child,html:not(.honeywell-dark-theme) .ui.date-picker-calendar.highlight-weekends .day-names .day:not(.selected):last-child{background:#f7f7f7}html:not(.honeywell-dark-theme) .ui.date-picker-calendar.range-select .week>.day.selected:not(.start):not(.different-month):not(.end){background:#f0f0f0;color:#303030}html:not(.honeywell-dark-theme) .ui.date-picker-calendar .month-wrap+.month-wrap{margin-left:1rem}html:not(.honeywell-dark-theme) .ui.date-picker-input{display:inline-block;position:relative}html:not(.honeywell-dark-theme) .ui.date-picker-input .vertical-center{display:flex;justify-content:center;align-items:center}html:not(.honeywell-dark-theme) .ui.date-picker-input .cal-row{display:flex;width:100%}html:not(.honeywell-dark-theme) .ui.date-picker-input .datetime-input-wrap{display:flex;align-items:flex-end}html:not(.honeywell-dark-theme) .ui.date-picker-input .datetime-input-wrap .picker-input.focused .input-box{border-color:#1274B7}html:not(.honeywell-dark-theme) .ui.date-picker-input .datetime-input-wrap .picker-input.error+.picker-input .input-box{border-color:#BE271C}html:not(.honeywell-dark-theme) .ui.date-picker-input .header{cursor:default;font-size:.75rem;display:block;user-select:none;padding-bottom:.75rem}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .month-display{font-weight:600;align-items:center;justify-content:center}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .month-label{flex:1 1 auto;display:block;height:1rem;line-height:1rem;justify-content:center;text-align:center}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .month-label+.month-label{margin-left:1rem}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .cal-nav-btn{cursor:pointer;display:flex;font-size:1rem;color:#303030;transition:color 0.1s linear;cursor:pointer}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .cal-nav-btn:hover{color:#404040}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .cal-nav-btn:active{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .cal-nav-btn.disabled{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .cal-nav-btn .cal-nav-icon{font-size:1em}html:not(.honeywell-dark-theme) .ui.date-picker-input .header .cal-nav-btn .cal-nav-icon:before{top:0}html:not(.honeywell-dark-theme) .ui.date-picker-input .overlay-position-wrap{z-index:4;position:relative;display:inline-block}html:not(.honeywell-dark-theme) .ui.date-picker-input .overlay-position-wrap .picker-input.datetime-time .input-wrap .input-box{border-left:none}html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay{position:absolute;box-shadow:0 4px 8px 0 rgba(0,0,0,0.1);z-index:500;bottom:calc(1.25rem + .25rem);transform:translateY(calc(100% + .25rem));display:flex}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay{transform:translateY(100%);box-shadow:none}}html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay.unreserved{bottom:0}html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay .calendar-overlay-wrap{display:flex;flex-direction:column;padding:1rem;background:#fff}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay .calendar-overlay-wrap{box-shadow:0 4px 8px 0 rgba(0,0,0,0.1);border:#d0d0d0 .0625rem solid;border-right:none}}html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay .time-wrap{border-left:#d0d0d0 .0625rem solid;max-height:376px;width:5rem;font-size:.75rem;display:flex;flex:1 0 auto;flex-direction:column;background:#fff;overflow-y:scroll;max-height:294px;width:6.75rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay .time-wrap{box-shadow:0 4px 8px 0 rgba(0,0,0,0.1);border:#d0d0d0 .0625rem solid;font-size:.5rem;height:294px;font-size:.75rem !important}}html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay .time-wrap .time-option{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;padding:.75rem;width:100%}html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay .time-wrap .time-option:hover{background:#f0f0f0}html:not(.honeywell-dark-theme) .ui.date-picker-input .calendar-overlay .time-wrap .time-option.selected{background-color:#1274B7;color:#fff}html:not(.honeywell-dark-theme) .ui.date-picker-input .date-picker-footer{padding-top:1rem;display:flex;justify-content:center;align-items:center}html:not(.honeywell-dark-theme) .ui.date-picker-input .today-btn{color:#1274B7;font-size:.875rem;font-weight:600;cursor:pointer}html:not(.honeywell-dark-theme) .ui.date-picker-input.is-range .date-picker-footer{justify-content:space-between}html:not(.honeywell-dark-theme) .ui.date-picker-input.is-range .picker-input,html:not(.honeywell-dark-theme) .ui.date-picker-input.is-range .picker-input .input-box{min-width:300px}html:not(.honeywell-dark-theme) .ui.date-picker-input.compact .date-picker-footer{justify-content:end}html:not(.honeywell-dark-theme) .ui.date-picker-input.fluid,html:not(.honeywell-dark-theme) .ui.date-picker-input.fluid .overlay-position-wrap{display:block}html:not(.honeywell-dark-theme) .ui.date-picker-input.fluid .datetime-date,html:not(.honeywell-dark-theme) .ui.date-picker-input.fluid .overlay-position-wrap .datetime-date{width:100%}html:not(.honeywell-dark-theme) .ui.date-picker-input.fluid .datetime-time,html:not(.honeywell-dark-theme) .ui.date-picker-input.fluid .overlay-position-wrap .datetime-time{width:100%}html:not(.honeywell-dark-theme) .ui.date-picker-input.open{z-index:30}html:not(.honeywell-dark-theme) .ui.date-picker-input.open-up .calendar-overlay{transform:translateY(0%);bottom:100%}html:not(.honeywell-dark-theme) .ui.divider{color:#303030}html:not(.honeywell-dark-theme) .ui.horizontal.divider:before,html:not(.honeywell-dark-theme) .ui.horizontal.divider:after{background-size:auto 1px;background-image:linear-gradient(#d0d0d0, #d0d0d0)}html:not(.honeywell-dark-theme) .ui.horizontal.divider{white-space:normal}html:not(.honeywell-dark-theme) .ui.vertical.divider{position:relative;line-height:1rem;text-align:center;height:50%;transform:none;margin:1rem;left:auto}html:not(.honeywell-dark-theme) .ui.vertical.divider:after,html:not(.honeywell-dark-theme) .ui.vertical.divider:before{border-left:1px solid #d0d0d0;height:calc(100% - 0.3rem)}html:not(.honeywell-dark-theme) .ui.vertical.divider:after{bottom:-100%}html:not(.honeywell-dark-theme) .nochild-divider{position:relative;display:flex;align-items:stretch;flex-direction:row;margin-left:1rem;margin-right:1rem;height:inherit;width:1px;top:0;bottom:0;background:#d0d0d0}html:not(.honeywell-dark-theme) .nochild-divider-fitted{position:relative;display:flex;align-items:stretch;flex-direction:row;margin-left:0.1rem;margin-right:0.1rem;height:inherit;width:1px;top:0;bottom:0;background:#d0d0d0}html:not(.honeywell-dark-theme) .nochild-divider-section{position:relative;display:flex;align-items:stretch;flex-direction:row;margin-left:2rem;margin-right:2rem;height:inherit;width:1px;top:0;bottom:0;background:#d0d0d0}html:not(.honeywell-dark-theme) .ui.divider:not(.vertical):not(.horizontal){border-top:1px solid #d0d0d0;border-bottom:none}html:not(.honeywell-dark-theme) .ui.file-drop{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;position:relative}html:not(.honeywell-dark-theme) .ui.file-drop .drop-zone{border:.0625rem dashed #d0d0d0;transition:border-color 150ms ease-in;padding:1rem;position:relative;display:flex;justify-content:center;align-items:center;min-height:316px}html:not(.honeywell-dark-theme) .ui.file-drop .success-icon{font-size:1.5rem;margin-top:.75rem}html:not(.honeywell-dark-theme) .ui.file-drop .drop-display-content{width:100%;text-align:center}html:not(.honeywell-dark-theme) .ui.file-drop .drop-zone-msg{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#606060;margin-bottom:.75rem}html:not(.honeywell-dark-theme) .ui.file-drop.populated .drop-zone{border-color:#1274B7}html:not(.honeywell-dark-theme) .ui.file-drop .upload-button{display:inline-block}html:not(.honeywell-dark-theme) .ui.file-drop.error .drop-zone{border-color:#BE271C}html:not(.honeywell-dark-theme) .ui.file-drop .error-msg{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#BE271C;font-weight:600;margin-bottom:.75rem}html:not(.honeywell-dark-theme) .ui.file-drop.on-drag .drop-zone{background-color:#10659F;border-color:#1274B7}html:not(.honeywell-dark-theme) .ui.file-drop.on-drag .upload-button{border-color:#fff !important;color:#fff !important}html:not(.honeywell-dark-theme) .ui.file-drop.on-drag .drop-zone-placeholder,html:not(.honeywell-dark-theme) .ui.file-drop.on-drag .drop-zone-msg,html:not(.honeywell-dark-theme) .ui.file-drop.on-drag .drop-zone-success-msg{color:#fff !important}html:not(.honeywell-dark-theme) .page-footer.ui.menu{margin-top:0;padding:1rem;border-radius:0;box-shadow:none;border:none;background-color:#fff;display:flex;justify-content:space-between;flex-wrap:wrap;border-top:#d0d0d0 .0625rem solid !important}html:not(.honeywell-dark-theme) .page-footer.ui.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#303030;font-weight:400;padding:0 .25rem;color:#303030}html:not(.honeywell-dark-theme) .page-footer.ui.menu .item::before{width:0px}html:not(.honeywell-dark-theme) .page-footer.ui.menu .item:not(:last-child){border-right:solid 1px #e0e0e0}html:not(.honeywell-dark-theme) .page-footer.ui.menu .link{font-weight:600}html:not(.honeywell-dark-theme) .page-footer.ui.menu .link:hover{background:#fff;color:#303030}html:not(.honeywell-dark-theme) .page-footer.ui.menu:after{display:none}html:not(.honeywell-dark-theme) .page-footer.ui.menu:not(.vertical)>.menu{flex-wrap:wrap}html:not(.honeywell-dark-theme) .page-footer.ui.menu:not(.vertical) .right.item{margin-left:0px !important}@media screen and (max-width: 768px){html:not(.honeywell-dark-theme) .page-footer.ui.menu{justify-content:center !important}html:not(.honeywell-dark-theme) .page-footer.ui.menu:not(.vertical)>.menu{justify-content:center !important}}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper{background-color:#fff;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;position:relative}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .horizontal{display:block;font-size:1em}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .list.bulleted,html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .list.ordered{margin-left:0}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item{display:flex;flex-wrap:nowrap;width:100%;height:100%;padding-top:1rem;padding-bottom:1rem;color:#303030}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .column-flex{display:flex;justify-content:center;flex-direction:column}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item div.item-image{margin-left:1rem;height:2.5rem;width:2.5rem;min-height:2.5rem;min-width:2.5rem;background-position:center;background-size:contain}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .content{margin-left:1rem;flex-grow:1}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .content .description{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#606060;margin-top:.125rem}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .time-container{text-align:right;margin-left:0}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .action-icon,html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .time-stamp{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#606060;margin-top:auto;margin-bottom:auto;margin-left:1rem;margin-right:1rem;text-align:right;white-space:nowrap;display:inline-block}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .action-icon{font-size:1rem;cursor:pointer}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .descriptive-icon{margin-left:1rem;font-size:2rem;margin-right:0;cursor:default}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper .item .header{color:#303030 !important}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper.no-content .time-container{display:flex;justify-content:center;flex-direction:column}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper.onclick{cursor:pointer}html:not(.honeywell-dark-theme) .scuf-listitem-wrapper+.scuf-listitem-wrapper:after{box-shadow:inset 0px -1px 0px 0px #d0d0d0;content:"";position:absolute;height:1px;left:1rem;right:1rem;background:#a0a0a0;top:-1px}html:not(.honeywell-dark-theme) .interactive+.interactive:after{left:0;right:0}html:not(.honeywell-dark-theme) .scuf-list-wrapper .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;color:#303030}html:not(.honeywell-dark-theme) [class~="scuf-grid"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]{box-sizing:border-box;display:flex;flex-flow:row wrap;margin:0 -.5rem}html:not(.honeywell-dark-theme) [class~="col"],html:not(.honeywell-dark-theme) [class*="col-"],html:not(.honeywell-dark-theme) [class*="col_"]{box-sizing:border-box;padding:0 .5rem 1rem;max-width:100%}html:not(.honeywell-dark-theme) [class~="col"],html:not(.honeywell-dark-theme) [class*="col_"]{flex:1 1}html:not(.honeywell-dark-theme) [class*="col-"]{flex:none}html:not(.honeywell-dark-theme) [class~="scuf-grid"][class~="col"],html:not(.honeywell-dark-theme) [class~="scuf-grid"][class*="col-"],html:not(.honeywell-dark-theme) [class~="scuf-grid"][class*="col_"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="col_"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class*="col_"]{margin:0;padding:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]{margin:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]>[class*="col-"]{padding:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noWrap"]{flex-wrap:nowrap}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-center"]{justify-content:center}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-right"]{justify-content:flex-end;align-self:flex-end;margin-left:auto}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-top"]{align-items:flex-start}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-middle"]{align-items:center}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-bottom"]{align-items:flex-end}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-reverse"]{flex-direction:row-reverse}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column"]{flex-direction:column}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column"]>[class*="col-"]{flex-basis:auto}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column-reverse"]{flex-direction:column-reverse}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-spaceBetween"]{justify-content:space-between}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-spaceAround"]{justify-content:space-around}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]{align-self:stretch}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"]>*,html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"]>*,html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]>*{height:100%}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class*="col_"]{padding-bottom:0}html:not(.honeywell-dark-theme) [class*="col-"][class*="-top"]{align-self:flex-start}html:not(.honeywell-dark-theme) [class*="col-"][class*="-middle"]{align-self:center}html:not(.honeywell-dark-theme) [class*="col-"][class*="-bottom"]{align-self:flex-end}html:not(.honeywell-dark-theme) [class*="col-"][class*="-first"]{order:-1}html:not(.honeywell-dark-theme) [class*="col-"][class*="-last"]{order:1}html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class*="_md-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_md-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_md-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_md-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_md-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_md-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_md-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_md-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_md-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_md-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_md-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_md-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-11"]{margin-right:91.66667%}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_lg-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_lg-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_lg-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_lg-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_lg-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_lg-last"]{order:1}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_md-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_md-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_md-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_md-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_md-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_md-last"]{order:1}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_sm-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_sm-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_sm-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_sm-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_sm-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_sm-last"]{order:1}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_xs-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_xs-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_xs-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_xs-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_xs-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_xs-last"]{order:1}}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class*="lg-hidden"]{display:none}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class*="md-hidden"]{display:none}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class*="sm-hidden"]{display:none}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class*="xs-hidden"]{display:none}}html:not(.honeywell-dark-theme) .ui.scuf-grid{margin:0 1rem}html:not(.honeywell-dark-theme) .ui.scuf-grid .grid-row,html:not(.honeywell-dark-theme) .ui.scuf-grid .grid-col-12{padding-left:0 !important;padding-right:0 !important}html:not(.honeywell-dark-theme) .ui.scuf-grid .media-xs{margin-left:.25rem;margin-right:.25rem}html:not(.honeywell-dark-theme) [class~="scuf-grid"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]{box-sizing:border-box;display:flex;flex-flow:row wrap;margin:0 -.5rem}html:not(.honeywell-dark-theme) [class~="col"],html:not(.honeywell-dark-theme) [class*="col-"],html:not(.honeywell-dark-theme) [class*="col_"]{box-sizing:border-box;padding:0 .5rem 1rem;max-width:100%}html:not(.honeywell-dark-theme) [class~="col"],html:not(.honeywell-dark-theme) [class*="col_"]{flex:1 1}html:not(.honeywell-dark-theme) [class*="col-"]{flex:none}html:not(.honeywell-dark-theme) [class~="scuf-grid"][class~="col"],html:not(.honeywell-dark-theme) [class~="scuf-grid"][class*="col-"],html:not(.honeywell-dark-theme) [class~="scuf-grid"][class*="col_"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="col_"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class*="col_"]{margin:0;padding:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]{margin:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]>[class*="col-"]{padding:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noWrap"]{flex-wrap:nowrap}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-center"]{justify-content:center}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-right"]{justify-content:flex-end;align-self:flex-end;margin-left:auto}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-top"]{align-items:flex-start}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-middle"]{align-items:center}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-bottom"]{align-items:flex-end}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-reverse"]{flex-direction:row-reverse}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column"]{flex-direction:column}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column"]>[class*="col-"]{flex-basis:auto}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column-reverse"]{flex-direction:column-reverse}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-spaceBetween"]{justify-content:space-between}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-spaceAround"]{justify-content:space-around}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]{align-self:stretch}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"]>*,html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"]>*,html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]>*{height:100%}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class*="col_"]{padding-bottom:0}html:not(.honeywell-dark-theme) [class*="col-"][class*="-top"]{align-self:flex-start}html:not(.honeywell-dark-theme) [class*="col-"][class*="-middle"]{align-self:center}html:not(.honeywell-dark-theme) [class*="col-"][class*="-bottom"]{align-self:flex-end}html:not(.honeywell-dark-theme) [class*="col-"][class*="-first"]{order:-1}html:not(.honeywell-dark-theme) [class*="col-"][class*="-last"]{order:1}html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class*="_md-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_md-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_md-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_md-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_md-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_md-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_md-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_md-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_md-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_md-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_md-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_md-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-11"]{margin-right:91.66667%}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_lg-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_lg-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_lg-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_lg-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_lg-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_lg-last"]{order:1}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_md-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_md-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_md-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_md-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_md-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_md-last"]{order:1}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_sm-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_sm-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_sm-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_sm-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_sm-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_sm-last"]{order:1}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_xs-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_xs-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_xs-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_xs-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_xs-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_xs-last"]{order:1}}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class*="lg-hidden"]{display:none}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class*="md-hidden"]{display:none}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class*="sm-hidden"]{display:none}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class*="xs-hidden"]{display:none}}html:not(.honeywell-dark-theme) [class~="scuf-grid"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]{box-sizing:border-box;display:flex;flex-flow:row wrap;margin:0 -.5rem}html:not(.honeywell-dark-theme) [class~="col"],html:not(.honeywell-dark-theme) [class*="col-"],html:not(.honeywell-dark-theme) [class*="col_"]{box-sizing:border-box;padding:0 .5rem 1rem;max-width:100%}html:not(.honeywell-dark-theme) [class~="col"],html:not(.honeywell-dark-theme) [class*="col_"]{flex:1 1}html:not(.honeywell-dark-theme) [class*="col-"]{flex:none}html:not(.honeywell-dark-theme) [class~="scuf-grid"][class~="col"],html:not(.honeywell-dark-theme) [class~="scuf-grid"][class*="col-"],html:not(.honeywell-dark-theme) [class~="scuf-grid"][class*="col_"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="col_"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"][class*="col_"]{margin:0;padding:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]{margin:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noGutter"]>[class*="col-"]{padding:0}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noWrap"]{flex-wrap:nowrap}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-center"]{justify-content:center}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-right"]{justify-content:flex-end;align-self:flex-end;margin-left:auto}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-top"]{align-items:flex-start}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-middle"]{align-items:center}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-bottom"]{align-items:flex-end}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-reverse"]{flex-direction:row-reverse}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column"]{flex-direction:column}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column"]>[class*="col-"]{flex-basis:auto}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-column-reverse"]{flex-direction:column-reverse}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-spaceBetween"]{justify-content:space-between}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-spaceAround"]{justify-content:space-around}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]{align-self:stretch}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class~="col"]>*,html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col-"]>*,html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-equalHeight"]>[class*="col_"]>*{height:100%}html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"][class*="-noBottom"]>[class*="col_"]{padding-bottom:0}html:not(.honeywell-dark-theme) [class*="col-"][class*="-top"]{align-self:flex-start}html:not(.honeywell-dark-theme) [class*="col-"][class*="-middle"]{align-self:center}html:not(.honeywell-dark-theme) [class*="col-"][class*="-bottom"]{align-self:flex-end}html:not(.honeywell-dark-theme) [class*="col-"][class*="-first"]{order:-1}html:not(.honeywell-dark-theme) [class*="col-"][class*="-last"]{order:1}html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="scuf-grid-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_lg-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class*="_md-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_md-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_md-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_md-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_md-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_md-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_md-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_md-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_md-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_md-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_md-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_md-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_md-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_md-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_sm-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-1"]>[class*="col_"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-2"]>[class*="col_"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-3"]>[class*="col_"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-4"]>[class*="col_"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-5"]>[class*="col_"]{flex-basis:20%;max-width:20%}html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-6"]>[class*="col_"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-7"]>[class*="col_"]{flex-basis:14.28571%;max-width:14.28571%}html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-8"]>[class*="col_"]{flex-basis:12.5%;max-width:12.5%}html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-9"]>[class*="col_"]{flex-basis:11.11111%;max-width:11.11111%}html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-10"]>[class*="col_"]{flex-basis:10%;max-width:10%}html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-11"]>[class*="col_"]{flex-basis:9.09091%;max-width:9.09091%}html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class~="col"],html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class*="col-"],html:not(.honeywell-dark-theme) [class*="_xs-12"]>[class*="col_"]{flex-basis:8.33333%;max-width:8.33333%}}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="col-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="col-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="col-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="off-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="off-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="off-11"]{margin-right:91.66667%}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_lg-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_lg-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_lg-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_lg-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_lg-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_lg-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_lg-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_lg-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_lg-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_lg-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_lg-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_lg-last"]{order:1}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_md-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_md-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_md-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_md-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_md-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_md-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_md-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_md-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_md-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_md-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_md-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_md-last"]{order:1}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_sm-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_sm-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_sm-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_sm-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_sm-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_sm-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_sm-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_sm-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_sm-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_sm-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_sm-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_sm-last"]{order:1}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-1"]{flex-basis:8.33333%;max-width:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-2"]{flex-basis:16.66667%;max-width:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-3"]{flex-basis:25%;max-width:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-4"]{flex-basis:33.33333%;max-width:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-5"]{flex-basis:41.66667%;max-width:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-6"]{flex-basis:50%;max-width:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-7"]{flex-basis:58.33333%;max-width:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-8"]{flex-basis:66.66667%;max-width:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-9"]{flex-basis:75%;max-width:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-10"]{flex-basis:83.33333%;max-width:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-11"]{flex-basis:91.66667%;max-width:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[class*="_xs-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[class*="_xs-12"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[class*="_xs-12"]{flex-basis:100%;max-width:100%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-0"]{margin-left:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-1"]{margin-left:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-2"]{margin-left:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-3"]{margin-left:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-4"]{margin-left:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-5"]{margin-left:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-6"]{margin-left:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-7"]{margin-left:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-8"]{margin-left:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-9"]{margin-left:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-10"]{margin-left:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-left*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-left*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-left*="_xs-11"]{margin-left:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-0"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-0"]{margin-right:0}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-1"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-1"]{margin-right:8.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-2"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-2"]{margin-right:16.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-3"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-3"]{margin-right:25%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-4"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-4"]{margin-right:33.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-5"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-5"]{margin-right:41.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-6"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-6"]{margin-right:50%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-7"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-7"]{margin-right:58.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-8"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-8"]{margin-right:66.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-9"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-9"]{margin-right:75%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-10"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-10"]{margin-right:83.33333%}html:not(.honeywell-dark-theme) [class~="scuf-grid"]>[data-push-right*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"]>[data-push-right*="_xs-11"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"]>[data-push-right*="_xs-11"]{margin-right:91.66667%}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_xs-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_xs-first"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_xs-first"]{order:-1}html:not(.honeywell-dark-theme) [class~="scuf-grid"] [class*="_xs-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid-"] [class*="_xs-last"],html:not(.honeywell-dark-theme) [class*="scuf-grid_"] [class*="_xs-last"]{order:1}}@media (max-width: 80em){html:not(.honeywell-dark-theme) [class*="lg-hidden"]{display:none}}@media (max-width: 64em){html:not(.honeywell-dark-theme) [class*="md-hidden"]{display:none}}@media (max-width: 48em){html:not(.honeywell-dark-theme) [class*="sm-hidden"]{display:none}}@media (max-width: 36em){html:not(.honeywell-dark-theme) [class*="xs-hidden"]{display:none}}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher{padding:.75rem .5rem !important;box-sizing:border-box}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher>.trigger-container>.responsive-trigger-label{display:none}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher i.icon:not(.h-icon){display:none}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu::-webkit-scrollbar{display:none}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu{background:#fff !important;margin-top:.0625rem;border-radius:0 !important;width:14rem;right:0px !important;border:0px;display:flex !important;max-height:648px;flex-wrap:wrap;flex-direction:row !important;overflow-y:scroll;-ms-overflow-style:none;overflow:-moz-scrollbars-none}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item{width:7rem;font-weight:400 !important;padding:.75rem 1.5rem !important;color:#303030 !important;height:7rem;justify-content:center;display:flex;flex-direction:column;white-space:initial}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item .h-icon{margin:0px !important;padding:4px;font-size:1.5rem !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item .app-name{margin-top:.5rem;min-height:2.25rem;font-size:.75rem;line-height:.75rem;overflow:hidden;text-align:center;display:-webkit-box;display:-moz-box;display:-ms-box;line-clamp:2;-ms-line-clamp:2;-moz-line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item .app-name{overflow:visible;white-space:pre-wrap;width:100%}}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item:hover,html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item.active{background:#e0e0e0 !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu>.item.active .app-name{font-weight:700}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .menu-footer{display:flex;font-size:.75rem;flex-basis:100%;align-items:center;padding:.5rem 1rem;font-weight:400 !important;justify-content:space-between;cursor:pointer}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .menu-footer .h-icon{margin:0px !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .menu-footer .h-icon:before{font-size:.75rem !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.app-launcher .menu .item-image{width:2rem;height:2rem;line-height:2rem;text-align:center;font-size:.875rem;font-weight:400;background-position:center;background-size:cover;background-repeat:no-repeat;text-transform:uppercase}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu .app-launcher>.trigger-container{display:flex;align-items:center}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu .app-launcher>.trigger-container i.trigger-icon{width:100%;padding-left:.25rem !important;padding-right:.25rem !important}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu .app-launcher>.trigger-container>.responsive-trigger-label{display:flex !important;padding-left:1rem}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu>.item.app-launcher.dropdown:hover>.menu.app-launcher-menu{height:auto;left:-14rem !important;right:9.52rem !important;right:10.64rem !important}html:not(.honeywell-dark-theme) .ui.page-header{position:relative;width:100%;background-color:#fff;border-bottom:#d0d0d0 .0625rem solid !important;z-index:900}html:not(.honeywell-dark-theme) .ui.page-header .width-tester{position:absolute;top:0;left:0;right:0;bottom:0}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu{border-radius:0;border:none;box-shadow:none;margin-bottom:0;height:inherit}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.logo-item{position:relative;padding-left:1rem}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.logo-item:hover{background:none !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .main-logo{height:1.5rem;width:7.5rem;display:inline-block;padding-right:.75rem;margin-right:.75rem;background:url(/static/media/honeywell-logo-light-theme.50c094d9.svg);background-repeat:no-repeat;background-size:contain;background-origin:content-box;border-right:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .main-logo.honeywell-logo{background-position:0 4px}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .forge-logo{font-weight:900;font-size:1.125rem;padding-right:.75rem;margin-right:.75rem;border-right:#d0d0d0 .0625rem solid;position:relative;top:1px}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .logo-text{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;color:#303030;font-weight:400;line-height:1.5rem;font-size:1rem;position:relative}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .logo-link,html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .logo-text-link{position:relative;cursor:pointer;height:1.5rem}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;color:#303030;font-size:.875rem;line-height:1.375rem;font-weight:400;border:none;position:relative;border-radius:0;padding:0;padding:.75rem .5rem;min-width:2.5rem}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item:not(.logo-item){cursor:pointer}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item:not(.search-item){display:flex;justify-content:center;align-content:center}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item:before{display:none}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item:not(.logo-item):not(.menu-btn):hover{background:#e0e0e0}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.active{font-weight:700;background:#e0e0e0}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item .menu-btn{line-height:1em}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item .ui.input.expandable-input{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu>.item{text-align:center}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.menu-btn-item:hover,html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.logo-item:hover{background:none !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .full-header-menu{position:absolute;visibility:hidden;z-index:1}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .page-header-menu{z-index:2}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .menu-btn-item{padding:.75rem 1rem}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .menu-btn-item .menu-btn{padding:0}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .menu-btn-item .h-icon{padding:0px 0px 0px 0px}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .menu-btn-item:hover{background:none !important}html:not(.honeywell-dark-theme) .ui.page-header.has-menu .logo-item{padding-left:1rem}html:not(.honeywell-dark-theme) .ui.page-header.has-menu .logo-item:hover{background:none !important}html:not(.honeywell-dark-theme) .ui.page-header.has-menu .item.logo-item{padding-left:0 !important}html:not(.honeywell-dark-theme) .ui.page-header.has-menu .item.logo-item:hover{background:none !important}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu .menu-btn-item{padding-top:.5rem !important;padding-bottom:.5rem !important;min-width:auto}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu .logo-item{margin:auto;padding-top:0 !important;padding-bottom:0 !important}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu .logo-item .logo-text{max-width:174px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:.875rem;line-height:1.5rem}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu .main-logo,html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu .forge-logo{display:none}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu .item,html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu .menu-btn-item{padding:.75rem .75rem}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .page-header-menu.ui.menu:not(.vertical) .right.menu{margin-left:0 !important}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed:not(.has-menu) .logo-text{position:relative;left:30px}html:not(.honeywell-dark-theme) .ui.page-header{border-bottom:#d0d0d0 .0625rem solid !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .menu.notification-center-dropdown>.notification-center-item{border-bottom:#d0d0d0 .0625rem solid !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .menu.notification-center-dropdown>*{white-space:normal}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item{padding:0 !important;margin:0 !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification{background:#fff}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification:hover{background-color:#e0e0e0 !important;cursor:pointer}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification,html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item .notification-center-item>.ui.notification{margin:0 !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification div.message,html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item .notification-center-item>.ui.notification div.message{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item>.ui.notification .datetime,html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .ui.dropdown.notification-center .item.notification-center-item .notification-center-item>.ui.notification .datetime{color:#303030}html:not(.honeywell-dark-theme) .ui.page-header .ui.notification-center.dropdown{padding:0 .25rem !important}html:not(.honeywell-dark-theme) .ui.page-header .ui.notification-center.dropdown>.item:first-child{padding:0 !important;display:flex;justify-content:center}html:not(.honeywell-dark-theme) .ui.page-header .ui.notification-center.dropdown .trigger-container .responsive-trigger-label{display:none}html:not(.honeywell-dark-theme) .ui.page-header .ui.notification-center.dropdown .trigger-container .trigger-icon{background:transparent}html:not(.honeywell-dark-theme) .ui.page-header .ui.notification-center.dropdown>.item:first-child{padding-top:0 !important;padding-bottom:0 !important}html:not(.honeywell-dark-theme) .ui.page-header .notification-center-dropdown.menu{min-width:16.8rem;width:16.8rem;background:#fff}html:not(.honeywell-dark-theme) .ui.page-header .notification-center-dropdown.menu .ui.notification{border:none;margin:none !important}html:not(.honeywell-dark-theme) .ui.page-header .notification-center-dropdown.menu .see-all-container{padding:.75rem 1rem;color:#303030;text-align:right}html:not(.honeywell-dark-theme) .ui.page-header .notification-center-dropdown.menu .see-all-container>.see-all{display:inline;cursor:pointer;font-weight:500}html:not(.honeywell-dark-theme) .ui.page-header.is-collapsed .ui.notification-center.dropdown>.item:first-child,html:not(.honeywell-dark-theme) .ui.page-header .is-compressed .ui.notification-center.dropdown>.item:first-child{justify-content:flex-start}html:not(.honeywell-dark-theme) .ui.page-header.is-collapsed .ui.notification-center.dropdown>.item:first-child:hover,html:not(.honeywell-dark-theme) .ui.page-header .is-compressed .ui.notification-center.dropdown>.item:first-child:hover{background:none}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu .notification-center .trigger-container{display:flex}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu .notification-center .trigger-container .trigger-icon{width:0;padding:0 !important}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu .notification-center .trigger-container .responsive-trigger-label{padding-left:.125rem;display:flex;align-items:center}html:not(.honeywell-dark-theme) .ui.simple.dropdown:hover>.menu>.item:hover>.menu.notification-center-dropdown{width:auto;height:auto;left:-16.8rem !important;right:16.8rem !important}html:not(.honeywell-dark-theme) .ui.page-header .profile-icon{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;font-weight:700;display:flex;justify-content:center;align-items:center;width:2rem;height:2rem;border:#d0d0d0 .0625rem solid;border-radius:1.5rem;background:#fff center/cover no-repeat}html:not(.honeywell-dark-theme) .ui.page-header .profile-icon.no-border{border:none}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop{text-align:left !important;display:flex;opacity:1 !important}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop .profile-icon{display:inline-block}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop .name-info{justify-content:center;padding-left:1rem}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .item.user-profile-drop .name-info .role{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#a0a0a0}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu{min-width:4.75rem !important;padding-left:.75rem;padding-right:.75rem;color:#303030}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu i.icon:not(.button-icon){display:none}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu i.icon.button-icon{padding:0 14px;margin:0}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .trigger-icon{width:3.75rem;position:relative}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu:hover{background:#e0e0e0}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu>.active{background:#e0e0e0}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .menu{background:#fff;color:#fff !important;border-radius:0 0 0 0 !important}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .menu .text{color:#303030}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .menu>.item{padding:.75rem 1.5rem !important;color:#303030 !important}html:not(.honeywell-dark-theme) .page-header-menu.ui.menu .ui.dropdown.icon-menu .drop-badged-text{padding-left:1rem;display:inline-block}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .ui.dropdown.icon-menu{padding-left:.75rem;padding-right:.75rem;min-width:auto !important}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .ui.dropdown.icon-menu i.icon.button-icon{padding:0 13px;margin:0}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .ui.dropdown.icon-menu .trigger-icon{width:auto;position:relative}html:not(.honeywell-dark-theme) .ui.page-header.is-compressed .ui.dropdown.icon-menu .trigger-icon .profile-icon{width:1.5rem;height:1.5rem;line-height:1.5rem;padding-top:0;padding-bottom:0}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item{cursor:pointer;overflow-x:hidden;position:relative;transition:width 300ms ease-in;padding-top:.75rem;padding-bottom:.75rem;width:246px;background:none !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-icon{padding:0px 1px 0px .125rem;position:absolute;z-index:2;margin:0;color:#303030}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input{transition:opacity 150ms ease-in, border-color 150ms ease-in;background:#fff;border:#d0d0d0 .0625rem solid;position:relative;z-index:1;opacity:1;border-radius:0;color:#303030;outline:none}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus{border-color:#1274B7;outline:none}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item .expandable-input:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item:hover{background:none !important;color:#303030}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item:not(.open){width:2.5rem;margin-right:.5rem}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item:not(.open) .expandable-icon{position:relative}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item:not(.open) .expandable-input{opacity:0;width:0;cursor:pointer}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item.open .expandable-icon{color:#303030;padding-left:.25rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item.open .expandable-icon{top:.8125rem}}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .item.search-item.open .expandable-input{width:100%}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .user-profile-menu{padding:.25rem .5rem !important;box-sizing:border-box}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .user-profile-menu i.icon{display:none !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu{background:#fff;color:#fff !important;font-weight:400 !important;border-radius:0 !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu .text{color:#fff}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu>.item{background:#fff !important;font-weight:400 !important;padding:.75rem 1.5rem !important;color:#303030 !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu>.item:hover{background:#f0f0f0 !important}html:not(.honeywell-dark-theme) .ui.page-header .page-header-menu.ui.menu .user-profile-menu .menu>.item.active{font-weight:700 !important}html:not(.honeywell-dark-theme) .h-icon:not(.common){font-size:1rem;display:inline-block;vertical-align:middle;opacity:1;margin:none;speak:none;font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html:not(.honeywell-dark-theme) .h-icon:not(.common).scuf-small{font-size:1rem !important}html:not(.honeywell-dark-theme) .h-icon:not(.common).scuf-medium{font-size:1.5rem !important}html:not(.honeywell-dark-theme) .h-icon:not(.common).scuf-large{font-size:2rem !important}html:not(.honeywell-dark-theme) .h-icon:not(.common).scuf-xlarge{font-size:4rem !important}html:not(.honeywell-dark-theme) .h-icon:not(.common).vertically-flipped{transform:scale(1, -1)}html:not(.honeywell-dark-theme) .h-icon:not(.common).horizontally-flipped{transform:scale(-1, 1)}html:not(.honeywell-dark-theme) .h-icon:not(.common).fitted{width:auto;margin:0em}html:not(.honeywell-dark-theme) .h-icon:not(.common).fitted::before{position:relative;top:0em}html:not(.honeywell-dark-theme) .h-icon:not(.common).loading{animation:icon-loading 2s linear infinite}html:not(.honeywell-dark-theme) .h-icon:not(.common).loading::before{position:relative;top:0em}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) .ui.single-input{position:relative;display:inline-block;vertical-align:top;z-index:1}html:not(.honeywell-dark-theme) .ui.single-input .input-box{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;background:#fff;border:#d0d0d0 .0625rem solid;border-radius:0;color:#303030;height:2.375rem;transition:border-color 150ms ease-in;box-sizing:border-box;padding:.6875rem .4375rem;z-index:1;position:relative;background:transparent;width:12rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.single-input .input-box{line-height:.875rem !important}}html:not(.honeywell-dark-theme) .ui.single-input .input-box:focus{border-color:#1274B7;outline:none}html:not(.honeywell-dark-theme) .ui.single-input .input-box::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.single-input .input-box::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.single-input .input-box:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic;line-height:.875rem !important}html:not(.honeywell-dark-theme) .ui.single-input .input-box:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.single-input .input-box:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.single-input .input-box:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.single-input .input-wrap{position:relative;display:inline-flex;background:#fff}html:not(.honeywell-dark-theme) .ui.single-input.fluid{display:block}html:not(.honeywell-dark-theme) .ui.single-input.fluid .input-box,html:not(.honeywell-dark-theme) .ui.single-input.fluid .input-wrap{width:100%}html:not(.honeywell-dark-theme) .ui.single-input.error .input-box{border-color:#BE271C;background-color:#fff}html:not(.honeywell-dark-theme) .ui.single-input.disabled{cursor:not-allowed !important}html:not(.honeywell-dark-theme) .ui.single-input.disabled .input-box{z-index:2;background:#f7f7f7}html:not(.honeywell-dark-theme) .ui.single-input.disabled .input-wrap{cursor:not-allowed !important}html:not(.honeywell-dark-theme) .ui.single-input.disabled .input-wrap .input-icon{z-index:2}html:not(.honeywell-dark-theme) .ui.single-input.disabled .input-wrap input{cursor:not-allowed !important;background:#f7f7f7;color:silver !important}html:not(.honeywell-dark-theme) .ui.single-input.disabled .input-icon{cursor:not-allowed}html:not(.honeywell-dark-theme) .ui.single-input .input-icon{position:absolute;z-index:1;color:#b0b0b0;top:50%;transform:translateY(-50%);cursor:pointer}html:not(.honeywell-dark-theme) .ui.single-input.has-icon.align-left .input-icon{left:.75rem}html:not(.honeywell-dark-theme) .ui.single-input.has-icon.align-left .input-box{padding-left:2.5rem}html:not(.honeywell-dark-theme) .ui.single-input.has-icon.align-right .input-icon{right:.75rem}html:not(.honeywell-dark-theme) .ui.single-input.has-icon.align-right .input-box{padding-right:2.5rem}html:not(.honeywell-dark-theme) .ui.single-input .search-icon{display:flex;position:relative;align-items:center;display:inline-flex;justify-content:center;width:2.5rem;height:2.375rem;color:#fff;transition:background-color 0.3s ease;background:#d0d0d0}html:not(.honeywell-dark-theme) .focused .input-wrap .search-icon{background:#1274B7;cursor:pointer}html:not(.honeywell-dark-theme) .ui.single-input>.input-wrap>input{height:2.5rem}html:not(.honeywell-dark-theme) .ui.single-input>.input-wrap>.search-icon{height:2.5rem}html:not(.honeywell-dark-theme) div.ui.input-label{margin-bottom:.125rem;display:flex}html:not(.honeywell-dark-theme) div.ui.input-label .input-label-message{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;font-weight:700}html:not(.honeywell-dark-theme) div.ui.input-label .badge{align-self:flex-end;width:.5rem !important;height:.5rem !important;min-width:0rem !important;min-height:0rem !important;margin-left:.125rem;margin-bottom:.4rem !important;padding-bottom:0rem !important}html:not(.honeywell-dark-theme) div.ui.input-label .input-label-optional{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic;margin-left:.25rem}html:not(.honeywell-dark-theme) .ui.kpi-statistic{max-width:20rem;display:inline-flex;padding:1rem;margin-right:.75rem;margin-bottom:.75rem;background:#fff}html:not(.honeywell-dark-theme) .ui.kpi-statistic i.h-icon{font-size:3.75rem;margin-right:.75rem}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel{display:flex;justify-content:flex-start;flex-direction:row;transform:translateX(-0.7rem)}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel .dot{height:0.7rem;width:0.7rem;transform:translateX(-5px);margin-top:0.7rem;border-radius:50%;display:inline-block;min-width:0.7rem;min-height:0.7rem}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel .red{background-color:#ee3124 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel .orange{background-color:#f37021 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel .yellow{background-color:#ffC627 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel .green{background-color:#7eb338 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel .blue{background-color:#1792e5 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .indicator-target-panel .grey{background-color:#707070 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .item-image{width:3.75rem;height:3.75rem;background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:.25rem;margin-right:.75rem;min-width:3.75rem;min-height:3.75rem}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details{display:flex;flex-direction:column}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details h1{color:#303030;font-size:1.625rem}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details h5{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#606060;text-transform:uppercase}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details h3{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem;text-transform:capitalize}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details h1,html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details h5,html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details h3{margin:0;padding:.125rem 0}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .red{color:#ee3124 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .orange{color:#f37021 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .yellow{color:#ffC627 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .green{color:#7eb338 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .blue{color:#1792e5 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .purple{color:#9b59b6 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .grey{color:#707070 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .black{color:#303030 !important}html:not(.honeywell-dark-theme) .ui.kpi-statistic .statistic-details .white{color:#f7f7f7 !important}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper .item.clickable{cursor:pointer}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.celled.list>.item,html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper .ui.celled.list>.list{border-top:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.celled.list>.item:last-child{border-bottom:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.horizontal.celled.list>.item{border-top:none;border-bottom:none !important;border-left:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.divided.list>.item{border-top:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.divided.list .list>.item:first-child,html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.divided.list>.item:first-child{border-top:none}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.horizontal.bulleted.celled.list>.item{border-top:none;border-bottom:none !important;border-left:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.horizontal.bulleted.celled.list>.item::before{margin-left:0;position:relative;padding-right:.5rem}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.horizontal.list>.item{display:inline-flex !important;align-items:center}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.horizontal.celled.list>.item:last-child{border-right:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui .list.scuf-list-wrapper.ordered.list>.item:before{color:#303030}html:not(.honeywell-dark-theme) .ui .relaxed.list .description{color:#303030}html:not(.honeywell-dark-theme) .ui.loader-wrap{display:none;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;vertical-align:middle;z-index:2}html:not(.honeywell-dark-theme) .ui.loader-wrap .color-overlay{background:#fff;position:absolute;z-index:2}html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader{display:block;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:600;color:#303030;-webkit-font-smoothing:antialiased;line-height:1.375rem;font-size:.875rem;z-index:10}html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader:before{border:.125rem solid rgba(48,48,48,0.15)}html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader:after{border-color:#303030 transparent transparent;border-width:.125rem}html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader.inverted{color:#fff}html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader.inverted:before{border:.125rem solid rgba(255,255,255,0.15)}html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader.inverted:after{border-color:#fff transparent transparent;border-width:.125rem}html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader.large:before,html:not(.honeywell-dark-theme) .ui.loader-wrap .ui.loader.large:after{width:3rem;height:3rem;margin:0 0 0 -1.5rem}html:not(.honeywell-dark-theme) .ui.loader-wrap.loading{display:block}html:not(.honeywell-dark-theme) .ui.loader-wrap.loading .color-overlay{top:0;right:0;left:0;bottom:0}html:not(.honeywell-dark-theme) .ui.modal{border-radius:0 !important;border:none !important;padding:1rem;background-color:#fff;align-self:center;justify-self:center;position:relative}html:not(.honeywell-dark-theme) .ui.modal .header{background:0;border:none !important;padding:0 2.5rem 1rem 0;display:flex;justify-content:flex-start}html:not(.honeywell-dark-theme) .ui.modal .header .right{margin-left:auto}html:not(.honeywell-dark-theme) .ui.modal.small>.header:not(.ui),html:not(.honeywell-dark-theme) .ui.modal.mini>.header:not(.ui),html:not(.honeywell-dark-theme) .ui.modal.large>.header:not(.ui),html:not(.honeywell-dark-theme) .ui.modal.fullscreen>.header:not(.ui){font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1.625rem;line-height:2.125rem;color:#404040;color:#303030}html:not(.honeywell-dark-theme) .ui.modal .close-icon-wrap{position:absolute;display:inline-block;right:1rem;top:1.25rem;font-size:.75rem;color:#303030;cursor:pointer}html:not(.honeywell-dark-theme) .ui.modal .close-icon-wrap .modal-close{margin:0;font-size:.75rem}html:not(.honeywell-dark-theme) .ui.modal .close-icon-wrap:hover{color:#404040}html:not(.honeywell-dark-theme) .ui.modal .content{padding:0;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;background-color:#fff}html:not(.honeywell-dark-theme) .ui.modal .actions{border:none;padding:2rem 0 0;background:none;display:flex;justify-content:flex-end;text-align:left}html:not(.honeywell-dark-theme) .ui.modal .actions .left{margin-right:auto}html:not(.honeywell-dark-theme) .modals.dimmer{justify-content:center}html:not(.honeywell-dark-theme) .blurring.dimmed.dimmable>:not(.dimmer){filter:blur(4px) !important}html:not(.honeywell-dark-theme) .blurring.dimmable>.dimmer{background-color:rgba(255,255,255,0.7) !important}html:not(.honeywell-dark-theme) .ui.fullscreen.modal,html:not(.honeywell-dark-theme) .modals.dimmer .ui.fullscreen.scrolling.modal{width:100% !important;left:0 !important;top:0 !important;height:100vh;margin:0 !important}html:not(.honeywell-dark-theme) .ui.large.modal{width:75%}html:not(.honeywell-dark-theme) .ui.small.modal{width:33%}html:not(.honeywell-dark-theme) .ui.notification{width:100%;background:#fff;margin:1em 0;border-left:.5rem solid;border-top:.125rem solid;border-right:.125rem solid;border-bottom:.125rem solid;display:flex}html:not(.honeywell-dark-theme) .ui.notification.critical{border-color:#F15A4F}html:not(.honeywell-dark-theme) .ui.notification.critical .icon .h-icon{color:#F15A4F}html:not(.honeywell-dark-theme) .ui.notification.important{border-color:#ffC627}html:not(.honeywell-dark-theme) .ui.notification.important .icon .h-icon{color:#ffC627}html:not(.honeywell-dark-theme) .ui.notification.information{border-color:#1792e5}html:not(.honeywell-dark-theme) .ui.notification.information .icon .h-icon{color:#1792e5}html:not(.honeywell-dark-theme) .ui.notification.success{border-color:#7eb338}html:not(.honeywell-dark-theme) .ui.notification.success .icon .h-icon{color:#7eb338}html:not(.honeywell-dark-theme) .ui.notification .icon{padding:1rem 0 0 1rem;display:flex}html:not(.honeywell-dark-theme) .ui.notification .icon .h-icon{font-size:1.5rem;padding:0 !important}html:not(.honeywell-dark-theme) .ui.notification .icon .h-icon::before{padding:0.25rem}html:not(.honeywell-dark-theme) .ui.notification .content{flex-grow:1;padding:1rem;padding-left:.5rem;width:100%}html:not(.honeywell-dark-theme) .ui.notification .content .content-top{display:flex;flex-direction:row;justify-content:flex-end}html:not(.honeywell-dark-theme) .ui.notification .content .heading{margin-bottom:.5rem;display:flex;align-items:flex-end;flex-grow:1}html:not(.honeywell-dark-theme) .ui.notification .content .heading .title{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;font-weight:700;display:inline-block;margin-right:3em}html:not(.honeywell-dark-theme) .ui.notification .content .details-button{float:right}html:not(.honeywell-dark-theme) .ui.notification .content .message{display:flex;justify-content:space-between;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030}html:not(.honeywell-dark-theme) .ui.notification .content .message p a{cursor:pointer;color:#1274B7}html:not(.honeywell-dark-theme) .ui.notification .content .action-wrapper{margin-top:.5rem}html:not(.honeywell-dark-theme) .ui.notification .content .action-wrapper .action{float:right;cursor:pointer;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#1274B7;font-weight:600;letter-spacing:0.5px}html:not(.honeywell-dark-theme) .ui.notification .content .action-wrapper .action:active{color:#1274B7}html:not(.honeywell-dark-theme) .ui.notification .content .action-wrapper .action:hover{color:#10659F}html:not(.honeywell-dark-theme) .ui.notification .content .action-wrapper .action:disabled{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.notification .content .tags{display:inline-block}html:not(.honeywell-dark-theme) .ui.notification .content .tags .badge{margin-right:.25rem}html:not(.honeywell-dark-theme) .ui.notification .content:first-child{padding-left:1rem}html:not(.honeywell-dark-theme) .ui.notification .close-wrapper{padding-left:2rem;display:flex}html:not(.honeywell-dark-theme) .ui.notification .close-wrapper .h-icon{color:#d0d0d0;cursor:pointer}html:not(.honeywell-dark-theme) .ui.notification .close-wrapper .h-icon:hover{color:#404040}html:not(.honeywell-dark-theme) .ui.notification .close-wrapper .h-icon:active{color:#303030}html:not(.honeywell-dark-theme) .ui.notification .datetime{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;font-weight:700}html:not(.honeywell-dark-theme) .ui.pagination{display:flex;border:#d0d0d0 .0625rem solid;background:#fff;width:100%;min-width:24rem;height:3.3rem;justify-content:center;align-items:center;position:relative;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-size:.875rem;font-weight:500}html:not(.honeywell-dark-theme) .ui.pagination .nav-container{display:flex}html:not(.honeywell-dark-theme) .ui.pagination .page-info{position:absolute;left:1rem}html:not(.honeywell-dark-theme) .ui.pagination .page-info .bold{font-weight:600}html:not(.honeywell-dark-theme) .ui.pagination .page-options{display:inline-flex;position:absolute;align-items:center;right:.25rem}html:not(.honeywell-dark-theme) .ui.pagination .page-options .scuf-dropdown-wrapper{padding-left:.5rem;width:6rem}html:not(.honeywell-dark-theme) .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown{min-width:auto;width:6rem}html:not(.honeywell-dark-theme) .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown .active{border:none !important}html:not(.honeywell-dark-theme) .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown .visible.menu{border:none !important;box-shadow:0 1px 2px rgba(0,0,0,0.1)}html:not(.honeywell-dark-theme) .ui.pagination .page-options .scuf-dropdown-wrapper .ui.selection.dropdown .visible.menu .item:not(:last-child){border-bottom:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.pagination .goto-selector{display:initial;width:5.25rem}html:not(.honeywell-dark-theme) .ui.pagination .goto-selector .ui.selection.dropdown{min-width:auto;width:5.25rem}html:not(.honeywell-dark-theme) .ui.pagination .goto-selector .ui.selection.dropdown .active{border:none !important}html:not(.honeywell-dark-theme) .ui.pagination .goto-selector .ui.selection.dropdown .visible.menu{border:none !important;box-shadow:0 1px 2px rgba(0,0,0,0.1);bottom:2.9375rem;top:auto;overflow-y:auto;max-height:9rem}html:not(.honeywell-dark-theme) .ui.pagination .goto-selector .ui.selection.dropdown .visible.menu .item:not(:last-child){border-bottom:1px solid #d0d0d0}html:not(.honeywell-dark-theme) .ui.pagination .hide{display:none !important}html:not(.honeywell-dark-theme) .ui.pagination .page-btn{background:#fff;cursor:pointer;text-align:center;height:2.5rem;width:2.5rem;display:flex;justify-content:center;align-items:center;text-transform:uppercase;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;border:transparent .0625rem solid}html:not(.honeywell-dark-theme) .ui.pagination .page-btn:not(.nav-btn):hover{border:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.pagination .ellipse.noSelection:hover{border:none !important;cursor:initial}html:not(.honeywell-dark-theme) .ui.pagination .active{border:#1274B7 .0625rem solid !important}html:not(.honeywell-dark-theme) .ui.pagination .page-btn.disable{color:#b0b0b0 !important;border:transparent .0625rem solid !important}html:not(.honeywell-dark-theme) .ui.pagination .page-btn.disable:hover{cursor:default}html:not(.honeywell-dark-theme) .ui.pagination.hide-nav .item-btn:first-child,html:not(.honeywell-dark-theme) .ui.pagination.hide-nav .first-btn{margin-left:.25rem}html:not(.honeywell-dark-theme) .ui.pagination.hide-nav .item-btn:last-child,html:not(.honeywell-dark-theme) .ui.pagination.hide-nav .last-btn{margin-right:.25rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.pagination .page-info{top:1.4rem}html:not(.honeywell-dark-theme) .ui.pagination .page-options{top:.25rem}}html:not(.honeywell-dark-theme) .popup-pointer{cursor:pointer}html:not(.honeywell-dark-theme) .ui.popup.menu{padding:0px;border:0px;width:250px}html:not(.honeywell-dark-theme) .ui.popup.menu .ui.vertical.menu{width:250px;position:relative;box-shadow:none !important}html:not(.honeywell-dark-theme) .ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em 0em 2.5em;box-shadow:none;background:rgba(0,0,0,0.1);padding:0em;border-radius:0.28571429rem;font-size:1rem}html:not(.honeywell-dark-theme) .ui.progress:first-child{margin:0em 0em 2.5em}html:not(.honeywell-dark-theme) .ui.progress:last-child{margin:0em 0em 1.5em}html:not(.honeywell-dark-theme) .ui.progress .bar{height:1.75em;display:block;line-height:1;position:relative;width:0%;min-width:2em;transition:width 0.1s ease, background-color 0.1s ease}html:not(.honeywell-dark-theme) .ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:0.92857143em;top:50%;right:0.5em;left:auto;bottom:auto;color:rgba(255,255,255,0.7);text-shadow:none;margin-top:-0.5em}html:not(.honeywell-dark-theme) .ui.progress.small{font-size:0.92857143rem}html:not(.honeywell-dark-theme) .ui.progress.small .bar{height:1em}html:not(.honeywell-dark-theme) .ui.progress.large{font-size:1.14285714rem}html:not(.honeywell-dark-theme) .ui.progress.large .bar{height:2.5em}html:not(.honeywell-dark-theme) .ui.progress.big{font-size:1.28571429rem}html:not(.honeywell-dark-theme) .ui.progress.big .bar{height:3.5em}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.stacked .bars-wrapper{width:100%;display:flex;background-color:#f0f0f0}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.stacked .chart-legend{display:flex;justify-content:center;flex-wrap:wrap;margin-top:0.75rem}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.stacked .chart-legend .legend-item{display:flex;align-items:center;margin-left:1rem}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.stacked .chart-legend .legend-item .color-block{height:12px;width:12px;margin-right:0.25rem;border:0px;margin-top:0.5rem;margin-bottom:0.5rem}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.stacked .bar{display:flex;justify-content:center;align-items:center;min-width:3%}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.stacked .bar.zero{min-width:0%}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.stacked .bar .progress-text.zero{display:none}html:not(.honeywell-dark-theme) .scuf-progress-wrapper .progress-text{font-weight:700}html:not(.honeywell-dark-theme) .scuf-progress-wrapper .ui.progress .bar .progress{font-weight:400 !important}html:not(.honeywell-dark-theme) .scuf-progress-wrapper .ui.progress .bar .progress,html:not(.honeywell-dark-theme) .scuf-progress-wrapper .progress-text{left:0%;text-align:center;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#fff;font-size:.75rem}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.xlarge html:not(.honeywell-dark-theme) .scuf-progress-wrapper.zero .ui.progress .bar{min-width:0}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.xlarge html:not(.honeywell-dark-theme) .scuf-progress-wrapper.zero .ui.progress .bar .progress{color:#303030}html:not(.honeywell-dark-theme) .scuf-progress-wrapper .ui.progress{border-radius:0;background-color:#f0f0f0;overflow-x:hidden}html:not(.honeywell-dark-theme) .scuf-progress-wrapper .ui.progress .bar{background-color:#1274B7;border-radius:0}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.xxsmall .bar{height:0.25rem !important}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.xsmall .bar{height:0.5rem !important}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.small .bar{height:0.75rem !important}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.medium .bar{height:1rem !important}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.large .bar{height:1.5rem !important}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.xlarge .bar{height:2rem !important}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.indeterminate .bar{animation:indeterminate-bar 1.6s infinite;animation-timing-function:linear}html:not(.honeywell-dark-theme) .scuf-progress-wrapper.indeterminate .bar .progress{visibility:hidden}@keyframes indeterminate-bar{0%{left:-25%}100%{left:100%}}html:not(.honeywell-dark-theme) .scuf-circular-wrapper{position:relative}html:not(.honeywell-dark-theme) .scuf-circular-wrapper .progress-title{position:absolute;width:100%;text-align:center;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;fill:#303030;line-height:1;top:45%;transform:translateY(-50%)}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.xsmall{width:1rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.small{width:2rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.medium{width:3rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.medium .progress-title{font-size:.6rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.large{width:4rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.large .progress-title{font-size:.8rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.xlarge{width:6rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper.xlarge .progress-title{font-size:1.2rem}html:not(.honeywell-dark-theme) .scuf-circular-wrapper .definite{margin:auto;position:relative;overflow:visible !important}html:not(.honeywell-dark-theme) .scuf-circular-wrapper .definite .rc-progress-circle-path{stroke:#1274B7;stroke-width:.25rem !important;transition:stroke-dashoffset 0.5s ease 0s}html:not(.honeywell-dark-theme) .scuf-circular-wrapper .definite .rc-progress-circle-trail{stroke:#f0f0f0 !important;stroke-width:.25rem !important}html:not(.honeywell-dark-theme) .scuf-circular-wrapper .indefinite{animation:spin 1s linear infinite;overflow:visible !important}html:not(.honeywell-dark-theme) .scuf-circular-wrapper .indefinite .rc-progress-circle-path{stroke:#1274B7;stroke-width:.25rem !important;transition:stroke-dashoffset 0.5s ease 0s}html:not(.honeywell-dark-theme) .scuf-circular-wrapper .indefinite .rc-progress-circle-trail{stroke:#f0f0f0 !important;stroke-width:.25rem !important}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .definite .rc-progress-circle-path{transition:none !important}}html:not(.honeywell-dark-theme) .ui.radio.checkbox{min-height:1rem;margin:0px .75rem .75rem 0px;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box,html:not(.honeywell-dark-theme) .ui.radio.checkbox label{padding-left:1.5rem}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box:before,html:not(.honeywell-dark-theme) .ui.radio.checkbox label:before{content:"";width:1rem;height:1rem;border-radius:1rem;top:1px;left:0px;border:.0625rem solid #d0d0d0;background-color:#fff}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox label:after{border:none;content:"" !important;width:1rem;height:1rem;line-height:1rem}html:not(.honeywell-dark-theme) .ui.radio.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox label:after{top:1px;left:0px;width:1rem;height:1rem;border-radius:1rem}html:not(.honeywell-dark-theme) .ui.radio.checkbox input:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.radio.checkbox input:focus ~ label:before{background-color:#fff;border:.0625rem solid #d0d0d0}html:not(.honeywell-dark-theme) .ui.radio.checkbox input:focus ~ .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox input:focus ~ label:after{background-color:#fff}html:not(.honeywell-dark-theme) .ui.radio.checkbox input:indeterminate ~ .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox input:indeterminate ~ label:after{opacity:0}html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input ~ .box:before,html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input ~ label:before{background-color:#fff;border:.0625rem solid #d0d0d0}html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input ~ .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input ~ label:after{background-color:#1274B7;transform:scale(0.67);opacity:1 !important}html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input:focus ~ .box:before,html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input:focus ~ label:before{background-color:#fff}html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input:focus ~ .box:after,html:not(.honeywell-dark-theme) .ui.radio.checkbox.checked input:focus ~ label:after{background-color:#1274B7;opacity:1 !important}html:not(.honeywell-dark-theme) .ui.radio.checkbox input ~ label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;line-height:1rem}html:not(.honeywell-dark-theme) .ui.disabled.checkbox .box:after,html:not(.honeywell-dark-theme) .ui.disabled.checkbox label,html:not(.honeywell-dark-theme) .ui.checkbox input[disabled] ~ .box:after,html:not(.honeywell-dark-theme) .ui.checkbox input[disabled] ~ label{opacity:1.0;cursor:not-allowed !important;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060}html:not(.honeywell-dark-theme) .ui.disabled.radio.checkbox label:before{background-color:#f7f7f7;border:.0625rem solid #b0b0b0}html:not(.honeywell-dark-theme) .star-rating{display:flex;align-items:baseline}@keyframes pop{from{transform:scale(0, 0)}to{transform:scale(1, 1)}}html:not(.honeywell-dark-theme) .star-rating .spacing{margin-left:calc(.5rem / 2)}html:not(.honeywell-dark-theme) .star-rating .edit-mode svg{display:flex;align-items:baseline}html:not(.honeywell-dark-theme) .star-rating .edit-mode svg:hover{transition:all 0.1s ease;transform:scale(1.2, 1.2)}html:not(.honeywell-dark-theme) .star-rating .stars-container{display:flex;justify-content:flex-start;align-content:flex-end;position:relative}html:not(.honeywell-dark-theme) .star-rating .stars-container .icon-wrapper{position:absolute;top:0}html:not(.honeywell-dark-theme) .star-rating .stars-container .icon-wrapper .icon{cursor:default;display:flex;align-items:baseline;overflow:hidden;padding:0px !important}html:not(.honeywell-dark-theme) .star-rating .stars-container .icon-wrapper .icon.edit-mode:hover{transition:all 0.1s ease;transform:scale(1.2, 1.2)}html:not(.honeywell-dark-theme) .star-rating .stars-container .icon-wrapper .icon.edit-mode.unfilled{opacity:0}html:not(.honeywell-dark-theme) .star-rating .stars-container .unfilled-icon-wrapper{cursor:default}html:not(.honeywell-dark-theme) .star-rating .stars-container .unfilled-icon-wrapper .icon{cursor:default;display:flex;align-items:baseline;padding:0px !important}html:not(.honeywell-dark-theme) .star-rating .stars-container .unfilled-icon-wrapper .icon.hide-unfilled{opacity:0}html:not(.honeywell-dark-theme) .star-rating .rating-value{line-height:normal}html:not(.honeywell-dark-theme) .star-rating .rating-value.pop{animation:pop 0.5s forwards}html:not(.honeywell-dark-theme) .ui.search-wrap{position:relative;display:inline-block}html:not(.honeywell-dark-theme) .ui.search-wrap.error .ui.search.ui-search+.search-icon{border-left:.0625rem solid #BE271C}html:not(.honeywell-dark-theme) .ui.search-wrap.disabled .ui.search.ui-search+.search-icon{background-color:#b0b0b0 !important;cursor:not-allowed !important}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.focus.search.ui-search+.search-icon{color:#fff !important;background:#1274B7}html:not(.honeywell-dark-theme) .ui.search-wrap .search-icon{display:flex;align-items:center;height:2.375rem;color:#fff;position:absolute;right:0;top:0;background:#d0d0d0;opacity:1;padding:.5rem .75rem;transition:background 150ms ease-in;cursor:pointer}html:not(.honeywell-dark-theme) .ui.search-wrap .search-icon:hover{background-color:#10659F !important}html:not(.honeywell-dark-theme) .ui.search-wrap .search-icon:active{background-color:#1274B7 !important}html:not(.honeywell-dark-theme) .ui.search-wrap.disabled{background:#f7f7f7}html:not(.honeywell-dark-theme) .ui.search-wrap.disabled .disabled{opacity:1;cursor:not-allowed !important}html:not(.honeywell-dark-theme) .ui.search-wrap.disabled .disabled input{cursor:not-allowed !important;background:#f7f7f7 !important;color:silver !important}html:not(.honeywell-dark-theme) .ui.search-wrap.error .ui-search .input input.prompt{border:.0625rem solid #BE271C !important}html:not(.honeywell-dark-theme) .ui.search-wrap .close-icon{position:absolute;right:2.75rem;top:.4375rem;z-index:2;color:#303030;transition:color 0.1s linear;cursor:pointer}html:not(.honeywell-dark-theme) .ui.search-wrap .close-icon:hover{color:#404040}html:not(.honeywell-dark-theme) .ui.search-wrap .close-icon:active{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.search-wrap .close-icon.disabled{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search{position:relative}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .ui.icon.input .search.icon{display:none}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;background:#fff;border:#d0d0d0 .0625rem solid;border-radius:0;color:#303030;height:2.375rem;transition:border-color 150ms ease-in;box-sizing:border-box;padding:.6875rem .4375rem;margin:0em;text-shadow:none;padding-right:4rem !important}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt{line-height:.875rem !important}}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt:focus{border-color:#1274B7;outline:none}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic;line-height:.875rem !important}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .prompt:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible{display:block;font-weight:normal;left:0%;background:#fff;margin-top:-0.0625rem;border-radius:0;min-width:368px;border:.0625rem solid #d0d0d0;border-top:.0625rem solid #1274B7;box-shadow:none;width:auto;top:2.375rem}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .message.empty .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .result{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;background:#fff;margin-left:0px;border-bottom:none;border-left:none;padding:.5rem .75rem;box-sizing:border-box;border-bottom:none;border-radius:0px;z-index:900}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .result .title{font-weight:400}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .result:hover{background:#f0f0f0}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .result .result-icon{font-size:.75rem;line-height:.75rem;position:relative;top:0.125rem;margin-right:.5rem}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .category{border-bottom:#d0d0d0 .0625rem solid;padding-bottom:.5rem;background:#fff}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .category .results{border-top:none}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .category .name{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#606060;text-transform:uppercase;display:block;width:100%;float:none;background:#fff;padding-top:.75rem;padding-bottom:.125rem}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .results.visible .category:last-child{border-bottom:none;margin-bottom:none}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .ui.input{min-width:368px}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .ui.input.focus input,html:not(.honeywell-dark-theme) .ui.search-wrap .ui.search.ui-search .ui.input input:focus{border-color:#1274B7}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.active.visible.focus.search.ui.search .ui.icon.input .search.icon,html:not(.honeywell-dark-theme) .ui.search-wrap .ui.category.focus.search.ui.search .ui.icon.input .search.icon,html:not(.honeywell-dark-theme) .ui.search-wrap .ui.active.visible.category.focus.search.ui.search .ui.icon.input .search.icon,html:not(.honeywell-dark-theme) .ui.search-wrap .ui.focus.search.ui.search .ui.icon.input .search.icon{background:#1274B7 !important;border-radius:0 !important}html:not(.honeywell-dark-theme) .ui.search-wrap .ui.active.visible.focus.search.ui.search .ui.icon.input .search.icon::before,html:not(.honeywell-dark-theme) .ui.search-wrap .ui.category.focus.search.ui.search .ui.icon.input .search.icon::before,html:not(.honeywell-dark-theme) .ui.search-wrap .ui.active.visible.category.focus.search.ui.search .ui.icon.input .search.icon::before,html:not(.honeywell-dark-theme) .ui.search-wrap .ui.focus.search.ui.search .ui.icon.input .search.icon::before{color:#fff !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:inline-block;vertical-align:top;z-index:1;width:12rem;cursor:pointer}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.expanded{z-index:2}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.error .label{border:.0625rem solid #BE271C}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.error .label:first-child{border-right:none}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.error .label:last-child{border-left:none}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.error input{border-color:#BE271C;background-color:#fff}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.fluid{display:block;width:100%}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.disabled{cursor:not-allowed}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.disabled .ui.disabled.dropdown{opacity:1;background:#f7f7f7}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.disabled .ui.disabled.dropdown i.icon{color:#606060}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper p.error-message{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#BE271C;font-weight:600;margin-top:.125rem}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;padding:.438rem .5rem .438rem .75rem;border:#d0d0d0 .0625rem solid;max-height:2.5rem;border-radius:0;background:#fff;min-width:100%}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu .message,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu .message,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu .message{color:#606060}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item:hover,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item:hover,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item:hover{background-color:#f0f0f0}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.disabled.item:hover,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.disabled.item:hover,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.disabled.item:hover{background-color:#fff !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;border:none;padding:.5rem .5rem .5rem .75rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item i.icon,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item i.icon,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item i.icon{margin-right:0 !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon{float:right;color:#303030;height:1rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.default.text,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown>.default.text,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled>.default.text{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic;color:#606060 !important;padding-right:.5rem}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;border:none;padding:.5rem .5rem .5rem .75rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item i.icon,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item i.icon,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item i.icon{margin-right:0 !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown .menu>.item .select-highlight,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown .menu>.item .select-highlight,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled .menu>.item .select-highlight{font-weight:700}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.label,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown>.label,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled>.label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;display:inline-flex;word-break:break-all;line-height:.875rem;margin:0px;background:#f0f0f0;padding:.125rem .25rem;padding-right:.125rem;border-radius:0px;position:relative;box-shadow:none;margin-right:.5rem;margin-bottom:.25rem}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.label:last-of-type,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown>.label:last-of-type,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled>.label:last-of-type{margin-right:0}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.chevron,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.chevron,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.chevron{font-family:"Honeywell-Icons" !important;font-size:.5rem}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.chevron:before,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.chevron:before,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.chevron:before{content:"\EA59" !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.delete,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.delete,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.delete{position:relative;font-family:"Honeywell-Icons" !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.delete:before,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.delete:before,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.delete:before{content:"\EA55" !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown i.icon.delete:before,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown i.icon.delete:before,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled i.icon.delete:before{color:#606060;font-size:.5rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown.error,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown.error,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled.error{border:.0625rem solid #BE271C}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown.fluid,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.multiple.selection.dropdown.fluid,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.disabled.fluid{width:100% !important;max-width:100% !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown{max-width:100%}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.selection.dropdown>.text{max-width:calc(100% - 1rem);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 !important;padding-right:.5rem}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.no-chevron i.chevron.down.icon{display:none}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content i.chevron.down.icon{position:absolute;right:.5rem;top:.5rem}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.multiple.selection.dropdown{max-height:none !important;padding-bottom:.188rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content:not(.no-chevron)>.ui.multiple.selection.dropdown{padding-right:2rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper .ui.selection.dropdown:not(.search)>input.search{top:0;color:#303030 !important;width:100%;margin:0;position:absolute;padding:.562rem 2rem .562rem .75rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper .ui.selection.dropdown.search input.search{color:#303030;line-height:1rem}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper .ui.selection.dropdown.multiple>input.search{position:relative;top:-.125rem;margin-left:0}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown{border:.0625rem solid #1274B7}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown .selected.item{background-color:#f0f0f0;word-break:break-all}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown .selected.item>.default.text{font-weight:400}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown .visible.menu.transition{display:inherit;background:#fff;border:.0625rem solid #1274B7;border-radius:0;margin-left:-.0625rem;width:calc(100% + .125rem)}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown .visible.menu.transition :last-child{margin-bottom:0 !important}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown.error .visible.menu.transition{border:.0625rem solid #BE271C}html:not(.honeywell-dark-theme) .ui.active.visible.selection.multiple.dropdown{border:1px solid #1274B7}html:not(.honeywell-dark-theme) .ui.active.visible.selection.multiple.dropdown .selected.item{background-color:initial}html:not(.honeywell-dark-theme) .ui.active.visible.selection.multiple.dropdown .selected.item>.default.text{font-weight:400}html:not(.honeywell-dark-theme) .ui.active.visible.selection.multiple.dropdown .visible.menu.transition{background:#fff;border:.0625rem solid #1274B7;border-radius:0;margin-left:-.0625rem;width:calc(100% + .125rem)}html:not(.honeywell-dark-theme) .ui.active.visible.selection.multiple.dropdown .visible.menu.transition :last-child{margin-bottom:0 !important}html:not(.honeywell-dark-theme) .ui.dropdown>.text{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030}html:not(.honeywell-dark-theme) .ui.dropdown.error,html:not(.honeywell-dark-theme) .ui.dropdown.error>.text,html:not(.honeywell-dark-theme) .ui.dropdown.error>.default.text{color:#303030 !important}html:not(.honeywell-dark-theme) .ui.selection.visible.dropdown>.text:not(.default){font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown i.icon.down,html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown.multiple i.icon.down{font-family:"Honeywell-Icons" !important;font-size:.5rem}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown i.icon.down:before,html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown.multiple i.icon.down:before{content:"\EA3D" !important}html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown i.icon.down::before,html:not(.honeywell-dark-theme) .ui.active.visible.selection.dropdown.multiple i.icon.down::before{color:#303030}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple{max-height:none !important;padding-bottom:0.188rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.search,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.search{padding-bottom:0.1rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.disabled,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.disabled{max-height:none !important;padding-bottom:0.188rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.disabled.search,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.disabled .selection,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.disabled.search,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.multiple.disabled .selection{padding-bottom:0.1rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.multiple.disabled>div.default.text{max-width:calc(100% - 1rem);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.search.selection>.text.filtered,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.search.selection>.text.filtered{margin-bottom:1.2rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.multiple.selection,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.selection{padding-bottom:0.438rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper>.ui.dropdown.multiple.selection.search,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content>.ui.dropdown.multiple.selection.search{padding-bottom:.1rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.disabled.multiple:not(.search),html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.disabled.multiple:not(.search){padding-bottom:0.438rem !important}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.disabled.multiple:not(.search)>.text.default,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.disabled.multiple:not(.search)>.text.default{margin:0}html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.disabled>.ui.dropdown.disabled>.default.text,html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.has-content.disabled>.ui.dropdown.disabled>.default.text{line-height:1.5rem}html:not(.honeywell-dark-theme) .sidebar-layout>.content{flex:1 1 auto}html:not(.honeywell-dark-theme) .sidebar-layout{overflow-x:hidden}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar{width:14.25rem;flex-shrink:0;transition:width 300ms ease-in;background:#fff;color:#303030;overflow-x:hidden;z-index:2;border-right:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.vertical.menu{height:100%}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.vertical.menu .item:before{display:none}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu{width:14.25rem;background:transparent}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;color:#303030;font-size:.875rem;line-height:1.375rem;font-weight:400;text-transform:capitalize;border-left:0.25rem solid transparent;display:flex;align-items:center;padding:.75rem 1rem;transition:color 100ms ease-in, background-color 100ms ease-in}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item .badged-icon .badge{visibility:hidden}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item .sidebar-icon{margin-right:1rem}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item>.sidebar-label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;color:#303030;font-size:.875rem;line-height:1.375rem;font-weight:400;opacity:1;flex-grow:1;transition:opacity 300ms ease-in}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item>.open-indicator{opacity:1;padding-left:.5rem;transition:opacity 300ms ease-in}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item.active{border-color:#1792e5}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item.active .sidebar-label{font-weight:700}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item:hover,html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .ui.menu .item.active{color:#303030;background:#e0e0e0}html:not(.honeywell-dark-theme) .sidebar-layout.collapse>.sidebar{width:3.5rem}html:not(.honeywell-dark-theme) .sidebar-layout.collapse>.sidebar .ui.menu .item .sidebar-label,html:not(.honeywell-dark-theme) .sidebar-layout.collapse>.sidebar .ui.menu .item .open-indicator{opacity:0}html:not(.honeywell-dark-theme) .sidebar-layout.collapse>.sidebar .ui.menu .item .badged-icon .badge{visibility:visible}html:not(.honeywell-dark-theme) .sidebar-layout.collapse.compressed>.sidebar,html:not(.honeywell-dark-theme) .sidebar-layout.collapse.no-icons>.sidebar{width:0;transform:translateX(-.0625rem)}html:not(.honeywell-dark-theme) .sidebar-layout.collapse.compressed>.sidebar .ui.menu .item .badge,html:not(.honeywell-dark-theme) .sidebar-layout.collapse.no-icons>.sidebar .ui.menu .item .badge{visibility:hidden}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .menu .submenu.open{background-color:#e0e0e0}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .menu .submenu.open>.ui.menu{display:block;background:#f7f7f7}html:not(.honeywell-dark-theme) .sidebar-layout>.sidebar .menu .submenu>.ui.menu{display:none}html:not(.honeywell-dark-theme) .sidebar-layout{width:100%;display:flex;position:relative}html:not(.honeywell-dark-theme) .sidebar-layout.compressed{overflow:hidden}html:not(.honeywell-dark-theme) .sidebar-layout.compressed>.content{position:relative;min-width:100vw;z-index:1;left:0}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle{position:relative;height:.875rem;width:.875rem;margin-top:0px;border:none;background-color:#303030;transform:translate(-50%, -50%);bottom:-1px;height:1rem;width:1rem}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle .slider-handle-tooltip{display:none;position:absolute;left:50%;top:-.25rem;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;font-weight:700;color:#fff;padding:.125rem .5rem;background-color:#303030;transform:scale(0.75) translate(-66%, -1.8rem)}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle .slider-handle-tooltip:before{content:'';border-left:5px solid transparent;border-top:5px solid #303030;border-right:5px solid transparent;left:50%;bottom:0;position:absolute;transform:translate(-50%, 75%)}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle:hover{transform:scale(1.25) translate(-50%, -40%);transform-origin:center}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle:hover .slider-handle-tooltip{display:block}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle:focus{box-shadow:unset}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle:nth-of-type(2n+1){transform:translate(-100%, -50%)}html:not(.honeywell-dark-theme) .ui.slider .rc-slider-handle:nth-of-type(2n+1):hover{transform:scale(1.25) translate(-100%, -40%);transform-origin:center}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider{position:relative;display:flex;justify-content:center;align-items:center;width:min-content}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .from-input{margin-right:1rem}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider{width:296px;height:3px;padding:0;display:flex}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider .rc-slider-rail{background-color:#d0d0d0;height:3px}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider .rc-slider-track{background-color:#303030;height:3px}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider .rc-slider-step .rc-slider-dot{height:3px;width:3px;margin-left:0px;background-color:#303030;border:none;bottom:1px}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider .rc-slider-step .rc-slider-dot:last-child{transform:translateX(-3px)}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-handle,html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-track,html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider:active .slider-handle-tooltip{background-color:#1274B7}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-handle{transform:scale(1.25) translate(-50%, -40%)}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider:active .rc-slider-handle:nth-of-type(2n+1){transform:scale(1.25) translate(-100%, -40%)}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider:active .slider-handle-tooltip{display:block}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider:active .slider-handle-tooltip:before{border-top-color:#1274B7}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-handle,html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-track,html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-rail,html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-step .rc-slider-dot{background-color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-handle:hover{transform:translateY(-50%) translateX(-50%)}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .rc-slider-handle:nth-of-type(2n+1){transform:translate(-50%, -50%)}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled .slider-handle-tooltip{display:none}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .rc-slider.rc-slider-disabled:active .rc-slider-handle{transform:scale(1) translateY(-50%) translateX(-50%)}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .input-label{margin-right:1rem}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .ui.single-input .input-wrap .input-box{width:calc(2.5rem + .25rem)}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .ui.single-input .input-wrap input[type='number']::-webkit-inner-spin-button,html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .ui.single-input .input-wrap input[type='number']::-webkit-outer-spin-button{-webkit-appearance:none}html:not(.honeywell-dark-theme) .ui.slider-wrap .ui.slider .max-value{margin:0 .5rem 0 1rem}html:not(.honeywell-dark-theme) .ui.slider-wrap.fluid{width:100%}html:not(.honeywell-dark-theme) .ui.slider-wrap.fluid .ui.slider,html:not(.honeywell-dark-theme) .ui.slider-wrap.fluid .ui.slider .rc-slider{width:100%}html:not(.honeywell-dark-theme) .ui.statistic .red{color:#ee3124 !important}html:not(.honeywell-dark-theme) .ui.statistic .orange{color:#f37021 !important}html:not(.honeywell-dark-theme) .ui.statistic .yellow{color:#ffC627 !important}html:not(.honeywell-dark-theme) .ui.statistic .green{color:#7eb338 !important}html:not(.honeywell-dark-theme) .ui.statistic .blue{color:#1792e5 !important}html:not(.honeywell-dark-theme) .ui.statistic .purple{color:#9b59b6 !important}html:not(.honeywell-dark-theme) .ui.statistic .grey{color:#707070 !important}html:not(.honeywell-dark-theme) .ui.statistic .black{color:#303030 !important}html:not(.honeywell-dark-theme) .ui.statistic .white{color:#f7f7f7 !important}html:not(.honeywell-dark-theme) .ui.statistic{margin:0px !important;padding:0px;padding-left:2.5rem;padding-right:2.5rem;padding-top:1rem;vertical-align:bottom}html:not(.honeywell-dark-theme) .ui.statistic.fluid{padding-left:1rem;padding-right:1rem;width:100%}html:not(.honeywell-dark-theme) .ui.statistic+.ui.statistic{padding-left:0px}html:not(.honeywell-dark-theme) .ui.statistic>.value.vertically{display:flex}html:not(.honeywell-dark-theme) .ui.statistic>.value.vertically .vertically{display:left}html:not(.honeywell-dark-theme) .ui.statistic>.value.vertically .vertically.value{line-height:2.5rem}html:not(.honeywell-dark-theme) .ui.statistic>.value{text-align:center;align-items:center;padding:0px;margin:0px;padding-top:.25rem;padding-bottom:.125rem}html:not(.honeywell-dark-theme) .ui.statistic>.value .h-icon{color:#b0b0b0;padding:0px !important;margin:0px !important}html:not(.honeywell-dark-theme) .ui.statistic>.value .h-icon.tiny{font-size:.75rem !important;width:.75rem !important;height:.75rem !important}html:not(.honeywell-dark-theme) .ui.statistic>.value .h-icon.small{font-size:1.5rem !important;width:1.5rem !important;height:1.5rem !important}html:not(.honeywell-dark-theme) .ui.statistic>.value .h-icon.huge{font-size:2.5rem !important;width:2.5rem !important;height:2.5rem !important}html:not(.honeywell-dark-theme) .ui.statistic>.value .h-icon::before{top:0px}html:not(.honeywell-dark-theme) .ui.statistic>.value .uom{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:400;font-size:1rem;margin-left:.125rem;color:#303030}html:not(.honeywell-dark-theme) .ui.statistic>.value .value{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:800;text-transform:none;color:#303030}html:not(.honeywell-dark-theme) .ui.statistic>.value .h-icon+.value:not(.vertically){margin-top:.25rem}html:not(.honeywell-dark-theme) .ui.statistic>.value .h-icon+.value.vertically{margin-left:.25rem}html:not(.honeywell-dark-theme) .ui.statistic>.value .value:not(.vertically)+.h-icon{margin-top:.25rem}html:not(.honeywell-dark-theme) .ui.statistic>.value .value.vertically+.h-icon{margin-left:.25rem}html:not(.honeywell-dark-theme) .ui.statistic>.value .roundedIcon{border-radius:2.5rem;overflow:hidden}html:not(.honeywell-dark-theme) .ui.tiny.statistic>.value{font-size:.75rem !important}html:not(.honeywell-dark-theme) .ui.small.statistic>.value{font-size:1rem !important}html:not(.honeywell-dark-theme) .ui.huge.statistic>.value{font-size:1.5rem !important}html:not(.honeywell-dark-theme) .ui.statistic>.label{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;font-weight:600;text-transform:none;text-align:center;font-size:.75rem;color:#404040}html:not(.honeywell-dark-theme) .ui.statistic>.label .indicator{margin-right:.125rem}html:not(.honeywell-dark-theme) .ui.statistic>.label .up-arrow{transform:rotate(180deg);display:inline-block}html:not(.honeywell-dark-theme) .ui.statistic>.label.title{font-size:0.875rem}html:not(.honeywell-dark-theme) .steps.ui{border:0px;background:#fff;border-radius:0}html:not(.honeywell-dark-theme) .steps.ui a.item,html:not(.honeywell-dark-theme) .steps.ui .link.item{background:#fff;padding:1rem !important;border-top:#d0d0d0 .0625rem solid;border-bottom:#d0d0d0 .0625rem solid;border-left:#d0d0d0 .0625rem solid;border-right:0 !important;height:96px;color:#303030 !important}html:not(.honeywell-dark-theme) .steps.ui a.item .h-icon,html:not(.honeywell-dark-theme) .steps.ui .link.item .h-icon{padding-right:1rem !important;margin:initial}html:not(.honeywell-dark-theme) .steps.ui a.item:before,html:not(.honeywell-dark-theme) .steps.ui .link.item:before{color:#303030 !important}html:not(.honeywell-dark-theme) .steps.ui a.item:after,html:not(.honeywell-dark-theme) .steps.ui .link.item:after{background:#fff;border-color:#d0d0d0}html:not(.honeywell-dark-theme) .steps.ui a.item .description,html:not(.honeywell-dark-theme) .steps.ui a.item .title,html:not(.honeywell-dark-theme) .steps.ui .link.item .description,html:not(.honeywell-dark-theme) .steps.ui .link.item .title{color:#303030}html:not(.honeywell-dark-theme) .steps.ui a.item:hover,html:not(.honeywell-dark-theme) .steps.ui .link.item:hover{background:#f0f0f0 !important}html:not(.honeywell-dark-theme) .steps.ui a.item:hover:after,html:not(.honeywell-dark-theme) .steps.ui .link.item:hover:after{background:#f0f0f0 !important}html:not(.honeywell-dark-theme) .steps.ui a.item .content,html:not(.honeywell-dark-theme) .steps.ui .link.item .content{background:transparent !important}html:not(.honeywell-dark-theme) .steps.ui a.item:last-child,html:not(.honeywell-dark-theme) .steps.ui .link.item:last-child{border-radius:0;border-right:#d0d0d0 .0625rem solid !important}html:not(.honeywell-dark-theme) .steps.ui a.item:first-child,html:not(.honeywell-dark-theme) .steps.ui .link.item:first-child{border-radius:0}html:not(.honeywell-dark-theme) .steps.ui a.item.step.disabled,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.disabled{color:#a0a0a0 !important}html:not(.honeywell-dark-theme) .steps.ui a.item.step.disabled .description,html:not(.honeywell-dark-theme) .steps.ui a.item.step.disabled .content,html:not(.honeywell-dark-theme) .steps.ui a.item.step.disabled .title,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.disabled .description,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.disabled .content,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.disabled .title{color:#a0a0a0 !important}html:not(.honeywell-dark-theme) .steps.ui a.item.step.disabled:before,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.disabled:before{color:#a0a0a0 !important}html:not(.honeywell-dark-theme) .steps.ui a.item.step.completed:before{font-family:'Honeywell-Icons' !important;content:'\EA56';font-size:1.5rem;font-weight:initial;color:#7eb338 !important;margin-right:.75rem;position:relative;top:-2px}html:not(.honeywell-dark-theme) .steps.ui a.item.step.active,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.active{background:#f0f0f0 !important}html:not(.honeywell-dark-theme) .steps.ui a.item.step.active:after,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.active:after{background:#f0f0f0 !important}html:not(.honeywell-dark-theme) .steps.ui a.item.step.active .content,html:not(.honeywell-dark-theme) .steps.ui .link.item.step.active .content{background:transparent !important}html:not(.honeywell-dark-theme) .steps.ui.vertical .link.item,html:not(.honeywell-dark-theme) .steps.ui.vertical a.item{border-right:#d0d0d0 .0625rem solid !important;border-left:#d0d0d0 .0625rem solid;border-bottom:0}html:not(.honeywell-dark-theme) .steps.ui.vertical .link.item:hover,html:not(.honeywell-dark-theme) .steps.ui.vertical a.item:hover{background:#f0f0f0 !important}html:not(.honeywell-dark-theme) .steps.ui.vertical .item:last-child{border-bottom:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .h-icon.common{display:inline-block;vertical-align:middle;margin:none;font-family:'Honeywell-Icons' !important;font-size:1rem;speak:none;font-style:normal !important;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-transform:none !important;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu{background-color:transparent;border-bottom:none}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;margin-right:1rem;padding:0;padding-top:.5rem;padding-bottom:.25rem;min-width:4rem;max-width:20rem;border-bottom:.125rem solid transparent;margin-bottom:0;display:block;box-sizing:content-box;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu .item:after{content:attr(title);position:relative;display:block;height:0px;color:transparent;transform:none;visibility:hidden;top:auto;left:auto;transform:none;background:none;margin:0;border:none;overflow:hidden;width:auto;transition:none}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu .item:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu .link.item:hover{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu .active.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;border-bottom:.125rem solid #1274B7}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu .disabled.item{color:#a0a0a0}html:not(.honeywell-dark-theme) div.ui.pointing.secondary.ui.scuf-tab.menu .disabled.item:hover{color:#a0a0a0;cursor:not-allowed}html:not(.honeywell-dark-theme) .ui.label.badge.inTab.circle-padding{padding:0 0 !important}html:not(.honeywell-dark-theme) .ui.sortable.table thead th{border:none}html:not(.honeywell-dark-theme) .ui.table,html:not(.honeywell-dark-theme) .ui.sortable{border:#d0d0d0 .0625rem solid;border-radius:0px}html:not(.honeywell-dark-theme) .ui.table thead th,html:not(.honeywell-dark-theme) .ui.sortable thead th{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#606060;background-color:#fff;padding:.75rem 1.5rem .75rem 1rem;text-transform:uppercase;border-bottom:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.table thead th.right,html:not(.honeywell-dark-theme) .ui.sortable thead th.right{padding:.75rem 1rem .75rem 1.5rem}html:not(.honeywell-dark-theme) .ui.table tfoot th,html:not(.honeywell-dark-theme) .ui.sortable tfoot th{background-color:#fff}html:not(.honeywell-dark-theme) .ui.table tr td,html:not(.honeywell-dark-theme) .ui.sortable tr td{border:none;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;vertical-align:top;padding:.75rem 1.5rem .75rem 1rem}html:not(.honeywell-dark-theme) .ui.table tr td i,html:not(.honeywell-dark-theme) .ui.sortable tr td i{position:relative;top:-.125rem}html:not(.honeywell-dark-theme) .ui.table tr td .checkbox,html:not(.honeywell-dark-theme) .ui.sortable tr td .checkbox{margin-right:.5rem;margin-bottom:0}html:not(.honeywell-dark-theme) .ui.table tr td.right,html:not(.honeywell-dark-theme) .ui.sortable tr td.right{padding:.75rem 1rem .75rem 1.5rem}html:not(.honeywell-dark-theme) .ui.table tr td .badge,html:not(.honeywell-dark-theme) .ui.sortable tr td .badge{margin-bottom:.125rem !important;margin-left:-.75rem;margin-right:.25rem}html:not(.honeywell-dark-theme) .ui.table tr a,html:not(.honeywell-dark-theme) .ui.sortable tr a{cursor:pointer;color:#1274B7}html:not(.honeywell-dark-theme) .ui.striped.table,html:not(.honeywell-dark-theme) .ui.striped.table tbody tr{background-color:#fff}html:not(.honeywell-dark-theme) .ui.striped.table>tr:nth-child(2n),html:not(.honeywell-dark-theme) .ui.striped.table tbody tr:nth-child(2n){background-color:#f7f7f7}html:not(.honeywell-dark-theme) .ui.sortable.table thead th:hover,html:not(.honeywell-dark-theme) .ui.sortable.table thead th.sorted{background-color:#f0f0f0 !important}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;display:inline-block;vertical-align:top}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;min-height:6.875rem;min-width:368px;border:#d0d0d0 .0625rem solid;border-radius:0px;padding:.6875rem .4375rem;display:block;background-color:#fff;cursor:initial !important}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea:focus{border-color:#1274B7;border-radius:0px;box-shadow:none;outline:0}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea:disabled{background-color:#f7f7f7;color:silver !important;overflow:hidden}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea:focus::-webkit-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea:focus::-moz-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper textarea:focus:-ms-input-placeholder{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#606060;font-style:italic}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper.error textarea{border:.0625rem solid #BE271C}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper ::-webkit-scrollbar{width:.5rem}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper ::-webkit-scrollbar-thumb{border-radius:0px;background-color:#404040}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper.fluid{display:block}html:not(.honeywell-dark-theme) .scuf-textarea-wrapper.fluid textarea{width:100%}html:not(.honeywell-dark-theme) .ui.tooltip{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;color:#303030;color:#fff;border:none;cursor:default;padding:.5rem;transition:stroke 150ms;text-align:left;box-shadow:0 12px 24px 0 rgba(0,0,0,0.1);stroke-width:0;border-radius:0px;pointer-events:none;background-color:#303030}html:not(.honeywell-dark-theme) .ui.tooltip:before{border:none !important;box-shadow:0 12px 24px 0 rgba(0,0,0,0.1) !important;background:#303030 !important}html:not(.honeywell-dark-theme) .tree-content{overflow:auto}html:not(.honeywell-dark-theme) .tree-content .mouse-pointer{cursor:pointer !important;display:flex;justify-content:flex-start !important;align-items:center}html:not(.honeywell-dark-theme) .tree-content .tree-item .content{display:flex;font-size:.75rem;flex-direction:row}html:not(.honeywell-dark-theme) .tree-content .tree-item .content:hover{background:#D0E9F9}html:not(.honeywell-dark-theme) .tree-content .tree-item .content .left-content{display:flex;align-items:center;width:100%}html:not(.honeywell-dark-theme) .tree-content .tree-item .content .left-content .h-icon,html:not(.honeywell-dark-theme) .tree-content .tree-item .content .left-content .indent{padding:.5rem 0 .5rem 0;margin-left:1rem}html:not(.honeywell-dark-theme) .tree-content .tree-item .content .left-content .title{width:100%;justify-content:end;padding:.5rem 0 .5rem 0}html:not(.honeywell-dark-theme) .tree-content .tree-item .content .right-content{display:flex;align-items:center;padding:.5rem 1rem .5rem 0}html:not(.honeywell-dark-theme) .tree-content .tree-item .content .right-content .h-icon{margin:initial !important}html:not(.honeywell-dark-theme) .tree-content .tree-item .content .h-icon{margin:initial;font-size:.75rem;width:1.5rem;margin-right:.5rem}html:not(.honeywell-dark-theme) .tree-content .tree-item .content .item-image{width:1.5rem;height:1.5rem;background-position:center;background-size:cover;background-repeat:no-repeat;text-transform:uppercase;margin-right:.5rem}html:not(.honeywell-dark-theme) .tree-content .tree-item .content.active{background:#D0E9F9;color:#303030}html:not(.honeywell-dark-theme) .tree-content .tree-item .content.active .h-icon.caret-up{color:#303030}html:not(.honeywell-dark-theme) .tree-content .tree-item .has-children .h-icon,html:not(.honeywell-dark-theme) .tree-content .tree-item .has-children .indent{padding:0 !important;margin-left:0 !important}html:not(.honeywell-dark-theme) .tree-content .tree-item .has-children .left-content{padding:0}html:not(.honeywell-dark-theme) .tree-content .tree-item .has-children .caret{padding:.5rem 0 .5rem 1rem}html:not(.honeywell-dark-theme) .tree-content .tree-item .has-children .title{padding:.5rem 0 .5rem 0}html:not(.honeywell-dark-theme) .tree-content .tree-item .custom-renderer{padding:.5rem 1rem .5rem 0}html:not(.honeywell-dark-theme) .tree-content .tree-item .child-open{min-width:max-content}html:not(.honeywell-dark-theme) .tree-content .tree-item .child-open .left-content .indent{padding-left:1rem;margin-left:0 !important}html:not(.honeywell-dark-theme) .tree-content .tree-item .child-open .left-content .h-icon{margin-left:0 !important}html:not(.honeywell-dark-theme) .tree-content .tree-item .child-open .has-children .left-content{padding:0 !important}html:not(.honeywell-dark-theme) .tree-content .tree-item .child-open .has-children .caret{padding-left:0}html:not(.honeywell-dark-theme) .tree-content .tree-item .child-open .has-children .title{padding:.5rem 0 .5rem 0}html:not(.honeywell-dark-theme) .tree-content .tree-item .child-close{display:none}html:not(.honeywell-dark-theme) .tree-content .tree-item .item-loader{position:relative;display:inline-flex;top:1rem;height:2rem}html:not(.honeywell-dark-theme) .tree-content .tree-item .item-loader .ui.loader-wrap{position:relative}html:not(.honeywell-dark-theme) .tree-content .tree-item .item-loader .ui.loader-wrap .loader,html:not(.honeywell-dark-theme) .tree-content .tree-item .item-loader .ui.loader-wrap .loader:before,html:not(.honeywell-dark-theme) .tree-content .tree-item .item-loader .ui.loader-wrap .loader:after{width:1.5rem !important;height:1.5rem !important}html:not(.honeywell-dark-theme) .ui.tree.nav-tree{border:#d0d0d0 .0625rem solid;background:#fff}html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content{position:relative}html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content:hover{background:#e0e0e0 !important}html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content.expanded,html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content.expanded ~ .child-open{background:#f7f7f7}html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content.expanded .has-children,html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content.expanded .has-children ~ .child-open,html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content.expanded ~ .child-open .has-children,html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content.expanded ~ .child-open .has-children ~ .child-open{background:#fff}html:not(.honeywell-dark-theme) .ui.tree.nav-tree .tree-item .content.active{background:#e0e0e0;border-left:.125rem solid #1792e5}html:not(.honeywell-dark-theme) .tree-header{padding:1rem;display:flex;justify-content:space-between;align-items:center;border-bottom:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .tree-header .header-actions{display:flex}html:not(.honeywell-dark-theme) .tree-header .header-actions>*{padding:0 .75rem}html:not(.honeywell-dark-theme) .tree-header .header-actions>*:first-child{padding-left:.5rem}html:not(.honeywell-dark-theme) .tree-header .header-actions>*:last-child{padding-right:0}html:not(.honeywell-dark-theme) .ui.tree{background-color:#fff;width:456px}html:not(.honeywell-dark-theme) .ui.tree .left-content>.indent{width:2.25rem}html:not(.honeywell-dark-theme) .ui.tree .left-content>.indent{width:2rem}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu{border-radius:0;box-shadow:0 1px 2px rgba(0,0,0,0.1);border:none;max-width:17rem;background-color:#fff}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;display:flex;align-items:center;max-height:3rem;padding:.5rem 0;border-radius:0 !important}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item:before,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item:before{background:#d0d0d0;top:-1px}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item .item-icon,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item .item-icon{color:#303030;margin:0 0 0 .75rem;display:inline-block;position:relative}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item .content-wrap,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item .content-wrap{display:inline-block;padding:0 .75rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item .item-icon+.content-wrap,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item .item-icon+.content-wrap{padding-left:.5rem !important}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item:not(.disabled):hover,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item:not(.disabled).active,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item:not(.disabled):hover,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item:not(.disabled).active{background:#f0f0f0 !important;border-radius:0 !important;color:#303030}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item.disabled,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.disabled{color:#a0a0a0 !important;background-color:#fff !important;background:#fff !important;cursor:not-allowed}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item.disabled .content-wrap,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.disabled .content-wrap{color:#a0a0a0}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item.disabled .item-icon,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.disabled .item-icon{color:#b0b0b0}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item.active>.item-icon,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.active>.item-icon{color:#a0a0a0}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item.has-shortcut .content-wrap,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.has-shortcut .content-wrap{display:inline-block;width:50%}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item.has-shortcut .shortcut-wrap,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.has-shortcut .shortcut-wrap{color:#303030;display:inline-block;width:50%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-left:.75rem;text-align:right;padding-right:.75rem}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .item.has-shortcut.disabled .shortcut-wrap,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .item.has-shortcut.disabled .shortcut-wrap{color:#a0a0a0}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu{align-items:center !important;position:relative !important;max-height:3rem !important;padding:.5rem 0 !important}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon{position:absolute;right:.75rem;font-family:"Honeywell-Icons" !important}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon:before,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon:before{content:"\EA57" !important}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right{min-width:12rem;top:-1px !important;border-radius:0 !important;background-color:#fff}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right>.item,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right>.item{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem;line-height:1.375rem;color:#303030;color:#303030 !important;display:flex;align-items:center;justify-content:flex-start;max-height:3rem;padding:.5rem 0 !important;border-radius:0 !important}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:before,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:before{visibility:visible;display:block;background:#d0d0d0;position:absolute;content:'';top:-1px;left:0px;width:100%;height:1px}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled):hover,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled).active,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled):hover,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .menu.right .item:not(.disabled).active{background:#f0f0f0 !important;border-radius:0 !important;color:#303030}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .header,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .header{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:.75rem;line-height:1.25rem;font-weight:600;color:#606060;line-height:1em;padding:.75rem .75rem .25rem .75rem;text-transform:uppercase}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu{width:100% !important;border-bottom:1px solid #d0d0d0;position:relative;padding-bottom:.25rem;box-shadow:none}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu:not(:last-child){margin-bottom:.25rem}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.item+.ui.menu.vertical-menu:before{visibility:visible;display:block;background:#d0d0d0;position:absolute;content:'';top:-1px;left:0px;width:100%;height:1px}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu>.ui.menu.vertical-menu .ui.menu.vertical-menu>.ui.menu.vertical-menu+.item::before{visibility:hidden}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu.pointing>.item.active:after,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu.pointing>.ui.menu.vertical-menu>.item.active:after{box-shadow:1px 1px 2px 0px rgba(0,0,0,0.1);background:#f0f0f0;border:none;width:.75rem;height:.75rem;transform:translateX(50%) translateY(-50%) rotate(-45deg);margin:0 !important}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu.pointing>.item.active:hover:after,html:not(.honeywell-dark-theme) .ui.menu.vertical-menu.pointing>.ui.menu.vertical-menu>.item.active:hover:after{background:#f0f0f0}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu{justify-content:flex-start}html:not(.honeywell-dark-theme) .ui.menu.vertical-menu .ui.dropdown.item.vert-submenu .dropdown.icon{position:absolute;right:1rem;display:flex;align-items:center;height:100%;top:0}}


