.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}}


@charset "UTF-8";
/* open-sans-300 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url(/static/media/open-sans-v15-latin-300.d91bcb7a.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Light"), local("OpenSans-Light"), url(/static/media/open-sans-v15-latin-300.d91bcb7a.eot?#iefix) format("embedded-opentype"), url(/static/media/open-sans-v15-latin-300.5278c0f6.woff2) format("woff2"), url(/static/media/open-sans-v15-latin-300.624b3c98.woff) format("woff"), url(/static/media/open-sans-v15-latin-300.2289b94b.ttf) format("truetype"), url(/static/media/open-sans-v15-latin-300.74df0c40.svg#OpenSans) format("svg");
  /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url(/static/media/open-sans-v15-latin-regular.ee688541.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url(/static/media/open-sans-v15-latin-regular.ee688541.eot?#iefix) format("embedded-opentype"), url(/static/media/open-sans-v15-latin-regular.3b98b0dc.woff2) format("woff2"), url(/static/media/open-sans-v15-latin-regular.054349dd.woff) format("woff"), url(/static/media/open-sans-v15-latin-regular.927658fe.ttf) format("truetype"), url(/static/media/open-sans-v15-latin-regular.f8396d83.svg#OpenSans) format("svg");
  /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url(/static/media/open-sans-v15-latin-700.625d0421.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(/static/media/open-sans-v15-latin-700.625d0421.eot?#iefix) format("embedded-opentype"), url(/static/media/open-sans-v15-latin-700.482994b9.woff2) format("woff2"), url(/static/media/open-sans-v15-latin-700.5e03e0c7.woff) format("woff"), url(/static/media/open-sans-v15-latin-700.0782a521.ttf) format("truetype"), url(/static/media/open-sans-v15-latin-700.7e40ecf3.svg#OpenSans) format("svg");
  /* Legacy iOS */
}
* {
  box-sizing: border-box;
}

body .p-component {
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  text-decoration: none;
}
body a {
  color: #007ad9;
  text-decoration: none;
}
body a:hover {
  color: #116fbf;
}
body a:active {
  color: #005b9f;
}
body .p-disabled, body .p-component:disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
body .pi {
  font-size: 1.25em;
}
body .p-link {
  font-size: 14px;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  border-radius: 3px;
}
body .p-link:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}

body {
  /* Validations */
}
body .p-inputtext {
  font-size: 14px;
  color: #333333;
  background: #ffffff;
  padding: 0.429em;
  border: 1px solid #a6a6a6;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  border-radius: 3px;
}
body .p-inputtext:enabled:hover {
  border-color: #212121;
}
body .p-inputtext:enabled:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  border-color: #007ad9;
}
body .p-checkbox {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  width: 20px;
  height: 20px;
}
body .p-checkbox .p-checkbox-box {
  border: 1px solid #a6a6a6;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 3px;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
body .p-checkbox .p-checkbox-box:not(.p-disabled):hover {
  border-color: #212121;
}
body .p-checkbox .p-checkbox-box:not(.p-disabled).p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  border-color: #007ad9;
}
body .p-checkbox .p-checkbox-box.p-highlight {
  border-color: #007ad9;
  background-color: #007ad9;
  color: #ffffff;
}
body .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover {
  border-color: #005b9f;
  background-color: #005b9f;
  color: #ffffff;
}
body .p-checkbox .p-checkbox-box .p-checkbox-icon {
  overflow: hidden;
  position: relative;
  font-size: 18px;
}
body .p-checkbox-label {
  margin: 0 0 0 0.5em;
}
body .p-radiobutton {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  width: 20px;
  height: 20px;
}
body .p-radiobutton .p-radiobutton-box {
  border: 1px solid #a6a6a6;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  text-align: center;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
  border-radius: 50%;
}
body .p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover {
  border-color: #212121;
}
body .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  border-color: #007ad9;
}
body .p-radiobutton .p-radiobutton-box.p-highlight {
  border-color: #007ad9;
  background-color: #007ad9;
  color: #ffffff;
}
body .p-radiobutton .p-radiobutton-box.p-highlight .p-radiobutton-icon {
  background-color: #ffffff;
}
body .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover {
  border-color: #005b9f;
  background-color: #005b9f;
  color: #ffffff;
}
body .p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
  background: transparent;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -5px;
  transition: background-color 0.2s;
  border-radius: 50%;
}
body .p-radiobutton .p-radiobutton-box .p-radiobutton-icon:before {
  display: none;
}
body .p-radiobutton-label {
  margin: 0 0 0 0.5em;
}
body .p-inputswitch {
  width: 3em;
  height: 1.75em;
}
body .p-inputswitch .p-inputswitch-slider {
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 30px;
  background: #cccccc;
}
body .p-inputswitch .p-inputswitch-slider:before {
  background-color: #ffffff;
  height: 1.25em;
  width: 1.25em;
  left: 0.25em;
  bottom: 0.25em;
  border-radius: 50%;
  transition: 0.2s;
}
body .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before {
  transform: translateX(1.25em);
}
body .p-inputswitch.p-inputswitch-focus .p-inputswitch-slider {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider {
  background-color: #b7b7b7;
}
body .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider {
  background-color: #007ad9;
}
body .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider {
  background-color: #116fbf;
}
body .p-autocomplete .p-autocomplete-input {
  padding: 0.429em;
}
body .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container {
  padding: 0.2145em 0.429em;
}
body .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container:not(.p-disabled):hover {
  border-color: #212121;
}
body .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container:not(.p-disabled).p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  border-color: #007ad9;
}
body .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-input-token {
  margin: 0;
  padding: 0.2145em 0;
  color: #333333;
}
body .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-input-token input {
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
body .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token {
  font-size: 14px;
  padding: 0.2145em 0.429em;
  margin: 0 0.286em 0 0;
  background: #007ad9;
  color: #ffffff;
  border-radius: 3px;
}
body .p-autocomplete-panel {
  padding: 0;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-autocomplete-panel .p-autocomplete-items {
  padding: 0;
}
body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-list-item {
  margin: 0;
  padding: 0.429em 0.857em;
  border: 0 none;
  color: #333333;
  background-color: transparent;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-list-item:hover {
  color: #333333;
  background-color: #eaeaea;
}
body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-list-item.p-highlight {
  color: #ffffff;
  background-color: #007ad9;
}
body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-group {
  padding: 0.429em 0.857em;
  background-color: #d8dae2;
  color: #333333;
}
body .p-fluid .p-autocomplete .p-autocomplete-dropdown.p-button {
  width: 2.357em;
}
body .p-fluid .p-autocomplete.p-autocomplete-multiple.p-autocomplete-dd .p-autocomplete-multiple-container {
  border-right: 0 none;
  width: calc(100% - 2.357em);
}
body .p-fluid .p-autocomplete.p-autocomplete-dd .p-inputtext {
  border-right: 0 none;
  width: calc(100% - 2.357em);
}
body .p-chips > ul.p-inputtext {
  padding: 0.2145em 0.429em;
  display: inline-block;
}
body .p-chips > ul.p-inputtext:not(.p-disabled):hover {
  border-color: #212121;
}
body .p-chips > ul.p-inputtext:not(.p-disabled).p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  border-color: #007ad9;
}
body .p-chips > ul.p-inputtext .p-chips-input-token {
  padding: 0.2145em 0;
}
body .p-chips > ul.p-inputtext .p-chips-input-token input {
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  padding: 0;
  margin: 0;
  color: #333333;
}
body .p-chips > ul.p-inputtext .p-chips-input-token input:hover {
  border: 0 none;
}
body .p-chips > ul.p-inputtext .p-chips-input-token input:focus {
  box-shadow: none;
  outline: 0 none;
  border: 0 none;
}
body .p-chips > ul.p-inputtext .p-chips-token {
  font-size: 14px;
  padding: 0.2145em 0.429em;
  margin: 0 0.286em 0 0;
  background: #007ad9;
  color: #ffffff;
  border-radius: 3px;
}
body .p-dropdown {
  background: #ffffff;
  border: 1px solid #a6a6a6;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 3px;
}
body .p-dropdown:not(.p-disabled):hover {
  border-color: #212121;
}
body .p-dropdown:not(.p-disabled).p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  border-color: #007ad9;
}
body .p-dropdown .p-dropdown-label {
  padding-right: 2em;
}
body .p-dropdown .p-dropdown-label:focus {
  outline: 0 none;
  box-shadow: none;
}
body .p-dropdown .p-dropdown-trigger {
  background-color: #ffffff;
  width: 2em;
  line-height: 2em;
  text-align: center;
  padding: 0;
  color: #848484;
  border-radius: 3px;
}
body .p-dropdown .p-dropdown-clear-icon {
  color: #848484;
}
body .p-dropdown-panel {
  padding: 0;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-dropdown-panel .p-dropdown-filter-container {
  padding: 0.429em 0.857em 0.429em 0.857em;
  border-bottom: 1px solid #eaeaea;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
}
body .p-dropdown-panel .p-dropdown-filter-container .p-dropdown-filter {
  width: 100%;
  padding-right: 2em;
}
body .p-dropdown-panel .p-dropdown-filter-container .p-dropdown-filter-icon {
  top: 50%;
  margin-top: -0.5em;
  right: 1.357em;
  color: #007ad9;
}
body .p-dropdown-panel .p-dropdown-items {
  padding: 0;
}
body .p-dropdown-panel .p-dropdown-items .p-dropdown-item, body .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
  margin: 0;
  padding: 0.429em 0.857em;
  border: 0 none;
  color: #333333;
  background-color: transparent;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
body .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight, body .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group.p-highlight {
  color: #ffffff;
  background-color: #007ad9;
}
body .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover, body .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group:not(.p-highlight):not(.p-disabled):hover {
  color: #333333;
  background-color: #eaeaea;
}
body .p-multiselect {
  background: #ffffff;
  border: 1px solid #a6a6a6;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 3px;
}
body .p-multiselect:not(.p-disabled):hover {
  border-color: #212121;
}
body .p-multiselect:not(.p-disabled).p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  border-color: #007ad9;
}
body .p-multiselect .p-multiselect-label {
  padding: 0.429em;
  padding-right: 2em;
  font-weight: 400;
  color: #333333;
}
body .p-multiselect .p-multiselect-trigger {
  background-color: #ffffff;
  width: 2em;
  line-height: 2em;
  text-align: center;
  padding: 0;
  color: #848484;
  border-radius: 3px;
}
body .p-multiselect-panel {
  padding: 0;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-multiselect-panel .p-multiselect-header {
  padding: 0.429em 0.857em 0.429em 0.857em;
  border-bottom: 1px solid #eaeaea;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
}
body .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container {
  float: none;
  width: 70%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}
body .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext {
  padding: 0.429em;
  padding-right: 2em;
}
body .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon {
  color: #007ad9;
  top: 50%;
  margin-top: -0.5em;
  right: 0.5em;
  left: auto;
}
body .p-multiselect-panel .p-multiselect-header .p-checkbox {
  margin-right: 0.5em;
  float: none;
  vertical-align: middle;
}
body .p-multiselect-panel .p-multiselect-header .p-multiselect-close {
  color: #848484;
  top: 50%;
  margin-top: -0.5em;
  transition: box-shadow 0.2s;
}
body .p-multiselect-panel .p-multiselect-items {
  padding: 0;
}
body .p-multiselect-panel .p-multiselect-items .p-multiselect-item {
  margin: 0;
  padding: 0.429em 0.857em;
  border: 0 none;
  color: #333333;
  background-color: transparent;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
body .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover {
  color: #333333;
  background-color: #eaeaea;
}
body .p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}
body .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight {
  color: #ffffff;
  background-color: #007ad9;
}
body .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em 0 0;
}
body .p-multiselect-panel .p-multiselect-items .p-multiselect-item label {
  display: inline-block;
  vertical-align: middle;
}
body .p-listbox {
  padding: 0;
  min-width: 12em;
  background: #ffffff;
  border: 1px solid #a6a6a6;
}
body .p-listbox .p-checkbox {
  margin: 0 0.5em 0 0;
}
body .p-listbox .p-listbox-header {
  padding: 0.429em 0.857em 0.429em 0.857em;
  border-bottom: 1px solid #eaeaea;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-listbox .p-listbox-header .p-listbox-filter-container input {
  padding: 0.429em;
  padding-right: 2em;
}
body .p-listbox .p-listbox-header .p-listbox-filter-container .p-listbox-filter-icon {
  top: 50%;
  left: auto;
  margin-top: -0.5em;
  right: 0.5em;
  color: #007ad9;
}
body .p-listbox .p-listbox-list {
  background-color: #ffffff;
}
body .p-listbox .p-listbox-list .p-listbox-item {
  margin: 0;
  padding: 0.429em 0.857em;
  border: 0 none;
  color: #333333;
  background-color: transparent;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
body .p-listbox .p-listbox-list .p-listbox-item.p-highlight {
  color: #ffffff;
  background-color: #007ad9;
}
body .p-listbox .p-listbox-list .p-listbox-item:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}
body .p-listbox .p-listbox-list .p-listbox-item .p-checkbox {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em 0 0;
}
body .p-listbox .p-listbox-list .p-listbox-item label {
  display: inline-block;
  vertical-align: middle;
}
body .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover {
  color: #333333;
  background-color: #eaeaea;
}
body .p-listbox.p-disabled .p-checkbox-box:not(.p-disabled):not(.p-highlight):hover {
  border: 1px solid #a6a6a6;
}
body .p-listbox .p-listbox-footer {
  padding: 0.429em 0.857em 0.429em 0.857em;
  border-top: 1px solid #eaeaea;
  color: #333333;
  background-color: #ffffff;
}
body .p-editor-container .p-editor-toolbar {
  border: 1px solid #c8c8c8;
  background-color: #f4f4f4;
}
body .p-editor-container .p-editor-content {
  border: 1px solid #c8c8c8;
}
body .p-editor-container .p-editor-content .ql-editor {
  background-color: #ffffff;
  color: #333333;
}
body .p-editor-container .ql-picker.ql-expanded .ql-picker-label {
  color: #333333;
}
body .p-editor-container .ql-stroke {
  stroke: #333333;
}
body .p-editor-container .ql-picker-label {
  color: #333333;
}
body .p-editor-container .ql-snow.ql-toolbar button:hover,
body .p-editor-container .ql-snow .ql-toolbar button:hover,
body .p-editor-container .ql-snow.ql-toolbar button.ql-active,
body .p-editor-container .ql-snow .ql-toolbar button.ql-active,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-label:hover,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-label:hover,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-label.ql-active,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-item:hover,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-item:hover,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #007ad9;
}
body .p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke,
body .p-editor-container .ql-snow .ql-toolbar button:hover .ql-stroke,
body .p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke,
body .p-editor-container .ql-snow .ql-toolbar button.ql-active .ql-stroke,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
body .p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke-miter,
body .p-editor-container .ql-snow .ql-toolbar button:hover .ql-stroke-miter,
body .p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
body .p-editor-container .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
body .p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
body .p-editor-container .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #007ad9;
}
body .p-rating .p-rating-icon {
  font-size: 20px;
  text-align: center;
  display: inline-block;
  color: #333333;
  border-radius: 3px;
  transition: color 0.2s, box-shadow 0.2s;
}
body .p-rating .p-rating-icon.p-rating-cancel {
  color: #e4018d;
}
body .p-rating .p-rating-icon:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-rating:not(.p-disabled):not(.p-rating-readonly) .p-rating-icon:hover {
  color: #007ad9;
}
body .p-rating:not(.p-disabled):not(.p-rating-readonly) .p-rating-icon.p-rating-cancel:hover {
  color: #b5019f;
}
body .p-spinner .p-spinner-input {
  padding-right: 2.429em;
}
body .p-spinner .p-spinner-button {
  width: 2em;
}
body .p-spinner .p-spinner-button .p-spinner-button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  width: 1em;
}
body .p-spinner .p-spinner-button.p-spinner-button {
  border-radius: 0;
}
body .p-spinner .p-spinner-button.p-spinner-button.p-spinner-button-up {
  border-top-right-radius: 3px;
}
body .p-spinner .p-spinner-button.p-spinner-button.p-spinner-button-down {
  border-bottom-right-radius: 3px;
}
body .p-spinner .p-spinner-button.p-spinner-button:focus {
  z-index: 1;
}
body .p-fluid .p-spinner .p-spinner-input {
  padding-right: 2.429em;
}
body .p-fluid .p-spinner .p-spinner-button {
  width: 2em;
}
body .p-fluid .p-spinner .p-spinner-button .p-spinner-button-icon {
  left: 50%;
}
body .p-slider {
  background-color: #c8c8c8;
  border: 0 none;
}
body .p-slider.p-slider-horizontal {
  height: 0.286em;
}
body .p-slider.p-slider-horizontal .p-slider-handle {
  top: 50%;
  margin-top: -0.5715em;
}
body .p-slider.p-slider-vertical {
  width: 0.286em;
}
body .p-slider.p-slider-vertical .p-slider-handle {
  left: 50%;
  margin-left: -0.5715em;
}
body .p-slider .p-slider-handle {
  height: 1.143em;
  width: 1.143em;
  background-color: #ffffff;
  border: 2px solid #666666;
  border-radius: 100%;
  transition: box-shadow 0.2s;
}
body .p-slider .p-slider-handle:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-slider .p-slider-range {
  background-color: #007ad9;
}
body .p-slider:not(.p-disabled) .p-slider-handle:hover {
  background-color: 2px solid #666666;
  border: 2px solid #007ad9;
}
body .p-datepicker {
  padding: 0.857em;
  min-width: 20em;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #a6a6a6;
  border-radius: 3px;
}
body .p-datepicker:not(.p-datepicker-inline) {
  border: 1px solid #c8c8c8;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-datepicker:not(.p-disabled) .p-datepicker-header .p-datepicker-prev:hover,
body .p-datepicker:not(.p-disabled) .p-datepicker-header .p-datepicker-next:hover {
  color: #007ad9;
}
body .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
  background-color: #eaeaea;
}
body .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):hover {
  background-color: #eaeaea;
}
body .p-datepicker .p-datepicker-header {
  padding: 0.429em 0.857em 0.429em 0.857em;
  background-color: #ffffff;
  color: #333333;
  border-radius: 0;
}
body .p-datepicker .p-datepicker-header .p-datepicker-prev,
body .p-datepicker .p-datepicker-header .p-datepicker-next {
  cursor: pointer;
  top: 0;
  color: #a6a6a6;
  transition: color 0.2s, box-shadow 0.2s;
}
body .p-datepicker .p-datepicker-header .p-datepicker-title {
  margin: 0;
  padding: 0;
  line-height: 1;
}
body .p-datepicker .p-datepicker-header .p-datepicker-title select {
  margin-top: -0.35em;
  margin-bottom: 0;
}
body .p-datepicker table {
  font-size: 14px;
  margin: 0.857em 0 0 0;
}
body .p-datepicker table th {
  padding: 0.5em;
}
body .p-datepicker table th.p-datepicker-weekheader {
  border-right: 1px solid #a6a6a6;
}
body .p-datepicker table td {
  padding: 0.5em;
}
body .p-datepicker table td > span {
  display: block;
  text-align: center;
  color: #333333;
  cursor: pointer;
  padding: 0.5em;
  border-radius: 3px;
}
body .p-datepicker table td > span.p-highlight {
  color: #ffffff;
  background-color: #007ad9;
}
body .p-datepicker table td.p-datepicker-today > span {
  background-color: #d0d0d0;
  color: #333333;
}
body .p-datepicker table td.p-datepicker-today > span.p-highlight {
  color: #ffffff;
  background-color: #007ad9;
}
body .p-datepicker table td.p-datepicker-weeknumber {
  border-right: 1px solid #a6a6a6;
}
body .p-datepicker .p-datepicker-buttonbar {
  border-top: 1px solid #d8dae2;
}
body .p-datepicker .p-timepicker {
  border: 0 none;
  border-top: 1px solid #d8dae2;
  padding: 0.857em;
}
body .p-datepicker .p-timepicker button {
  color: #a6a6a6;
  font-size: 1.286em;
  transition: color 0.2s, box-shadow 0.2s;
}
body .p-datepicker .p-timepicker button:hover {
  color: #007ad9;
}
body .p-datepicker .p-timepicker span {
  font-size: 1.286em;
}
body .p-datepicker .p-monthpicker .p-monthpicker-month {
  color: #333333;
}
body .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight {
  color: #ffffff;
  background-color: #007ad9;
}
body .p-datepicker.p-datepicker-timeonly {
  padding: 0;
}
body .p-datepicker.p-datepicker-timeonly .p-timepicker {
  border-top: 0 none;
}
body .p-datepicker.p-datepicker-multiple-month .p-datepicker-group {
  border-right: 1px solid #d8dae2;
  padding-right: 0.857em;
  padding-left: 0.857em;
  padding-top: 0;
  padding-bottom: 0;
}
body .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child {
  padding-left: 0;
}
body .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
  padding-right: 0;
  border-right: 0 none;
}
body .p-calendar.p-calendar-w-btn .p-inputtext {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0 none;
}
body .p-calendar.p-calendar-w-btn .p-inputtext:enabled:hover:not(.p-error), body .p-calendar.p-calendar-w-btn .p-inputtext:enabled:focus:not(.p-error) {
  border-right: 0 none;
}
body .p-calendar.p-calendar-w-btn .p-datepicker-trigger.p-button {
  width: 2.357em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body .p-fluid .p-calendar.p-calendar-w-btn .p-inputtext {
  width: calc(100% - 2.357em);
}
body .p-fileupload .p-fileupload-buttonbar {
  background-color: #f4f4f4;
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  color: #333333;
  border-bottom: 0 none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-fileupload .p-fileupload-buttonbar .p-button {
  margin-right: 8px;
}
body .p-fileupload .p-fileupload-buttonbar .p-button.p-fileupload-choose.p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-fileupload .p-fileupload-content {
  background-color: #ffffff;
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  color: #333333;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-fileupload .p-progressbar {
  top: 0;
}
body .p-fileupload-choose:not(.p-disabled):hover {
  background-color: #116fbf;
  color: #ffffff;
  border-color: #116fbf;
}
body .p-fileupload-choose:not(.p-disabled):active {
  background-color: #005b9f;
  color: #ffffff;
  border-color: #005b9f;
}
body .p-password-panel {
  padding: 12px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #c8c8c8;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-inputgroup .p-inputgroup-addon {
  border-color: #a6a6a6;
  background-color: #eaeaea;
  color: #848484;
  padding: 0.429em;
  min-width: 2em;
}
body .p-inputgroup .p-inputgroup-addon:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
body .p-inputgroup .p-inputgroup-addon:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-inputgroup .p-inputgroup-addon.p-inputgroup-addon-checkbox {
  position: relative;
}
body .p-inputgroup .p-inputgroup-addon.p-inputgroup-addon-checkbox .p-checkbox {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
body .p-inputgroup .p-inputgroup-addon.p-inputgroup-addon-radiobutton {
  position: relative;
}
body .p-inputgroup .p-inputgroup-addon.p-inputgroup-addon-radiobutton .p-radiobutton {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
body .p-inputgroup .p-button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
body .p-inputgroup .p-button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-inputgroup .p-inputtext:focus {
  z-index: 1;
}
body .p-fluid .p-inputgroup .p-button {
  width: auto;
}
body .p-fluid .p-inputgroup .p-button.p-button-icon-only {
  width: 2.357em;
}
body ::-webkit-input-placeholder {
  color: #666666;
}
body :-moz-placeholder {
  color: #666666;
}
body ::-moz-placeholder {
  color: #666666;
}
body :-ms-input-placeholder {
  color: #666666;
}
body .p-inputtext.p-error,
body .p-dropdown.p-error,
body .p-autocomplete.p-error > .p-inputtext,
body .p-calendar.p-error > .p-inputtext,
body .p-chips.p-error > .p-inputtext,
body .p-checkbox.p-error > .p-checkbox-box,
body .p-radiobutton.p-error > .p-radiobutton-box,
body .p-inputswitch.p-error,
body .p-listbox.p-error,
body .p-multiselect.p-error,
body .p-spinner.p-error > .p-inputtext,
body .p-selectbutton.p-error > .p-button,
body .p-togglebutton.p-error > .p-button {
  border: 1px solid #a80000;
}

body .p-button {
  margin: 0;
  color: #ffffff;
  background-color: #007ad9;
  border: 1px solid #007ad9;
  font-size: 14px;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 3px;
}
body .p-button:enabled:hover {
  background-color: #116fbf;
  color: #ffffff;
  border-color: #116fbf;
}
body .p-button:enabled:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-button:enabled:active {
  background-color: #005b9f;
  color: #ffffff;
  border-color: #005b9f;
}
body .p-button.p-button-text-only .p-button-text {
  padding: 0.429em 1em;
}
body .p-button.p-button-text-icon-left .p-button-text {
  padding: 0.429em 1em 0.429em 2.25em;
}
body .p-button.p-button-text-icon-right .p-button-text {
  padding: 0.429em 2.25em 0.429em 1em;
}
body .p-button.p-button-icon-only {
  width: 2.357em;
}
body .p-button.p-button-icon-only .p-button-text {
  padding: 0.429em;
}
body .p-button.p-button-raised {
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
}
body .p-button.p-button-rounded {
  border-radius: 15px;
}
body .p-fluid .p-button-icon-only {
  width: 2.357em;
}
body .p-togglebutton {
  background-color: #dadada;
  border: 1px solid #dadada;
  color: #333333;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-togglebutton .p-button-icon-left {
  color: #666666;
}
body .p-togglebutton:not(.p-disabled):not(.p-highlight):hover {
  background-color: #c8c8c8;
  border-color: #c8c8c8;
  color: #333333;
}
body .p-togglebutton:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left {
  color: #212121;
}
body .p-togglebutton.p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-togglebutton.p-highlight {
  background-color: #007ad9;
  border-color: #007ad9;
  color: #ffffff;
}
body .p-togglebutton.p-highlight .p-button-icon-left {
  color: #ffffff;
}
body .p-togglebutton.p-highlight:hover {
  background-color: #116fbf;
  border-color: #116fbf;
  color: #ffffff;
}
body .p-togglebutton.p-highlight:hover .p-button-icon-left {
  color: #ffffff;
}
body .p-selectbutton .p-button {
  background-color: #dadada;
  border: 1px solid #dadada;
  color: #333333;
  outline: 0 none;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
body .p-selectbutton .p-button .p-button-icon-left {
  color: #666666;
}
body .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover {
  background-color: #c8c8c8;
  border-color: #c8c8c8;
  color: #333333;
}
body .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left {
  color: #212121;
}
body .p-selectbutton .p-button.p-focus, body .p-selectbutton .p-button:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  z-index: 1;
}
body .p-selectbutton .p-button.p-highlight {
  background-color: #007ad9;
  border-color: #007ad9;
  color: #ffffff;
}
body .p-selectbutton .p-button.p-highlight .p-button-icon-left {
  color: #ffffff;
}
body .p-selectbutton .p-button.p-highlight:not(.p-disabled):hover {
  background-color: #116fbf;
  border-color: #116fbf;
  color: #ffffff;
}
body .p-selectbutton .p-button.p-highlight:not(.p-disabled):hover .p-button-icon-left {
  color: #ffffff;
}
body .p-selectbutton .p-button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
body .p-selectbutton .p-button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-splitbutton.p-buttonset .p-button {
  border: 1px solid transparent;
}
body .p-splitbutton.p-buttonset .p-button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body .p-splitbutton.p-buttonset .p-button.p-splitbutton-menubutton {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body .p-splitbutton.p-buttonset .p-button:focus {
  z-index: 1;
}
body .p-splitbutton.p-buttonset .p-menu {
  min-width: 100%;
}
body .p-splitbutton.p-buttonset .p-splitbutton-menubutton .p-button-icon-left:before {
  content: "\E902";
}
body .p-button.p-button-secondary, body .p-buttonset.p-button-secondary > .p-button {
  color: #333333;
  background-color: #f4f4f4;
  border: 1px solid #f4f4f4;
}
body .p-button.p-button-secondary:enabled:hover, body .p-buttonset.p-button-secondary > .p-button:enabled:hover {
  background-color: #c8c8c8;
  color: #333333;
  border-color: #c8c8c8;
}
body .p-button.p-button-secondary:enabled:focus, body .p-buttonset.p-button-secondary > .p-button:enabled:focus {
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-button.p-button-secondary:enabled:active, body .p-buttonset.p-button-secondary > .p-button:enabled:active {
  background-color: #a0a0a0;
  color: #333333;
  border-color: #a0a0a0;
}
body .p-button.p-button-info, body .p-buttonset.p-button-info > .p-button {
  color: #ffffff;
  background-color: #007ad9;
  border: 1px solid #007ad9;
}
body .p-button.p-button-info:enabled:hover, body .p-buttonset.p-button-info > .p-button:enabled:hover {
  background-color: #116fbf;
  color: #ffffff;
  border-color: #116fbf;
}
body .p-button.p-button-info:enabled:focus, body .p-buttonset.p-button-info > .p-button:enabled:focus {
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-button.p-button-info:enabled:active, body .p-buttonset.p-button-info > .p-button:enabled:active {
  background-color: #005b9f;
  color: #ffffff;
  border-color: #005b9f;
}
body .p-button.p-button-success, body .p-buttonset.p-button-success > .p-button {
  color: #ffffff;
  background-color: #34A835;
  border: 1px solid #34A835;
}
body .p-button.p-button-success:enabled:hover, body .p-buttonset.p-button-success > .p-button:enabled:hover {
  background-color: #107D11;
  color: #ffffff;
  border-color: #107D11;
}
body .p-button.p-button-success:enabled:focus, body .p-buttonset.p-button-success > .p-button:enabled:focus {
  box-shadow: 0 0 0 0.2em #aae5aa;
}
body .p-button.p-button-success:enabled:active, body .p-buttonset.p-button-success > .p-button:enabled:active {
  background-color: #0C6B0D;
  color: #ffffff;
  border-color: #0C6B0D;
}
body .p-button.p-button-warning, body .p-buttonset.p-button-warning > .p-button {
  color: #333333;
  background-color: #ffba01;
  border: 1px solid #ffba01;
}
body .p-button.p-button-warning:enabled:hover, body .p-buttonset.p-button-warning > .p-button:enabled:hover {
  background-color: #ED990B;
  color: #333333;
  border-color: #ED990B;
}
body .p-button.p-button-warning:enabled:focus, body .p-buttonset.p-button-warning > .p-button:enabled:focus {
  box-shadow: 0 0 0 0.2em #ffeab4;
}
body .p-button.p-button-warning:enabled:active, body .p-buttonset.p-button-warning > .p-button:enabled:active {
  background-color: #D38B10;
  color: #333333;
  border-color: #D38B10;
}
body .p-button.p-button-danger, body .p-buttonset.p-button-danger > .p-button {
  color: #ffffff;
  background-color: #e91224;
  border: 1px solid #e91224;
}
body .p-button.p-button-danger:enabled:hover, body .p-buttonset.p-button-danger > .p-button:enabled:hover {
  background-color: #c01120;
  color: #ffffff;
  border-color: #c01120;
}
body .p-button.p-button-danger:enabled:focus, body .p-buttonset.p-button-danger > .p-button:enabled:focus {
  box-shadow: 0 0 0 0.2em #f9b4ba;
}
body .p-button.p-button-danger:enabled:active, body .p-buttonset.p-button-danger > .p-button:enabled:active {
  background-color: #a90000;
  color: #ffffff;
  border-color: #a90000;
}

body .p-panel {
  padding: 0;
  border: 0 none;
}
body .p-panel .p-panel-titlebar {
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  background-color: #f4f4f4;
  color: #333333;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body .p-panel .p-panel-titlebar .p-panel-title {
  vertical-align: middle;
  font-weight: 700;
}
body .p-panel .p-panel-titlebar .p-panel-titlebar-icon {
  margin: 0.143em 0 0 0;
  position: relative;
  font-size: 14px;
  color: #848484;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: color 0.2s, box-shadow 0.2s;
}
body .p-panel .p-panel-titlebar .p-panel-titlebar-icon:hover {
  color: #333333;
}
body .p-panel .p-panel-titlebar .p-panel-titlebar-icon:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-panel .p-panel-content {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  border-top: 0 none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-panel .p-panel-footer {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  border-top: 0 none;
  margin: 0;
}
body .p-fieldset {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  border-radius: 3px;
}
body .p-fieldset .p-fieldset-legend a {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  color: #333333;
  background-color: #f4f4f4;
  font-weight: 700;
  border-radius: 3px;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-fieldset .p-fieldset-legend a .p-fieldset-toggler {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
  color: #848484;
}
body .p-fieldset .p-fieldset-legend a .p-fieldset-legend-text {
  padding: 0;
}
body .p-fieldset .p-fieldset-legend a:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:hover {
  background-color: #dbdbdb;
  border: 1px solid #dbdbdb;
  color: #333333;
}
body .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:hover .p-fieldset-toggler {
  color: #333333;
}
body .p-fieldset .p-fieldset-content {
  padding: 0;
}
body .p-accordion .p-accordion-tab {
  margin-bottom: 2px;
}
body .p-accordion .p-accordion-header a {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  color: #333333;
  background-color: #f4f4f4;
  color: #333333;
  font-weight: 700;
  border-radius: 3px;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-accordion .p-accordion-header a .p-accordion-toggle-icon {
  color: #848484;
}
body .p-accordion .p-accordion-header a .p-accordion-toggle-icon.pi-caret-right:before {
  content: "\E901";
}
body .p-accordion .p-accordion-header a .p-accordion-toggle-icon.pi-caret-down:before {
  content: "\E902";
}
body .p-accordion .p-accordion-header:not(.p-disabled) a:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover a {
  background-color: #dbdbdb;
  border: 1px solid #dbdbdb;
  color: #333333;
}
body .p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover a .p-accordion-toggle-icon {
  color: #333333;
}
body .p-accordion .p-accordion-header:not(.p-disabled).p-highlight {
  margin-bottom: 0;
}
body .p-accordion .p-accordion-header:not(.p-disabled).p-highlight a {
  background-color: #007ad9;
  border: 1px solid #007ad9;
  color: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body .p-accordion .p-accordion-header:not(.p-disabled).p-highlight a .p-accordion-toggle-icon {
  color: #ffffff;
}
body .p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover a {
  border: 1px solid #005b9f;
  background-color: #005b9f;
  color: #ffffff;
}
body .p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover a .p-accordion-toggle-icon {
  color: #ffffff;
}
body .p-accordion .p-accordion-content {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-tabview.p-tabview-top, body .p-tabview.p-tabview-bottom, body .p-tabview.p-tabview-left, body .p-tabview.p-tabview-right {
  border: 0 none;
}
body .p-tabview.p-tabview-top .p-tabview-nav, body .p-tabview.p-tabview-bottom .p-tabview-nav, body .p-tabview.p-tabview-left .p-tabview-nav, body .p-tabview.p-tabview-right .p-tabview-nav {
  padding: 0;
  background: transparent;
  border: 0 none;
}
body .p-tabview.p-tabview-top .p-tabview-nav li a, body .p-tabview.p-tabview-bottom .p-tabview-nav li a, body .p-tabview.p-tabview-left .p-tabview-nav li a, body .p-tabview.p-tabview-right .p-tabview-nav li a {
  border: 1px solid #c8c8c8;
  background-color: #f4f4f4;
  float: none;
  display: inline-block;
  color: #333333;
  padding: 0.571em 1em;
  font-weight: 700;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-tabview.p-tabview-top .p-tabview-nav li a .p-tabview-left-icon, body .p-tabview.p-tabview-bottom .p-tabview-nav li a .p-tabview-left-icon, body .p-tabview.p-tabview-left .p-tabview-nav li a .p-tabview-left-icon, body .p-tabview.p-tabview-right .p-tabview-nav li a .p-tabview-left-icon {
  margin-right: 0.5em;
}
body .p-tabview.p-tabview-top .p-tabview-nav li a .p-tabview-right-icon, body .p-tabview.p-tabview-bottom .p-tabview-nav li a .p-tabview-right-icon, body .p-tabview.p-tabview-left .p-tabview-nav li a .p-tabview-right-icon, body .p-tabview.p-tabview-right .p-tabview-nav li a .p-tabview-right-icon {
  margin-left: 0.5em;
}
body .p-tabview.p-tabview-top .p-tabview-nav li a:not(.p-disabled):focus, body .p-tabview.p-tabview-bottom .p-tabview-nav li a:not(.p-disabled):focus, body .p-tabview.p-tabview-left .p-tabview-nav li a:not(.p-disabled):focus, body .p-tabview.p-tabview-right .p-tabview-nav li a:not(.p-disabled):focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-tabview.p-tabview-top .p-tabview-nav li .p-tabview-close, body .p-tabview.p-tabview-bottom .p-tabview-nav li .p-tabview-close, body .p-tabview.p-tabview-left .p-tabview-nav li .p-tabview-close, body .p-tabview.p-tabview-right .p-tabview-nav li .p-tabview-close {
  color: #848484;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
}
body .p-tabview.p-tabview-top .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover a, body .p-tabview.p-tabview-bottom .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover a, body .p-tabview.p-tabview-left .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover a, body .p-tabview.p-tabview-right .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover a {
  background-color: #dbdbdb;
  border: 1px solid #dbdbdb;
  color: #333333;
}
body .p-tabview.p-tabview-top .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-close, body .p-tabview.p-tabview-bottom .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-close, body .p-tabview.p-tabview-left .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-close, body .p-tabview.p-tabview-right .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-close {
  color: #333333;
}
body .p-tabview.p-tabview-top .p-tabview-nav li.p-highlight a, body .p-tabview.p-tabview-bottom .p-tabview-nav li.p-highlight a, body .p-tabview.p-tabview-left .p-tabview-nav li.p-highlight a, body .p-tabview.p-tabview-right .p-tabview-nav li.p-highlight a {
  background-color: #007ad9;
  border: 1px solid #007ad9;
  color: #ffffff;
}
body .p-tabview.p-tabview-top .p-tabview-nav li.p-highlight .p-tabview-close, body .p-tabview.p-tabview-bottom .p-tabview-nav li.p-highlight .p-tabview-close, body .p-tabview.p-tabview-left .p-tabview-nav li.p-highlight .p-tabview-close, body .p-tabview.p-tabview-right .p-tabview-nav li.p-highlight .p-tabview-close {
  color: #ffffff;
}
body .p-tabview.p-tabview-top .p-tabview-nav li.p-highlight:hover a, body .p-tabview.p-tabview-bottom .p-tabview-nav li.p-highlight:hover a, body .p-tabview.p-tabview-left .p-tabview-nav li.p-highlight:hover a, body .p-tabview.p-tabview-right .p-tabview-nav li.p-highlight:hover a {
  border: 1px solid #005b9f;
  background-color: #005b9f;
  color: #ffffff;
}
body .p-tabview.p-tabview-top .p-tabview-nav li.p-highlight:hover a .p-tabview-left-icon, body .p-tabview.p-tabview-top .p-tabview-nav li.p-highlight:hover a .p-tabview-right-icon, body .p-tabview.p-tabview-bottom .p-tabview-nav li.p-highlight:hover a .p-tabview-left-icon, body .p-tabview.p-tabview-bottom .p-tabview-nav li.p-highlight:hover a .p-tabview-right-icon, body .p-tabview.p-tabview-left .p-tabview-nav li.p-highlight:hover a .p-tabview-left-icon, body .p-tabview.p-tabview-left .p-tabview-nav li.p-highlight:hover a .p-tabview-right-icon, body .p-tabview.p-tabview-right .p-tabview-nav li.p-highlight:hover a .p-tabview-left-icon, body .p-tabview.p-tabview-right .p-tabview-nav li.p-highlight:hover a .p-tabview-right-icon {
  color: #ffffff;
}
body .p-tabview.p-tabview-top .p-tabview-nav li.p-tabview-selected a, body .p-tabview.p-tabview-bottom .p-tabview-nav li.p-tabview-selected a, body .p-tabview.p-tabview-left .p-tabview-nav li.p-tabview-selected a, body .p-tabview.p-tabview-right .p-tabview-nav li.p-tabview-selected a {
  cursor: pointer;
}
body .p-tabview.p-tabview-top .p-tabview-nav {
  margin-bottom: -1px;
}
body .p-tabview.p-tabview-top .p-tabview-nav li a {
  margin-right: 2px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-tabview.p-tabview-bottom .p-tabview-nav {
  margin-top: -1px;
}
body .p-tabview.p-tabview-bottom .p-tabview-nav li a {
  margin-right: 2px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-tabview.p-tabview-left .p-tabview-nav {
  margin-right: -px;
}
body .p-tabview.p-tabview-left .p-tabview-nav li a {
  margin-bottom: 2px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
body .p-tabview.p-tabview-right .p-tabview-nav {
  margin-right: -1px;
}
body .p-tabview.p-tabview-right .p-tabview-nav li a {
  margin-bottom: 2px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-tabview .p-tabview-panels {
  background-color: #ffffff;
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  color: #333333;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-tabview .p-tabview-panels .p-tabview-panel {
  padding: 0;
}
body .p-toolbar {
  background-color: #f4f4f4;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  border-radius: 3px;
}
body .p-toolbar button {
  vertical-align: middle;
}
body .p-toolbar .p-toolbar-separator {
  vertical-align: middle;
  color: #848484;
  margin: 0 0.5em;
}
body .p-card {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}

body .p-paginator {
  background-color: #f4f4f4;
  border: 1px solid #c8c8c8;
  padding: 0;
}
body .p-paginator .p-paginator-first,
body .p-paginator .p-paginator-prev,
body .p-paginator .p-paginator-next,
body .p-paginator .p-paginator-last {
  color: #848484;
  height: 2.286em;
  min-width: 2.286em;
  border: 0 none;
  line-height: 2.286em;
  padding: 0;
  margin: 0;
  vertical-align: top;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
body .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover,
body .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover,
body .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover,
body .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover {
  background-color: #e0e0e0;
  color: #333333;
}
body .p-paginator .p-dropdown {
  border: 0 none;
}
body .p-paginator .p-dropdown .p-dropdown-trigger, body .p-paginator .p-dropdown .p-dropdown-label {
  color: #848484;
}
body .p-paginator .p-dropdown:hover .p-dropdown-trigger, body .p-paginator .p-dropdown:hover .p-dropdown-label {
  color: #333333;
}
body .p-paginator .p-paginator-first:before {
  position: relative;
  top: 1px;
}
body .p-paginator .p-paginator-prev:before {
  position: relative;
}
body .p-paginator .p-paginator-next:before {
  position: relative;
  top: 1px;
}
body .p-paginator .p-paginator-last:before {
  position: relative;
  top: 1px;
}
body .p-paginator .p-paginator-current {
  vertical-align: top;
  display: inline-block;
  height: 2.286em;
  min-width: 2.286em;
  border: 0 none;
  line-height: 2.286em;
}
body .p-paginator .p-paginator-pages {
  vertical-align: top;
  display: inline-block;
  padding: 0;
}
body .p-paginator .p-paginator-pages .p-paginator-page {
  color: #848484;
  height: 2.286em;
  min-width: 2.286em;
  border: 0 none;
  line-height: 2.286em;
  padding: 0;
  margin: 0;
  vertical-align: top;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
body .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover {
  background-color: #e0e0e0;
  color: #333333;
}
body .p-paginator .p-dropdown {
  margin-left: 0.5em;
  height: 2.286em;
  min-width: auto;
}
body .p-datatable .p-datatable-header,
body .p-datatable .p-datatable-footer {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  text-align: center;
}
body .p-datatable .p-datatable-header {
  border-bottom: 0 none;
  font-weight: 700;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-datatable .p-datatable-footer {
  border-top: 0 none;
  font-weight: 700;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-datatable .p-datatable-thead > tr > th {
  padding: 0.571em 0.857em;
  border: 1px solid #c8c8c8;
  font-weight: 700;
  color: #333333;
  background-color: #f4f4f4;
  text-align: center;
}
body .p-datatable .p-datatable-tfoot > tr > td {
  padding: 0.571em 0.857em;
  border: 1px solid #c8c8c8;
  font-weight: 700;
  color: #333333;
  background-color: #f4f4f4;
  text-align: center;
}
body .p-datatable .p-sortable-column {
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-datatable .p-sortable-column .p-sortable-column-icon {
  color: #848484;
}
body .p-datatable .p-sortable-column:not(.p-highlight):hover {
  background-color: #e0e0e0;
  color: #333333;
}
body .p-datatable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon {
  color: #333333;
}
body .p-datatable .p-sortable-column:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}
body .p-datatable .p-sortable-column.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon {
  color: #ffffff;
}
body .p-datatable .p-editable-column input {
  font-size: 14px;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
}
body .p-datatable .p-datatable-tbody > tr {
  background: #ffffff;
  color: #333333;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-datatable .p-datatable-tbody > tr > td {
  background: inherit;
  border: 1px solid #c8c8c8;
  padding: 0.429em 0.857em;
}
body .p-datatable .p-datatable-tbody > tr > td .p-row-toggler {
  color: #848484;
  transition: color 0.2s, box-shadow 0.2s;
}
body .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:hover {
  color: #333333;
}
body .p-datatable .p-datatable-tbody > tr.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr.p-highlight .p-row-toggler {
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr.p-highlight .p-row-toggler:hover {
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
  background-color: #5ab7ff;
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
  box-shadow: inset 0 -2px 0 0 #007ad9;
}
body .p-datatable .p-datatable-tbody > tr:nth-child(even) {
  background-color: #f9f9f9;
}
body .p-datatable .p-datatable-tbody > tr:nth-child(even).p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler {
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover {
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr:nth-child(even).p-highlight-contextmenu {
  background-color: #5ab7ff;
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr:nth-child(even).p-highlight-contextmenu .p-row-toggler {
  color: #ffffff;
}
body .p-datatable .p-datatable-tbody > tr:nth-child(even).p-highlight-contextmenu .p-row-toggler:hover {
  color: #ffffff;
}
body .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):not(.p-highlight-contextmenu):hover {
  cursor: pointer;
  background-color: #eaeaea;
  color: #333333;
}
body .p-datatable .p-column-resizer-helper {
  background-color: #007ad9;
}
body .p-datatable .p-datatable-scrollable-header,
body .p-datatable .p-datatable-scrollable-footer {
  background-color: #f4f4f4;
}
@media screen and (max-width: 40em) {
  body .p-datatable.p-datatable-responsive .p-paginator-top {
    border-bottom: 1px solid #c8c8c8;
  }
  body .p-datatable.p-datatable-responsive .p-paginator-bottom {
    border-top: 1px solid #c8c8c8;
  }
  body .p-datatable.p-datatable-responsive .p-datatable-tbody > tr > td {
    border: 0 none;
  }
}
body .p-datagrid .p-datagrid-header {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  font-weight: 700;
  border-bottom: 0 none;
}
body .p-datagrid .p-datagrid-content {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
}
body .p-datagrid .p-datagrid-footer {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  border-top: 0 none;
}
body .p-datalist .p-datalist-header {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  font-weight: 700;
  border-bottom: 0 none;
}
body .p-datalist .p-datalist-content {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
}
body .p-datalist .p-datalist-footer {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  border-top: 0 none;
}
body .p-datascroller .p-datascroller-header {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  font-weight: 700;
  border-bottom: 0 none;
}
body .p-datascroller .p-datascroller-content {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
}
body .p-datascroller .p-datascroller-footer {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  border-top: 0 none;
}
body .p-dataview .p-dataview-header {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  font-weight: 700;
  border-bottom: 0 none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-dataview .p-dataview-content {
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
}
body .p-dataview .p-dataview-footer {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  border-top: 0 none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .fc th {
  background-color: #f4f4f4;
  border: 1px solid #c8c8c8;
  color: #333333;
  padding: 0.571em 1em;
}
body .fc td.ui-widget-content {
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  color: #333333;
}
body .fc td.fc-head-container {
  border: 1px solid #c8c8c8;
}
body .fc .fc-row {
  border-right: 1px solid #c8c8c8;
}
body .fc .fc-event {
  background-color: #116fbf;
  border: 1px solid #116fbf;
  color: #ffffff;
}
body .fc .fc-toolbar .fc-button {
  color: #ffffff;
  background-color: #007ad9;
  border: 1px solid #007ad9;
  font-size: 14px;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 3px;
}
body .fc .fc-toolbar .fc-button:enabled:hover {
  background-color: #116fbf;
  color: #ffffff;
  border-color: #116fbf;
}
body .fc .fc-toolbar .fc-button .fc-icon-chevron-left {
  font-family: "PrimeIcons" !important;
  text-indent: 0;
}
body .fc .fc-toolbar .fc-button .fc-icon-chevron-left:before {
  content: "\E900";
}
body .fc .fc-toolbar .fc-button .fc-icon-chevron-right {
  font-family: "PrimeIcons" !important;
  text-indent: 0;
}
body .fc .fc-toolbar .fc-button .fc-icon-chevron-right:before {
  content: "\E901";
}
body .fc .fc-toolbar .fc-button:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .fc .fc-toolbar .fc-button-group .fc-button {
  border-radius: 0;
}
body .fc .fc-toolbar .fc-button-group .fc-button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
body .fc .fc-toolbar .fc-button-group .fc-button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .fc .fc-divider {
  background-color: #f4f4f4;
  border: 1px solid #c8c8c8;
}
body .p-fluid .fc .fc-toolbar .ui-button {
  width: auto;
}
body .p-picklist .p-picklist-buttons button {
  font-size: 16px;
}
body .p-picklist .p-picklist-caption {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  font-weight: 700;
  border-bottom: 0 none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-picklist .p-picklist-filter-container {
  padding: 0.429em 0.857em 0.429em 0.857em;
  border: 1px solid #c8c8c8;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  border-bottom: 0 none;
}
body .p-picklist .p-picklist-filter-container input {
  width: 100%;
  padding-right: 2em;
  text-indent: 0;
}
body .p-picklist .p-picklist-filter-container .p-picklist-filter-icon {
  top: 50%;
  margin-top: -0.5em;
  left: auto;
  right: 1.357em;
  color: #007ad9;
}
body .p-picklist .p-picklist-buttons {
  padding: 0.571em 1em;
}
body .p-picklist .p-picklist-list {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-picklist .p-picklist-list .p-picklist-item {
  padding: 0.429em 0.857em;
  margin: 0;
  border: 0 none;
  color: #333333;
  background-color: transparent;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover {
  background-color: #eaeaea;
  color: #333333;
}
body .p-picklist .p-picklist-list .p-picklist-item:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}
body .p-picklist .p-picklist-list .p-picklist-item.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-picklist .p-picklist-list .p-picklist-droppoint-highlight {
  background-color: #007ad9;
}
@media (max-width: 40em) {
  body .p-picklist.p-picklist-responsive .p-picklist-buttons {
    padding: 0.571em 1em;
  }
}
body .p-orderlist .p-orderlist-controls {
  padding: 0.571em 1em;
}
body .p-orderlist .p-orderlist-controls button {
  font-size: 16px;
}
body .p-orderlist .p-orderlist-caption {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  font-weight: 700;
  border-bottom: 0 none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-orderlist .p-orderlist-filter-container {
  padding: 0.429em 0.857em 0.429em 0.857em;
  border: 1px solid #c8c8c8;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  border-bottom: 0 none;
}
body .p-orderlist .p-orderlist-filter-container input {
  width: 100%;
  padding-right: 2em;
  text-indent: 0;
}
body .p-orderlist .p-orderlist-filter-container .p-orderlist-filter-icon {
  top: 50%;
  margin-top: -0.5em;
  left: auto;
  right: 1.357em;
  color: #007ad9;
}
body .p-orderlist .p-orderlist-list {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-orderlist .p-orderlist-list .p-orderlist-item {
  padding: 0.429em 0.857em;
  margin: 0;
  border: 0 none;
  color: #333333;
  background-color: transparent;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover {
  background-color: #eaeaea;
  color: #333333;
}
body .p-orderlist .p-orderlist-list .p-orderlist-item:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}
body .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-orderlist .p-orderlist-list .p-orderlist-droppoint-highlight {
  background-color: #007ad9;
}
body .p-tree {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
  border-radius: 3px;
}
body .p-tree .p-tree-container {
  padding: 0.286em;
  margin: 0;
}
body .p-tree .p-tree-container .p-treenode {
  padding: 0.143em 0;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content {
  padding: 0;
  border: 1px solid transparent;
  transition: background-color 0.2s, box-shadow 0.2s;
  border-radius: 3px;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler {
  vertical-align: middle;
  display: inline-block;
  float: none;
  margin: 0 0.286em 0 0;
  color: #848484;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler b .p-tree-toggler-icon {
  line-height: 1.25em;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon {
  vertical-align: middle;
  display: inline-block;
  margin: 0 0.286em 0 0;
  color: #848484;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-label {
  margin: 0;
  vertical-align: middle;
  display: inline-block;
  padding: 0.286em 0;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox {
  margin: 0 0.286em 0 0;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler,
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon {
  color: #ffffff;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-checkbox .p-checkbox-box {
  border-color: #ffffff;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight-contextmenu {
  border: 1px dashed #007ad9;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover {
  background-color: #eaeaea;
  color: #333333;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover .p-treenode-icon {
  color: #333333;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content > span {
  line-height: inherit;
}
body .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover {
  background-color: #eaeaea;
  color: #333333;
}
body .p-tree .p-tree-container .p-treenode-droppoint.p-treenode-droppoint-active {
  background-color: #007ad9;
}
body .p-tree.p-tree-horizontal {
  padding-left: 0;
  padding-right: 0;
}
body .p-tree.p-tree-horizontal .p-treenode .p-treenode-content {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
  border-radius: 3px;
}
body .p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-checkbox .p-icon {
  color: #007ad9;
}
body .p-tree.p-tree-horizontal .p-treenode .p-treenode-content .p-treenode-label:not(.p-highlight):hover {
  background-color: inherit;
  color: inherit;
}
body .p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover {
  background-color: #eaeaea;
  color: #333333;
}
body .p-tree .p-tree-filter-container .p-tree-filter {
  width: 100%;
  padding-right: 2em;
}
body .p-tree .p-tree-filter-container .p-tree-filter-icon {
  top: 50%;
  left: auto;
  margin-top: -0.5em;
  right: 0.8em;
  color: #007ad9;
}
body .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover {
  background-color: #eaeaea;
  color: #333333;
}
body .p-organizationchart .p-organizationchart-node-content.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i {
  color: #00325a;
}
body .p-organizationchart .p-organizationchart-line-down {
  background-color: #c8c8c8;
}
body .p-organizationchart .p-organizationchart-line-left {
  border-right: 1px solid #c8c8c8;
  border-color: #c8c8c8;
}
body .p-organizationchart .p-organizationchart-line-top {
  border-top: 1px solid #c8c8c8;
  border-color: #c8c8c8;
}
body .p-organizationchart .p-organizationchart-node-content {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
}
body .p-organizationchart .p-organizationchart-node-content .p-node-toggler {
  bottom: -0.7em;
  margin-left: -0.46em;
  color: #848484;
  border-radius: 3px;
  transition: box-shadow 0.2s;
}
body .p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-treetable .p-treetable-header,
body .p-treetable .p-treetable-footer {
  background-color: #f4f4f4;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  text-align: center;
}
body .p-treetable .p-treetable-header {
  border-bottom: 0 none;
  font-weight: 700;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-treetable .p-treetable-footer {
  border-top: 0 none;
  font-weight: 700;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
body .p-treetable .p-treetable-thead > tr > th {
  padding: 0.571em 0.857em;
  border: 1px solid #c8c8c8;
  font-weight: 700;
  color: #333333;
  background-color: #f4f4f4;
  text-align: center;
}
body .p-treetable .p-treetable-tfoot > tr > td {
  padding: 0.571em 0.857em;
  border: 1px solid #c8c8c8;
  font-weight: 700;
  color: #333333;
  background-color: #f4f4f4;
  text-align: center;
}
body .p-treetable .p-sortable-column {
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-treetable .p-sortable-column .p-sortable-column-icon {
  color: #848484;
}
body .p-treetable .p-sortable-column:not(.p-highlight):hover {
  background-color: #e0e0e0;
  color: #333333;
}
body .p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon {
  color: #333333;
}
body .p-treetable .p-sortable-column:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}
body .p-treetable .p-sortable-column.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon {
  color: #ffffff;
}
body .p-treetable .p-editable-column input {
  font-size: 14px;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
}
body .p-treetable .p-treetable-tbody > tr {
  background: #ffffff;
  color: #333333;
  transition: background-color 0.2s;
}
body .p-treetable .p-treetable-tbody > tr > td {
  background: inherit;
  border: 1px solid #c8c8c8;
  padding: 0.429em 0.857em;
}
body .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler {
  color: #848484;
  vertical-align: middle;
}
body .p-treetable .p-treetable-tbody > tr.p-highlight {
  background-color: #007ad9;
  color: #ffffff;
}
body .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler {
  color: #ffffff;
}
body .p-treetable .p-treetable-tbody > tr.p-highlight-contextmenu {
  background-color: #5ab7ff;
  color: #ffffff;
}
body .p-treetable .p-treetable-tbody > tr.p-highlight-contextmenu .p-treetable-toggler {
  color: #ffffff;
}
body .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):not(.p-highlight-contextmenu):hover {
  cursor: pointer;
  background-color: #eaeaea;
  color: #333333;
}
body .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):not(.p-highlight-contextmenu):hover .p-treetable-toggler {
  color: #333333;
}
body .p-treetable .p-column-resizer-helper {
  background-color: #007ad9;
}
body .p-treetable .p-treetable-scrollable-header,
body .p-treetable .p-treetable-scrollable-footer {
  background-color: #f4f4f4;
}

body .p-messages {
  margin: 1em 0;
  border-radius: 3px;
}
body .p-messages .p-messages-wrapper {
  padding: 1em;
}
body .p-messages.p-messages-info {
  background-color: #7fbcec;
  border: 0 none;
  color: #212121;
}
body .p-messages.p-messages-info .p-messages-icon {
  color: #212121;
}
body .p-messages.p-messages-info .p-messages-close {
  background-color: #7fbcec;
  color: #212121;
}
body .p-messages.p-messages-success {
  background-color: #b7d8b7;
  border: 0 none;
  color: #212121;
}
body .p-messages.p-messages-success .p-messages-icon {
  color: #212121;
}
body .p-messages.p-messages-success .p-messages-close {
  background-color: #b7d8b7;
  color: #212121;
}
body .p-messages.p-messages-warn {
  background-color: #ffe399;
  border: 0 none;
  color: #212121;
}
body .p-messages.p-messages-warn .p-messages-icon {
  color: #212121;
}
body .p-messages.p-messages-warn .p-messages-close {
  background-color: #ffe399;
  color: #212121;
}
body .p-messages.p-messages-error {
  background-color: #f8b7bd;
  border: 0 none;
  color: #212121;
}
body .p-messages.p-messages-error .p-messages-icon {
  color: #212121;
}
body .p-messages.p-messages-error .p-messages-close {
  background-color: #f8b7bd;
  color: #212121;
}
body .p-messages .p-messages-close {
  top: -0.769em;
  right: -0.769em;
  width: 1.538em;
  height: 1.538em;
  line-height: 1.538em;
  text-align: center;
  border-radius: 50%;
  transition: box-shadow 0.2s;
}
body .p-messages .p-messages-close .p-messages-close-icon {
  line-height: inherit;
  font-size: 1.5em;
}
body .p-messages .p-messages-close:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-messages .p-messages-icon {
  font-size: 2em;
}
body .p-message {
  padding: 0.429em;
  margin: 0;
  border-radius: 3px;
}
body .p-message.p-message-info {
  background-color: #7fbcec;
  border: 0 none;
  color: #212121;
}
body .p-message.p-message-info .p-message-icon {
  color: #212121;
}
body .p-message.p-message-success {
  background-color: #b7d8b7;
  border: 0 none;
  color: #212121;
}
body .p-message.p-message-success .p-message-icon {
  color: #212121;
}
body .p-message.p-message-warn {
  background-color: #ffe399;
  border: 0 none;
  color: #212121;
}
body .p-message.p-message-warn .p-message-icon {
  color: #212121;
}
body .p-message.p-message-error {
  background-color: #f8b7bd;
  border: 0 none;
  color: #212121;
}
body .p-message.p-message-error .p-message-icon {
  color: #212121;
}
body .p-message .p-message-icon {
  font-size: 1.25em;
}
body .p-message .p-message-text {
  font-size: 1em;
}
body .p-growl {
  top: 70px;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
body .p-growl .p-growl-item-container {
  margin: 0 0 1em 0;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-growl .p-growl-item-container .p-growl-item {
  padding: 1em;
}
body .p-growl .p-growl-item-container .p-growl-item .p-growl-message {
  margin: 0 0 0 4em;
}
body .p-growl .p-growl-item-container .p-growl-item .p-growl-image {
  font-size: 2.571em;
}
body .p-growl .p-growl-item-container.p-growl-message-info {
  background-color: #7fbcec;
  border: 0 none;
  color: #212121;
}
body .p-growl .p-growl-item-container.p-growl-message-info .p-growl-image,
body .p-growl .p-growl-item-container.p-growl-message-info .p-growl-icon-close {
  color: #212121;
}
body .p-growl .p-growl-item-container.p-growl-message-success {
  background-color: #b7d8b7;
  border: 0 none;
  color: #212121;
}
body .p-growl .p-growl-item-container.p-growl-message-success .p-growl-image,
body .p-growl .p-growl-item-container.p-growl-message-success .p-growl-icon-close {
  color: #212121;
}
body .p-growl .p-growl-item-container.p-growl-message-warn {
  background-color: #ffe399;
  border: 0 none;
  color: #212121;
}
body .p-growl .p-growl-item-container.p-growl-message-warn .p-growl-image,
body .p-growl .p-growl-item-container.p-growl-message-warn .p-growl-icon-close {
  color: #212121;
}
body .p-growl .p-growl-item-container.p-growl-message-error {
  background-color: #f8b7bd;
  border: 0 none;
  color: #212121;
}
body .p-growl .p-growl-item-container.p-growl-message-error .p-growl-image,
body .p-growl .p-growl-item-container.p-growl-message-error .p-growl-icon-close {
  color: #212121;
}
body .p-toast {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
body .p-toast .p-toast-item-container {
  margin: 0 0 1em 0;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-toast .p-toast-item-container .p-toast-item {
  padding: 1em;
}
body .p-toast .p-toast-item-container .p-toast-item .p-toast-message {
  margin: 0 0 0 4em;
}
body .p-toast .p-toast-item-container .p-toast-item .p-toast-image {
  font-size: 2.571em;
}
body .p-toast .p-toast-item-container.p-toast-message-info {
  background-color: #7fbcec;
  border: 0 none;
  color: #212121;
}
body .p-toast .p-toast-item-container.p-toast-message-info .p-toast-image,
body .p-toast .p-toast-item-container.p-toast-message-info .p-toast-icon-close {
  color: #212121;
}
body .p-toast .p-toast-item-container.p-toast-message-success {
  background-color: #b7d8b7;
  border: 0 none;
  color: #212121;
}
body .p-toast .p-toast-item-container.p-toast-message-success .p-toast-image,
body .p-toast .p-toast-item-container.p-toast-message-success .p-toast-icon-close {
  color: #212121;
}
body .p-toast .p-toast-item-container.p-toast-message-warn {
  background-color: #ffe399;
  border: 0 none;
  color: #212121;
}
body .p-toast .p-toast-item-container.p-toast-message-warn .p-toast-image,
body .p-toast .p-toast-item-container.p-toast-message-warn .p-toast-icon-close {
  color: #212121;
}
body .p-toast .p-toast-item-container.p-toast-message-error {
  background-color: #f8b7bd;
  border: 0 none;
  color: #212121;
}
body .p-toast .p-toast-item-container.p-toast-message-error .p-toast-image,
body .p-toast .p-toast-item-container.p-toast-message-error .p-toast-icon-close {
  color: #212121;
}

body .p-component-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}
body .p-overlaypanel {
  background-color: #ffffff;
  color: #333333;
  padding: 0;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-overlaypanel .p-overlaypanel-content {
  padding: 1em;
}
body .p-overlaypanel .p-overlaypanel-close {
  background-color: #007ad9;
  color: #ffffff;
  width: 1.538em;
  height: 1.538em;
  line-height: 1.538em;
  text-align: center;
  position: absolute;
  top: -0.769em;
  right: -0.769em;
  border-radius: 50%;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-overlaypanel .p-overlaypanel-close:hover {
  background-color: #005b9f;
  color: #ffffff;
}
body .p-overlaypanel .p-overlaypanel-close > span {
  line-height: inherit;
}
body .p-overlaypanel:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
}
body .p-overlaypanel:before {
  border-color: rgba(200, 200, 200, 0);
  border-bottom-color: #c8c8c8;
}
body .p-overlaypanel.p-overlaypanel-flipped:after {
  border-top-color: #ffffff;
}
body .p-overlaypanel.p-overlaypanel-flipped:before {
  border-top-color: #c8c8c8;
}
body .p-dialog {
  padding: 0;
  border-radius: 3px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-dialog .p-dialog-titlebar {
  border: 1px solid #c8c8c8;
  background-color: #f4f4f4;
  color: #333333;
  padding: 1em;
  font-weight: 700;
  border-bottom: 0 none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-dialog .p-dialog-titlebar .p-dialog-title {
  margin: 0;
  float: none;
  font-weight: 700;
}
body .p-dialog .p-dialog-titlebar .p-dialog-titlebar-icon {
  color: #848484;
  border: 0 none;
  padding: 0;
  margin-left: 0.5em;
  transition: color 0.2s, box-shadow 0.2s;
}
body .p-dialog .p-dialog-titlebar .p-dialog-titlebar-icon:hover {
  color: #333333;
}
body .p-dialog .p-dialog-content {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 1em;
}
body .p-dialog .p-dialog-footer {
  border: 1px solid #c8c8c8;
  border-top: 0 none;
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
  margin: 0;
  text-align: right;
}
body .p-dialog .p-dialog-footer button {
  margin: 0 0.5em 0 0;
  width: auto;
}
body .p-dialog.p-confirm-dialog .p-dialog-content {
  padding: 1.5em;
}
body .p-dialog.p-confirm-dialog .p-dialog-content > span {
  float: none;
  display: inline-block;
  vertical-align: middle;
  line-height: 14px;
  margin: 0;
}
body .p-dialog.p-confirm-dialog .p-dialog-content > span.p-icon {
  margin-right: 0.35em;
  font-size: 16px;
}
body .p-sidebar {
  background-color: #ffffff;
  color: #333333;
  padding: 0.571em 1em;
  border: 1px solid #c8c8c8;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-sidebar .p-sidebar-close {
  color: #848484;
}
body .p-sidebar .p-sidebar-close:hover {
  color: #333333;
}
body .p-tooltip .p-tooltip-text {
  background-color: #333333;
  color: #ffffff;
  padding: 0.429em;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}
body .p-tooltip.p-tooltip-right .p-tooltip-arrow {
  border-right-color: #333333;
}
body .p-tooltip.p-tooltip-left .p-tooltip-arrow {
  border-left-color: #333333;
}
body .p-tooltip.p-tooltip-top .p-tooltip-arrow {
  border-top-color: #333333;
}
body .p-tooltip.p-tooltip-bottom .p-tooltip-arrow {
  border-bottom-color: #333333;
}
body .p-lightbox {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-lightbox .p-lightbox-caption {
  border: 1px solid #c8c8c8;
  background-color: #f4f4f4;
  color: #333333;
  padding: 0.571em 1em;
  font-weight: 700;
}
body .p-lightbox .p-lightbox-caption .p-lightbox-caption-text {
  color: #333333;
  margin: 0;
}
body .p-lightbox .p-lightbox-caption .p-lightbox-close {
  padding: 0;
  color: #848484;
  transition: color 0.2s;
}
body .p-lightbox .p-lightbox-caption .p-lightbox-close:hover {
  color: #333333;
}
body .p-lightbox .p-lightbox-content-wrapper {
  overflow: hidden;
  background-color: #ffffff;
  color: #333333;
  border: 0 none;
  padding: 0;
  border-radius: 0;
}
body .p-lightbox .p-lightbox-content-wrapper .p-lightbox-nav-left, body .p-lightbox .p-lightbox-content-wrapper .p-lightbox-nav-right {
  transition: all 0.2s;
  font-size: 3em;
  color: #ffffff;
  margin-top: -0.5em;
}
body .p-lightbox .p-lightbox-content-wrapper .p-lightbox-nav-left:hover, body .p-lightbox .p-lightbox-content-wrapper .p-lightbox-nav-right:hover {
  transform: scale(1.2);
}
body .p-lightbox .p-lightbox-content-wrapper .p-lightbox-content.p-lightbox-loading ~ a {
  display: none;
}

body .p-breadcrumb {
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
  border-radius: 3px;
}
body .p-breadcrumb ul li .p-menuitem-link {
  color: #333333;
  margin: 0;
  transition: box-shadow 0.2s;
  border-radius: 3px;
}
body .p-breadcrumb ul li .p-menuitem-link:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-breadcrumb ul li.p-breadcrumb-chevron {
  margin: 0 0.5em 0 0.5em;
  color: #848484;
}
body .p-breadcrumb ul li:first-child a {
  color: #848484;
  margin: 0;
}
body .p-breadcrumb ul li .p-menuitem-icon {
  color: #848484;
}
body .p-steps {
  position: relative;
}
body .p-steps .p-steps-item {
  background-color: transparent;
  text-align: center;
}
body .p-steps .p-steps-item .p-menuitem-link {
  display: inline-block;
  text-align: center;
  background-color: transparent;
  overflow: hidden;
  transition: box-shadow 0.2s;
  border-radius: 3px;
}
body .p-steps .p-steps-item .p-menuitem-link .p-steps-number {
  border-radius: 50%;
  display: inline-block;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  position: relative;
  top: 16px;
  margin-bottom: 14px;
  width: 28px;
  height: 28px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
body .p-steps .p-steps-item .p-menuitem-link .p-steps-title {
  display: block;
  margin-top: 6px;
  color: #848484;
}
body .p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-steps .p-steps-item.p-highlight .p-steps-number {
  background: #007ad9;
  color: #ffffff;
}
body .p-steps .p-steps-item.p-highlight .p-steps-title {
  font-weight: 700;
  color: #333333;
}
body .p-steps .p-steps-item:last-child .p-menuitem-link {
  display: block;
}
body .p-steps:before {
  content: " ";
  border-top: 1px solid #c8c8c8;
  width: 100%;
  top: 45%;
  left: 0;
  display: block;
  position: absolute;
}
body .p-menu .p-menuitem-link,
body .p-menubar .p-menuitem-link,
body .p-tieredmenu .p-menuitem-link,
body .p-contextmenu .p-menuitem-link,
body .p-megamenu .p-menuitem-link,
body .p-slidemenu .p-menuitem-link {
  padding: 0.714em 0.857em;
  color: #333333;
  font-weight: normal;
  border-radius: 0;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-menu .p-menuitem-link .p-menuitem-text,
body .p-menubar .p-menuitem-link .p-menuitem-text,
body .p-tieredmenu .p-menuitem-link .p-menuitem-text,
body .p-contextmenu .p-menuitem-link .p-menuitem-text,
body .p-megamenu .p-menuitem-link .p-menuitem-text,
body .p-slidemenu .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-menu .p-menuitem-link .p-menuitem-icon,
body .p-menubar .p-menuitem-link .p-menuitem-icon,
body .p-tieredmenu .p-menuitem-link .p-menuitem-icon,
body .p-contextmenu .p-menuitem-link .p-menuitem-icon,
body .p-megamenu .p-menuitem-link .p-menuitem-icon,
body .p-slidemenu .p-menuitem-link .p-menuitem-icon {
  color: #333333;
  margin-right: 0.5em;
}
body .p-menu .p-menuitem-link:hover,
body .p-menubar .p-menuitem-link:hover,
body .p-tieredmenu .p-menuitem-link:hover,
body .p-contextmenu .p-menuitem-link:hover,
body .p-megamenu .p-menuitem-link:hover,
body .p-slidemenu .p-menuitem-link:hover {
  background-color: #eaeaea;
}
body .p-menu .p-menuitem-link:hover .p-menuitem-text,
body .p-menubar .p-menuitem-link:hover .p-menuitem-text,
body .p-tieredmenu .p-menuitem-link:hover .p-menuitem-text,
body .p-contextmenu .p-menuitem-link:hover .p-menuitem-text,
body .p-megamenu .p-menuitem-link:hover .p-menuitem-text,
body .p-slidemenu .p-menuitem-link:hover .p-menuitem-text {
  color: #333333;
}
body .p-menu .p-menuitem-link:hover .p-menuitem-icon,
body .p-menubar .p-menuitem-link:hover .p-menuitem-icon,
body .p-tieredmenu .p-menuitem-link:hover .p-menuitem-icon,
body .p-contextmenu .p-menuitem-link:hover .p-menuitem-icon,
body .p-megamenu .p-menuitem-link:hover .p-menuitem-icon,
body .p-slidemenu .p-menuitem-link:hover .p-menuitem-icon {
  color: #333333;
}
body .p-menu .p-menuitem-link:focus,
body .p-menubar .p-menuitem-link:focus,
body .p-tieredmenu .p-menuitem-link:focus,
body .p-contextmenu .p-menuitem-link:focus,
body .p-megamenu .p-menuitem-link:focus,
body .p-slidemenu .p-menuitem-link:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}
body .p-menu {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
}
body .p-menu .p-menuitem {
  margin: 0;
}
body .p-menu.p-menu-overlay {
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-menu .p-submenu-header {
  margin: 0;
  padding: 0.714em 0.857em;
  color: #333333;
  background-color: #f4f4f4;
  font-weight: 700;
  border: 0 none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body .p-menu .p-menu-separator {
  border: 1px solid #c8c8c8;
  border-width: 1px 0 0 0;
}
body .p-menubar {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
}
body .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
  padding: 0.714em 0.857em;
}
body .p-menubar .p-submenu-list {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-menubar .p-submenu-list .p-menuitem {
  margin: 0;
}
body .p-menubar .p-submenu-list .p-menu-separator {
  border: 1px solid #c8c8c8;
  border-width: 1px 0 0 0;
}
body .p-menubar .p-menuitem {
  margin: 0;
}
body .p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link {
  background-color: #eaeaea;
}
body .p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, body .p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon {
  color: #333333;
}
body .p-contextmenu {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}
body .p-contextmenu .p-submenu-list {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-contextmenu .p-menuitem {
  margin: 0;
}
body .p-contextmenu .p-menuitem .p-menuitem-link .p-submenu-icon {
  right: 0.429em;
}
body .p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
  background-color: #eaeaea;
}
body .p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, body .p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon {
  color: #333333;
}
body .p-contextmenu .p-menu-separator {
  border: 1px solid #c8c8c8;
  border-width: 1px 0 0 0;
}
body .p-tieredmenu {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
}
body .p-tieredmenu .p-submenu-list {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-tieredmenu .p-menuitem {
  margin: 0;
}
body .p-tieredmenu .p-menuitem .p-menuitem-link .p-submenu-icon {
  right: 0.429em;
}
body .p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
  background-color: #eaeaea;
}
body .p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, body .p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon {
  color: #333333;
}
body .p-tieredmenu .p-menu-separator {
  border: 1px solid #c8c8c8;
  border-width: 1px 0 0 0;
}
body .p-tieredmenu.p-menu-overlay {
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-slidemenu {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
}
body .p-slidemenu .p-submenu-list {
  padding: 0;
  background-color: #ffffff;
  border: 0 none;
}
body .p-slidemenu .p-menuitem {
  margin: 0;
}
body .p-slidemenu .p-menuitem .p-menuitem-link .p-submenu-icon {
  right: 0.429em;
}
body .p-slidemenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
  background-color: #eaeaea;
}
body .p-slidemenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-slidemenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, body .p-slidemenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon {
  color: #333333;
}
body .p-slidemenu .p-slidemenu-backward {
  margin: 0;
  padding: 0.571em 1em;
  color: #333333;
  background-color: #f4f4f4;
  font-weight: 700;
  border: 0 none;
}
body .p-slidemenu .p-slidemenu-backward:hover {
  background-color: #dbdbdb;
  color: #333333;
}
body .p-slidemenu .p-menu-separator {
  border: 1px solid #c8c8c8;
  border-width: 1px 0 0 0;
}
body .p-slidemenu.p-menu-overlay {
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-tabmenu {
  border: 0 none;
}
body .p-tabmenu .p-tabmenu-nav {
  padding: 0;
  background: transparent;
  border-bottom: 1px solid #c8c8c8;
}
body .p-tabmenu .p-tabmenu-nav:after {
  content: "";
  display: table;
  clear: both;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
  margin-bottom: -1px;
  border: 1px solid #c8c8c8;
  background-color: #f4f4f4;
  color: #333333;
  padding: 0.571em 1em;
  margin-right: 2px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon {
  color: #848484;
  margin-right: 0.5em;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link {
  background-color: #dbdbdb;
  border: 1px solid #dbdbdb;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link .p-menuitem-icon {
  color: #333333;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
  background-color: #007ad9;
  border: 1px solid #007ad9;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link .p-menuitem-text {
  color: #ffffff;
}
body .p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link .p-menuitem-icon {
  color: #ffffff;
}
body .p-megamenu {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
}
body .p-megamenu .p-megamenu-submenu-header {
  margin: 0;
  padding: 0.571em 1em;
  color: #333333;
  background-color: #f4f4f4;
  font-weight: 700;
  border: 0 none;
}
body .p-megamenu .p-megamenu-panel {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
}
body .p-megamenu .p-menuitem {
  margin: 0;
}
body .p-megamenu .p-menuitem .p-menuitem-link .p-submenu-icon {
  right: 0.429em;
}
body .p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link {
  background-color: #eaeaea;
}
body .p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text {
  color: #333333;
}
body .p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, body .p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon {
  color: #333333;
}
body .p-megamenu.p-megamenu-vertical .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
  right: 0.429em;
}
body .p-panelmenu .p-icon {
  position: static;
}
body .p-panelmenu .p-panelmenu-panel .p-panelmenu-header {
  margin-top: 2px;
}
body .p-panelmenu .p-panelmenu-panel:first-child .p-panelmenu-header {
  margin-top: 0;
}
body .p-panelmenu .p-panelmenu-header {
  padding: 0;
}
body .p-panelmenu .p-panelmenu-header > a {
  border: 1px solid #c8c8c8;
  background-color: #f4f4f4;
  color: #333333;
  padding: 0.714em 0.857em;
  font-weight: 700;
  position: static;
  font-size: 14px;
  border-radius: 3px;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-panelmenu .p-panelmenu-header > a .p-panelmenu-icon {
  color: #848484;
}
body .p-panelmenu .p-panelmenu-header > a .p-panelmenu-icon.pi-caret-right:before {
  content: "\E901";
}
body .p-panelmenu .p-panelmenu-header > a .p-panelmenu-icon.pi-caret-down:before {
  content: "\E902";
}
body .p-panelmenu .p-panelmenu-header > a:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2em #8dcdff;
  z-index: 100;
}
body .p-panelmenu .p-panelmenu-header:not(.p-highlight) > a:hover {
  outline: 0 none;
  border: 1px solid #dbdbdb;
  background-color: #dbdbdb;
  color: #333333;
}
body .p-panelmenu .p-panelmenu-header:not(.p-highlight) > a:hover .p-panelmenu-icon {
  color: #333333;
}
body .p-panelmenu .p-panelmenu-header.p-highlight {
  margin-bottom: 0;
}
body .p-panelmenu .p-panelmenu-header.p-highlight > a {
  border: 1px solid #007ad9;
  background-color: #007ad9;
  color: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body .p-panelmenu .p-panelmenu-header.p-highlight > a .p-panelmenu-icon {
  color: #ffffff;
}
body .p-panelmenu .p-panelmenu-header.p-highlight > a:hover {
  outline: 0 none;
  border: 1px solid #005b9f;
  background-color: #005b9f;
  color: #ffffff;
}
body .p-panelmenu .p-panelmenu-header.p-highlight > a:hover .p-panelmenu-icon {
  color: #ffffff;
}
body .p-panelmenu .p-panelmenu-panel:first-child {
  margin-top: 0;
}
body .p-panelmenu .p-panelmenu-content {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  margin-top: 0;
  position: static;
  border-top: 0 none;
}
body .p-panelmenu .p-panelmenu-content .p-menuitem {
  margin: 0;
}
body .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link {
  padding: 0.714em 0.857em;
  color: #333333;
  transition: background-color 0.2s, box-shadow 0.2s;
}
body .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:hover {
  background-color: #eaeaea;
}
body .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:hover .p-menuitem-icon, body .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:hover .p-panelmenu-icon {
  color: #333333;
}
body .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:hover .p-menuitem-text {
  color: #333333;
}
body .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2em #8dcdff;
}

body .p-progressbar {
  border: 0 none;
  height: 24px;
  background-color: #eaeaea;
}
body .p-progressbar .p-progressbar-value {
  border: 0 none;
  margin: 0;
  background: #007ad9;
}
body .p-progressbar .p-progressbar-label {
  margin-top: 0;
  color: #333333;
  line-height: 24px;
}
body .p-galleria .p-galleria-nav-prev,
body .p-galleria .p-galleria-nav-next {
  transition: all 0.2s;
  position: absolute;
  color: #848484;
}
body .p-galleria .p-galleria-nav-prev:hover,
body .p-galleria .p-galleria-nav-next:hover {
  transform: scale(1.2);
}
body .p-galleria .p-galleria-nav-prev {
  font-size: 16px;
}
body .p-galleria .p-galleria-nav-next {
  font-size: 16px;
}
body .p-terminal {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #c8c8c8;
  padding: 0.571em 1em;
}
body .p-terminal .p-terminal-input {
  font-size: 14px;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  height: 16px;
}
body .p-terminal .p-terminal-command {
  height: 16px;
}
body .p-inplace {
  min-height: 2.357em;
}
body .p-inplace .p-inplace-display {
  padding: 0.429em;
  border-radius: 3px;
  transition: background-color 0.2s;
}
body .p-inplace .p-inplace-display:not(.p-disabled):hover {
  background-color: #eaeaea;
  color: #333333;
}
body .p-fluid .p-inplace.p-inplace-closable .p-inplace-content > :first-child {
  display: inline-block;
  width: calc(100% - 2.357em);
}

/* Add your customizations of theme here */

.p-component,.p-component *{box-sizing:border-box}.p-hidden{display:none}.p-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.p-hidden-accessible input,.p-hidden-accessible select{transform:scale(0)}.p-reset{margin:0;padding:0;border:0;outline:0;text-decoration:none;font-size:100%;list-style:none}.p-disabled{cursor:default !important}.p-disabled a{cursor:default !important}.p-component-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.p-overflow-hidden{overflow:hidden}.p-unselectable-text{-o-user-select:none;user-select:none}.p-scrollbar-measure{width:100px;height:100px;overflow:scroll;position:absolute;top:-9999px}.p-clearfix:after{content:"";display:table;clear:both}@keyframes p-fadein{0%{opacity:0}100%{opacity:1}}input[type="button"],input[type="submit"],input[type="reset"],input[type="file"]::-webkit-file-upload-button,button{border-radius:0}.p-input-overlay{transform:translateY(5%);opacity:0;transition:transform .3s,opacity .3s}.p-input-overlay-visible{transform:translateY(0);opacity:1}.p-input-overlay-hidden{opacity:0;transform:translateY(5%);transition:transform .3s,opacity .15s}.p-menu-overlay{transform:translateY(5%);opacity:0;transition:transform .3s,opacity .3s}.p-menu-overlay-visible{transform:translateY(0);opacity:1}.p-menu-overlay-hidden{opacity:0;transform:translateY(5%);transition:transform .3s,opacity .15s}.p-link{text-align:left;background-color:transparent;margin:0;padding:0;border:0;cursor:pointer}.p-toggleable-content-collapsed{display:none}.p-toggleable-content-enter{max-height:0;display:block}.p-toggleable-content-enter-active{max-height:1000px;overflow:hidden;transition:max-height cubic-bezier(0.86,0,0.07,1) 400ms}.p-toggleable-content-enter-done{display:block}.p-toggleable-content-exit{max-height:1000px;display:block}.p-toggleable-content-exit-active{max-height:0;display:block;overflow:hidden;transition:max-height cubic-bezier(0.86,0,0.07,1) 250ms}.p-toggleable-content-exit-done{display:none}.p-accordion{width:100%}.p-accordion .p-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.p-accordion .p-accordion-header a{display:block;padding:.5em}.p-accordion .p-accordion-toggle-icon,.p-accordion .p-accordion-header-text{vertical-align:middle}.p-accordion .p-accordion-header a>span{display:inline-block;vertical-align:middle}.p-accordion .p-accordion-content{padding:1em;border-top:0;zoom:1}.p-accordion .p-accordion-header.p-disabled,.p-accordion .p-accordion-header.p-disabled a{cursor:default}.p-accordion .p-accordion-content-wrapper-collapsed{overflow:hidden;max-height:0;transition:max-height .5s cubic-bezier(0,1,0,1)}.p-accordion .p-accordion-content-wrapper-expanded{max-height:1000px;transition:max-height 1s ease-in-out}.p-accordion .p-accordion-content-wrapper-expanding{overflow:hidden}.p-breadcrumb{margin:0;padding:0;padding:.5em}.p-breadcrumb ul{margin:0;padding:0}.p-breadcrumb ul li{display:inline-block;margin:0 .25em}.p-breadcrumb-chevron,.p-breadcrumb-home{vertical-align:middle}.p-breadcrumb ul li .p-menuitem-link{text-decoration:none}.p-breadcrumb .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-breadcrumb .p-menuitem-text{vertical-align:middle}.p-autocomplete{width:auto;zoom:1;cursor:pointer;box-shadow:none;position:relative;display:inline-block}.p-autocomplete .p-autocomplete-dropdown{height:100%;width:2em;margin-right:0;vertical-align:top}.p-autocomplete .p-autocomplete-input{padding-right:1.5em}.p-autocomplete-loader{position:absolute;right:.25em;top:50%;margin-top:-.5em}.p-autocomplete-query{font-weight:bold}.p-autocomplete .p-autocomplete-panel{min-width:100%}.p-autocomplete-panel{position:absolute;overflow:auto;display:none}.p-autocomplete-panel .p-autocomplete-list{padding:.4em;border:0 none}.p-autocomplete-panel .p-autocomplete-list-item{border:0 none;cursor:pointer;font-weight:normal;margin:1px 0;padding:.186em .313em;text-align:left}.p-autocomplete .p-button-icon-only,.p-autocomplete .p-button-icon-only:enabled:hover,.p-autocomplete .p-button-icon-only:enabled:focus,.p-autocomplete .p-button-icon-only:enabled:active{border-left:0 none}.p-autocomplete-multiple-container{display:inline-block;vertical-align:middle}.p-autocomplete-multiple-container.p-inputtext{clear:left;cursor:text;list-style-type:none;margin:0;overflow:hidden;padding:0 1.5em 0 .25em}.p-autocomplete-token{cursor:default;display:inline-block;vertical-align:middle;overflow:hidden;padding:.125em .5em;white-space:nowrap;position:relative;margin-right:.125em;border:0 none;font-size:.9em}.p-autocomplete-token-label{display:block;margin-right:2em}.p-autocomplete-token-icon{margin-top:-.5em;position:absolute;right:.2em;top:50%;cursor:pointer}.p-autocomplete-input-token{display:inline-block;vertical-align:middle;list-style-type:none;margin:0 0 0 .125em;padding:.25em .25em .25em 0}.p-autocomplete-input-token input{border:0 none;width:10em;outline:medium none;background-color:transparent;margin:0;padding:0;box-shadow:none;border-radius:0}.p-autocomplete-dd .p-autocomplete-loader{right:2.25em}.p-autocomplete-dd input,.p-autocomplete-dd .p-autocomplete-multiple-container{border-top-right-radius:0;border-bottom-right-radius:0}.p-autocomplete-dd .p-autocomplete-dropdown{border-top-left-radius:0;border-bottom-left-radius:0}.p-fluid .p-autocomplete,.p-fluid .p-autocomplete-input{width:100%}.p-fluid .p-autocomplete.p-autocomplete-dd .p-autocomplete-input,.p-fluid .p-autocomplete.p-autocomplete-dd .p-autocomplete-multiple-container{width:calc(100% - 2em)}.p-fluid .p-autocomplete .p-autocomplete-dropdown.p-button{width:2em}.p-calendar{position:relative;display:inline-block}.p-calendar .p-calendar-button{position:absolute;height:100%;border-top-left-radius:0;border-bottom-left-radius:0;width:2em;border-left:0 none}.p-calendar .p-calendar-button:enabled:hover,.p-calendar .p-calendar-button:focus{border-left:0 none}.p-calendar .p-datepicker{min-width:100%}.p-fluid .p-calendar{width:100%}.p-fluid .p-calendar-button{width:2em}.p-fluid .p-datepicker-buttonbar button{width:auto}.p-fluid .p-calendar.p-calendar-w-btn .p-inputtext{width:calc(100% - 2em)}.p-datepicker{width:auto;padding:.2em;display:none;position:absolute}.p-datepicker.p-datepicker-inline{display:inline-block;position:static}.p-datepicker .p-datepicker-group{border-left-width:0;border-right-width:0;border-top-width:0;border-bottom-width:0}.p-datepicker .p-datepicker-header{position:relative;padding:.5em 0}.p-datepicker .p-datepicker-prev,.p-datepicker .p-datepicker-next{position:absolute;top:.5em;width:1.8em;height:1.8em;cursor:pointer}.p-datepicker .p-datepicker-prev{left:.125em}.p-datepicker .p-datepicker-next{right:.125em}.p-datepicker .p-datepicker-prev span,.p-datepicker .p-datepicker-next span{display:block;position:absolute;left:50%;top:50%;margin-top:-.5em;margin-left:-.5em}.p-datepicker .p-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.p-datepicker .p-datepicker-title select{font-size:1em;margin:.125em 0;vertical-align:middle}.p-datepicker select.p-datepicker-month{margin-right:.25em}.p-datepicker span.p-datepicker-year{margin-left:.25em}.p-datepicker-multiple-month .p-datepicker-group{display:table-cell;border-left-width:0;border-top-width:0;border-bottom-width:0;border-right-width:1px}.p-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.p-datepicker th{padding:.5em;text-align:center;font-weight:bold;border:0}.p-datepicker td{border:0;padding:0}.p-datepicker td>span,.p-datepicker td>a{display:block;padding:.5em;text-align:right;text-decoration:none}.p-datepicker td a{cursor:pointer}.p-datepicker .p-datepicker-buttonbar,.p-datepicker .p-datepicker-footer{padding:.5em}.p-datepicker .p-datepicker-buttonbar:after{content:"";display:table;clear:both}.p-datepicker .p-datepicker-buttonbar>button:last-child{float:right}.p-calendar.p-calendar-w-btn input{border-top-right-radius:0;border-bottom-right-radius:0}.p-monthpicker .p-monthpicker-month{width:33.3%;display:inline-block;text-align:center;padding:.5em;cursor:pointer}.p-datepicker-monthpicker select.p-datepicker-year{width:auto}.p-timepicker{text-align:center;padding:.5em 0}.p-timepicker>div{display:inline-block;margin-left:.5em;min-width:1.5em}.p-timepicker>.p-minute-picker,.p-timepicker>.p-second-picker{margin-left:0}.p-timepicker>.p-separator{margin-left:0;min-width:.75em}.p-timepicker>.p-separator .p-separator-spacer{visibility:hidden;display:block}.p-timepicker>div button{display:block;cursor:pointer}.p-timepicker>div button:last-child{margin-top:.3em}input[type=text]::-ms-clear{display:none}.p-datepicker-touch-ui,.p-calendar .p-datepicker-touch-ui{position:fixed;top:50%;left:50%;min-width:80vw;transform:translate(-50%,-50%)}.p-datepicker-touch-ui.p-datepicker th{padding:2em 0}.p-datepicker-touch-ui.p-datepicker td{padding:0}.p-datepicker-touch-ui.p-datepicker td span,.p-datepicker-touch-ui.p-datepicker td a{padding:2em 0}.p-datepicker-touch-ui .p-timepicker{padding:1em 0}.p-datepicker-touch-ui .p-timepicker>div a{font-size:2em}.p-datepicker-mask{position:fixed;width:100%;height:100%}@media screen and (max-width:40em){.p-datepicker-multiple-month{width:17em;overflow:auto}.p-datepicker-touch-ui.p-datepicker th{padding:1em 0}.p-datepicker-touch-ui.p-datepicker td span,.p-datepicker-touch-ui.p-datepicker td a{padding:1em 0}}.p-button{display:inline-block;position:relative;padding:0;text-decoration:none !important;cursor:pointer;text-align:center;zoom:1;overflow:visible;margin-right:.25em;user-select:none;-moz-user-select:none;-webkit-user-select:none}.p-button .p-button-text{display:block;line-height:normal}.p-button-text-only .p-button-text{padding:.25em 1em}.p-button-icon-only .p-button-text,.p-button-text-empty .p-button-text{padding:.25em;text-indent:-9999999px}.p-button-text-icon-left .p-button-text{padding:.25em 1em .25em 2.1em}.p-button-text-icon-right .p-button-text{padding:.25em 2.1em .25em 1em}.p-button-icon-only .p-button-icon-left,.p-button-text-icon-left .p-button-icon-left,.p-button-text-icon-right .p-button-icon-right{position:absolute;top:50%;margin-top:-.5em;height:1em}.p-button-icon-only .p-button-icon-left{top:50%;left:50%;margin-top:-.5em;margin-left:-.5em;width:1em;height:1em}.p-button-icon-left{left:.5em}.p-button-icon-right{right:.5em}.p-buttonset .p-button{margin-left:0;margin-right:0}button.p-button::-moz-focus-inner{border:0;padding:0}.p-fluid .p-button{width:100%}.p-fluid .p-button-text-icon-left .p-button-text,.p-fluid .p-button-text-icon-right .p-button-text{padding-left:1em;padding-right:1em}.p-fluid .p-buttonset{width:100%}.p-fluid .p-buttonset.p-buttonset-1 .p-button{width:100%}.p-fluid .p-buttonset.p-buttonset-2 .p-button{width:50%}.p-fluid .p-buttonset.p-buttonset-3 .p-button{width:33.3%}.p-fluid .p-buttonset.p-buttonset-4 .p-button{width:25%}.p-fluid .p-buttonset.p-buttonset-5 .p-button{width:20%}.p-fluid .p-buttonset.p-buttonset-6 .p-button{width:16.6%}@media(max-width:640px){.p-fluid .p-buttonset.p-buttonset-1 .p-button,.p-fluid .p-buttonset.p-buttonset-2 .p-button,.p-fluid .p-buttonset.p-buttonset-3 .p-button,.p-fluid .p-buttonset.p-buttonset-4 .p-button,.p-fluid .p-buttonset.p-buttonset-5 .p-button,.p-fluid .p-buttonset.p-buttonset-6 .p-button{width:100%}}.p-card-header img{width:100%}.p-card-body{padding:1em}.p-card-title{font-size:1.5em;font-weight:bold;margin-bottom:.5em}.p-card-subtitle{opacity:.7;margin-bottom:.5em;margin-top:-.25em;font-weight:bold}.p-card-footer{padding-top:1em}.p-checkbox{display:inline-block;cursor:pointer;vertical-align:middle;margin-right:.25em;user-select:none;-moz-user-select:none;-webkit-user-select:none}.p-checkbox .p-checkbox-box{width:1.125em;height:1.125em;line-height:1.125em;border-radius:2px;text-align:center}.p-checkbox .p-checkbox-icon{display:block}.p-checkbox-label{vertical-align:middle}.p-checkbox+label{vertical-align:middle}.p-chart{position:relative}.p-chips>ul.p-inputtext{clear:left;cursor:text;list-style-type:none;margin:0;overflow:hidden;padding:0 .25em}.p-chips-token{cursor:default;display:inline-block;vertical-align:middle;overflow:hidden;padding:.125em .5em;white-space:nowrap;position:relative;margin-right:.125em;border:0 none;font-size:.9em}.p-chips-token .p-chips-token-label{display:block;margin-right:2em}.p-chips>.p-disabled .p-chips-token-label{margin-right:0}.p-chips-token .p-chips-token-icon{margin-top:-.5em;position:absolute;right:.2em;top:50%;cursor:pointer}.p-chips-input-token{display:inline-block;vertical-align:middle;list-style-type:none;margin:0 0 0 .125em;padding:.25em .25em .25em 0}.p-chips-input-token .p-inputtext{border:0 none;width:10em;outline:medium none;background-color:transparent;margin:0;padding:0;box-shadow:none;border-radius:0}.p-colorpicker{display:inline-block}.p-colorpicker-dragging{cursor:pointer}.p-colorpicker-overlay{position:relative}.p-colorpicker-panel{position:relative;width:193px;height:166px;background-color:#323232;border-color:#191919}.p-colorpicker-overlay-panel{display:none;position:absolute}.p-colorpicker-preview{width:2em;cursor:pointer}.p-colorpicker-panel .p-colorpicker-content{position:relative}.p-colorpicker-panel .p-colorpicker-color-selector{width:150px;height:150px;top:8px;left:8px;position:absolute}.p-colorpicker-panel .p-colorpicker-color{width:150px;height:150px;background:transparent url([object Module]) no-repeat left top}.p-colorpicker-panel .p-colorpicker-color-handle{position:absolute;top:0;left:150px;border-radius:100%;width:10px;height:10px;border:1px solid #fff;margin:-5px 0 0 -5px;cursor:pointer}.p-colorpicker-panel .p-colorpicker-hue{background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAACWCAIAAAC3uvTNAAAA7ElEQVRYw+2YUQqDQAxEh9GWuqV6Be9/JT88RN0VRUuv0ElBwhKY3yF5m90kLKd+mF/975r6geNyjm9Fy0kgqTJ6nqoIdGKczjmPJU5tZxA8wWPL7YOHKhZAlcmTAVVcxSCrMbfgqY/H6JEOoASPe56tgSrqLR7U2zWojwWjJ3jq47HEiZoGTwJxP1RRXw8y9RZfCMhbhTHOVTxXnUFtPJ5rGjzu35y2KfKGQxWT2K4TQL1d2zz6KAH1kRU8wfOXx+37qY3Hct+aDaqot2u7R/wMuDS3qnj0z0HqK4X/+kRNHdfUwFP2Nisqe/sFuUZiVjC9HCUAAAAASUVORK5CYII=) no-repeat left top;width:17px;height:150px;top:8px;left:167px;position:absolute;opacity:.85}.p-colorpicker-panel .p-colorpicker-hue-handle{position:absolute;top:150px;left:0;width:21px;margin-left:-2px;margin-top:-5px;height:10px;border:2px solid #fff;opacity:.85;cursor:pointer}.p-colorpicker-panel.p-disabled .p-colorpicker-hue-handle,.p-colorpicker-panel.p-disabled .p-colorpicker-color-handle{opacity:.5}.p-contextmenu{width:12.5em;padding:.25em;position:absolute;display:none}.p-contextmenu .p-menu-separator{border-width:1px 0 0 0}.p-contextmenu ul{list-style:none;margin:0;padding:0}.p-contextmenu .p-submenu-list{display:none;position:absolute;width:12.5em;padding:.25em;z-index:1}.p-contextmenu .p-menuitem-active>.p-submenu-list{display:block}.p-contextmenu .p-menuitem-link{padding:.25em;display:block;position:relative}.p-contextmenu .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-contextmenu .p-menuitem-text{vertical-align:middle}.p-contextmenu .p-menuitem{position:relative}.p-contextmenu .p-menuitem-link .p-submenu-icon{position:absolute;margin-top:-.5em;right:0;top:50%}.p-contextmenu .p-menuitem-active>.p-submenu>.p-submenu-list{display:block !important}.p-datascroller .p-datascroller-header{text-align:center;padding:.5em .75em;border-bottom:0 none}.p-datascroller .p-datascroller-footer{text-align:center;padding:.25em .625em;border-top:0 none}.p-datascroller .p-datascroller-content{padding:.25em .625em}.p-datascroller-inline .p-datascroller-content{overflow:auto}.p-datascroller .p-datascroller-list{list-style-type:none;margin:0;padding:0}.p-dataview .p-paginator{text-align:center}.p-dataview-column{padding:.25em}.p-dataview-content-empty{padding:.25em .625em}.p-dataview .p-dataview-header,.p-dataview .p-dataview-footer{text-align:center;padding:.5em .75em}.p-dataview .p-dataview-header{border-bottom:0 none}.p-dataview .p-dataview-footer{border-top:0 none}.p-dataview .p-paginator-top{border-bottom:0 none}.p-dataview .p-paginator-bottom{border-top:0 none}.p-dataview.p-dataview-list>.p-dataview-content>div.p-grid>div{width:100%}.p-dataview-loading-icon{font-size:2em}.p-datatable{position:relative}.p-datatable table{border-collapse:collapse;width:100%;table-layout:fixed}.p-datatable .p-datatable-thead>tr>th,.p-datatable .p-datatable-tbody>tr>td,.p-datatable .p-datatable-tfoot>tr>td{padding:.25em .5em}.p-datatable .p-sortable-column{cursor:pointer}.p-datatable .p-sortable-column-icon{vertical-align:middle}.p-datatable-auto-layout>.p-datatable-wrapper{overflow-x:auto}.p-datatable-auto-layout>.p-datatable-wrapper>table{table-layout:auto}.p-datatable-header,.p-datatable-footer{padding:.25em .5em;text-align:center;font-weight:bold}.p-datatable-header{border-bottom:0 none}.p-datatable-footer{border-top:0 none}.p-datatable .p-paginator-top{border-bottom:0 none}.p-datatable .p-paginator-bottom{border-top:0 none}.p-datatable-scrollable-wrapper{position:relative}.p-datatable-scrollable-header,.p-datatable-scrollable-footer{overflow:hidden;border:0 none}.p-datatable-scrollable-body{overflow:auto;position:relative}.p-datatable-scrollable-body>table>.p-datatable-tbody>tr:first-child>td{border-top:0 none}.p-datatable-virtual-table{position:absolute}.p-datatable-frozen-view .p-datatable-scrollable-body{overflow:hidden}.p-datatable-frozen-view>.p-datatable-scrollable-body>table>.p-datatable-tbody>tr>td:last-child{border-right:0 none}.p-datatable-unfrozen-view{position:absolute;top:0}.p-column-filter{width:100%}.p-datatable-resizable>.p-datatable-wrapper{overflow-x:auto}.p-datatable-resizable .p-datatable-thead>tr>th,.p-datatable-resizable .p-datatable-tfoot>tr>td,.p-datatable-resizable .p-datatable-tbody>tr>td{overflow:hidden}.p-datatable-resizable .p-resizable-column{background-clip:padding-box;position:relative}.p-datatable-resizable-fit .p-resizable-column:last-child .p-column-resizer{display:none}.p-datatable .p-column-resizer{display:block;position:absolute !important;top:0;right:0;margin:0;width:.5em;height:100%;padding:0;cursor:col-resize;border:1px solid transparent}.p-datatable .p-column-resizer-helper{width:1px;position:absolute;z-index:10;display:none}.p-datatable .p-datatable-tbody>tr>td.p-cell-editing .p-component{width:100%}.p-datatable-reorder-indicator-up,.p-datatable-reorder-indicator-down{position:absolute;display:none}.p-datatable-responsive .p-datatable-tbody>tr>td .p-column-title{display:none}@media screen and (max-width:40em){.p-datatable-responsive .p-datatable-thead>tr>th,.p-datatable-responsive .p-datatable-tfoot>tr>td{display:none !important}.p-datatable-responsive .p-datatable-tbody>tr>td{text-align:left;display:block;border:0 none;width:100% !important;float:left;clear:left}.p-datatable-responsive .p-datatable-tbody>tr>td .p-column-title{padding:.4em;min-width:30%;display:inline-block;margin:-.4em 1em -.4em -.4em;font-weight:bold}}.p-datatable-loading-overlay{position:absolute;width:100%;height:100%;-ms-filter:"alpha(opacity=10)";opacity:.1;z-index:1}.p-datatable-loading-content{position:absolute;left:50%;top:50%;z-index:2;margin-top:-1em;margin-left:-1em}.p-datatable .p-datatable-loading-icon{font-size:2em}.p-dialog{position:fixed;padding:0;display:none;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.p-dialog-visible{display:block}.p-dialog .p-dialog-titlebar{padding:.5em .75em;position:relative;border:0}.p-dialog .p-dialog-content{position:relative;border:0;padding:.5em .75em;background:0;zoom:1}.p-dialog-resizable .p-dialog-content{overflow:auto}.p-dialog .p-resizable-handle{width:14px;height:14px;right:3px;bottom:3px;position:absolute;font-size:.1px;display:block;cursor:se-resize}.p-draggable .p-dialog-titlebar{cursor:move}.p-dialog .p-dialog-titlebar-icons{float:right}.p-dialog .p-dialog-titlebar-icons:after{content:"";display:table;clear:both}.p-dialog .p-dialog-titlebar-icon{text-decoration:none;padding:.125em;cursor:pointer;display:inline-block;vertical-align:middle;border:1px solid transparent}.p-dialog .p-dialog-titlebar-icon span{display:block;margin:0}.p-dialog-footer{padding:1em;border-width:1px 0 0 0;text-align:right}.p-dialog-mask{position:fixed;width:100%;height:100%}.p-confirmdialog{width:30em}.p-confirmdialog.p-dialog .p-dialog-content{padding:1em 2em}.p-confirmdialog .p-dialog-content .p-confirmdialog-icon{font-size:1.5em;vertical-align:middle;margin-right:.5em}.p-confirmdialog .p-dialog-content .p-confirmdialog-message{vertical-align:middle}.p-fluid .p-dialog-footer .p-button{width:auto}.p-rtl .p-dialog .p-dialog-titlebar-close{float:left}.p-rtl .p-dialog .p-dialog-footer{text-align:left}@media screen and (max-width:40em){.p-confirmdialog{width:90%}}.p-dialog-enter{display:block;opacity:0;transform:translateX(-50%) translateY(-50%) scale(0.7)}.p-dialog-enter-active{opacity:1;transform:translateX(-50%) translateY(-50%) scale(1);transition:all 150ms cubic-bezier(0,0,0.2,1)}.p-dialog-enter-done{display:block}.p-dialog-exit{opacity:1;display:block}.p-dialog-exit-active{opacity:0;transition:all 75ms cubic-bezier(0.4,0.0,0.2,1)}.p-dialog-exit-done{display:none}.p-dialog-maximized{transition:none;transform:none;width:100vw !important;top:0;left:0}.p-dialog-maximized .p-dialog-content{transition:height .3s}.p-dropdown{display:inline-block;position:relative;cursor:pointer;vertical-align:middle;min-width:12.5em}.p-dropdown .p-dropdown-hidden-select{bottom:0;clip:auto}.p-dropdown .p-dropdown-hidden-select select{transform:none;height:1px;position:absolute;top:0;clip:rect(0,0,0,0);pointer-events:none}.p-dropdown .p-dropdown-clear-icon{position:absolute;right:2em;top:50%;font-size:1em;height:1em;margin-top:-.5em}.p-dropdown .p-dropdown-trigger{border-right:0;border-top:0;border-bottom:0;cursor:pointer;width:1.5em;height:100%;position:absolute;right:0;top:0;padding:0 .25em}.p-dropdown .p-dropdown-trigger .p-dropdown-trigger-icon{top:50%;left:50%;margin-top:-.5em;margin-left:-.5em;position:absolute}.p-dropdown .p-dropdown-label{display:block;border:0;white-space:nowrap;overflow:hidden;font-weight:normal;width:100%;padding-right:1.5em}.p-dropdown .p-dropdown-item-empty,.p-dropdown .p-dropdown-label-empty{overflow:hidden;visibility:hidden}.p-dropdown.p-disabled .p-dropdown-trigger,.p-dropdown.p-disabled .p-dropdown-label{cursor:default}.p-dropdown label.p-dropdown-label{cursor:pointer}.p-dropdown input.p-dropdown-label{cursor:default}.p-dropdown .p-dropdown-panel{min-width:100%}.p-dropdown-panel{position:absolute;height:auto}.p-dropdown-panel .p-dropdown-items-wrapper{overflow:auto}.p-dropdown-panel .p-dropdown-item{font-weight:normal;border:0 none;cursor:pointer;margin:1px 0;padding:.125em .25em;text-align:left}.p-dropdown-panel .p-dropdown-item-group{font-weight:bold}.p-dropdown-panel .p-dropdown-list{padding:.4em;border:0 none;margin:0;list-style-type:none}.p-dropdown-panel .p-dropdown-filter{width:100%;box-sizing:border-box;padding-right:1.5em}.p-dropdown-panel .p-dropdown-filter-container{position:relative;margin:0;padding:.4em;display:inline-block}.p-dropdown-panel .p-dropdown-filter-container .p-dropdown-filter-icon{position:absolute;top:.8em;right:1em}.p-fluid .p-dropdown{width:100%;min-width:100%}.p-fieldset,.p-fieldset .p-fieldset-legend{padding:.5em 1em}.p-fieldset-toggleable .p-fieldset-legend{padding:0}.p-fieldset-toggleable .p-fieldset-legend a{padding:.5em 1em;cursor:pointer;white-space:nowrap;display:block}.p-fieldset .p-fieldset-toggler{margin-right:.1em;display:inline-block;vertical-align:middle}.p-fieldset .p-fieldset-legend-text{vertical-align:middle}.p-fieldset-content-wrapper-collapsed{overflow:hidden;max-height:0;transition:max-height .5s cubic-bezier(0,1,0,1)}.p-fieldset-content-wrapper-expanded{max-height:1000px;transition:max-height 1s ease-in-out}.p-fieldset-content-wrapper-expanding{overflow:hidden}.p-fileupload-buttonbar .p-fileupload-choose.p-disabled input{cursor:default}.p-fileupload-buttonbar{padding:.5em;border-bottom:0 none}.p-fileupload-buttonbar .p-button{vertical-align:middle;margin-right:.25em}.p-fileupload-content{padding:1em;position:relative;transition:border-color .3s}.p-fileupload-content.p-fileupload-highlight{border-color:#156090}.p-fileupload-files img{border:0}.p-fileupload-files{display:table}.p-fileupload-row{display:table-row}.p-fileupload-row>div{display:table-cell;padding:.5em 1em;vertical-align:middle}.p-fileupload-content .p-progressbar{width:100%;position:absolute;top:1px;left:0;height:.25em;border:0 none}.p-fileupload-content .p-progressbar-value{border-radius:0;border:0 none}.p-fileupload-choose{position:relative;overflow:hidden}.p-fileupload-choose input[type=file]{position:absolute;top:0;right:0;margin:0;opacity:0;min-height:100%;font-size:100px;text-align:right;filter:alpha(opacity=0);direction:ltr;cursor:pointer}.p-fileupload-choose.p-fileupload-choose-selected input[type=file]{display:none}.p-fluid .p-fileupload .p-button{width:auto}.p-fluid .p-fileupload-content .p-button-icon-only{width:2em}.ui-fluid .fc .ui-button{width:auto}.p-growl{position:fixed;width:20em}.p-growl.p-growl-topright{top:20px;right:20px}.p-growl.p-growl-topleft{top:20px;left:20px}.p-growl.p-growl-bottomleft{bottom:20px;left:20px}.p-growl.p-growl-bottomright{bottom:20px;right:20px}.p-growl-item-container{position:relative;margin:0 0 10px 0}.p-growl-item{position:relative;display:block;padding:.5em 1em}.p-growl-item p{padding:0;margin:0}.p-growl-icon-close{position:absolute;top:4px;right:4px;cursor:pointer}.p-growl-title{font-weight:bold;padding:0 0 .5em 0;display:block}.p-growl-image{position:absolute;display:inline-block;left:.5em;top:.25em;padding:0;font-size:2em}.p-growl-message{padding:0 0 .25em 0;margin-left:2.5em}.p-growl-message p{font-weight:normal}.p-growl-enter{opacity:.01}.p-growl-enter.p-growl-enter-active{opacity:1;transition:opacity 250ms ease-in}.p-growl-exit{max-height:500px}.p-growl-exit.p-growl-exit-active{max-height:0;overflow:hidden;margin-bottom:0;transition:max-height .5s cubic-bezier(0,1,0,1),margin-bottom .5s cubic-bezier(0,1,0,1)}.p-inplace .p-inplace-display{display:inline;cursor:pointer;border:0 none;padding:.25em;font-weight:normal}.p-inplace .p-inplace-content{display:inline}.p-inputswitch{position:relative;display:inline-block;width:3em;height:1.75em}.p-inputswitch-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;transition:.3s;border-radius:30px}.p-inputswitch-slider:before{position:absolute;content:"";height:1.250em;width:1.250em;left:.25em;bottom:.25em;border-radius:50%;transition:.3s}.p-inputswitch-checked .p-inputswitch-slider:before{transform:translateX(1.250em)}.p-inputtext{margin:0;outline:medium none;padding:.25em;font-weight:normal}.p-fluid .p-inputtext{width:100%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}.p-inputgroup{display:flex}.p-inputgroup .p-inputgroup-addon{display:inline-block;text-align:center;min-width:1.5em;padding:.25em;border-width:1px;border-style:solid}.p-inputgroup .p-inputgroup-addon+.p-inputgroup-addon{border-left:0 none}.p-inputgroup .p-inputtext{padding-left:.5em}.p-inputgroup>.p-inputtext:not(:first-child),.p-inputgroup>.p-inputtextarea:not(:first-child),.p-inputgroup>.p-calendar:not(:first-child)>.p-inputtext,.p-inputgroup>.p-chips:not(:first-child)>.p-inputtext,.p-inputgroup>.p-dropdown:not(:first-child),.p-inputgroup>.p-multiselect:not(:first-child),.p-inputgroup>.p-selectbutton:not(:first-child)>.p-button,.p-inputgroup>.p-autocomplete:not(:first-child)>.p-autocomplete-input,.p-inputgroup>.p-spinner:not(:first-child),.p-inputgroup>.p-spinner:not(:first-child)>.p-spinner-input{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0 none}.p-inputgroup>.p-inputtext:not(:last-child),.p-inputgroup>.p-inputtextarea:not(:last-child),.p-inputgroup>.p-calendar:not(:last-child)>.p-inputtext,.p-inputgroup>.p-chips:not(:last-child)>.p-inputtext,.p-inputgroup>.p-dropdown:not(:last-child),.p-inputgroup>.p-multiselect:not(:last-child),.p-inputgroup>.p-selectbutton:not(:last-child)>.p-button,.p-inputgroup>.p-autocomplete:not(:last-child)>.p-autocomplete-input,.p-inputgroup>.p-spinner:not(:last-child),.p-inputgroup>.p-spinner:not(:last-child)>.p-spinner-input,.p-inputgroup>.p-spinner:not(:last-child)>.p-spinner-button{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0 none}.p-inputgroup .p-button{margin-right:0;border-radius:0}.p-fluid .p-inputgroup .p-button{width:auto}.p-fluid .p-inputgroup .p-inputtext{flex:1 1 auto}.p-inputgroup .p-checkbox,.p-inputgroup .p-radiobutton{margin-right:0;vertical-align:bottom}.p-float-label{display:block;position:relative}.p-float-label label{font-weight:normal;position:absolute;pointer-events:none;left:.25em;top:50%;margin-top:-.5em;transition:.3s ease all;-moz-transition:.3s ease all;-webkit-transition:.3s ease all;color:#898989;line-height:1}.p-float-label input:focus ~ label,.p-float-label input.p-filled ~ label,.p-float-label .p-inputwrapper-focus ~ label,.p-float-label .p-inputwrapper-filled ~ label{top:-.75em;font-size:12px}.p-float-label .input:-webkit-autofill ~ label{top:-20px;font-size:12px}.p-inputtextarea-resizable{overflow:hidden;resize:none}.p-fluid .p-inputtextarea{width:100%}.p-lightbox{position:fixed;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.p-lightbox-content-wrapper{position:relative}.p-lightbox-content{position:relative;margin:0;padding:0;background-color:#000;transition-property:width,height}.p-lightbox-nav-right,.p-lightbox-nav-left{position:absolute;top:50%;cursor:pointer;z-index:1}.p-lightbox-nav-left{left:0}.p-lightbox-nav-right{right:0}.p-lightbox-loading .p-lightbox-content{background:url(data:image/gif;base64,R0lGODlhIAAgAPYAAAAAAOLi4gMDAyMjIyAgIAEBATw8PHBwcGdnZzc3NwcHBxMTE2hoaHFxcVNTUxUVFX5+fpmZmW5ubhcXFwoKCnNzc1FRUUdHR7Gxsa6urqmpqYODgx4eHggICHV1dU5OTgUFBTAwMKysrIGBgREREVVVVXd3dzg4OCcnJ7Ozs7CwsEhISDExMSwsLA4ODiUlJbe3t0FBQTo6OkxMTAwMDICAgGBgYCEhIRgYGGpqatHR0dPT08HBwdXV1bm5uVhYWBoaGhwcHBAQEEVFRVdXV1xcXIqKimNjY15eXqOjo56enpqamqWlpaCgoGFhYSoqKqGhoaenpygoKDU1NZycnFpaWsrKyr6+vrW1tc7OztDQ0D4+PpGRkZeXl1BQUHx8fJOTk46OjomJiZCQkJWVlcPDw8XFxcfHx7y8vC4uLjMzM4WFhUBAQIeHh7q6ukpKSszMzIyMjMnJyXp6enl5eUNDQ8DAwGxsbKqqqmVlZdfX1wAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAFAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QkZKECzk2NJOCDxchgwU1OjsSmQoQGCIWghQiOz01npALERkYGQ4AFBqtP4ILN0ACjgISGhkpGDIANjw+KABCKNEujxMbGiowowAEHIIT0SgUkBwjGiIzhkIvKDiSJCsxwYYdmI8KFB0FjfqLAgYMEiSUEJeoAJABBAgiGnCgQQUPJlgoIgGuWyICCBhoRNBCEbRoFhEVSODAwocTIBQVwEEgiMJEChSkzNTPRQdEFF46KsABxYtphUisAxLpW7QJgkDMxAFO5yIC0V5gEjrg5kcUQB098ElCEFQURAH4CiLvEQUFg25ECwKLpiCmKBC6ui0kYILcuXjz6t3Ld1IgACH5BAAFAAEALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Ohw8Tj44XKlhbk4sKEVZZXAWZgwsxLYMdTJ1RCqEAIA1JSjOCFKhaUSCCoI8kRkpMULIKVFZaXaALN0C6jAVHS01RTFMAVVc8XgBCKNsujwsmS1AaCIJSpQAT2ygUk0AeS0oXhkIvKDihQjEyy4QdNJMgOqxqxC9RCyJFkKwYiKgAkAEE2CWi4CChDSdSFJFQx0ERiCEWQlq4oUjbto6KgCQwIOOJAEUFcBAIInGRgIKsGrrogIhCzUcFgqB40a0QiXpAMj1QJ6kVLgA41P1kxGHbi39HB/A0iaKoo6MvSAgisC0pAGRBXk4SOOjGtiCDFXCGSodCSM6GC7ze3cu3r9+/gAcFAgAh+QQABQACACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjoYkTj8Uj40SPGUMlYsdSzxmSiCbg0IyKIM0TTxnTAqjACAIYGNDgh1Uq1CiAB2VLl9hZGAXsGSrXAUKEjNABY4FRGJjXV0sAD8+aB8ANmItKC6PJAxiXBFIAAIhIYJVUygolI8TCNIxhkAvKDijLidTzgx1oLEJxC5GAReRkLFixZSDhwoAGUBAXiIWQy6smMFBEQl4KDoqenKi5Al+iYSAFJmIwgAUL5opKoCDQBCLM189c9HrEAWcz4LADFeIhD4gmxaAnCDIoCAcIIEuEgqToNEBvVTCI+rIxYAXJAQRgIcUwIIbQQQUPHiD7KCEOhMBTIAnJG7EBVzt6t3Lt6/fvYEAACH5BAAFAAMALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2OhiRVDhSPjQhYPkeViwpjWG5dIJuDBTdBgxRkWGhKCqOCK18QW4IdXKsRogAPHY8FNl8bG2wAIEarRgUKDW4ROI8XHl9rbS0ADhkYbwBIWj1wU48uPx4QYg4ABS1pgm09ZUc0lQtE5SeGR1hEz5sUIWkFDAkAIq9SAQGOAjIC8YLFFBQIExUAMoAAJUU41oVQs0ARCRQgOSyaABKkC0VCSopUJADHjRsTFhXAQSDIRZmvErrodYjCTV9BULw4WYjECxRANn0EGbNYRBwlfzIiKVSe0Ru9UpqsRGHAABKCCIBMCmCBqYiPBKC9MZZUTkJUEIW8PVRgAdG5ePPq3ctXbyAAIfkEAAUABAAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6GQhZDHY+NSFEiRZWLCmtRGXEgm4QgCoMdYhoZYKajAA9ETmqCnRoqY6IACy6VCQgHDQkAIBAaGCMAChIpShyPTzYMDR4oADNQUUMAVXJZOj+PHRdOOR4rAAVST4Ij3joXlS7jOSyGNnA7YRSbHSgvhyAMvBHiqlEBgxNu3MCxqACQAQT2KXKBoiIKGopIWHQ20eJFRUI2NsShcMJIAkEkNixo0AWlQxRUPioQxB+vQiReoACySWNFk8MECMJhUSajCRVfYMx5g1LIijcdKSAwgIQgAhV56roBRGilAgcF3cg6KCxLAEhREDxbqACJqGwI48qdS7fuqEAAIfkEAAUABQAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6GLitsCo+NJRFUM5WLICYRTSMCm4kdc59iIIIgLw+VT2woggp0EVBrogtfblFSjhNeP0hpAAINEUl0AApfZWdyTr4rFkVOBAB1YBFsAD92zlZ1jiBTbw42WwAFL7ECRmZycEYUjxRqbyW9hUfwRiSbIEGCHKLwxoKQUY1AUCjQiAQBAhMWFWjRgkCHRRRQaERBQxGJjRwwbuSoSAhIRg9u3IioqAAOAkAuMmKIsFEBFzINUZi3qUAQFC9cGCKxDsimjxpZghAFAMdGno4eaHzRkeiNiyY1Cn0EgsAAfwAIaDQKYMENIEwr0QRwY+ygtTUUAUzQeDCuoQIkttrdy7ev3799AwEAIfkEAAUABgAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6GBQMDj45sI20ylIsgDG1jBwWaiQp3nl8ggiAyQxSPJCgPqZ1cdAIAJB4pbkeOCmoxF5MCR21cEgAKFTBodmO2jB0hqzM4ADIjRpkOKcw8P48cLAYrIQAFN5MFI252ZRutjiAELFschkVXZWskmgUkC4coXPjgQlQjEDj4MSJBgMCERRPA2MlgYJGCFygy0lCE5MwVH21QjcKoUREBNglY3GC04MaNh4oK4CAARIHBm4gKuOiAiAI8SgWCoHhRsBAJjEA0vcoIE8QzHBlR/Gz0IOOLjUdv8BQStWg8AjcUEsiYFEBLIM+ADrpBdlAonIIRJmQUAhcSCa918+rdy7evqEAAIfkEAAUABwAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6HIAKPjkFFP0CTjB8VXx+ZigI/FRAMkgACCWwdjwVCNIICRKMHkkJ3URlIj0FPITgABQ4VNUcFIDl4KiliposCLygtUyQAIXd0LQAzuClYDo9AKFIhN4ITmAV0GSkwX6uOIBziC4ZEKT4QQpmtr4YddStcfGoEYoI+RkIIEJiwaEIYNxpkLAIBDQWKfojy6NiYRIEiihYvKjrSo2QTEIsW3LjBUNEDD1SohBgIqlmjAi7eGaJA4VOBICheCCxEAhqmSSRCtowkCEfIno8eWHzxquiNVUJCDoVH4AY1AAQsHlUJpIDPQTfEDjJLc9AEiwcP2xYqQGKr3Lt48+rdizcQACH5BAAFAAgALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Oj5CHCmkhCpGLU0gMMpeJBUOaPwWCAiwyHZAdlgACF0g5NgIALkcRTSWPEy8DQgAFdUh3uCBOVFBMELKMBTcoKC8UAC8/CC8AQ11NTBozj0DOKA+CJOIFEtp4FaiOIBzPLoZeTHge8JAFLtGGHVt1NJ2MQEzoxUgIAQITFj1og4EJm0UCBoD7l8iGHCtWlIBQFHGiIhtZQmpcZPBGQkUPxIhY8hDgoQIUlDnCt84QBX33grwzROIFCiCRSIA7CUIZDnA4Gz1w9uJfzxuohICzx47ADRKCCDgDCmDBDRyjIoUF0OznoLEuJzgj6LJQARJUCtvKnUu3rt25gQAAIfkEAAUACQAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkIgkC5GMHEMzN5WKLBcOQ4MCL2oKkCAgggWdJR8FADREbWMfjyQvA0KCaRdEFwACJUZcXQ2ujRwoKC8UAEB1FhwABrJdS76OOMkoD4I0JIJOY11UOaWOIMgvNIYXZOTrkAUuzIYKJ1vwm4oCD0FCxomEECAwYRGQGhpUJPmSz5CAAdoaGrpjpyKPKzISFYCYTGIhBGZCmrFjQJELAjcKKnqwIQoTJk4E6DNUoIPNR/I6IGIxRGe8IMpcGCKR4EsbobW0qQQhE0A2KQ5QQHqQTB0AWzd0CtGW6xEIlN8AEEgGRNCCGzgA4hx0g+wgtfoTJiTrOrNQARJI6+rdy7evX76BAAAh+QQABQAKACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QiCACkYxCTywklYoEaTIsgwUcQJEgBYM3aQYygh1vHiYtj0IvN0KCnVtTAAUrJhBrDo8cKCgvFABCLQYTAGoVwGJbjzjFKA+CCjSCDl9rRkgKjyDEL9uFWxtxNuePBS7IhiAsJ/GbigILQED2iEIEBJop4jCHShImYlAkEjDAWrtDOVKkwEIRwilEBBwquuOmY0cIilwQuCEwEQ4ISpRQmUPgnqECHWJeZPSuwyEQQ4bYhFQgiDEXhhxo0TIG6CMS1gROEpQGih4dMSA9KGYOAIlaNoUYwKOHCCQQIzUByIiCFIAFMiqUdIeqmFleLhQHTSh2K26hAiSM2t3Lt6/fv5sCAQAh+QQABQALACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QiAWRjRQ3BAqUihwoKByEIJOQBaIABJ0vggoJRBeZjjQ3N0KCp1IDAAUyRzkHKI9BqBQAQgMoLgBSNgwNDZ+OOJ0oC4Igr3XMJl6ljCCcL8OFagd0Dh2RBS7hhSBPIeeaiwIkODjriC4EBBOLQAdjZLpAwJXoVCcaio4wicJQgwdFBlEgTJQng0WLDxNRIHCDn6IJHsiAAVPhWTxCBTp0eNUoHbxCAmLEeOmoQLAXyAoxsCLHSE5HJKR5BCFAUJgdWqywgfQAFUISL26cQ6IDqQNIIDiSqNUJCAAFDdyI8Thq0I2ugx4UPQlgQidabA4LFSDxM67du3jz6qUUCAAh+QQABQAMACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QkZKECkBAApOJQCgoD5mDBQWDBJwcggUDUwSQHTc3QoKkKEGCTzMODjSPOJwvHQBCAwMUAEErDkVVLo8TnCgLggIggiwWRUd1kCAcKC/EhVJVeRcKkQUu34UCNwPln4kFQg8Pv4oUBAQTixN5NW1iDVYlkoVCV6IfZLp0iRAhhyKCBhEVaUKR4h17BG7oU/TgjpiPOWi9o6TAXaNz9dRt2ZLSUYEg3ZYVysPjyoaIjUg42wgCEwAjVs7YMQDpQS9dJF7c+FXESlAv2jKSiMUJCAAFErBwMWVu0I2qgxZMe9cMBayRhAqQkIm2rdu3cATjNgoEACH5BAAFAA0ALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Oj5CRkoQKQDgCk4k4KCgPmYMFBYMEnByDJBwUkB03N0KCpChBgkAsBiGQE5wvHQBCAwOqJCEydWyYjg+cKAuCAiCCHMUzuI8CHCgvqoU4dR8J0JAFLtuGOEHhn4gFNCQkyIkUBAQTiwtEBx4mSECKsSg0FH3YsKaNQST+lgVM5GDMmDAObSiSd6OeIhJHvnyZYwOHukIKFKRjNK6XIQpvLph8VCBINheGjrjBMufVIxLLLIIIKIALDzQ+6Ch4pCxbQBIvvrABgIQHjytYTjwCQeAGCVgoPJApoOBLmadeIokSdAMFka0AaHjAomTAJ10XFIiA4nD1UwESC0Z+3Mu3r9+/kAIBACH5BAAFAA4ALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Oj5CRkoQCEwsFk4k4KCgLmYOYgwScHIMULpEdBDdCgqMoQYITLyg4kBOcLx0AQgMDFLycLS+QC5ydggIgsigtakCQBRwoL8CFQi1TKKGPBS7WhkKXn4unHdyIFAQEE4tCK0VONh+tia8oNIoxBw0VFR5bFN3Ll+jCl4MHYyhSd6OdIiFEJNy54wAVOUIgMnZzscuQixVsOnYLQs0iIRsZNDQw2YjEMYdPSinggkUFngMiGT3IlQ+ICjQBq/jAggGPl0cgVpEQ9ELFjjEFQHgYimGEgGiDWvjYQQaTEAg+Uvz49OKKjiKm2IT8ROFIlZwXCOPKnUu3LqRAACH5BAAFAA8ALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Oj5CRkoQFJCSTijgoKAuYiASbHIMdHZEKHARCgqAoQYITLy+Xjw+bL6VCAwMUAEKbrZALv50AAiCvv6qPBRwoL7yFvig4kgUu0IYUNJ6MChTHixQEBBOLHVMrHytSi6wo24ksVUVISD/wn7/4h1MM/gw2XCgSd6PcwDdIbBBhx62QAAUClrkoZYhGDBkKIhUI4kxgoR9NIiDYx4jEr3ICWrgCIUYDFCp5KDaq5WxbDjlYDABwIEJDEiorHoEgcOMSBRU64BgpAEJCzyQmCkCSCoAEjKRhpLrwICKKBU9tkv4YRMEARk8TjvyQ2bCt27dwBONGCgQAIfkEAAUAEAAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkJGShAUkJJOKEygoC5iIBJscgyAgkQocBEKCoChBgg8vAzSQD5svHQBCAzcUuZsoOJALv50AAgKCmpuqjwUcKC+9hUKbwZEFLtKGFLOeiwIgBYwUBAQT3y9qCSzMiawo3Yg3dUMXFyeL7/GHUhb+FgYWUeBw45yiDgZmvIlxyVshAeKaucBliIYMNaUgFQgCzYUhL2PaVNHWiMSvcwKeAAEA4ksELnGqKHhUC9osBDxE4PtAJQKYODEegSBw4xIFPFbKbCgAIo8SnzkiOoooBEPSNuJo3KHS5Y2nEVZ4lBjUIc2UmZgm2HCA1qHbt3AF48qVFAgAIfkEAAUAEQAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkJGShAUkQpOKDygoC5iIBJscgyAFkQocBJcAoChBgg8vNx2Qmigvs0IDNxQAQpsoD5ALv50AAgKCE7+qjgUctryFQi8oOJIFLtGGHTSejAWljBQEBBOLBUADA0DIiqwo3YkPTy1padbuv/GIQTL+Mq4UUeBww5wiEC1OnJACwpshcJCwzdrG4knDiEFQSAlh6AIEDx8mOnKx6cgcYyFQGDvQpgadDxcbaXqDxQsAJz7wGAAwJE6bEXMSPALxQgwDARSS2IFhwliVMD9/QBJQDAcWOz7aIKPgxEibGJgWqMCqVZCCjTEjUVBix80dh4UQLuChkgZuoQck7Ordy5dQIAAh+QQABQASACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QkZKEBSQuk4oPKCgkmIgEmxyDAgWRChwEQoKgKEGCDwMEIJCaKC8dAEIDNxS5mygLkAu/wQCkghO/qo8FHLa9hUIvKDiSBS7Qhh00noyljRQEBBOLBUC71YusKNyJw7/Zn7/tiO+b8YcUHDfkigVBLwak60bwWhABhkCguIEQUrMiWH4YksHAxhYFkIQgMLMDgrE0L4w5qXDnCJuGjWZY6QFnBoAiGZQkAGBgDsk8LR6lyeAmj4AOS1LguWPMyxwPEthAIvFAEAkmKUR8KdXBgok7UjA9jVrjm4AbrjC5aJIigwmChTxEfYOW0IISbwgwtp1Lt66gQAAh+QQABQATACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QkZKEBUIuk4oPKCgkmIgEmxyDBZIKHARCgqAoQYIPAxwCkJooLx0AQgM3FLibKKmPC74LggKkABO+vI8FHLXLhEIvKDiSBS7QhR00nozHjBQEBBOLBUC6xIurKNyJwpu26r7tiEK+8YoUHDfkigU4BDgA60YQSAkZsgoJCILjm6MJSXrIKWEohIMVaRI6qrJDB5w5AAQ8uSFoho0SH1pAMqEjS5kVAIg0GcMCgBoENoh8ePCohYYUTgR0GBNliRMABergJAIEkpB0QpZEoXKAFIgtPwyAwBQ1ipIK3255okHG6x2Che54rYOWEIkPdQi2tp1Lt66gQAAh+QQABQAUACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QkZKEBUIuk4oPKCgkmIgEmxyDBZIKHARCgqAoQYILN0ECkJooLx0AQgM3FLibKKmPC74LggKkABO+vI8FHLXLhEIvKDiSBS7QhR00nozHjBQEBBOLBUC6nYurKNyJwpsDsorr7YhCvvGLFBw35IoFOAhwqNetGw4HJ+QVInEp0gQlWXhYMHRDBosg3xodgSOnTAUABV60AnBixZYpIx15kGPGzRAAXrjUeAJAioUVbNSAePQECp4iAhSs6WKkBMgpXlac2PlICDEALsJ0iXOElIAXCaphchGnS5g8GbvREOPVRsFCR7waOBvtggGmbAbjyp0LIBAAIfkEAAUAFQAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkJGShAVCLpOKDygoJJiIBJscgwWSChwEQoKgKEGCCzdApI+aKC8dAEIDNxS4myi8jwu+C4ICshO+wI4FHLXKg0IvKDiSBS7PhB00noyyjBQEBBOLBUC6qYurKNuJJL433ogDagkxnYlC7/GHLWFNJrcSFcBBIAi7RR2E7ONGCAeRISAOubgUKUgXM24cGKIV6xGJMGWu+JAAoAABagBQhJCC4sEjByHdqFgB4EINCQMABDmxksAjCXbcpMgjQIGJNSZopuQpypGUCFGK3KJRYw0djSWBAFEAycU4QTQgrJlDhCEhCnPWfLFglpADtWoN2g6iIIOFALl48+YNBAAh+QQABQAWACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QkZKEBUIuk4oPKCgkmIgEmxyDBZIKHARCgqAoQYILN0Ckj5ooLx0AQgM3FLibKLyPC74LggKyE77AjgUctcqDQi8oOJIFLs+EHTSejLKMuTcTiwVAupeKQmBKNRI3iiS+BIskKT09Ox/o8YwXTCk12AoVwEEgSMBDHVx442ZogoUYIA65OAcJyBgfKvIVgoci1iMhbXykEJEHADliAIAMe+QExkgodQBskVClFUcUohqB4JIiQxQHBUAwaODkhKAJ0h48YpBBg5OIFCQ0yBNTEAWKjSjIOKHA6p0GCIYwJAQiD9gtYwkZOOAkZ1qTHAeovZ1Ll24gACH5BAAFABcALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Oj5CRkoQFQi6Tig8oKCSYiASbHJ4ACkEEQoKgKEGCJARABZCaKC8dAEIDNxS3myi7jwu9C4ICsQATvb+OBRy0yoNCLyg4kgUuz4QdNJFCqI3GjCsYMGudiQVAuduKQhg772+KJL0EiyQZWVlwM+y9ootDmoiYg61QARwEghQ8pMAFuFGGHswwAOIQhYWLcLQRAeWCIRLSYD0SAgEPEypVWl0CAETYoyomlXAxAEDNjyHDhPQC4ghEGyZNuswoIIBIkRlSBD148cJbIydNIhCpSMNGkQ8sBnVQAKnDFDVcAXQoUsSLGoiEBHwoYgEFWkI4DS4kWPdW0MO6ePPWDQQAIfkEAAUAGAAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkJGShAVCLpOKDygoJJiIBJscngAKQQRCgqAoQYIkBEAFkJooLx0AQgM3FLebKLuPC70LggKxABO9v44FHLTKg0IvKDiSBS7PhB00kS6ojcaMQyIYI52JBUADBNiGQnhWcHAXiiS9oopCUWZmZW/49oxidEnigR0lHASCGDSkgAa4UYYWXEgg4BCFhYomzFHChY0hEtKAQHJRgQqZOF4E0VAgCEgvb40cLCETZoQaAFJipNklpNcERyDm0FwTo4CAIUPUUAPw4MUAjIaIhGnzpmKHGUOm3CMFAlKHEC2MgbgwJMFWiIJYDDkxDO0gBTcKfrqdS7euXUOBAAAh+QQABQAZACwAAAAAIAAgAAAH/4AAgoOEhYaHiImKi4yNjo+QkZKEBUIuk4oPKCgkmIgEmxyeAApBBEKCoChBgiQEQAWQMi0oLx0AQgM3FLibKLyPORC0C4ICsQATvsCOQFBfT8yDQi8oOJI4DsWHHTSPBS4kQgKNyIokXxoZIhuoiQVAAwS3iV52djw8ZQ7nvqKJM9wIFOhFkRBfrBKRoNMEypIGl97heKVgUSUSEUchIsEmBDlDFKQ5WnAgTo0EhkhUAwKJBoI4G+jUEaQAhCAgvtw1emNkwxwJTwAEeTLg1sFN2xgJkLDhS4UTAAqwoMUSwAN5FR3NcMqGnAA1tP4BOAZJgZQXyAqkoaqxEJAnLw1EtqWQta3du3jzKgoEACH5BAAFABoALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Oj5CRkoQFQi6Tig8oKCSYgx0FgwSbHJ4AaU0/QoKjKEGCJARAoY9zPSkGHQBCAzcUu5sov48SOz1GD4ICtBPBw444STtlT4ZCLyg4kjg/bLSFHTSPBTSWAo3fiSwbTUxJX52JBUADBLqIIEZY+zAwSIokgr3CtyGDQYMOFAkJBkRRiw1kyIxhEA9RARyyQCwCIUSIOFOJXCR4km4QhWePSDiZc6eFIRLYGj6iUIXOgTwJBIHQCABHsI+N2Jg4gODHDQAwB+hauGnBIyIHGCBxCaCVzAX1eDZSk6eImlAFbmwaCKBASUYTkonapA0kIV4EDRS4LWR2rt27ePMeCgQAIfkEAAUAGwAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkJGShAVCLpOKDygoJJiDFEKDBJscngAtTSlFgqMoQYIkBEAFkB5ZOlYGAEIDNxS7myi/jwxwWjsSggK0ABPBw444VHBnF4ZCLyg4khMlW8yFHTSPBTRCNOCK6Yhpc2RLER6hiQVAAwQdiSA1UVEaGniIKCIR7BUiAXSaKFQ4Q5GQYEAUSTHRps0IG/MQFcAhC8QiEC5cQDN1iEaaG+sEURjpyIWFPD9uGCKRLeIjEG+OVPmAQhAIjwBwBBvnCIWTKl5iPABAc0C+h5s6Fa1i4cIAVptsLrgHtJGCE2xkAihwY5PBsSkZCSDEYdMCkoUOKHDg0BWu3bt48+pdFAgAIfkEAAUAHAAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkJGShAVCLpOKDygoJJiDNEKDBJscngAtUBlVgqMoQYIkBEAFkAdmVmUyAEIDNxS7myi/j0c8Z1Y5ggK0ABPBw44TZDx2dYZCLyg4khNeMsyFHTSPBRQuNOCK6YhSB2JhcTnjiQVAAwQKiQIVXV0RS0suKCIRDIi+O2MSJhyiSEhBRQMYmDDRwME8RAVwyAKxSAAFGh1MKerwwuAhCtAeUYjhhc0DQySymXx04kOdKdsAgOAIAMezRyRW1DnxZFzMASEdbrrkyAUbGWleAmhlcsGNIAIg2esEoMCNTa8ErZsUZNMCkYUUBJkwFq3bt3AF48pFFAgAIfkEAAUAHQAsAAAAACAAIAAAB/+AAIKDhIWGh4iJiouMjY6PkJGShA8XLpOECxOEX01SJJgAU0l4JYIUKkpSHKEVblduRAAUGWQoQYIkBEAFj04wbnZoBgBObTcUAEIozMmOD2EwaDwVghO9ABPMKM6ON9E+FoZCLyg4kg8fFwKHHTSQ7hTYi/OJL0dzEBBO74kFQAMIKEgkIM+aNm3EGGGjiMQ2IP6QfJk4kViiZcwgJuJQBQECJxe6HSqAYxeIRQI6UBgYSpECHEIQURDpCESIBE8uFSJRTuOjF1OeoNgEAMRJADi20XQZQuiLdzwHdFC2TWejAgNQvAAFgEBGQQtu4KjHSMECqzeY4RJEdhIQZgsPWhoSMOGa3Lt48+rdiykQACH5BAAFAB4ALAAAAAAgACAAAAf/gACCg4SFhoeIiYqLjI2Oj5CRkoQLRTMKk4JCFyGEdDs6R5kCBxgiFoIUeDs9Jpk0XBkpKg4AFBqsRIIkBEAFjwwaGVgYMgA2PFgoAEIozhSPExsaKjASggQPghPOKNCPHCMaIjOGQi8oOJIkKzEChx00kAoUHb+M94pCFjkSEiXfEBUAMoAApkRDGlTw4MFEAkUkugFRFIOBRYss9ElU5IKNAwcfTnRQVABHLxCMFChAmWmRABcjD1EI+KgABxQvXBgigW4iJG7OJggCwRJHN5qMCDh7IY/ngJHNnkECgpMENmc+F9xQB6mAi4MAbjgLMihfS6MorLY0JOCB2rVwB+PKnUtXbiAAOwAAAAAAAAAAAA==) #000 center center no-repeat}.p-lightbox-caption{padding:.2em .4em;display:none}.p-lightbox-caption-text{margin:.3em 0 .1em 0;float:left}.p-lightbox-close{float:right;margin:0;padding:.125em}.p-lightbox-close.p-state-hover{padding:0}.p-lightbox-nav-left,.p-lightbox-nav-right{opacity:.5}.p-lightbox-nav-left:hover,.p-lightbox-nav-right:hover{opacity:1}.p-listbox{padding:.25em;width:10em}.p-listbox .p-listbox-list-wrapper{overflow:auto}.p-listbox .p-listbox-list{list-style-type:none;margin:0;padding:0}.p-listbox .p-listbox-item{padding:.25em;border:0 none;cursor:pointer;font-weight:normal;margin-bottom:1px}.p-listbox .p-listbox-item>span{vertical-align:middle}.p-listbox .p-listbox-item:last-child{margin-bottom:0}.p-listbox.p-disabled .p-listbox-item{cursor:default}.p-listbox-header{margin-bottom:.3em;padding:.125em .2em;position:relative}.p-listbox-header .p-checkbox{display:inline-block;vertical-align:middle;cursor:pointer}.p-listbox-header .p-listbox-filter-container{display:inline-block;vertical-align:middle;position:relative;width:100%}.p-listbox-header.p-listbox-header-w-checkbox .p-listbox-filter-container{width:calc(100% - 2em)}.p-listbox-header .p-listbox-filter-container .p-listbox-filter-icon{position:absolute;top:.25em;left:.25em}.p-listbox-header .p-inputtext{padding:.125em .125em .125em 1.25em;width:100%}.p-megamenu{padding:.25em}.p-megamenu-root-list{margin:0;padding:0;list-style:none}.p-megamenu-root-list>.p-menuitem{position:relative}.p-megamenu .p-menuitem-link{padding:.25em;display:block;text-decoration:none}.p-megamenu .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-megamenu .p-menuitem-text{vertical-align:middle}.p-megamenu-panel{display:none;position:absolute;width:auto;z-index:1}.p-megamenu-root-list>.p-menuitem-active>.p-megamenu-panel{display:block}.p-megamenu-panel .p-menuitem{margin:.125em 0}.p-megamenu-submenu{margin:0;padding:0;list-style:none;width:12.5em}.p-megamenu-submenu-header{padding:.25em}.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem{display:inline-block}.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-link>.p-submenu-icon{vertical-align:middle;margin-left:.25em}.p-megamenu-vertical{width:12.5em}.p-megamenu-vertical .p-megamenu-root-list>.p-menuitem{display:block}.p-megamenu-vertical .p-megamenu-root-list>.p-menuitem>.p-menuitem-link{position:relative}.p-megamenu-vertical .p-megamenu-root-list>.p-menuitem-active>.p-megamenu-panel{left:100%;top:0}.p-megamenu-vertical .p-megamenu-root-list>.p-menuitem>.p-menuitem-link>.p-submenu-icon{position:absolute;width:1em;height:1em;top:50%;right:0;margin-top:-.5em}.p-megamenu .p-grid{flex-wrap:nowrap}.p-menu{width:12.5em;padding:.25em}.p-menu.p-menu-dynamic{position:absolute;display:none}.p-menu .p-menu-separator{border-width:1px 0 0 0}.p-menu ul{list-style:none;margin:0;padding:0}.p-menu .p-submenu-header{padding:.25em .5em;margin:.125em 0}.p-menu .p-menuitem{margin:.125em 0}.p-menu .p-menuitem-link{padding:.25em;display:block;text-decoration:none}.p-menu .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-menu .p-menuitem-text{vertical-align:middle}.p-menubar{padding:.25em}.p-menubar .p-menu-separator{border-width:1px 0 0 0}.p-menubar:after{content:"";clear:both;display:table}.p-menubar ul{margin:0;padding:0;list-style:none}.p-menubar .p-menuitem-link{display:block;padding:.25em;position:relative;text-decoration:none}.p-menubar .p-menuitem-icon{margin-right:.25em}.p-menubar .p-menubar-root-list{display:inline-block}.p-menubar .p-menubar-root-list>.p-menuitem{display:inline-block;position:relative}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-link{padding:.5em}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-link>.p-submenu-icon{vertical-align:middle;margin-left:.25em}.p-menubar .p-menubar-root-list>li ul{display:none;z-index:1}.p-menubar .p-menubar-root-list>.p-menuitem-active>.p-submenu-list{display:block}.p-menubar .p-submenu-list{display:none;position:absolute;min-width:12.5em;padding:.25em}.p-menubar .p-submenu-list .p-menuitem{margin:.125em 0;position:relative}.p-menubar .p-submenu-list>.p-menuitem-active>.p-submenu-list{display:block;left:100%;top:0}.p-menubar .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-menubar .p-menuitem-text{vertical-align:middle}.p-menubar .p-submenu-list .p-menuitem-link .p-submenu-icon{position:absolute;margin-top:-.5em;right:0;top:50%}.p-menubar .p-menuitem-active>.p-submenu>.p-submenu-list{display:block}.p-menubar .p-menubar-custom{float:right;padding:.25em}.p-message{border:1px solid;margin:0 .25em;padding:.25em .5em;display:inline-block;vertical-align:top}.p-message .p-message-icon,.p-message .p-message-text{vertical-align:middle}.p-fluid .p-message{display:block}.p-messages{position:relative}.p-messages .p-messages-wrapper{padding:1em}.p-messages .p-messages-icon{display:inline-block;padding:0;vertical-align:middle;font-size:2em}.p-messages .p-messages-summary{font-weight:bold;margin-left:.25em}.p-messages .p-messages-detail{margin-left:.25em}.p-messages ul{margin:0;padding:0;list-style-type:none;display:inline-block;vertical-align:middle}.p-messages.p-messages-noicon ul{margin:0 1.5em 0 0}.p-messages .p-messages-close{cursor:pointer;position:absolute;top:5px;right:5px}.p-messages-exit .p-messages-close{display:none}.p-messages-enter{opacity:.01}.p-messages-enter-active{opacity:1;transition:opacity 250ms ease-in}.p-messages-exit{max-height:500px}.p-messages-exit.p-messages-exit-active{max-height:0;overflow:hidden;margin-bottom:0;transition:max-height 500ms cubic-bezier(0,1,0,1),margin-bottom 500ms cubic-bezier(0,1,0,1)}.p-orderlist{display:table}.p-orderlist .p-orderlist-controls{height:12.5em;padding:0 .25em;vertical-align:middle;display:table-cell}.p-orderlist .p-orderlist-controls .p-button{display:block;margin-bottom:.25em}.p-orderlist .p-orderlist-list-container{display:table-cell;vertical-align:top}.p-orderlist .p-orderlist-list{list-style-type:none;margin:0;padding:0;overflow:auto;height:12.5em;width:12.5em}.p-orderlist .p-orderlist-caption{text-align:center;padding:.5em .75em;border-bottom:0 none}.p-orderlist .p-orderlist-list .p-orderlist-item{margin:1px;padding:.125em;cursor:pointer;border:0 none;font-weight:inherit}.p-orderlist .p-orderlist-filter-container{position:relative;width:100%;padding:.5em .6em;border-bottom:0 none}.p-orderlist .p-orderlist-filter-container .p-inputtext{text-indent:1.1em;width:100%}.p-orderlist .p-orderlist-filter-container .p-orderlist-filter-icon{position:absolute;top:50%;left:1em;margin-top:-.6em}.p-orderlist.p-disabled .p-orderlist-item,.p-orderlist.p-disabled .p-button{cursor:default}.p-orderlist.p-disabled .p-orderlist-list{overflow:hidden}.p-orderlist.p-orderlist-responsive{width:100%}.p-orderlist.p-orderlist-responsive .p-orderlist-controls{width:16.66666%;padding-right:.5em}.p-orderlist.p-orderlist-responsive .p-orderlist-list-container{width:83.33333%}.p-orderlist.p-orderlist-responsive .p-orderlist-list,.p-orderlist.p-orderlist-responsive .p-orderlist-caption{width:100%}.p-orderlist.p-orderlist-responsive .p-orderlist-controls>.p-button{width:100%}.p-orderlist .p-orderlist-droppoint{height:6px;list-style-type:none}@media(max-width:40em){.p-orderlist.p-orderlist-responsive .p-orderlist-controls{text-align:center;width:100%;display:block;height:auto}.p-orderlist.p-orderlist-responsive .p-orderlist-controls .p-button{display:inline-block;width:20%;margin-right:.25em}.p-orderlist.p-orderlist-responsive .p-orderlist-list-container{width:100%;display:block}}.p-multiselect{display:inline-block;position:relative;width:auto;cursor:pointer}.p-multiselect .p-multiselect-trigger{border-right:0;border-top:0;border-bottom:0;cursor:pointer;width:1.5em;height:100%;position:absolute;right:0;top:0;padding:0 .25em}.p-multiselect .p-multiselect-trigger .p-multiselect-trigger-icon{top:50%;left:50%;margin-top:-.5em;margin-left:-.5em;position:absolute}.p-multiselect .p-multiselect-label-container{overflow:hidden}.p-multiselect .p-multiselect-label{display:block;padding:.25em 2em .25em .25em;width:auto;border:0;cursor:pointer;text-overflow:ellipsis;overflow:hidden}.p-multiselect .p-multiselect-label-empty{overflow:hidden;visibility:hidden}.p-multiselect.p-disabled .p-multiselect-trigger,.p-multiselect.p-disabled .p-multiselect-label{cursor:auto}.p-multiselect-panel{padding:.2em;position:absolute;min-width:10em}.p-multiselect .p-multiselect-panel{min-width:100%}.p-multiselect-panel .p-multiselect-items-wrapper{overflow:auto;position:relative;padding:.2em 0}.p-multiselect-panel .p-multiselect-list{border:0 none;margin:0;list-style-type:none}.p-multiselect-panel .p-multiselect-item{border:0 none;cursor:pointer;font-weight:normal;margin:1px 0;padding:.125em .25em;text-align:left;white-space:nowrap;display:block;position:relative}.p-multiselect-panel .p-multiselect-item .p-checkbox{display:inline-block;vertical-align:middle}.p-multiselect-panel .p-multiselect-item label{display:inline-block;vertical-align:middle}.p-multiselect-header{margin-bottom:.3em;padding:.25em;position:relative;text-align:left}.p-multiselect-header .p-checkbox{display:inline-block;vertical-align:middle;cursor:pointer}.p-multiselect-header .p-multiselect-filter-container{position:relative;display:inline-block;vertical-align:middle;width:65%}.p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon{position:absolute;top:.25em;left:.125em}.p-multiselect-header .p-inputtext{padding:.125em .125em .125em 1.25em;width:100%}.p-multiselect-header .p-multiselect-close{position:absolute;right:.375em;top:.375em;display:block;border:0 none}.p-multiselect-header a.p-multiselect-all,.p-multiselect-header a.p-multiselect-none{float:left;margin-right:10px;display:block}.p-multiselect-header .p-multiselect-close.p-state-hover{padding:0}.p-fluid .p-multiselect{width:100%;box-sizing:border-box}.p-organizationchart .p-organizationchart-table{border-spacing:0;border-collapse:separate;margin:0 auto}.p-organizationchart .p-organizationchart-table>tbody>tr>td{text-align:center;vertical-align:top;padding:0;padding:0 .75em}.p-organizationchart .p-organizationchart-node-content{padding:.5em .75em;display:inline-block;position:relative}.p-organizationchart .p-organizationchart-node-content .p-node-toggler{position:absolute;bottom:-9px;margin-left:-8px;z-index:2;left:50%;user-select:none;-moz-user-select:none;-webkit-user-select:none}.p-organizationchart .p-organizationchart-line-down{margin:0 auto;height:20px;width:1px;float:none}.p-organizationchart .p-organizationchart-line-right{float:none;border-radius:0}.p-organizationchart .p-organizationchart-line-left{float:none;border-radius:0}.p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node{cursor:pointer}.p-overlaypanel{padding:0;margin:0;position:absolute;display:none;margin-top:10px}.p-overlaypanel-flipped{margin-top:0;margin-bottom:10px}.p-overlaypanel-content{padding:.5em 1em}.p-overlaypanel-close{position:absolute;top:-1em;right:-1em;width:2em;height:2em;line-height:2em;text-align:center;border-radius:100%}.p-overlaypanel-close-icon{line-height:inherit}.p-overlaypanel:after,.p-overlaypanel:before{bottom:100%;left:1.25em;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.p-overlaypanel:after{border-width:8px;margin-left:-8px}.p-overlaypanel:before{border-width:10px;margin-left:-10px}.p-overlaypanel-flipped:after,.p-overlaypanel-flipped:before{bottom:auto;top:100%}.p-overlaypanel.p-overlaypanel-flipped:after{border-bottom-color:transparent}.p-overlaypanel.p-overlaypanel-flipped:before{border-bottom-color:transparent}.p-paginator{margin:0;text-align:center;padding:.125em}.p-paginator .p-paginator-top{border-bottom:0 none}.p-paginator .p-paginator-bottom{border-top:0 none}.p-paginator .p-paginator-left-content{float:left}.p-paginator .p-paginator-right-content{float:right}.p-paginator .p-paginator-page,.p-paginator .p-paginator-pages,.p-paginator .p-paginator-next,.p-paginator .p-paginator-last,.p-paginator .p-paginator-first,.p-paginator .p-paginator-prev,.p-paginator .p-paginator-current{display:inline-block;width:1.5em;height:1.5em;line-height:1.5em;zoom:1;margin-left:.063em;margin-right:.063em;text-decoration:none;vertical-align:middle;text-align:center;position:relative}.p-paginator .p-paginator-pages{width:auto;line-height:1}.p-paginator .p-paginator-icon{display:block;position:absolute;left:50%;top:50%;width:1em;height:1em;margin-top:-.5em;margin-left:-.5em}.p-paginator .p-paginator-page,.p-paginator .p-paginator-next,.p-paginator .p-paginator-last,.p-paginator .p-paginator-first,.p-paginator .p-paginator-prev{cursor:pointer}.p-paginator .p-paginator-current,.p-paginator .p-paginator-rpp-options{margin-left:1em;margin-right:1em;background-image:none}.p-paginator .p-paginator-jtp-select option,.p-paginator .p-paginator-rpp-options option{background-image:none;border:0 none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}.p-paginator a.p-disabled{outline:0 none}.p-paginator .p-dropdown{min-width:4em;margin-left:.375em}.p-fluid .p-paginator .p-dropdown{width:auto}.p-paginator .p-paginator-current{width:auto;height:auto}.p-panel{padding:.2em}.p-panel .p-panel-titlebar{padding:.5em .75em}.p-panel .p-panel-titlebar-icon{float:right;cursor:pointer;height:1.25em;width:1.25em;line-height:1.25em;text-align:center}.p-panel .p-panel-titlebar-icon span{line-height:inherit;margin-top:-1px}.p-panel .p-panel-content{border:0;background:0;padding:.5em .75em}.p-panel .p-panel-footer{border-width:1px 0 0;padding:.25em .5em;text-align:left}.p-panelmenu{width:auto}.p-panelmenu .p-menu-separator{border-width:1px 0 0 0}.p-panelmenu .p-panelmenu-content-wrapper{overflow:hidden}.p-panelmenu .p-panelmenu-header{margin:-1px 0 0 0;zoom:1}.p-panelmenu .p-panelmenu-header-link{padding:.5em;display:block;text-decoration:none}.p-panelmenu .p-panelmenu-icon{vertical-align:middle}.p-panelmenu .p-menuitem-text{vertical-align:middle}.p-panelmenu .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-panelmenu .p-panelmenu-content{padding:.25em;border-top:0;margin-bottom:1px}.p-panelmenu .p-submenu-list{margin:0;padding:0;list-style:none;margin-left:1.5em}.p-panelmenu .p-panelmenu-content>.p-panelmenu-root-submenu.p-submenu-list{margin-left:0}.p-panelmenu .p-menuitem{overflow:hidden;margin:.125em 0}.p-panelmenu .p-menuitem-link{padding:.25em;display:block;text-decoration:none}.p-password-panel{padding:.25em .5em;margin-top:2px}.p-password-panel .p-password-meter{height:10px;background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAAAoAgMAAABhr+t0AAAADFBMVEXx8fHjHD39uB5KpWRhxht7AAAAJUlEQVR4AWMYDGAUhCKBgAFSNqpsFS5AR2Wjyv4TAz7QVNmoMgB5UksJhzldcwAAAABJRU5ErkJggg==) no-repeat left top;padding:0;margin:0}.p-password-info{margin-top:.25em}.p-password-panel-overlay{position:absolute}.p-picklist>div{float:left}.p-picklist .p-picklist-buttons{height:12.5em;padding:0 .25em}.p-picklist .p-picklist-list{list-style-type:none;margin:0;padding:0;overflow:auto;height:12.5em;width:12.5em}.p-picklist .p-picklist-list li{margin:1px;padding:.125em}.p-picklist .p-button{display:block;margin-bottom:.25em}.p-picklist .p-button-text-icon-left{width:100%}.p-picklist .p-picklist-item{cursor:pointer;border:0 none;font-weight:inherit}.p-picklist .p-picklist-caption{text-align:center;padding:.5em .75em;border-bottom:0 none}.p-picklist table{width:100%;border-collapse:collapse}.p-picklist .p-picklist-filter-container{position:relative;width:100%;padding:.5em .6em;border-bottom:0 none}.p-picklist .p-picklist-filter-container .p-picklist-filter{text-indent:1.1em;width:100%}.p-picklist .p-picklist-filter-container .p-picklist-filter-icon{position:absolute;top:50%;left:1em;margin-top:-.6em}.p-picklist{display:table}.p-picklist>div{float:none;display:table-cell;vertical-align:top}.p-picklist .p-picklist-buttons{vertical-align:middle}.p-picklist.p-picklist-vertical{display:table}.p-picklist.p-picklist-vertical>div{float:none;display:table-row;vertical-align:top}.p-picklist.p-picklist-vertical .p-picklist-buttons{text-align:center;height:auto}.p-picklist.p-picklist-vertical .p-picklist-buttons .p-button{display:inline-block}.p-picklist.p-picklist-vertical .p-button{margin-top:.25em}.p-picklist-outline{outline:1px dotted black;z-index:1}.p-picklist .p-picklist-droppoint{height:6px;list-style-type:none}.p-picklist .p-picklist-list .p-picklist-droppoint-empty{height:100%;list-style-type:none}.p-picklist-list.p-picklist-source,.p-picklist-list.p-picklist-target{outline:0}.p-picklist.p-picklist-responsive *{box-sizing:border-box}.p-picklist.p-picklist-responsive{width:100%}.p-picklist.p-picklist-responsive .p-picklist-listwrapper{width:35%}.p-picklist.p-picklist-responsive .p-picklist-listwrapper.p-picklist-listwrapper-nocontrols{width:45%}.p-picklist.p-picklist-responsive .p-picklist-buttons{width:10%}.p-picklist.p-picklist-responsive .p-picklist-buttons button{width:100%}.p-picklist.p-picklist-responsive .p-picklist-list{width:auto}@media(max-width:40em){.p-picklist.p-picklist-responsive{display:block}.p-picklist.p-picklist-responsive>div{display:block;width:100% !important}.p-picklist.p-picklist-responsive .p-picklist-buttons{text-align:center;height:auto;padding:.4em 0}.p-picklist.p-picklist-responsive .p-picklist-buttons button{display:inline-block;width:20%;margin-bottom:0;margin-right:.25em}.p-picklist.p-picklist-responsive .p-picklist-source-controls.p-picklist-buttons{padding-bottom:.4em}.p-picklist.p-picklist-responsive .p-picklist-target-controls.p-picklist-buttons{padding-top:.4em}}.p-progressbar{height:1.2em;text-align:left;position:relative;overflow:hidden}.p-progressbar-determinate .p-progressbar-value{height:100%;width:0;position:absolute;display:none;border:0 none}.p-progressbar-determinate .p-progressbar-value-animate{transition:width 1s ease-in-out}.p-progressbar-determinate .p-progressbar-label{text-align:center;height:100%;width:100%;position:absolute;font-weight:bold}.p-progressbar-indeterminate{height:.5em}.p-progressbar-indeterminate .p-progressbar-value{border:0 none}.p-progressbar-indeterminate .p-progressbar-value::before{content:'';position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left,right;animation:p-progressbar-indeterminate-anim 2.1s cubic-bezier(0.65,0.815,0.735,0.395) infinite}.p-progressbar-indeterminate .p-progressbar-value::after{content:'';position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left,right;animation:p-progressbar-indeterminate-anim-short 2.1s cubic-bezier(0.165,0.84,0.44,1) infinite;animation-delay:1.15s}@keyframes p-progressbar-indeterminate-anim{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@keyframes p-progressbar-indeterminate-anim-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}.p-progress-spinner{position:relative;margin:0 auto;width:100px;height:100px;display:inline-block}.p-progress-spinner::before{content:'';display:block;padding-top:100%}.p-progress-spinner-svg{animation:p-progress-spinner-rotate 2s linear infinite;height:100%;transform-origin:center center;width:100%;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.p-progress-spinner-circle{stroke-dasharray:89,200;stroke-dashoffset:0;stroke:#d62d20;animation:p-progress-spinner-dash 1.5s ease-in-out infinite,p-progress-spinner-color 6s ease-in-out infinite;stroke-linecap:round}@keyframes p-progress-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes p-progress-spinner-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes p-progress-spinner-color{100%,0%{stroke:#d62d20}40%{stroke:#0057e7}66%{stroke:#008744}80%,90%{stroke:#ffa700}}.p-radiobutton{display:inline-block;cursor:pointer;vertical-align:middle;margin-right:.25em;user-select:none;-moz-user-select:none;-webkit-user-select:none}.p-radiobutton .p-radiobutton-box{width:1.125em;height:1.125em;line-height:1.125em;border-radius:100%;text-align:center;position:relative}.p-radiobutton .p-radiobutton-icon{display:block;position:absolute;left:50%;top:50%;width:1em;height:1em;margin-top:-.5em;margin-left:-.5em}.p-radiobutton+label{vertical-align:middle}.p-rating .p-rating-icon{cursor:pointer}.p-rating{font-size:1.25em}.p-rating.p-disabled .p-rating-icon,.p-rating.p-rating-readonly .p-rating-icon{cursor:default}.p-scrollpanel-wrapper{overflow:hidden;width:100%;height:100%;position:relative;z-index:1;float:left}.p-scrollpanel-content{height:calc(100% + 18px);width:calc(100% + 18px);padding:0 18px 18px 0;position:relative;overflow:auto;box-sizing:border-box}.p-scrollpanel-bar{position:relative;background:#c1c1c1;border-radius:3px;z-index:2;cursor:pointer;opacity:0;transition:opacity .25s linear}.p-scrollpanel-bar-y{width:9px;top:0}.p-scrollpanel-bar-x{height:9px;bottom:0}.p-scrollpanel-hidden{visibility:hidden}.p-scrollpanel:hover .p-scrollpanel-bar,.p-scrollpanel:active .p-scrollpanel-bar{opacity:1}.p-scrollpanel-grabbed{-o-user-select:none;user-select:none}.p-selectbutton{display:inline-block}.p-selectbutton.p-state-error{padding:0}.p-selectbutton .p-button.p-state-focus{outline:0}.p-sidebar{position:fixed;padding:.5em 1em;transition:transform .3s}.p-sidebar-left{top:0;left:0;width:20em;height:100%;transform:translateX(-100%)}.p-sidebar-right{top:0;right:0;width:20em;height:100%;transform:translateX(100%)}.p-sidebar-top{top:0;left:0;width:100%;height:10em;transform:translateY(-100%)}.p-sidebar-bottom{bottom:0;left:0;width:100%;height:10em;transform:translateY(100%)}.p-sidebar-full{width:100%;height:100%;left:0;transition:transform 0s}.p-sidebar-full.p-sidebar-active{animation:p-fadein .25s;-moz-animation:p-fadein .25s;-webkit-animation:p-fadein .25s;-o-animation:p-fadein .25s}.p-sidebar-left.p-sidebar-active,.p-sidebar-right.p-sidebar-active{transform:translateX(0)}.p-sidebar-left.p-sidebar-sm,.p-sidebar-right.p-sidebar-sm{width:20em}.p-sidebar-left.p-sidebar-md,.p-sidebar-right.p-sidebar-md{width:40em}.p-sidebar-left.p-sidebar-lg,.p-sidebar-right.p-sidebar-lg{width:60em}.p-sidebar-top.p-sidebar-active,.p-sidebar-bottom.p-sidebar-active{transform:translateY(0)}.p-sidebar-top.p-sidebar-sm,.p-sidebar-bottom.p-sidebar-sm{height:10em}.p-sidebar-top.p-sidebar-md,.p-sidebar-bottom.p-sidebar-md{height:20em}.p-sidebar-top.p-sidebar-lg,.p-sidebar-bottom.p-sidebar-lg{height:30em}.p-sidebar-mask{position:fixed;width:100%;height:100%}.p-sidebar-close{float:right;cursor:pointer}@media screen and (max-width:64em){.p-sidebar-left.p-sidebar-lg,.p-sidebar-left.p-sidebar-md,.p-sidebar-right.p-sidebar-lg,.p-sidebar-right.p-sidebar-md{width:20em}}.p-slidemenu{width:12.5em;padding:.25em}.p-slidemenu.p-slidemenu-dynamic{position:absolute;display:none}.p-slidemenu .p-menu-separator{border-width:1px 0 0 0}.p-slidemenu ul{list-style:none;margin:0;padding:0}.p-slidemenu .p-slidemenu-rootlist{position:absolute;top:0}.p-slidemenu .p-submenu-list{display:none;position:absolute;top:0;width:12.5em;padding:.25em}.p-slidemenu .p-menuitem-link{padding:.25em;display:block;position:relative;text-decoration:none}.p-slidemenu .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-slidemenu .p-menuitem-text{vertical-align:middle}.p-slidemenu .p-menuitem{position:relative;margin:.125em 0}.p-slidemenu .p-menuitem-link .p-submenu-icon{position:absolute;margin-top:-.5em;right:0;top:50%}.p-slidemenu .p-slidemenu-wrapper{position:relative}.p-slidemenu .p-slidemenu-content{overflow-x:hidden;overflow-y:auto;position:relative;height:100%}.p-slidemenu-backward{position:absolute;bottom:0;width:100%;padding:.25em;cursor:pointer}.p-slidemenu-backward .p-slidemenu-backward-icon{vertical-align:middle}.p-slidemenu-backward span{vertical-align:middle}.p-slidemenu .p-menuitem-active{position:static}.p-slidemenu .p-menuitem-active>.p-submenu-list{display:block}.p-slider{position:relative;text-align:left}.p-slider .p-slider-handle{position:absolute;width:1.2em;height:1.2em;cursor:default;touch-action:none}.p-slider .p-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-position:0 0}.p-slider-horizontal{height:.8em}.p-slider-horizontal .p-slider-handle{top:-.3em;margin-left:-.6em}.p-slider-horizontal .p-slider-range{top:0;height:100%}.p-slider-vertical{width:.8em;height:100px}.p-slider-vertical .p-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.p-slider-vertical .p-slider-range{left:0;width:100%;bottom:0}.p-spinner{display:inline-block;overflow:visible;padding:0;position:relative;vertical-align:middle}.p-spinner-input{vertical-align:middle;padding-right:1.5em}.p-spinner-button{cursor:default;display:block;height:50%;margin:0;overflow:hidden;padding:0;position:absolute;right:0;text-align:center;vertical-align:middle;width:1.5em}.p-spinner .p-spinner-button-icon{position:absolute;top:50%;left:50%;margin-top:-.5em;margin-left:-.5em;width:1em}.p-spinner-button-up{top:0}.p-spinner-button-down{bottom:0}.p-fluid .p-spinner{width:100%}.p-fluid .p-spinner .p-spinner-input{padding-right:2em;width:100%}.p-fluid .p-spinner .p-spinner-button{width:1.5em}.p-fluid .p-spinner .p-spinner-button .p-spinner-button-icon{left:.375em}.p-splitbutton{position:relative;display:inline-block;zoom:1}.p-splitbutton .p-button.p-splitbutton-menubutton{width:2em;vertical-align:top}.p-splitbutton.p-disabled button{cursor:default}.p-fluid .p-splitbutton{width:100%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}.p-fluid .p-splitbutton .p-button:first-child{width:calc(100% - 2em)}.p-fluid .p-splitbutton .p-button.p-splitbutton-menubutton{width:2em;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}.p-splitbutton.p-button-secondary .p-button:first-child{border-right:0 none}.p-steps ul{list-style-type:none;padding:0;margin:0}.p-steps ul:after{content:"";display:table;clear:both}.p-steps .p-steps-item{float:left;box-sizing:border-box;cursor:pointer}.p-steps.p-steps-readonly .p-steps-item{cursor:auto}.p-steps .p-steps-item .p-menuitem-link{text-decoration:none;display:block;padding:1em;position:relative;text-align:center}.p-steps .p-steps-item.p-steps-current .p-menuitem-link,.p-steps .p-steps-item.p-disabled .p-menuitem-link{cursor:default}.p-steps .p-steps-number{font-size:2em;display:block}.p-steps .p-steps-title{display:block;white-space:nowrap}@media(max-width:40em){.p-steps .p-steps-item .p-menuitem-link{padding:.5em}.p-steps .p-steps-item .p-steps-title{display:none}}.p-steps .p-steps-item{width:25%}.p-tabmenu .p-tabmenu-nav{margin:0;padding:.25em .5em 0 .25em}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem{list-style:none;float:left;position:relative;margin:0 .2em 1px 0;padding:0;white-space:nowrap;display:block;border-bottom:0;top:1px}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem a{float:left;padding:.5em 1em;text-decoration:none}.p-tabmenu .p-tabmenu-nav a{padding:.5em 1em}.p-tabmenu .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-tabmenu .p-menuitem-text{vertical-align:middle}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-disabled a{cursor:default}.p-tabview{padding:.25em}.p-tabview .p-tabview-nav{margin:0}.p-tabview .p-tabview-nav:after{content:"";display:table;clear:both}.p-tabview .p-tabview-nav li{list-style:none;float:left;position:relative;margin:0 .125em 1px 0;padding:0;white-space:nowrap}.p-tabview .p-tabview-nav li a{float:left;padding:.5em 1em;text-decoration:none}.p-tabview .p-tabview-nav li.p-tabview-selected a,.p-tabview .p-tabview-nav li.p-disabled a,.p-tabview .p-tabview-nav li.p-state-processing a{cursor:text}.p-tabview .p-tabview-nav li a,.p-tabview.p-tabview-collapsible .p-tabview-nav li.p-tabview-selected a{cursor:pointer}.p-tabview .p-tabview-panel{border-width:0;padding:1em;background:0}.p-tabview .p-tabview-nav li{display:block}.p-tabview .p-tabview-nav li .p-tabview-left-icon,.p-tabview .p-tabview-nav li .p-tabview-right-icon,.p-tabview .p-tabview-nav li .p-tabview-title{vertical-align:middle}.p-tabview .p-tabview-nav li .p-tabview-left-icon{margin-right:.25em;vertical-align:middle}.p-tabview .p-tabview-nav li .p-tabview-right-icon{margin-left:.25em;vertical-align:middle}.p-tabview .p-tabview-nav li .p-tabview-close{margin:.5em .3em 0 0;cursor:pointer}.p-tabview.p-tabview-top>.p-tabview-nav li{border-bottom:0;top:1px}.p-tabview.p-tabview-top>.p-tabview-nav{padding:.2em .2em 0}.p-tabview.p-tabview-bottom>.p-tabview-nav{padding:0 .2em .2em}.p-tabview.p-tabview-bottom>.p-tabview-nav li{border-top:0}.p-tabview-left:after,.p-tabview-right:after{clear:both;content:".";display:block;height:0;visibility:hidden}.p-tabview-left>.p-tabview-nav{float:left;width:25%;height:300px;background-image:none;padding-top:1px}.p-tabview-left>.p-tabview-panels{float:right;width:75%}.p-tabview.p-tabview-left>.p-tabview-nav li,.p-tabview.p-tabview-right>.p-tabview-nav li{display:block;float:right;white-space:normal;width:99%}.p-tabview.p-tabview-left>.p-tabview-nav li{margin:0 0 1px 0;border-right:0 none}.p-tabview.p-tabview-right>.p-tabview-nav{float:right;width:25%;height:300px;background-image:none;padding-top:1px}.p-tabview.p-tabview-right>.p-tabview-panels{float:left;width:75%}.p-tabview.p-tabview-right>.p-tabview-nav li{margin:0 0 1px 0;border-left:0 none}.p-rtl .p-tabview .p-tabview-nav li{float:right}.p-tieredmenu{width:12.5em;padding:.25em}.p-tieredmenu.p-tieredmenu-dynamic{position:absolute;display:none}.p-tieredmenu .p-menu-separator{border-width:1px 0 0 0}.p-tieredmenu ul{list-style:none;margin:0;padding:0}.p-tieredmenu .p-submenu-list{display:none;position:absolute;width:12.5em;padding:.25em;z-index:1}.p-tieredmenu .p-menuitem-link{padding:.25em;display:block;position:relative;text-decoration:none}.p-tieredmenu .p-menuitem-icon{margin-right:.25em;vertical-align:middle}.p-tieredmenu .p-menuitem-text{vertical-align:middle}.p-tieredmenu .p-menuitem{position:relative;margin:.125em 0}.p-tieredmenu .p-menuitem-link .p-submenu-icon{position:absolute;margin-top:-.5em;right:0;top:50%}.p-tieredmenu .p-menuitem-active>.p-submenu-list{display:block;left:100%;top:0}.p-toolbar{padding:.25em .5em}.p-toolbar:after{content:"";display:table;clear:both}.p-toolbar-group-left{float:left}.p-toolbar-group-right{float:right}.p-tooltip{position:absolute;display:none;padding:.25em .5em;max-width:12.5em}.p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-left{padding:0 .25em}.p-tooltip.p-tooltip-top,.p-tooltip.p-tooltip-bottom{padding:.25em 0}.p-tooltip .p-tooltip-text{padding:.125em .5em;background-color:#4c4c4c;color:#fff;white-space:pre-line}.p-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.p-tooltip-right .p-tooltip-arrow{top:50%;left:0;margin-top:-.25em;border-width:.25em .25em .25em 0;border-right-color:#4c4c4c}.p-tooltip-left .p-tooltip-arrow{top:50%;right:0;margin-top:-.25em;border-width:.25em 0 .25em .25em;border-left-color:#4c4c4c}.p-tooltip.p-tooltip-top{padding:.25em 0}.p-tooltip-top .p-tooltip-arrow{bottom:0;left:50%;margin-left:-.25em;border-width:.25em .25em 0;border-top-color:#4c4c4c}.p-tooltip-bottom .p-tooltip-arrow{top:0;left:50%;margin-left:-.25em;border-width:0 .25em .25em;border-bottom-color:#4c4c4c}.p-tree{width:24em}.p-tree .p-treenode-selectable.p-treenode-content{cursor:pointer}.p-tree .p-tree-container{height:100%;margin:0;overflow:auto;padding:.25em;white-space:nowrap}.p-tree .p-treenode-children{margin:0;padding:0 0 0 1em}.p-tree .p-treenode{background-attachment:scroll;background-color:transparent;background-image:none;background-position:0 0;background-repeat:repeat-y;list-style:none outside none;margin:0;padding:.125em 0 0 0}.p-tree .p-treenode-droppoint{height:4px;list-style-type:none}.p-tree .p-treenode-droppoint-active{border:0 none}.p-tree .p-tree-toggler{cursor:pointer;display:inline-block;vertical-align:middle}.p-tree .p-tree-toggler .p-tree-toggler-icon{vertical-align:middle}.p-tree .p-treenode-icon{display:inline-block;vertical-align:middle}.p-tree .p-treenode-label{display:inline-block;padding:0 .25em;vertical-align:middle}.p-tree .p-treenode.p-treenode-leaf>.p-treenode-content>.p-tree-toggler{visibility:hidden}.p-tree .p-checkbox-box{cursor:pointer}.p-tree .p-checkbox{display:inline-block;vertical-align:middle}.p-tree .p-checkbox .p-checkbox-icon{margin-left:1px}.p-tree .p-tree-filter{width:100%;box-sizing:border-box;padding-right:1.5em}.p-tree .p-tree-filter-container{position:relative;margin:0;padding:.4em;display:inline-block;width:100%}.p-tree .p-tree-filter-container .p-tree-filter-icon{position:absolute;top:.8em;right:1em}.p-fluid .p-tree{width:100%}.p-tree-horizontal{width:auto;padding:.5em 0;overflow:auto}.p-tree.p-tree-horizontal table,.p-tree.p-tree-horizontal tr,.p-tree.p-tree-horizontal td{border-collapse:collapse;margin:0;padding:0;vertical-align:middle}.p-tree.p-tree-horizontal .p-tree-toggler{vertical-align:middle;margin:0}.p-tree-horizontal .p-treenode-content{font-weight:normal;padding:.4em 1em .4em .2em}.p-tree.p-tree-horizontal .p-tree-node-label{margin:0}.p-tree-horizontal .p-treenode-parent .p-treenode-content{font-weight:normal;white-space:nowrap}.p-tree.p-tree-horizontal .p-treenode{background:url([object Module]) repeat-x scroll center center transparent;padding:.25em 2.5em}.p-tree.p-tree-horizontal .p-treenode.p-treenode-leaf,.p-tree.p-tree-horizontal .p-treenode.p-treenode-collapsed{padding-right:0}.p-tree.p-tree-horizontal .p-treenode-children{padding:0;margin:0}.p-tree.p-tree-horizontal .p-treenode-connector{width:1px}.p-tree.p-tree-horizontal .p-treenode-connector-table{height:100%;width:1px}.p-tree.p-tree-horizontal .p-treenode-connector-line{background:url([object Module]) repeat-y scroll 0 0 transparent;width:1px}.p-tree.p-tree-horizontal table{height:0}.p-tree.p-tree-horizontal .p-checkbox{vertical-align:bottom;margin-right:.25em}.p-tree.p-tree-loading{position:relative;min-height:4em}.p-tree .p-tree-loading-mask{position:absolute;width:100%;height:100%;-ms-filter:"alpha(opacity=10)";opacity:.1;z-index:1}.p-tree .p-tree-loading-content{position:absolute;left:50%;top:50%;z-index:2;margin-top:-1em;margin-left:-1em}.p-tree .p-tree-loading-content .p-tree-loading-icon{font-size:2em}.p-treetable{position:relative}.p-treetable table{border-collapse:collapse;width:100%;table-layout:fixed}.p-treetable-toggler{cursor:pointer;display:inline-block}.p-treetable .p-treetable-thead>tr>th,.p-treetable .p-treetable-tbody>tr>td,.p-treetable .p-treetable-tfoot>tr>td{padding:.25em .5em}.p-treetable .p-treetable-thead>tr>th .p-column-title{vertical-align:middle}.p-treetable .p-sortable-column{cursor:pointer}.p-treetable .p-sortable-column-icon{vertical-align:middle}.p-treetable-auto-layout>.p-treetable-wrapper{overflow-x:auto}.p-treetable-auto-layout>.p-treetable-wrapper>table{table-layout:auto}.p-treetable-header,.p-treetable-footer{padding:.25em .5em;text-align:center;font-weight:bold}.p-treetable-header{border-bottom:0 none}.p-treetable-footer{border-top:0 none}.p-treetable .p-paginator-top{border-bottom:0 none}.p-treetable .p-paginator-bottom{border-top:0 none}.p-treetable-scrollable-wrapper{position:relative}.p-treetable-scrollable-header,.p-treetable-scrollable-footer{overflow:hidden;border:0 none}.p-treetable-scrollable-body{overflow:auto;position:relative}.p-treetable-scrollable-body>table>.p-treetable-tbody>tr:first-child>td{border-top:0 none}.p-treetable-virtual-table{position:absolute}.p-treetable-frozen-view .p-treetable-scrollable-body{overflow:hidden}.p-treetable-frozen-view>.p-treetable-scrollable-body>table>.p-treetable-tbody>tr>td:last-child{border-right:0 none}.p-treetable-unfrozen-view{position:absolute;top:0}.p-column-filter{width:100%}.p-treetable-resizable>.p-treetable-tablewrapper{overflow-x:auto}.p-treetable-resizable .p-treetable-thead>tr>th,.p-treetable-resizable .p-treetable-tfoot>tr>td,.p-treetable-resizable .p-treetable-tbody>tr>td{overflow:hidden}.p-treetable-resizable .p-resizable-column{background-clip:padding-box;position:relative}.p-treetable-resizable-fit .p-resizable-column:last-child .p-column-resizer{display:none}.p-treetable .p-column-resizer{display:block;position:absolute !important;top:0;right:0;margin:0;width:.5em;height:100%;padding:0;cursor:col-resize;border:1px solid transparent}.p-treetable .p-column-resizer-helper{width:1px;position:absolute;z-index:10;display:none}.p-treetable .p-treetable-checkbox{margin:0 .5em 0 .25em;vertical-align:middle}.p-treetable .p-treetable-tbody>tr>td.p-cell-editing .p-component{width:100%}.p-treetable-reorder-indicator-up,.p-treetable-reorder-indicator-down{position:absolute;display:none}.p-treetable-responsive .p-treetable-tbody>tr>td .p-column-title{display:none}@media screen and (max-width:40em){.p-treetable-responsive .p-treetable-thead>tr>th,.p-treetable-responsive .p-treetable-tfoot>tr>td{display:none !important}.p-treetable-responsive .p-treetable-tbody>tr>td{text-align:left;display:block;border:0 none;width:100% !important;float:left;clear:left}.p-treetable-responsive .p-treetable-tbody>tr>td .p-column-title{padding:.4em;min-width:30%;display:inline-block;margin:-.4em 1em -.4em -.4em;font-weight:bold}}.p-treetable-loading-overlay{position:absolute;width:100%;height:100%;-ms-filter:"alpha(opacity=10)";opacity:.1;z-index:1}.p-treetable-loading-content{position:absolute;left:50%;top:50%;z-index:2;margin-top:-1em;margin-left:-1em}.p-treetable .p-treetable-loading-icon{font-size:2em}
html.honeywell-dark-theme{/*!
 * # Semantic UI 2.2.11 - Icon
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}@font-face{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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}}html.honeywell-dark-theme .h-icon.global{font-family:'Honeywell-Global' !important}html.honeywell-dark-theme .h-icon.global.badge-alert:before{content:"\E900"}html.honeywell-dark-theme .h-icon.global.badge-help:before{content:"\E901"}html.honeywell-dark-theme .h-icon.global.badge-info:before{content:"\E902"}html.honeywell-dark-theme .h-icon.global.badge-stop:before{content:"\E903"}html.honeywell-dark-theme .h-icon.global.badge-warning:before{content:"\E904"}html.honeywell-dark-theme .h-icon.global.battery-empty:before{content:"\E905"}html.honeywell-dark-theme .h-icon.global.battery-full:before{content:"\E906"}html.honeywell-dark-theme .h-icon.global.battery-low:before{content:"\E907"}html.honeywell-dark-theme .h-icon.global.battery-mid:before{content:"\E908"}html.honeywell-dark-theme .h-icon.global.calendar:before{content:"\E909"}html.honeywell-dark-theme .h-icon.global.camera:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.global.caret-down:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.global.caret-left:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.global.caret-right:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.global.caret-up:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.global.check:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.global.close:before{content:"\E910"}html.honeywell-dark-theme .h-icon.global.credit-card:before{content:"\E911"}html.honeywell-dark-theme .h-icon.global.delete:before{content:"\E912"}html.honeywell-dark-theme .h-icon.global.document:before{content:"\E913"}html.honeywell-dark-theme .h-icon.global.edit-circled:before{content:"\E914"}html.honeywell-dark-theme .h-icon.global.edit:before{content:"\E915"}html.honeywell-dark-theme .h-icon.global.email:before{content:"\E916"}html.honeywell-dark-theme .h-icon.global.expand:before{content:"\E917"}html.honeywell-dark-theme .h-icon.global.export:before{content:"\E918"}html.honeywell-dark-theme .h-icon.global.file-download:before{content:"\E919"}html.honeywell-dark-theme .h-icon.global.file-upload:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.global.filter:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.global.flag-icon:before{content:"\E91C"}html.honeywell-dark-theme .h-icon.global.fullscreen-enter:before{content:"\E91D"}html.honeywell-dark-theme .h-icon.global.fullscreen-exit:before{content:"\E91E"}html.honeywell-dark-theme .h-icon.global.globe:before{content:"\E91F"}html.honeywell-dark-theme .h-icon.global.graph:before{content:"\E920"}html.honeywell-dark-theme .h-icon.global.home:before{content:"\E921"}html.honeywell-dark-theme .h-icon.global.location:before{content:"\E922"}html.honeywell-dark-theme .h-icon.global.locked:before{content:"\E923"}html.honeywell-dark-theme .h-icon.global.map:before{content:"\E924"}html.honeywell-dark-theme .h-icon.global.menu-icon:before{content:"\E925"}html.honeywell-dark-theme .h-icon.global.message:before{content:"\E926"}html.honeywell-dark-theme .h-icon.global.multiple-devices:before{content:"\E927"}html.honeywell-dark-theme .h-icon.global.notification:before{content:"\E928"}html.honeywell-dark-theme .h-icon.global.paperclip:before{content:"\E929"}html.honeywell-dark-theme .h-icon.global.pc:before{content:"\E92A"}html.honeywell-dark-theme .h-icon.global.phone:before{content:"\E92B"}html.honeywell-dark-theme .h-icon.global.playback-pause:before{content:"\E92C"}html.honeywell-dark-theme .h-icon.global.playback-play:before{content:"\E92D"}html.honeywell-dark-theme .h-icon.global.print:before{content:"\E92E"}html.honeywell-dark-theme .h-icon.global.redo:before{content:"\E92F"}html.honeywell-dark-theme .h-icon.global.refresh:before{content:"\E930"}html.honeywell-dark-theme .h-icon.global.reminders:before{content:"\E931"}html.honeywell-dark-theme .h-icon.global.save:before{content:"\E932"}html.honeywell-dark-theme .h-icon.global.search:before{content:"\E933"}html.honeywell-dark-theme .h-icon.global.settings:before{content:"\E934"}html.honeywell-dark-theme .h-icon.global.share-2:before{content:"\E935"}html.honeywell-dark-theme .h-icon.global.share:before{content:"\E936"}html.honeywell-dark-theme .h-icon.global.shopping-bag:before{content:"\E937"}html.honeywell-dark-theme .h-icon.global.slider-controls-minus:before{content:"\E938"}html.honeywell-dark-theme .h-icon.global.slider-controls-plus:before{content:"\E939"}html.honeywell-dark-theme .h-icon.global.smartphone:before{content:"\E93A"}html.honeywell-dark-theme .h-icon.global.social-fb-sq:before{content:"\E93B"}html.honeywell-dark-theme .h-icon.global.social-fb:before{content:"\E93C"}html.honeywell-dark-theme .h-icon.global.social-ig-sq:before{content:"\E93D"}html.honeywell-dark-theme .h-icon.global.social-ig:before{content:"\E93E"}html.honeywell-dark-theme .h-icon.global.social-li-sq:before{content:"\E93F"}html.honeywell-dark-theme .h-icon.global.social-li:before{content:"\E940"}html.honeywell-dark-theme .h-icon.global.social-tw-sq:before{content:"\E941"}html.honeywell-dark-theme .h-icon.global.social-tw:before{content:"\E942"}html.honeywell-dark-theme .h-icon.global.social-yt-sq:before{content:"\E943"}html.honeywell-dark-theme .h-icon.global.social-yt:before{content:"\E944"}html.honeywell-dark-theme .h-icon.global.speaker-off:before{content:"\E945"}html.honeywell-dark-theme .h-icon.global.speaker-on:before{content:"\E946"}html.honeywell-dark-theme .h-icon.global.star:before{content:"\E947"}html.honeywell-dark-theme .h-icon.global.tools:before{content:"\E948"}html.honeywell-dark-theme .h-icon.global.undo:before{content:"\E949"}html.honeywell-dark-theme .h-icon.global.unlocked:before{content:"\E94A"}html.honeywell-dark-theme .h-icon.global.user:before{content:"\E94B"}html.honeywell-dark-theme .h-icon.global.users:before{content:"\E94C"}html.honeywell-dark-theme .h-icon.global.voice-message:before{content:"\E94D"}html.honeywell-dark-theme .h-icon.global.wifi:before{content:"\E94E"}html.honeywell-dark-theme .h-icon.global.shipping{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.shipping:before{content:"\1F399"}html.honeywell-dark-theme .h-icon.global.app-launcher{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.app-launcher:before{content:"\E900"}html.honeywell-dark-theme .h-icon.global.double-caret-right{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.double-caret-right:before{content:"\E901"}html.honeywell-dark-theme .h-icon.global.double-caret-left{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.double-caret-left:before{content:"\E902"}html.honeywell-dark-theme .h-icon.global.rtm{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.rtm:before{content:"\E916"}html.honeywell-dark-theme .h-icon.global.organization{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.organization:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.global.dash{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.dash:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.global.equipment{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.equipment:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.global.inspections{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.inspections:before{content:"\E910"}html.honeywell-dark-theme .h-icon.global.reports{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.reports:before{content:"\E911"}html.honeywell-dark-theme .h-icon.global.training{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.training:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.global.sites-pin{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.sites-pin:before{content:"\E919"}html.honeywell-dark-theme .h-icon.global.users-two{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.users-two:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.global.unequal{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.unequal:before{content:"\E918"}html.honeywell-dark-theme .h-icon.aero{font-family:'Honeywell-Flight' !important}html.honeywell-dark-theme .h-icon.aero.ac-atr:before{content:"\E92A"}html.honeywell-dark-theme .h-icon.aero.ac-bga:before{content:"\E92B"}html.honeywell-dark-theme .h-icon.aero.ac-dns:before{content:"\E92C"}html.honeywell-dark-theme .h-icon.aero.ac-dualprop:before{content:"\E92D"}html.honeywell-dark-theme .h-icon.aero.ac-glider:before{content:"\E92E"}html.honeywell-dark-theme .h-icon.aero.ac-highwing:before{content:"\E92F"}html.honeywell-dark-theme .h-icon.aero.ac-lowwing:before{content:"\E930"}html.honeywell-dark-theme .h-icon.aero.ac-profile:before{content:"\E931"}html.honeywell-dark-theme .h-icon.aero.ac-right:before{content:"\E932"}html.honeywell-dark-theme .h-icon.aero.ac-settings:before{content:"\E933"}html.honeywell-dark-theme .h-icon.aero.ac-up:before{content:"\E934"}html.honeywell-dark-theme .h-icon.aero.airports-directory:before{content:"\E935"}html.honeywell-dark-theme .h-icon.aero.airports-nearby:before{content:"\E936"}html.honeywell-dark-theme .h-icon.aero.airports:before{content:"\E937"}html.honeywell-dark-theme .h-icon.aero.cabin-seat:before{content:"\E938"}html.honeywell-dark-theme .h-icon.aero.cabin:before{content:"\E939"}html.honeywell-dark-theme .h-icon.aero.cleaning:before{content:"\E93A"}html.honeywell-dark-theme .h-icon.aero.eapis-3:before{content:"\E93B"}html.honeywell-dark-theme .h-icon.aero.eapis-alt:before{content:"\E93C"}html.honeywell-dark-theme .h-icon.aero.eapis:before{content:"\E93D"}html.honeywell-dark-theme .h-icon.aero.egi-2:before{content:"\E93E"}html.honeywell-dark-theme .h-icon.aero.egi:before{content:"\E93F"}html.honeywell-dark-theme .h-icon.aero.fbo-1:before{content:"\E940"}html.honeywell-dark-theme .h-icon.aero.fbo-2:before{content:"\E941"}html.honeywell-dark-theme .h-icon.aero.fbo:before{content:"\E942"}html.honeywell-dark-theme .h-icon.aero.flight-attendant:before{content:"\E943"}html.honeywell-dark-theme .h-icon.aero.flight-plan-doc:before{content:"\E944"}html.honeywell-dark-theme .h-icon.aero.flight-plan-new:before{content:"\E945"}html.honeywell-dark-theme .h-icon.aero.flight-plan:before{content:"\E946"}html.honeywell-dark-theme .h-icon.aero.flight-schedule-alt:before{content:"\E947"}html.honeywell-dark-theme .h-icon.aero.flight-schedule:before{content:"\E948"}html.honeywell-dark-theme .h-icon.aero.fuel:before{content:"\E949"}html.honeywell-dark-theme .h-icon.aero.hangar:before{content:"\E94A"}html.honeywell-dark-theme .h-icon.aero.helicopter:before{content:"\E94B"}html.honeywell-dark-theme .h-icon.aero.intl-trip:before{content:"\E94C"}html.honeywell-dark-theme .h-icon.aero.luggage:before{content:"\E94D"}html.honeywell-dark-theme .h-icon.aero.notams-2:before{content:"\E94E"}html.honeywell-dark-theme .h-icon.aero.notams-3:before{content:"\E94F"}html.honeywell-dark-theme .h-icon.aero.notams:before{content:"\E950"}html.honeywell-dark-theme .h-icon.aero.pilot-crushcap:before{content:"\E951"}html.honeywell-dark-theme .h-icon.aero.plane-approach-1:before{content:"\E952"}html.honeywell-dark-theme .h-icon.aero.plane-approach-2:before{content:"\E953"}html.honeywell-dark-theme .h-icon.aero.psngr-boarding:before{content:"\E954"}html.honeywell-dark-theme .h-icon.aero.psngr-deboarding:before{content:"\E955"}html.honeywell-dark-theme .h-icon.aero.ramp-1:before{content:"\E956"}html.honeywell-dark-theme .h-icon.aero.ramp-2:before{content:"\E957"}html.honeywell-dark-theme .h-icon.aero.ramp-3:before{content:"\E958"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-1:before{content:"\E959"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-2:before{content:"\E95A"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-3:before{content:"\E95B"}html.honeywell-dark-theme .h-icon.aero.runway:before{content:"\E95C"}html.honeywell-dark-theme .h-icon.aero.screen-seat:before{content:"\E95D"}html.honeywell-dark-theme .h-icon.aero.speed-indicator-air:before{content:"\E95E"}html.honeywell-dark-theme .h-icon.aero.speed-indicator-vertical:before{content:"\E95F"}html.honeywell-dark-theme .h-icon.aero.speed-indicator:before{content:"\E960"}html.honeywell-dark-theme .h-icon.aero.track-up-centered:before{content:"\E961"}html.honeywell-dark-theme .h-icon.aero.track-up:before{content:"\E962"}html.honeywell-dark-theme .h-icon.aero.trip-kit-add:before{content:"\E963"}html.honeywell-dark-theme .h-icon.aero.trip-kit-refresh:before{content:"\E964"}html.honeywell-dark-theme .h-icon.aero.trip-kit:before{content:"\E965"}html.honeywell-dark-theme .h-icon.aero.uav:before{content:"\E966"}html.honeywell-dark-theme .h-icon.aero.valance:before{content:"\E967"}html.honeywell-dark-theme .h-icon.aero.weather-chart:before{content:"\E968"}html.honeywell-dark-theme .h-icon.aero.wheel-chocks:before{content:"\E969"}html.honeywell-dark-theme .h-icon.aero.window-down:before{content:"\E96A"}html.honeywell-dark-theme .h-icon.aero.window-mid:before{content:"\E96B"}html.honeywell-dark-theme .h-icon.aero.window-up:before{content:"\E96C"}html.honeywell-dark-theme .h-icon.aero.ptmd{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.ptmd:before{content:"\E903"}html.honeywell-dark-theme .h-icon.aero.flight-efficiency{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.flight-efficiency:before{content:"\E904"}html.honeywell-dark-theme .h-icon.aero.cmx{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.cmx:before{content:"\E905"}html.honeywell-dark-theme .h-icon.building{font-family:'Honeywell-Buildings' !important}html.honeywell-dark-theme .h-icon.building.add:before{content:"\E96D"}html.honeywell-dark-theme .h-icon.building.badge-alert:before{content:"\E96E"}html.honeywell-dark-theme .h-icon.building.badge-help:before{content:"\E96F"}html.honeywell-dark-theme .h-icon.building.badge-info:before{content:"\E970"}html.honeywell-dark-theme .h-icon.building.badge-stop:before{content:"\E971"}html.honeywell-dark-theme .h-icon.building.badge-warning:before{content:"\E972"}html.honeywell-dark-theme .h-icon.building.battery-empty:before{content:"\E973"}html.honeywell-dark-theme .h-icon.building.battery-full:before{content:"\E974"}html.honeywell-dark-theme .h-icon.building.battery-low:before{content:"\E975"}html.honeywell-dark-theme .h-icon.building.battery-mid:before{content:"\E976"}html.honeywell-dark-theme .h-icon.building.calendar .path1:before{content:"\E977"}html.honeywell-dark-theme .h-icon.building.calendar .path2:before{content:"\EA1B";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path3:before{content:"\EA1C";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path4:before{content:"\EA1D";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path5:before{content:"\EA1E";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path6:before{content:"\EA1F";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path7:before{content:"\EA20";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path8:before{content:"\EA21";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path9:before{content:"\EA22";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path10:before{content:"\EA23";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path11:before{content:"\EA24";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path12:before{content:"\EA25";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path13:before{content:"\EA26";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.camera:before{content:"\E978"}html.honeywell-dark-theme .h-icon.building.caret-down:before{content:"\E979"}html.honeywell-dark-theme .h-icon.building.caret-left:before{content:"\E97A"}html.honeywell-dark-theme .h-icon.building.caret-right:before{content:"\E97B"}html.honeywell-dark-theme .h-icon.building.caret-up:before{content:"\E97C"}html.honeywell-dark-theme .h-icon.building.check:before{content:"\E97D"}html.honeywell-dark-theme .h-icon.building.close-circled:before{content:"\E97E"}html.honeywell-dark-theme .h-icon.building.close:before{content:"\E97F"}html.honeywell-dark-theme .h-icon.building.cloud-download:before{content:"\E980"}html.honeywell-dark-theme .h-icon.building.cloud-upload:before{content:"\E981"}html.honeywell-dark-theme .h-icon.building.collapse:before{content:"\E982"}html.honeywell-dark-theme .h-icon.building.credit-card:before{content:"\E983"}html.honeywell-dark-theme .h-icon.building.dashboard:before{content:"\E984"}html.honeywell-dark-theme .h-icon.building.delete:before{content:"\E985"}html.honeywell-dark-theme .h-icon.building.doc-add:before{content:"\E986"}html.honeywell-dark-theme .h-icon.building.doc-annotate:before{content:"\E987"}html.honeywell-dark-theme .h-icon.building.doc-certificate:before{content:"\E988"}html.honeywell-dark-theme .h-icon.building.doc-pdf:before{content:"\E989"}html.honeywell-dark-theme .h-icon.building.doc-photo:before{content:"\E98A"}html.honeywell-dark-theme .h-icon.building.doc-proc:before{content:"\E98B"}html.honeywell-dark-theme .h-icon.building.doc-search:before{content:"\E98C"}html.honeywell-dark-theme .h-icon.building.doc-test:before{content:"\E98D"}html.honeywell-dark-theme .h-icon.building.document:before{content:"\E98E"}html.honeywell-dark-theme .h-icon.building.edit-circled:before{content:"\E98F"}html.honeywell-dark-theme .h-icon.building.edit:before{content:"\E990"}html.honeywell-dark-theme .h-icon.building.email:before{content:"\E991"}html.honeywell-dark-theme .h-icon.building.expand:before{content:"\E992"}html.honeywell-dark-theme .h-icon.building.export:before{content:"\E993"}html.honeywell-dark-theme .h-icon.building.file-download:before{content:"\E994"}html.honeywell-dark-theme .h-icon.building.file-upload:before{content:"\E995"}html.honeywell-dark-theme .h-icon.building.filter:before{content:"\E996"}html.honeywell-dark-theme .h-icon.building.flag-icon:before{content:"\E997"}html.honeywell-dark-theme .h-icon.building.folder-music:before{content:"\E998"}html.honeywell-dark-theme .h-icon.building.folder:before{content:"\E999"}html.honeywell-dark-theme .h-icon.building.fullscreen-enter:before{content:"\E99A"}html.honeywell-dark-theme .h-icon.building.fullscreen-exit:before{content:"\E99B"}html.honeywell-dark-theme .h-icon.building.globe:before{content:"\E99C"}html.honeywell-dark-theme .h-icon.building.graph:before{content:"\E99D"}html.honeywell-dark-theme .h-icon.building.home:before{content:"\E99E"}html.honeywell-dark-theme .h-icon.building.location:before{content:"\E99F"}html.honeywell-dark-theme .h-icon.building.locked:before{content:"\E9A0"}html.honeywell-dark-theme .h-icon.building.map:before{content:"\E9A1"}html.honeywell-dark-theme .h-icon.building.menu-icon:before{content:"\E9A2"}html.honeywell-dark-theme .h-icon.building.message:before{content:"\E9A3"}html.honeywell-dark-theme .h-icon.building.messages:before{content:"\E9A4"}html.honeywell-dark-theme .h-icon.building.modify:before{content:"\E9A5"}html.honeywell-dark-theme .h-icon.building.multiple-devices:before{content:"\E9A6"}html.honeywell-dark-theme .h-icon.building.music:before{content:"\E9A7"}html.honeywell-dark-theme .h-icon.building.notification:before{content:"\E9A8"}html.honeywell-dark-theme .h-icon.building.paperclip:before{content:"\E9A9"}html.honeywell-dark-theme .h-icon.building.pc:before{content:"\E9AA"}html.honeywell-dark-theme .h-icon.building.phone:before{content:"\E9AB"}html.honeywell-dark-theme .h-icon.building.playback-pause:before{content:"\E9AC"}html.honeywell-dark-theme .h-icon.building.playback-play:before{content:"\E9AD"}html.honeywell-dark-theme .h-icon.building.playback-rec:before{content:"\E9AE"}html.honeywell-dark-theme .h-icon.building.playback-stop:before{content:"\E9AF"}html.honeywell-dark-theme .h-icon.building.print:before{content:"\E9B0"}html.honeywell-dark-theme .h-icon.building.redo:before{content:"\E9B1"}html.honeywell-dark-theme .h-icon.building.refresh:before{content:"\E9B2"}html.honeywell-dark-theme .h-icon.building.save:before{content:"\E9B3"}html.honeywell-dark-theme .h-icon.building.search:before{content:"\E9B4"}html.honeywell-dark-theme .h-icon.building.settings:before{content:"\E9B5"}html.honeywell-dark-theme .h-icon.building.share-2:before{content:"\E9B6"}html.honeywell-dark-theme .h-icon.building.share:before{content:"\E9B7"}html.honeywell-dark-theme .h-icon.building.shopping-bag:before{content:"\E9B8"}html.honeywell-dark-theme .h-icon.building.slider-controls-minus:before{content:"\E9B9"}html.honeywell-dark-theme .h-icon.building.slider-controls-plus:before{content:"\E9BA"}html.honeywell-dark-theme .h-icon.building.smartphone:before{content:"\E9BB"}html.honeywell-dark-theme .h-icon.building.social-fb:before{content:"\E9BC"}html.honeywell-dark-theme .h-icon.building.social-ig:before{content:"\E9BD"}html.honeywell-dark-theme .h-icon.building.social-tw:before{content:"\E9BE"}html.honeywell-dark-theme .h-icon.building.social-yt:before{content:"\E9BF"}html.honeywell-dark-theme .h-icon.building.speaker-off:before{content:"\E9C0"}html.honeywell-dark-theme .h-icon.building.speaker-on:before{content:"\E9C1"}html.honeywell-dark-theme .h-icon.building.star:before{content:"\E9C2"}html.honeywell-dark-theme .h-icon.building.tag:before{content:"\E9C3"}html.honeywell-dark-theme .h-icon.building.timeline:before{content:"\E9C4"}html.honeywell-dark-theme .h-icon.building.tools:before{content:"\E9C5"}html.honeywell-dark-theme .h-icon.building.undo:before{content:"\E9C6"}html.honeywell-dark-theme .h-icon.building.unlocked:before{content:"\E9C7"}html.honeywell-dark-theme .h-icon.building.user-filled:before{content:"\E9C8"}html.honeywell-dark-theme .h-icon.building.user:before{content:"\E9C9"}html.honeywell-dark-theme .h-icon.building.voicemessages:before{content:"\E9CA"}html.honeywell-dark-theme .h-icon.building.wifi:before{content:"\E9CB"}html.honeywell-dark-theme .h-icon.building.total-footprint{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.total-footprint:before{content:"\E912"}html.honeywell-dark-theme .h-icon.building.sites{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.sites:before{content:"\E913"}html.honeywell-dark-theme .h-icon.building.portfolio-savings{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.portfolio-savings:before{content:"\E914"}html.honeywell-dark-theme .h-icon.building.portfolio-cost{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.portfolio-cost:before{content:"\E915"}html.honeywell-dark-theme .h-icon.building.comfort{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.comfort:before{content:"\E906"}html.honeywell-dark-theme .h-icon.building.filter-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.filter-alt:before{content:"\E907"}html.honeywell-dark-theme .h-icon.building.graph-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.graph-alt:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.building.home-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.home-alt:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.building.sites-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.sites-alt:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.building.operations{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.operations:before{content:"\E908"}html.honeywell-dark-theme .h-icon.building.energy{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.energy:before{content:"\E909"}html.honeywell-dark-theme .h-icon.building.rounds{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.rounds:before{content:"\E917"}html.honeywell-dark-theme .h-icon.weather{font-family:'Honeywell-Weather'}html.honeywell-dark-theme .h-icon.weather.blowingsnow:before{content:"\E900"}html.honeywell-dark-theme .h-icon.weather.breezy:before{content:"\E901"}html.honeywell-dark-theme .h-icon.weather.clear:before{content:"\E902"}html.honeywell-dark-theme .h-icon.weather.clearnight:before{content:"\E903"}html.honeywell-dark-theme .h-icon.weather.drizzle:before{content:"\E904"}html.honeywell-dark-theme .h-icon.weather.fewbrokenclowds:before{content:"\E905"}html.honeywell-dark-theme .h-icon.weather.fog:before{content:"\E906"}html.honeywell-dark-theme .h-icon.weather.freezingdrizzle:before{content:"\E907"}html.honeywell-dark-theme .h-icon.weather.freezingrain:before{content:"\E908"}html.honeywell-dark-theme .h-icon.weather.funnelcloud:before{content:"\E909"}html.honeywell-dark-theme .h-icon.weather.hail:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.weather.haze:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.weather.heavyfog:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.weather.heavyrain:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.weather.heavysnow:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.weather.hot:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.weather.hurricane:before{content:"\E910"}html.honeywell-dark-theme .h-icon.weather.ice:before{content:"\E911"}html.honeywell-dark-theme .h-icon.weather.icepellets:before{content:"\E912"}html.honeywell-dark-theme .h-icon.weather.lightfog:before{content:"\E913"}html.honeywell-dark-theme .h-icon.weather.lightrain:before{content:"\E914"}html.honeywell-dark-theme .h-icon.weather.lightsnow:before{content:"\E915"}html.honeywell-dark-theme .h-icon.weather.mixrainfall:before{content:"\E916"}html.honeywell-dark-theme .h-icon.weather.moderatefog:before{content:"\E917"}html.honeywell-dark-theme .h-icon.weather.moderaterain:before{content:"\E918"}html.honeywell-dark-theme .h-icon.weather.moderatesnow:before{content:"\E919"}html.honeywell-dark-theme .h-icon.weather.na:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.weather.noreport:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.weather.overcast:before{content:"\E91C"}html.honeywell-dark-theme .h-icon.weather.rain:before{content:"\E91D"}html.honeywell-dark-theme .h-icon.weather.rainshowers:before{content:"\E91E"}html.honeywell-dark-theme .h-icon.weather.sandustorm:before{content:"\E91F"}html.honeywell-dark-theme .h-icon.weather.scatteredclouds:before{content:"\E920"}html.honeywell-dark-theme .h-icon.weather.scatteredshowers:before{content:"\E921"}html.honeywell-dark-theme .h-icon.weather.scatteredthunderstorm:before{content:"\E922"}html.honeywell-dark-theme .h-icon.weather.smoke:before{content:"\E923"}html.honeywell-dark-theme .h-icon.weather.snowshowers:before{content:"\E924"}html.honeywell-dark-theme .h-icon.weather.sunrise:before{content:"\E925"}html.honeywell-dark-theme .h-icon.weather.sunset:before{content:"\E926"}html.honeywell-dark-theme .h-icon.weather.thunderstorm:before{content:"\E927"}html.honeywell-dark-theme .h-icon.weather.tropicalstorm:before{content:"\E928"}html.honeywell-dark-theme .h-icon.weather.water:before{content:"\E929"}@font-face{html.honeywell-dark-theme{font-family:'Icons';src:url(/static/media/icons.7bfcab6d.eot);src:url(/static/media/icons.7bfcab6d.eot) format("embedded-opentype"),url(/static/media/icons.2adefcbc.woff2) format("woff2"),url(/static/media/icons.ba0c59de.woff) format("woff"),url(/static/media/icons.aa58f33f.ttf) format("truetype"),url(/static/media/icons.ad615792.svg) format("svg");font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-decoration:inherit;text-transform:none}}html.honeywell-dark-theme i.icon{font-family:'Honeywell-Global', 'Icons';display:inline-block;opacity:1;font-style:normal;font-weight:normal;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;backface-visibility:hidden}html.honeywell-dark-theme i.icon:before{background:none !important}html.honeywell-dark-theme i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme i.icon.hover{opacity:1 !important}html.honeywell-dark-theme i.icon.active{opacity:1 !important}html.honeywell-dark-theme i.emphasized.icon{opacity:1 !important}html.honeywell-dark-theme i.disabled.icon{opacity:0.45 !important}html.honeywell-dark-theme i.fitted.icon{width:auto;margin:0em}html.honeywell-dark-theme i.link.icon,html.honeywell-dark-theme i.link.icons{cursor:pointer;opacity:0.8;transition:opacity 0.1s ease}html.honeywell-dark-theme i.link.icon:hover,html.honeywell-dark-theme i.link.icons:hover{opacity:1 !important}html.honeywell-dark-theme i.circular.icon{border-radius:500em !important;line-height:1 !important;padding:0.5em 0.5em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset;width:2em !important;height:2em !important}html.honeywell-dark-theme i.circular.inverted.icon{border:none;box-shadow:none}html.honeywell-dark-theme i.flipped.icon,html.honeywell-dark-theme i.horizontally.flipped.icon{transform:scale(-1, 1)}html.honeywell-dark-theme i.vertically.flipped.icon{transform:scale(1, -1)}html.honeywell-dark-theme i.rotated.icon,html.honeywell-dark-theme i.right.rotated.icon,html.honeywell-dark-theme i.clockwise.rotated.icon{transform:rotate(90deg)}html.honeywell-dark-theme i.left.rotated.icon,html.honeywell-dark-theme i.counterclockwise.rotated.icon{transform:rotate(-90deg)}html.honeywell-dark-theme i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:0.5em 0.41em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset}html.honeywell-dark-theme i.bordered.inverted.icon{border:none;box-shadow:none}html.honeywell-dark-theme i.inverted.bordered.icon,html.honeywell-dark-theme i.inverted.circular.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html.honeywell-dark-theme i.inverted.icon{color:#FFFFFF}html.honeywell-dark-theme i.red.icon{color:#DB2828 !important}html.honeywell-dark-theme i.inverted.red.icon{color:#FF695E !important}html.honeywell-dark-theme i.inverted.bordered.red.icon,html.honeywell-dark-theme i.inverted.circular.red.icon{background-color:#DB2828 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.orange.icon{color:#F2711C !important}html.honeywell-dark-theme i.inverted.orange.icon{color:#FF851B !important}html.honeywell-dark-theme i.inverted.bordered.orange.icon,html.honeywell-dark-theme i.inverted.circular.orange.icon{background-color:#F2711C !important;color:#FFFFFF !important}html.honeywell-dark-theme i.yellow.icon{color:#FBBD08 !important}html.honeywell-dark-theme i.inverted.yellow.icon{color:#FFE21F !important}html.honeywell-dark-theme i.inverted.bordered.yellow.icon,html.honeywell-dark-theme i.inverted.circular.yellow.icon{background-color:#FBBD08 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.olive.icon{color:#B5CC18 !important}html.honeywell-dark-theme i.inverted.olive.icon{color:#D9E778 !important}html.honeywell-dark-theme i.inverted.bordered.olive.icon,html.honeywell-dark-theme i.inverted.circular.olive.icon{background-color:#B5CC18 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.green.icon{color:#21BA45 !important}html.honeywell-dark-theme i.inverted.green.icon{color:#2ECC40 !important}html.honeywell-dark-theme i.inverted.bordered.green.icon,html.honeywell-dark-theme i.inverted.circular.green.icon{background-color:#21BA45 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.teal.icon{color:#00B5AD !important}html.honeywell-dark-theme i.inverted.teal.icon{color:#6DFFFF !important}html.honeywell-dark-theme i.inverted.bordered.teal.icon,html.honeywell-dark-theme i.inverted.circular.teal.icon{background-color:#00B5AD !important;color:#FFFFFF !important}html.honeywell-dark-theme i.blue.icon{color:#2185D0 !important}html.honeywell-dark-theme i.inverted.blue.icon{color:#54C8FF !important}html.honeywell-dark-theme i.inverted.bordered.blue.icon,html.honeywell-dark-theme i.inverted.circular.blue.icon{background-color:#2185D0 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.violet.icon{color:#6435C9 !important}html.honeywell-dark-theme i.inverted.violet.icon{color:#A291FB !important}html.honeywell-dark-theme i.inverted.bordered.violet.icon,html.honeywell-dark-theme i.inverted.circular.violet.icon{background-color:#6435C9 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.purple.icon{color:#A333C8 !important}html.honeywell-dark-theme i.inverted.purple.icon{color:#DC73FF !important}html.honeywell-dark-theme i.inverted.bordered.purple.icon,html.honeywell-dark-theme i.inverted.circular.purple.icon{background-color:#A333C8 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.pink.icon{color:#E03997 !important}html.honeywell-dark-theme i.inverted.pink.icon{color:#FF8EDF !important}html.honeywell-dark-theme i.inverted.bordered.pink.icon,html.honeywell-dark-theme i.inverted.circular.pink.icon{background-color:#E03997 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.brown.icon{color:#A5673F !important}html.honeywell-dark-theme i.inverted.brown.icon{color:#D67C1C !important}html.honeywell-dark-theme i.inverted.bordered.brown.icon,html.honeywell-dark-theme i.inverted.circular.brown.icon{background-color:#A5673F !important;color:#FFFFFF !important}html.honeywell-dark-theme i.grey.icon{color:#767676 !important}html.honeywell-dark-theme i.inverted.grey.icon{color:#DCDDDE !important}html.honeywell-dark-theme i.inverted.bordered.grey.icon,html.honeywell-dark-theme i.inverted.circular.grey.icon{background-color:#767676 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.black.icon{color:#1B1C1D !important}html.honeywell-dark-theme i.inverted.black.icon{color:#545454 !important}html.honeywell-dark-theme i.inverted.bordered.black.icon,html.honeywell-dark-theme i.inverted.circular.black.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html.honeywell-dark-theme i.mini.icon,html.honeywell-dark-theme i.mini.icons{line-height:1;font-size:0.4em}html.honeywell-dark-theme i.tiny.icon,html.honeywell-dark-theme i.tiny.icons{line-height:1;font-size:0.5em}html.honeywell-dark-theme i.small.icon,html.honeywell-dark-theme i.small.icons{line-height:1;font-size:0.75em}html.honeywell-dark-theme i.icon,html.honeywell-dark-theme i.icons{font-size:1em}html.honeywell-dark-theme i.large.icon,html.honeywell-dark-theme i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}html.honeywell-dark-theme i.big.icon,html.honeywell-dark-theme i.big.icons{line-height:1;vertical-align:middle;font-size:2em}html.honeywell-dark-theme i.huge.icon,html.honeywell-dark-theme i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}html.honeywell-dark-theme i.massive.icon,html.honeywell-dark-theme i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}html.honeywell-dark-theme i.icons{display:inline-block;position:relative;line-height:1}html.honeywell-dark-theme i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0em;margin:0}html.honeywell-dark-theme i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:0.25rem}html.honeywell-dark-theme i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:0.45em;text-shadow:-1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF}html.honeywell-dark-theme i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}html.honeywell-dark-theme i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}html.honeywell-dark-theme i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}html.honeywell-dark-theme i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}html.honeywell-dark-theme i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D}html.honeywell-dark-theme i.icon.search:before{content:"\F002"}html.honeywell-dark-theme i.icon.mail.outline:before{content:"\F003"}html.honeywell-dark-theme i.icon.signal:before{content:"\F012"}html.honeywell-dark-theme i.icon.setting:before{content:"\F013"}html.honeywell-dark-theme i.icon.home:before{content:"\F015"}html.honeywell-dark-theme i.icon.inbox:before{content:"\F01C"}html.honeywell-dark-theme i.icon.browser:before{content:"\F022"}html.honeywell-dark-theme i.icon.tag:before{content:"\F02B"}html.honeywell-dark-theme i.icon.tags:before{content:"\F02C"}html.honeywell-dark-theme i.icon.image:before{content:"\F03E"}html.honeywell-dark-theme i.icon.calendar:before{content:"\F073"}html.honeywell-dark-theme i.icon.comment:before{content:"\F075"}html.honeywell-dark-theme i.icon.shop:before{content:"\F07A"}html.honeywell-dark-theme i.icon.comments:before{content:"\F086"}html.honeywell-dark-theme i.icon.external:before{content:"\F08E"}html.honeywell-dark-theme i.icon.privacy:before{content:"\F084"}html.honeywell-dark-theme i.icon.settings:before{content:"\F085"}html.honeywell-dark-theme i.icon.comments:before{content:"\F086"}html.honeywell-dark-theme i.icon.external:before{content:"\F08E"}html.honeywell-dark-theme i.icon.trophy:before{content:"\F091"}html.honeywell-dark-theme i.icon.payment:before{content:"\F09D"}html.honeywell-dark-theme i.icon.feed:before{content:"\F09E"}html.honeywell-dark-theme i.icon.alarm.outline:before{content:"\F0A2"}html.honeywell-dark-theme i.icon.tasks:before{content:"\F0AE"}html.honeywell-dark-theme i.icon.cloud:before{content:"\F0C2"}html.honeywell-dark-theme i.icon.lab:before{content:"\F0C3"}html.honeywell-dark-theme i.icon.mail:before{content:"\F0E0"}html.honeywell-dark-theme i.icon.dashboard:before{content:"\F0E4"}html.honeywell-dark-theme i.icon.comment.outline:before{content:"\F0E5"}html.honeywell-dark-theme i.icon.comments.outline:before{content:"\F0E6"}html.honeywell-dark-theme i.icon.sitemap:before{content:"\F0E8"}html.honeywell-dark-theme i.icon.idea:before{content:"\F0EB"}html.honeywell-dark-theme i.icon.alarm:before{content:"\F0F3"}html.honeywell-dark-theme i.icon.terminal:before{content:"\F120"}html.honeywell-dark-theme i.icon.code:before{content:"\F121"}html.honeywell-dark-theme i.icon.protect:before{content:"\F132"}html.honeywell-dark-theme i.icon.calendar.outline:before{content:"\F133"}html.honeywell-dark-theme i.icon.ticket:before{content:"\F145"}html.honeywell-dark-theme i.icon.external.square:before{content:"\F14C"}html.honeywell-dark-theme i.icon.bug:before{content:"\F188"}html.honeywell-dark-theme i.icon.mail.square:before{content:"\F199"}html.honeywell-dark-theme i.icon.history:before{content:"\F1DA"}html.honeywell-dark-theme i.icon.options:before{content:"\F1DE"}html.honeywell-dark-theme i.icon.text.telephone:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.find:before{content:"\F1E5"}html.honeywell-dark-theme i.icon.alarm.mute:before{content:"\F1F6"}html.honeywell-dark-theme i.icon.alarm.mute.outline:before{content:"\F1F7"}html.honeywell-dark-theme i.icon.copyright:before{content:"\F1F9"}html.honeywell-dark-theme i.icon.at:before{content:"\F1FA"}html.honeywell-dark-theme i.icon.eyedropper:before{content:"\F1FB"}html.honeywell-dark-theme i.icon.paint.brush:before{content:"\F1FC"}html.honeywell-dark-theme i.icon.heartbeat:before{content:"\F21E"}html.honeywell-dark-theme i.icon.mouse.pointer:before{content:"\F245"}html.honeywell-dark-theme i.icon.hourglass.empty:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.start:before{content:"\F251"}html.honeywell-dark-theme i.icon.hourglass.half:before{content:"\F252"}html.honeywell-dark-theme i.icon.hourglass.end:before{content:"\F253"}html.honeywell-dark-theme i.icon.hourglass.full:before{content:"\F254"}html.honeywell-dark-theme i.icon.hand.pointer:before{content:"\F25A"}html.honeywell-dark-theme i.icon.trademark:before{content:"\F25C"}html.honeywell-dark-theme i.icon.registered:before{content:"\F25D"}html.honeywell-dark-theme i.icon.creative.commons:before{content:"\F25E"}html.honeywell-dark-theme i.icon.add.to.calendar:before{content:"\F271"}html.honeywell-dark-theme i.icon.remove.from.calendar:before{content:"\F272"}html.honeywell-dark-theme i.icon.delete.calendar:before{content:"\F273"}html.honeywell-dark-theme i.icon.checked.calendar:before{content:"\F274"}html.honeywell-dark-theme i.icon.industry:before{content:"\F275"}html.honeywell-dark-theme i.icon.shopping.bag:before{content:"\F290"}html.honeywell-dark-theme i.icon.shopping.basket:before{content:"\F291"}html.honeywell-dark-theme i.icon.hashtag:before{content:"\F292"}html.honeywell-dark-theme i.icon.percent:before{content:"\F295"}html.honeywell-dark-theme i.icon.handshake:before{content:"\F2B5"}html.honeywell-dark-theme i.icon.open.envelope:before{content:"\F2B6"}html.honeywell-dark-theme i.icon.open.envelope.outline:before{content:"\F2B7"}html.honeywell-dark-theme i.icon.address.book:before{content:"\F2B9"}html.honeywell-dark-theme i.icon.address.book.outline:before{content:"\F2BA"}html.honeywell-dark-theme i.icon.address.card:before{content:"\F2BB"}html.honeywell-dark-theme i.icon.address.card.outline:before{content:"\F2BC"}html.honeywell-dark-theme i.icon.id.badge:before{content:"\F2C1"}html.honeywell-dark-theme i.icon.id.card:before{content:"\F2C2"}html.honeywell-dark-theme i.icon.id.card.outline:before{content:"\F2C3"}html.honeywell-dark-theme i.icon.podcast:before{content:"\F2CE"}html.honeywell-dark-theme i.icon.window.maximize:before{content:"\F2D0"}html.honeywell-dark-theme i.icon.window.minimize:before{content:"\F2D1"}html.honeywell-dark-theme i.icon.window.restore:before{content:"\F2D2"}html.honeywell-dark-theme i.icon.window.close:before{content:"\F2D3"}html.honeywell-dark-theme i.icon.window.close.outline:before{content:"\F2D4"}html.honeywell-dark-theme i.icon.wait:before{content:"\F017"}html.honeywell-dark-theme i.icon.download:before{content:"\F019"}html.honeywell-dark-theme i.icon.repeat:before{content:"\F01E"}html.honeywell-dark-theme i.icon.refresh:before{content:"\F021"}html.honeywell-dark-theme i.icon.lock:before{content:"\F023"}html.honeywell-dark-theme i.icon.bookmark:before{content:"\F02E"}html.honeywell-dark-theme i.icon.print:before{content:"\F02F"}html.honeywell-dark-theme i.icon.write:before{content:"\F040"}html.honeywell-dark-theme i.icon.adjust:before{content:"\F042"}html.honeywell-dark-theme i.icon.theme:before{content:"\F043"}html.honeywell-dark-theme i.icon.edit:before{content:"\F044"}html.honeywell-dark-theme i.icon.external.share:before{content:"\F045"}html.honeywell-dark-theme i.icon.ban:before{content:"\F05E"}html.honeywell-dark-theme i.icon.mail.forward:before{content:"\F064"}html.honeywell-dark-theme i.icon.share:before{content:"\F064"}html.honeywell-dark-theme i.icon.expand:before{content:"\F065"}html.honeywell-dark-theme i.icon.compress:before{content:"\F066"}html.honeywell-dark-theme i.icon.unhide:before{content:"\F06E"}html.honeywell-dark-theme i.icon.hide:before{content:"\F070"}html.honeywell-dark-theme i.icon.random:before{content:"\F074"}html.honeywell-dark-theme i.icon.retweet:before{content:"\F079"}html.honeywell-dark-theme i.icon.sign.out:before{content:"\F08B"}html.honeywell-dark-theme i.icon.pin:before{content:"\F08D"}html.honeywell-dark-theme i.icon.sign.in:before{content:"\F090"}html.honeywell-dark-theme i.icon.upload:before{content:"\F093"}html.honeywell-dark-theme i.icon.call:before{content:"\F095"}html.honeywell-dark-theme i.icon.remove.bookmark:before{content:"\F097"}html.honeywell-dark-theme i.icon.call.square:before{content:"\F098"}html.honeywell-dark-theme i.icon.unlock:before{content:"\F09C"}html.honeywell-dark-theme i.icon.configure:before{content:"\F0AD"}html.honeywell-dark-theme i.icon.filter:before{content:"\F0B0"}html.honeywell-dark-theme i.icon.wizard:before{content:"\F0D0"}html.honeywell-dark-theme i.icon.undo:before{content:"\F0E2"}html.honeywell-dark-theme i.icon.exchange:before{content:"\F0EC"}html.honeywell-dark-theme i.icon.cloud.download:before{content:"\F0ED"}html.honeywell-dark-theme i.icon.cloud.upload:before{content:"\F0EE"}html.honeywell-dark-theme i.icon.reply:before{content:"\F112"}html.honeywell-dark-theme i.icon.reply.all:before{content:"\F122"}html.honeywell-dark-theme i.icon.erase:before{content:"\F12D"}html.honeywell-dark-theme i.icon.unlock.alternate:before{content:"\F13E"}html.honeywell-dark-theme i.icon.write.square:before{content:"\F14B"}html.honeywell-dark-theme i.icon.share.square:before{content:"\F14D"}html.honeywell-dark-theme i.icon.archive:before{content:"\F187"}html.honeywell-dark-theme i.icon.translate:before{content:"\F1AB"}html.honeywell-dark-theme i.icon.recycle:before{content:"\F1B8"}html.honeywell-dark-theme i.icon.send:before{content:"\F1D8"}html.honeywell-dark-theme i.icon.send.outline:before{content:"\F1D9"}html.honeywell-dark-theme i.icon.share.alternate:before{content:"\F1E0"}html.honeywell-dark-theme i.icon.share.alternate.square:before{content:"\F1E1"}html.honeywell-dark-theme i.icon.add.to.cart:before{content:"\F217"}html.honeywell-dark-theme i.icon.in.cart:before{content:"\F218"}html.honeywell-dark-theme i.icon.add.user:before{content:"\F234"}html.honeywell-dark-theme i.icon.remove.user:before{content:"\F235"}html.honeywell-dark-theme i.icon.object.group:before{content:"\F247"}html.honeywell-dark-theme i.icon.object.ungroup:before{content:"\F248"}html.honeywell-dark-theme i.icon.clone:before{content:"\F24D"}html.honeywell-dark-theme i.icon.talk:before{content:"\F27A"}html.honeywell-dark-theme i.icon.talk.outline:before{content:"\F27B"}html.honeywell-dark-theme i.icon.help.circle:before{content:"\F059"}html.honeywell-dark-theme i.icon.info.circle:before{content:"\F05A"}html.honeywell-dark-theme i.icon.warning.circle:before{content:"\F06A"}html.honeywell-dark-theme i.icon.warning.sign:before{content:"\F071"}html.honeywell-dark-theme i.icon.announcement:before{content:"\F0A1"}html.honeywell-dark-theme i.icon.help:before{content:"\F128"}html.honeywell-dark-theme i.icon.info:before{content:"\F129"}html.honeywell-dark-theme i.icon.warning:before{content:"\F12A"}html.honeywell-dark-theme i.icon.birthday:before{content:"\F1FD"}html.honeywell-dark-theme i.icon.help.circle.outline:before{content:"\F29C"}html.honeywell-dark-theme i.icon.user:before{content:"\F007"}html.honeywell-dark-theme i.icon.users:before{content:"\F0C0"}html.honeywell-dark-theme i.icon.doctor:before{content:"\F0F0"}html.honeywell-dark-theme i.icon.handicap:before{content:"\F193"}html.honeywell-dark-theme i.icon.student:before{content:"\F19D"}html.honeywell-dark-theme i.icon.child:before{content:"\F1AE"}html.honeywell-dark-theme i.icon.spy:before{content:"\F21B"}html.honeywell-dark-theme i.icon.user.circle:before{content:"\F2BD"}html.honeywell-dark-theme i.icon.user.circle.outline:before{content:"\F2BE"}html.honeywell-dark-theme i.icon.user.outline:before{content:"\F2C0"}html.honeywell-dark-theme i.icon.female:before{content:"\F182"}html.honeywell-dark-theme i.icon.male:before{content:"\F183"}html.honeywell-dark-theme i.icon.woman:before{content:"\F221"}html.honeywell-dark-theme i.icon.man:before{content:"\F222"}html.honeywell-dark-theme i.icon.non.binary.transgender:before{content:"\F223"}html.honeywell-dark-theme i.icon.intergender:before{content:"\F224"}html.honeywell-dark-theme i.icon.transgender:before{content:"\F225"}html.honeywell-dark-theme i.icon.lesbian:before{content:"\F226"}html.honeywell-dark-theme i.icon.gay:before{content:"\F227"}html.honeywell-dark-theme i.icon.heterosexual:before{content:"\F228"}html.honeywell-dark-theme i.icon.other.gender:before{content:"\F229"}html.honeywell-dark-theme i.icon.other.gender.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.other.gender.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.neuter:before{content:"\F22C"}html.honeywell-dark-theme i.icon.genderless:before{content:"\F22D"}html.honeywell-dark-theme i.icon.universal.access:before{content:"\F29A"}html.honeywell-dark-theme i.icon.wheelchair:before{content:"\F29B"}html.honeywell-dark-theme i.icon.blind:before{content:"\F29D"}html.honeywell-dark-theme i.icon.audio.description:before{content:"\F29E"}html.honeywell-dark-theme i.icon.volume.control.phone:before{content:"\F2A0"}html.honeywell-dark-theme i.icon.braille:before{content:"\F2A1"}html.honeywell-dark-theme i.icon.asl:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.assistive.listening.systems:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.deafness:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.sign.language:before{content:"\F2A7"}html.honeywell-dark-theme i.icon.low.vision:before{content:"\F2A8"}html.honeywell-dark-theme i.icon.block.layout:before{content:"\F009"}html.honeywell-dark-theme i.icon.grid.layout:before{content:"\F00A"}html.honeywell-dark-theme i.icon.list.layout:before{content:"\F00B"}html.honeywell-dark-theme i.icon.zoom:before{content:"\F00E"}html.honeywell-dark-theme i.icon.zoom.out:before{content:"\F010"}html.honeywell-dark-theme i.icon.resize.vertical:before{content:"\F07D"}html.honeywell-dark-theme i.icon.resize.horizontal:before{content:"\F07E"}html.honeywell-dark-theme i.icon.maximize:before{content:"\F0B2"}html.honeywell-dark-theme i.icon.crop:before{content:"\F125"}html.honeywell-dark-theme i.icon.cocktail:before{content:"\F000"}html.honeywell-dark-theme i.icon.road:before{content:"\F018"}html.honeywell-dark-theme i.icon.flag:before{content:"\F024"}html.honeywell-dark-theme i.icon.book:before{content:"\F02D"}html.honeywell-dark-theme i.icon.gift:before{content:"\F06B"}html.honeywell-dark-theme i.icon.leaf:before{content:"\F06C"}html.honeywell-dark-theme i.icon.fire:before{content:"\F06D"}html.honeywell-dark-theme i.icon.plane:before{content:"\F072"}html.honeywell-dark-theme i.icon.magnet:before{content:"\F076"}html.honeywell-dark-theme i.icon.lemon:before{content:"\F094"}html.honeywell-dark-theme i.icon.world:before{content:"\F0AC"}html.honeywell-dark-theme i.icon.travel:before{content:"\F0B1"}html.honeywell-dark-theme i.icon.shipping:before{content:"\F0D1"}html.honeywell-dark-theme i.icon.money:before{content:"\F0D6"}html.honeywell-dark-theme i.icon.legal:before{content:"\F0E3"}html.honeywell-dark-theme i.icon.lightning:before{content:"\F0E7"}html.honeywell-dark-theme i.icon.umbrella:before{content:"\F0E9"}html.honeywell-dark-theme i.icon.treatment:before{content:"\F0F1"}html.honeywell-dark-theme i.icon.suitcase:before{content:"\F0F2"}html.honeywell-dark-theme i.icon.bar:before{content:"\F0FC"}html.honeywell-dark-theme i.icon.flag.outline:before{content:"\F11D"}html.honeywell-dark-theme i.icon.flag.checkered:before{content:"\F11E"}html.honeywell-dark-theme i.icon.puzzle:before{content:"\F12E"}html.honeywell-dark-theme i.icon.fire.extinguisher:before{content:"\F134"}html.honeywell-dark-theme i.icon.rocket:before{content:"\F135"}html.honeywell-dark-theme i.icon.anchor:before{content:"\F13D"}html.honeywell-dark-theme i.icon.bullseye:before{content:"\F140"}html.honeywell-dark-theme i.icon.sun:before{content:"\F185"}html.honeywell-dark-theme i.icon.moon:before{content:"\F186"}html.honeywell-dark-theme i.icon.fax:before{content:"\F1AC"}html.honeywell-dark-theme i.icon.life.ring:before{content:"\F1CD"}html.honeywell-dark-theme i.icon.bomb:before{content:"\F1E2"}html.honeywell-dark-theme i.icon.soccer:before{content:"\F1E3"}html.honeywell-dark-theme i.icon.calculator:before{content:"\F1EC"}html.honeywell-dark-theme i.icon.diamond:before{content:"\F219"}html.honeywell-dark-theme i.icon.sticky.note:before{content:"\F249"}html.honeywell-dark-theme i.icon.sticky.note.outline:before{content:"\F24A"}html.honeywell-dark-theme i.icon.law:before{content:"\F24E"}html.honeywell-dark-theme i.icon.hand.peace:before{content:"\F25B"}html.honeywell-dark-theme i.icon.hand.rock:before{content:"\F255"}html.honeywell-dark-theme i.icon.hand.paper:before{content:"\F256"}html.honeywell-dark-theme i.icon.hand.scissors:before{content:"\F257"}html.honeywell-dark-theme i.icon.hand.lizard:before{content:"\F258"}html.honeywell-dark-theme i.icon.hand.spock:before{content:"\F259"}html.honeywell-dark-theme i.icon.tv:before{content:"\F26C"}html.honeywell-dark-theme i.icon.thermometer.full:before{content:"\F2C7"}html.honeywell-dark-theme i.icon.thermometer.three.quarters:before{content:"\F2C8"}html.honeywell-dark-theme i.icon.thermometer.half:before{content:"\F2C9"}html.honeywell-dark-theme i.icon.thermometer.quarter:before{content:"\F2CA"}html.honeywell-dark-theme i.icon.thermometer.empty:before{content:"\F2CB"}html.honeywell-dark-theme i.icon.shower:before{content:"\F2CC"}html.honeywell-dark-theme i.icon.bathtub:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.snowflake:before{content:"\F2DC"}html.honeywell-dark-theme i.icon.crosshairs:before{content:"\F05B"}html.honeywell-dark-theme i.icon.asterisk:before{content:"\F069"}html.honeywell-dark-theme i.icon.square.outline:before{content:"\F096"}html.honeywell-dark-theme i.icon.certificate:before{content:"\F0A3"}html.honeywell-dark-theme i.icon.square:before{content:"\F0C8"}html.honeywell-dark-theme i.icon.quote.left:before{content:"\F10D"}html.honeywell-dark-theme i.icon.quote.right:before{content:"\F10E"}html.honeywell-dark-theme i.icon.spinner:before{content:"\F110"}html.honeywell-dark-theme i.icon.circle:before{content:"\F111"}html.honeywell-dark-theme i.icon.ellipsis.horizontal:before{content:"\F141"}html.honeywell-dark-theme i.icon.ellipsis.vertical:before{content:"\F142"}html.honeywell-dark-theme i.icon.cube:before{content:"\F1B2"}html.honeywell-dark-theme i.icon.cubes:before{content:"\F1B3"}html.honeywell-dark-theme i.icon.circle.notched:before{content:"\F1CE"}html.honeywell-dark-theme i.icon.circle.thin:before{content:"\F1DB"}html.honeywell-dark-theme i.icon.checkmark:before{content:"\F00C"}html.honeywell-dark-theme i.icon.remove:before{content:"\F00D"}html.honeywell-dark-theme i.icon.checkmark.box:before{content:"\F046"}html.honeywell-dark-theme i.icon.move:before{content:"\F047"}html.honeywell-dark-theme i.icon.add.circle:before{content:"\F055"}html.honeywell-dark-theme i.icon.minus.circle:before{content:"\F056"}html.honeywell-dark-theme i.icon.remove.circle:before{content:"\F057"}html.honeywell-dark-theme i.icon.check.circle:before{content:"\F058"}html.honeywell-dark-theme i.icon.remove.circle.outline:before{content:"\F05C"}html.honeywell-dark-theme i.icon.check.circle.outline:before{content:"\F05D"}html.honeywell-dark-theme i.icon.plus:before{content:"\F067"}html.honeywell-dark-theme i.icon.minus:before{content:"\F068"}html.honeywell-dark-theme i.icon.add.square:before{content:"\F0FE"}html.honeywell-dark-theme i.icon.radio:before{content:"\F10C"}html.honeywell-dark-theme i.icon.minus.square:before{content:"\F146"}html.honeywell-dark-theme i.icon.minus.square.outline:before{content:"\F147"}html.honeywell-dark-theme i.icon.check.square:before{content:"\F14A"}html.honeywell-dark-theme i.icon.selected.radio:before{content:"\F192"}html.honeywell-dark-theme i.icon.plus.square.outline:before{content:"\F196"}html.honeywell-dark-theme i.icon.toggle.off:before{content:"\F204"}html.honeywell-dark-theme i.icon.toggle.on:before{content:"\F205"}html.honeywell-dark-theme i.icon.film:before{content:"\F008"}html.honeywell-dark-theme i.icon.sound:before{content:"\F025"}html.honeywell-dark-theme i.icon.photo:before{content:"\F030"}html.honeywell-dark-theme i.icon.bar.chart:before{content:"\F080"}html.honeywell-dark-theme i.icon.camera.retro:before{content:"\F083"}html.honeywell-dark-theme i.icon.newspaper:before{content:"\F1EA"}html.honeywell-dark-theme i.icon.area.chart:before{content:"\F1FE"}html.honeywell-dark-theme i.icon.pie.chart:before{content:"\F200"}html.honeywell-dark-theme i.icon.line.chart:before{content:"\F201"}html.honeywell-dark-theme i.icon.arrow.circle.outline.down:before{content:"\F01A"}html.honeywell-dark-theme i.icon.arrow.circle.outline.up:before{content:"\F01B"}html.honeywell-dark-theme i.icon.chevron.left:before{content:"\F053"}html.honeywell-dark-theme i.icon.chevron.right:before{content:"\F054"}html.honeywell-dark-theme i.icon.arrow.left:before{content:"\F060"}html.honeywell-dark-theme i.icon.arrow.right:before{content:"\F061"}html.honeywell-dark-theme i.icon.arrow.up:before{content:"\F062"}html.honeywell-dark-theme i.icon.arrow.down:before{content:"\F063"}html.honeywell-dark-theme i.icon.chevron.up:before{content:"\E90E"}html.honeywell-dark-theme i.icon.chevron.down:before{content:"\E90B"}html.honeywell-dark-theme i.icon.pointing.right:before{content:"\F0A4"}html.honeywell-dark-theme i.icon.pointing.left:before{content:"\F0A5"}html.honeywell-dark-theme i.icon.pointing.up:before{content:"\F0A6"}html.honeywell-dark-theme i.icon.pointing.down:before{content:"\F0A7"}html.honeywell-dark-theme i.icon.arrow.circle.left:before{content:"\F0A8"}html.honeywell-dark-theme i.icon.arrow.circle.right:before{content:"\F0A9"}html.honeywell-dark-theme i.icon.arrow.circle.up:before{content:"\F0AA"}html.honeywell-dark-theme i.icon.arrow.circle.down:before{content:"\F0AB"}html.honeywell-dark-theme i.icon.caret.down:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.caret.up:before{content:"\F0D8"}html.honeywell-dark-theme i.icon.caret.left:before{content:"\F0D9"}html.honeywell-dark-theme i.icon.caret.right:before{content:"\F0DA"}html.honeywell-dark-theme i.icon.angle.double.left:before{content:"\F100"}html.honeywell-dark-theme i.icon.angle.double.right:before{content:"\F101"}html.honeywell-dark-theme i.icon.angle.double.up:before{content:"\F102"}html.honeywell-dark-theme i.icon.angle.double.down:before{content:"\F103"}html.honeywell-dark-theme i.icon.angle.left:before{content:"\F104"}html.honeywell-dark-theme i.icon.angle.right:before{content:"\F105"}html.honeywell-dark-theme i.icon.angle.up:before{content:"\F106"}html.honeywell-dark-theme i.icon.angle.down:before{content:"\F107"}html.honeywell-dark-theme i.icon.chevron.circle.left:before{content:"\F137"}html.honeywell-dark-theme i.icon.chevron.circle.right:before{content:"\F138"}html.honeywell-dark-theme i.icon.chevron.circle.up:before{content:"\F139"}html.honeywell-dark-theme i.icon.chevron.circle.down:before{content:"\F13A"}html.honeywell-dark-theme i.icon.toggle.down:before{content:"\F150"}html.honeywell-dark-theme i.icon.toggle.up:before{content:"\F151"}html.honeywell-dark-theme i.icon.toggle.right:before{content:"\F152"}html.honeywell-dark-theme i.icon.long.arrow.down:before{content:"\F175"}html.honeywell-dark-theme i.icon.long.arrow.up:before{content:"\F176"}html.honeywell-dark-theme i.icon.long.arrow.left:before{content:"\F177"}html.honeywell-dark-theme i.icon.long.arrow.right:before{content:"\F178"}html.honeywell-dark-theme i.icon.arrow.circle.outline.right:before{content:"\F18E"}html.honeywell-dark-theme i.icon.arrow.circle.outline.left:before{content:"\F190"}html.honeywell-dark-theme i.icon.toggle.left:before{content:"\F191"}html.honeywell-dark-theme i.icon.tablet:before{content:"\F10A"}html.honeywell-dark-theme i.icon.mobile:before{content:"\F10B"}html.honeywell-dark-theme i.icon.battery.full:before{content:"\F240"}html.honeywell-dark-theme i.icon.battery.high:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.medium:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.low:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.empty:before{content:"\F244"}html.honeywell-dark-theme i.icon.power:before{content:"\F011"}html.honeywell-dark-theme i.icon.trash.outline:before{content:"\F014"}html.honeywell-dark-theme i.icon.disk.outline:before{content:"\F0A0"}html.honeywell-dark-theme i.icon.desktop:before{content:"\F108"}html.honeywell-dark-theme i.icon.laptop:before{content:"\F109"}html.honeywell-dark-theme i.icon.game:before{content:"\F11B"}html.honeywell-dark-theme i.icon.keyboard:before{content:"\F11C"}html.honeywell-dark-theme i.icon.plug:before{content:"\F1E6"}html.honeywell-dark-theme i.icon.trash:before{content:"\F1F8"}html.honeywell-dark-theme i.icon.file.outline:before{content:"\F016"}html.honeywell-dark-theme i.icon.folder:before{content:"\F07B"}html.honeywell-dark-theme i.icon.folder.open:before{content:"\F07C"}html.honeywell-dark-theme i.icon.file.text.outline:before{content:"\F0F6"}html.honeywell-dark-theme i.icon.folder.outline:before{content:"\F114"}html.honeywell-dark-theme i.icon.folder.open.outline:before{content:"\F115"}html.honeywell-dark-theme i.icon.level.up:before{content:"\F148"}html.honeywell-dark-theme i.icon.level.down:before{content:"\F149"}html.honeywell-dark-theme i.icon.file:before{content:"\F15B"}html.honeywell-dark-theme i.icon.file.text:before{content:"\F15C"}html.honeywell-dark-theme i.icon.file.pdf.outline:before{content:"\F1C1"}html.honeywell-dark-theme i.icon.file.word.outline:before{content:"\F1C2"}html.honeywell-dark-theme i.icon.file.excel.outline:before{content:"\F1C3"}html.honeywell-dark-theme i.icon.file.powerpoint.outline:before{content:"\F1C4"}html.honeywell-dark-theme i.icon.file.image.outline:before{content:"\F1C5"}html.honeywell-dark-theme i.icon.file.archive.outline:before{content:"\F1C6"}html.honeywell-dark-theme i.icon.file.audio.outline:before{content:"\F1C7"}html.honeywell-dark-theme i.icon.file.video.outline:before{content:"\F1C8"}html.honeywell-dark-theme i.icon.file.code.outline:before{content:"\F1C9"}html.honeywell-dark-theme i.icon.qrcode:before{content:"\F029"}html.honeywell-dark-theme i.icon.barcode:before{content:"\F02A"}html.honeywell-dark-theme i.icon.rss:before{content:"\F09E"}html.honeywell-dark-theme i.icon.fork:before{content:"\F126"}html.honeywell-dark-theme i.icon.html5:before{content:"\F13B"}html.honeywell-dark-theme i.icon.css3:before{content:"\F13C"}html.honeywell-dark-theme i.icon.rss.square:before{content:"\F143"}html.honeywell-dark-theme i.icon.openid:before{content:"\F19B"}html.honeywell-dark-theme i.icon.database:before{content:"\F1C0"}html.honeywell-dark-theme i.icon.wifi:before{content:"\F1EB"}html.honeywell-dark-theme i.icon.server:before{content:"\F233"}html.honeywell-dark-theme i.icon.usb:before{content:"\F287"}html.honeywell-dark-theme i.icon.bluetooth:before{content:"\F293"}html.honeywell-dark-theme i.icon.bluetooth.alternative:before{content:"\F294"}html.honeywell-dark-theme i.icon.microchip:before{content:"\F2DB"}html.honeywell-dark-theme i.icon.heart:before{content:"\F004"}html.honeywell-dark-theme i.icon.star:before{content:"\F005"}html.honeywell-dark-theme i.icon.empty.star:before{content:"\F006"}html.honeywell-dark-theme i.icon.thumbs.outline.up:before{content:"\F087"}html.honeywell-dark-theme i.icon.thumbs.outline.down:before{content:"\F088"}html.honeywell-dark-theme i.icon.star.half:before{content:"\F089"}html.honeywell-dark-theme i.icon.empty.heart:before{content:"\F08A"}html.honeywell-dark-theme i.icon.smile:before{content:"\F118"}html.honeywell-dark-theme i.icon.frown:before{content:"\F119"}html.honeywell-dark-theme i.icon.meh:before{content:"\F11A"}html.honeywell-dark-theme i.icon.star.half.empty:before{content:"\F123"}html.honeywell-dark-theme i.icon.thumbs.up:before{content:"\F164"}html.honeywell-dark-theme i.icon.thumbs.down:before{content:"\F165"}html.honeywell-dark-theme i.icon.music:before{content:"\F001"}html.honeywell-dark-theme i.icon.video.play.outline:before{content:"\F01D"}html.honeywell-dark-theme i.icon.volume.off:before{content:"\F026"}html.honeywell-dark-theme i.icon.volume.down:before{content:"\F027"}html.honeywell-dark-theme i.icon.volume.up:before{content:"\F028"}html.honeywell-dark-theme i.icon.record:before{content:"\F03D"}html.honeywell-dark-theme i.icon.step.backward:before{content:"\F048"}html.honeywell-dark-theme i.icon.fast.backward:before{content:"\F049"}html.honeywell-dark-theme i.icon.backward:before{content:"\F04A"}html.honeywell-dark-theme i.icon.play:before{content:"\F04B"}html.honeywell-dark-theme i.icon.pause:before{content:"\F04C"}html.honeywell-dark-theme i.icon.stop:before{content:"\F04D"}html.honeywell-dark-theme i.icon.forward:before{content:"\F04E"}html.honeywell-dark-theme i.icon.fast.forward:before{content:"\F050"}html.honeywell-dark-theme i.icon.step.forward:before{content:"\F051"}html.honeywell-dark-theme i.icon.eject:before{content:"\F052"}html.honeywell-dark-theme i.icon.unmute:before{content:"\F130"}html.honeywell-dark-theme i.icon.mute:before{content:"\F131"}html.honeywell-dark-theme i.icon.video.play:before{content:"\F144"}html.honeywell-dark-theme i.icon.closed.captioning:before{content:"\F20A"}html.honeywell-dark-theme i.icon.pause.circle:before{content:"\F28B"}html.honeywell-dark-theme i.icon.pause.circle.outline:before{content:"\F28C"}html.honeywell-dark-theme i.icon.stop.circle:before{content:"\F28D"}html.honeywell-dark-theme i.icon.stop.circle.outline:before{content:"\F28E"}html.honeywell-dark-theme i.icon.marker:before{content:"\F041"}html.honeywell-dark-theme i.icon.coffee:before{content:"\F0F4"}html.honeywell-dark-theme i.icon.food:before{content:"\F0F5"}html.honeywell-dark-theme i.icon.building.outline:before{content:"\F0F7"}html.honeywell-dark-theme i.icon.hospital:before{content:"\F0F8"}html.honeywell-dark-theme i.icon.emergency:before{content:"\F0F9"}html.honeywell-dark-theme i.icon.first.aid:before{content:"\F0FA"}html.honeywell-dark-theme i.icon.military:before{content:"\F0FB"}html.honeywell-dark-theme i.icon.h:before{content:"\F0FD"}html.honeywell-dark-theme i.icon.location.arrow:before{content:"\F124"}html.honeywell-dark-theme i.icon.compass:before{content:"\F14E"}html.honeywell-dark-theme i.icon.space.shuttle:before{content:"\F197"}html.honeywell-dark-theme i.icon.university:before{content:"\F19C"}html.honeywell-dark-theme i.icon.building:before{content:"\F1AD"}html.honeywell-dark-theme i.icon.paw:before{content:"\F1B0"}html.honeywell-dark-theme i.icon.spoon:before{content:"\F1B1"}html.honeywell-dark-theme i.icon.car:before{content:"\F1B9"}html.honeywell-dark-theme i.icon.taxi:before{content:"\F1BA"}html.honeywell-dark-theme i.icon.tree:before{content:"\F1BB"}html.honeywell-dark-theme i.icon.bicycle:before{content:"\F206"}html.honeywell-dark-theme i.icon.bus:before{content:"\F207"}html.honeywell-dark-theme i.icon.ship:before{content:"\F21A"}html.honeywell-dark-theme i.icon.motorcycle:before{content:"\F21C"}html.honeywell-dark-theme i.icon.street.view:before{content:"\F21D"}html.honeywell-dark-theme i.icon.hotel:before{content:"\F236"}html.honeywell-dark-theme i.icon.train:before{content:"\F238"}html.honeywell-dark-theme i.icon.subway:before{content:"\F239"}html.honeywell-dark-theme i.icon.map.pin:before{content:"\F276"}html.honeywell-dark-theme i.icon.map.signs:before{content:"\F277"}html.honeywell-dark-theme i.icon.map.outline:before{content:"\F278"}html.honeywell-dark-theme i.icon.map:before{content:"\F279"}html.honeywell-dark-theme i.icon.table:before{content:"\F0CE"}html.honeywell-dark-theme i.icon.columns:before{content:"\F0DB"}html.honeywell-dark-theme i.icon.sort:before{content:"\F0DC"}html.honeywell-dark-theme i.icon.sort.descending:before{content:"\F0DD"}html.honeywell-dark-theme i.icon.sort.ascending:before{content:"\F0DE"}html.honeywell-dark-theme i.icon.sort.alphabet.ascending:before{content:"\F15D"}html.honeywell-dark-theme i.icon.sort.alphabet.descending:before{content:"\F15E"}html.honeywell-dark-theme i.icon.sort.content.ascending:before{content:"\F160"}html.honeywell-dark-theme i.icon.sort.content.descending:before{content:"\F161"}html.honeywell-dark-theme i.icon.sort.numeric.ascending:before{content:"\F162"}html.honeywell-dark-theme i.icon.sort.numeric.descending:before{content:"\F163"}html.honeywell-dark-theme i.icon.font:before{content:"\F031"}html.honeywell-dark-theme i.icon.bold:before{content:"\F032"}html.honeywell-dark-theme i.icon.italic:before{content:"\F033"}html.honeywell-dark-theme i.icon.text.height:before{content:"\F034"}html.honeywell-dark-theme i.icon.text.width:before{content:"\F035"}html.honeywell-dark-theme i.icon.align.left:before{content:"\F036"}html.honeywell-dark-theme i.icon.align.center:before{content:"\F037"}html.honeywell-dark-theme i.icon.align.right:before{content:"\F038"}html.honeywell-dark-theme i.icon.align.justify:before{content:"\F039"}html.honeywell-dark-theme i.icon.list:before{content:"\F03A"}html.honeywell-dark-theme i.icon.outdent:before{content:"\F03B"}html.honeywell-dark-theme i.icon.indent:before{content:"\F03C"}html.honeywell-dark-theme i.icon.linkify:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.cut:before{content:"\F0C4"}html.honeywell-dark-theme i.icon.copy:before{content:"\F0C5"}html.honeywell-dark-theme i.icon.attach:before{content:"\F0C6"}html.honeywell-dark-theme i.icon.save:before{content:"\F0C7"}html.honeywell-dark-theme i.icon.content:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.unordered.list:before{content:"\F0CA"}html.honeywell-dark-theme i.icon.ordered.list:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.strikethrough:before{content:"\F0CC"}html.honeywell-dark-theme i.icon.underline:before{content:"\F0CD"}html.honeywell-dark-theme i.icon.paste:before{content:"\F0EA"}html.honeywell-dark-theme i.icon.unlinkify:before{content:"\F127"}html.honeywell-dark-theme i.icon.superscript:before{content:"\F12B"}html.honeywell-dark-theme i.icon.subscript:before{content:"\F12C"}html.honeywell-dark-theme i.icon.header:before{content:"\F1DC"}html.honeywell-dark-theme i.icon.paragraph:before{content:"\F1DD"}html.honeywell-dark-theme i.icon.text.cursor:before{content:"\F246"}html.honeywell-dark-theme i.icon.euro:before{content:"\F153"}html.honeywell-dark-theme i.icon.pound:before{content:"\F154"}html.honeywell-dark-theme i.icon.dollar:before{content:"\F155"}html.honeywell-dark-theme i.icon.rupee:before{content:"\F156"}html.honeywell-dark-theme i.icon.yen:before{content:"\F157"}html.honeywell-dark-theme i.icon.ruble:before{content:"\F158"}html.honeywell-dark-theme i.icon.won:before{content:"\F159"}html.honeywell-dark-theme i.icon.bitcoin:before{content:"\F15A"}html.honeywell-dark-theme i.icon.lira:before{content:"\F195"}html.honeywell-dark-theme i.icon.shekel:before{content:"\F20B"}html.honeywell-dark-theme i.icon.paypal:before{content:"\F1ED"}html.honeywell-dark-theme i.icon.google.wallet:before{content:"\F1EE"}html.honeywell-dark-theme i.icon.visa:before{content:"\F1F0"}html.honeywell-dark-theme i.icon.mastercard:before{content:"\F1F1"}html.honeywell-dark-theme i.icon.discover:before{content:"\F1F2"}html.honeywell-dark-theme i.icon.american.express:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.paypal.card:before{content:"\F1F4"}html.honeywell-dark-theme i.icon.stripe:before{content:"\F1F5"}html.honeywell-dark-theme i.icon.japan.credit.bureau:before{content:"\F24B"}html.honeywell-dark-theme i.icon.diners.club:before{content:"\F24C"}html.honeywell-dark-theme i.icon.credit.card.alternative:before{content:"\F283"}html.honeywell-dark-theme i.icon.twitter.square:before{content:"\F081"}html.honeywell-dark-theme i.icon.facebook.square:before{content:"\F082"}html.honeywell-dark-theme i.icon.linkedin.square:before{content:"\F08C"}html.honeywell-dark-theme i.icon.github.square:before{content:"\F092"}html.honeywell-dark-theme i.icon.twitter:before{content:"\F099"}html.honeywell-dark-theme i.icon.facebook.f:before{content:"\F09A"}html.honeywell-dark-theme i.icon.github:before{content:"\F09B"}html.honeywell-dark-theme i.icon.pinterest:before{content:"\F0D2"}html.honeywell-dark-theme i.icon.pinterest.square:before{content:"\F0D3"}html.honeywell-dark-theme i.icon.google.plus.square:before{content:"\F0D4"}html.honeywell-dark-theme i.icon.google.plus:before{content:"\F0D5"}html.honeywell-dark-theme i.icon.linkedin:before{content:"\F0E1"}html.honeywell-dark-theme i.icon.github.alternate:before{content:"\F113"}html.honeywell-dark-theme i.icon.maxcdn:before{content:"\F136"}html.honeywell-dark-theme i.icon.youtube.square:before{content:"\F166"}html.honeywell-dark-theme i.icon.youtube:before{content:"\F167"}html.honeywell-dark-theme i.icon.xing:before{content:"\F168"}html.honeywell-dark-theme i.icon.xing.square:before{content:"\F169"}html.honeywell-dark-theme i.icon.youtube.play:before{content:"\F16A"}html.honeywell-dark-theme i.icon.dropbox:before{content:"\F16B"}html.honeywell-dark-theme i.icon.stack.overflow:before{content:"\F16C"}html.honeywell-dark-theme i.icon.instagram:before{content:"\F16D"}html.honeywell-dark-theme i.icon.flickr:before{content:"\F16E"}html.honeywell-dark-theme i.icon.adn:before{content:"\F170"}html.honeywell-dark-theme i.icon.bitbucket:before{content:"\F171"}html.honeywell-dark-theme i.icon.bitbucket.square:before{content:"\F172"}html.honeywell-dark-theme i.icon.tumblr:before{content:"\F173"}html.honeywell-dark-theme i.icon.tumblr.square:before{content:"\F174"}html.honeywell-dark-theme i.icon.apple:before{content:"\F179"}html.honeywell-dark-theme i.icon.windows:before{content:"\F17A"}html.honeywell-dark-theme i.icon.android:before{content:"\F17B"}html.honeywell-dark-theme i.icon.linux:before{content:"\F17C"}html.honeywell-dark-theme i.icon.dribble:before{content:"\F17D"}html.honeywell-dark-theme i.icon.skype:before{content:"\F17E"}html.honeywell-dark-theme i.icon.foursquare:before{content:"\F180"}html.honeywell-dark-theme i.icon.trello:before{content:"\F181"}html.honeywell-dark-theme i.icon.gittip:before{content:"\F184"}html.honeywell-dark-theme i.icon.vk:before{content:"\F189"}html.honeywell-dark-theme i.icon.weibo:before{content:"\F18A"}html.honeywell-dark-theme i.icon.renren:before{content:"\F18B"}html.honeywell-dark-theme i.icon.pagelines:before{content:"\F18C"}html.honeywell-dark-theme i.icon.stack.exchange:before{content:"\F18D"}html.honeywell-dark-theme i.icon.vimeo.square:before{content:"\F194"}html.honeywell-dark-theme i.icon.slack:before{content:"\F198"}html.honeywell-dark-theme i.icon.wordpress:before{content:"\F19A"}html.honeywell-dark-theme i.icon.yahoo:before{content:"\F19E"}html.honeywell-dark-theme i.icon.google:before{content:"\F1A0"}html.honeywell-dark-theme i.icon.reddit:before{content:"\F1A1"}html.honeywell-dark-theme i.icon.reddit.square:before{content:"\F1A2"}html.honeywell-dark-theme i.icon.stumbleupon.circle:before{content:"\F1A3"}html.honeywell-dark-theme i.icon.stumbleupon:before{content:"\F1A4"}html.honeywell-dark-theme i.icon.delicious:before{content:"\F1A5"}html.honeywell-dark-theme i.icon.digg:before{content:"\F1A6"}html.honeywell-dark-theme i.icon.pied.piper:before{content:"\F1A7"}html.honeywell-dark-theme i.icon.pied.piper.alternate:before{content:"\F1A8"}html.honeywell-dark-theme i.icon.drupal:before{content:"\F1A9"}html.honeywell-dark-theme i.icon.joomla:before{content:"\F1AA"}html.honeywell-dark-theme i.icon.behance:before{content:"\F1B4"}html.honeywell-dark-theme i.icon.behance.square:before{content:"\F1B5"}html.honeywell-dark-theme i.icon.steam:before{content:"\F1B6"}html.honeywell-dark-theme i.icon.steam.square:before{content:"\F1B7"}html.honeywell-dark-theme i.icon.spotify:before{content:"\F1BC"}html.honeywell-dark-theme i.icon.deviantart:before{content:"\F1BD"}html.honeywell-dark-theme i.icon.soundcloud:before{content:"\F1BE"}html.honeywell-dark-theme i.icon.vine:before{content:"\F1CA"}html.honeywell-dark-theme i.icon.codepen:before{content:"\F1CB"}html.honeywell-dark-theme i.icon.jsfiddle:before{content:"\F1CC"}html.honeywell-dark-theme i.icon.rebel:before{content:"\F1D0"}html.honeywell-dark-theme i.icon.empire:before{content:"\F1D1"}html.honeywell-dark-theme i.icon.git.square:before{content:"\F1D2"}html.honeywell-dark-theme i.icon.git:before{content:"\F1D3"}html.honeywell-dark-theme i.icon.hacker.news:before{content:"\F1D4"}html.honeywell-dark-theme i.icon.tencent.weibo:before{content:"\F1D5"}html.honeywell-dark-theme i.icon.qq:before{content:"\F1D6"}html.honeywell-dark-theme i.icon.wechat:before{content:"\F1D7"}html.honeywell-dark-theme i.icon.slideshare:before{content:"\F1E7"}html.honeywell-dark-theme i.icon.twitch:before{content:"\F1E8"}html.honeywell-dark-theme i.icon.yelp:before{content:"\F1E9"}html.honeywell-dark-theme i.icon.lastfm:before{content:"\F202"}html.honeywell-dark-theme i.icon.lastfm.square:before{content:"\F203"}html.honeywell-dark-theme i.icon.ioxhost:before{content:"\F208"}html.honeywell-dark-theme i.icon.angellist:before{content:"\F209"}html.honeywell-dark-theme i.icon.meanpath:before{content:"\F20C"}html.honeywell-dark-theme i.icon.buysellads:before{content:"\F20D"}html.honeywell-dark-theme i.icon.connectdevelop:before{content:"\F20E"}html.honeywell-dark-theme i.icon.dashcube:before{content:"\F210"}html.honeywell-dark-theme i.icon.forumbee:before{content:"\F211"}html.honeywell-dark-theme i.icon.leanpub:before{content:"\F212"}html.honeywell-dark-theme i.icon.sellsy:before{content:"\F213"}html.honeywell-dark-theme i.icon.shirtsinbulk:before{content:"\F214"}html.honeywell-dark-theme i.icon.simplybuilt:before{content:"\F215"}html.honeywell-dark-theme i.icon.skyatlas:before{content:"\F216"}html.honeywell-dark-theme i.icon.facebook:before{content:"\F230"}html.honeywell-dark-theme i.icon.pinterest:before{content:"\F231"}html.honeywell-dark-theme i.icon.whatsapp:before{content:"\F232"}html.honeywell-dark-theme i.icon.viacoin:before{content:"\F237"}html.honeywell-dark-theme i.icon.medium:before{content:"\F23A"}html.honeywell-dark-theme i.icon.y.combinator:before{content:"\F23B"}html.honeywell-dark-theme i.icon.optinmonster:before{content:"\F23C"}html.honeywell-dark-theme i.icon.opencart:before{content:"\F23D"}html.honeywell-dark-theme i.icon.expeditedssl:before{content:"\F23E"}html.honeywell-dark-theme i.icon.gg:before{content:"\F260"}html.honeywell-dark-theme i.icon.gg.circle:before{content:"\F261"}html.honeywell-dark-theme i.icon.tripadvisor:before{content:"\F262"}html.honeywell-dark-theme i.icon.odnoklassniki:before{content:"\F263"}html.honeywell-dark-theme i.icon.odnoklassniki.square:before{content:"\F264"}html.honeywell-dark-theme i.icon.pocket:before{content:"\F265"}html.honeywell-dark-theme i.icon.wikipedia:before{content:"\F266"}html.honeywell-dark-theme i.icon.safari:before{content:"\F267"}html.honeywell-dark-theme i.icon.chrome:before{content:"\F268"}html.honeywell-dark-theme i.icon.firefox:before{content:"\F269"}html.honeywell-dark-theme i.icon.opera:before{content:"\F26A"}html.honeywell-dark-theme i.icon.internet.explorer:before{content:"\F26B"}html.honeywell-dark-theme i.icon.contao:before{content:"\F26D"}html.honeywell-dark-theme i.icon.\35 00px:before{content:"\F26E"}html.honeywell-dark-theme i.icon.amazon:before{content:"\F270"}html.honeywell-dark-theme i.icon.houzz:before{content:"\F27C"}html.honeywell-dark-theme i.icon.vimeo:before{content:"\F27D"}html.honeywell-dark-theme i.icon.black.tie:before{content:"\F27E"}html.honeywell-dark-theme i.icon.fonticons:before{content:"\F280"}html.honeywell-dark-theme i.icon.reddit.alien:before{content:"\F281"}html.honeywell-dark-theme i.icon.microsoft.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.codiepie:before{content:"\F284"}html.honeywell-dark-theme i.icon.modx:before{content:"\F285"}html.honeywell-dark-theme i.icon.fort.awesome:before{content:"\F286"}html.honeywell-dark-theme i.icon.product.hunt:before{content:"\F288"}html.honeywell-dark-theme i.icon.mixcloud:before{content:"\F289"}html.honeywell-dark-theme i.icon.scribd:before{content:"\F28A"}html.honeywell-dark-theme i.icon.gitlab:before{content:"\F296"}html.honeywell-dark-theme i.icon.wpbeginner:before{content:"\F297"}html.honeywell-dark-theme i.icon.wpforms:before{content:"\F298"}html.honeywell-dark-theme i.icon.envira.gallery:before{content:"\F299"}html.honeywell-dark-theme i.icon.glide:before{content:"\F2A5"}html.honeywell-dark-theme i.icon.glide.g:before{content:"\F2A6"}html.honeywell-dark-theme i.icon.viadeo:before{content:"\F2A9"}html.honeywell-dark-theme i.icon.viadeo.square:before{content:"\F2AA"}html.honeywell-dark-theme i.icon.snapchat:before{content:"\F2AB"}html.honeywell-dark-theme i.icon.snapchat.ghost:before{content:"\F2AC"}html.honeywell-dark-theme i.icon.snapchat.square:before{content:"\F2AD"}html.honeywell-dark-theme i.icon.pied.piper.hat:before{content:"\F2AE"}html.honeywell-dark-theme i.icon.first.order:before{content:"\F2B0"}html.honeywell-dark-theme i.icon.yoast:before{content:"\F2B1"}html.honeywell-dark-theme i.icon.themeisle:before{content:"\F2B2"}html.honeywell-dark-theme i.icon.google.plus.circle:before{content:"\F2B3"}html.honeywell-dark-theme i.icon.font.awesome:before{content:"\F2B4"}html.honeywell-dark-theme i.icon.linode:before{content:"\F2B8"}html.honeywell-dark-theme i.icon.quora:before{content:"\F2C4"}html.honeywell-dark-theme i.icon.free.code.camp:before{content:"\F2C5"}html.honeywell-dark-theme i.icon.telegram:before{content:"\F2C6"}html.honeywell-dark-theme i.icon.bandcamp:before{content:"\F2D5"}html.honeywell-dark-theme i.icon.grav:before{content:"\F2D6"}html.honeywell-dark-theme i.icon.etsy:before{content:"\F2D7"}html.honeywell-dark-theme i.icon.imdb:before{content:"\F2D8"}html.honeywell-dark-theme i.icon.ravelry:before{content:"\F2D9"}html.honeywell-dark-theme i.icon.eercast:before{content:"\F2DA"}html.honeywell-dark-theme i.icon.superpowers:before{content:"\F2DD"}html.honeywell-dark-theme i.icon.wpexplorer:before{content:"\F2DE"}html.honeywell-dark-theme i.icon.meetup:before{content:"\F2E0"}html.honeywell-dark-theme i.icon.like:before{content:"\F004"}html.honeywell-dark-theme i.icon.favorite:before{content:"\F005"}html.honeywell-dark-theme i.icon.video:before{content:"\F008"}html.honeywell-dark-theme i.icon.check:before{content:"\F00C"}html.honeywell-dark-theme i.icon.close:before{content:"\F00D"}html.honeywell-dark-theme i.icon.cancel:before{content:"\F00D"}html.honeywell-dark-theme i.icon.delete:before{content:"\F00D"}html.honeywell-dark-theme i.icon.x:before{content:"\F00D"}html.honeywell-dark-theme i.icon.zoom.in:before{content:"\F00E"}html.honeywell-dark-theme i.icon.magnify:before{content:"\F00E"}html.honeywell-dark-theme i.icon.shutdown:before{content:"\F011"}html.honeywell-dark-theme i.icon.clock:before{content:"\F017"}html.honeywell-dark-theme i.icon.time:before{content:"\F017"}html.honeywell-dark-theme i.icon.play.circle.outline:before{content:"\F01D"}html.honeywell-dark-theme i.icon.headphone:before{content:"\F025"}html.honeywell-dark-theme i.icon.camera:before{content:"\F030"}html.honeywell-dark-theme i.icon.video.camera:before{content:"\F03D"}html.honeywell-dark-theme i.icon.picture:before{content:"\F03E"}html.honeywell-dark-theme i.icon.pencil:before{content:"\F040"}html.honeywell-dark-theme i.icon.compose:before{content:"\F040"}html.honeywell-dark-theme i.icon.point:before{content:"\F041"}html.honeywell-dark-theme i.icon.tint:before{content:"\F043"}html.honeywell-dark-theme i.icon.signup:before{content:"\F044"}html.honeywell-dark-theme i.icon.plus.circle:before{content:"\F055"}html.honeywell-dark-theme i.icon.question.circle:before{content:"\F059"}html.honeywell-dark-theme i.icon.dont:before{content:"\F05E"}html.honeywell-dark-theme i.icon.minimize:before{content:"\F066"}html.honeywell-dark-theme i.icon.add:before{content:"\F067"}html.honeywell-dark-theme i.icon.exclamation.circle:before{content:"\F06A"}html.honeywell-dark-theme i.icon.attention:before{content:"\F06A"}html.honeywell-dark-theme i.icon.eye:before{content:"\F06E"}html.honeywell-dark-theme i.icon.exclamation.triangle:before{content:"\F071"}html.honeywell-dark-theme i.icon.shuffle:before{content:"\F074"}html.honeywell-dark-theme i.icon.chat:before{content:"\F075"}html.honeywell-dark-theme i.icon.cart:before{content:"\F07A"}html.honeywell-dark-theme i.icon.shopping.cart:before{content:"\F07A"}html.honeywell-dark-theme i.icon.bar.graph:before{content:"\F080"}html.honeywell-dark-theme i.icon.key:before{content:"\F084"}html.honeywell-dark-theme i.icon.cogs:before{content:"\F085"}html.honeywell-dark-theme i.icon.discussions:before{content:"\F086"}html.honeywell-dark-theme i.icon.like.outline:before{content:"\F087"}html.honeywell-dark-theme i.icon.dislike.outline:before{content:"\F088"}html.honeywell-dark-theme i.icon.heart.outline:before{content:"\F08A"}html.honeywell-dark-theme i.icon.log.out:before{content:"\F08B"}html.honeywell-dark-theme i.icon.thumb.tack:before{content:"\F08D"}html.honeywell-dark-theme i.icon.winner:before{content:"\F091"}html.honeywell-dark-theme i.icon.phone:before{content:"\F095"}html.honeywell-dark-theme i.icon.bookmark.outline:before{content:"\F097"}html.honeywell-dark-theme i.icon.phone.square:before{content:"\F098"}html.honeywell-dark-theme i.icon.credit.card:before{content:"\F09D"}html.honeywell-dark-theme i.icon.hdd.outline:before{content:"\F0A0"}html.honeywell-dark-theme i.icon.bullhorn:before{content:"\F0A1"}html.honeywell-dark-theme i.icon.bell.outline:before{content:"\F0A2"}html.honeywell-dark-theme i.icon.hand.outline.right:before{content:"\F0A4"}html.honeywell-dark-theme i.icon.hand.outline.left:before{content:"\F0A5"}html.honeywell-dark-theme i.icon.hand.outline.up:before{content:"\F0A6"}html.honeywell-dark-theme i.icon.hand.outline.down:before{content:"\F0A7"}html.honeywell-dark-theme i.icon.globe:before{content:"\F0AC"}html.honeywell-dark-theme i.icon.wrench:before{content:"\F0AD"}html.honeywell-dark-theme i.icon.briefcase:before{content:"\F0B1"}html.honeywell-dark-theme i.icon.group:before{content:"\F0C0"}html.honeywell-dark-theme i.icon.linkify:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.chain:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.flask:before{content:"\F0C3"}html.honeywell-dark-theme i.icon.sidebar:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.bars:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.list.ul:before{content:"\F0CA"}html.honeywell-dark-theme i.icon.list.ol:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.numbered.list:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.magic:before{content:"\F0D0"}html.honeywell-dark-theme i.icon.truck:before{content:"\F0D1"}html.honeywell-dark-theme i.icon.currency:before{content:"\F0D6"}html.honeywell-dark-theme i.icon.triangle.down:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.dropdown:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.triangle.up:before{content:"\F0D8"}html.honeywell-dark-theme i.icon.triangle.left:before{content:"\F0D9"}html.honeywell-dark-theme i.icon.triangle.right:before{content:"\F0DA"}html.honeywell-dark-theme i.icon.envelope:before{content:"\F0E0"}html.honeywell-dark-theme i.icon.conversation:before{content:"\F0E6"}html.honeywell-dark-theme i.icon.rain:before{content:"\F0E9"}html.honeywell-dark-theme i.icon.clipboard:before{content:"\F0EA"}html.honeywell-dark-theme i.icon.lightbulb:before{content:"\F0EB"}html.honeywell-dark-theme i.icon.bell:before{content:"\F0F3"}html.honeywell-dark-theme i.icon.ambulance:before{content:"\F0F9"}html.honeywell-dark-theme i.icon.medkit:before{content:"\F0FA"}html.honeywell-dark-theme i.icon.fighter.jet:before{content:"\F0FB"}html.honeywell-dark-theme i.icon.beer:before{content:"\F0FC"}html.honeywell-dark-theme i.icon.plus.square:before{content:"\F0FE"}html.honeywell-dark-theme i.icon.computer:before{content:"\F108"}html.honeywell-dark-theme i.icon.circle.outline:before{content:"\F10C"}html.honeywell-dark-theme i.icon.gamepad:before{content:"\F11B"}html.honeywell-dark-theme i.icon.star.half.full:before{content:"\F123"}html.honeywell-dark-theme i.icon.broken.chain:before{content:"\F127"}html.honeywell-dark-theme i.icon.question:before{content:"\F128"}html.honeywell-dark-theme i.icon.exclamation:before{content:"\F12A"}html.honeywell-dark-theme i.icon.eraser:before{content:"\F12D"}html.honeywell-dark-theme i.icon.microphone:before{content:"\F130"}html.honeywell-dark-theme i.icon.microphone.slash:before{content:"\F131"}html.honeywell-dark-theme i.icon.shield:before{content:"\F132"}html.honeywell-dark-theme i.icon.target:before{content:"\F140"}html.honeywell-dark-theme i.icon.play.circle:before{content:"\F144"}html.honeywell-dark-theme i.icon.pencil.square:before{content:"\F14B"}html.honeywell-dark-theme i.icon.eur:before{content:"\F153"}html.honeywell-dark-theme i.icon.gbp:before{content:"\F154"}html.honeywell-dark-theme i.icon.usd:before{content:"\F155"}html.honeywell-dark-theme i.icon.inr:before{content:"\F156"}html.honeywell-dark-theme i.icon.cny:before{content:"\F157"}html.honeywell-dark-theme i.icon.rmb:before{content:"\F157"}html.honeywell-dark-theme i.icon.jpy:before{content:"\F157"}html.honeywell-dark-theme i.icon.rouble:before{content:"\F158"}html.honeywell-dark-theme i.icon.rub:before{content:"\F158"}html.honeywell-dark-theme i.icon.krw:before{content:"\F159"}html.honeywell-dark-theme i.icon.btc:before{content:"\F15A"}html.honeywell-dark-theme i.icon.gratipay:before{content:"\F184"}html.honeywell-dark-theme i.icon.zip:before{content:"\F187"}html.honeywell-dark-theme i.icon.dot.circle.outline:before{content:"\F192"}html.honeywell-dark-theme i.icon.try:before{content:"\F195"}html.honeywell-dark-theme i.icon.graduation:before{content:"\F19D"}html.honeywell-dark-theme i.icon.circle.outline:before{content:"\F1DB"}html.honeywell-dark-theme i.icon.sliders:before{content:"\F1DE"}html.honeywell-dark-theme i.icon.weixin:before{content:"\F1D7"}html.honeywell-dark-theme i.icon.tty:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.teletype:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.binoculars:before{content:"\F1E5"}html.honeywell-dark-theme i.icon.power.cord:before{content:"\F1E6"}html.honeywell-dark-theme i.icon.wi-fi:before{content:"\F1EB"}html.honeywell-dark-theme i.icon.visa.card:before{content:"\F1F0"}html.honeywell-dark-theme i.icon.mastercard.card:before{content:"\F1F1"}html.honeywell-dark-theme i.icon.discover.card:before{content:"\F1F2"}html.honeywell-dark-theme i.icon.amex:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.american.express.card:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.stripe.card:before{content:"\F1F5"}html.honeywell-dark-theme i.icon.bell.slash:before{content:"\F1F6"}html.honeywell-dark-theme i.icon.bell.slash.outline:before{content:"\F1F7"}html.honeywell-dark-theme i.icon.area.graph:before{content:"\F1FE"}html.honeywell-dark-theme i.icon.pie.graph:before{content:"\F200"}html.honeywell-dark-theme i.icon.line.graph:before{content:"\F201"}html.honeywell-dark-theme i.icon.cc:before{content:"\F20A"}html.honeywell-dark-theme i.icon.sheqel:before{content:"\F20B"}html.honeywell-dark-theme i.icon.ils:before{content:"\F20B"}html.honeywell-dark-theme i.icon.plus.cart:before{content:"\F217"}html.honeywell-dark-theme i.icon.arrow.down.cart:before{content:"\F218"}html.honeywell-dark-theme i.icon.detective:before{content:"\F21B"}html.honeywell-dark-theme i.icon.venus:before{content:"\F221"}html.honeywell-dark-theme i.icon.mars:before{content:"\F222"}html.honeywell-dark-theme i.icon.mercury:before{content:"\F223"}html.honeywell-dark-theme i.icon.intersex:before{content:"\F224"}html.honeywell-dark-theme i.icon.venus.double:before{content:"\F226"}html.honeywell-dark-theme i.icon.female.homosexual:before{content:"\F226"}html.honeywell-dark-theme i.icon.mars.double:before{content:"\F227"}html.honeywell-dark-theme i.icon.male.homosexual:before{content:"\F227"}html.honeywell-dark-theme i.icon.venus.mars:before{content:"\F228"}html.honeywell-dark-theme i.icon.mars.stroke:before{content:"\F229"}html.honeywell-dark-theme i.icon.mars.alternate:before{content:"\F229"}html.honeywell-dark-theme i.icon.mars.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.mars.stroke.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.mars.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.mars.stroke.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.asexual:before{content:"\F22D"}html.honeywell-dark-theme i.icon.facebook.official:before{content:"\F230"}html.honeywell-dark-theme i.icon.user.plus:before{content:"\F234"}html.honeywell-dark-theme i.icon.user.times:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.close:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.cancel:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.delete:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.x:before{content:"\F235"}html.honeywell-dark-theme i.icon.bed:before{content:"\F236"}html.honeywell-dark-theme i.icon.yc:before{content:"\F23B"}html.honeywell-dark-theme i.icon.ycombinator:before{content:"\F23B"}html.honeywell-dark-theme i.icon.battery.four:before{content:"\F240"}html.honeywell-dark-theme i.icon.battery.three:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.three.quarters:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.two:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.half:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.one:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.quarter:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.zero:before{content:"\F244"}html.honeywell-dark-theme i.icon.i.cursor:before{content:"\F246"}html.honeywell-dark-theme i.icon.jcb:before{content:"\F24B"}html.honeywell-dark-theme i.icon.japan.credit.bureau.card:before{content:"\F24B"}html.honeywell-dark-theme i.icon.diners.club.card:before{content:"\F24C"}html.honeywell-dark-theme i.icon.balance:before{content:"\F24E"}html.honeywell-dark-theme i.icon.hourglass.outline:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.zero:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.one:before{content:"\F251"}html.honeywell-dark-theme i.icon.hourglass.two:before{content:"\F252"}html.honeywell-dark-theme i.icon.hourglass.three:before{content:"\F253"}html.honeywell-dark-theme i.icon.hourglass.four:before{content:"\F254"}html.honeywell-dark-theme i.icon.grab:before{content:"\F255"}html.honeywell-dark-theme i.icon.hand.victory:before{content:"\F25B"}html.honeywell-dark-theme i.icon.tm:before{content:"\F25C"}html.honeywell-dark-theme i.icon.r.circle:before{content:"\F25D"}html.honeywell-dark-theme i.icon.television:before{content:"\F26C"}html.honeywell-dark-theme i.icon.five.hundred.pixels:before{content:"\F26E"}html.honeywell-dark-theme i.icon.calendar.plus:before{content:"\F271"}html.honeywell-dark-theme i.icon.calendar.minus:before{content:"\F272"}html.honeywell-dark-theme i.icon.calendar.times:before{content:"\F273"}html.honeywell-dark-theme i.icon.calendar.check:before{content:"\F274"}html.honeywell-dark-theme i.icon.factory:before{content:"\F275"}html.honeywell-dark-theme i.icon.commenting:before{content:"\F27A"}html.honeywell-dark-theme i.icon.commenting.outline:before{content:"\F27B"}html.honeywell-dark-theme i.icon.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.ms.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.wordpress.beginner:before{content:"\F297"}html.honeywell-dark-theme i.icon.wordpress.forms:before{content:"\F298"}html.honeywell-dark-theme i.icon.envira:before{content:"\F299"}html.honeywell-dark-theme i.icon.question.circle.outline:before{content:"\F29C"}html.honeywell-dark-theme i.icon.assistive.listening.devices:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.als:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.ald:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.asl.interpreting:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.deaf:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.american.sign.language.interpreting:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.hard.of.hearing:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.signing:before{content:"\F2A7"}html.honeywell-dark-theme i.icon.new.pied.piper:before{content:"\F2AE"}html.honeywell-dark-theme i.icon.theme.isle:before{content:"\F2B2"}html.honeywell-dark-theme i.icon.google.plus.official:before{content:"\F2B3"}html.honeywell-dark-theme i.icon.fa:before{content:"\F2B4"}html.honeywell-dark-theme i.icon.vcard:before{content:"\F2BB"}html.honeywell-dark-theme i.icon.vcard.outline:before{content:"\F2BC"}html.honeywell-dark-theme i.icon.drivers.license:before{content:"\F2C2"}html.honeywell-dark-theme i.icon.drivers.license.outline:before{content:"\F2C3"}html.honeywell-dark-theme i.icon.thermometer:before{content:"\F2C7"}html.honeywell-dark-theme i.icon.s15:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.bath:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.times.rectangle:before{content:"\F2D3"}html.honeywell-dark-theme i.icon.times.rectangle.outline:before{content:"\F2D4"}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .total-count{color:#e0e0e0;display:inline-flex;align-items:center;padding-left:.5rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar{display:flex;justify-content:space-between;align-content:center;width:100%;height:100%;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar.no-search,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar.no-search{justify-content:flex-end}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .menu-items,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .totals,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .menu-items,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals{display:flex;justify-content:center;align-items:center;height:100%}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item{padding:0 .5rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item .btn-icon,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item .btn-icon,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item .btn-icon,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item .btn-icon{font-size:1rem;padding-left:0 !important;padding-right:.25rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item.disabled,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item.disabled,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item.disabled,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item.disabled{cursor:not-allowed;color:#606060}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item{color:#e0e0e0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item:not(.disabled),html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item:not(.disabled){cursor:pointer}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item:not(.disabled):hover,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item:not(.disabled):hover{background:#404040}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item:not(.disabled),html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item:not(.disabled){cursor:pointer}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item:not(.disabled):hover,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item:not(.disabled):hover{background:#45A7EA}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar{background:#45A7EA;color:#fff;padding-left:1rem;padding-right:1rem;font-size:initial}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .close-btn{cursor:pointer;display:block;justify-content:center;align-content:center;margin-left:1rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .close-btn .close-btn-icon{padding-left:0 !important;padding-right:0 !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .total-value,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .selected-value{display:inline-block}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .total-value{padding-right:.5rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .selected-value{padding-left:.5rem;margin-right:.5rem;border-left:1px solid #fff}@keyframes load{0%{background-color:#a0a0a0;opacity:1}50%{background-color:#e0e0e0;opacity:0.6}100%{background-color:#a0a0a0;opacity:1}}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead{background-clip:padding-box;background:#303030;border:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead tr{background:#303030;background-clip:padding-box}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th{background:transparent;text-align:left;word-wrap:break-word;white-space:pre-wrap;border-style:solid;border-color:#606060;background:transparent;background-clip:padding-box}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:not(:first-child){border-left:.0625rem solid transparent !important}}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-sortable-column:hover{box-shadow:inset -.0625rem 0 0 #606060}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-sortable-column:not(:hover):focus{outline:none !important;box-shadow:none !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:not(:last-child),html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-unselectable-text:not(:last-child){border-right:.0625rem solid transparent}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:first-child.p-sortable-column:hover,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:first-child.p-resizable-column:hover{border-color:#606060;box-shadow:inset 0 0 0 -1rem #606060,inset .0625rem 0 0 -1rem #606060}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-sortable-column:not(:first-child):not(:last-child):hover,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-resizable-column:not(:first-child):not(:last-child):hover{background:#303030;box-shadow:inset -.0625rem 0 0 #606060,inset .0625rem 0 0 #606060}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:last-child.p-sortable-column:hover,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:last-child.p-resizable-column:hover{box-shadow:inset .0625rem 0 0 #606060}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-selection-column{text-align:right !important;padding:.687rem 1.5rem .687rem 1rem;padding-left:1rem;padding-right:.5rem;position:relative}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-selection-column .p-checkbox-box{display:none;cursor:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.rowHeader{background-clip:padding-box}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.rowHeader+.p-sortable-column{border-left:0px !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-column-title{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:inline-block;vertical-align:middle;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:calc(100% - 1rem)}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon{margin-left:.25rem;position:relative;height:.75rem;display:inline-block;width:.75rem;background-image:url(/static/media/Sort-Default.7415ced4.svg);background-size:.75rem .75rem;background-repeat:no-repeat;position:relative;color:#707070}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon:hover{color:#d0d0d0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon:before{display:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon.pi-sort-up{background-image:url(/static/media/Sort-A-Z.f4da55e6.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon.pi-sort-down{background-image:url(/static/media/Sort-Z-A.9cc0c414.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-column-resizer{cursor:col-resize !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-scrollable-header{background:none !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-column-resizer-helper.p-highlight{border-color:#606060;background:#606060}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td{line-height:.5rem;text-align:inherit;position:relative;background-clip:padding-box}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-right{text-align:right !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right .cell-data-wrap,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right .cell-data-wrap,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-right .cell-data-wrap{padding:.5625rem 1rem .5625rem 1.5rem;padding-top:5px;padding-bottom:5px}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right .cell-row-input,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right .cell-row-input,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-right .cell-row-input{text-align:right !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-left,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-left,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-left{text-align:left !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-center,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-center,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-center{text-align:center !important;padding-right:0;padding-left:0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.rowHeader,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.rowHeader,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.rowHeader{border-right:0 solid #606060 !important;border-bottom:.0625rem solid #606060 !important;background:#303030;box-shadow:inset -.0625rem 0 0 #606060}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.rowHeader .cell-data-wrap,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.rowHeader .cell-data-wrap,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.rowHeader .cell-data-wrap{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.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.rowHeader+.p-resizable-column,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.rowHeader+.p-resizable-column,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.rowHeader+.p-resizable-column{border-left:0px !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td{padding:.687rem 1.5rem .687rem 1rem;background-clip:padding-box;padding-top:6px;padding-bottom:6px}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right{text-align:right;padding:.687rem 1rem .687rem 1.5rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot{display:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody{border:.0625rem solid #606060;border-top:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .p-datatable-emptymessage>td{padding:.5625rem 1.5rem .5625rem 1rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr{border:none;outline:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr:nth-child(even){background-color:#202020}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr:nth-child(odd){background-color:#303030}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr.p-highlight{background-color:#404040}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr:hover{background:#404040}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td{padding:0;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}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td .cell-data-wrap{word-wrap:break-word;white-space:pre-wrap;padding:.5625rem 1.5rem .5625rem 1rem;position:relative;padding-top:5px;padding-bottom:5px}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td .cell-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td:first-child .datatable-loading-body{padding-left:1rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td:last-child .datatable-loading-body{padding-right:1rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody tr.p-datatable-row>td.p-selection-column{text-align:right !important;padding:.5625rem 1.5rem .5625rem 1rem;padding-left:1rem;padding-right:.5rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input{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;width:100%;line-height:.5rem;margin:0;border-color:#45A7EA;height:2rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input{line-height:.875rem !important}}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input:focus{border-color:#45A7EA;outline:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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;line-height:.875rem !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input::-webkit-inner-spin-button{margin-left:.25rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .datatable-loading-body{display:flex;height:100%;justify-content:center;align-items:center;background-color:#303030;padding:.5625rem 0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .datatable-loading-body:nth-child(even){background-color:#202020}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .datatable-loading-body .loading-indicator{opacity:0.7;width:100%;height:.875rem;animation:load 1s linear 0s normal infinite none running}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column{width:2.5rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox{height:auto;top:.5625rem;left:1rem;height:1rem;width:1rem;position:absolute}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-box{border:#606060 .0625rem solid}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-box.p-highlight,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-box.p-highlight{background:#45A7EA;border:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-box,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton .p-radiobutton-box{position:relative;height:1rem;width:1rem;background:#303030;border-radius:0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon{line-height:1rem;font-size:.75rem;position:initial;left:initial;top:initial;width:initial;height:initial;margin-top:initial;margin-left:initial}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-check,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-circle-on,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-check,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-circle-on{font-family:"Honeywell-Icons" !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-check:before,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-circle-on:before,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-check:before,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-circle-on:before{content:"\EA56" !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-check::before,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-circle-on::before,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-check::before,html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-circle-on::before{opacity:1;color:white;transform:scale(1);padding-top:0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.hide-checkbox th.p-selection-column .p-checkbox.p-component{display:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box{margin-right:0 !important;padding-right:10px;border:#606060 .0625rem solid;background:#303030}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box th{border-top:none;border-bottom:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box th:first-child{border-left:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box th:last-child{border-right:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body-table tbody.p-datatable-tbody{border-right:none !important;border-bottom:none !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body{min-height:48px;min-height:41px;border-bottom:#606060 .0625rem solid;border-right:#606060 .0625rem solid}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar{width:10px}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar-track{background:#303030;border-left:#606060 .0625rem solid}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar-thumb{background:#a0a0a0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .datatable-pagination-wrap{position:relative}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .datatable-pagination-wrap .ui.pagination.datatable-pagination{border-top:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .datatable-pagination-wrap .ui.pagination.datatable-pagination.loading+.pagination-loading-overlay{width:100%;height:3.3rem;top:0;left:0;z-index:1;position:absolute;background-color:rgba(0,0,0,0.4);opacity:0.1}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.hide-header .p-datatable-thead{display:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.hide-header tbody{border-top:.0625rem solid #606060 !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable.hover-over .p-datatable-tbody{cursor:pointer !important}html.honeywell-dark-theme .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-header{border-right:#606060 .0625rem solid;border-left:#606060 .0625rem solid}html.honeywell-dark-theme .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-header-box{border-left:none}html.honeywell-dark-theme .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body-table tbody.p-datatable-tbody{border-left:none !important}html.honeywell-dark-theme .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body{border-bottom:#606060 .0625rem solid;border-right:#606060 .0625rem solid;border-left:#606060 .0625rem solid}html.honeywell-dark-theme .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar{height:10px}html.honeywell-dark-theme .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar-track:horizontal{border-left:none;border-top:#606060 .0625rem solid;border-top:#606060 .0625rem solid}html.honeywell-dark-theme .ui.forge-datatable-wrap .select-all-checkbox{padding-top:.625rem;position:absolute;z-index:1;transition:background-color 0.2s, box-shadow 0.2s;padding-left:1.0625rem;padding-top:.5625rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable-header .select-all-checkbox{padding-top:0;padding-left:1rem;top:3.5625rem}html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar .p-datatable-header{border:none;height:0 !important}html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar .p-datatable-header .select-all-checkbox{top:.6875rem}html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar.selection .p-datatable-header,html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar.search .p-datatable-header,html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar.header-bar .p-datatable-header{height:3rem !important;border:1px solid #606060;border-bottom:0}html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar.selection .p-datatable-header .select-all-checkbox,html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar.search .p-datatable-header .select-all-checkbox,html.honeywell-dark-theme .ui.forge-datatable-wrap.actionbar.header-bar .p-datatable-header .select-all-checkbox{top:3.5625rem}html.honeywell-dark-theme .ui.forge-datatable-wrap.hide-checkbox .select-all-checkbox{display:none}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header{color:#fff;padding:0px !important;display:flex;align-items:center;justify-content:flex-start;height:3rem;font-weight:inherit;border-color:#606060;background:#303030}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .search-output{display:flex;align-items:center;padding:0 .25rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .search-output .global-filter{height:100%;display:flex;align-items:center}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .p-datatable-header .search-output .global-filter .search-icon{height:2.5rem}html.honeywell-dark-theme .filter-bar{position:relative}html.honeywell-dark-theme .filter-bar .menu-items .header-bar-item.filter-panel-icon{padding-right:calc(.125rem * 5)}html.honeywell-dark-theme .filter-bar .menu-items .header-bar-item.filter-panel-icon .filter{color:#e0e0e0}html.honeywell-dark-theme .filter-bar .menu-items .header-bar-item.filter-panel-icon{padding-right:.75rem}html.honeywell-dark-theme .filter-bar .menu-items .header-bar-item .badged-filter.badged-icon .ui.label.badge{right:-12%}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel{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;z-index:500;overflow:hidden;position:absolute;right:0;max-height:0px;width:350px;padding:0;background:#303030;box-shadow:0 4px 8px 0 rgba(0,0,0,0.5);text-align:left}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel.show{max-height:500px;padding:.75rem 1rem;overflow-y:auto}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel.show.up{bottom:3rem}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel.show.down{top:3rem}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section{padding:.75rem 0;width:100%}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .section-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;font-weight:600;display:flex;justify-content:space-between;align-content:center;cursor:pointer}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .section-label-icon{color:#fff;transition:color 0.1s linear;cursor:pointer;padding:0 !important}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .section-label-icon:hover{color:#d0d0d0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .section-label-icon:active{color:#b0b0b0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .section-label-icon.disabled{color:#b0b0b0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .section-content{max-height:0px;overflow:hidden}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .filter-item{padding-top:0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section .filter-item:last-child{padding-bottom:0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section.expanded{padding:.75rem 0 0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-section.expanded .section-content{max-height:1000px;padding:1rem 0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-item{padding:.75rem 0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-item.disabled{color:gray;cursor:not-allowed}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-item .reset{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:600;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;cursor:pointer}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-item .reset:active{color:#8BC8F2}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-item .reset:hover{color:#45A7EA}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-item .reset:disabled{color:#606060}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel .filter-item .toggle-item{margin:0}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel>.filter-section,html.honeywell-dark-theme .filter-bar .menu-items .filter-panel>.filter-item{border-top:#606060 .0625rem solid}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel>.filter-section:first-child,html.honeywell-dark-theme .filter-bar .menu-items .filter-panel>.filter-item:first-child{border-top:none}html.honeywell-dark-theme .filter-bar .menu-items .filter-panel>.filter-section:first-child.reset-all,html.honeywell-dark-theme .filter-bar .menu-items .filter-panel>.filter-item:first-child.reset-all{padding-top:0}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .cell-status{height:.5rem;width:.5rem;border-radius:.5rem;position:absolute;top:50%;transform:translateY(-50%);left:.25rem;margin-right:.5rem}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .cell-status.red{background-color:#F15A4F !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .cell-status.orange{background-color:#f37021 !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .cell-status.green{background-color:#7eb338 !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .cell-status.blue{background-color:#1792e5 !important}html.honeywell-dark-theme .ui.forge-datatable-wrap .p-datatable .cell-status.grey{background-color:#b0b0b0 !important}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-toggler{line-height:1rem}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-toggler .pi-chevron-down,html.honeywell-dark-theme .p-treetable.p-component .p-treetable-toggler .pi-chevron-right{font-size:1rem;font-style:normal;padding-right:.5rem}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-toggler .pi-chevron-right{font-family:"Honeywell-Icons" !important}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-toggler .pi-chevron-right:before{content:"\EA57" !important}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-toggler .pi-chevron-down{font-family:"Honeywell-Icons" !important}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-toggler .pi-chevron-down:before{content:"\EA59" !important}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead{border:#606060 .0625rem solid}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead>tr>th{background:#303030;padding:.5625rem 1.5rem .5625rem 1rem;border:none;text-align:left}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead>tr>th .p-column-title{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 !important}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon{margin-left:.25rem;position:relative;height:.75rem;display:inline-block;width:.75rem;background-image:url(/static/media/Sort-Default.7415ced4.svg);background-size:.75rem .75rem;background-repeat:no-repeat;position:relative;color:#707070}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon:hover{color:#d0d0d0}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon:before{display:none}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon.pi-sort-up{background-image:url(/static/media/Sort-A-Z.f4da55e6.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon.pi-sort-down{background-image:url(/static/media/Sort-Z-A.9cc0c414.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-tbody{border:#606060 .0625rem solid}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-tbody>tr:focus{outline:none}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-tbody>tr:nth-child(even){background:#303030}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-tbody>tr:nth-child(odd){background:#202020}html.honeywell-dark-theme .p-treetable.p-component .p-treetable-tbody>tr>td{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;word-wrap:break-word;white-space:pre-wrap;padding:.5625rem 1.5rem .5625rem 1rem;position:relative}html:not(.honeywell-dark-theme){/*!
 * # Semantic UI 2.2.11 - Icon
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}@font-face{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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}}html:not(.honeywell-dark-theme) .h-icon.global{font-family:'Honeywell-Global' !important}html:not(.honeywell-dark-theme) .h-icon.global.badge-alert:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.global.badge-help:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.global.badge-info:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.global.badge-stop:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.global.badge-warning:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.global.battery-empty:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.global.battery-full:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.global.battery-low:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.global.battery-mid:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.global.calendar:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.global.camera:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.global.caret-down:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.global.caret-left:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.global.caret-right:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.global.caret-up:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.global.check:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.global.close:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.global.credit-card:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.global.delete:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.global.document:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.global.edit-circled:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.global.edit:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.global.email:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.global.expand:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.global.export:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.global.file-download:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.global.file-upload:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.global.filter:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.global.flag-icon:before{content:"\E91C"}html:not(.honeywell-dark-theme) .h-icon.global.fullscreen-enter:before{content:"\E91D"}html:not(.honeywell-dark-theme) .h-icon.global.fullscreen-exit:before{content:"\E91E"}html:not(.honeywell-dark-theme) .h-icon.global.globe:before{content:"\E91F"}html:not(.honeywell-dark-theme) .h-icon.global.graph:before{content:"\E920"}html:not(.honeywell-dark-theme) .h-icon.global.home:before{content:"\E921"}html:not(.honeywell-dark-theme) .h-icon.global.location:before{content:"\E922"}html:not(.honeywell-dark-theme) .h-icon.global.locked:before{content:"\E923"}html:not(.honeywell-dark-theme) .h-icon.global.map:before{content:"\E924"}html:not(.honeywell-dark-theme) .h-icon.global.menu-icon:before{content:"\E925"}html:not(.honeywell-dark-theme) .h-icon.global.message:before{content:"\E926"}html:not(.honeywell-dark-theme) .h-icon.global.multiple-devices:before{content:"\E927"}html:not(.honeywell-dark-theme) .h-icon.global.notification:before{content:"\E928"}html:not(.honeywell-dark-theme) .h-icon.global.paperclip:before{content:"\E929"}html:not(.honeywell-dark-theme) .h-icon.global.pc:before{content:"\E92A"}html:not(.honeywell-dark-theme) .h-icon.global.phone:before{content:"\E92B"}html:not(.honeywell-dark-theme) .h-icon.global.playback-pause:before{content:"\E92C"}html:not(.honeywell-dark-theme) .h-icon.global.playback-play:before{content:"\E92D"}html:not(.honeywell-dark-theme) .h-icon.global.print:before{content:"\E92E"}html:not(.honeywell-dark-theme) .h-icon.global.redo:before{content:"\E92F"}html:not(.honeywell-dark-theme) .h-icon.global.refresh:before{content:"\E930"}html:not(.honeywell-dark-theme) .h-icon.global.reminders:before{content:"\E931"}html:not(.honeywell-dark-theme) .h-icon.global.save:before{content:"\E932"}html:not(.honeywell-dark-theme) .h-icon.global.search:before{content:"\E933"}html:not(.honeywell-dark-theme) .h-icon.global.settings:before{content:"\E934"}html:not(.honeywell-dark-theme) .h-icon.global.share-2:before{content:"\E935"}html:not(.honeywell-dark-theme) .h-icon.global.share:before{content:"\E936"}html:not(.honeywell-dark-theme) .h-icon.global.shopping-bag:before{content:"\E937"}html:not(.honeywell-dark-theme) .h-icon.global.slider-controls-minus:before{content:"\E938"}html:not(.honeywell-dark-theme) .h-icon.global.slider-controls-plus:before{content:"\E939"}html:not(.honeywell-dark-theme) .h-icon.global.smartphone:before{content:"\E93A"}html:not(.honeywell-dark-theme) .h-icon.global.social-fb-sq:before{content:"\E93B"}html:not(.honeywell-dark-theme) .h-icon.global.social-fb:before{content:"\E93C"}html:not(.honeywell-dark-theme) .h-icon.global.social-ig-sq:before{content:"\E93D"}html:not(.honeywell-dark-theme) .h-icon.global.social-ig:before{content:"\E93E"}html:not(.honeywell-dark-theme) .h-icon.global.social-li-sq:before{content:"\E93F"}html:not(.honeywell-dark-theme) .h-icon.global.social-li:before{content:"\E940"}html:not(.honeywell-dark-theme) .h-icon.global.social-tw-sq:before{content:"\E941"}html:not(.honeywell-dark-theme) .h-icon.global.social-tw:before{content:"\E942"}html:not(.honeywell-dark-theme) .h-icon.global.social-yt-sq:before{content:"\E943"}html:not(.honeywell-dark-theme) .h-icon.global.social-yt:before{content:"\E944"}html:not(.honeywell-dark-theme) .h-icon.global.speaker-off:before{content:"\E945"}html:not(.honeywell-dark-theme) .h-icon.global.speaker-on:before{content:"\E946"}html:not(.honeywell-dark-theme) .h-icon.global.star:before{content:"\E947"}html:not(.honeywell-dark-theme) .h-icon.global.tools:before{content:"\E948"}html:not(.honeywell-dark-theme) .h-icon.global.undo:before{content:"\E949"}html:not(.honeywell-dark-theme) .h-icon.global.unlocked:before{content:"\E94A"}html:not(.honeywell-dark-theme) .h-icon.global.user:before{content:"\E94B"}html:not(.honeywell-dark-theme) .h-icon.global.users:before{content:"\E94C"}html:not(.honeywell-dark-theme) .h-icon.global.voice-message:before{content:"\E94D"}html:not(.honeywell-dark-theme) .h-icon.global.wifi:before{content:"\E94E"}html:not(.honeywell-dark-theme) .h-icon.global.shipping{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.shipping:before{content:"\1F399"}html:not(.honeywell-dark-theme) .h-icon.global.app-launcher{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.app-launcher:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-right{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-right:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-left{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-left:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.global.rtm{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.rtm:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.global.organization{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.organization:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.global.dash{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.dash:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.global.equipment{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.equipment:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.global.inspections{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.inspections:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.global.reports{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.reports:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.global.training{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.training:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.global.sites-pin{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.sites-pin:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.global.users-two{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.users-two:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.global.unequal{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.unequal:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.aero{font-family:'Honeywell-Flight' !important}html:not(.honeywell-dark-theme) .h-icon.aero.ac-atr:before{content:"\E92A"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-bga:before{content:"\E92B"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-dns:before{content:"\E92C"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-dualprop:before{content:"\E92D"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-glider:before{content:"\E92E"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-highwing:before{content:"\E92F"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-lowwing:before{content:"\E930"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-profile:before{content:"\E931"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-right:before{content:"\E932"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-settings:before{content:"\E933"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-up:before{content:"\E934"}html:not(.honeywell-dark-theme) .h-icon.aero.airports-directory:before{content:"\E935"}html:not(.honeywell-dark-theme) .h-icon.aero.airports-nearby:before{content:"\E936"}html:not(.honeywell-dark-theme) .h-icon.aero.airports:before{content:"\E937"}html:not(.honeywell-dark-theme) .h-icon.aero.cabin-seat:before{content:"\E938"}html:not(.honeywell-dark-theme) .h-icon.aero.cabin:before{content:"\E939"}html:not(.honeywell-dark-theme) .h-icon.aero.cleaning:before{content:"\E93A"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis-3:before{content:"\E93B"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis-alt:before{content:"\E93C"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis:before{content:"\E93D"}html:not(.honeywell-dark-theme) .h-icon.aero.egi-2:before{content:"\E93E"}html:not(.honeywell-dark-theme) .h-icon.aero.egi:before{content:"\E93F"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo-1:before{content:"\E940"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo-2:before{content:"\E941"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo:before{content:"\E942"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-attendant:before{content:"\E943"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan-doc:before{content:"\E944"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan-new:before{content:"\E945"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan:before{content:"\E946"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-schedule-alt:before{content:"\E947"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-schedule:before{content:"\E948"}html:not(.honeywell-dark-theme) .h-icon.aero.fuel:before{content:"\E949"}html:not(.honeywell-dark-theme) .h-icon.aero.hangar:before{content:"\E94A"}html:not(.honeywell-dark-theme) .h-icon.aero.helicopter:before{content:"\E94B"}html:not(.honeywell-dark-theme) .h-icon.aero.intl-trip:before{content:"\E94C"}html:not(.honeywell-dark-theme) .h-icon.aero.luggage:before{content:"\E94D"}html:not(.honeywell-dark-theme) .h-icon.aero.notams-2:before{content:"\E94E"}html:not(.honeywell-dark-theme) .h-icon.aero.notams-3:before{content:"\E94F"}html:not(.honeywell-dark-theme) .h-icon.aero.notams:before{content:"\E950"}html:not(.honeywell-dark-theme) .h-icon.aero.pilot-crushcap:before{content:"\E951"}html:not(.honeywell-dark-theme) .h-icon.aero.plane-approach-1:before{content:"\E952"}html:not(.honeywell-dark-theme) .h-icon.aero.plane-approach-2:before{content:"\E953"}html:not(.honeywell-dark-theme) .h-icon.aero.psngr-boarding:before{content:"\E954"}html:not(.honeywell-dark-theme) .h-icon.aero.psngr-deboarding:before{content:"\E955"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-1:before{content:"\E956"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-2:before{content:"\E957"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-3:before{content:"\E958"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-1:before{content:"\E959"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-2:before{content:"\E95A"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-3:before{content:"\E95B"}html:not(.honeywell-dark-theme) .h-icon.aero.runway:before{content:"\E95C"}html:not(.honeywell-dark-theme) .h-icon.aero.screen-seat:before{content:"\E95D"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator-air:before{content:"\E95E"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator-vertical:before{content:"\E95F"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator:before{content:"\E960"}html:not(.honeywell-dark-theme) .h-icon.aero.track-up-centered:before{content:"\E961"}html:not(.honeywell-dark-theme) .h-icon.aero.track-up:before{content:"\E962"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit-add:before{content:"\E963"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit-refresh:before{content:"\E964"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit:before{content:"\E965"}html:not(.honeywell-dark-theme) .h-icon.aero.uav:before{content:"\E966"}html:not(.honeywell-dark-theme) .h-icon.aero.valance:before{content:"\E967"}html:not(.honeywell-dark-theme) .h-icon.aero.weather-chart:before{content:"\E968"}html:not(.honeywell-dark-theme) .h-icon.aero.wheel-chocks:before{content:"\E969"}html:not(.honeywell-dark-theme) .h-icon.aero.window-down:before{content:"\E96A"}html:not(.honeywell-dark-theme) .h-icon.aero.window-mid:before{content:"\E96B"}html:not(.honeywell-dark-theme) .h-icon.aero.window-up:before{content:"\E96C"}html:not(.honeywell-dark-theme) .h-icon.aero.ptmd{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.ptmd:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-efficiency{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.flight-efficiency:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.aero.cmx{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.cmx:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.building{font-family:'Honeywell-Buildings' !important}html:not(.honeywell-dark-theme) .h-icon.building.add:before{content:"\E96D"}html:not(.honeywell-dark-theme) .h-icon.building.badge-alert:before{content:"\E96E"}html:not(.honeywell-dark-theme) .h-icon.building.badge-help:before{content:"\E96F"}html:not(.honeywell-dark-theme) .h-icon.building.badge-info:before{content:"\E970"}html:not(.honeywell-dark-theme) .h-icon.building.badge-stop:before{content:"\E971"}html:not(.honeywell-dark-theme) .h-icon.building.badge-warning:before{content:"\E972"}html:not(.honeywell-dark-theme) .h-icon.building.battery-empty:before{content:"\E973"}html:not(.honeywell-dark-theme) .h-icon.building.battery-full:before{content:"\E974"}html:not(.honeywell-dark-theme) .h-icon.building.battery-low:before{content:"\E975"}html:not(.honeywell-dark-theme) .h-icon.building.battery-mid:before{content:"\E976"}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path1:before{content:"\E977"}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path2:before{content:"\EA1B";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path3:before{content:"\EA1C";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path4:before{content:"\EA1D";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path5:before{content:"\EA1E";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path6:before{content:"\EA1F";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path7:before{content:"\EA20";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path8:before{content:"\EA21";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path9:before{content:"\EA22";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path10:before{content:"\EA23";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path11:before{content:"\EA24";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path12:before{content:"\EA25";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path13:before{content:"\EA26";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.camera:before{content:"\E978"}html:not(.honeywell-dark-theme) .h-icon.building.caret-down:before{content:"\E979"}html:not(.honeywell-dark-theme) .h-icon.building.caret-left:before{content:"\E97A"}html:not(.honeywell-dark-theme) .h-icon.building.caret-right:before{content:"\E97B"}html:not(.honeywell-dark-theme) .h-icon.building.caret-up:before{content:"\E97C"}html:not(.honeywell-dark-theme) .h-icon.building.check:before{content:"\E97D"}html:not(.honeywell-dark-theme) .h-icon.building.close-circled:before{content:"\E97E"}html:not(.honeywell-dark-theme) .h-icon.building.close:before{content:"\E97F"}html:not(.honeywell-dark-theme) .h-icon.building.cloud-download:before{content:"\E980"}html:not(.honeywell-dark-theme) .h-icon.building.cloud-upload:before{content:"\E981"}html:not(.honeywell-dark-theme) .h-icon.building.collapse:before{content:"\E982"}html:not(.honeywell-dark-theme) .h-icon.building.credit-card:before{content:"\E983"}html:not(.honeywell-dark-theme) .h-icon.building.dashboard:before{content:"\E984"}html:not(.honeywell-dark-theme) .h-icon.building.delete:before{content:"\E985"}html:not(.honeywell-dark-theme) .h-icon.building.doc-add:before{content:"\E986"}html:not(.honeywell-dark-theme) .h-icon.building.doc-annotate:before{content:"\E987"}html:not(.honeywell-dark-theme) .h-icon.building.doc-certificate:before{content:"\E988"}html:not(.honeywell-dark-theme) .h-icon.building.doc-pdf:before{content:"\E989"}html:not(.honeywell-dark-theme) .h-icon.building.doc-photo:before{content:"\E98A"}html:not(.honeywell-dark-theme) .h-icon.building.doc-proc:before{content:"\E98B"}html:not(.honeywell-dark-theme) .h-icon.building.doc-search:before{content:"\E98C"}html:not(.honeywell-dark-theme) .h-icon.building.doc-test:before{content:"\E98D"}html:not(.honeywell-dark-theme) .h-icon.building.document:before{content:"\E98E"}html:not(.honeywell-dark-theme) .h-icon.building.edit-circled:before{content:"\E98F"}html:not(.honeywell-dark-theme) .h-icon.building.edit:before{content:"\E990"}html:not(.honeywell-dark-theme) .h-icon.building.email:before{content:"\E991"}html:not(.honeywell-dark-theme) .h-icon.building.expand:before{content:"\E992"}html:not(.honeywell-dark-theme) .h-icon.building.export:before{content:"\E993"}html:not(.honeywell-dark-theme) .h-icon.building.file-download:before{content:"\E994"}html:not(.honeywell-dark-theme) .h-icon.building.file-upload:before{content:"\E995"}html:not(.honeywell-dark-theme) .h-icon.building.filter:before{content:"\E996"}html:not(.honeywell-dark-theme) .h-icon.building.flag-icon:before{content:"\E997"}html:not(.honeywell-dark-theme) .h-icon.building.folder-music:before{content:"\E998"}html:not(.honeywell-dark-theme) .h-icon.building.folder:before{content:"\E999"}html:not(.honeywell-dark-theme) .h-icon.building.fullscreen-enter:before{content:"\E99A"}html:not(.honeywell-dark-theme) .h-icon.building.fullscreen-exit:before{content:"\E99B"}html:not(.honeywell-dark-theme) .h-icon.building.globe:before{content:"\E99C"}html:not(.honeywell-dark-theme) .h-icon.building.graph:before{content:"\E99D"}html:not(.honeywell-dark-theme) .h-icon.building.home:before{content:"\E99E"}html:not(.honeywell-dark-theme) .h-icon.building.location:before{content:"\E99F"}html:not(.honeywell-dark-theme) .h-icon.building.locked:before{content:"\E9A0"}html:not(.honeywell-dark-theme) .h-icon.building.map:before{content:"\E9A1"}html:not(.honeywell-dark-theme) .h-icon.building.menu-icon:before{content:"\E9A2"}html:not(.honeywell-dark-theme) .h-icon.building.message:before{content:"\E9A3"}html:not(.honeywell-dark-theme) .h-icon.building.messages:before{content:"\E9A4"}html:not(.honeywell-dark-theme) .h-icon.building.modify:before{content:"\E9A5"}html:not(.honeywell-dark-theme) .h-icon.building.multiple-devices:before{content:"\E9A6"}html:not(.honeywell-dark-theme) .h-icon.building.music:before{content:"\E9A7"}html:not(.honeywell-dark-theme) .h-icon.building.notification:before{content:"\E9A8"}html:not(.honeywell-dark-theme) .h-icon.building.paperclip:before{content:"\E9A9"}html:not(.honeywell-dark-theme) .h-icon.building.pc:before{content:"\E9AA"}html:not(.honeywell-dark-theme) .h-icon.building.phone:before{content:"\E9AB"}html:not(.honeywell-dark-theme) .h-icon.building.playback-pause:before{content:"\E9AC"}html:not(.honeywell-dark-theme) .h-icon.building.playback-play:before{content:"\E9AD"}html:not(.honeywell-dark-theme) .h-icon.building.playback-rec:before{content:"\E9AE"}html:not(.honeywell-dark-theme) .h-icon.building.playback-stop:before{content:"\E9AF"}html:not(.honeywell-dark-theme) .h-icon.building.print:before{content:"\E9B0"}html:not(.honeywell-dark-theme) .h-icon.building.redo:before{content:"\E9B1"}html:not(.honeywell-dark-theme) .h-icon.building.refresh:before{content:"\E9B2"}html:not(.honeywell-dark-theme) .h-icon.building.save:before{content:"\E9B3"}html:not(.honeywell-dark-theme) .h-icon.building.search:before{content:"\E9B4"}html:not(.honeywell-dark-theme) .h-icon.building.settings:before{content:"\E9B5"}html:not(.honeywell-dark-theme) .h-icon.building.share-2:before{content:"\E9B6"}html:not(.honeywell-dark-theme) .h-icon.building.share:before{content:"\E9B7"}html:not(.honeywell-dark-theme) .h-icon.building.shopping-bag:before{content:"\E9B8"}html:not(.honeywell-dark-theme) .h-icon.building.slider-controls-minus:before{content:"\E9B9"}html:not(.honeywell-dark-theme) .h-icon.building.slider-controls-plus:before{content:"\E9BA"}html:not(.honeywell-dark-theme) .h-icon.building.smartphone:before{content:"\E9BB"}html:not(.honeywell-dark-theme) .h-icon.building.social-fb:before{content:"\E9BC"}html:not(.honeywell-dark-theme) .h-icon.building.social-ig:before{content:"\E9BD"}html:not(.honeywell-dark-theme) .h-icon.building.social-tw:before{content:"\E9BE"}html:not(.honeywell-dark-theme) .h-icon.building.social-yt:before{content:"\E9BF"}html:not(.honeywell-dark-theme) .h-icon.building.speaker-off:before{content:"\E9C0"}html:not(.honeywell-dark-theme) .h-icon.building.speaker-on:before{content:"\E9C1"}html:not(.honeywell-dark-theme) .h-icon.building.star:before{content:"\E9C2"}html:not(.honeywell-dark-theme) .h-icon.building.tag:before{content:"\E9C3"}html:not(.honeywell-dark-theme) .h-icon.building.timeline:before{content:"\E9C4"}html:not(.honeywell-dark-theme) .h-icon.building.tools:before{content:"\E9C5"}html:not(.honeywell-dark-theme) .h-icon.building.undo:before{content:"\E9C6"}html:not(.honeywell-dark-theme) .h-icon.building.unlocked:before{content:"\E9C7"}html:not(.honeywell-dark-theme) .h-icon.building.user-filled:before{content:"\E9C8"}html:not(.honeywell-dark-theme) .h-icon.building.user:before{content:"\E9C9"}html:not(.honeywell-dark-theme) .h-icon.building.voicemessages:before{content:"\E9CA"}html:not(.honeywell-dark-theme) .h-icon.building.wifi:before{content:"\E9CB"}html:not(.honeywell-dark-theme) .h-icon.building.total-footprint{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.total-footprint:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.building.sites{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.sites:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-savings{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-savings:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-cost{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-cost:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.building.comfort{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.comfort:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.building.filter-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.filter-alt:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.building.graph-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.graph-alt:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.building.home-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.home-alt:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.building.sites-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.sites-alt:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.building.operations{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.operations:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.building.energy{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.energy:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.building.rounds{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.rounds:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.weather{font-family:'Honeywell-Weather'}html:not(.honeywell-dark-theme) .h-icon.weather.blowingsnow:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.weather.breezy:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.weather.clear:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.weather.clearnight:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.weather.drizzle:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.weather.fewbrokenclowds:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.weather.fog:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.weather.freezingdrizzle:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.weather.freezingrain:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.weather.funnelcloud:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.weather.hail:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.weather.haze:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.weather.heavyfog:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.weather.heavyrain:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.weather.heavysnow:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.weather.hot:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.weather.hurricane:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.weather.ice:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.weather.icepellets:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.weather.lightfog:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.weather.lightrain:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.weather.lightsnow:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.weather.mixrainfall:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.weather.moderatefog:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.weather.moderaterain:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.weather.moderatesnow:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.weather.na:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.weather.noreport:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.weather.overcast:before{content:"\E91C"}html:not(.honeywell-dark-theme) .h-icon.weather.rain:before{content:"\E91D"}html:not(.honeywell-dark-theme) .h-icon.weather.rainshowers:before{content:"\E91E"}html:not(.honeywell-dark-theme) .h-icon.weather.sandustorm:before{content:"\E91F"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredclouds:before{content:"\E920"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredshowers:before{content:"\E921"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredthunderstorm:before{content:"\E922"}html:not(.honeywell-dark-theme) .h-icon.weather.smoke:before{content:"\E923"}html:not(.honeywell-dark-theme) .h-icon.weather.snowshowers:before{content:"\E924"}html:not(.honeywell-dark-theme) .h-icon.weather.sunrise:before{content:"\E925"}html:not(.honeywell-dark-theme) .h-icon.weather.sunset:before{content:"\E926"}html:not(.honeywell-dark-theme) .h-icon.weather.thunderstorm:before{content:"\E927"}html:not(.honeywell-dark-theme) .h-icon.weather.tropicalstorm:before{content:"\E928"}html:not(.honeywell-dark-theme) .h-icon.weather.water:before{content:"\E929"}@font-face{html:not(.honeywell-dark-theme){font-family:'Icons';src:url(/static/media/icons.7bfcab6d.eot);src:url(/static/media/icons.7bfcab6d.eot) format("embedded-opentype"),url(/static/media/icons.2adefcbc.woff2) format("woff2"),url(/static/media/icons.ba0c59de.woff) format("woff"),url(/static/media/icons.aa58f33f.ttf) format("truetype"),url(/static/media/icons.ad615792.svg) format("svg");font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-decoration:inherit;text-transform:none}}html:not(.honeywell-dark-theme) i.icon{font-family:'Honeywell-Global', 'Icons';display:inline-block;opacity:1;font-style:normal;font-weight:normal;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;backface-visibility:hidden}html:not(.honeywell-dark-theme) i.icon:before{background:none !important}html:not(.honeywell-dark-theme) i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) i.icon.hover{opacity:1 !important}html:not(.honeywell-dark-theme) i.icon.active{opacity:1 !important}html:not(.honeywell-dark-theme) i.emphasized.icon{opacity:1 !important}html:not(.honeywell-dark-theme) i.disabled.icon{opacity:0.45 !important}html:not(.honeywell-dark-theme) i.fitted.icon{width:auto;margin:0em}html:not(.honeywell-dark-theme) i.link.icon,html:not(.honeywell-dark-theme) i.link.icons{cursor:pointer;opacity:0.8;transition:opacity 0.1s ease}html:not(.honeywell-dark-theme) i.link.icon:hover,html:not(.honeywell-dark-theme) i.link.icons:hover{opacity:1 !important}html:not(.honeywell-dark-theme) i.circular.icon{border-radius:500em !important;line-height:1 !important;padding:0.5em 0.5em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset;width:2em !important;height:2em !important}html:not(.honeywell-dark-theme) i.circular.inverted.icon{border:none;box-shadow:none}html:not(.honeywell-dark-theme) i.flipped.icon,html:not(.honeywell-dark-theme) i.horizontally.flipped.icon{transform:scale(-1, 1)}html:not(.honeywell-dark-theme) i.vertically.flipped.icon{transform:scale(1, -1)}html:not(.honeywell-dark-theme) i.rotated.icon,html:not(.honeywell-dark-theme) i.right.rotated.icon,html:not(.honeywell-dark-theme) i.clockwise.rotated.icon{transform:rotate(90deg)}html:not(.honeywell-dark-theme) i.left.rotated.icon,html:not(.honeywell-dark-theme) i.counterclockwise.rotated.icon{transform:rotate(-90deg)}html:not(.honeywell-dark-theme) i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:0.5em 0.41em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset}html:not(.honeywell-dark-theme) i.bordered.inverted.icon{border:none;box-shadow:none}html:not(.honeywell-dark-theme) i.inverted.bordered.icon,html:not(.honeywell-dark-theme) i.inverted.circular.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.inverted.icon{color:#FFFFFF}html:not(.honeywell-dark-theme) i.red.icon{color:#DB2828 !important}html:not(.honeywell-dark-theme) i.inverted.red.icon{color:#FF695E !important}html:not(.honeywell-dark-theme) i.inverted.bordered.red.icon,html:not(.honeywell-dark-theme) i.inverted.circular.red.icon{background-color:#DB2828 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.orange.icon{color:#F2711C !important}html:not(.honeywell-dark-theme) i.inverted.orange.icon{color:#FF851B !important}html:not(.honeywell-dark-theme) i.inverted.bordered.orange.icon,html:not(.honeywell-dark-theme) i.inverted.circular.orange.icon{background-color:#F2711C !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.yellow.icon{color:#FBBD08 !important}html:not(.honeywell-dark-theme) i.inverted.yellow.icon{color:#FFE21F !important}html:not(.honeywell-dark-theme) i.inverted.bordered.yellow.icon,html:not(.honeywell-dark-theme) i.inverted.circular.yellow.icon{background-color:#FBBD08 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.olive.icon{color:#B5CC18 !important}html:not(.honeywell-dark-theme) i.inverted.olive.icon{color:#D9E778 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.olive.icon,html:not(.honeywell-dark-theme) i.inverted.circular.olive.icon{background-color:#B5CC18 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.green.icon{color:#21BA45 !important}html:not(.honeywell-dark-theme) i.inverted.green.icon{color:#2ECC40 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.green.icon,html:not(.honeywell-dark-theme) i.inverted.circular.green.icon{background-color:#21BA45 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.teal.icon{color:#00B5AD !important}html:not(.honeywell-dark-theme) i.inverted.teal.icon{color:#6DFFFF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.teal.icon,html:not(.honeywell-dark-theme) i.inverted.circular.teal.icon{background-color:#00B5AD !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.blue.icon{color:#2185D0 !important}html:not(.honeywell-dark-theme) i.inverted.blue.icon{color:#54C8FF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.blue.icon,html:not(.honeywell-dark-theme) i.inverted.circular.blue.icon{background-color:#2185D0 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.violet.icon{color:#6435C9 !important}html:not(.honeywell-dark-theme) i.inverted.violet.icon{color:#A291FB !important}html:not(.honeywell-dark-theme) i.inverted.bordered.violet.icon,html:not(.honeywell-dark-theme) i.inverted.circular.violet.icon{background-color:#6435C9 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.purple.icon{color:#A333C8 !important}html:not(.honeywell-dark-theme) i.inverted.purple.icon{color:#DC73FF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.purple.icon,html:not(.honeywell-dark-theme) i.inverted.circular.purple.icon{background-color:#A333C8 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.pink.icon{color:#E03997 !important}html:not(.honeywell-dark-theme) i.inverted.pink.icon{color:#FF8EDF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.pink.icon,html:not(.honeywell-dark-theme) i.inverted.circular.pink.icon{background-color:#E03997 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.brown.icon{color:#A5673F !important}html:not(.honeywell-dark-theme) i.inverted.brown.icon{color:#D67C1C !important}html:not(.honeywell-dark-theme) i.inverted.bordered.brown.icon,html:not(.honeywell-dark-theme) i.inverted.circular.brown.icon{background-color:#A5673F !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.grey.icon{color:#767676 !important}html:not(.honeywell-dark-theme) i.inverted.grey.icon{color:#DCDDDE !important}html:not(.honeywell-dark-theme) i.inverted.bordered.grey.icon,html:not(.honeywell-dark-theme) i.inverted.circular.grey.icon{background-color:#767676 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.black.icon{color:#1B1C1D !important}html:not(.honeywell-dark-theme) i.inverted.black.icon{color:#545454 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.black.icon,html:not(.honeywell-dark-theme) i.inverted.circular.black.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.mini.icon,html:not(.honeywell-dark-theme) i.mini.icons{line-height:1;font-size:0.4em}html:not(.honeywell-dark-theme) i.tiny.icon,html:not(.honeywell-dark-theme) i.tiny.icons{line-height:1;font-size:0.5em}html:not(.honeywell-dark-theme) i.small.icon,html:not(.honeywell-dark-theme) i.small.icons{line-height:1;font-size:0.75em}html:not(.honeywell-dark-theme) i.icon,html:not(.honeywell-dark-theme) i.icons{font-size:1em}html:not(.honeywell-dark-theme) i.large.icon,html:not(.honeywell-dark-theme) i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}html:not(.honeywell-dark-theme) i.big.icon,html:not(.honeywell-dark-theme) i.big.icons{line-height:1;vertical-align:middle;font-size:2em}html:not(.honeywell-dark-theme) i.huge.icon,html:not(.honeywell-dark-theme) i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}html:not(.honeywell-dark-theme) i.massive.icon,html:not(.honeywell-dark-theme) i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}html:not(.honeywell-dark-theme) i.icons{display:inline-block;position:relative;line-height:1}html:not(.honeywell-dark-theme) i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0em;margin:0}html:not(.honeywell-dark-theme) i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:0.25rem}html:not(.honeywell-dark-theme) i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:0.45em;text-shadow:-1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF}html:not(.honeywell-dark-theme) i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}html:not(.honeywell-dark-theme) i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}html:not(.honeywell-dark-theme) i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}html:not(.honeywell-dark-theme) i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}html:not(.honeywell-dark-theme) i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D}html:not(.honeywell-dark-theme) i.icon.search:before{content:"\F002"}html:not(.honeywell-dark-theme) i.icon.mail.outline:before{content:"\F003"}html:not(.honeywell-dark-theme) i.icon.signal:before{content:"\F012"}html:not(.honeywell-dark-theme) i.icon.setting:before{content:"\F013"}html:not(.honeywell-dark-theme) i.icon.home:before{content:"\F015"}html:not(.honeywell-dark-theme) i.icon.inbox:before{content:"\F01C"}html:not(.honeywell-dark-theme) i.icon.browser:before{content:"\F022"}html:not(.honeywell-dark-theme) i.icon.tag:before{content:"\F02B"}html:not(.honeywell-dark-theme) i.icon.tags:before{content:"\F02C"}html:not(.honeywell-dark-theme) i.icon.image:before{content:"\F03E"}html:not(.honeywell-dark-theme) i.icon.calendar:before{content:"\F073"}html:not(.honeywell-dark-theme) i.icon.comment:before{content:"\F075"}html:not(.honeywell-dark-theme) i.icon.shop:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.comments:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.external:before{content:"\F08E"}html:not(.honeywell-dark-theme) i.icon.privacy:before{content:"\F084"}html:not(.honeywell-dark-theme) i.icon.settings:before{content:"\F085"}html:not(.honeywell-dark-theme) i.icon.comments:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.external:before{content:"\F08E"}html:not(.honeywell-dark-theme) i.icon.trophy:before{content:"\F091"}html:not(.honeywell-dark-theme) i.icon.payment:before{content:"\F09D"}html:not(.honeywell-dark-theme) i.icon.feed:before{content:"\F09E"}html:not(.honeywell-dark-theme) i.icon.alarm.outline:before{content:"\F0A2"}html:not(.honeywell-dark-theme) i.icon.tasks:before{content:"\F0AE"}html:not(.honeywell-dark-theme) i.icon.cloud:before{content:"\F0C2"}html:not(.honeywell-dark-theme) i.icon.lab:before{content:"\F0C3"}html:not(.honeywell-dark-theme) i.icon.mail:before{content:"\F0E0"}html:not(.honeywell-dark-theme) i.icon.dashboard:before{content:"\F0E4"}html:not(.honeywell-dark-theme) i.icon.comment.outline:before{content:"\F0E5"}html:not(.honeywell-dark-theme) i.icon.comments.outline:before{content:"\F0E6"}html:not(.honeywell-dark-theme) i.icon.sitemap:before{content:"\F0E8"}html:not(.honeywell-dark-theme) i.icon.idea:before{content:"\F0EB"}html:not(.honeywell-dark-theme) i.icon.alarm:before{content:"\F0F3"}html:not(.honeywell-dark-theme) i.icon.terminal:before{content:"\F120"}html:not(.honeywell-dark-theme) i.icon.code:before{content:"\F121"}html:not(.honeywell-dark-theme) i.icon.protect:before{content:"\F132"}html:not(.honeywell-dark-theme) i.icon.calendar.outline:before{content:"\F133"}html:not(.honeywell-dark-theme) i.icon.ticket:before{content:"\F145"}html:not(.honeywell-dark-theme) i.icon.external.square:before{content:"\F14C"}html:not(.honeywell-dark-theme) i.icon.bug:before{content:"\F188"}html:not(.honeywell-dark-theme) i.icon.mail.square:before{content:"\F199"}html:not(.honeywell-dark-theme) i.icon.history:before{content:"\F1DA"}html:not(.honeywell-dark-theme) i.icon.options:before{content:"\F1DE"}html:not(.honeywell-dark-theme) i.icon.text.telephone:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.find:before{content:"\F1E5"}html:not(.honeywell-dark-theme) i.icon.alarm.mute:before{content:"\F1F6"}html:not(.honeywell-dark-theme) i.icon.alarm.mute.outline:before{content:"\F1F7"}html:not(.honeywell-dark-theme) i.icon.copyright:before{content:"\F1F9"}html:not(.honeywell-dark-theme) i.icon.at:before{content:"\F1FA"}html:not(.honeywell-dark-theme) i.icon.eyedropper:before{content:"\F1FB"}html:not(.honeywell-dark-theme) i.icon.paint.brush:before{content:"\F1FC"}html:not(.honeywell-dark-theme) i.icon.heartbeat:before{content:"\F21E"}html:not(.honeywell-dark-theme) i.icon.mouse.pointer:before{content:"\F245"}html:not(.honeywell-dark-theme) i.icon.hourglass.empty:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.start:before{content:"\F251"}html:not(.honeywell-dark-theme) i.icon.hourglass.half:before{content:"\F252"}html:not(.honeywell-dark-theme) i.icon.hourglass.end:before{content:"\F253"}html:not(.honeywell-dark-theme) i.icon.hourglass.full:before{content:"\F254"}html:not(.honeywell-dark-theme) i.icon.hand.pointer:before{content:"\F25A"}html:not(.honeywell-dark-theme) i.icon.trademark:before{content:"\F25C"}html:not(.honeywell-dark-theme) i.icon.registered:before{content:"\F25D"}html:not(.honeywell-dark-theme) i.icon.creative.commons:before{content:"\F25E"}html:not(.honeywell-dark-theme) i.icon.add.to.calendar:before{content:"\F271"}html:not(.honeywell-dark-theme) i.icon.remove.from.calendar:before{content:"\F272"}html:not(.honeywell-dark-theme) i.icon.delete.calendar:before{content:"\F273"}html:not(.honeywell-dark-theme) i.icon.checked.calendar:before{content:"\F274"}html:not(.honeywell-dark-theme) i.icon.industry:before{content:"\F275"}html:not(.honeywell-dark-theme) i.icon.shopping.bag:before{content:"\F290"}html:not(.honeywell-dark-theme) i.icon.shopping.basket:before{content:"\F291"}html:not(.honeywell-dark-theme) i.icon.hashtag:before{content:"\F292"}html:not(.honeywell-dark-theme) i.icon.percent:before{content:"\F295"}html:not(.honeywell-dark-theme) i.icon.handshake:before{content:"\F2B5"}html:not(.honeywell-dark-theme) i.icon.open.envelope:before{content:"\F2B6"}html:not(.honeywell-dark-theme) i.icon.open.envelope.outline:before{content:"\F2B7"}html:not(.honeywell-dark-theme) i.icon.address.book:before{content:"\F2B9"}html:not(.honeywell-dark-theme) i.icon.address.book.outline:before{content:"\F2BA"}html:not(.honeywell-dark-theme) i.icon.address.card:before{content:"\F2BB"}html:not(.honeywell-dark-theme) i.icon.address.card.outline:before{content:"\F2BC"}html:not(.honeywell-dark-theme) i.icon.id.badge:before{content:"\F2C1"}html:not(.honeywell-dark-theme) i.icon.id.card:before{content:"\F2C2"}html:not(.honeywell-dark-theme) i.icon.id.card.outline:before{content:"\F2C3"}html:not(.honeywell-dark-theme) i.icon.podcast:before{content:"\F2CE"}html:not(.honeywell-dark-theme) i.icon.window.maximize:before{content:"\F2D0"}html:not(.honeywell-dark-theme) i.icon.window.minimize:before{content:"\F2D1"}html:not(.honeywell-dark-theme) i.icon.window.restore:before{content:"\F2D2"}html:not(.honeywell-dark-theme) i.icon.window.close:before{content:"\F2D3"}html:not(.honeywell-dark-theme) i.icon.window.close.outline:before{content:"\F2D4"}html:not(.honeywell-dark-theme) i.icon.wait:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.download:before{content:"\F019"}html:not(.honeywell-dark-theme) i.icon.repeat:before{content:"\F01E"}html:not(.honeywell-dark-theme) i.icon.refresh:before{content:"\F021"}html:not(.honeywell-dark-theme) i.icon.lock:before{content:"\F023"}html:not(.honeywell-dark-theme) i.icon.bookmark:before{content:"\F02E"}html:not(.honeywell-dark-theme) i.icon.print:before{content:"\F02F"}html:not(.honeywell-dark-theme) i.icon.write:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.adjust:before{content:"\F042"}html:not(.honeywell-dark-theme) i.icon.theme:before{content:"\F043"}html:not(.honeywell-dark-theme) i.icon.edit:before{content:"\F044"}html:not(.honeywell-dark-theme) i.icon.external.share:before{content:"\F045"}html:not(.honeywell-dark-theme) i.icon.ban:before{content:"\F05E"}html:not(.honeywell-dark-theme) i.icon.mail.forward:before{content:"\F064"}html:not(.honeywell-dark-theme) i.icon.share:before{content:"\F064"}html:not(.honeywell-dark-theme) i.icon.expand:before{content:"\F065"}html:not(.honeywell-dark-theme) i.icon.compress:before{content:"\F066"}html:not(.honeywell-dark-theme) i.icon.unhide:before{content:"\F06E"}html:not(.honeywell-dark-theme) i.icon.hide:before{content:"\F070"}html:not(.honeywell-dark-theme) i.icon.random:before{content:"\F074"}html:not(.honeywell-dark-theme) i.icon.retweet:before{content:"\F079"}html:not(.honeywell-dark-theme) i.icon.sign.out:before{content:"\F08B"}html:not(.honeywell-dark-theme) i.icon.pin:before{content:"\F08D"}html:not(.honeywell-dark-theme) i.icon.sign.in:before{content:"\F090"}html:not(.honeywell-dark-theme) i.icon.upload:before{content:"\F093"}html:not(.honeywell-dark-theme) i.icon.call:before{content:"\F095"}html:not(.honeywell-dark-theme) i.icon.remove.bookmark:before{content:"\F097"}html:not(.honeywell-dark-theme) i.icon.call.square:before{content:"\F098"}html:not(.honeywell-dark-theme) i.icon.unlock:before{content:"\F09C"}html:not(.honeywell-dark-theme) i.icon.configure:before{content:"\F0AD"}html:not(.honeywell-dark-theme) i.icon.filter:before{content:"\F0B0"}html:not(.honeywell-dark-theme) i.icon.wizard:before{content:"\F0D0"}html:not(.honeywell-dark-theme) i.icon.undo:before{content:"\F0E2"}html:not(.honeywell-dark-theme) i.icon.exchange:before{content:"\F0EC"}html:not(.honeywell-dark-theme) i.icon.cloud.download:before{content:"\F0ED"}html:not(.honeywell-dark-theme) i.icon.cloud.upload:before{content:"\F0EE"}html:not(.honeywell-dark-theme) i.icon.reply:before{content:"\F112"}html:not(.honeywell-dark-theme) i.icon.reply.all:before{content:"\F122"}html:not(.honeywell-dark-theme) i.icon.erase:before{content:"\F12D"}html:not(.honeywell-dark-theme) i.icon.unlock.alternate:before{content:"\F13E"}html:not(.honeywell-dark-theme) i.icon.write.square:before{content:"\F14B"}html:not(.honeywell-dark-theme) i.icon.share.square:before{content:"\F14D"}html:not(.honeywell-dark-theme) i.icon.archive:before{content:"\F187"}html:not(.honeywell-dark-theme) i.icon.translate:before{content:"\F1AB"}html:not(.honeywell-dark-theme) i.icon.recycle:before{content:"\F1B8"}html:not(.honeywell-dark-theme) i.icon.send:before{content:"\F1D8"}html:not(.honeywell-dark-theme) i.icon.send.outline:before{content:"\F1D9"}html:not(.honeywell-dark-theme) i.icon.share.alternate:before{content:"\F1E0"}html:not(.honeywell-dark-theme) i.icon.share.alternate.square:before{content:"\F1E1"}html:not(.honeywell-dark-theme) i.icon.add.to.cart:before{content:"\F217"}html:not(.honeywell-dark-theme) i.icon.in.cart:before{content:"\F218"}html:not(.honeywell-dark-theme) i.icon.add.user:before{content:"\F234"}html:not(.honeywell-dark-theme) i.icon.remove.user:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.object.group:before{content:"\F247"}html:not(.honeywell-dark-theme) i.icon.object.ungroup:before{content:"\F248"}html:not(.honeywell-dark-theme) i.icon.clone:before{content:"\F24D"}html:not(.honeywell-dark-theme) i.icon.talk:before{content:"\F27A"}html:not(.honeywell-dark-theme) i.icon.talk.outline:before{content:"\F27B"}html:not(.honeywell-dark-theme) i.icon.help.circle:before{content:"\F059"}html:not(.honeywell-dark-theme) i.icon.info.circle:before{content:"\F05A"}html:not(.honeywell-dark-theme) i.icon.warning.circle:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.warning.sign:before{content:"\F071"}html:not(.honeywell-dark-theme) i.icon.announcement:before{content:"\F0A1"}html:not(.honeywell-dark-theme) i.icon.help:before{content:"\F128"}html:not(.honeywell-dark-theme) i.icon.info:before{content:"\F129"}html:not(.honeywell-dark-theme) i.icon.warning:before{content:"\F12A"}html:not(.honeywell-dark-theme) i.icon.birthday:before{content:"\F1FD"}html:not(.honeywell-dark-theme) i.icon.help.circle.outline:before{content:"\F29C"}html:not(.honeywell-dark-theme) i.icon.user:before{content:"\F007"}html:not(.honeywell-dark-theme) i.icon.users:before{content:"\F0C0"}html:not(.honeywell-dark-theme) i.icon.doctor:before{content:"\F0F0"}html:not(.honeywell-dark-theme) i.icon.handicap:before{content:"\F193"}html:not(.honeywell-dark-theme) i.icon.student:before{content:"\F19D"}html:not(.honeywell-dark-theme) i.icon.child:before{content:"\F1AE"}html:not(.honeywell-dark-theme) i.icon.spy:before{content:"\F21B"}html:not(.honeywell-dark-theme) i.icon.user.circle:before{content:"\F2BD"}html:not(.honeywell-dark-theme) i.icon.user.circle.outline:before{content:"\F2BE"}html:not(.honeywell-dark-theme) i.icon.user.outline:before{content:"\F2C0"}html:not(.honeywell-dark-theme) i.icon.female:before{content:"\F182"}html:not(.honeywell-dark-theme) i.icon.male:before{content:"\F183"}html:not(.honeywell-dark-theme) i.icon.woman:before{content:"\F221"}html:not(.honeywell-dark-theme) i.icon.man:before{content:"\F222"}html:not(.honeywell-dark-theme) i.icon.non.binary.transgender:before{content:"\F223"}html:not(.honeywell-dark-theme) i.icon.intergender:before{content:"\F224"}html:not(.honeywell-dark-theme) i.icon.transgender:before{content:"\F225"}html:not(.honeywell-dark-theme) i.icon.lesbian:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.gay:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.heterosexual:before{content:"\F228"}html:not(.honeywell-dark-theme) i.icon.other.gender:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.other.gender.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.other.gender.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.neuter:before{content:"\F22C"}html:not(.honeywell-dark-theme) i.icon.genderless:before{content:"\F22D"}html:not(.honeywell-dark-theme) i.icon.universal.access:before{content:"\F29A"}html:not(.honeywell-dark-theme) i.icon.wheelchair:before{content:"\F29B"}html:not(.honeywell-dark-theme) i.icon.blind:before{content:"\F29D"}html:not(.honeywell-dark-theme) i.icon.audio.description:before{content:"\F29E"}html:not(.honeywell-dark-theme) i.icon.volume.control.phone:before{content:"\F2A0"}html:not(.honeywell-dark-theme) i.icon.braille:before{content:"\F2A1"}html:not(.honeywell-dark-theme) i.icon.asl:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.assistive.listening.systems:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.deafness:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.sign.language:before{content:"\F2A7"}html:not(.honeywell-dark-theme) i.icon.low.vision:before{content:"\F2A8"}html:not(.honeywell-dark-theme) i.icon.block.layout:before{content:"\F009"}html:not(.honeywell-dark-theme) i.icon.grid.layout:before{content:"\F00A"}html:not(.honeywell-dark-theme) i.icon.list.layout:before{content:"\F00B"}html:not(.honeywell-dark-theme) i.icon.zoom:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.zoom.out:before{content:"\F010"}html:not(.honeywell-dark-theme) i.icon.resize.vertical:before{content:"\F07D"}html:not(.honeywell-dark-theme) i.icon.resize.horizontal:before{content:"\F07E"}html:not(.honeywell-dark-theme) i.icon.maximize:before{content:"\F0B2"}html:not(.honeywell-dark-theme) i.icon.crop:before{content:"\F125"}html:not(.honeywell-dark-theme) i.icon.cocktail:before{content:"\F000"}html:not(.honeywell-dark-theme) i.icon.road:before{content:"\F018"}html:not(.honeywell-dark-theme) i.icon.flag:before{content:"\F024"}html:not(.honeywell-dark-theme) i.icon.book:before{content:"\F02D"}html:not(.honeywell-dark-theme) i.icon.gift:before{content:"\F06B"}html:not(.honeywell-dark-theme) i.icon.leaf:before{content:"\F06C"}html:not(.honeywell-dark-theme) i.icon.fire:before{content:"\F06D"}html:not(.honeywell-dark-theme) i.icon.plane:before{content:"\F072"}html:not(.honeywell-dark-theme) i.icon.magnet:before{content:"\F076"}html:not(.honeywell-dark-theme) i.icon.lemon:before{content:"\F094"}html:not(.honeywell-dark-theme) i.icon.world:before{content:"\F0AC"}html:not(.honeywell-dark-theme) i.icon.travel:before{content:"\F0B1"}html:not(.honeywell-dark-theme) i.icon.shipping:before{content:"\F0D1"}html:not(.honeywell-dark-theme) i.icon.money:before{content:"\F0D6"}html:not(.honeywell-dark-theme) i.icon.legal:before{content:"\F0E3"}html:not(.honeywell-dark-theme) i.icon.lightning:before{content:"\F0E7"}html:not(.honeywell-dark-theme) i.icon.umbrella:before{content:"\F0E9"}html:not(.honeywell-dark-theme) i.icon.treatment:before{content:"\F0F1"}html:not(.honeywell-dark-theme) i.icon.suitcase:before{content:"\F0F2"}html:not(.honeywell-dark-theme) i.icon.bar:before{content:"\F0FC"}html:not(.honeywell-dark-theme) i.icon.flag.outline:before{content:"\F11D"}html:not(.honeywell-dark-theme) i.icon.flag.checkered:before{content:"\F11E"}html:not(.honeywell-dark-theme) i.icon.puzzle:before{content:"\F12E"}html:not(.honeywell-dark-theme) i.icon.fire.extinguisher:before{content:"\F134"}html:not(.honeywell-dark-theme) i.icon.rocket:before{content:"\F135"}html:not(.honeywell-dark-theme) i.icon.anchor:before{content:"\F13D"}html:not(.honeywell-dark-theme) i.icon.bullseye:before{content:"\F140"}html:not(.honeywell-dark-theme) i.icon.sun:before{content:"\F185"}html:not(.honeywell-dark-theme) i.icon.moon:before{content:"\F186"}html:not(.honeywell-dark-theme) i.icon.fax:before{content:"\F1AC"}html:not(.honeywell-dark-theme) i.icon.life.ring:before{content:"\F1CD"}html:not(.honeywell-dark-theme) i.icon.bomb:before{content:"\F1E2"}html:not(.honeywell-dark-theme) i.icon.soccer:before{content:"\F1E3"}html:not(.honeywell-dark-theme) i.icon.calculator:before{content:"\F1EC"}html:not(.honeywell-dark-theme) i.icon.diamond:before{content:"\F219"}html:not(.honeywell-dark-theme) i.icon.sticky.note:before{content:"\F249"}html:not(.honeywell-dark-theme) i.icon.sticky.note.outline:before{content:"\F24A"}html:not(.honeywell-dark-theme) i.icon.law:before{content:"\F24E"}html:not(.honeywell-dark-theme) i.icon.hand.peace:before{content:"\F25B"}html:not(.honeywell-dark-theme) i.icon.hand.rock:before{content:"\F255"}html:not(.honeywell-dark-theme) i.icon.hand.paper:before{content:"\F256"}html:not(.honeywell-dark-theme) i.icon.hand.scissors:before{content:"\F257"}html:not(.honeywell-dark-theme) i.icon.hand.lizard:before{content:"\F258"}html:not(.honeywell-dark-theme) i.icon.hand.spock:before{content:"\F259"}html:not(.honeywell-dark-theme) i.icon.tv:before{content:"\F26C"}html:not(.honeywell-dark-theme) i.icon.thermometer.full:before{content:"\F2C7"}html:not(.honeywell-dark-theme) i.icon.thermometer.three.quarters:before{content:"\F2C8"}html:not(.honeywell-dark-theme) i.icon.thermometer.half:before{content:"\F2C9"}html:not(.honeywell-dark-theme) i.icon.thermometer.quarter:before{content:"\F2CA"}html:not(.honeywell-dark-theme) i.icon.thermometer.empty:before{content:"\F2CB"}html:not(.honeywell-dark-theme) i.icon.shower:before{content:"\F2CC"}html:not(.honeywell-dark-theme) i.icon.bathtub:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.snowflake:before{content:"\F2DC"}html:not(.honeywell-dark-theme) i.icon.crosshairs:before{content:"\F05B"}html:not(.honeywell-dark-theme) i.icon.asterisk:before{content:"\F069"}html:not(.honeywell-dark-theme) i.icon.square.outline:before{content:"\F096"}html:not(.honeywell-dark-theme) i.icon.certificate:before{content:"\F0A3"}html:not(.honeywell-dark-theme) i.icon.square:before{content:"\F0C8"}html:not(.honeywell-dark-theme) i.icon.quote.left:before{content:"\F10D"}html:not(.honeywell-dark-theme) i.icon.quote.right:before{content:"\F10E"}html:not(.honeywell-dark-theme) i.icon.spinner:before{content:"\F110"}html:not(.honeywell-dark-theme) i.icon.circle:before{content:"\F111"}html:not(.honeywell-dark-theme) i.icon.ellipsis.horizontal:before{content:"\F141"}html:not(.honeywell-dark-theme) i.icon.ellipsis.vertical:before{content:"\F142"}html:not(.honeywell-dark-theme) i.icon.cube:before{content:"\F1B2"}html:not(.honeywell-dark-theme) i.icon.cubes:before{content:"\F1B3"}html:not(.honeywell-dark-theme) i.icon.circle.notched:before{content:"\F1CE"}html:not(.honeywell-dark-theme) i.icon.circle.thin:before{content:"\F1DB"}html:not(.honeywell-dark-theme) i.icon.checkmark:before{content:"\F00C"}html:not(.honeywell-dark-theme) i.icon.remove:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.checkmark.box:before{content:"\F046"}html:not(.honeywell-dark-theme) i.icon.move:before{content:"\F047"}html:not(.honeywell-dark-theme) i.icon.add.circle:before{content:"\F055"}html:not(.honeywell-dark-theme) i.icon.minus.circle:before{content:"\F056"}html:not(.honeywell-dark-theme) i.icon.remove.circle:before{content:"\F057"}html:not(.honeywell-dark-theme) i.icon.check.circle:before{content:"\F058"}html:not(.honeywell-dark-theme) i.icon.remove.circle.outline:before{content:"\F05C"}html:not(.honeywell-dark-theme) i.icon.check.circle.outline:before{content:"\F05D"}html:not(.honeywell-dark-theme) i.icon.plus:before{content:"\F067"}html:not(.honeywell-dark-theme) i.icon.minus:before{content:"\F068"}html:not(.honeywell-dark-theme) i.icon.add.square:before{content:"\F0FE"}html:not(.honeywell-dark-theme) i.icon.radio:before{content:"\F10C"}html:not(.honeywell-dark-theme) i.icon.minus.square:before{content:"\F146"}html:not(.honeywell-dark-theme) i.icon.minus.square.outline:before{content:"\F147"}html:not(.honeywell-dark-theme) i.icon.check.square:before{content:"\F14A"}html:not(.honeywell-dark-theme) i.icon.selected.radio:before{content:"\F192"}html:not(.honeywell-dark-theme) i.icon.plus.square.outline:before{content:"\F196"}html:not(.honeywell-dark-theme) i.icon.toggle.off:before{content:"\F204"}html:not(.honeywell-dark-theme) i.icon.toggle.on:before{content:"\F205"}html:not(.honeywell-dark-theme) i.icon.film:before{content:"\F008"}html:not(.honeywell-dark-theme) i.icon.sound:before{content:"\F025"}html:not(.honeywell-dark-theme) i.icon.photo:before{content:"\F030"}html:not(.honeywell-dark-theme) i.icon.bar.chart:before{content:"\F080"}html:not(.honeywell-dark-theme) i.icon.camera.retro:before{content:"\F083"}html:not(.honeywell-dark-theme) i.icon.newspaper:before{content:"\F1EA"}html:not(.honeywell-dark-theme) i.icon.area.chart:before{content:"\F1FE"}html:not(.honeywell-dark-theme) i.icon.pie.chart:before{content:"\F200"}html:not(.honeywell-dark-theme) i.icon.line.chart:before{content:"\F201"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.down:before{content:"\F01A"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.up:before{content:"\F01B"}html:not(.honeywell-dark-theme) i.icon.chevron.left:before{content:"\F053"}html:not(.honeywell-dark-theme) i.icon.chevron.right:before{content:"\F054"}html:not(.honeywell-dark-theme) i.icon.arrow.left:before{content:"\F060"}html:not(.honeywell-dark-theme) i.icon.arrow.right:before{content:"\F061"}html:not(.honeywell-dark-theme) i.icon.arrow.up:before{content:"\F062"}html:not(.honeywell-dark-theme) i.icon.arrow.down:before{content:"\F063"}html:not(.honeywell-dark-theme) i.icon.chevron.up:before{content:"\E90E"}html:not(.honeywell-dark-theme) i.icon.chevron.down:before{content:"\E90B"}html:not(.honeywell-dark-theme) i.icon.pointing.right:before{content:"\F0A4"}html:not(.honeywell-dark-theme) i.icon.pointing.left:before{content:"\F0A5"}html:not(.honeywell-dark-theme) i.icon.pointing.up:before{content:"\F0A6"}html:not(.honeywell-dark-theme) i.icon.pointing.down:before{content:"\F0A7"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.left:before{content:"\F0A8"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.right:before{content:"\F0A9"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.up:before{content:"\F0AA"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.down:before{content:"\F0AB"}html:not(.honeywell-dark-theme) i.icon.caret.down:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.caret.up:before{content:"\F0D8"}html:not(.honeywell-dark-theme) i.icon.caret.left:before{content:"\F0D9"}html:not(.honeywell-dark-theme) i.icon.caret.right:before{content:"\F0DA"}html:not(.honeywell-dark-theme) i.icon.angle.double.left:before{content:"\F100"}html:not(.honeywell-dark-theme) i.icon.angle.double.right:before{content:"\F101"}html:not(.honeywell-dark-theme) i.icon.angle.double.up:before{content:"\F102"}html:not(.honeywell-dark-theme) i.icon.angle.double.down:before{content:"\F103"}html:not(.honeywell-dark-theme) i.icon.angle.left:before{content:"\F104"}html:not(.honeywell-dark-theme) i.icon.angle.right:before{content:"\F105"}html:not(.honeywell-dark-theme) i.icon.angle.up:before{content:"\F106"}html:not(.honeywell-dark-theme) i.icon.angle.down:before{content:"\F107"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.left:before{content:"\F137"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.right:before{content:"\F138"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.up:before{content:"\F139"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.down:before{content:"\F13A"}html:not(.honeywell-dark-theme) i.icon.toggle.down:before{content:"\F150"}html:not(.honeywell-dark-theme) i.icon.toggle.up:before{content:"\F151"}html:not(.honeywell-dark-theme) i.icon.toggle.right:before{content:"\F152"}html:not(.honeywell-dark-theme) i.icon.long.arrow.down:before{content:"\F175"}html:not(.honeywell-dark-theme) i.icon.long.arrow.up:before{content:"\F176"}html:not(.honeywell-dark-theme) i.icon.long.arrow.left:before{content:"\F177"}html:not(.honeywell-dark-theme) i.icon.long.arrow.right:before{content:"\F178"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.right:before{content:"\F18E"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.left:before{content:"\F190"}html:not(.honeywell-dark-theme) i.icon.toggle.left:before{content:"\F191"}html:not(.honeywell-dark-theme) i.icon.tablet:before{content:"\F10A"}html:not(.honeywell-dark-theme) i.icon.mobile:before{content:"\F10B"}html:not(.honeywell-dark-theme) i.icon.battery.full:before{content:"\F240"}html:not(.honeywell-dark-theme) i.icon.battery.high:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.medium:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.low:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.empty:before{content:"\F244"}html:not(.honeywell-dark-theme) i.icon.power:before{content:"\F011"}html:not(.honeywell-dark-theme) i.icon.trash.outline:before{content:"\F014"}html:not(.honeywell-dark-theme) i.icon.disk.outline:before{content:"\F0A0"}html:not(.honeywell-dark-theme) i.icon.desktop:before{content:"\F108"}html:not(.honeywell-dark-theme) i.icon.laptop:before{content:"\F109"}html:not(.honeywell-dark-theme) i.icon.game:before{content:"\F11B"}html:not(.honeywell-dark-theme) i.icon.keyboard:before{content:"\F11C"}html:not(.honeywell-dark-theme) i.icon.plug:before{content:"\F1E6"}html:not(.honeywell-dark-theme) i.icon.trash:before{content:"\F1F8"}html:not(.honeywell-dark-theme) i.icon.file.outline:before{content:"\F016"}html:not(.honeywell-dark-theme) i.icon.folder:before{content:"\F07B"}html:not(.honeywell-dark-theme) i.icon.folder.open:before{content:"\F07C"}html:not(.honeywell-dark-theme) i.icon.file.text.outline:before{content:"\F0F6"}html:not(.honeywell-dark-theme) i.icon.folder.outline:before{content:"\F114"}html:not(.honeywell-dark-theme) i.icon.folder.open.outline:before{content:"\F115"}html:not(.honeywell-dark-theme) i.icon.level.up:before{content:"\F148"}html:not(.honeywell-dark-theme) i.icon.level.down:before{content:"\F149"}html:not(.honeywell-dark-theme) i.icon.file:before{content:"\F15B"}html:not(.honeywell-dark-theme) i.icon.file.text:before{content:"\F15C"}html:not(.honeywell-dark-theme) i.icon.file.pdf.outline:before{content:"\F1C1"}html:not(.honeywell-dark-theme) i.icon.file.word.outline:before{content:"\F1C2"}html:not(.honeywell-dark-theme) i.icon.file.excel.outline:before{content:"\F1C3"}html:not(.honeywell-dark-theme) i.icon.file.powerpoint.outline:before{content:"\F1C4"}html:not(.honeywell-dark-theme) i.icon.file.image.outline:before{content:"\F1C5"}html:not(.honeywell-dark-theme) i.icon.file.archive.outline:before{content:"\F1C6"}html:not(.honeywell-dark-theme) i.icon.file.audio.outline:before{content:"\F1C7"}html:not(.honeywell-dark-theme) i.icon.file.video.outline:before{content:"\F1C8"}html:not(.honeywell-dark-theme) i.icon.file.code.outline:before{content:"\F1C9"}html:not(.honeywell-dark-theme) i.icon.qrcode:before{content:"\F029"}html:not(.honeywell-dark-theme) i.icon.barcode:before{content:"\F02A"}html:not(.honeywell-dark-theme) i.icon.rss:before{content:"\F09E"}html:not(.honeywell-dark-theme) i.icon.fork:before{content:"\F126"}html:not(.honeywell-dark-theme) i.icon.html5:before{content:"\F13B"}html:not(.honeywell-dark-theme) i.icon.css3:before{content:"\F13C"}html:not(.honeywell-dark-theme) i.icon.rss.square:before{content:"\F143"}html:not(.honeywell-dark-theme) i.icon.openid:before{content:"\F19B"}html:not(.honeywell-dark-theme) i.icon.database:before{content:"\F1C0"}html:not(.honeywell-dark-theme) i.icon.wifi:before{content:"\F1EB"}html:not(.honeywell-dark-theme) i.icon.server:before{content:"\F233"}html:not(.honeywell-dark-theme) i.icon.usb:before{content:"\F287"}html:not(.honeywell-dark-theme) i.icon.bluetooth:before{content:"\F293"}html:not(.honeywell-dark-theme) i.icon.bluetooth.alternative:before{content:"\F294"}html:not(.honeywell-dark-theme) i.icon.microchip:before{content:"\F2DB"}html:not(.honeywell-dark-theme) i.icon.heart:before{content:"\F004"}html:not(.honeywell-dark-theme) i.icon.star:before{content:"\F005"}html:not(.honeywell-dark-theme) i.icon.empty.star:before{content:"\F006"}html:not(.honeywell-dark-theme) i.icon.thumbs.outline.up:before{content:"\F087"}html:not(.honeywell-dark-theme) i.icon.thumbs.outline.down:before{content:"\F088"}html:not(.honeywell-dark-theme) i.icon.star.half:before{content:"\F089"}html:not(.honeywell-dark-theme) i.icon.empty.heart:before{content:"\F08A"}html:not(.honeywell-dark-theme) i.icon.smile:before{content:"\F118"}html:not(.honeywell-dark-theme) i.icon.frown:before{content:"\F119"}html:not(.honeywell-dark-theme) i.icon.meh:before{content:"\F11A"}html:not(.honeywell-dark-theme) i.icon.star.half.empty:before{content:"\F123"}html:not(.honeywell-dark-theme) i.icon.thumbs.up:before{content:"\F164"}html:not(.honeywell-dark-theme) i.icon.thumbs.down:before{content:"\F165"}html:not(.honeywell-dark-theme) i.icon.music:before{content:"\F001"}html:not(.honeywell-dark-theme) i.icon.video.play.outline:before{content:"\F01D"}html:not(.honeywell-dark-theme) i.icon.volume.off:before{content:"\F026"}html:not(.honeywell-dark-theme) i.icon.volume.down:before{content:"\F027"}html:not(.honeywell-dark-theme) i.icon.volume.up:before{content:"\F028"}html:not(.honeywell-dark-theme) i.icon.record:before{content:"\F03D"}html:not(.honeywell-dark-theme) i.icon.step.backward:before{content:"\F048"}html:not(.honeywell-dark-theme) i.icon.fast.backward:before{content:"\F049"}html:not(.honeywell-dark-theme) i.icon.backward:before{content:"\F04A"}html:not(.honeywell-dark-theme) i.icon.play:before{content:"\F04B"}html:not(.honeywell-dark-theme) i.icon.pause:before{content:"\F04C"}html:not(.honeywell-dark-theme) i.icon.stop:before{content:"\F04D"}html:not(.honeywell-dark-theme) i.icon.forward:before{content:"\F04E"}html:not(.honeywell-dark-theme) i.icon.fast.forward:before{content:"\F050"}html:not(.honeywell-dark-theme) i.icon.step.forward:before{content:"\F051"}html:not(.honeywell-dark-theme) i.icon.eject:before{content:"\F052"}html:not(.honeywell-dark-theme) i.icon.unmute:before{content:"\F130"}html:not(.honeywell-dark-theme) i.icon.mute:before{content:"\F131"}html:not(.honeywell-dark-theme) i.icon.video.play:before{content:"\F144"}html:not(.honeywell-dark-theme) i.icon.closed.captioning:before{content:"\F20A"}html:not(.honeywell-dark-theme) i.icon.pause.circle:before{content:"\F28B"}html:not(.honeywell-dark-theme) i.icon.pause.circle.outline:before{content:"\F28C"}html:not(.honeywell-dark-theme) i.icon.stop.circle:before{content:"\F28D"}html:not(.honeywell-dark-theme) i.icon.stop.circle.outline:before{content:"\F28E"}html:not(.honeywell-dark-theme) i.icon.marker:before{content:"\F041"}html:not(.honeywell-dark-theme) i.icon.coffee:before{content:"\F0F4"}html:not(.honeywell-dark-theme) i.icon.food:before{content:"\F0F5"}html:not(.honeywell-dark-theme) i.icon.building.outline:before{content:"\F0F7"}html:not(.honeywell-dark-theme) i.icon.hospital:before{content:"\F0F8"}html:not(.honeywell-dark-theme) i.icon.emergency:before{content:"\F0F9"}html:not(.honeywell-dark-theme) i.icon.first.aid:before{content:"\F0FA"}html:not(.honeywell-dark-theme) i.icon.military:before{content:"\F0FB"}html:not(.honeywell-dark-theme) i.icon.h:before{content:"\F0FD"}html:not(.honeywell-dark-theme) i.icon.location.arrow:before{content:"\F124"}html:not(.honeywell-dark-theme) i.icon.compass:before{content:"\F14E"}html:not(.honeywell-dark-theme) i.icon.space.shuttle:before{content:"\F197"}html:not(.honeywell-dark-theme) i.icon.university:before{content:"\F19C"}html:not(.honeywell-dark-theme) i.icon.building:before{content:"\F1AD"}html:not(.honeywell-dark-theme) i.icon.paw:before{content:"\F1B0"}html:not(.honeywell-dark-theme) i.icon.spoon:before{content:"\F1B1"}html:not(.honeywell-dark-theme) i.icon.car:before{content:"\F1B9"}html:not(.honeywell-dark-theme) i.icon.taxi:before{content:"\F1BA"}html:not(.honeywell-dark-theme) i.icon.tree:before{content:"\F1BB"}html:not(.honeywell-dark-theme) i.icon.bicycle:before{content:"\F206"}html:not(.honeywell-dark-theme) i.icon.bus:before{content:"\F207"}html:not(.honeywell-dark-theme) i.icon.ship:before{content:"\F21A"}html:not(.honeywell-dark-theme) i.icon.motorcycle:before{content:"\F21C"}html:not(.honeywell-dark-theme) i.icon.street.view:before{content:"\F21D"}html:not(.honeywell-dark-theme) i.icon.hotel:before{content:"\F236"}html:not(.honeywell-dark-theme) i.icon.train:before{content:"\F238"}html:not(.honeywell-dark-theme) i.icon.subway:before{content:"\F239"}html:not(.honeywell-dark-theme) i.icon.map.pin:before{content:"\F276"}html:not(.honeywell-dark-theme) i.icon.map.signs:before{content:"\F277"}html:not(.honeywell-dark-theme) i.icon.map.outline:before{content:"\F278"}html:not(.honeywell-dark-theme) i.icon.map:before{content:"\F279"}html:not(.honeywell-dark-theme) i.icon.table:before{content:"\F0CE"}html:not(.honeywell-dark-theme) i.icon.columns:before{content:"\F0DB"}html:not(.honeywell-dark-theme) i.icon.sort:before{content:"\F0DC"}html:not(.honeywell-dark-theme) i.icon.sort.descending:before{content:"\F0DD"}html:not(.honeywell-dark-theme) i.icon.sort.ascending:before{content:"\F0DE"}html:not(.honeywell-dark-theme) i.icon.sort.alphabet.ascending:before{content:"\F15D"}html:not(.honeywell-dark-theme) i.icon.sort.alphabet.descending:before{content:"\F15E"}html:not(.honeywell-dark-theme) i.icon.sort.content.ascending:before{content:"\F160"}html:not(.honeywell-dark-theme) i.icon.sort.content.descending:before{content:"\F161"}html:not(.honeywell-dark-theme) i.icon.sort.numeric.ascending:before{content:"\F162"}html:not(.honeywell-dark-theme) i.icon.sort.numeric.descending:before{content:"\F163"}html:not(.honeywell-dark-theme) i.icon.font:before{content:"\F031"}html:not(.honeywell-dark-theme) i.icon.bold:before{content:"\F032"}html:not(.honeywell-dark-theme) i.icon.italic:before{content:"\F033"}html:not(.honeywell-dark-theme) i.icon.text.height:before{content:"\F034"}html:not(.honeywell-dark-theme) i.icon.text.width:before{content:"\F035"}html:not(.honeywell-dark-theme) i.icon.align.left:before{content:"\F036"}html:not(.honeywell-dark-theme) i.icon.align.center:before{content:"\F037"}html:not(.honeywell-dark-theme) i.icon.align.right:before{content:"\F038"}html:not(.honeywell-dark-theme) i.icon.align.justify:before{content:"\F039"}html:not(.honeywell-dark-theme) i.icon.list:before{content:"\F03A"}html:not(.honeywell-dark-theme) i.icon.outdent:before{content:"\F03B"}html:not(.honeywell-dark-theme) i.icon.indent:before{content:"\F03C"}html:not(.honeywell-dark-theme) i.icon.linkify:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.cut:before{content:"\F0C4"}html:not(.honeywell-dark-theme) i.icon.copy:before{content:"\F0C5"}html:not(.honeywell-dark-theme) i.icon.attach:before{content:"\F0C6"}html:not(.honeywell-dark-theme) i.icon.save:before{content:"\F0C7"}html:not(.honeywell-dark-theme) i.icon.content:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.unordered.list:before{content:"\F0CA"}html:not(.honeywell-dark-theme) i.icon.ordered.list:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.strikethrough:before{content:"\F0CC"}html:not(.honeywell-dark-theme) i.icon.underline:before{content:"\F0CD"}html:not(.honeywell-dark-theme) i.icon.paste:before{content:"\F0EA"}html:not(.honeywell-dark-theme) i.icon.unlinkify:before{content:"\F127"}html:not(.honeywell-dark-theme) i.icon.superscript:before{content:"\F12B"}html:not(.honeywell-dark-theme) i.icon.subscript:before{content:"\F12C"}html:not(.honeywell-dark-theme) i.icon.header:before{content:"\F1DC"}html:not(.honeywell-dark-theme) i.icon.paragraph:before{content:"\F1DD"}html:not(.honeywell-dark-theme) i.icon.text.cursor:before{content:"\F246"}html:not(.honeywell-dark-theme) i.icon.euro:before{content:"\F153"}html:not(.honeywell-dark-theme) i.icon.pound:before{content:"\F154"}html:not(.honeywell-dark-theme) i.icon.dollar:before{content:"\F155"}html:not(.honeywell-dark-theme) i.icon.rupee:before{content:"\F156"}html:not(.honeywell-dark-theme) i.icon.yen:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.ruble:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.won:before{content:"\F159"}html:not(.honeywell-dark-theme) i.icon.bitcoin:before{content:"\F15A"}html:not(.honeywell-dark-theme) i.icon.lira:before{content:"\F195"}html:not(.honeywell-dark-theme) i.icon.shekel:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.paypal:before{content:"\F1ED"}html:not(.honeywell-dark-theme) i.icon.google.wallet:before{content:"\F1EE"}html:not(.honeywell-dark-theme) i.icon.visa:before{content:"\F1F0"}html:not(.honeywell-dark-theme) i.icon.mastercard:before{content:"\F1F1"}html:not(.honeywell-dark-theme) i.icon.discover:before{content:"\F1F2"}html:not(.honeywell-dark-theme) i.icon.american.express:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.paypal.card:before{content:"\F1F4"}html:not(.honeywell-dark-theme) i.icon.stripe:before{content:"\F1F5"}html:not(.honeywell-dark-theme) i.icon.japan.credit.bureau:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.diners.club:before{content:"\F24C"}html:not(.honeywell-dark-theme) i.icon.credit.card.alternative:before{content:"\F283"}html:not(.honeywell-dark-theme) i.icon.twitter.square:before{content:"\F081"}html:not(.honeywell-dark-theme) i.icon.facebook.square:before{content:"\F082"}html:not(.honeywell-dark-theme) i.icon.linkedin.square:before{content:"\F08C"}html:not(.honeywell-dark-theme) i.icon.github.square:before{content:"\F092"}html:not(.honeywell-dark-theme) i.icon.twitter:before{content:"\F099"}html:not(.honeywell-dark-theme) i.icon.facebook.f:before{content:"\F09A"}html:not(.honeywell-dark-theme) i.icon.github:before{content:"\F09B"}html:not(.honeywell-dark-theme) i.icon.pinterest:before{content:"\F0D2"}html:not(.honeywell-dark-theme) i.icon.pinterest.square:before{content:"\F0D3"}html:not(.honeywell-dark-theme) i.icon.google.plus.square:before{content:"\F0D4"}html:not(.honeywell-dark-theme) i.icon.google.plus:before{content:"\F0D5"}html:not(.honeywell-dark-theme) i.icon.linkedin:before{content:"\F0E1"}html:not(.honeywell-dark-theme) i.icon.github.alternate:before{content:"\F113"}html:not(.honeywell-dark-theme) i.icon.maxcdn:before{content:"\F136"}html:not(.honeywell-dark-theme) i.icon.youtube.square:before{content:"\F166"}html:not(.honeywell-dark-theme) i.icon.youtube:before{content:"\F167"}html:not(.honeywell-dark-theme) i.icon.xing:before{content:"\F168"}html:not(.honeywell-dark-theme) i.icon.xing.square:before{content:"\F169"}html:not(.honeywell-dark-theme) i.icon.youtube.play:before{content:"\F16A"}html:not(.honeywell-dark-theme) i.icon.dropbox:before{content:"\F16B"}html:not(.honeywell-dark-theme) i.icon.stack.overflow:before{content:"\F16C"}html:not(.honeywell-dark-theme) i.icon.instagram:before{content:"\F16D"}html:not(.honeywell-dark-theme) i.icon.flickr:before{content:"\F16E"}html:not(.honeywell-dark-theme) i.icon.adn:before{content:"\F170"}html:not(.honeywell-dark-theme) i.icon.bitbucket:before{content:"\F171"}html:not(.honeywell-dark-theme) i.icon.bitbucket.square:before{content:"\F172"}html:not(.honeywell-dark-theme) i.icon.tumblr:before{content:"\F173"}html:not(.honeywell-dark-theme) i.icon.tumblr.square:before{content:"\F174"}html:not(.honeywell-dark-theme) i.icon.apple:before{content:"\F179"}html:not(.honeywell-dark-theme) i.icon.windows:before{content:"\F17A"}html:not(.honeywell-dark-theme) i.icon.android:before{content:"\F17B"}html:not(.honeywell-dark-theme) i.icon.linux:before{content:"\F17C"}html:not(.honeywell-dark-theme) i.icon.dribble:before{content:"\F17D"}html:not(.honeywell-dark-theme) i.icon.skype:before{content:"\F17E"}html:not(.honeywell-dark-theme) i.icon.foursquare:before{content:"\F180"}html:not(.honeywell-dark-theme) i.icon.trello:before{content:"\F181"}html:not(.honeywell-dark-theme) i.icon.gittip:before{content:"\F184"}html:not(.honeywell-dark-theme) i.icon.vk:before{content:"\F189"}html:not(.honeywell-dark-theme) i.icon.weibo:before{content:"\F18A"}html:not(.honeywell-dark-theme) i.icon.renren:before{content:"\F18B"}html:not(.honeywell-dark-theme) i.icon.pagelines:before{content:"\F18C"}html:not(.honeywell-dark-theme) i.icon.stack.exchange:before{content:"\F18D"}html:not(.honeywell-dark-theme) i.icon.vimeo.square:before{content:"\F194"}html:not(.honeywell-dark-theme) i.icon.slack:before{content:"\F198"}html:not(.honeywell-dark-theme) i.icon.wordpress:before{content:"\F19A"}html:not(.honeywell-dark-theme) i.icon.yahoo:before{content:"\F19E"}html:not(.honeywell-dark-theme) i.icon.google:before{content:"\F1A0"}html:not(.honeywell-dark-theme) i.icon.reddit:before{content:"\F1A1"}html:not(.honeywell-dark-theme) i.icon.reddit.square:before{content:"\F1A2"}html:not(.honeywell-dark-theme) i.icon.stumbleupon.circle:before{content:"\F1A3"}html:not(.honeywell-dark-theme) i.icon.stumbleupon:before{content:"\F1A4"}html:not(.honeywell-dark-theme) i.icon.delicious:before{content:"\F1A5"}html:not(.honeywell-dark-theme) i.icon.digg:before{content:"\F1A6"}html:not(.honeywell-dark-theme) i.icon.pied.piper:before{content:"\F1A7"}html:not(.honeywell-dark-theme) i.icon.pied.piper.alternate:before{content:"\F1A8"}html:not(.honeywell-dark-theme) i.icon.drupal:before{content:"\F1A9"}html:not(.honeywell-dark-theme) i.icon.joomla:before{content:"\F1AA"}html:not(.honeywell-dark-theme) i.icon.behance:before{content:"\F1B4"}html:not(.honeywell-dark-theme) i.icon.behance.square:before{content:"\F1B5"}html:not(.honeywell-dark-theme) i.icon.steam:before{content:"\F1B6"}html:not(.honeywell-dark-theme) i.icon.steam.square:before{content:"\F1B7"}html:not(.honeywell-dark-theme) i.icon.spotify:before{content:"\F1BC"}html:not(.honeywell-dark-theme) i.icon.deviantart:before{content:"\F1BD"}html:not(.honeywell-dark-theme) i.icon.soundcloud:before{content:"\F1BE"}html:not(.honeywell-dark-theme) i.icon.vine:before{content:"\F1CA"}html:not(.honeywell-dark-theme) i.icon.codepen:before{content:"\F1CB"}html:not(.honeywell-dark-theme) i.icon.jsfiddle:before{content:"\F1CC"}html:not(.honeywell-dark-theme) i.icon.rebel:before{content:"\F1D0"}html:not(.honeywell-dark-theme) i.icon.empire:before{content:"\F1D1"}html:not(.honeywell-dark-theme) i.icon.git.square:before{content:"\F1D2"}html:not(.honeywell-dark-theme) i.icon.git:before{content:"\F1D3"}html:not(.honeywell-dark-theme) i.icon.hacker.news:before{content:"\F1D4"}html:not(.honeywell-dark-theme) i.icon.tencent.weibo:before{content:"\F1D5"}html:not(.honeywell-dark-theme) i.icon.qq:before{content:"\F1D6"}html:not(.honeywell-dark-theme) i.icon.wechat:before{content:"\F1D7"}html:not(.honeywell-dark-theme) i.icon.slideshare:before{content:"\F1E7"}html:not(.honeywell-dark-theme) i.icon.twitch:before{content:"\F1E8"}html:not(.honeywell-dark-theme) i.icon.yelp:before{content:"\F1E9"}html:not(.honeywell-dark-theme) i.icon.lastfm:before{content:"\F202"}html:not(.honeywell-dark-theme) i.icon.lastfm.square:before{content:"\F203"}html:not(.honeywell-dark-theme) i.icon.ioxhost:before{content:"\F208"}html:not(.honeywell-dark-theme) i.icon.angellist:before{content:"\F209"}html:not(.honeywell-dark-theme) i.icon.meanpath:before{content:"\F20C"}html:not(.honeywell-dark-theme) i.icon.buysellads:before{content:"\F20D"}html:not(.honeywell-dark-theme) i.icon.connectdevelop:before{content:"\F20E"}html:not(.honeywell-dark-theme) i.icon.dashcube:before{content:"\F210"}html:not(.honeywell-dark-theme) i.icon.forumbee:before{content:"\F211"}html:not(.honeywell-dark-theme) i.icon.leanpub:before{content:"\F212"}html:not(.honeywell-dark-theme) i.icon.sellsy:before{content:"\F213"}html:not(.honeywell-dark-theme) i.icon.shirtsinbulk:before{content:"\F214"}html:not(.honeywell-dark-theme) i.icon.simplybuilt:before{content:"\F215"}html:not(.honeywell-dark-theme) i.icon.skyatlas:before{content:"\F216"}html:not(.honeywell-dark-theme) i.icon.facebook:before{content:"\F230"}html:not(.honeywell-dark-theme) i.icon.pinterest:before{content:"\F231"}html:not(.honeywell-dark-theme) i.icon.whatsapp:before{content:"\F232"}html:not(.honeywell-dark-theme) i.icon.viacoin:before{content:"\F237"}html:not(.honeywell-dark-theme) i.icon.medium:before{content:"\F23A"}html:not(.honeywell-dark-theme) i.icon.y.combinator:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.optinmonster:before{content:"\F23C"}html:not(.honeywell-dark-theme) i.icon.opencart:before{content:"\F23D"}html:not(.honeywell-dark-theme) i.icon.expeditedssl:before{content:"\F23E"}html:not(.honeywell-dark-theme) i.icon.gg:before{content:"\F260"}html:not(.honeywell-dark-theme) i.icon.gg.circle:before{content:"\F261"}html:not(.honeywell-dark-theme) i.icon.tripadvisor:before{content:"\F262"}html:not(.honeywell-dark-theme) i.icon.odnoklassniki:before{content:"\F263"}html:not(.honeywell-dark-theme) i.icon.odnoklassniki.square:before{content:"\F264"}html:not(.honeywell-dark-theme) i.icon.pocket:before{content:"\F265"}html:not(.honeywell-dark-theme) i.icon.wikipedia:before{content:"\F266"}html:not(.honeywell-dark-theme) i.icon.safari:before{content:"\F267"}html:not(.honeywell-dark-theme) i.icon.chrome:before{content:"\F268"}html:not(.honeywell-dark-theme) i.icon.firefox:before{content:"\F269"}html:not(.honeywell-dark-theme) i.icon.opera:before{content:"\F26A"}html:not(.honeywell-dark-theme) i.icon.internet.explorer:before{content:"\F26B"}html:not(.honeywell-dark-theme) i.icon.contao:before{content:"\F26D"}html:not(.honeywell-dark-theme) i.icon.\35 00px:before{content:"\F26E"}html:not(.honeywell-dark-theme) i.icon.amazon:before{content:"\F270"}html:not(.honeywell-dark-theme) i.icon.houzz:before{content:"\F27C"}html:not(.honeywell-dark-theme) i.icon.vimeo:before{content:"\F27D"}html:not(.honeywell-dark-theme) i.icon.black.tie:before{content:"\F27E"}html:not(.honeywell-dark-theme) i.icon.fonticons:before{content:"\F280"}html:not(.honeywell-dark-theme) i.icon.reddit.alien:before{content:"\F281"}html:not(.honeywell-dark-theme) i.icon.microsoft.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.codiepie:before{content:"\F284"}html:not(.honeywell-dark-theme) i.icon.modx:before{content:"\F285"}html:not(.honeywell-dark-theme) i.icon.fort.awesome:before{content:"\F286"}html:not(.honeywell-dark-theme) i.icon.product.hunt:before{content:"\F288"}html:not(.honeywell-dark-theme) i.icon.mixcloud:before{content:"\F289"}html:not(.honeywell-dark-theme) i.icon.scribd:before{content:"\F28A"}html:not(.honeywell-dark-theme) i.icon.gitlab:before{content:"\F296"}html:not(.honeywell-dark-theme) i.icon.wpbeginner:before{content:"\F297"}html:not(.honeywell-dark-theme) i.icon.wpforms:before{content:"\F298"}html:not(.honeywell-dark-theme) i.icon.envira.gallery:before{content:"\F299"}html:not(.honeywell-dark-theme) i.icon.glide:before{content:"\F2A5"}html:not(.honeywell-dark-theme) i.icon.glide.g:before{content:"\F2A6"}html:not(.honeywell-dark-theme) i.icon.viadeo:before{content:"\F2A9"}html:not(.honeywell-dark-theme) i.icon.viadeo.square:before{content:"\F2AA"}html:not(.honeywell-dark-theme) i.icon.snapchat:before{content:"\F2AB"}html:not(.honeywell-dark-theme) i.icon.snapchat.ghost:before{content:"\F2AC"}html:not(.honeywell-dark-theme) i.icon.snapchat.square:before{content:"\F2AD"}html:not(.honeywell-dark-theme) i.icon.pied.piper.hat:before{content:"\F2AE"}html:not(.honeywell-dark-theme) i.icon.first.order:before{content:"\F2B0"}html:not(.honeywell-dark-theme) i.icon.yoast:before{content:"\F2B1"}html:not(.honeywell-dark-theme) i.icon.themeisle:before{content:"\F2B2"}html:not(.honeywell-dark-theme) i.icon.google.plus.circle:before{content:"\F2B3"}html:not(.honeywell-dark-theme) i.icon.font.awesome:before{content:"\F2B4"}html:not(.honeywell-dark-theme) i.icon.linode:before{content:"\F2B8"}html:not(.honeywell-dark-theme) i.icon.quora:before{content:"\F2C4"}html:not(.honeywell-dark-theme) i.icon.free.code.camp:before{content:"\F2C5"}html:not(.honeywell-dark-theme) i.icon.telegram:before{content:"\F2C6"}html:not(.honeywell-dark-theme) i.icon.bandcamp:before{content:"\F2D5"}html:not(.honeywell-dark-theme) i.icon.grav:before{content:"\F2D6"}html:not(.honeywell-dark-theme) i.icon.etsy:before{content:"\F2D7"}html:not(.honeywell-dark-theme) i.icon.imdb:before{content:"\F2D8"}html:not(.honeywell-dark-theme) i.icon.ravelry:before{content:"\F2D9"}html:not(.honeywell-dark-theme) i.icon.eercast:before{content:"\F2DA"}html:not(.honeywell-dark-theme) i.icon.superpowers:before{content:"\F2DD"}html:not(.honeywell-dark-theme) i.icon.wpexplorer:before{content:"\F2DE"}html:not(.honeywell-dark-theme) i.icon.meetup:before{content:"\F2E0"}html:not(.honeywell-dark-theme) i.icon.like:before{content:"\F004"}html:not(.honeywell-dark-theme) i.icon.favorite:before{content:"\F005"}html:not(.honeywell-dark-theme) i.icon.video:before{content:"\F008"}html:not(.honeywell-dark-theme) i.icon.check:before{content:"\F00C"}html:not(.honeywell-dark-theme) i.icon.close:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.cancel:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.delete:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.x:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.zoom.in:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.magnify:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.shutdown:before{content:"\F011"}html:not(.honeywell-dark-theme) i.icon.clock:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.time:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.play.circle.outline:before{content:"\F01D"}html:not(.honeywell-dark-theme) i.icon.headphone:before{content:"\F025"}html:not(.honeywell-dark-theme) i.icon.camera:before{content:"\F030"}html:not(.honeywell-dark-theme) i.icon.video.camera:before{content:"\F03D"}html:not(.honeywell-dark-theme) i.icon.picture:before{content:"\F03E"}html:not(.honeywell-dark-theme) i.icon.pencil:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.compose:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.point:before{content:"\F041"}html:not(.honeywell-dark-theme) i.icon.tint:before{content:"\F043"}html:not(.honeywell-dark-theme) i.icon.signup:before{content:"\F044"}html:not(.honeywell-dark-theme) i.icon.plus.circle:before{content:"\F055"}html:not(.honeywell-dark-theme) i.icon.question.circle:before{content:"\F059"}html:not(.honeywell-dark-theme) i.icon.dont:before{content:"\F05E"}html:not(.honeywell-dark-theme) i.icon.minimize:before{content:"\F066"}html:not(.honeywell-dark-theme) i.icon.add:before{content:"\F067"}html:not(.honeywell-dark-theme) i.icon.exclamation.circle:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.attention:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.eye:before{content:"\F06E"}html:not(.honeywell-dark-theme) i.icon.exclamation.triangle:before{content:"\F071"}html:not(.honeywell-dark-theme) i.icon.shuffle:before{content:"\F074"}html:not(.honeywell-dark-theme) i.icon.chat:before{content:"\F075"}html:not(.honeywell-dark-theme) i.icon.cart:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.shopping.cart:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.bar.graph:before{content:"\F080"}html:not(.honeywell-dark-theme) i.icon.key:before{content:"\F084"}html:not(.honeywell-dark-theme) i.icon.cogs:before{content:"\F085"}html:not(.honeywell-dark-theme) i.icon.discussions:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.like.outline:before{content:"\F087"}html:not(.honeywell-dark-theme) i.icon.dislike.outline:before{content:"\F088"}html:not(.honeywell-dark-theme) i.icon.heart.outline:before{content:"\F08A"}html:not(.honeywell-dark-theme) i.icon.log.out:before{content:"\F08B"}html:not(.honeywell-dark-theme) i.icon.thumb.tack:before{content:"\F08D"}html:not(.honeywell-dark-theme) i.icon.winner:before{content:"\F091"}html:not(.honeywell-dark-theme) i.icon.phone:before{content:"\F095"}html:not(.honeywell-dark-theme) i.icon.bookmark.outline:before{content:"\F097"}html:not(.honeywell-dark-theme) i.icon.phone.square:before{content:"\F098"}html:not(.honeywell-dark-theme) i.icon.credit.card:before{content:"\F09D"}html:not(.honeywell-dark-theme) i.icon.hdd.outline:before{content:"\F0A0"}html:not(.honeywell-dark-theme) i.icon.bullhorn:before{content:"\F0A1"}html:not(.honeywell-dark-theme) i.icon.bell.outline:before{content:"\F0A2"}html:not(.honeywell-dark-theme) i.icon.hand.outline.right:before{content:"\F0A4"}html:not(.honeywell-dark-theme) i.icon.hand.outline.left:before{content:"\F0A5"}html:not(.honeywell-dark-theme) i.icon.hand.outline.up:before{content:"\F0A6"}html:not(.honeywell-dark-theme) i.icon.hand.outline.down:before{content:"\F0A7"}html:not(.honeywell-dark-theme) i.icon.globe:before{content:"\F0AC"}html:not(.honeywell-dark-theme) i.icon.wrench:before{content:"\F0AD"}html:not(.honeywell-dark-theme) i.icon.briefcase:before{content:"\F0B1"}html:not(.honeywell-dark-theme) i.icon.group:before{content:"\F0C0"}html:not(.honeywell-dark-theme) i.icon.linkify:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.chain:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.flask:before{content:"\F0C3"}html:not(.honeywell-dark-theme) i.icon.sidebar:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.bars:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.list.ul:before{content:"\F0CA"}html:not(.honeywell-dark-theme) i.icon.list.ol:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.numbered.list:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.magic:before{content:"\F0D0"}html:not(.honeywell-dark-theme) i.icon.truck:before{content:"\F0D1"}html:not(.honeywell-dark-theme) i.icon.currency:before{content:"\F0D6"}html:not(.honeywell-dark-theme) i.icon.triangle.down:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.dropdown:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.triangle.up:before{content:"\F0D8"}html:not(.honeywell-dark-theme) i.icon.triangle.left:before{content:"\F0D9"}html:not(.honeywell-dark-theme) i.icon.triangle.right:before{content:"\F0DA"}html:not(.honeywell-dark-theme) i.icon.envelope:before{content:"\F0E0"}html:not(.honeywell-dark-theme) i.icon.conversation:before{content:"\F0E6"}html:not(.honeywell-dark-theme) i.icon.rain:before{content:"\F0E9"}html:not(.honeywell-dark-theme) i.icon.clipboard:before{content:"\F0EA"}html:not(.honeywell-dark-theme) i.icon.lightbulb:before{content:"\F0EB"}html:not(.honeywell-dark-theme) i.icon.bell:before{content:"\F0F3"}html:not(.honeywell-dark-theme) i.icon.ambulance:before{content:"\F0F9"}html:not(.honeywell-dark-theme) i.icon.medkit:before{content:"\F0FA"}html:not(.honeywell-dark-theme) i.icon.fighter.jet:before{content:"\F0FB"}html:not(.honeywell-dark-theme) i.icon.beer:before{content:"\F0FC"}html:not(.honeywell-dark-theme) i.icon.plus.square:before{content:"\F0FE"}html:not(.honeywell-dark-theme) i.icon.computer:before{content:"\F108"}html:not(.honeywell-dark-theme) i.icon.circle.outline:before{content:"\F10C"}html:not(.honeywell-dark-theme) i.icon.gamepad:before{content:"\F11B"}html:not(.honeywell-dark-theme) i.icon.star.half.full:before{content:"\F123"}html:not(.honeywell-dark-theme) i.icon.broken.chain:before{content:"\F127"}html:not(.honeywell-dark-theme) i.icon.question:before{content:"\F128"}html:not(.honeywell-dark-theme) i.icon.exclamation:before{content:"\F12A"}html:not(.honeywell-dark-theme) i.icon.eraser:before{content:"\F12D"}html:not(.honeywell-dark-theme) i.icon.microphone:before{content:"\F130"}html:not(.honeywell-dark-theme) i.icon.microphone.slash:before{content:"\F131"}html:not(.honeywell-dark-theme) i.icon.shield:before{content:"\F132"}html:not(.honeywell-dark-theme) i.icon.target:before{content:"\F140"}html:not(.honeywell-dark-theme) i.icon.play.circle:before{content:"\F144"}html:not(.honeywell-dark-theme) i.icon.pencil.square:before{content:"\F14B"}html:not(.honeywell-dark-theme) i.icon.eur:before{content:"\F153"}html:not(.honeywell-dark-theme) i.icon.gbp:before{content:"\F154"}html:not(.honeywell-dark-theme) i.icon.usd:before{content:"\F155"}html:not(.honeywell-dark-theme) i.icon.inr:before{content:"\F156"}html:not(.honeywell-dark-theme) i.icon.cny:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.rmb:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.jpy:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.rouble:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.rub:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.krw:before{content:"\F159"}html:not(.honeywell-dark-theme) i.icon.btc:before{content:"\F15A"}html:not(.honeywell-dark-theme) i.icon.gratipay:before{content:"\F184"}html:not(.honeywell-dark-theme) i.icon.zip:before{content:"\F187"}html:not(.honeywell-dark-theme) i.icon.dot.circle.outline:before{content:"\F192"}html:not(.honeywell-dark-theme) i.icon.try:before{content:"\F195"}html:not(.honeywell-dark-theme) i.icon.graduation:before{content:"\F19D"}html:not(.honeywell-dark-theme) i.icon.circle.outline:before{content:"\F1DB"}html:not(.honeywell-dark-theme) i.icon.sliders:before{content:"\F1DE"}html:not(.honeywell-dark-theme) i.icon.weixin:before{content:"\F1D7"}html:not(.honeywell-dark-theme) i.icon.tty:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.teletype:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.binoculars:before{content:"\F1E5"}html:not(.honeywell-dark-theme) i.icon.power.cord:before{content:"\F1E6"}html:not(.honeywell-dark-theme) i.icon.wi-fi:before{content:"\F1EB"}html:not(.honeywell-dark-theme) i.icon.visa.card:before{content:"\F1F0"}html:not(.honeywell-dark-theme) i.icon.mastercard.card:before{content:"\F1F1"}html:not(.honeywell-dark-theme) i.icon.discover.card:before{content:"\F1F2"}html:not(.honeywell-dark-theme) i.icon.amex:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.american.express.card:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.stripe.card:before{content:"\F1F5"}html:not(.honeywell-dark-theme) i.icon.bell.slash:before{content:"\F1F6"}html:not(.honeywell-dark-theme) i.icon.bell.slash.outline:before{content:"\F1F7"}html:not(.honeywell-dark-theme) i.icon.area.graph:before{content:"\F1FE"}html:not(.honeywell-dark-theme) i.icon.pie.graph:before{content:"\F200"}html:not(.honeywell-dark-theme) i.icon.line.graph:before{content:"\F201"}html:not(.honeywell-dark-theme) i.icon.cc:before{content:"\F20A"}html:not(.honeywell-dark-theme) i.icon.sheqel:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.ils:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.plus.cart:before{content:"\F217"}html:not(.honeywell-dark-theme) i.icon.arrow.down.cart:before{content:"\F218"}html:not(.honeywell-dark-theme) i.icon.detective:before{content:"\F21B"}html:not(.honeywell-dark-theme) i.icon.venus:before{content:"\F221"}html:not(.honeywell-dark-theme) i.icon.mars:before{content:"\F222"}html:not(.honeywell-dark-theme) i.icon.mercury:before{content:"\F223"}html:not(.honeywell-dark-theme) i.icon.intersex:before{content:"\F224"}html:not(.honeywell-dark-theme) i.icon.venus.double:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.female.homosexual:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.mars.double:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.male.homosexual:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.venus.mars:before{content:"\F228"}html:not(.honeywell-dark-theme) i.icon.mars.stroke:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.mars.alternate:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.mars.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.mars.stroke.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.mars.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.mars.stroke.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.asexual:before{content:"\F22D"}html:not(.honeywell-dark-theme) i.icon.facebook.official:before{content:"\F230"}html:not(.honeywell-dark-theme) i.icon.user.plus:before{content:"\F234"}html:not(.honeywell-dark-theme) i.icon.user.times:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.close:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.cancel:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.delete:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.x:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.bed:before{content:"\F236"}html:not(.honeywell-dark-theme) i.icon.yc:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.ycombinator:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.battery.four:before{content:"\F240"}html:not(.honeywell-dark-theme) i.icon.battery.three:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.three.quarters:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.two:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.half:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.one:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.quarter:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.zero:before{content:"\F244"}html:not(.honeywell-dark-theme) i.icon.i.cursor:before{content:"\F246"}html:not(.honeywell-dark-theme) i.icon.jcb:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.japan.credit.bureau.card:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.diners.club.card:before{content:"\F24C"}html:not(.honeywell-dark-theme) i.icon.balance:before{content:"\F24E"}html:not(.honeywell-dark-theme) i.icon.hourglass.outline:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.zero:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.one:before{content:"\F251"}html:not(.honeywell-dark-theme) i.icon.hourglass.two:before{content:"\F252"}html:not(.honeywell-dark-theme) i.icon.hourglass.three:before{content:"\F253"}html:not(.honeywell-dark-theme) i.icon.hourglass.four:before{content:"\F254"}html:not(.honeywell-dark-theme) i.icon.grab:before{content:"\F255"}html:not(.honeywell-dark-theme) i.icon.hand.victory:before{content:"\F25B"}html:not(.honeywell-dark-theme) i.icon.tm:before{content:"\F25C"}html:not(.honeywell-dark-theme) i.icon.r.circle:before{content:"\F25D"}html:not(.honeywell-dark-theme) i.icon.television:before{content:"\F26C"}html:not(.honeywell-dark-theme) i.icon.five.hundred.pixels:before{content:"\F26E"}html:not(.honeywell-dark-theme) i.icon.calendar.plus:before{content:"\F271"}html:not(.honeywell-dark-theme) i.icon.calendar.minus:before{content:"\F272"}html:not(.honeywell-dark-theme) i.icon.calendar.times:before{content:"\F273"}html:not(.honeywell-dark-theme) i.icon.calendar.check:before{content:"\F274"}html:not(.honeywell-dark-theme) i.icon.factory:before{content:"\F275"}html:not(.honeywell-dark-theme) i.icon.commenting:before{content:"\F27A"}html:not(.honeywell-dark-theme) i.icon.commenting.outline:before{content:"\F27B"}html:not(.honeywell-dark-theme) i.icon.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.ms.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.wordpress.beginner:before{content:"\F297"}html:not(.honeywell-dark-theme) i.icon.wordpress.forms:before{content:"\F298"}html:not(.honeywell-dark-theme) i.icon.envira:before{content:"\F299"}html:not(.honeywell-dark-theme) i.icon.question.circle.outline:before{content:"\F29C"}html:not(.honeywell-dark-theme) i.icon.assistive.listening.devices:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.als:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.ald:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.asl.interpreting:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.deaf:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.american.sign.language.interpreting:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.hard.of.hearing:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.signing:before{content:"\F2A7"}html:not(.honeywell-dark-theme) i.icon.new.pied.piper:before{content:"\F2AE"}html:not(.honeywell-dark-theme) i.icon.theme.isle:before{content:"\F2B2"}html:not(.honeywell-dark-theme) i.icon.google.plus.official:before{content:"\F2B3"}html:not(.honeywell-dark-theme) i.icon.fa:before{content:"\F2B4"}html:not(.honeywell-dark-theme) i.icon.vcard:before{content:"\F2BB"}html:not(.honeywell-dark-theme) i.icon.vcard.outline:before{content:"\F2BC"}html:not(.honeywell-dark-theme) i.icon.drivers.license:before{content:"\F2C2"}html:not(.honeywell-dark-theme) i.icon.drivers.license.outline:before{content:"\F2C3"}html:not(.honeywell-dark-theme) i.icon.thermometer:before{content:"\F2C7"}html:not(.honeywell-dark-theme) i.icon.s15:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.bath:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.times.rectangle:before{content:"\F2D3"}html:not(.honeywell-dark-theme) i.icon.times.rectangle.outline:before{content:"\F2D4"}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .total-count{color:#303030;display:inline-flex;align-items:center;padding-left:.5rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar{display:flex;justify-content:space-between;align-content:center;width:100%;height:100%;font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar.no-search,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar.no-search{justify-content:flex-end}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .menu-items,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .totals,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .menu-items,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals{display:flex;justify-content:center;align-items:center;height:100%}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item{padding:0 .5rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item .btn-icon,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item .btn-icon,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item .btn-icon,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item .btn-icon{font-size:1rem;padding-left:0 !important;padding-right:.25rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item.disabled,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item.disabled,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item.disabled,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item.disabled{cursor:not-allowed;color:#a0a0a0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item{color:#303030}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item:not(.disabled),html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item:not(.disabled){cursor:pointer}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .header-bar-item:not(.disabled):hover,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .header-bar-item:not(.disabled):hover{background:#f0f0f0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item:not(.disabled),html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item:not(.disabled){cursor:pointer}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .filter-bar .action-bar-item:not(.disabled):hover,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .action-bar-item:not(.disabled):hover{background:#10659F}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar{background:#1274B7;color:#fff;padding-left:1rem;padding-right:1rem;font-size:initial}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .close-btn{cursor:pointer;display:block;justify-content:center;align-content:center;margin-left:1rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .close-btn .close-btn-icon{padding-left:0 !important;padding-right:0 !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .total-value,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .selected-value{display:inline-block}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .total-value{padding-right:.5rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .action-bar .totals .selected-value{padding-left:.5rem;margin-right:.5rem;border-left:1px solid #fff}@keyframes load{0%{background-color:#606060;opacity:1}50%{background-color:#303030;opacity:0.6}100%{background-color:#606060;opacity:1}}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead{background-clip:padding-box;background:#fff;border:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead tr{background:#fff;background-clip:padding-box}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th{background:transparent;text-align:left;word-wrap:break-word;white-space:pre-wrap;border-style:solid;border-color:#d0d0d0;background:transparent;background-clip:padding-box}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:not(:first-child){border-left:.0625rem solid transparent !important}}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-sortable-column:hover{box-shadow:inset -.0625rem 0 0 #d0d0d0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-sortable-column:not(:hover):focus{outline:none !important;box-shadow:none !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:not(:last-child),html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-unselectable-text:not(:last-child){border-right:.0625rem solid transparent}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:first-child.p-sortable-column:hover,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:first-child.p-resizable-column:hover{border-color:#d0d0d0;box-shadow:inset 0 0 0 -1rem #d0d0d0,inset .0625rem 0 0 -1rem #d0d0d0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-sortable-column:not(:first-child):not(:last-child):hover,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-resizable-column:not(:first-child):not(:last-child):hover{background:#fff;box-shadow:inset -.0625rem 0 0 #d0d0d0,inset .0625rem 0 0 #d0d0d0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:last-child.p-sortable-column:hover,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th:last-child.p-resizable-column:hover{box-shadow:inset .0625rem 0 0 #d0d0d0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-selection-column{text-align:right !important;padding:.687rem 1.5rem .687rem 1rem;padding-left:1rem;padding-right:.5rem;position:relative}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.p-selection-column .p-checkbox-box{display:none;cursor:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.rowHeader{background-clip:padding-box}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th.rowHeader+.p-sortable-column{border-left:0px !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-column-title{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:inline-block;vertical-align:middle;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:calc(100% - 1rem)}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon{margin-left:.25rem;position:relative;height:.75rem;display:inline-block;width:.75rem;background-image:url(/static/media/Sort-Default.7415ced4.svg);background-size:.75rem .75rem;background-repeat:no-repeat;position:relative;color:#d0d0d0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon:hover{color:#404040}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon:before{display:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon.pi-sort-up{background-image:url(/static/media/Sort-A-Z.f4da55e6.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-sortable-column-icon.pi-sort-down{background-image:url(/static/media/Sort-Z-A.9cc0c414.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead th .p-column-resizer{cursor:col-resize !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-scrollable-header{background:none !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-column-resizer-helper.p-highlight{border-color:#d0d0d0;background:#d0d0d0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td{line-height:.5rem;text-align:inherit;position:relative;background-clip:padding-box}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-right{text-align:right !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right .cell-data-wrap,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right .cell-data-wrap,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-right .cell-data-wrap{padding:.5625rem 1rem .5625rem 1.5rem;padding-top:5px;padding-bottom:5px}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right .cell-row-input,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right .cell-row-input,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-right .cell-row-input{text-align:right !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-left,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-left,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-left{text-align:left !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-center,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-center,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.align-center{text-align:center !important;padding-right:0;padding-left:0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.rowHeader,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.rowHeader,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.rowHeader{border-right:0 solid #d0d0d0 !important;border-bottom:.0625rem solid #d0d0d0 !important;background:#fff;box-shadow:inset -.0625rem 0 0 #d0d0d0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.rowHeader .cell-data-wrap,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.rowHeader .cell-data-wrap,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.rowHeader .cell-data-wrap{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.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.rowHeader+.p-resizable-column,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.rowHeader+.p-resizable-column,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tbody>tr>td.rowHeader+.p-resizable-column{border-left:0px !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td{padding:.687rem 1.5rem .687rem 1rem;background-clip:padding-box;padding-top:6px;padding-bottom:6px}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-thead>tr>th.align-right,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot>tr>td.align-right{text-align:right;padding:.687rem 1rem .687rem 1.5rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-tfoot{display:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody{border:.0625rem solid #d0d0d0;border-top:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .p-datatable-emptymessage>td{padding:.5625rem 1.5rem .5625rem 1rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr{border:none;outline:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr:nth-child(even){background-color:#f7f7f7}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr:nth-child(odd){background-color:#fff}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr.p-highlight{background-color:#f0f0f0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr:hover{background:#f0f0f0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td{padding:0;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}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td .cell-data-wrap{word-wrap:break-word;white-space:pre-wrap;padding:.5625rem 1.5rem .5625rem 1rem;position:relative;padding-top:5px;padding-bottom:5px}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td .cell-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td:first-child .datatable-loading-body{padding-left:1rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody>tr>td:last-child .datatable-loading-body{padding-right:1rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody tr.p-datatable-row>td.p-selection-column{text-align:right !important;padding:.5625rem 1.5rem .5625rem 1rem;padding-left:1rem;padding-right:.5rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input{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;width:100%;line-height:.5rem;margin:0;border-color:#1274B7;height:2rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input{line-height:.875rem !important}}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input:focus{border-color:#1274B7;outline:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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;line-height:.875rem !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-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.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .cell-row-input::-webkit-inner-spin-button{margin-left:.25rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .datatable-loading-body{display:flex;height:100%;justify-content:center;align-items:center;background-color:#fff;padding:.5625rem 0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .datatable-loading-body:nth-child(even){background-color:#f7f7f7}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable tbody.p-datatable-tbody .datatable-loading-body .loading-indicator{opacity:0.7;width:100%;height:.875rem;animation:load 1s linear 0s normal infinite none running}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column{width:2.5rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox{height:auto;top:.5625rem;left:1rem;height:1rem;width:1rem;position:absolute}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-box{border:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-box.p-highlight,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-box.p-highlight{background:#1274B7;border:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-box,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton .p-radiobutton-box{position:relative;height:1rem;width:1rem;background:#fff;border-radius:0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon{line-height:1rem;font-size:.75rem;position:initial;left:initial;top:initial;width:initial;height:initial;margin-top:initial;margin-left:initial}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-check,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-circle-on,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-check,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-circle-on{font-family:"Honeywell-Icons" !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-check:before,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-circle-on:before,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-check:before,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-circle-on:before{content:"\EA56" !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-check::before,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-checkbox-icon.pi-circle-on::before,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-check::before,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-selection-column .p-radiobutton-icon.pi-circle-on::before{opacity:1;color:white;transform:scale(1);padding-top:0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.hide-checkbox th.p-selection-column .p-checkbox.p-component{display:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box{margin-right:0 !important;padding-right:10px;border:#d0d0d0 .0625rem solid;background:#fff}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box th{border-top:none;border-bottom:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box th:first-child{border-left:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-header-box th:last-child{border-right:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body-table tbody.p-datatable-tbody{border-right:none !important;border-bottom:none !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body{min-height:48px;min-height:41px;border-bottom:#d0d0d0 .0625rem solid;border-right:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar{width:10px}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar-track{background:#fff;border-left:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar-thumb{background:#606060}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .datatable-pagination-wrap{position:relative}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .datatable-pagination-wrap .ui.pagination.datatable-pagination{border-top:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .datatable-pagination-wrap .ui.pagination.datatable-pagination.loading+.pagination-loading-overlay{width:100%;height:3.3rem;top:0;left:0;z-index:1;position:absolute;background-color:rgba(0,0,0,0.4);opacity:0.1}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.hide-header .p-datatable-thead{display:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.hide-header tbody{border-top:.0625rem solid #d0d0d0 !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable.hover-over .p-datatable-tbody{cursor:pointer !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-header{border-right:#d0d0d0 .0625rem solid;border-left:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-header-box{border-left:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body-table tbody.p-datatable-tbody{border-left:none !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body{border-bottom:#d0d0d0 .0625rem solid;border-right:#d0d0d0 .0625rem solid;border-left:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar{height:10px}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.h-scrollable .p-datatable-scrollable .p-datatable-scrollable-body::-webkit-scrollbar-track:horizontal{border-left:none;border-top:#d0d0d0 .0625rem solid;border-top:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .select-all-checkbox{padding-top:.625rem;position:absolute;z-index:1;transition:background-color 0.2s, box-shadow 0.2s;padding-left:1.0625rem;padding-top:.5625rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable-header .select-all-checkbox{padding-top:0;padding-left:1rem;top:3.5625rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar .p-datatable-header{border:none;height:0 !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar .p-datatable-header .select-all-checkbox{top:.6875rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar.selection .p-datatable-header,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar.search .p-datatable-header,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar.header-bar .p-datatable-header{height:3rem !important;border:1px solid #d0d0d0;border-bottom:0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar.selection .p-datatable-header .select-all-checkbox,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar.search .p-datatable-header .select-all-checkbox,html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.actionbar.header-bar .p-datatable-header .select-all-checkbox{top:3.5625rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap.hide-checkbox .select-all-checkbox{display:none}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header{color:#fff;padding:0px !important;display:flex;align-items:center;justify-content:flex-start;height:3rem;font-weight:inherit;border-color:#d0d0d0;background:#fff}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .search-output{display:flex;align-items:center;padding:0 .25rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .search-output .global-filter{height:100%;display:flex;align-items:center}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .p-datatable-header .search-output .global-filter .search-icon{height:2.5rem}html:not(.honeywell-dark-theme) .filter-bar{position:relative}html:not(.honeywell-dark-theme) .filter-bar .menu-items .header-bar-item.filter-panel-icon{padding-right:calc(.125rem * 5)}html:not(.honeywell-dark-theme) .filter-bar .menu-items .header-bar-item.filter-panel-icon .filter{color:#303030}html:not(.honeywell-dark-theme) .filter-bar .menu-items .header-bar-item.filter-panel-icon{padding-right:.75rem}html:not(.honeywell-dark-theme) .filter-bar .menu-items .header-bar-item .badged-filter.badged-icon .ui.label.badge{right:-12%}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel{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;z-index:500;overflow:hidden;position:absolute;right:0;max-height:0px;width:350px;padding:0;background:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,0.1);text-align:left}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel.show{max-height:500px;padding:.75rem 1rem;overflow-y:auto}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel.show.up{bottom:3rem}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel.show.down{top:3rem}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section{padding:.75rem 0;width:100%}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .section-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;font-weight:600;display:flex;justify-content:space-between;align-content:center;cursor:pointer}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .section-label-icon{color:#303030;transition:color 0.1s linear;cursor:pointer;padding:0 !important}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .section-label-icon:hover{color:#404040}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .section-label-icon:active{color:#b0b0b0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .section-label-icon.disabled{color:#b0b0b0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .section-content{max-height:0px;overflow:hidden}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .filter-item{padding-top:0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section .filter-item:last-child{padding-bottom:0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section.expanded{padding:.75rem 0 0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-section.expanded .section-content{max-height:1000px;padding:1rem 0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-item{padding:.75rem 0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-item.disabled{color:gray;cursor:not-allowed}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-item .reset{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:600;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;cursor:pointer}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-item .reset:active{color:#1274B7}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-item .reset:hover{color:#10659F}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-item .reset:disabled{color:#b0b0b0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel .filter-item .toggle-item{margin:0}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel>.filter-section,html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel>.filter-item{border-top:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel>.filter-section:first-child,html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel>.filter-item:first-child{border-top:none}html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel>.filter-section:first-child.reset-all,html:not(.honeywell-dark-theme) .filter-bar .menu-items .filter-panel>.filter-item:first-child.reset-all{padding-top:0}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .cell-status{height:.5rem;width:.5rem;border-radius:.5rem;position:absolute;top:50%;transform:translateY(-50%);left:.25rem;margin-right:.5rem}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .cell-status.red{background-color:#F15A4F !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .cell-status.orange{background-color:#f37021 !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .cell-status.green{background-color:#7eb338 !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .cell-status.blue{background-color:#1792e5 !important}html:not(.honeywell-dark-theme) .ui.forge-datatable-wrap .p-datatable .cell-status.grey{background-color:#b0b0b0 !important}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-toggler{line-height:1rem}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-toggler .pi-chevron-down,html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-toggler .pi-chevron-right{font-size:1rem;font-style:normal;padding-right:.5rem}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-toggler .pi-chevron-right{font-family:"Honeywell-Icons" !important}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-toggler .pi-chevron-right:before{content:"\EA57" !important}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-toggler .pi-chevron-down{font-family:"Honeywell-Icons" !important}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-toggler .pi-chevron-down:before{content:"\EA59" !important}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead{border:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead>tr>th{background:#fff;padding:.5625rem 1.5rem .5625rem 1rem;border:none;text-align:left}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead>tr>th .p-column-title{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 !important}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon{margin-left:.25rem;position:relative;height:.75rem;display:inline-block;width:.75rem;background-image:url(/static/media/Sort-Default.7415ced4.svg);background-size:.75rem .75rem;background-repeat:no-repeat;position:relative;color:#d0d0d0}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon:hover{color:#404040}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon:before{display:none}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon.pi-sort-up{background-image:url(/static/media/Sort-A-Z.f4da55e6.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-thead .p-sortable-column-icon.pi-sort-down{background-image:url(/static/media/Sort-Z-A.9cc0c414.svg);background-size:.75rem .75rem;background-repeat:no-repeat}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-tbody{border:#d0d0d0 .0625rem solid}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-tbody>tr:focus{outline:none}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-tbody>tr:nth-child(even){background:#fff}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-tbody>tr:nth-child(odd){background:#f7f7f7}html:not(.honeywell-dark-theme) .p-treetable.p-component .p-treetable-tbody>tr>td{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;word-wrap:break-word;white-space:pre-wrap;padding:.5625rem 1.5rem .5625rem 1rem;position:relative}


html.honeywell-dark-theme{/*!
 * # Semantic UI 2.2.11 - Icon
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}@font-face{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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}}html.honeywell-dark-theme .h-icon.global{font-family:'Honeywell-Global' !important}html.honeywell-dark-theme .h-icon.global.badge-alert:before{content:"\E900"}html.honeywell-dark-theme .h-icon.global.badge-help:before{content:"\E901"}html.honeywell-dark-theme .h-icon.global.badge-info:before{content:"\E902"}html.honeywell-dark-theme .h-icon.global.badge-stop:before{content:"\E903"}html.honeywell-dark-theme .h-icon.global.badge-warning:before{content:"\E904"}html.honeywell-dark-theme .h-icon.global.battery-empty:before{content:"\E905"}html.honeywell-dark-theme .h-icon.global.battery-full:before{content:"\E906"}html.honeywell-dark-theme .h-icon.global.battery-low:before{content:"\E907"}html.honeywell-dark-theme .h-icon.global.battery-mid:before{content:"\E908"}html.honeywell-dark-theme .h-icon.global.calendar:before{content:"\E909"}html.honeywell-dark-theme .h-icon.global.camera:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.global.caret-down:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.global.caret-left:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.global.caret-right:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.global.caret-up:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.global.check:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.global.close:before{content:"\E910"}html.honeywell-dark-theme .h-icon.global.credit-card:before{content:"\E911"}html.honeywell-dark-theme .h-icon.global.delete:before{content:"\E912"}html.honeywell-dark-theme .h-icon.global.document:before{content:"\E913"}html.honeywell-dark-theme .h-icon.global.edit-circled:before{content:"\E914"}html.honeywell-dark-theme .h-icon.global.edit:before{content:"\E915"}html.honeywell-dark-theme .h-icon.global.email:before{content:"\E916"}html.honeywell-dark-theme .h-icon.global.expand:before{content:"\E917"}html.honeywell-dark-theme .h-icon.global.export:before{content:"\E918"}html.honeywell-dark-theme .h-icon.global.file-download:before{content:"\E919"}html.honeywell-dark-theme .h-icon.global.file-upload:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.global.filter:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.global.flag-icon:before{content:"\E91C"}html.honeywell-dark-theme .h-icon.global.fullscreen-enter:before{content:"\E91D"}html.honeywell-dark-theme .h-icon.global.fullscreen-exit:before{content:"\E91E"}html.honeywell-dark-theme .h-icon.global.globe:before{content:"\E91F"}html.honeywell-dark-theme .h-icon.global.graph:before{content:"\E920"}html.honeywell-dark-theme .h-icon.global.home:before{content:"\E921"}html.honeywell-dark-theme .h-icon.global.location:before{content:"\E922"}html.honeywell-dark-theme .h-icon.global.locked:before{content:"\E923"}html.honeywell-dark-theme .h-icon.global.map:before{content:"\E924"}html.honeywell-dark-theme .h-icon.global.menu-icon:before{content:"\E925"}html.honeywell-dark-theme .h-icon.global.message:before{content:"\E926"}html.honeywell-dark-theme .h-icon.global.multiple-devices:before{content:"\E927"}html.honeywell-dark-theme .h-icon.global.notification:before{content:"\E928"}html.honeywell-dark-theme .h-icon.global.paperclip:before{content:"\E929"}html.honeywell-dark-theme .h-icon.global.pc:before{content:"\E92A"}html.honeywell-dark-theme .h-icon.global.phone:before{content:"\E92B"}html.honeywell-dark-theme .h-icon.global.playback-pause:before{content:"\E92C"}html.honeywell-dark-theme .h-icon.global.playback-play:before{content:"\E92D"}html.honeywell-dark-theme .h-icon.global.print:before{content:"\E92E"}html.honeywell-dark-theme .h-icon.global.redo:before{content:"\E92F"}html.honeywell-dark-theme .h-icon.global.refresh:before{content:"\E930"}html.honeywell-dark-theme .h-icon.global.reminders:before{content:"\E931"}html.honeywell-dark-theme .h-icon.global.save:before{content:"\E932"}html.honeywell-dark-theme .h-icon.global.search:before{content:"\E933"}html.honeywell-dark-theme .h-icon.global.settings:before{content:"\E934"}html.honeywell-dark-theme .h-icon.global.share-2:before{content:"\E935"}html.honeywell-dark-theme .h-icon.global.share:before{content:"\E936"}html.honeywell-dark-theme .h-icon.global.shopping-bag:before{content:"\E937"}html.honeywell-dark-theme .h-icon.global.slider-controls-minus:before{content:"\E938"}html.honeywell-dark-theme .h-icon.global.slider-controls-plus:before{content:"\E939"}html.honeywell-dark-theme .h-icon.global.smartphone:before{content:"\E93A"}html.honeywell-dark-theme .h-icon.global.social-fb-sq:before{content:"\E93B"}html.honeywell-dark-theme .h-icon.global.social-fb:before{content:"\E93C"}html.honeywell-dark-theme .h-icon.global.social-ig-sq:before{content:"\E93D"}html.honeywell-dark-theme .h-icon.global.social-ig:before{content:"\E93E"}html.honeywell-dark-theme .h-icon.global.social-li-sq:before{content:"\E93F"}html.honeywell-dark-theme .h-icon.global.social-li:before{content:"\E940"}html.honeywell-dark-theme .h-icon.global.social-tw-sq:before{content:"\E941"}html.honeywell-dark-theme .h-icon.global.social-tw:before{content:"\E942"}html.honeywell-dark-theme .h-icon.global.social-yt-sq:before{content:"\E943"}html.honeywell-dark-theme .h-icon.global.social-yt:before{content:"\E944"}html.honeywell-dark-theme .h-icon.global.speaker-off:before{content:"\E945"}html.honeywell-dark-theme .h-icon.global.speaker-on:before{content:"\E946"}html.honeywell-dark-theme .h-icon.global.star:before{content:"\E947"}html.honeywell-dark-theme .h-icon.global.tools:before{content:"\E948"}html.honeywell-dark-theme .h-icon.global.undo:before{content:"\E949"}html.honeywell-dark-theme .h-icon.global.unlocked:before{content:"\E94A"}html.honeywell-dark-theme .h-icon.global.user:before{content:"\E94B"}html.honeywell-dark-theme .h-icon.global.users:before{content:"\E94C"}html.honeywell-dark-theme .h-icon.global.voice-message:before{content:"\E94D"}html.honeywell-dark-theme .h-icon.global.wifi:before{content:"\E94E"}html.honeywell-dark-theme .h-icon.global.shipping{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.shipping:before{content:"\1F399"}html.honeywell-dark-theme .h-icon.global.app-launcher{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.app-launcher:before{content:"\E900"}html.honeywell-dark-theme .h-icon.global.double-caret-right{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.double-caret-right:before{content:"\E901"}html.honeywell-dark-theme .h-icon.global.double-caret-left{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.double-caret-left:before{content:"\E902"}html.honeywell-dark-theme .h-icon.global.rtm{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.rtm:before{content:"\E916"}html.honeywell-dark-theme .h-icon.global.organization{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.organization:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.global.dash{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.dash:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.global.equipment{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.equipment:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.global.inspections{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.inspections:before{content:"\E910"}html.honeywell-dark-theme .h-icon.global.reports{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.reports:before{content:"\E911"}html.honeywell-dark-theme .h-icon.global.training{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.training:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.global.sites-pin{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.sites-pin:before{content:"\E919"}html.honeywell-dark-theme .h-icon.global.users-two{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.users-two:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.global.unequal{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.unequal:before{content:"\E918"}html.honeywell-dark-theme .h-icon.aero{font-family:'Honeywell-Flight' !important}html.honeywell-dark-theme .h-icon.aero.ac-atr:before{content:"\E92A"}html.honeywell-dark-theme .h-icon.aero.ac-bga:before{content:"\E92B"}html.honeywell-dark-theme .h-icon.aero.ac-dns:before{content:"\E92C"}html.honeywell-dark-theme .h-icon.aero.ac-dualprop:before{content:"\E92D"}html.honeywell-dark-theme .h-icon.aero.ac-glider:before{content:"\E92E"}html.honeywell-dark-theme .h-icon.aero.ac-highwing:before{content:"\E92F"}html.honeywell-dark-theme .h-icon.aero.ac-lowwing:before{content:"\E930"}html.honeywell-dark-theme .h-icon.aero.ac-profile:before{content:"\E931"}html.honeywell-dark-theme .h-icon.aero.ac-right:before{content:"\E932"}html.honeywell-dark-theme .h-icon.aero.ac-settings:before{content:"\E933"}html.honeywell-dark-theme .h-icon.aero.ac-up:before{content:"\E934"}html.honeywell-dark-theme .h-icon.aero.airports-directory:before{content:"\E935"}html.honeywell-dark-theme .h-icon.aero.airports-nearby:before{content:"\E936"}html.honeywell-dark-theme .h-icon.aero.airports:before{content:"\E937"}html.honeywell-dark-theme .h-icon.aero.cabin-seat:before{content:"\E938"}html.honeywell-dark-theme .h-icon.aero.cabin:before{content:"\E939"}html.honeywell-dark-theme .h-icon.aero.cleaning:before{content:"\E93A"}html.honeywell-dark-theme .h-icon.aero.eapis-3:before{content:"\E93B"}html.honeywell-dark-theme .h-icon.aero.eapis-alt:before{content:"\E93C"}html.honeywell-dark-theme .h-icon.aero.eapis:before{content:"\E93D"}html.honeywell-dark-theme .h-icon.aero.egi-2:before{content:"\E93E"}html.honeywell-dark-theme .h-icon.aero.egi:before{content:"\E93F"}html.honeywell-dark-theme .h-icon.aero.fbo-1:before{content:"\E940"}html.honeywell-dark-theme .h-icon.aero.fbo-2:before{content:"\E941"}html.honeywell-dark-theme .h-icon.aero.fbo:before{content:"\E942"}html.honeywell-dark-theme .h-icon.aero.flight-attendant:before{content:"\E943"}html.honeywell-dark-theme .h-icon.aero.flight-plan-doc:before{content:"\E944"}html.honeywell-dark-theme .h-icon.aero.flight-plan-new:before{content:"\E945"}html.honeywell-dark-theme .h-icon.aero.flight-plan:before{content:"\E946"}html.honeywell-dark-theme .h-icon.aero.flight-schedule-alt:before{content:"\E947"}html.honeywell-dark-theme .h-icon.aero.flight-schedule:before{content:"\E948"}html.honeywell-dark-theme .h-icon.aero.fuel:before{content:"\E949"}html.honeywell-dark-theme .h-icon.aero.hangar:before{content:"\E94A"}html.honeywell-dark-theme .h-icon.aero.helicopter:before{content:"\E94B"}html.honeywell-dark-theme .h-icon.aero.intl-trip:before{content:"\E94C"}html.honeywell-dark-theme .h-icon.aero.luggage:before{content:"\E94D"}html.honeywell-dark-theme .h-icon.aero.notams-2:before{content:"\E94E"}html.honeywell-dark-theme .h-icon.aero.notams-3:before{content:"\E94F"}html.honeywell-dark-theme .h-icon.aero.notams:before{content:"\E950"}html.honeywell-dark-theme .h-icon.aero.pilot-crushcap:before{content:"\E951"}html.honeywell-dark-theme .h-icon.aero.plane-approach-1:before{content:"\E952"}html.honeywell-dark-theme .h-icon.aero.plane-approach-2:before{content:"\E953"}html.honeywell-dark-theme .h-icon.aero.psngr-boarding:before{content:"\E954"}html.honeywell-dark-theme .h-icon.aero.psngr-deboarding:before{content:"\E955"}html.honeywell-dark-theme .h-icon.aero.ramp-1:before{content:"\E956"}html.honeywell-dark-theme .h-icon.aero.ramp-2:before{content:"\E957"}html.honeywell-dark-theme .h-icon.aero.ramp-3:before{content:"\E958"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-1:before{content:"\E959"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-2:before{content:"\E95A"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-3:before{content:"\E95B"}html.honeywell-dark-theme .h-icon.aero.runway:before{content:"\E95C"}html.honeywell-dark-theme .h-icon.aero.screen-seat:before{content:"\E95D"}html.honeywell-dark-theme .h-icon.aero.speed-indicator-air:before{content:"\E95E"}html.honeywell-dark-theme .h-icon.aero.speed-indicator-vertical:before{content:"\E95F"}html.honeywell-dark-theme .h-icon.aero.speed-indicator:before{content:"\E960"}html.honeywell-dark-theme .h-icon.aero.track-up-centered:before{content:"\E961"}html.honeywell-dark-theme .h-icon.aero.track-up:before{content:"\E962"}html.honeywell-dark-theme .h-icon.aero.trip-kit-add:before{content:"\E963"}html.honeywell-dark-theme .h-icon.aero.trip-kit-refresh:before{content:"\E964"}html.honeywell-dark-theme .h-icon.aero.trip-kit:before{content:"\E965"}html.honeywell-dark-theme .h-icon.aero.uav:before{content:"\E966"}html.honeywell-dark-theme .h-icon.aero.valance:before{content:"\E967"}html.honeywell-dark-theme .h-icon.aero.weather-chart:before{content:"\E968"}html.honeywell-dark-theme .h-icon.aero.wheel-chocks:before{content:"\E969"}html.honeywell-dark-theme .h-icon.aero.window-down:before{content:"\E96A"}html.honeywell-dark-theme .h-icon.aero.window-mid:before{content:"\E96B"}html.honeywell-dark-theme .h-icon.aero.window-up:before{content:"\E96C"}html.honeywell-dark-theme .h-icon.aero.ptmd{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.ptmd:before{content:"\E903"}html.honeywell-dark-theme .h-icon.aero.flight-efficiency{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.flight-efficiency:before{content:"\E904"}html.honeywell-dark-theme .h-icon.aero.cmx{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.cmx:before{content:"\E905"}html.honeywell-dark-theme .h-icon.building{font-family:'Honeywell-Buildings' !important}html.honeywell-dark-theme .h-icon.building.add:before{content:"\E96D"}html.honeywell-dark-theme .h-icon.building.badge-alert:before{content:"\E96E"}html.honeywell-dark-theme .h-icon.building.badge-help:before{content:"\E96F"}html.honeywell-dark-theme .h-icon.building.badge-info:before{content:"\E970"}html.honeywell-dark-theme .h-icon.building.badge-stop:before{content:"\E971"}html.honeywell-dark-theme .h-icon.building.badge-warning:before{content:"\E972"}html.honeywell-dark-theme .h-icon.building.battery-empty:before{content:"\E973"}html.honeywell-dark-theme .h-icon.building.battery-full:before{content:"\E974"}html.honeywell-dark-theme .h-icon.building.battery-low:before{content:"\E975"}html.honeywell-dark-theme .h-icon.building.battery-mid:before{content:"\E976"}html.honeywell-dark-theme .h-icon.building.calendar .path1:before{content:"\E977"}html.honeywell-dark-theme .h-icon.building.calendar .path2:before{content:"\EA1B";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path3:before{content:"\EA1C";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path4:before{content:"\EA1D";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path5:before{content:"\EA1E";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path6:before{content:"\EA1F";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path7:before{content:"\EA20";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path8:before{content:"\EA21";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path9:before{content:"\EA22";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path10:before{content:"\EA23";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path11:before{content:"\EA24";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path12:before{content:"\EA25";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path13:before{content:"\EA26";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.camera:before{content:"\E978"}html.honeywell-dark-theme .h-icon.building.caret-down:before{content:"\E979"}html.honeywell-dark-theme .h-icon.building.caret-left:before{content:"\E97A"}html.honeywell-dark-theme .h-icon.building.caret-right:before{content:"\E97B"}html.honeywell-dark-theme .h-icon.building.caret-up:before{content:"\E97C"}html.honeywell-dark-theme .h-icon.building.check:before{content:"\E97D"}html.honeywell-dark-theme .h-icon.building.close-circled:before{content:"\E97E"}html.honeywell-dark-theme .h-icon.building.close:before{content:"\E97F"}html.honeywell-dark-theme .h-icon.building.cloud-download:before{content:"\E980"}html.honeywell-dark-theme .h-icon.building.cloud-upload:before{content:"\E981"}html.honeywell-dark-theme .h-icon.building.collapse:before{content:"\E982"}html.honeywell-dark-theme .h-icon.building.credit-card:before{content:"\E983"}html.honeywell-dark-theme .h-icon.building.dashboard:before{content:"\E984"}html.honeywell-dark-theme .h-icon.building.delete:before{content:"\E985"}html.honeywell-dark-theme .h-icon.building.doc-add:before{content:"\E986"}html.honeywell-dark-theme .h-icon.building.doc-annotate:before{content:"\E987"}html.honeywell-dark-theme .h-icon.building.doc-certificate:before{content:"\E988"}html.honeywell-dark-theme .h-icon.building.doc-pdf:before{content:"\E989"}html.honeywell-dark-theme .h-icon.building.doc-photo:before{content:"\E98A"}html.honeywell-dark-theme .h-icon.building.doc-proc:before{content:"\E98B"}html.honeywell-dark-theme .h-icon.building.doc-search:before{content:"\E98C"}html.honeywell-dark-theme .h-icon.building.doc-test:before{content:"\E98D"}html.honeywell-dark-theme .h-icon.building.document:before{content:"\E98E"}html.honeywell-dark-theme .h-icon.building.edit-circled:before{content:"\E98F"}html.honeywell-dark-theme .h-icon.building.edit:before{content:"\E990"}html.honeywell-dark-theme .h-icon.building.email:before{content:"\E991"}html.honeywell-dark-theme .h-icon.building.expand:before{content:"\E992"}html.honeywell-dark-theme .h-icon.building.export:before{content:"\E993"}html.honeywell-dark-theme .h-icon.building.file-download:before{content:"\E994"}html.honeywell-dark-theme .h-icon.building.file-upload:before{content:"\E995"}html.honeywell-dark-theme .h-icon.building.filter:before{content:"\E996"}html.honeywell-dark-theme .h-icon.building.flag-icon:before{content:"\E997"}html.honeywell-dark-theme .h-icon.building.folder-music:before{content:"\E998"}html.honeywell-dark-theme .h-icon.building.folder:before{content:"\E999"}html.honeywell-dark-theme .h-icon.building.fullscreen-enter:before{content:"\E99A"}html.honeywell-dark-theme .h-icon.building.fullscreen-exit:before{content:"\E99B"}html.honeywell-dark-theme .h-icon.building.globe:before{content:"\E99C"}html.honeywell-dark-theme .h-icon.building.graph:before{content:"\E99D"}html.honeywell-dark-theme .h-icon.building.home:before{content:"\E99E"}html.honeywell-dark-theme .h-icon.building.location:before{content:"\E99F"}html.honeywell-dark-theme .h-icon.building.locked:before{content:"\E9A0"}html.honeywell-dark-theme .h-icon.building.map:before{content:"\E9A1"}html.honeywell-dark-theme .h-icon.building.menu-icon:before{content:"\E9A2"}html.honeywell-dark-theme .h-icon.building.message:before{content:"\E9A3"}html.honeywell-dark-theme .h-icon.building.messages:before{content:"\E9A4"}html.honeywell-dark-theme .h-icon.building.modify:before{content:"\E9A5"}html.honeywell-dark-theme .h-icon.building.multiple-devices:before{content:"\E9A6"}html.honeywell-dark-theme .h-icon.building.music:before{content:"\E9A7"}html.honeywell-dark-theme .h-icon.building.notification:before{content:"\E9A8"}html.honeywell-dark-theme .h-icon.building.paperclip:before{content:"\E9A9"}html.honeywell-dark-theme .h-icon.building.pc:before{content:"\E9AA"}html.honeywell-dark-theme .h-icon.building.phone:before{content:"\E9AB"}html.honeywell-dark-theme .h-icon.building.playback-pause:before{content:"\E9AC"}html.honeywell-dark-theme .h-icon.building.playback-play:before{content:"\E9AD"}html.honeywell-dark-theme .h-icon.building.playback-rec:before{content:"\E9AE"}html.honeywell-dark-theme .h-icon.building.playback-stop:before{content:"\E9AF"}html.honeywell-dark-theme .h-icon.building.print:before{content:"\E9B0"}html.honeywell-dark-theme .h-icon.building.redo:before{content:"\E9B1"}html.honeywell-dark-theme .h-icon.building.refresh:before{content:"\E9B2"}html.honeywell-dark-theme .h-icon.building.save:before{content:"\E9B3"}html.honeywell-dark-theme .h-icon.building.search:before{content:"\E9B4"}html.honeywell-dark-theme .h-icon.building.settings:before{content:"\E9B5"}html.honeywell-dark-theme .h-icon.building.share-2:before{content:"\E9B6"}html.honeywell-dark-theme .h-icon.building.share:before{content:"\E9B7"}html.honeywell-dark-theme .h-icon.building.shopping-bag:before{content:"\E9B8"}html.honeywell-dark-theme .h-icon.building.slider-controls-minus:before{content:"\E9B9"}html.honeywell-dark-theme .h-icon.building.slider-controls-plus:before{content:"\E9BA"}html.honeywell-dark-theme .h-icon.building.smartphone:before{content:"\E9BB"}html.honeywell-dark-theme .h-icon.building.social-fb:before{content:"\E9BC"}html.honeywell-dark-theme .h-icon.building.social-ig:before{content:"\E9BD"}html.honeywell-dark-theme .h-icon.building.social-tw:before{content:"\E9BE"}html.honeywell-dark-theme .h-icon.building.social-yt:before{content:"\E9BF"}html.honeywell-dark-theme .h-icon.building.speaker-off:before{content:"\E9C0"}html.honeywell-dark-theme .h-icon.building.speaker-on:before{content:"\E9C1"}html.honeywell-dark-theme .h-icon.building.star:before{content:"\E9C2"}html.honeywell-dark-theme .h-icon.building.tag:before{content:"\E9C3"}html.honeywell-dark-theme .h-icon.building.timeline:before{content:"\E9C4"}html.honeywell-dark-theme .h-icon.building.tools:before{content:"\E9C5"}html.honeywell-dark-theme .h-icon.building.undo:before{content:"\E9C6"}html.honeywell-dark-theme .h-icon.building.unlocked:before{content:"\E9C7"}html.honeywell-dark-theme .h-icon.building.user-filled:before{content:"\E9C8"}html.honeywell-dark-theme .h-icon.building.user:before{content:"\E9C9"}html.honeywell-dark-theme .h-icon.building.voicemessages:before{content:"\E9CA"}html.honeywell-dark-theme .h-icon.building.wifi:before{content:"\E9CB"}html.honeywell-dark-theme .h-icon.building.total-footprint{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.total-footprint:before{content:"\E912"}html.honeywell-dark-theme .h-icon.building.sites{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.sites:before{content:"\E913"}html.honeywell-dark-theme .h-icon.building.portfolio-savings{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.portfolio-savings:before{content:"\E914"}html.honeywell-dark-theme .h-icon.building.portfolio-cost{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.portfolio-cost:before{content:"\E915"}html.honeywell-dark-theme .h-icon.building.comfort{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.comfort:before{content:"\E906"}html.honeywell-dark-theme .h-icon.building.filter-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.filter-alt:before{content:"\E907"}html.honeywell-dark-theme .h-icon.building.graph-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.graph-alt:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.building.home-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.home-alt:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.building.sites-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.sites-alt:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.building.operations{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.operations:before{content:"\E908"}html.honeywell-dark-theme .h-icon.building.energy{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.energy:before{content:"\E909"}html.honeywell-dark-theme .h-icon.building.rounds{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.rounds:before{content:"\E917"}html.honeywell-dark-theme .h-icon.weather{font-family:'Honeywell-Weather'}html.honeywell-dark-theme .h-icon.weather.blowingsnow:before{content:"\E900"}html.honeywell-dark-theme .h-icon.weather.breezy:before{content:"\E901"}html.honeywell-dark-theme .h-icon.weather.clear:before{content:"\E902"}html.honeywell-dark-theme .h-icon.weather.clearnight:before{content:"\E903"}html.honeywell-dark-theme .h-icon.weather.drizzle:before{content:"\E904"}html.honeywell-dark-theme .h-icon.weather.fewbrokenclowds:before{content:"\E905"}html.honeywell-dark-theme .h-icon.weather.fog:before{content:"\E906"}html.honeywell-dark-theme .h-icon.weather.freezingdrizzle:before{content:"\E907"}html.honeywell-dark-theme .h-icon.weather.freezingrain:before{content:"\E908"}html.honeywell-dark-theme .h-icon.weather.funnelcloud:before{content:"\E909"}html.honeywell-dark-theme .h-icon.weather.hail:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.weather.haze:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.weather.heavyfog:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.weather.heavyrain:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.weather.heavysnow:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.weather.hot:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.weather.hurricane:before{content:"\E910"}html.honeywell-dark-theme .h-icon.weather.ice:before{content:"\E911"}html.honeywell-dark-theme .h-icon.weather.icepellets:before{content:"\E912"}html.honeywell-dark-theme .h-icon.weather.lightfog:before{content:"\E913"}html.honeywell-dark-theme .h-icon.weather.lightrain:before{content:"\E914"}html.honeywell-dark-theme .h-icon.weather.lightsnow:before{content:"\E915"}html.honeywell-dark-theme .h-icon.weather.mixrainfall:before{content:"\E916"}html.honeywell-dark-theme .h-icon.weather.moderatefog:before{content:"\E917"}html.honeywell-dark-theme .h-icon.weather.moderaterain:before{content:"\E918"}html.honeywell-dark-theme .h-icon.weather.moderatesnow:before{content:"\E919"}html.honeywell-dark-theme .h-icon.weather.na:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.weather.noreport:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.weather.overcast:before{content:"\E91C"}html.honeywell-dark-theme .h-icon.weather.rain:before{content:"\E91D"}html.honeywell-dark-theme .h-icon.weather.rainshowers:before{content:"\E91E"}html.honeywell-dark-theme .h-icon.weather.sandustorm:before{content:"\E91F"}html.honeywell-dark-theme .h-icon.weather.scatteredclouds:before{content:"\E920"}html.honeywell-dark-theme .h-icon.weather.scatteredshowers:before{content:"\E921"}html.honeywell-dark-theme .h-icon.weather.scatteredthunderstorm:before{content:"\E922"}html.honeywell-dark-theme .h-icon.weather.smoke:before{content:"\E923"}html.honeywell-dark-theme .h-icon.weather.snowshowers:before{content:"\E924"}html.honeywell-dark-theme .h-icon.weather.sunrise:before{content:"\E925"}html.honeywell-dark-theme .h-icon.weather.sunset:before{content:"\E926"}html.honeywell-dark-theme .h-icon.weather.thunderstorm:before{content:"\E927"}html.honeywell-dark-theme .h-icon.weather.tropicalstorm:before{content:"\E928"}html.honeywell-dark-theme .h-icon.weather.water:before{content:"\E929"}@font-face{html.honeywell-dark-theme{font-family:'Icons';src:url(/static/media/icons.7bfcab6d.eot);src:url(/static/media/icons.7bfcab6d.eot) format("embedded-opentype"),url(/static/media/icons.2adefcbc.woff2) format("woff2"),url(/static/media/icons.ba0c59de.woff) format("woff"),url(/static/media/icons.aa58f33f.ttf) format("truetype"),url(/static/media/icons.ad615792.svg) format("svg");font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-decoration:inherit;text-transform:none}}html.honeywell-dark-theme i.icon{font-family:'Honeywell-Global', 'Icons';display:inline-block;opacity:1;font-style:normal;font-weight:normal;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;backface-visibility:hidden}html.honeywell-dark-theme i.icon:before{background:none !important}html.honeywell-dark-theme i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme i.icon.hover{opacity:1 !important}html.honeywell-dark-theme i.icon.active{opacity:1 !important}html.honeywell-dark-theme i.emphasized.icon{opacity:1 !important}html.honeywell-dark-theme i.disabled.icon{opacity:0.45 !important}html.honeywell-dark-theme i.fitted.icon{width:auto;margin:0em}html.honeywell-dark-theme i.link.icon,html.honeywell-dark-theme i.link.icons{cursor:pointer;opacity:0.8;transition:opacity 0.1s ease}html.honeywell-dark-theme i.link.icon:hover,html.honeywell-dark-theme i.link.icons:hover{opacity:1 !important}html.honeywell-dark-theme i.circular.icon{border-radius:500em !important;line-height:1 !important;padding:0.5em 0.5em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset;width:2em !important;height:2em !important}html.honeywell-dark-theme i.circular.inverted.icon{border:none;box-shadow:none}html.honeywell-dark-theme i.flipped.icon,html.honeywell-dark-theme i.horizontally.flipped.icon{transform:scale(-1, 1)}html.honeywell-dark-theme i.vertically.flipped.icon{transform:scale(1, -1)}html.honeywell-dark-theme i.rotated.icon,html.honeywell-dark-theme i.right.rotated.icon,html.honeywell-dark-theme i.clockwise.rotated.icon{transform:rotate(90deg)}html.honeywell-dark-theme i.left.rotated.icon,html.honeywell-dark-theme i.counterclockwise.rotated.icon{transform:rotate(-90deg)}html.honeywell-dark-theme i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:0.5em 0.41em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset}html.honeywell-dark-theme i.bordered.inverted.icon{border:none;box-shadow:none}html.honeywell-dark-theme i.inverted.bordered.icon,html.honeywell-dark-theme i.inverted.circular.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html.honeywell-dark-theme i.inverted.icon{color:#FFFFFF}html.honeywell-dark-theme i.red.icon{color:#DB2828 !important}html.honeywell-dark-theme i.inverted.red.icon{color:#FF695E !important}html.honeywell-dark-theme i.inverted.bordered.red.icon,html.honeywell-dark-theme i.inverted.circular.red.icon{background-color:#DB2828 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.orange.icon{color:#F2711C !important}html.honeywell-dark-theme i.inverted.orange.icon{color:#FF851B !important}html.honeywell-dark-theme i.inverted.bordered.orange.icon,html.honeywell-dark-theme i.inverted.circular.orange.icon{background-color:#F2711C !important;color:#FFFFFF !important}html.honeywell-dark-theme i.yellow.icon{color:#FBBD08 !important}html.honeywell-dark-theme i.inverted.yellow.icon{color:#FFE21F !important}html.honeywell-dark-theme i.inverted.bordered.yellow.icon,html.honeywell-dark-theme i.inverted.circular.yellow.icon{background-color:#FBBD08 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.olive.icon{color:#B5CC18 !important}html.honeywell-dark-theme i.inverted.olive.icon{color:#D9E778 !important}html.honeywell-dark-theme i.inverted.bordered.olive.icon,html.honeywell-dark-theme i.inverted.circular.olive.icon{background-color:#B5CC18 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.green.icon{color:#21BA45 !important}html.honeywell-dark-theme i.inverted.green.icon{color:#2ECC40 !important}html.honeywell-dark-theme i.inverted.bordered.green.icon,html.honeywell-dark-theme i.inverted.circular.green.icon{background-color:#21BA45 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.teal.icon{color:#00B5AD !important}html.honeywell-dark-theme i.inverted.teal.icon{color:#6DFFFF !important}html.honeywell-dark-theme i.inverted.bordered.teal.icon,html.honeywell-dark-theme i.inverted.circular.teal.icon{background-color:#00B5AD !important;color:#FFFFFF !important}html.honeywell-dark-theme i.blue.icon{color:#2185D0 !important}html.honeywell-dark-theme i.inverted.blue.icon{color:#54C8FF !important}html.honeywell-dark-theme i.inverted.bordered.blue.icon,html.honeywell-dark-theme i.inverted.circular.blue.icon{background-color:#2185D0 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.violet.icon{color:#6435C9 !important}html.honeywell-dark-theme i.inverted.violet.icon{color:#A291FB !important}html.honeywell-dark-theme i.inverted.bordered.violet.icon,html.honeywell-dark-theme i.inverted.circular.violet.icon{background-color:#6435C9 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.purple.icon{color:#A333C8 !important}html.honeywell-dark-theme i.inverted.purple.icon{color:#DC73FF !important}html.honeywell-dark-theme i.inverted.bordered.purple.icon,html.honeywell-dark-theme i.inverted.circular.purple.icon{background-color:#A333C8 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.pink.icon{color:#E03997 !important}html.honeywell-dark-theme i.inverted.pink.icon{color:#FF8EDF !important}html.honeywell-dark-theme i.inverted.bordered.pink.icon,html.honeywell-dark-theme i.inverted.circular.pink.icon{background-color:#E03997 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.brown.icon{color:#A5673F !important}html.honeywell-dark-theme i.inverted.brown.icon{color:#D67C1C !important}html.honeywell-dark-theme i.inverted.bordered.brown.icon,html.honeywell-dark-theme i.inverted.circular.brown.icon{background-color:#A5673F !important;color:#FFFFFF !important}html.honeywell-dark-theme i.grey.icon{color:#767676 !important}html.honeywell-dark-theme i.inverted.grey.icon{color:#DCDDDE !important}html.honeywell-dark-theme i.inverted.bordered.grey.icon,html.honeywell-dark-theme i.inverted.circular.grey.icon{background-color:#767676 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.black.icon{color:#1B1C1D !important}html.honeywell-dark-theme i.inverted.black.icon{color:#545454 !important}html.honeywell-dark-theme i.inverted.bordered.black.icon,html.honeywell-dark-theme i.inverted.circular.black.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html.honeywell-dark-theme i.mini.icon,html.honeywell-dark-theme i.mini.icons{line-height:1;font-size:0.4em}html.honeywell-dark-theme i.tiny.icon,html.honeywell-dark-theme i.tiny.icons{line-height:1;font-size:0.5em}html.honeywell-dark-theme i.small.icon,html.honeywell-dark-theme i.small.icons{line-height:1;font-size:0.75em}html.honeywell-dark-theme i.icon,html.honeywell-dark-theme i.icons{font-size:1em}html.honeywell-dark-theme i.large.icon,html.honeywell-dark-theme i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}html.honeywell-dark-theme i.big.icon,html.honeywell-dark-theme i.big.icons{line-height:1;vertical-align:middle;font-size:2em}html.honeywell-dark-theme i.huge.icon,html.honeywell-dark-theme i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}html.honeywell-dark-theme i.massive.icon,html.honeywell-dark-theme i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}html.honeywell-dark-theme i.icons{display:inline-block;position:relative;line-height:1}html.honeywell-dark-theme i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0em;margin:0}html.honeywell-dark-theme i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:0.25rem}html.honeywell-dark-theme i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:0.45em;text-shadow:-1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF}html.honeywell-dark-theme i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}html.honeywell-dark-theme i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}html.honeywell-dark-theme i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}html.honeywell-dark-theme i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}html.honeywell-dark-theme i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D}html.honeywell-dark-theme i.icon.search:before{content:"\F002"}html.honeywell-dark-theme i.icon.mail.outline:before{content:"\F003"}html.honeywell-dark-theme i.icon.signal:before{content:"\F012"}html.honeywell-dark-theme i.icon.setting:before{content:"\F013"}html.honeywell-dark-theme i.icon.home:before{content:"\F015"}html.honeywell-dark-theme i.icon.inbox:before{content:"\F01C"}html.honeywell-dark-theme i.icon.browser:before{content:"\F022"}html.honeywell-dark-theme i.icon.tag:before{content:"\F02B"}html.honeywell-dark-theme i.icon.tags:before{content:"\F02C"}html.honeywell-dark-theme i.icon.image:before{content:"\F03E"}html.honeywell-dark-theme i.icon.calendar:before{content:"\F073"}html.honeywell-dark-theme i.icon.comment:before{content:"\F075"}html.honeywell-dark-theme i.icon.shop:before{content:"\F07A"}html.honeywell-dark-theme i.icon.comments:before{content:"\F086"}html.honeywell-dark-theme i.icon.external:before{content:"\F08E"}html.honeywell-dark-theme i.icon.privacy:before{content:"\F084"}html.honeywell-dark-theme i.icon.settings:before{content:"\F085"}html.honeywell-dark-theme i.icon.comments:before{content:"\F086"}html.honeywell-dark-theme i.icon.external:before{content:"\F08E"}html.honeywell-dark-theme i.icon.trophy:before{content:"\F091"}html.honeywell-dark-theme i.icon.payment:before{content:"\F09D"}html.honeywell-dark-theme i.icon.feed:before{content:"\F09E"}html.honeywell-dark-theme i.icon.alarm.outline:before{content:"\F0A2"}html.honeywell-dark-theme i.icon.tasks:before{content:"\F0AE"}html.honeywell-dark-theme i.icon.cloud:before{content:"\F0C2"}html.honeywell-dark-theme i.icon.lab:before{content:"\F0C3"}html.honeywell-dark-theme i.icon.mail:before{content:"\F0E0"}html.honeywell-dark-theme i.icon.dashboard:before{content:"\F0E4"}html.honeywell-dark-theme i.icon.comment.outline:before{content:"\F0E5"}html.honeywell-dark-theme i.icon.comments.outline:before{content:"\F0E6"}html.honeywell-dark-theme i.icon.sitemap:before{content:"\F0E8"}html.honeywell-dark-theme i.icon.idea:before{content:"\F0EB"}html.honeywell-dark-theme i.icon.alarm:before{content:"\F0F3"}html.honeywell-dark-theme i.icon.terminal:before{content:"\F120"}html.honeywell-dark-theme i.icon.code:before{content:"\F121"}html.honeywell-dark-theme i.icon.protect:before{content:"\F132"}html.honeywell-dark-theme i.icon.calendar.outline:before{content:"\F133"}html.honeywell-dark-theme i.icon.ticket:before{content:"\F145"}html.honeywell-dark-theme i.icon.external.square:before{content:"\F14C"}html.honeywell-dark-theme i.icon.bug:before{content:"\F188"}html.honeywell-dark-theme i.icon.mail.square:before{content:"\F199"}html.honeywell-dark-theme i.icon.history:before{content:"\F1DA"}html.honeywell-dark-theme i.icon.options:before{content:"\F1DE"}html.honeywell-dark-theme i.icon.text.telephone:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.find:before{content:"\F1E5"}html.honeywell-dark-theme i.icon.alarm.mute:before{content:"\F1F6"}html.honeywell-dark-theme i.icon.alarm.mute.outline:before{content:"\F1F7"}html.honeywell-dark-theme i.icon.copyright:before{content:"\F1F9"}html.honeywell-dark-theme i.icon.at:before{content:"\F1FA"}html.honeywell-dark-theme i.icon.eyedropper:before{content:"\F1FB"}html.honeywell-dark-theme i.icon.paint.brush:before{content:"\F1FC"}html.honeywell-dark-theme i.icon.heartbeat:before{content:"\F21E"}html.honeywell-dark-theme i.icon.mouse.pointer:before{content:"\F245"}html.honeywell-dark-theme i.icon.hourglass.empty:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.start:before{content:"\F251"}html.honeywell-dark-theme i.icon.hourglass.half:before{content:"\F252"}html.honeywell-dark-theme i.icon.hourglass.end:before{content:"\F253"}html.honeywell-dark-theme i.icon.hourglass.full:before{content:"\F254"}html.honeywell-dark-theme i.icon.hand.pointer:before{content:"\F25A"}html.honeywell-dark-theme i.icon.trademark:before{content:"\F25C"}html.honeywell-dark-theme i.icon.registered:before{content:"\F25D"}html.honeywell-dark-theme i.icon.creative.commons:before{content:"\F25E"}html.honeywell-dark-theme i.icon.add.to.calendar:before{content:"\F271"}html.honeywell-dark-theme i.icon.remove.from.calendar:before{content:"\F272"}html.honeywell-dark-theme i.icon.delete.calendar:before{content:"\F273"}html.honeywell-dark-theme i.icon.checked.calendar:before{content:"\F274"}html.honeywell-dark-theme i.icon.industry:before{content:"\F275"}html.honeywell-dark-theme i.icon.shopping.bag:before{content:"\F290"}html.honeywell-dark-theme i.icon.shopping.basket:before{content:"\F291"}html.honeywell-dark-theme i.icon.hashtag:before{content:"\F292"}html.honeywell-dark-theme i.icon.percent:before{content:"\F295"}html.honeywell-dark-theme i.icon.handshake:before{content:"\F2B5"}html.honeywell-dark-theme i.icon.open.envelope:before{content:"\F2B6"}html.honeywell-dark-theme i.icon.open.envelope.outline:before{content:"\F2B7"}html.honeywell-dark-theme i.icon.address.book:before{content:"\F2B9"}html.honeywell-dark-theme i.icon.address.book.outline:before{content:"\F2BA"}html.honeywell-dark-theme i.icon.address.card:before{content:"\F2BB"}html.honeywell-dark-theme i.icon.address.card.outline:before{content:"\F2BC"}html.honeywell-dark-theme i.icon.id.badge:before{content:"\F2C1"}html.honeywell-dark-theme i.icon.id.card:before{content:"\F2C2"}html.honeywell-dark-theme i.icon.id.card.outline:before{content:"\F2C3"}html.honeywell-dark-theme i.icon.podcast:before{content:"\F2CE"}html.honeywell-dark-theme i.icon.window.maximize:before{content:"\F2D0"}html.honeywell-dark-theme i.icon.window.minimize:before{content:"\F2D1"}html.honeywell-dark-theme i.icon.window.restore:before{content:"\F2D2"}html.honeywell-dark-theme i.icon.window.close:before{content:"\F2D3"}html.honeywell-dark-theme i.icon.window.close.outline:before{content:"\F2D4"}html.honeywell-dark-theme i.icon.wait:before{content:"\F017"}html.honeywell-dark-theme i.icon.download:before{content:"\F019"}html.honeywell-dark-theme i.icon.repeat:before{content:"\F01E"}html.honeywell-dark-theme i.icon.refresh:before{content:"\F021"}html.honeywell-dark-theme i.icon.lock:before{content:"\F023"}html.honeywell-dark-theme i.icon.bookmark:before{content:"\F02E"}html.honeywell-dark-theme i.icon.print:before{content:"\F02F"}html.honeywell-dark-theme i.icon.write:before{content:"\F040"}html.honeywell-dark-theme i.icon.adjust:before{content:"\F042"}html.honeywell-dark-theme i.icon.theme:before{content:"\F043"}html.honeywell-dark-theme i.icon.edit:before{content:"\F044"}html.honeywell-dark-theme i.icon.external.share:before{content:"\F045"}html.honeywell-dark-theme i.icon.ban:before{content:"\F05E"}html.honeywell-dark-theme i.icon.mail.forward:before{content:"\F064"}html.honeywell-dark-theme i.icon.share:before{content:"\F064"}html.honeywell-dark-theme i.icon.expand:before{content:"\F065"}html.honeywell-dark-theme i.icon.compress:before{content:"\F066"}html.honeywell-dark-theme i.icon.unhide:before{content:"\F06E"}html.honeywell-dark-theme i.icon.hide:before{content:"\F070"}html.honeywell-dark-theme i.icon.random:before{content:"\F074"}html.honeywell-dark-theme i.icon.retweet:before{content:"\F079"}html.honeywell-dark-theme i.icon.sign.out:before{content:"\F08B"}html.honeywell-dark-theme i.icon.pin:before{content:"\F08D"}html.honeywell-dark-theme i.icon.sign.in:before{content:"\F090"}html.honeywell-dark-theme i.icon.upload:before{content:"\F093"}html.honeywell-dark-theme i.icon.call:before{content:"\F095"}html.honeywell-dark-theme i.icon.remove.bookmark:before{content:"\F097"}html.honeywell-dark-theme i.icon.call.square:before{content:"\F098"}html.honeywell-dark-theme i.icon.unlock:before{content:"\F09C"}html.honeywell-dark-theme i.icon.configure:before{content:"\F0AD"}html.honeywell-dark-theme i.icon.filter:before{content:"\F0B0"}html.honeywell-dark-theme i.icon.wizard:before{content:"\F0D0"}html.honeywell-dark-theme i.icon.undo:before{content:"\F0E2"}html.honeywell-dark-theme i.icon.exchange:before{content:"\F0EC"}html.honeywell-dark-theme i.icon.cloud.download:before{content:"\F0ED"}html.honeywell-dark-theme i.icon.cloud.upload:before{content:"\F0EE"}html.honeywell-dark-theme i.icon.reply:before{content:"\F112"}html.honeywell-dark-theme i.icon.reply.all:before{content:"\F122"}html.honeywell-dark-theme i.icon.erase:before{content:"\F12D"}html.honeywell-dark-theme i.icon.unlock.alternate:before{content:"\F13E"}html.honeywell-dark-theme i.icon.write.square:before{content:"\F14B"}html.honeywell-dark-theme i.icon.share.square:before{content:"\F14D"}html.honeywell-dark-theme i.icon.archive:before{content:"\F187"}html.honeywell-dark-theme i.icon.translate:before{content:"\F1AB"}html.honeywell-dark-theme i.icon.recycle:before{content:"\F1B8"}html.honeywell-dark-theme i.icon.send:before{content:"\F1D8"}html.honeywell-dark-theme i.icon.send.outline:before{content:"\F1D9"}html.honeywell-dark-theme i.icon.share.alternate:before{content:"\F1E0"}html.honeywell-dark-theme i.icon.share.alternate.square:before{content:"\F1E1"}html.honeywell-dark-theme i.icon.add.to.cart:before{content:"\F217"}html.honeywell-dark-theme i.icon.in.cart:before{content:"\F218"}html.honeywell-dark-theme i.icon.add.user:before{content:"\F234"}html.honeywell-dark-theme i.icon.remove.user:before{content:"\F235"}html.honeywell-dark-theme i.icon.object.group:before{content:"\F247"}html.honeywell-dark-theme i.icon.object.ungroup:before{content:"\F248"}html.honeywell-dark-theme i.icon.clone:before{content:"\F24D"}html.honeywell-dark-theme i.icon.talk:before{content:"\F27A"}html.honeywell-dark-theme i.icon.talk.outline:before{content:"\F27B"}html.honeywell-dark-theme i.icon.help.circle:before{content:"\F059"}html.honeywell-dark-theme i.icon.info.circle:before{content:"\F05A"}html.honeywell-dark-theme i.icon.warning.circle:before{content:"\F06A"}html.honeywell-dark-theme i.icon.warning.sign:before{content:"\F071"}html.honeywell-dark-theme i.icon.announcement:before{content:"\F0A1"}html.honeywell-dark-theme i.icon.help:before{content:"\F128"}html.honeywell-dark-theme i.icon.info:before{content:"\F129"}html.honeywell-dark-theme i.icon.warning:before{content:"\F12A"}html.honeywell-dark-theme i.icon.birthday:before{content:"\F1FD"}html.honeywell-dark-theme i.icon.help.circle.outline:before{content:"\F29C"}html.honeywell-dark-theme i.icon.user:before{content:"\F007"}html.honeywell-dark-theme i.icon.users:before{content:"\F0C0"}html.honeywell-dark-theme i.icon.doctor:before{content:"\F0F0"}html.honeywell-dark-theme i.icon.handicap:before{content:"\F193"}html.honeywell-dark-theme i.icon.student:before{content:"\F19D"}html.honeywell-dark-theme i.icon.child:before{content:"\F1AE"}html.honeywell-dark-theme i.icon.spy:before{content:"\F21B"}html.honeywell-dark-theme i.icon.user.circle:before{content:"\F2BD"}html.honeywell-dark-theme i.icon.user.circle.outline:before{content:"\F2BE"}html.honeywell-dark-theme i.icon.user.outline:before{content:"\F2C0"}html.honeywell-dark-theme i.icon.female:before{content:"\F182"}html.honeywell-dark-theme i.icon.male:before{content:"\F183"}html.honeywell-dark-theme i.icon.woman:before{content:"\F221"}html.honeywell-dark-theme i.icon.man:before{content:"\F222"}html.honeywell-dark-theme i.icon.non.binary.transgender:before{content:"\F223"}html.honeywell-dark-theme i.icon.intergender:before{content:"\F224"}html.honeywell-dark-theme i.icon.transgender:before{content:"\F225"}html.honeywell-dark-theme i.icon.lesbian:before{content:"\F226"}html.honeywell-dark-theme i.icon.gay:before{content:"\F227"}html.honeywell-dark-theme i.icon.heterosexual:before{content:"\F228"}html.honeywell-dark-theme i.icon.other.gender:before{content:"\F229"}html.honeywell-dark-theme i.icon.other.gender.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.other.gender.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.neuter:before{content:"\F22C"}html.honeywell-dark-theme i.icon.genderless:before{content:"\F22D"}html.honeywell-dark-theme i.icon.universal.access:before{content:"\F29A"}html.honeywell-dark-theme i.icon.wheelchair:before{content:"\F29B"}html.honeywell-dark-theme i.icon.blind:before{content:"\F29D"}html.honeywell-dark-theme i.icon.audio.description:before{content:"\F29E"}html.honeywell-dark-theme i.icon.volume.control.phone:before{content:"\F2A0"}html.honeywell-dark-theme i.icon.braille:before{content:"\F2A1"}html.honeywell-dark-theme i.icon.asl:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.assistive.listening.systems:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.deafness:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.sign.language:before{content:"\F2A7"}html.honeywell-dark-theme i.icon.low.vision:before{content:"\F2A8"}html.honeywell-dark-theme i.icon.block.layout:before{content:"\F009"}html.honeywell-dark-theme i.icon.grid.layout:before{content:"\F00A"}html.honeywell-dark-theme i.icon.list.layout:before{content:"\F00B"}html.honeywell-dark-theme i.icon.zoom:before{content:"\F00E"}html.honeywell-dark-theme i.icon.zoom.out:before{content:"\F010"}html.honeywell-dark-theme i.icon.resize.vertical:before{content:"\F07D"}html.honeywell-dark-theme i.icon.resize.horizontal:before{content:"\F07E"}html.honeywell-dark-theme i.icon.maximize:before{content:"\F0B2"}html.honeywell-dark-theme i.icon.crop:before{content:"\F125"}html.honeywell-dark-theme i.icon.cocktail:before{content:"\F000"}html.honeywell-dark-theme i.icon.road:before{content:"\F018"}html.honeywell-dark-theme i.icon.flag:before{content:"\F024"}html.honeywell-dark-theme i.icon.book:before{content:"\F02D"}html.honeywell-dark-theme i.icon.gift:before{content:"\F06B"}html.honeywell-dark-theme i.icon.leaf:before{content:"\F06C"}html.honeywell-dark-theme i.icon.fire:before{content:"\F06D"}html.honeywell-dark-theme i.icon.plane:before{content:"\F072"}html.honeywell-dark-theme i.icon.magnet:before{content:"\F076"}html.honeywell-dark-theme i.icon.lemon:before{content:"\F094"}html.honeywell-dark-theme i.icon.world:before{content:"\F0AC"}html.honeywell-dark-theme i.icon.travel:before{content:"\F0B1"}html.honeywell-dark-theme i.icon.shipping:before{content:"\F0D1"}html.honeywell-dark-theme i.icon.money:before{content:"\F0D6"}html.honeywell-dark-theme i.icon.legal:before{content:"\F0E3"}html.honeywell-dark-theme i.icon.lightning:before{content:"\F0E7"}html.honeywell-dark-theme i.icon.umbrella:before{content:"\F0E9"}html.honeywell-dark-theme i.icon.treatment:before{content:"\F0F1"}html.honeywell-dark-theme i.icon.suitcase:before{content:"\F0F2"}html.honeywell-dark-theme i.icon.bar:before{content:"\F0FC"}html.honeywell-dark-theme i.icon.flag.outline:before{content:"\F11D"}html.honeywell-dark-theme i.icon.flag.checkered:before{content:"\F11E"}html.honeywell-dark-theme i.icon.puzzle:before{content:"\F12E"}html.honeywell-dark-theme i.icon.fire.extinguisher:before{content:"\F134"}html.honeywell-dark-theme i.icon.rocket:before{content:"\F135"}html.honeywell-dark-theme i.icon.anchor:before{content:"\F13D"}html.honeywell-dark-theme i.icon.bullseye:before{content:"\F140"}html.honeywell-dark-theme i.icon.sun:before{content:"\F185"}html.honeywell-dark-theme i.icon.moon:before{content:"\F186"}html.honeywell-dark-theme i.icon.fax:before{content:"\F1AC"}html.honeywell-dark-theme i.icon.life.ring:before{content:"\F1CD"}html.honeywell-dark-theme i.icon.bomb:before{content:"\F1E2"}html.honeywell-dark-theme i.icon.soccer:before{content:"\F1E3"}html.honeywell-dark-theme i.icon.calculator:before{content:"\F1EC"}html.honeywell-dark-theme i.icon.diamond:before{content:"\F219"}html.honeywell-dark-theme i.icon.sticky.note:before{content:"\F249"}html.honeywell-dark-theme i.icon.sticky.note.outline:before{content:"\F24A"}html.honeywell-dark-theme i.icon.law:before{content:"\F24E"}html.honeywell-dark-theme i.icon.hand.peace:before{content:"\F25B"}html.honeywell-dark-theme i.icon.hand.rock:before{content:"\F255"}html.honeywell-dark-theme i.icon.hand.paper:before{content:"\F256"}html.honeywell-dark-theme i.icon.hand.scissors:before{content:"\F257"}html.honeywell-dark-theme i.icon.hand.lizard:before{content:"\F258"}html.honeywell-dark-theme i.icon.hand.spock:before{content:"\F259"}html.honeywell-dark-theme i.icon.tv:before{content:"\F26C"}html.honeywell-dark-theme i.icon.thermometer.full:before{content:"\F2C7"}html.honeywell-dark-theme i.icon.thermometer.three.quarters:before{content:"\F2C8"}html.honeywell-dark-theme i.icon.thermometer.half:before{content:"\F2C9"}html.honeywell-dark-theme i.icon.thermometer.quarter:before{content:"\F2CA"}html.honeywell-dark-theme i.icon.thermometer.empty:before{content:"\F2CB"}html.honeywell-dark-theme i.icon.shower:before{content:"\F2CC"}html.honeywell-dark-theme i.icon.bathtub:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.snowflake:before{content:"\F2DC"}html.honeywell-dark-theme i.icon.crosshairs:before{content:"\F05B"}html.honeywell-dark-theme i.icon.asterisk:before{content:"\F069"}html.honeywell-dark-theme i.icon.square.outline:before{content:"\F096"}html.honeywell-dark-theme i.icon.certificate:before{content:"\F0A3"}html.honeywell-dark-theme i.icon.square:before{content:"\F0C8"}html.honeywell-dark-theme i.icon.quote.left:before{content:"\F10D"}html.honeywell-dark-theme i.icon.quote.right:before{content:"\F10E"}html.honeywell-dark-theme i.icon.spinner:before{content:"\F110"}html.honeywell-dark-theme i.icon.circle:before{content:"\F111"}html.honeywell-dark-theme i.icon.ellipsis.horizontal:before{content:"\F141"}html.honeywell-dark-theme i.icon.ellipsis.vertical:before{content:"\F142"}html.honeywell-dark-theme i.icon.cube:before{content:"\F1B2"}html.honeywell-dark-theme i.icon.cubes:before{content:"\F1B3"}html.honeywell-dark-theme i.icon.circle.notched:before{content:"\F1CE"}html.honeywell-dark-theme i.icon.circle.thin:before{content:"\F1DB"}html.honeywell-dark-theme i.icon.checkmark:before{content:"\F00C"}html.honeywell-dark-theme i.icon.remove:before{content:"\F00D"}html.honeywell-dark-theme i.icon.checkmark.box:before{content:"\F046"}html.honeywell-dark-theme i.icon.move:before{content:"\F047"}html.honeywell-dark-theme i.icon.add.circle:before{content:"\F055"}html.honeywell-dark-theme i.icon.minus.circle:before{content:"\F056"}html.honeywell-dark-theme i.icon.remove.circle:before{content:"\F057"}html.honeywell-dark-theme i.icon.check.circle:before{content:"\F058"}html.honeywell-dark-theme i.icon.remove.circle.outline:before{content:"\F05C"}html.honeywell-dark-theme i.icon.check.circle.outline:before{content:"\F05D"}html.honeywell-dark-theme i.icon.plus:before{content:"\F067"}html.honeywell-dark-theme i.icon.minus:before{content:"\F068"}html.honeywell-dark-theme i.icon.add.square:before{content:"\F0FE"}html.honeywell-dark-theme i.icon.radio:before{content:"\F10C"}html.honeywell-dark-theme i.icon.minus.square:before{content:"\F146"}html.honeywell-dark-theme i.icon.minus.square.outline:before{content:"\F147"}html.honeywell-dark-theme i.icon.check.square:before{content:"\F14A"}html.honeywell-dark-theme i.icon.selected.radio:before{content:"\F192"}html.honeywell-dark-theme i.icon.plus.square.outline:before{content:"\F196"}html.honeywell-dark-theme i.icon.toggle.off:before{content:"\F204"}html.honeywell-dark-theme i.icon.toggle.on:before{content:"\F205"}html.honeywell-dark-theme i.icon.film:before{content:"\F008"}html.honeywell-dark-theme i.icon.sound:before{content:"\F025"}html.honeywell-dark-theme i.icon.photo:before{content:"\F030"}html.honeywell-dark-theme i.icon.bar.chart:before{content:"\F080"}html.honeywell-dark-theme i.icon.camera.retro:before{content:"\F083"}html.honeywell-dark-theme i.icon.newspaper:before{content:"\F1EA"}html.honeywell-dark-theme i.icon.area.chart:before{content:"\F1FE"}html.honeywell-dark-theme i.icon.pie.chart:before{content:"\F200"}html.honeywell-dark-theme i.icon.line.chart:before{content:"\F201"}html.honeywell-dark-theme i.icon.arrow.circle.outline.down:before{content:"\F01A"}html.honeywell-dark-theme i.icon.arrow.circle.outline.up:before{content:"\F01B"}html.honeywell-dark-theme i.icon.chevron.left:before{content:"\F053"}html.honeywell-dark-theme i.icon.chevron.right:before{content:"\F054"}html.honeywell-dark-theme i.icon.arrow.left:before{content:"\F060"}html.honeywell-dark-theme i.icon.arrow.right:before{content:"\F061"}html.honeywell-dark-theme i.icon.arrow.up:before{content:"\F062"}html.honeywell-dark-theme i.icon.arrow.down:before{content:"\F063"}html.honeywell-dark-theme i.icon.chevron.up:before{content:"\E90E"}html.honeywell-dark-theme i.icon.chevron.down:before{content:"\E90B"}html.honeywell-dark-theme i.icon.pointing.right:before{content:"\F0A4"}html.honeywell-dark-theme i.icon.pointing.left:before{content:"\F0A5"}html.honeywell-dark-theme i.icon.pointing.up:before{content:"\F0A6"}html.honeywell-dark-theme i.icon.pointing.down:before{content:"\F0A7"}html.honeywell-dark-theme i.icon.arrow.circle.left:before{content:"\F0A8"}html.honeywell-dark-theme i.icon.arrow.circle.right:before{content:"\F0A9"}html.honeywell-dark-theme i.icon.arrow.circle.up:before{content:"\F0AA"}html.honeywell-dark-theme i.icon.arrow.circle.down:before{content:"\F0AB"}html.honeywell-dark-theme i.icon.caret.down:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.caret.up:before{content:"\F0D8"}html.honeywell-dark-theme i.icon.caret.left:before{content:"\F0D9"}html.honeywell-dark-theme i.icon.caret.right:before{content:"\F0DA"}html.honeywell-dark-theme i.icon.angle.double.left:before{content:"\F100"}html.honeywell-dark-theme i.icon.angle.double.right:before{content:"\F101"}html.honeywell-dark-theme i.icon.angle.double.up:before{content:"\F102"}html.honeywell-dark-theme i.icon.angle.double.down:before{content:"\F103"}html.honeywell-dark-theme i.icon.angle.left:before{content:"\F104"}html.honeywell-dark-theme i.icon.angle.right:before{content:"\F105"}html.honeywell-dark-theme i.icon.angle.up:before{content:"\F106"}html.honeywell-dark-theme i.icon.angle.down:before{content:"\F107"}html.honeywell-dark-theme i.icon.chevron.circle.left:before{content:"\F137"}html.honeywell-dark-theme i.icon.chevron.circle.right:before{content:"\F138"}html.honeywell-dark-theme i.icon.chevron.circle.up:before{content:"\F139"}html.honeywell-dark-theme i.icon.chevron.circle.down:before{content:"\F13A"}html.honeywell-dark-theme i.icon.toggle.down:before{content:"\F150"}html.honeywell-dark-theme i.icon.toggle.up:before{content:"\F151"}html.honeywell-dark-theme i.icon.toggle.right:before{content:"\F152"}html.honeywell-dark-theme i.icon.long.arrow.down:before{content:"\F175"}html.honeywell-dark-theme i.icon.long.arrow.up:before{content:"\F176"}html.honeywell-dark-theme i.icon.long.arrow.left:before{content:"\F177"}html.honeywell-dark-theme i.icon.long.arrow.right:before{content:"\F178"}html.honeywell-dark-theme i.icon.arrow.circle.outline.right:before{content:"\F18E"}html.honeywell-dark-theme i.icon.arrow.circle.outline.left:before{content:"\F190"}html.honeywell-dark-theme i.icon.toggle.left:before{content:"\F191"}html.honeywell-dark-theme i.icon.tablet:before{content:"\F10A"}html.honeywell-dark-theme i.icon.mobile:before{content:"\F10B"}html.honeywell-dark-theme i.icon.battery.full:before{content:"\F240"}html.honeywell-dark-theme i.icon.battery.high:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.medium:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.low:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.empty:before{content:"\F244"}html.honeywell-dark-theme i.icon.power:before{content:"\F011"}html.honeywell-dark-theme i.icon.trash.outline:before{content:"\F014"}html.honeywell-dark-theme i.icon.disk.outline:before{content:"\F0A0"}html.honeywell-dark-theme i.icon.desktop:before{content:"\F108"}html.honeywell-dark-theme i.icon.laptop:before{content:"\F109"}html.honeywell-dark-theme i.icon.game:before{content:"\F11B"}html.honeywell-dark-theme i.icon.keyboard:before{content:"\F11C"}html.honeywell-dark-theme i.icon.plug:before{content:"\F1E6"}html.honeywell-dark-theme i.icon.trash:before{content:"\F1F8"}html.honeywell-dark-theme i.icon.file.outline:before{content:"\F016"}html.honeywell-dark-theme i.icon.folder:before{content:"\F07B"}html.honeywell-dark-theme i.icon.folder.open:before{content:"\F07C"}html.honeywell-dark-theme i.icon.file.text.outline:before{content:"\F0F6"}html.honeywell-dark-theme i.icon.folder.outline:before{content:"\F114"}html.honeywell-dark-theme i.icon.folder.open.outline:before{content:"\F115"}html.honeywell-dark-theme i.icon.level.up:before{content:"\F148"}html.honeywell-dark-theme i.icon.level.down:before{content:"\F149"}html.honeywell-dark-theme i.icon.file:before{content:"\F15B"}html.honeywell-dark-theme i.icon.file.text:before{content:"\F15C"}html.honeywell-dark-theme i.icon.file.pdf.outline:before{content:"\F1C1"}html.honeywell-dark-theme i.icon.file.word.outline:before{content:"\F1C2"}html.honeywell-dark-theme i.icon.file.excel.outline:before{content:"\F1C3"}html.honeywell-dark-theme i.icon.file.powerpoint.outline:before{content:"\F1C4"}html.honeywell-dark-theme i.icon.file.image.outline:before{content:"\F1C5"}html.honeywell-dark-theme i.icon.file.archive.outline:before{content:"\F1C6"}html.honeywell-dark-theme i.icon.file.audio.outline:before{content:"\F1C7"}html.honeywell-dark-theme i.icon.file.video.outline:before{content:"\F1C8"}html.honeywell-dark-theme i.icon.file.code.outline:before{content:"\F1C9"}html.honeywell-dark-theme i.icon.qrcode:before{content:"\F029"}html.honeywell-dark-theme i.icon.barcode:before{content:"\F02A"}html.honeywell-dark-theme i.icon.rss:before{content:"\F09E"}html.honeywell-dark-theme i.icon.fork:before{content:"\F126"}html.honeywell-dark-theme i.icon.html5:before{content:"\F13B"}html.honeywell-dark-theme i.icon.css3:before{content:"\F13C"}html.honeywell-dark-theme i.icon.rss.square:before{content:"\F143"}html.honeywell-dark-theme i.icon.openid:before{content:"\F19B"}html.honeywell-dark-theme i.icon.database:before{content:"\F1C0"}html.honeywell-dark-theme i.icon.wifi:before{content:"\F1EB"}html.honeywell-dark-theme i.icon.server:before{content:"\F233"}html.honeywell-dark-theme i.icon.usb:before{content:"\F287"}html.honeywell-dark-theme i.icon.bluetooth:before{content:"\F293"}html.honeywell-dark-theme i.icon.bluetooth.alternative:before{content:"\F294"}html.honeywell-dark-theme i.icon.microchip:before{content:"\F2DB"}html.honeywell-dark-theme i.icon.heart:before{content:"\F004"}html.honeywell-dark-theme i.icon.star:before{content:"\F005"}html.honeywell-dark-theme i.icon.empty.star:before{content:"\F006"}html.honeywell-dark-theme i.icon.thumbs.outline.up:before{content:"\F087"}html.honeywell-dark-theme i.icon.thumbs.outline.down:before{content:"\F088"}html.honeywell-dark-theme i.icon.star.half:before{content:"\F089"}html.honeywell-dark-theme i.icon.empty.heart:before{content:"\F08A"}html.honeywell-dark-theme i.icon.smile:before{content:"\F118"}html.honeywell-dark-theme i.icon.frown:before{content:"\F119"}html.honeywell-dark-theme i.icon.meh:before{content:"\F11A"}html.honeywell-dark-theme i.icon.star.half.empty:before{content:"\F123"}html.honeywell-dark-theme i.icon.thumbs.up:before{content:"\F164"}html.honeywell-dark-theme i.icon.thumbs.down:before{content:"\F165"}html.honeywell-dark-theme i.icon.music:before{content:"\F001"}html.honeywell-dark-theme i.icon.video.play.outline:before{content:"\F01D"}html.honeywell-dark-theme i.icon.volume.off:before{content:"\F026"}html.honeywell-dark-theme i.icon.volume.down:before{content:"\F027"}html.honeywell-dark-theme i.icon.volume.up:before{content:"\F028"}html.honeywell-dark-theme i.icon.record:before{content:"\F03D"}html.honeywell-dark-theme i.icon.step.backward:before{content:"\F048"}html.honeywell-dark-theme i.icon.fast.backward:before{content:"\F049"}html.honeywell-dark-theme i.icon.backward:before{content:"\F04A"}html.honeywell-dark-theme i.icon.play:before{content:"\F04B"}html.honeywell-dark-theme i.icon.pause:before{content:"\F04C"}html.honeywell-dark-theme i.icon.stop:before{content:"\F04D"}html.honeywell-dark-theme i.icon.forward:before{content:"\F04E"}html.honeywell-dark-theme i.icon.fast.forward:before{content:"\F050"}html.honeywell-dark-theme i.icon.step.forward:before{content:"\F051"}html.honeywell-dark-theme i.icon.eject:before{content:"\F052"}html.honeywell-dark-theme i.icon.unmute:before{content:"\F130"}html.honeywell-dark-theme i.icon.mute:before{content:"\F131"}html.honeywell-dark-theme i.icon.video.play:before{content:"\F144"}html.honeywell-dark-theme i.icon.closed.captioning:before{content:"\F20A"}html.honeywell-dark-theme i.icon.pause.circle:before{content:"\F28B"}html.honeywell-dark-theme i.icon.pause.circle.outline:before{content:"\F28C"}html.honeywell-dark-theme i.icon.stop.circle:before{content:"\F28D"}html.honeywell-dark-theme i.icon.stop.circle.outline:before{content:"\F28E"}html.honeywell-dark-theme i.icon.marker:before{content:"\F041"}html.honeywell-dark-theme i.icon.coffee:before{content:"\F0F4"}html.honeywell-dark-theme i.icon.food:before{content:"\F0F5"}html.honeywell-dark-theme i.icon.building.outline:before{content:"\F0F7"}html.honeywell-dark-theme i.icon.hospital:before{content:"\F0F8"}html.honeywell-dark-theme i.icon.emergency:before{content:"\F0F9"}html.honeywell-dark-theme i.icon.first.aid:before{content:"\F0FA"}html.honeywell-dark-theme i.icon.military:before{content:"\F0FB"}html.honeywell-dark-theme i.icon.h:before{content:"\F0FD"}html.honeywell-dark-theme i.icon.location.arrow:before{content:"\F124"}html.honeywell-dark-theme i.icon.compass:before{content:"\F14E"}html.honeywell-dark-theme i.icon.space.shuttle:before{content:"\F197"}html.honeywell-dark-theme i.icon.university:before{content:"\F19C"}html.honeywell-dark-theme i.icon.building:before{content:"\F1AD"}html.honeywell-dark-theme i.icon.paw:before{content:"\F1B0"}html.honeywell-dark-theme i.icon.spoon:before{content:"\F1B1"}html.honeywell-dark-theme i.icon.car:before{content:"\F1B9"}html.honeywell-dark-theme i.icon.taxi:before{content:"\F1BA"}html.honeywell-dark-theme i.icon.tree:before{content:"\F1BB"}html.honeywell-dark-theme i.icon.bicycle:before{content:"\F206"}html.honeywell-dark-theme i.icon.bus:before{content:"\F207"}html.honeywell-dark-theme i.icon.ship:before{content:"\F21A"}html.honeywell-dark-theme i.icon.motorcycle:before{content:"\F21C"}html.honeywell-dark-theme i.icon.street.view:before{content:"\F21D"}html.honeywell-dark-theme i.icon.hotel:before{content:"\F236"}html.honeywell-dark-theme i.icon.train:before{content:"\F238"}html.honeywell-dark-theme i.icon.subway:before{content:"\F239"}html.honeywell-dark-theme i.icon.map.pin:before{content:"\F276"}html.honeywell-dark-theme i.icon.map.signs:before{content:"\F277"}html.honeywell-dark-theme i.icon.map.outline:before{content:"\F278"}html.honeywell-dark-theme i.icon.map:before{content:"\F279"}html.honeywell-dark-theme i.icon.table:before{content:"\F0CE"}html.honeywell-dark-theme i.icon.columns:before{content:"\F0DB"}html.honeywell-dark-theme i.icon.sort:before{content:"\F0DC"}html.honeywell-dark-theme i.icon.sort.descending:before{content:"\F0DD"}html.honeywell-dark-theme i.icon.sort.ascending:before{content:"\F0DE"}html.honeywell-dark-theme i.icon.sort.alphabet.ascending:before{content:"\F15D"}html.honeywell-dark-theme i.icon.sort.alphabet.descending:before{content:"\F15E"}html.honeywell-dark-theme i.icon.sort.content.ascending:before{content:"\F160"}html.honeywell-dark-theme i.icon.sort.content.descending:before{content:"\F161"}html.honeywell-dark-theme i.icon.sort.numeric.ascending:before{content:"\F162"}html.honeywell-dark-theme i.icon.sort.numeric.descending:before{content:"\F163"}html.honeywell-dark-theme i.icon.font:before{content:"\F031"}html.honeywell-dark-theme i.icon.bold:before{content:"\F032"}html.honeywell-dark-theme i.icon.italic:before{content:"\F033"}html.honeywell-dark-theme i.icon.text.height:before{content:"\F034"}html.honeywell-dark-theme i.icon.text.width:before{content:"\F035"}html.honeywell-dark-theme i.icon.align.left:before{content:"\F036"}html.honeywell-dark-theme i.icon.align.center:before{content:"\F037"}html.honeywell-dark-theme i.icon.align.right:before{content:"\F038"}html.honeywell-dark-theme i.icon.align.justify:before{content:"\F039"}html.honeywell-dark-theme i.icon.list:before{content:"\F03A"}html.honeywell-dark-theme i.icon.outdent:before{content:"\F03B"}html.honeywell-dark-theme i.icon.indent:before{content:"\F03C"}html.honeywell-dark-theme i.icon.linkify:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.cut:before{content:"\F0C4"}html.honeywell-dark-theme i.icon.copy:before{content:"\F0C5"}html.honeywell-dark-theme i.icon.attach:before{content:"\F0C6"}html.honeywell-dark-theme i.icon.save:before{content:"\F0C7"}html.honeywell-dark-theme i.icon.content:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.unordered.list:before{content:"\F0CA"}html.honeywell-dark-theme i.icon.ordered.list:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.strikethrough:before{content:"\F0CC"}html.honeywell-dark-theme i.icon.underline:before{content:"\F0CD"}html.honeywell-dark-theme i.icon.paste:before{content:"\F0EA"}html.honeywell-dark-theme i.icon.unlinkify:before{content:"\F127"}html.honeywell-dark-theme i.icon.superscript:before{content:"\F12B"}html.honeywell-dark-theme i.icon.subscript:before{content:"\F12C"}html.honeywell-dark-theme i.icon.header:before{content:"\F1DC"}html.honeywell-dark-theme i.icon.paragraph:before{content:"\F1DD"}html.honeywell-dark-theme i.icon.text.cursor:before{content:"\F246"}html.honeywell-dark-theme i.icon.euro:before{content:"\F153"}html.honeywell-dark-theme i.icon.pound:before{content:"\F154"}html.honeywell-dark-theme i.icon.dollar:before{content:"\F155"}html.honeywell-dark-theme i.icon.rupee:before{content:"\F156"}html.honeywell-dark-theme i.icon.yen:before{content:"\F157"}html.honeywell-dark-theme i.icon.ruble:before{content:"\F158"}html.honeywell-dark-theme i.icon.won:before{content:"\F159"}html.honeywell-dark-theme i.icon.bitcoin:before{content:"\F15A"}html.honeywell-dark-theme i.icon.lira:before{content:"\F195"}html.honeywell-dark-theme i.icon.shekel:before{content:"\F20B"}html.honeywell-dark-theme i.icon.paypal:before{content:"\F1ED"}html.honeywell-dark-theme i.icon.google.wallet:before{content:"\F1EE"}html.honeywell-dark-theme i.icon.visa:before{content:"\F1F0"}html.honeywell-dark-theme i.icon.mastercard:before{content:"\F1F1"}html.honeywell-dark-theme i.icon.discover:before{content:"\F1F2"}html.honeywell-dark-theme i.icon.american.express:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.paypal.card:before{content:"\F1F4"}html.honeywell-dark-theme i.icon.stripe:before{content:"\F1F5"}html.honeywell-dark-theme i.icon.japan.credit.bureau:before{content:"\F24B"}html.honeywell-dark-theme i.icon.diners.club:before{content:"\F24C"}html.honeywell-dark-theme i.icon.credit.card.alternative:before{content:"\F283"}html.honeywell-dark-theme i.icon.twitter.square:before{content:"\F081"}html.honeywell-dark-theme i.icon.facebook.square:before{content:"\F082"}html.honeywell-dark-theme i.icon.linkedin.square:before{content:"\F08C"}html.honeywell-dark-theme i.icon.github.square:before{content:"\F092"}html.honeywell-dark-theme i.icon.twitter:before{content:"\F099"}html.honeywell-dark-theme i.icon.facebook.f:before{content:"\F09A"}html.honeywell-dark-theme i.icon.github:before{content:"\F09B"}html.honeywell-dark-theme i.icon.pinterest:before{content:"\F0D2"}html.honeywell-dark-theme i.icon.pinterest.square:before{content:"\F0D3"}html.honeywell-dark-theme i.icon.google.plus.square:before{content:"\F0D4"}html.honeywell-dark-theme i.icon.google.plus:before{content:"\F0D5"}html.honeywell-dark-theme i.icon.linkedin:before{content:"\F0E1"}html.honeywell-dark-theme i.icon.github.alternate:before{content:"\F113"}html.honeywell-dark-theme i.icon.maxcdn:before{content:"\F136"}html.honeywell-dark-theme i.icon.youtube.square:before{content:"\F166"}html.honeywell-dark-theme i.icon.youtube:before{content:"\F167"}html.honeywell-dark-theme i.icon.xing:before{content:"\F168"}html.honeywell-dark-theme i.icon.xing.square:before{content:"\F169"}html.honeywell-dark-theme i.icon.youtube.play:before{content:"\F16A"}html.honeywell-dark-theme i.icon.dropbox:before{content:"\F16B"}html.honeywell-dark-theme i.icon.stack.overflow:before{content:"\F16C"}html.honeywell-dark-theme i.icon.instagram:before{content:"\F16D"}html.honeywell-dark-theme i.icon.flickr:before{content:"\F16E"}html.honeywell-dark-theme i.icon.adn:before{content:"\F170"}html.honeywell-dark-theme i.icon.bitbucket:before{content:"\F171"}html.honeywell-dark-theme i.icon.bitbucket.square:before{content:"\F172"}html.honeywell-dark-theme i.icon.tumblr:before{content:"\F173"}html.honeywell-dark-theme i.icon.tumblr.square:before{content:"\F174"}html.honeywell-dark-theme i.icon.apple:before{content:"\F179"}html.honeywell-dark-theme i.icon.windows:before{content:"\F17A"}html.honeywell-dark-theme i.icon.android:before{content:"\F17B"}html.honeywell-dark-theme i.icon.linux:before{content:"\F17C"}html.honeywell-dark-theme i.icon.dribble:before{content:"\F17D"}html.honeywell-dark-theme i.icon.skype:before{content:"\F17E"}html.honeywell-dark-theme i.icon.foursquare:before{content:"\F180"}html.honeywell-dark-theme i.icon.trello:before{content:"\F181"}html.honeywell-dark-theme i.icon.gittip:before{content:"\F184"}html.honeywell-dark-theme i.icon.vk:before{content:"\F189"}html.honeywell-dark-theme i.icon.weibo:before{content:"\F18A"}html.honeywell-dark-theme i.icon.renren:before{content:"\F18B"}html.honeywell-dark-theme i.icon.pagelines:before{content:"\F18C"}html.honeywell-dark-theme i.icon.stack.exchange:before{content:"\F18D"}html.honeywell-dark-theme i.icon.vimeo.square:before{content:"\F194"}html.honeywell-dark-theme i.icon.slack:before{content:"\F198"}html.honeywell-dark-theme i.icon.wordpress:before{content:"\F19A"}html.honeywell-dark-theme i.icon.yahoo:before{content:"\F19E"}html.honeywell-dark-theme i.icon.google:before{content:"\F1A0"}html.honeywell-dark-theme i.icon.reddit:before{content:"\F1A1"}html.honeywell-dark-theme i.icon.reddit.square:before{content:"\F1A2"}html.honeywell-dark-theme i.icon.stumbleupon.circle:before{content:"\F1A3"}html.honeywell-dark-theme i.icon.stumbleupon:before{content:"\F1A4"}html.honeywell-dark-theme i.icon.delicious:before{content:"\F1A5"}html.honeywell-dark-theme i.icon.digg:before{content:"\F1A6"}html.honeywell-dark-theme i.icon.pied.piper:before{content:"\F1A7"}html.honeywell-dark-theme i.icon.pied.piper.alternate:before{content:"\F1A8"}html.honeywell-dark-theme i.icon.drupal:before{content:"\F1A9"}html.honeywell-dark-theme i.icon.joomla:before{content:"\F1AA"}html.honeywell-dark-theme i.icon.behance:before{content:"\F1B4"}html.honeywell-dark-theme i.icon.behance.square:before{content:"\F1B5"}html.honeywell-dark-theme i.icon.steam:before{content:"\F1B6"}html.honeywell-dark-theme i.icon.steam.square:before{content:"\F1B7"}html.honeywell-dark-theme i.icon.spotify:before{content:"\F1BC"}html.honeywell-dark-theme i.icon.deviantart:before{content:"\F1BD"}html.honeywell-dark-theme i.icon.soundcloud:before{content:"\F1BE"}html.honeywell-dark-theme i.icon.vine:before{content:"\F1CA"}html.honeywell-dark-theme i.icon.codepen:before{content:"\F1CB"}html.honeywell-dark-theme i.icon.jsfiddle:before{content:"\F1CC"}html.honeywell-dark-theme i.icon.rebel:before{content:"\F1D0"}html.honeywell-dark-theme i.icon.empire:before{content:"\F1D1"}html.honeywell-dark-theme i.icon.git.square:before{content:"\F1D2"}html.honeywell-dark-theme i.icon.git:before{content:"\F1D3"}html.honeywell-dark-theme i.icon.hacker.news:before{content:"\F1D4"}html.honeywell-dark-theme i.icon.tencent.weibo:before{content:"\F1D5"}html.honeywell-dark-theme i.icon.qq:before{content:"\F1D6"}html.honeywell-dark-theme i.icon.wechat:before{content:"\F1D7"}html.honeywell-dark-theme i.icon.slideshare:before{content:"\F1E7"}html.honeywell-dark-theme i.icon.twitch:before{content:"\F1E8"}html.honeywell-dark-theme i.icon.yelp:before{content:"\F1E9"}html.honeywell-dark-theme i.icon.lastfm:before{content:"\F202"}html.honeywell-dark-theme i.icon.lastfm.square:before{content:"\F203"}html.honeywell-dark-theme i.icon.ioxhost:before{content:"\F208"}html.honeywell-dark-theme i.icon.angellist:before{content:"\F209"}html.honeywell-dark-theme i.icon.meanpath:before{content:"\F20C"}html.honeywell-dark-theme i.icon.buysellads:before{content:"\F20D"}html.honeywell-dark-theme i.icon.connectdevelop:before{content:"\F20E"}html.honeywell-dark-theme i.icon.dashcube:before{content:"\F210"}html.honeywell-dark-theme i.icon.forumbee:before{content:"\F211"}html.honeywell-dark-theme i.icon.leanpub:before{content:"\F212"}html.honeywell-dark-theme i.icon.sellsy:before{content:"\F213"}html.honeywell-dark-theme i.icon.shirtsinbulk:before{content:"\F214"}html.honeywell-dark-theme i.icon.simplybuilt:before{content:"\F215"}html.honeywell-dark-theme i.icon.skyatlas:before{content:"\F216"}html.honeywell-dark-theme i.icon.facebook:before{content:"\F230"}html.honeywell-dark-theme i.icon.pinterest:before{content:"\F231"}html.honeywell-dark-theme i.icon.whatsapp:before{content:"\F232"}html.honeywell-dark-theme i.icon.viacoin:before{content:"\F237"}html.honeywell-dark-theme i.icon.medium:before{content:"\F23A"}html.honeywell-dark-theme i.icon.y.combinator:before{content:"\F23B"}html.honeywell-dark-theme i.icon.optinmonster:before{content:"\F23C"}html.honeywell-dark-theme i.icon.opencart:before{content:"\F23D"}html.honeywell-dark-theme i.icon.expeditedssl:before{content:"\F23E"}html.honeywell-dark-theme i.icon.gg:before{content:"\F260"}html.honeywell-dark-theme i.icon.gg.circle:before{content:"\F261"}html.honeywell-dark-theme i.icon.tripadvisor:before{content:"\F262"}html.honeywell-dark-theme i.icon.odnoklassniki:before{content:"\F263"}html.honeywell-dark-theme i.icon.odnoklassniki.square:before{content:"\F264"}html.honeywell-dark-theme i.icon.pocket:before{content:"\F265"}html.honeywell-dark-theme i.icon.wikipedia:before{content:"\F266"}html.honeywell-dark-theme i.icon.safari:before{content:"\F267"}html.honeywell-dark-theme i.icon.chrome:before{content:"\F268"}html.honeywell-dark-theme i.icon.firefox:before{content:"\F269"}html.honeywell-dark-theme i.icon.opera:before{content:"\F26A"}html.honeywell-dark-theme i.icon.internet.explorer:before{content:"\F26B"}html.honeywell-dark-theme i.icon.contao:before{content:"\F26D"}html.honeywell-dark-theme i.icon.\35 00px:before{content:"\F26E"}html.honeywell-dark-theme i.icon.amazon:before{content:"\F270"}html.honeywell-dark-theme i.icon.houzz:before{content:"\F27C"}html.honeywell-dark-theme i.icon.vimeo:before{content:"\F27D"}html.honeywell-dark-theme i.icon.black.tie:before{content:"\F27E"}html.honeywell-dark-theme i.icon.fonticons:before{content:"\F280"}html.honeywell-dark-theme i.icon.reddit.alien:before{content:"\F281"}html.honeywell-dark-theme i.icon.microsoft.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.codiepie:before{content:"\F284"}html.honeywell-dark-theme i.icon.modx:before{content:"\F285"}html.honeywell-dark-theme i.icon.fort.awesome:before{content:"\F286"}html.honeywell-dark-theme i.icon.product.hunt:before{content:"\F288"}html.honeywell-dark-theme i.icon.mixcloud:before{content:"\F289"}html.honeywell-dark-theme i.icon.scribd:before{content:"\F28A"}html.honeywell-dark-theme i.icon.gitlab:before{content:"\F296"}html.honeywell-dark-theme i.icon.wpbeginner:before{content:"\F297"}html.honeywell-dark-theme i.icon.wpforms:before{content:"\F298"}html.honeywell-dark-theme i.icon.envira.gallery:before{content:"\F299"}html.honeywell-dark-theme i.icon.glide:before{content:"\F2A5"}html.honeywell-dark-theme i.icon.glide.g:before{content:"\F2A6"}html.honeywell-dark-theme i.icon.viadeo:before{content:"\F2A9"}html.honeywell-dark-theme i.icon.viadeo.square:before{content:"\F2AA"}html.honeywell-dark-theme i.icon.snapchat:before{content:"\F2AB"}html.honeywell-dark-theme i.icon.snapchat.ghost:before{content:"\F2AC"}html.honeywell-dark-theme i.icon.snapchat.square:before{content:"\F2AD"}html.honeywell-dark-theme i.icon.pied.piper.hat:before{content:"\F2AE"}html.honeywell-dark-theme i.icon.first.order:before{content:"\F2B0"}html.honeywell-dark-theme i.icon.yoast:before{content:"\F2B1"}html.honeywell-dark-theme i.icon.themeisle:before{content:"\F2B2"}html.honeywell-dark-theme i.icon.google.plus.circle:before{content:"\F2B3"}html.honeywell-dark-theme i.icon.font.awesome:before{content:"\F2B4"}html.honeywell-dark-theme i.icon.linode:before{content:"\F2B8"}html.honeywell-dark-theme i.icon.quora:before{content:"\F2C4"}html.honeywell-dark-theme i.icon.free.code.camp:before{content:"\F2C5"}html.honeywell-dark-theme i.icon.telegram:before{content:"\F2C6"}html.honeywell-dark-theme i.icon.bandcamp:before{content:"\F2D5"}html.honeywell-dark-theme i.icon.grav:before{content:"\F2D6"}html.honeywell-dark-theme i.icon.etsy:before{content:"\F2D7"}html.honeywell-dark-theme i.icon.imdb:before{content:"\F2D8"}html.honeywell-dark-theme i.icon.ravelry:before{content:"\F2D9"}html.honeywell-dark-theme i.icon.eercast:before{content:"\F2DA"}html.honeywell-dark-theme i.icon.superpowers:before{content:"\F2DD"}html.honeywell-dark-theme i.icon.wpexplorer:before{content:"\F2DE"}html.honeywell-dark-theme i.icon.meetup:before{content:"\F2E0"}html.honeywell-dark-theme i.icon.like:before{content:"\F004"}html.honeywell-dark-theme i.icon.favorite:before{content:"\F005"}html.honeywell-dark-theme i.icon.video:before{content:"\F008"}html.honeywell-dark-theme i.icon.check:before{content:"\F00C"}html.honeywell-dark-theme i.icon.close:before{content:"\F00D"}html.honeywell-dark-theme i.icon.cancel:before{content:"\F00D"}html.honeywell-dark-theme i.icon.delete:before{content:"\F00D"}html.honeywell-dark-theme i.icon.x:before{content:"\F00D"}html.honeywell-dark-theme i.icon.zoom.in:before{content:"\F00E"}html.honeywell-dark-theme i.icon.magnify:before{content:"\F00E"}html.honeywell-dark-theme i.icon.shutdown:before{content:"\F011"}html.honeywell-dark-theme i.icon.clock:before{content:"\F017"}html.honeywell-dark-theme i.icon.time:before{content:"\F017"}html.honeywell-dark-theme i.icon.play.circle.outline:before{content:"\F01D"}html.honeywell-dark-theme i.icon.headphone:before{content:"\F025"}html.honeywell-dark-theme i.icon.camera:before{content:"\F030"}html.honeywell-dark-theme i.icon.video.camera:before{content:"\F03D"}html.honeywell-dark-theme i.icon.picture:before{content:"\F03E"}html.honeywell-dark-theme i.icon.pencil:before{content:"\F040"}html.honeywell-dark-theme i.icon.compose:before{content:"\F040"}html.honeywell-dark-theme i.icon.point:before{content:"\F041"}html.honeywell-dark-theme i.icon.tint:before{content:"\F043"}html.honeywell-dark-theme i.icon.signup:before{content:"\F044"}html.honeywell-dark-theme i.icon.plus.circle:before{content:"\F055"}html.honeywell-dark-theme i.icon.question.circle:before{content:"\F059"}html.honeywell-dark-theme i.icon.dont:before{content:"\F05E"}html.honeywell-dark-theme i.icon.minimize:before{content:"\F066"}html.honeywell-dark-theme i.icon.add:before{content:"\F067"}html.honeywell-dark-theme i.icon.exclamation.circle:before{content:"\F06A"}html.honeywell-dark-theme i.icon.attention:before{content:"\F06A"}html.honeywell-dark-theme i.icon.eye:before{content:"\F06E"}html.honeywell-dark-theme i.icon.exclamation.triangle:before{content:"\F071"}html.honeywell-dark-theme i.icon.shuffle:before{content:"\F074"}html.honeywell-dark-theme i.icon.chat:before{content:"\F075"}html.honeywell-dark-theme i.icon.cart:before{content:"\F07A"}html.honeywell-dark-theme i.icon.shopping.cart:before{content:"\F07A"}html.honeywell-dark-theme i.icon.bar.graph:before{content:"\F080"}html.honeywell-dark-theme i.icon.key:before{content:"\F084"}html.honeywell-dark-theme i.icon.cogs:before{content:"\F085"}html.honeywell-dark-theme i.icon.discussions:before{content:"\F086"}html.honeywell-dark-theme i.icon.like.outline:before{content:"\F087"}html.honeywell-dark-theme i.icon.dislike.outline:before{content:"\F088"}html.honeywell-dark-theme i.icon.heart.outline:before{content:"\F08A"}html.honeywell-dark-theme i.icon.log.out:before{content:"\F08B"}html.honeywell-dark-theme i.icon.thumb.tack:before{content:"\F08D"}html.honeywell-dark-theme i.icon.winner:before{content:"\F091"}html.honeywell-dark-theme i.icon.phone:before{content:"\F095"}html.honeywell-dark-theme i.icon.bookmark.outline:before{content:"\F097"}html.honeywell-dark-theme i.icon.phone.square:before{content:"\F098"}html.honeywell-dark-theme i.icon.credit.card:before{content:"\F09D"}html.honeywell-dark-theme i.icon.hdd.outline:before{content:"\F0A0"}html.honeywell-dark-theme i.icon.bullhorn:before{content:"\F0A1"}html.honeywell-dark-theme i.icon.bell.outline:before{content:"\F0A2"}html.honeywell-dark-theme i.icon.hand.outline.right:before{content:"\F0A4"}html.honeywell-dark-theme i.icon.hand.outline.left:before{content:"\F0A5"}html.honeywell-dark-theme i.icon.hand.outline.up:before{content:"\F0A6"}html.honeywell-dark-theme i.icon.hand.outline.down:before{content:"\F0A7"}html.honeywell-dark-theme i.icon.globe:before{content:"\F0AC"}html.honeywell-dark-theme i.icon.wrench:before{content:"\F0AD"}html.honeywell-dark-theme i.icon.briefcase:before{content:"\F0B1"}html.honeywell-dark-theme i.icon.group:before{content:"\F0C0"}html.honeywell-dark-theme i.icon.linkify:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.chain:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.flask:before{content:"\F0C3"}html.honeywell-dark-theme i.icon.sidebar:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.bars:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.list.ul:before{content:"\F0CA"}html.honeywell-dark-theme i.icon.list.ol:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.numbered.list:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.magic:before{content:"\F0D0"}html.honeywell-dark-theme i.icon.truck:before{content:"\F0D1"}html.honeywell-dark-theme i.icon.currency:before{content:"\F0D6"}html.honeywell-dark-theme i.icon.triangle.down:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.dropdown:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.triangle.up:before{content:"\F0D8"}html.honeywell-dark-theme i.icon.triangle.left:before{content:"\F0D9"}html.honeywell-dark-theme i.icon.triangle.right:before{content:"\F0DA"}html.honeywell-dark-theme i.icon.envelope:before{content:"\F0E0"}html.honeywell-dark-theme i.icon.conversation:before{content:"\F0E6"}html.honeywell-dark-theme i.icon.rain:before{content:"\F0E9"}html.honeywell-dark-theme i.icon.clipboard:before{content:"\F0EA"}html.honeywell-dark-theme i.icon.lightbulb:before{content:"\F0EB"}html.honeywell-dark-theme i.icon.bell:before{content:"\F0F3"}html.honeywell-dark-theme i.icon.ambulance:before{content:"\F0F9"}html.honeywell-dark-theme i.icon.medkit:before{content:"\F0FA"}html.honeywell-dark-theme i.icon.fighter.jet:before{content:"\F0FB"}html.honeywell-dark-theme i.icon.beer:before{content:"\F0FC"}html.honeywell-dark-theme i.icon.plus.square:before{content:"\F0FE"}html.honeywell-dark-theme i.icon.computer:before{content:"\F108"}html.honeywell-dark-theme i.icon.circle.outline:before{content:"\F10C"}html.honeywell-dark-theme i.icon.gamepad:before{content:"\F11B"}html.honeywell-dark-theme i.icon.star.half.full:before{content:"\F123"}html.honeywell-dark-theme i.icon.broken.chain:before{content:"\F127"}html.honeywell-dark-theme i.icon.question:before{content:"\F128"}html.honeywell-dark-theme i.icon.exclamation:before{content:"\F12A"}html.honeywell-dark-theme i.icon.eraser:before{content:"\F12D"}html.honeywell-dark-theme i.icon.microphone:before{content:"\F130"}html.honeywell-dark-theme i.icon.microphone.slash:before{content:"\F131"}html.honeywell-dark-theme i.icon.shield:before{content:"\F132"}html.honeywell-dark-theme i.icon.target:before{content:"\F140"}html.honeywell-dark-theme i.icon.play.circle:before{content:"\F144"}html.honeywell-dark-theme i.icon.pencil.square:before{content:"\F14B"}html.honeywell-dark-theme i.icon.eur:before{content:"\F153"}html.honeywell-dark-theme i.icon.gbp:before{content:"\F154"}html.honeywell-dark-theme i.icon.usd:before{content:"\F155"}html.honeywell-dark-theme i.icon.inr:before{content:"\F156"}html.honeywell-dark-theme i.icon.cny:before{content:"\F157"}html.honeywell-dark-theme i.icon.rmb:before{content:"\F157"}html.honeywell-dark-theme i.icon.jpy:before{content:"\F157"}html.honeywell-dark-theme i.icon.rouble:before{content:"\F158"}html.honeywell-dark-theme i.icon.rub:before{content:"\F158"}html.honeywell-dark-theme i.icon.krw:before{content:"\F159"}html.honeywell-dark-theme i.icon.btc:before{content:"\F15A"}html.honeywell-dark-theme i.icon.gratipay:before{content:"\F184"}html.honeywell-dark-theme i.icon.zip:before{content:"\F187"}html.honeywell-dark-theme i.icon.dot.circle.outline:before{content:"\F192"}html.honeywell-dark-theme i.icon.try:before{content:"\F195"}html.honeywell-dark-theme i.icon.graduation:before{content:"\F19D"}html.honeywell-dark-theme i.icon.circle.outline:before{content:"\F1DB"}html.honeywell-dark-theme i.icon.sliders:before{content:"\F1DE"}html.honeywell-dark-theme i.icon.weixin:before{content:"\F1D7"}html.honeywell-dark-theme i.icon.tty:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.teletype:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.binoculars:before{content:"\F1E5"}html.honeywell-dark-theme i.icon.power.cord:before{content:"\F1E6"}html.honeywell-dark-theme i.icon.wi-fi:before{content:"\F1EB"}html.honeywell-dark-theme i.icon.visa.card:before{content:"\F1F0"}html.honeywell-dark-theme i.icon.mastercard.card:before{content:"\F1F1"}html.honeywell-dark-theme i.icon.discover.card:before{content:"\F1F2"}html.honeywell-dark-theme i.icon.amex:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.american.express.card:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.stripe.card:before{content:"\F1F5"}html.honeywell-dark-theme i.icon.bell.slash:before{content:"\F1F6"}html.honeywell-dark-theme i.icon.bell.slash.outline:before{content:"\F1F7"}html.honeywell-dark-theme i.icon.area.graph:before{content:"\F1FE"}html.honeywell-dark-theme i.icon.pie.graph:before{content:"\F200"}html.honeywell-dark-theme i.icon.line.graph:before{content:"\F201"}html.honeywell-dark-theme i.icon.cc:before{content:"\F20A"}html.honeywell-dark-theme i.icon.sheqel:before{content:"\F20B"}html.honeywell-dark-theme i.icon.ils:before{content:"\F20B"}html.honeywell-dark-theme i.icon.plus.cart:before{content:"\F217"}html.honeywell-dark-theme i.icon.arrow.down.cart:before{content:"\F218"}html.honeywell-dark-theme i.icon.detective:before{content:"\F21B"}html.honeywell-dark-theme i.icon.venus:before{content:"\F221"}html.honeywell-dark-theme i.icon.mars:before{content:"\F222"}html.honeywell-dark-theme i.icon.mercury:before{content:"\F223"}html.honeywell-dark-theme i.icon.intersex:before{content:"\F224"}html.honeywell-dark-theme i.icon.venus.double:before{content:"\F226"}html.honeywell-dark-theme i.icon.female.homosexual:before{content:"\F226"}html.honeywell-dark-theme i.icon.mars.double:before{content:"\F227"}html.honeywell-dark-theme i.icon.male.homosexual:before{content:"\F227"}html.honeywell-dark-theme i.icon.venus.mars:before{content:"\F228"}html.honeywell-dark-theme i.icon.mars.stroke:before{content:"\F229"}html.honeywell-dark-theme i.icon.mars.alternate:before{content:"\F229"}html.honeywell-dark-theme i.icon.mars.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.mars.stroke.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.mars.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.mars.stroke.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.asexual:before{content:"\F22D"}html.honeywell-dark-theme i.icon.facebook.official:before{content:"\F230"}html.honeywell-dark-theme i.icon.user.plus:before{content:"\F234"}html.honeywell-dark-theme i.icon.user.times:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.close:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.cancel:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.delete:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.x:before{content:"\F235"}html.honeywell-dark-theme i.icon.bed:before{content:"\F236"}html.honeywell-dark-theme i.icon.yc:before{content:"\F23B"}html.honeywell-dark-theme i.icon.ycombinator:before{content:"\F23B"}html.honeywell-dark-theme i.icon.battery.four:before{content:"\F240"}html.honeywell-dark-theme i.icon.battery.three:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.three.quarters:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.two:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.half:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.one:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.quarter:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.zero:before{content:"\F244"}html.honeywell-dark-theme i.icon.i.cursor:before{content:"\F246"}html.honeywell-dark-theme i.icon.jcb:before{content:"\F24B"}html.honeywell-dark-theme i.icon.japan.credit.bureau.card:before{content:"\F24B"}html.honeywell-dark-theme i.icon.diners.club.card:before{content:"\F24C"}html.honeywell-dark-theme i.icon.balance:before{content:"\F24E"}html.honeywell-dark-theme i.icon.hourglass.outline:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.zero:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.one:before{content:"\F251"}html.honeywell-dark-theme i.icon.hourglass.two:before{content:"\F252"}html.honeywell-dark-theme i.icon.hourglass.three:before{content:"\F253"}html.honeywell-dark-theme i.icon.hourglass.four:before{content:"\F254"}html.honeywell-dark-theme i.icon.grab:before{content:"\F255"}html.honeywell-dark-theme i.icon.hand.victory:before{content:"\F25B"}html.honeywell-dark-theme i.icon.tm:before{content:"\F25C"}html.honeywell-dark-theme i.icon.r.circle:before{content:"\F25D"}html.honeywell-dark-theme i.icon.television:before{content:"\F26C"}html.honeywell-dark-theme i.icon.five.hundred.pixels:before{content:"\F26E"}html.honeywell-dark-theme i.icon.calendar.plus:before{content:"\F271"}html.honeywell-dark-theme i.icon.calendar.minus:before{content:"\F272"}html.honeywell-dark-theme i.icon.calendar.times:before{content:"\F273"}html.honeywell-dark-theme i.icon.calendar.check:before{content:"\F274"}html.honeywell-dark-theme i.icon.factory:before{content:"\F275"}html.honeywell-dark-theme i.icon.commenting:before{content:"\F27A"}html.honeywell-dark-theme i.icon.commenting.outline:before{content:"\F27B"}html.honeywell-dark-theme i.icon.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.ms.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.wordpress.beginner:before{content:"\F297"}html.honeywell-dark-theme i.icon.wordpress.forms:before{content:"\F298"}html.honeywell-dark-theme i.icon.envira:before{content:"\F299"}html.honeywell-dark-theme i.icon.question.circle.outline:before{content:"\F29C"}html.honeywell-dark-theme i.icon.assistive.listening.devices:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.als:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.ald:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.asl.interpreting:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.deaf:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.american.sign.language.interpreting:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.hard.of.hearing:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.signing:before{content:"\F2A7"}html.honeywell-dark-theme i.icon.new.pied.piper:before{content:"\F2AE"}html.honeywell-dark-theme i.icon.theme.isle:before{content:"\F2B2"}html.honeywell-dark-theme i.icon.google.plus.official:before{content:"\F2B3"}html.honeywell-dark-theme i.icon.fa:before{content:"\F2B4"}html.honeywell-dark-theme i.icon.vcard:before{content:"\F2BB"}html.honeywell-dark-theme i.icon.vcard.outline:before{content:"\F2BC"}html.honeywell-dark-theme i.icon.drivers.license:before{content:"\F2C2"}html.honeywell-dark-theme i.icon.drivers.license.outline:before{content:"\F2C3"}html.honeywell-dark-theme i.icon.thermometer:before{content:"\F2C7"}html.honeywell-dark-theme i.icon.s15:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.bath:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.times.rectangle:before{content:"\F2D3"}html.honeywell-dark-theme i.icon.times.rectangle.outline:before{content:"\F2D4"}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart{position:relative}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-axis-labels span,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-axis-labels text{color:silver !important;fill:silver !important;font-weight:700}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-axis-title{color:silver !important;fill:silver !important;font-size:.875rem !important}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .center-block{position:absolute;text-align:center;transform:translate(-50%, -50%)}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .center-block .title{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:silver;font-weight:700}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .center-block .subtitle{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-root{display:flex;flex-direction:column}html.honeywell-dark-theme .ui.high-chart .highcharts-title{text-transform:uppercase;font-weight:600;fill:#e0e0e0 !important;color:#e0e0e0 !important;font-size:1.125rem}html.honeywell-dark-theme .ui.high-chart .highcharts-subtitle{fill:silver !important}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip{cursor:default;pointer-events:none;white-space:nowrap;transition:stroke 150ms;color:#fff !important;font-size:inherit;padding:0;background:#e0e0e0 !important}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .label-color{width:0.75em;height:0.75em;position:relative;display:inline-block;margin-right:0.25em}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .label-color-round{width:0.75em;height:0.75em;position:relative;display:inline-block;margin-right:0.375em;border-radius:0.375em}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .highcharts-tooltip-box{background:#e0e0e0 !important;fill:#e0e0e0 !important}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .tooltip-content{color:#000 !important;text-align:center;padding:.125rem .5rem}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .tooltip-content .tooltip-value{font-weight:400;font-size:1rem !important;padding-bottom:.125rem}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .tooltip-content .tooltip-value .label-color{margin-right:0.5em}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .tooltip-content.shared-content .tooltip-value{font-size:0.85rem !important}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .tooltip-content.shared-content .tooltip-value:last-child{padding-bottom:0}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip text{color:#fff !important}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip .highcharts-header{font-size:0.85em}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip-box{stroke-width:0;fill:#000;fill-opacity:1}html.honeywell-dark-theme .ui.high-chart .highcharts-tooltip-box .highcharts-label-box{fill:#000;fill-opacity:0.85}html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-axis-labels text,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-axis-labels span{color:silver !important;fill:silver !important;font-weight:700}html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-axis-title{color:silver !important;fill:silver !important;font-size:.875rem !important}html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart.y-axis-grid .highcharts-axis.highcharts-yaxis.highcharts-grid-axis path{stroke:#606060}html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-root{display:flex;flex-direction:column}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .gauge-center-label{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;font-weight:700;font-size:2.5rem;padding-right:.25rem}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .gauge-center-suffix{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .title,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .title,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .title{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:silver;font-weight:700}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .subtitle,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .subtitle,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .subtitle{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .align-left,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .align-left,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .align-left{text-align:left}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .align-center,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .align-center,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .align-center{text-align:center}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .align-right,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .align-right,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .align-right{text-align:right}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .controls,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .controls,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .controls{display:flex;justify-content:space-between}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .controls .zoom-button-group .ui.button,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .controls .zoom-button-group .ui.button,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .controls .zoom-button-group .ui.button{padding:0 .25rem}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-item span,html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-title span,html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .legend-custom-label,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-item span,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-title span,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-legend .legend-custom-label{color:#e0e0e0;letter-spacing:0px;font-weight:400;font-size:.875rem}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-item span:hover,html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-title span:hover,html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .legend-custom-label:hover,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-item span:hover,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-title span:hover,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-legend .legend-custom-label:hover{color:#fff !important}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-item .disabled-click-event,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-item .disabled-click-event{position:relative;top:-3px}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-label-box,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-label-box,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-label-box{fill:#e0e0e0}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip>span,html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box>span,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip>span,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box>span,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip>span,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box>span{color:#000 !important}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content{text-align:center;font-size:.8rem}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-value,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-value,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-value{font-weight:600}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-label,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-label,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-label{padding-left:.125rem}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-label-marker,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-label-marker,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-label-marker{padding-right:4px}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-value,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-value,html.honeywell-dark-theme .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-value{font-weight:700}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-data-labels.donut-series text,html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-data-labels.donut-series tspan{fill:#fff}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart .highcharts-series.donut-series path{stroke:#202020}html.honeywell-dark-theme .ui.forge.chart-wrap.basic-chart g.highcharts-gauge-series:not(.manual-color) path.highcharts-dial{fill:#e0e0e0}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-axis-labels text{color:silver !important;fill:silver !important;font-weight:700}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-axis-title{color:silver !important;fill:silver !important;font-size:.875rem !important}html.honeywell-dark-theme .ui.forge.chart-wrap.timeseries-chart .highcharts-root{display:flex;flex-direction:column}html:not(.honeywell-dark-theme){/*!
 * # Semantic UI 2.2.11 - Icon
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}@font-face{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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}}html:not(.honeywell-dark-theme) .h-icon.global{font-family:'Honeywell-Global' !important}html:not(.honeywell-dark-theme) .h-icon.global.badge-alert:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.global.badge-help:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.global.badge-info:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.global.badge-stop:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.global.badge-warning:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.global.battery-empty:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.global.battery-full:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.global.battery-low:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.global.battery-mid:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.global.calendar:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.global.camera:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.global.caret-down:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.global.caret-left:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.global.caret-right:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.global.caret-up:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.global.check:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.global.close:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.global.credit-card:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.global.delete:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.global.document:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.global.edit-circled:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.global.edit:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.global.email:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.global.expand:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.global.export:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.global.file-download:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.global.file-upload:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.global.filter:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.global.flag-icon:before{content:"\E91C"}html:not(.honeywell-dark-theme) .h-icon.global.fullscreen-enter:before{content:"\E91D"}html:not(.honeywell-dark-theme) .h-icon.global.fullscreen-exit:before{content:"\E91E"}html:not(.honeywell-dark-theme) .h-icon.global.globe:before{content:"\E91F"}html:not(.honeywell-dark-theme) .h-icon.global.graph:before{content:"\E920"}html:not(.honeywell-dark-theme) .h-icon.global.home:before{content:"\E921"}html:not(.honeywell-dark-theme) .h-icon.global.location:before{content:"\E922"}html:not(.honeywell-dark-theme) .h-icon.global.locked:before{content:"\E923"}html:not(.honeywell-dark-theme) .h-icon.global.map:before{content:"\E924"}html:not(.honeywell-dark-theme) .h-icon.global.menu-icon:before{content:"\E925"}html:not(.honeywell-dark-theme) .h-icon.global.message:before{content:"\E926"}html:not(.honeywell-dark-theme) .h-icon.global.multiple-devices:before{content:"\E927"}html:not(.honeywell-dark-theme) .h-icon.global.notification:before{content:"\E928"}html:not(.honeywell-dark-theme) .h-icon.global.paperclip:before{content:"\E929"}html:not(.honeywell-dark-theme) .h-icon.global.pc:before{content:"\E92A"}html:not(.honeywell-dark-theme) .h-icon.global.phone:before{content:"\E92B"}html:not(.honeywell-dark-theme) .h-icon.global.playback-pause:before{content:"\E92C"}html:not(.honeywell-dark-theme) .h-icon.global.playback-play:before{content:"\E92D"}html:not(.honeywell-dark-theme) .h-icon.global.print:before{content:"\E92E"}html:not(.honeywell-dark-theme) .h-icon.global.redo:before{content:"\E92F"}html:not(.honeywell-dark-theme) .h-icon.global.refresh:before{content:"\E930"}html:not(.honeywell-dark-theme) .h-icon.global.reminders:before{content:"\E931"}html:not(.honeywell-dark-theme) .h-icon.global.save:before{content:"\E932"}html:not(.honeywell-dark-theme) .h-icon.global.search:before{content:"\E933"}html:not(.honeywell-dark-theme) .h-icon.global.settings:before{content:"\E934"}html:not(.honeywell-dark-theme) .h-icon.global.share-2:before{content:"\E935"}html:not(.honeywell-dark-theme) .h-icon.global.share:before{content:"\E936"}html:not(.honeywell-dark-theme) .h-icon.global.shopping-bag:before{content:"\E937"}html:not(.honeywell-dark-theme) .h-icon.global.slider-controls-minus:before{content:"\E938"}html:not(.honeywell-dark-theme) .h-icon.global.slider-controls-plus:before{content:"\E939"}html:not(.honeywell-dark-theme) .h-icon.global.smartphone:before{content:"\E93A"}html:not(.honeywell-dark-theme) .h-icon.global.social-fb-sq:before{content:"\E93B"}html:not(.honeywell-dark-theme) .h-icon.global.social-fb:before{content:"\E93C"}html:not(.honeywell-dark-theme) .h-icon.global.social-ig-sq:before{content:"\E93D"}html:not(.honeywell-dark-theme) .h-icon.global.social-ig:before{content:"\E93E"}html:not(.honeywell-dark-theme) .h-icon.global.social-li-sq:before{content:"\E93F"}html:not(.honeywell-dark-theme) .h-icon.global.social-li:before{content:"\E940"}html:not(.honeywell-dark-theme) .h-icon.global.social-tw-sq:before{content:"\E941"}html:not(.honeywell-dark-theme) .h-icon.global.social-tw:before{content:"\E942"}html:not(.honeywell-dark-theme) .h-icon.global.social-yt-sq:before{content:"\E943"}html:not(.honeywell-dark-theme) .h-icon.global.social-yt:before{content:"\E944"}html:not(.honeywell-dark-theme) .h-icon.global.speaker-off:before{content:"\E945"}html:not(.honeywell-dark-theme) .h-icon.global.speaker-on:before{content:"\E946"}html:not(.honeywell-dark-theme) .h-icon.global.star:before{content:"\E947"}html:not(.honeywell-dark-theme) .h-icon.global.tools:before{content:"\E948"}html:not(.honeywell-dark-theme) .h-icon.global.undo:before{content:"\E949"}html:not(.honeywell-dark-theme) .h-icon.global.unlocked:before{content:"\E94A"}html:not(.honeywell-dark-theme) .h-icon.global.user:before{content:"\E94B"}html:not(.honeywell-dark-theme) .h-icon.global.users:before{content:"\E94C"}html:not(.honeywell-dark-theme) .h-icon.global.voice-message:before{content:"\E94D"}html:not(.honeywell-dark-theme) .h-icon.global.wifi:before{content:"\E94E"}html:not(.honeywell-dark-theme) .h-icon.global.shipping{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.shipping:before{content:"\1F399"}html:not(.honeywell-dark-theme) .h-icon.global.app-launcher{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.app-launcher:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-right{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-right:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-left{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-left:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.global.rtm{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.rtm:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.global.organization{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.organization:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.global.dash{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.dash:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.global.equipment{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.equipment:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.global.inspections{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.inspections:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.global.reports{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.reports:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.global.training{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.training:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.global.sites-pin{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.sites-pin:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.global.users-two{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.users-two:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.global.unequal{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.unequal:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.aero{font-family:'Honeywell-Flight' !important}html:not(.honeywell-dark-theme) .h-icon.aero.ac-atr:before{content:"\E92A"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-bga:before{content:"\E92B"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-dns:before{content:"\E92C"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-dualprop:before{content:"\E92D"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-glider:before{content:"\E92E"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-highwing:before{content:"\E92F"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-lowwing:before{content:"\E930"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-profile:before{content:"\E931"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-right:before{content:"\E932"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-settings:before{content:"\E933"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-up:before{content:"\E934"}html:not(.honeywell-dark-theme) .h-icon.aero.airports-directory:before{content:"\E935"}html:not(.honeywell-dark-theme) .h-icon.aero.airports-nearby:before{content:"\E936"}html:not(.honeywell-dark-theme) .h-icon.aero.airports:before{content:"\E937"}html:not(.honeywell-dark-theme) .h-icon.aero.cabin-seat:before{content:"\E938"}html:not(.honeywell-dark-theme) .h-icon.aero.cabin:before{content:"\E939"}html:not(.honeywell-dark-theme) .h-icon.aero.cleaning:before{content:"\E93A"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis-3:before{content:"\E93B"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis-alt:before{content:"\E93C"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis:before{content:"\E93D"}html:not(.honeywell-dark-theme) .h-icon.aero.egi-2:before{content:"\E93E"}html:not(.honeywell-dark-theme) .h-icon.aero.egi:before{content:"\E93F"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo-1:before{content:"\E940"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo-2:before{content:"\E941"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo:before{content:"\E942"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-attendant:before{content:"\E943"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan-doc:before{content:"\E944"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan-new:before{content:"\E945"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan:before{content:"\E946"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-schedule-alt:before{content:"\E947"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-schedule:before{content:"\E948"}html:not(.honeywell-dark-theme) .h-icon.aero.fuel:before{content:"\E949"}html:not(.honeywell-dark-theme) .h-icon.aero.hangar:before{content:"\E94A"}html:not(.honeywell-dark-theme) .h-icon.aero.helicopter:before{content:"\E94B"}html:not(.honeywell-dark-theme) .h-icon.aero.intl-trip:before{content:"\E94C"}html:not(.honeywell-dark-theme) .h-icon.aero.luggage:before{content:"\E94D"}html:not(.honeywell-dark-theme) .h-icon.aero.notams-2:before{content:"\E94E"}html:not(.honeywell-dark-theme) .h-icon.aero.notams-3:before{content:"\E94F"}html:not(.honeywell-dark-theme) .h-icon.aero.notams:before{content:"\E950"}html:not(.honeywell-dark-theme) .h-icon.aero.pilot-crushcap:before{content:"\E951"}html:not(.honeywell-dark-theme) .h-icon.aero.plane-approach-1:before{content:"\E952"}html:not(.honeywell-dark-theme) .h-icon.aero.plane-approach-2:before{content:"\E953"}html:not(.honeywell-dark-theme) .h-icon.aero.psngr-boarding:before{content:"\E954"}html:not(.honeywell-dark-theme) .h-icon.aero.psngr-deboarding:before{content:"\E955"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-1:before{content:"\E956"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-2:before{content:"\E957"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-3:before{content:"\E958"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-1:before{content:"\E959"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-2:before{content:"\E95A"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-3:before{content:"\E95B"}html:not(.honeywell-dark-theme) .h-icon.aero.runway:before{content:"\E95C"}html:not(.honeywell-dark-theme) .h-icon.aero.screen-seat:before{content:"\E95D"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator-air:before{content:"\E95E"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator-vertical:before{content:"\E95F"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator:before{content:"\E960"}html:not(.honeywell-dark-theme) .h-icon.aero.track-up-centered:before{content:"\E961"}html:not(.honeywell-dark-theme) .h-icon.aero.track-up:before{content:"\E962"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit-add:before{content:"\E963"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit-refresh:before{content:"\E964"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit:before{content:"\E965"}html:not(.honeywell-dark-theme) .h-icon.aero.uav:before{content:"\E966"}html:not(.honeywell-dark-theme) .h-icon.aero.valance:before{content:"\E967"}html:not(.honeywell-dark-theme) .h-icon.aero.weather-chart:before{content:"\E968"}html:not(.honeywell-dark-theme) .h-icon.aero.wheel-chocks:before{content:"\E969"}html:not(.honeywell-dark-theme) .h-icon.aero.window-down:before{content:"\E96A"}html:not(.honeywell-dark-theme) .h-icon.aero.window-mid:before{content:"\E96B"}html:not(.honeywell-dark-theme) .h-icon.aero.window-up:before{content:"\E96C"}html:not(.honeywell-dark-theme) .h-icon.aero.ptmd{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.ptmd:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-efficiency{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.flight-efficiency:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.aero.cmx{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.cmx:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.building{font-family:'Honeywell-Buildings' !important}html:not(.honeywell-dark-theme) .h-icon.building.add:before{content:"\E96D"}html:not(.honeywell-dark-theme) .h-icon.building.badge-alert:before{content:"\E96E"}html:not(.honeywell-dark-theme) .h-icon.building.badge-help:before{content:"\E96F"}html:not(.honeywell-dark-theme) .h-icon.building.badge-info:before{content:"\E970"}html:not(.honeywell-dark-theme) .h-icon.building.badge-stop:before{content:"\E971"}html:not(.honeywell-dark-theme) .h-icon.building.badge-warning:before{content:"\E972"}html:not(.honeywell-dark-theme) .h-icon.building.battery-empty:before{content:"\E973"}html:not(.honeywell-dark-theme) .h-icon.building.battery-full:before{content:"\E974"}html:not(.honeywell-dark-theme) .h-icon.building.battery-low:before{content:"\E975"}html:not(.honeywell-dark-theme) .h-icon.building.battery-mid:before{content:"\E976"}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path1:before{content:"\E977"}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path2:before{content:"\EA1B";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path3:before{content:"\EA1C";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path4:before{content:"\EA1D";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path5:before{content:"\EA1E";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path6:before{content:"\EA1F";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path7:before{content:"\EA20";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path8:before{content:"\EA21";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path9:before{content:"\EA22";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path10:before{content:"\EA23";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path11:before{content:"\EA24";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path12:before{content:"\EA25";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path13:before{content:"\EA26";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.camera:before{content:"\E978"}html:not(.honeywell-dark-theme) .h-icon.building.caret-down:before{content:"\E979"}html:not(.honeywell-dark-theme) .h-icon.building.caret-left:before{content:"\E97A"}html:not(.honeywell-dark-theme) .h-icon.building.caret-right:before{content:"\E97B"}html:not(.honeywell-dark-theme) .h-icon.building.caret-up:before{content:"\E97C"}html:not(.honeywell-dark-theme) .h-icon.building.check:before{content:"\E97D"}html:not(.honeywell-dark-theme) .h-icon.building.close-circled:before{content:"\E97E"}html:not(.honeywell-dark-theme) .h-icon.building.close:before{content:"\E97F"}html:not(.honeywell-dark-theme) .h-icon.building.cloud-download:before{content:"\E980"}html:not(.honeywell-dark-theme) .h-icon.building.cloud-upload:before{content:"\E981"}html:not(.honeywell-dark-theme) .h-icon.building.collapse:before{content:"\E982"}html:not(.honeywell-dark-theme) .h-icon.building.credit-card:before{content:"\E983"}html:not(.honeywell-dark-theme) .h-icon.building.dashboard:before{content:"\E984"}html:not(.honeywell-dark-theme) .h-icon.building.delete:before{content:"\E985"}html:not(.honeywell-dark-theme) .h-icon.building.doc-add:before{content:"\E986"}html:not(.honeywell-dark-theme) .h-icon.building.doc-annotate:before{content:"\E987"}html:not(.honeywell-dark-theme) .h-icon.building.doc-certificate:before{content:"\E988"}html:not(.honeywell-dark-theme) .h-icon.building.doc-pdf:before{content:"\E989"}html:not(.honeywell-dark-theme) .h-icon.building.doc-photo:before{content:"\E98A"}html:not(.honeywell-dark-theme) .h-icon.building.doc-proc:before{content:"\E98B"}html:not(.honeywell-dark-theme) .h-icon.building.doc-search:before{content:"\E98C"}html:not(.honeywell-dark-theme) .h-icon.building.doc-test:before{content:"\E98D"}html:not(.honeywell-dark-theme) .h-icon.building.document:before{content:"\E98E"}html:not(.honeywell-dark-theme) .h-icon.building.edit-circled:before{content:"\E98F"}html:not(.honeywell-dark-theme) .h-icon.building.edit:before{content:"\E990"}html:not(.honeywell-dark-theme) .h-icon.building.email:before{content:"\E991"}html:not(.honeywell-dark-theme) .h-icon.building.expand:before{content:"\E992"}html:not(.honeywell-dark-theme) .h-icon.building.export:before{content:"\E993"}html:not(.honeywell-dark-theme) .h-icon.building.file-download:before{content:"\E994"}html:not(.honeywell-dark-theme) .h-icon.building.file-upload:before{content:"\E995"}html:not(.honeywell-dark-theme) .h-icon.building.filter:before{content:"\E996"}html:not(.honeywell-dark-theme) .h-icon.building.flag-icon:before{content:"\E997"}html:not(.honeywell-dark-theme) .h-icon.building.folder-music:before{content:"\E998"}html:not(.honeywell-dark-theme) .h-icon.building.folder:before{content:"\E999"}html:not(.honeywell-dark-theme) .h-icon.building.fullscreen-enter:before{content:"\E99A"}html:not(.honeywell-dark-theme) .h-icon.building.fullscreen-exit:before{content:"\E99B"}html:not(.honeywell-dark-theme) .h-icon.building.globe:before{content:"\E99C"}html:not(.honeywell-dark-theme) .h-icon.building.graph:before{content:"\E99D"}html:not(.honeywell-dark-theme) .h-icon.building.home:before{content:"\E99E"}html:not(.honeywell-dark-theme) .h-icon.building.location:before{content:"\E99F"}html:not(.honeywell-dark-theme) .h-icon.building.locked:before{content:"\E9A0"}html:not(.honeywell-dark-theme) .h-icon.building.map:before{content:"\E9A1"}html:not(.honeywell-dark-theme) .h-icon.building.menu-icon:before{content:"\E9A2"}html:not(.honeywell-dark-theme) .h-icon.building.message:before{content:"\E9A3"}html:not(.honeywell-dark-theme) .h-icon.building.messages:before{content:"\E9A4"}html:not(.honeywell-dark-theme) .h-icon.building.modify:before{content:"\E9A5"}html:not(.honeywell-dark-theme) .h-icon.building.multiple-devices:before{content:"\E9A6"}html:not(.honeywell-dark-theme) .h-icon.building.music:before{content:"\E9A7"}html:not(.honeywell-dark-theme) .h-icon.building.notification:before{content:"\E9A8"}html:not(.honeywell-dark-theme) .h-icon.building.paperclip:before{content:"\E9A9"}html:not(.honeywell-dark-theme) .h-icon.building.pc:before{content:"\E9AA"}html:not(.honeywell-dark-theme) .h-icon.building.phone:before{content:"\E9AB"}html:not(.honeywell-dark-theme) .h-icon.building.playback-pause:before{content:"\E9AC"}html:not(.honeywell-dark-theme) .h-icon.building.playback-play:before{content:"\E9AD"}html:not(.honeywell-dark-theme) .h-icon.building.playback-rec:before{content:"\E9AE"}html:not(.honeywell-dark-theme) .h-icon.building.playback-stop:before{content:"\E9AF"}html:not(.honeywell-dark-theme) .h-icon.building.print:before{content:"\E9B0"}html:not(.honeywell-dark-theme) .h-icon.building.redo:before{content:"\E9B1"}html:not(.honeywell-dark-theme) .h-icon.building.refresh:before{content:"\E9B2"}html:not(.honeywell-dark-theme) .h-icon.building.save:before{content:"\E9B3"}html:not(.honeywell-dark-theme) .h-icon.building.search:before{content:"\E9B4"}html:not(.honeywell-dark-theme) .h-icon.building.settings:before{content:"\E9B5"}html:not(.honeywell-dark-theme) .h-icon.building.share-2:before{content:"\E9B6"}html:not(.honeywell-dark-theme) .h-icon.building.share:before{content:"\E9B7"}html:not(.honeywell-dark-theme) .h-icon.building.shopping-bag:before{content:"\E9B8"}html:not(.honeywell-dark-theme) .h-icon.building.slider-controls-minus:before{content:"\E9B9"}html:not(.honeywell-dark-theme) .h-icon.building.slider-controls-plus:before{content:"\E9BA"}html:not(.honeywell-dark-theme) .h-icon.building.smartphone:before{content:"\E9BB"}html:not(.honeywell-dark-theme) .h-icon.building.social-fb:before{content:"\E9BC"}html:not(.honeywell-dark-theme) .h-icon.building.social-ig:before{content:"\E9BD"}html:not(.honeywell-dark-theme) .h-icon.building.social-tw:before{content:"\E9BE"}html:not(.honeywell-dark-theme) .h-icon.building.social-yt:before{content:"\E9BF"}html:not(.honeywell-dark-theme) .h-icon.building.speaker-off:before{content:"\E9C0"}html:not(.honeywell-dark-theme) .h-icon.building.speaker-on:before{content:"\E9C1"}html:not(.honeywell-dark-theme) .h-icon.building.star:before{content:"\E9C2"}html:not(.honeywell-dark-theme) .h-icon.building.tag:before{content:"\E9C3"}html:not(.honeywell-dark-theme) .h-icon.building.timeline:before{content:"\E9C4"}html:not(.honeywell-dark-theme) .h-icon.building.tools:before{content:"\E9C5"}html:not(.honeywell-dark-theme) .h-icon.building.undo:before{content:"\E9C6"}html:not(.honeywell-dark-theme) .h-icon.building.unlocked:before{content:"\E9C7"}html:not(.honeywell-dark-theme) .h-icon.building.user-filled:before{content:"\E9C8"}html:not(.honeywell-dark-theme) .h-icon.building.user:before{content:"\E9C9"}html:not(.honeywell-dark-theme) .h-icon.building.voicemessages:before{content:"\E9CA"}html:not(.honeywell-dark-theme) .h-icon.building.wifi:before{content:"\E9CB"}html:not(.honeywell-dark-theme) .h-icon.building.total-footprint{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.total-footprint:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.building.sites{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.sites:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-savings{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-savings:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-cost{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-cost:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.building.comfort{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.comfort:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.building.filter-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.filter-alt:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.building.graph-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.graph-alt:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.building.home-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.home-alt:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.building.sites-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.sites-alt:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.building.operations{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.operations:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.building.energy{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.energy:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.building.rounds{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.rounds:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.weather{font-family:'Honeywell-Weather'}html:not(.honeywell-dark-theme) .h-icon.weather.blowingsnow:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.weather.breezy:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.weather.clear:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.weather.clearnight:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.weather.drizzle:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.weather.fewbrokenclowds:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.weather.fog:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.weather.freezingdrizzle:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.weather.freezingrain:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.weather.funnelcloud:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.weather.hail:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.weather.haze:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.weather.heavyfog:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.weather.heavyrain:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.weather.heavysnow:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.weather.hot:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.weather.hurricane:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.weather.ice:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.weather.icepellets:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.weather.lightfog:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.weather.lightrain:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.weather.lightsnow:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.weather.mixrainfall:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.weather.moderatefog:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.weather.moderaterain:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.weather.moderatesnow:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.weather.na:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.weather.noreport:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.weather.overcast:before{content:"\E91C"}html:not(.honeywell-dark-theme) .h-icon.weather.rain:before{content:"\E91D"}html:not(.honeywell-dark-theme) .h-icon.weather.rainshowers:before{content:"\E91E"}html:not(.honeywell-dark-theme) .h-icon.weather.sandustorm:before{content:"\E91F"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredclouds:before{content:"\E920"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredshowers:before{content:"\E921"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredthunderstorm:before{content:"\E922"}html:not(.honeywell-dark-theme) .h-icon.weather.smoke:before{content:"\E923"}html:not(.honeywell-dark-theme) .h-icon.weather.snowshowers:before{content:"\E924"}html:not(.honeywell-dark-theme) .h-icon.weather.sunrise:before{content:"\E925"}html:not(.honeywell-dark-theme) .h-icon.weather.sunset:before{content:"\E926"}html:not(.honeywell-dark-theme) .h-icon.weather.thunderstorm:before{content:"\E927"}html:not(.honeywell-dark-theme) .h-icon.weather.tropicalstorm:before{content:"\E928"}html:not(.honeywell-dark-theme) .h-icon.weather.water:before{content:"\E929"}@font-face{html:not(.honeywell-dark-theme){font-family:'Icons';src:url(/static/media/icons.7bfcab6d.eot);src:url(/static/media/icons.7bfcab6d.eot) format("embedded-opentype"),url(/static/media/icons.2adefcbc.woff2) format("woff2"),url(/static/media/icons.ba0c59de.woff) format("woff"),url(/static/media/icons.aa58f33f.ttf) format("truetype"),url(/static/media/icons.ad615792.svg) format("svg");font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-decoration:inherit;text-transform:none}}html:not(.honeywell-dark-theme) i.icon{font-family:'Honeywell-Global', 'Icons';display:inline-block;opacity:1;font-style:normal;font-weight:normal;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;backface-visibility:hidden}html:not(.honeywell-dark-theme) i.icon:before{background:none !important}html:not(.honeywell-dark-theme) i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) i.icon.hover{opacity:1 !important}html:not(.honeywell-dark-theme) i.icon.active{opacity:1 !important}html:not(.honeywell-dark-theme) i.emphasized.icon{opacity:1 !important}html:not(.honeywell-dark-theme) i.disabled.icon{opacity:0.45 !important}html:not(.honeywell-dark-theme) i.fitted.icon{width:auto;margin:0em}html:not(.honeywell-dark-theme) i.link.icon,html:not(.honeywell-dark-theme) i.link.icons{cursor:pointer;opacity:0.8;transition:opacity 0.1s ease}html:not(.honeywell-dark-theme) i.link.icon:hover,html:not(.honeywell-dark-theme) i.link.icons:hover{opacity:1 !important}html:not(.honeywell-dark-theme) i.circular.icon{border-radius:500em !important;line-height:1 !important;padding:0.5em 0.5em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset;width:2em !important;height:2em !important}html:not(.honeywell-dark-theme) i.circular.inverted.icon{border:none;box-shadow:none}html:not(.honeywell-dark-theme) i.flipped.icon,html:not(.honeywell-dark-theme) i.horizontally.flipped.icon{transform:scale(-1, 1)}html:not(.honeywell-dark-theme) i.vertically.flipped.icon{transform:scale(1, -1)}html:not(.honeywell-dark-theme) i.rotated.icon,html:not(.honeywell-dark-theme) i.right.rotated.icon,html:not(.honeywell-dark-theme) i.clockwise.rotated.icon{transform:rotate(90deg)}html:not(.honeywell-dark-theme) i.left.rotated.icon,html:not(.honeywell-dark-theme) i.counterclockwise.rotated.icon{transform:rotate(-90deg)}html:not(.honeywell-dark-theme) i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:0.5em 0.41em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset}html:not(.honeywell-dark-theme) i.bordered.inverted.icon{border:none;box-shadow:none}html:not(.honeywell-dark-theme) i.inverted.bordered.icon,html:not(.honeywell-dark-theme) i.inverted.circular.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.inverted.icon{color:#FFFFFF}html:not(.honeywell-dark-theme) i.red.icon{color:#DB2828 !important}html:not(.honeywell-dark-theme) i.inverted.red.icon{color:#FF695E !important}html:not(.honeywell-dark-theme) i.inverted.bordered.red.icon,html:not(.honeywell-dark-theme) i.inverted.circular.red.icon{background-color:#DB2828 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.orange.icon{color:#F2711C !important}html:not(.honeywell-dark-theme) i.inverted.orange.icon{color:#FF851B !important}html:not(.honeywell-dark-theme) i.inverted.bordered.orange.icon,html:not(.honeywell-dark-theme) i.inverted.circular.orange.icon{background-color:#F2711C !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.yellow.icon{color:#FBBD08 !important}html:not(.honeywell-dark-theme) i.inverted.yellow.icon{color:#FFE21F !important}html:not(.honeywell-dark-theme) i.inverted.bordered.yellow.icon,html:not(.honeywell-dark-theme) i.inverted.circular.yellow.icon{background-color:#FBBD08 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.olive.icon{color:#B5CC18 !important}html:not(.honeywell-dark-theme) i.inverted.olive.icon{color:#D9E778 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.olive.icon,html:not(.honeywell-dark-theme) i.inverted.circular.olive.icon{background-color:#B5CC18 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.green.icon{color:#21BA45 !important}html:not(.honeywell-dark-theme) i.inverted.green.icon{color:#2ECC40 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.green.icon,html:not(.honeywell-dark-theme) i.inverted.circular.green.icon{background-color:#21BA45 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.teal.icon{color:#00B5AD !important}html:not(.honeywell-dark-theme) i.inverted.teal.icon{color:#6DFFFF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.teal.icon,html:not(.honeywell-dark-theme) i.inverted.circular.teal.icon{background-color:#00B5AD !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.blue.icon{color:#2185D0 !important}html:not(.honeywell-dark-theme) i.inverted.blue.icon{color:#54C8FF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.blue.icon,html:not(.honeywell-dark-theme) i.inverted.circular.blue.icon{background-color:#2185D0 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.violet.icon{color:#6435C9 !important}html:not(.honeywell-dark-theme) i.inverted.violet.icon{color:#A291FB !important}html:not(.honeywell-dark-theme) i.inverted.bordered.violet.icon,html:not(.honeywell-dark-theme) i.inverted.circular.violet.icon{background-color:#6435C9 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.purple.icon{color:#A333C8 !important}html:not(.honeywell-dark-theme) i.inverted.purple.icon{color:#DC73FF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.purple.icon,html:not(.honeywell-dark-theme) i.inverted.circular.purple.icon{background-color:#A333C8 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.pink.icon{color:#E03997 !important}html:not(.honeywell-dark-theme) i.inverted.pink.icon{color:#FF8EDF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.pink.icon,html:not(.honeywell-dark-theme) i.inverted.circular.pink.icon{background-color:#E03997 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.brown.icon{color:#A5673F !important}html:not(.honeywell-dark-theme) i.inverted.brown.icon{color:#D67C1C !important}html:not(.honeywell-dark-theme) i.inverted.bordered.brown.icon,html:not(.honeywell-dark-theme) i.inverted.circular.brown.icon{background-color:#A5673F !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.grey.icon{color:#767676 !important}html:not(.honeywell-dark-theme) i.inverted.grey.icon{color:#DCDDDE !important}html:not(.honeywell-dark-theme) i.inverted.bordered.grey.icon,html:not(.honeywell-dark-theme) i.inverted.circular.grey.icon{background-color:#767676 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.black.icon{color:#1B1C1D !important}html:not(.honeywell-dark-theme) i.inverted.black.icon{color:#545454 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.black.icon,html:not(.honeywell-dark-theme) i.inverted.circular.black.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.mini.icon,html:not(.honeywell-dark-theme) i.mini.icons{line-height:1;font-size:0.4em}html:not(.honeywell-dark-theme) i.tiny.icon,html:not(.honeywell-dark-theme) i.tiny.icons{line-height:1;font-size:0.5em}html:not(.honeywell-dark-theme) i.small.icon,html:not(.honeywell-dark-theme) i.small.icons{line-height:1;font-size:0.75em}html:not(.honeywell-dark-theme) i.icon,html:not(.honeywell-dark-theme) i.icons{font-size:1em}html:not(.honeywell-dark-theme) i.large.icon,html:not(.honeywell-dark-theme) i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}html:not(.honeywell-dark-theme) i.big.icon,html:not(.honeywell-dark-theme) i.big.icons{line-height:1;vertical-align:middle;font-size:2em}html:not(.honeywell-dark-theme) i.huge.icon,html:not(.honeywell-dark-theme) i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}html:not(.honeywell-dark-theme) i.massive.icon,html:not(.honeywell-dark-theme) i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}html:not(.honeywell-dark-theme) i.icons{display:inline-block;position:relative;line-height:1}html:not(.honeywell-dark-theme) i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0em;margin:0}html:not(.honeywell-dark-theme) i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:0.25rem}html:not(.honeywell-dark-theme) i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:0.45em;text-shadow:-1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF}html:not(.honeywell-dark-theme) i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}html:not(.honeywell-dark-theme) i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}html:not(.honeywell-dark-theme) i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}html:not(.honeywell-dark-theme) i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}html:not(.honeywell-dark-theme) i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D}html:not(.honeywell-dark-theme) i.icon.search:before{content:"\F002"}html:not(.honeywell-dark-theme) i.icon.mail.outline:before{content:"\F003"}html:not(.honeywell-dark-theme) i.icon.signal:before{content:"\F012"}html:not(.honeywell-dark-theme) i.icon.setting:before{content:"\F013"}html:not(.honeywell-dark-theme) i.icon.home:before{content:"\F015"}html:not(.honeywell-dark-theme) i.icon.inbox:before{content:"\F01C"}html:not(.honeywell-dark-theme) i.icon.browser:before{content:"\F022"}html:not(.honeywell-dark-theme) i.icon.tag:before{content:"\F02B"}html:not(.honeywell-dark-theme) i.icon.tags:before{content:"\F02C"}html:not(.honeywell-dark-theme) i.icon.image:before{content:"\F03E"}html:not(.honeywell-dark-theme) i.icon.calendar:before{content:"\F073"}html:not(.honeywell-dark-theme) i.icon.comment:before{content:"\F075"}html:not(.honeywell-dark-theme) i.icon.shop:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.comments:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.external:before{content:"\F08E"}html:not(.honeywell-dark-theme) i.icon.privacy:before{content:"\F084"}html:not(.honeywell-dark-theme) i.icon.settings:before{content:"\F085"}html:not(.honeywell-dark-theme) i.icon.comments:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.external:before{content:"\F08E"}html:not(.honeywell-dark-theme) i.icon.trophy:before{content:"\F091"}html:not(.honeywell-dark-theme) i.icon.payment:before{content:"\F09D"}html:not(.honeywell-dark-theme) i.icon.feed:before{content:"\F09E"}html:not(.honeywell-dark-theme) i.icon.alarm.outline:before{content:"\F0A2"}html:not(.honeywell-dark-theme) i.icon.tasks:before{content:"\F0AE"}html:not(.honeywell-dark-theme) i.icon.cloud:before{content:"\F0C2"}html:not(.honeywell-dark-theme) i.icon.lab:before{content:"\F0C3"}html:not(.honeywell-dark-theme) i.icon.mail:before{content:"\F0E0"}html:not(.honeywell-dark-theme) i.icon.dashboard:before{content:"\F0E4"}html:not(.honeywell-dark-theme) i.icon.comment.outline:before{content:"\F0E5"}html:not(.honeywell-dark-theme) i.icon.comments.outline:before{content:"\F0E6"}html:not(.honeywell-dark-theme) i.icon.sitemap:before{content:"\F0E8"}html:not(.honeywell-dark-theme) i.icon.idea:before{content:"\F0EB"}html:not(.honeywell-dark-theme) i.icon.alarm:before{content:"\F0F3"}html:not(.honeywell-dark-theme) i.icon.terminal:before{content:"\F120"}html:not(.honeywell-dark-theme) i.icon.code:before{content:"\F121"}html:not(.honeywell-dark-theme) i.icon.protect:before{content:"\F132"}html:not(.honeywell-dark-theme) i.icon.calendar.outline:before{content:"\F133"}html:not(.honeywell-dark-theme) i.icon.ticket:before{content:"\F145"}html:not(.honeywell-dark-theme) i.icon.external.square:before{content:"\F14C"}html:not(.honeywell-dark-theme) i.icon.bug:before{content:"\F188"}html:not(.honeywell-dark-theme) i.icon.mail.square:before{content:"\F199"}html:not(.honeywell-dark-theme) i.icon.history:before{content:"\F1DA"}html:not(.honeywell-dark-theme) i.icon.options:before{content:"\F1DE"}html:not(.honeywell-dark-theme) i.icon.text.telephone:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.find:before{content:"\F1E5"}html:not(.honeywell-dark-theme) i.icon.alarm.mute:before{content:"\F1F6"}html:not(.honeywell-dark-theme) i.icon.alarm.mute.outline:before{content:"\F1F7"}html:not(.honeywell-dark-theme) i.icon.copyright:before{content:"\F1F9"}html:not(.honeywell-dark-theme) i.icon.at:before{content:"\F1FA"}html:not(.honeywell-dark-theme) i.icon.eyedropper:before{content:"\F1FB"}html:not(.honeywell-dark-theme) i.icon.paint.brush:before{content:"\F1FC"}html:not(.honeywell-dark-theme) i.icon.heartbeat:before{content:"\F21E"}html:not(.honeywell-dark-theme) i.icon.mouse.pointer:before{content:"\F245"}html:not(.honeywell-dark-theme) i.icon.hourglass.empty:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.start:before{content:"\F251"}html:not(.honeywell-dark-theme) i.icon.hourglass.half:before{content:"\F252"}html:not(.honeywell-dark-theme) i.icon.hourglass.end:before{content:"\F253"}html:not(.honeywell-dark-theme) i.icon.hourglass.full:before{content:"\F254"}html:not(.honeywell-dark-theme) i.icon.hand.pointer:before{content:"\F25A"}html:not(.honeywell-dark-theme) i.icon.trademark:before{content:"\F25C"}html:not(.honeywell-dark-theme) i.icon.registered:before{content:"\F25D"}html:not(.honeywell-dark-theme) i.icon.creative.commons:before{content:"\F25E"}html:not(.honeywell-dark-theme) i.icon.add.to.calendar:before{content:"\F271"}html:not(.honeywell-dark-theme) i.icon.remove.from.calendar:before{content:"\F272"}html:not(.honeywell-dark-theme) i.icon.delete.calendar:before{content:"\F273"}html:not(.honeywell-dark-theme) i.icon.checked.calendar:before{content:"\F274"}html:not(.honeywell-dark-theme) i.icon.industry:before{content:"\F275"}html:not(.honeywell-dark-theme) i.icon.shopping.bag:before{content:"\F290"}html:not(.honeywell-dark-theme) i.icon.shopping.basket:before{content:"\F291"}html:not(.honeywell-dark-theme) i.icon.hashtag:before{content:"\F292"}html:not(.honeywell-dark-theme) i.icon.percent:before{content:"\F295"}html:not(.honeywell-dark-theme) i.icon.handshake:before{content:"\F2B5"}html:not(.honeywell-dark-theme) i.icon.open.envelope:before{content:"\F2B6"}html:not(.honeywell-dark-theme) i.icon.open.envelope.outline:before{content:"\F2B7"}html:not(.honeywell-dark-theme) i.icon.address.book:before{content:"\F2B9"}html:not(.honeywell-dark-theme) i.icon.address.book.outline:before{content:"\F2BA"}html:not(.honeywell-dark-theme) i.icon.address.card:before{content:"\F2BB"}html:not(.honeywell-dark-theme) i.icon.address.card.outline:before{content:"\F2BC"}html:not(.honeywell-dark-theme) i.icon.id.badge:before{content:"\F2C1"}html:not(.honeywell-dark-theme) i.icon.id.card:before{content:"\F2C2"}html:not(.honeywell-dark-theme) i.icon.id.card.outline:before{content:"\F2C3"}html:not(.honeywell-dark-theme) i.icon.podcast:before{content:"\F2CE"}html:not(.honeywell-dark-theme) i.icon.window.maximize:before{content:"\F2D0"}html:not(.honeywell-dark-theme) i.icon.window.minimize:before{content:"\F2D1"}html:not(.honeywell-dark-theme) i.icon.window.restore:before{content:"\F2D2"}html:not(.honeywell-dark-theme) i.icon.window.close:before{content:"\F2D3"}html:not(.honeywell-dark-theme) i.icon.window.close.outline:before{content:"\F2D4"}html:not(.honeywell-dark-theme) i.icon.wait:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.download:before{content:"\F019"}html:not(.honeywell-dark-theme) i.icon.repeat:before{content:"\F01E"}html:not(.honeywell-dark-theme) i.icon.refresh:before{content:"\F021"}html:not(.honeywell-dark-theme) i.icon.lock:before{content:"\F023"}html:not(.honeywell-dark-theme) i.icon.bookmark:before{content:"\F02E"}html:not(.honeywell-dark-theme) i.icon.print:before{content:"\F02F"}html:not(.honeywell-dark-theme) i.icon.write:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.adjust:before{content:"\F042"}html:not(.honeywell-dark-theme) i.icon.theme:before{content:"\F043"}html:not(.honeywell-dark-theme) i.icon.edit:before{content:"\F044"}html:not(.honeywell-dark-theme) i.icon.external.share:before{content:"\F045"}html:not(.honeywell-dark-theme) i.icon.ban:before{content:"\F05E"}html:not(.honeywell-dark-theme) i.icon.mail.forward:before{content:"\F064"}html:not(.honeywell-dark-theme) i.icon.share:before{content:"\F064"}html:not(.honeywell-dark-theme) i.icon.expand:before{content:"\F065"}html:not(.honeywell-dark-theme) i.icon.compress:before{content:"\F066"}html:not(.honeywell-dark-theme) i.icon.unhide:before{content:"\F06E"}html:not(.honeywell-dark-theme) i.icon.hide:before{content:"\F070"}html:not(.honeywell-dark-theme) i.icon.random:before{content:"\F074"}html:not(.honeywell-dark-theme) i.icon.retweet:before{content:"\F079"}html:not(.honeywell-dark-theme) i.icon.sign.out:before{content:"\F08B"}html:not(.honeywell-dark-theme) i.icon.pin:before{content:"\F08D"}html:not(.honeywell-dark-theme) i.icon.sign.in:before{content:"\F090"}html:not(.honeywell-dark-theme) i.icon.upload:before{content:"\F093"}html:not(.honeywell-dark-theme) i.icon.call:before{content:"\F095"}html:not(.honeywell-dark-theme) i.icon.remove.bookmark:before{content:"\F097"}html:not(.honeywell-dark-theme) i.icon.call.square:before{content:"\F098"}html:not(.honeywell-dark-theme) i.icon.unlock:before{content:"\F09C"}html:not(.honeywell-dark-theme) i.icon.configure:before{content:"\F0AD"}html:not(.honeywell-dark-theme) i.icon.filter:before{content:"\F0B0"}html:not(.honeywell-dark-theme) i.icon.wizard:before{content:"\F0D0"}html:not(.honeywell-dark-theme) i.icon.undo:before{content:"\F0E2"}html:not(.honeywell-dark-theme) i.icon.exchange:before{content:"\F0EC"}html:not(.honeywell-dark-theme) i.icon.cloud.download:before{content:"\F0ED"}html:not(.honeywell-dark-theme) i.icon.cloud.upload:before{content:"\F0EE"}html:not(.honeywell-dark-theme) i.icon.reply:before{content:"\F112"}html:not(.honeywell-dark-theme) i.icon.reply.all:before{content:"\F122"}html:not(.honeywell-dark-theme) i.icon.erase:before{content:"\F12D"}html:not(.honeywell-dark-theme) i.icon.unlock.alternate:before{content:"\F13E"}html:not(.honeywell-dark-theme) i.icon.write.square:before{content:"\F14B"}html:not(.honeywell-dark-theme) i.icon.share.square:before{content:"\F14D"}html:not(.honeywell-dark-theme) i.icon.archive:before{content:"\F187"}html:not(.honeywell-dark-theme) i.icon.translate:before{content:"\F1AB"}html:not(.honeywell-dark-theme) i.icon.recycle:before{content:"\F1B8"}html:not(.honeywell-dark-theme) i.icon.send:before{content:"\F1D8"}html:not(.honeywell-dark-theme) i.icon.send.outline:before{content:"\F1D9"}html:not(.honeywell-dark-theme) i.icon.share.alternate:before{content:"\F1E0"}html:not(.honeywell-dark-theme) i.icon.share.alternate.square:before{content:"\F1E1"}html:not(.honeywell-dark-theme) i.icon.add.to.cart:before{content:"\F217"}html:not(.honeywell-dark-theme) i.icon.in.cart:before{content:"\F218"}html:not(.honeywell-dark-theme) i.icon.add.user:before{content:"\F234"}html:not(.honeywell-dark-theme) i.icon.remove.user:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.object.group:before{content:"\F247"}html:not(.honeywell-dark-theme) i.icon.object.ungroup:before{content:"\F248"}html:not(.honeywell-dark-theme) i.icon.clone:before{content:"\F24D"}html:not(.honeywell-dark-theme) i.icon.talk:before{content:"\F27A"}html:not(.honeywell-dark-theme) i.icon.talk.outline:before{content:"\F27B"}html:not(.honeywell-dark-theme) i.icon.help.circle:before{content:"\F059"}html:not(.honeywell-dark-theme) i.icon.info.circle:before{content:"\F05A"}html:not(.honeywell-dark-theme) i.icon.warning.circle:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.warning.sign:before{content:"\F071"}html:not(.honeywell-dark-theme) i.icon.announcement:before{content:"\F0A1"}html:not(.honeywell-dark-theme) i.icon.help:before{content:"\F128"}html:not(.honeywell-dark-theme) i.icon.info:before{content:"\F129"}html:not(.honeywell-dark-theme) i.icon.warning:before{content:"\F12A"}html:not(.honeywell-dark-theme) i.icon.birthday:before{content:"\F1FD"}html:not(.honeywell-dark-theme) i.icon.help.circle.outline:before{content:"\F29C"}html:not(.honeywell-dark-theme) i.icon.user:before{content:"\F007"}html:not(.honeywell-dark-theme) i.icon.users:before{content:"\F0C0"}html:not(.honeywell-dark-theme) i.icon.doctor:before{content:"\F0F0"}html:not(.honeywell-dark-theme) i.icon.handicap:before{content:"\F193"}html:not(.honeywell-dark-theme) i.icon.student:before{content:"\F19D"}html:not(.honeywell-dark-theme) i.icon.child:before{content:"\F1AE"}html:not(.honeywell-dark-theme) i.icon.spy:before{content:"\F21B"}html:not(.honeywell-dark-theme) i.icon.user.circle:before{content:"\F2BD"}html:not(.honeywell-dark-theme) i.icon.user.circle.outline:before{content:"\F2BE"}html:not(.honeywell-dark-theme) i.icon.user.outline:before{content:"\F2C0"}html:not(.honeywell-dark-theme) i.icon.female:before{content:"\F182"}html:not(.honeywell-dark-theme) i.icon.male:before{content:"\F183"}html:not(.honeywell-dark-theme) i.icon.woman:before{content:"\F221"}html:not(.honeywell-dark-theme) i.icon.man:before{content:"\F222"}html:not(.honeywell-dark-theme) i.icon.non.binary.transgender:before{content:"\F223"}html:not(.honeywell-dark-theme) i.icon.intergender:before{content:"\F224"}html:not(.honeywell-dark-theme) i.icon.transgender:before{content:"\F225"}html:not(.honeywell-dark-theme) i.icon.lesbian:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.gay:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.heterosexual:before{content:"\F228"}html:not(.honeywell-dark-theme) i.icon.other.gender:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.other.gender.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.other.gender.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.neuter:before{content:"\F22C"}html:not(.honeywell-dark-theme) i.icon.genderless:before{content:"\F22D"}html:not(.honeywell-dark-theme) i.icon.universal.access:before{content:"\F29A"}html:not(.honeywell-dark-theme) i.icon.wheelchair:before{content:"\F29B"}html:not(.honeywell-dark-theme) i.icon.blind:before{content:"\F29D"}html:not(.honeywell-dark-theme) i.icon.audio.description:before{content:"\F29E"}html:not(.honeywell-dark-theme) i.icon.volume.control.phone:before{content:"\F2A0"}html:not(.honeywell-dark-theme) i.icon.braille:before{content:"\F2A1"}html:not(.honeywell-dark-theme) i.icon.asl:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.assistive.listening.systems:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.deafness:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.sign.language:before{content:"\F2A7"}html:not(.honeywell-dark-theme) i.icon.low.vision:before{content:"\F2A8"}html:not(.honeywell-dark-theme) i.icon.block.layout:before{content:"\F009"}html:not(.honeywell-dark-theme) i.icon.grid.layout:before{content:"\F00A"}html:not(.honeywell-dark-theme) i.icon.list.layout:before{content:"\F00B"}html:not(.honeywell-dark-theme) i.icon.zoom:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.zoom.out:before{content:"\F010"}html:not(.honeywell-dark-theme) i.icon.resize.vertical:before{content:"\F07D"}html:not(.honeywell-dark-theme) i.icon.resize.horizontal:before{content:"\F07E"}html:not(.honeywell-dark-theme) i.icon.maximize:before{content:"\F0B2"}html:not(.honeywell-dark-theme) i.icon.crop:before{content:"\F125"}html:not(.honeywell-dark-theme) i.icon.cocktail:before{content:"\F000"}html:not(.honeywell-dark-theme) i.icon.road:before{content:"\F018"}html:not(.honeywell-dark-theme) i.icon.flag:before{content:"\F024"}html:not(.honeywell-dark-theme) i.icon.book:before{content:"\F02D"}html:not(.honeywell-dark-theme) i.icon.gift:before{content:"\F06B"}html:not(.honeywell-dark-theme) i.icon.leaf:before{content:"\F06C"}html:not(.honeywell-dark-theme) i.icon.fire:before{content:"\F06D"}html:not(.honeywell-dark-theme) i.icon.plane:before{content:"\F072"}html:not(.honeywell-dark-theme) i.icon.magnet:before{content:"\F076"}html:not(.honeywell-dark-theme) i.icon.lemon:before{content:"\F094"}html:not(.honeywell-dark-theme) i.icon.world:before{content:"\F0AC"}html:not(.honeywell-dark-theme) i.icon.travel:before{content:"\F0B1"}html:not(.honeywell-dark-theme) i.icon.shipping:before{content:"\F0D1"}html:not(.honeywell-dark-theme) i.icon.money:before{content:"\F0D6"}html:not(.honeywell-dark-theme) i.icon.legal:before{content:"\F0E3"}html:not(.honeywell-dark-theme) i.icon.lightning:before{content:"\F0E7"}html:not(.honeywell-dark-theme) i.icon.umbrella:before{content:"\F0E9"}html:not(.honeywell-dark-theme) i.icon.treatment:before{content:"\F0F1"}html:not(.honeywell-dark-theme) i.icon.suitcase:before{content:"\F0F2"}html:not(.honeywell-dark-theme) i.icon.bar:before{content:"\F0FC"}html:not(.honeywell-dark-theme) i.icon.flag.outline:before{content:"\F11D"}html:not(.honeywell-dark-theme) i.icon.flag.checkered:before{content:"\F11E"}html:not(.honeywell-dark-theme) i.icon.puzzle:before{content:"\F12E"}html:not(.honeywell-dark-theme) i.icon.fire.extinguisher:before{content:"\F134"}html:not(.honeywell-dark-theme) i.icon.rocket:before{content:"\F135"}html:not(.honeywell-dark-theme) i.icon.anchor:before{content:"\F13D"}html:not(.honeywell-dark-theme) i.icon.bullseye:before{content:"\F140"}html:not(.honeywell-dark-theme) i.icon.sun:before{content:"\F185"}html:not(.honeywell-dark-theme) i.icon.moon:before{content:"\F186"}html:not(.honeywell-dark-theme) i.icon.fax:before{content:"\F1AC"}html:not(.honeywell-dark-theme) i.icon.life.ring:before{content:"\F1CD"}html:not(.honeywell-dark-theme) i.icon.bomb:before{content:"\F1E2"}html:not(.honeywell-dark-theme) i.icon.soccer:before{content:"\F1E3"}html:not(.honeywell-dark-theme) i.icon.calculator:before{content:"\F1EC"}html:not(.honeywell-dark-theme) i.icon.diamond:before{content:"\F219"}html:not(.honeywell-dark-theme) i.icon.sticky.note:before{content:"\F249"}html:not(.honeywell-dark-theme) i.icon.sticky.note.outline:before{content:"\F24A"}html:not(.honeywell-dark-theme) i.icon.law:before{content:"\F24E"}html:not(.honeywell-dark-theme) i.icon.hand.peace:before{content:"\F25B"}html:not(.honeywell-dark-theme) i.icon.hand.rock:before{content:"\F255"}html:not(.honeywell-dark-theme) i.icon.hand.paper:before{content:"\F256"}html:not(.honeywell-dark-theme) i.icon.hand.scissors:before{content:"\F257"}html:not(.honeywell-dark-theme) i.icon.hand.lizard:before{content:"\F258"}html:not(.honeywell-dark-theme) i.icon.hand.spock:before{content:"\F259"}html:not(.honeywell-dark-theme) i.icon.tv:before{content:"\F26C"}html:not(.honeywell-dark-theme) i.icon.thermometer.full:before{content:"\F2C7"}html:not(.honeywell-dark-theme) i.icon.thermometer.three.quarters:before{content:"\F2C8"}html:not(.honeywell-dark-theme) i.icon.thermometer.half:before{content:"\F2C9"}html:not(.honeywell-dark-theme) i.icon.thermometer.quarter:before{content:"\F2CA"}html:not(.honeywell-dark-theme) i.icon.thermometer.empty:before{content:"\F2CB"}html:not(.honeywell-dark-theme) i.icon.shower:before{content:"\F2CC"}html:not(.honeywell-dark-theme) i.icon.bathtub:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.snowflake:before{content:"\F2DC"}html:not(.honeywell-dark-theme) i.icon.crosshairs:before{content:"\F05B"}html:not(.honeywell-dark-theme) i.icon.asterisk:before{content:"\F069"}html:not(.honeywell-dark-theme) i.icon.square.outline:before{content:"\F096"}html:not(.honeywell-dark-theme) i.icon.certificate:before{content:"\F0A3"}html:not(.honeywell-dark-theme) i.icon.square:before{content:"\F0C8"}html:not(.honeywell-dark-theme) i.icon.quote.left:before{content:"\F10D"}html:not(.honeywell-dark-theme) i.icon.quote.right:before{content:"\F10E"}html:not(.honeywell-dark-theme) i.icon.spinner:before{content:"\F110"}html:not(.honeywell-dark-theme) i.icon.circle:before{content:"\F111"}html:not(.honeywell-dark-theme) i.icon.ellipsis.horizontal:before{content:"\F141"}html:not(.honeywell-dark-theme) i.icon.ellipsis.vertical:before{content:"\F142"}html:not(.honeywell-dark-theme) i.icon.cube:before{content:"\F1B2"}html:not(.honeywell-dark-theme) i.icon.cubes:before{content:"\F1B3"}html:not(.honeywell-dark-theme) i.icon.circle.notched:before{content:"\F1CE"}html:not(.honeywell-dark-theme) i.icon.circle.thin:before{content:"\F1DB"}html:not(.honeywell-dark-theme) i.icon.checkmark:before{content:"\F00C"}html:not(.honeywell-dark-theme) i.icon.remove:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.checkmark.box:before{content:"\F046"}html:not(.honeywell-dark-theme) i.icon.move:before{content:"\F047"}html:not(.honeywell-dark-theme) i.icon.add.circle:before{content:"\F055"}html:not(.honeywell-dark-theme) i.icon.minus.circle:before{content:"\F056"}html:not(.honeywell-dark-theme) i.icon.remove.circle:before{content:"\F057"}html:not(.honeywell-dark-theme) i.icon.check.circle:before{content:"\F058"}html:not(.honeywell-dark-theme) i.icon.remove.circle.outline:before{content:"\F05C"}html:not(.honeywell-dark-theme) i.icon.check.circle.outline:before{content:"\F05D"}html:not(.honeywell-dark-theme) i.icon.plus:before{content:"\F067"}html:not(.honeywell-dark-theme) i.icon.minus:before{content:"\F068"}html:not(.honeywell-dark-theme) i.icon.add.square:before{content:"\F0FE"}html:not(.honeywell-dark-theme) i.icon.radio:before{content:"\F10C"}html:not(.honeywell-dark-theme) i.icon.minus.square:before{content:"\F146"}html:not(.honeywell-dark-theme) i.icon.minus.square.outline:before{content:"\F147"}html:not(.honeywell-dark-theme) i.icon.check.square:before{content:"\F14A"}html:not(.honeywell-dark-theme) i.icon.selected.radio:before{content:"\F192"}html:not(.honeywell-dark-theme) i.icon.plus.square.outline:before{content:"\F196"}html:not(.honeywell-dark-theme) i.icon.toggle.off:before{content:"\F204"}html:not(.honeywell-dark-theme) i.icon.toggle.on:before{content:"\F205"}html:not(.honeywell-dark-theme) i.icon.film:before{content:"\F008"}html:not(.honeywell-dark-theme) i.icon.sound:before{content:"\F025"}html:not(.honeywell-dark-theme) i.icon.photo:before{content:"\F030"}html:not(.honeywell-dark-theme) i.icon.bar.chart:before{content:"\F080"}html:not(.honeywell-dark-theme) i.icon.camera.retro:before{content:"\F083"}html:not(.honeywell-dark-theme) i.icon.newspaper:before{content:"\F1EA"}html:not(.honeywell-dark-theme) i.icon.area.chart:before{content:"\F1FE"}html:not(.honeywell-dark-theme) i.icon.pie.chart:before{content:"\F200"}html:not(.honeywell-dark-theme) i.icon.line.chart:before{content:"\F201"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.down:before{content:"\F01A"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.up:before{content:"\F01B"}html:not(.honeywell-dark-theme) i.icon.chevron.left:before{content:"\F053"}html:not(.honeywell-dark-theme) i.icon.chevron.right:before{content:"\F054"}html:not(.honeywell-dark-theme) i.icon.arrow.left:before{content:"\F060"}html:not(.honeywell-dark-theme) i.icon.arrow.right:before{content:"\F061"}html:not(.honeywell-dark-theme) i.icon.arrow.up:before{content:"\F062"}html:not(.honeywell-dark-theme) i.icon.arrow.down:before{content:"\F063"}html:not(.honeywell-dark-theme) i.icon.chevron.up:before{content:"\E90E"}html:not(.honeywell-dark-theme) i.icon.chevron.down:before{content:"\E90B"}html:not(.honeywell-dark-theme) i.icon.pointing.right:before{content:"\F0A4"}html:not(.honeywell-dark-theme) i.icon.pointing.left:before{content:"\F0A5"}html:not(.honeywell-dark-theme) i.icon.pointing.up:before{content:"\F0A6"}html:not(.honeywell-dark-theme) i.icon.pointing.down:before{content:"\F0A7"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.left:before{content:"\F0A8"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.right:before{content:"\F0A9"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.up:before{content:"\F0AA"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.down:before{content:"\F0AB"}html:not(.honeywell-dark-theme) i.icon.caret.down:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.caret.up:before{content:"\F0D8"}html:not(.honeywell-dark-theme) i.icon.caret.left:before{content:"\F0D9"}html:not(.honeywell-dark-theme) i.icon.caret.right:before{content:"\F0DA"}html:not(.honeywell-dark-theme) i.icon.angle.double.left:before{content:"\F100"}html:not(.honeywell-dark-theme) i.icon.angle.double.right:before{content:"\F101"}html:not(.honeywell-dark-theme) i.icon.angle.double.up:before{content:"\F102"}html:not(.honeywell-dark-theme) i.icon.angle.double.down:before{content:"\F103"}html:not(.honeywell-dark-theme) i.icon.angle.left:before{content:"\F104"}html:not(.honeywell-dark-theme) i.icon.angle.right:before{content:"\F105"}html:not(.honeywell-dark-theme) i.icon.angle.up:before{content:"\F106"}html:not(.honeywell-dark-theme) i.icon.angle.down:before{content:"\F107"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.left:before{content:"\F137"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.right:before{content:"\F138"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.up:before{content:"\F139"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.down:before{content:"\F13A"}html:not(.honeywell-dark-theme) i.icon.toggle.down:before{content:"\F150"}html:not(.honeywell-dark-theme) i.icon.toggle.up:before{content:"\F151"}html:not(.honeywell-dark-theme) i.icon.toggle.right:before{content:"\F152"}html:not(.honeywell-dark-theme) i.icon.long.arrow.down:before{content:"\F175"}html:not(.honeywell-dark-theme) i.icon.long.arrow.up:before{content:"\F176"}html:not(.honeywell-dark-theme) i.icon.long.arrow.left:before{content:"\F177"}html:not(.honeywell-dark-theme) i.icon.long.arrow.right:before{content:"\F178"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.right:before{content:"\F18E"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.left:before{content:"\F190"}html:not(.honeywell-dark-theme) i.icon.toggle.left:before{content:"\F191"}html:not(.honeywell-dark-theme) i.icon.tablet:before{content:"\F10A"}html:not(.honeywell-dark-theme) i.icon.mobile:before{content:"\F10B"}html:not(.honeywell-dark-theme) i.icon.battery.full:before{content:"\F240"}html:not(.honeywell-dark-theme) i.icon.battery.high:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.medium:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.low:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.empty:before{content:"\F244"}html:not(.honeywell-dark-theme) i.icon.power:before{content:"\F011"}html:not(.honeywell-dark-theme) i.icon.trash.outline:before{content:"\F014"}html:not(.honeywell-dark-theme) i.icon.disk.outline:before{content:"\F0A0"}html:not(.honeywell-dark-theme) i.icon.desktop:before{content:"\F108"}html:not(.honeywell-dark-theme) i.icon.laptop:before{content:"\F109"}html:not(.honeywell-dark-theme) i.icon.game:before{content:"\F11B"}html:not(.honeywell-dark-theme) i.icon.keyboard:before{content:"\F11C"}html:not(.honeywell-dark-theme) i.icon.plug:before{content:"\F1E6"}html:not(.honeywell-dark-theme) i.icon.trash:before{content:"\F1F8"}html:not(.honeywell-dark-theme) i.icon.file.outline:before{content:"\F016"}html:not(.honeywell-dark-theme) i.icon.folder:before{content:"\F07B"}html:not(.honeywell-dark-theme) i.icon.folder.open:before{content:"\F07C"}html:not(.honeywell-dark-theme) i.icon.file.text.outline:before{content:"\F0F6"}html:not(.honeywell-dark-theme) i.icon.folder.outline:before{content:"\F114"}html:not(.honeywell-dark-theme) i.icon.folder.open.outline:before{content:"\F115"}html:not(.honeywell-dark-theme) i.icon.level.up:before{content:"\F148"}html:not(.honeywell-dark-theme) i.icon.level.down:before{content:"\F149"}html:not(.honeywell-dark-theme) i.icon.file:before{content:"\F15B"}html:not(.honeywell-dark-theme) i.icon.file.text:before{content:"\F15C"}html:not(.honeywell-dark-theme) i.icon.file.pdf.outline:before{content:"\F1C1"}html:not(.honeywell-dark-theme) i.icon.file.word.outline:before{content:"\F1C2"}html:not(.honeywell-dark-theme) i.icon.file.excel.outline:before{content:"\F1C3"}html:not(.honeywell-dark-theme) i.icon.file.powerpoint.outline:before{content:"\F1C4"}html:not(.honeywell-dark-theme) i.icon.file.image.outline:before{content:"\F1C5"}html:not(.honeywell-dark-theme) i.icon.file.archive.outline:before{content:"\F1C6"}html:not(.honeywell-dark-theme) i.icon.file.audio.outline:before{content:"\F1C7"}html:not(.honeywell-dark-theme) i.icon.file.video.outline:before{content:"\F1C8"}html:not(.honeywell-dark-theme) i.icon.file.code.outline:before{content:"\F1C9"}html:not(.honeywell-dark-theme) i.icon.qrcode:before{content:"\F029"}html:not(.honeywell-dark-theme) i.icon.barcode:before{content:"\F02A"}html:not(.honeywell-dark-theme) i.icon.rss:before{content:"\F09E"}html:not(.honeywell-dark-theme) i.icon.fork:before{content:"\F126"}html:not(.honeywell-dark-theme) i.icon.html5:before{content:"\F13B"}html:not(.honeywell-dark-theme) i.icon.css3:before{content:"\F13C"}html:not(.honeywell-dark-theme) i.icon.rss.square:before{content:"\F143"}html:not(.honeywell-dark-theme) i.icon.openid:before{content:"\F19B"}html:not(.honeywell-dark-theme) i.icon.database:before{content:"\F1C0"}html:not(.honeywell-dark-theme) i.icon.wifi:before{content:"\F1EB"}html:not(.honeywell-dark-theme) i.icon.server:before{content:"\F233"}html:not(.honeywell-dark-theme) i.icon.usb:before{content:"\F287"}html:not(.honeywell-dark-theme) i.icon.bluetooth:before{content:"\F293"}html:not(.honeywell-dark-theme) i.icon.bluetooth.alternative:before{content:"\F294"}html:not(.honeywell-dark-theme) i.icon.microchip:before{content:"\F2DB"}html:not(.honeywell-dark-theme) i.icon.heart:before{content:"\F004"}html:not(.honeywell-dark-theme) i.icon.star:before{content:"\F005"}html:not(.honeywell-dark-theme) i.icon.empty.star:before{content:"\F006"}html:not(.honeywell-dark-theme) i.icon.thumbs.outline.up:before{content:"\F087"}html:not(.honeywell-dark-theme) i.icon.thumbs.outline.down:before{content:"\F088"}html:not(.honeywell-dark-theme) i.icon.star.half:before{content:"\F089"}html:not(.honeywell-dark-theme) i.icon.empty.heart:before{content:"\F08A"}html:not(.honeywell-dark-theme) i.icon.smile:before{content:"\F118"}html:not(.honeywell-dark-theme) i.icon.frown:before{content:"\F119"}html:not(.honeywell-dark-theme) i.icon.meh:before{content:"\F11A"}html:not(.honeywell-dark-theme) i.icon.star.half.empty:before{content:"\F123"}html:not(.honeywell-dark-theme) i.icon.thumbs.up:before{content:"\F164"}html:not(.honeywell-dark-theme) i.icon.thumbs.down:before{content:"\F165"}html:not(.honeywell-dark-theme) i.icon.music:before{content:"\F001"}html:not(.honeywell-dark-theme) i.icon.video.play.outline:before{content:"\F01D"}html:not(.honeywell-dark-theme) i.icon.volume.off:before{content:"\F026"}html:not(.honeywell-dark-theme) i.icon.volume.down:before{content:"\F027"}html:not(.honeywell-dark-theme) i.icon.volume.up:before{content:"\F028"}html:not(.honeywell-dark-theme) i.icon.record:before{content:"\F03D"}html:not(.honeywell-dark-theme) i.icon.step.backward:before{content:"\F048"}html:not(.honeywell-dark-theme) i.icon.fast.backward:before{content:"\F049"}html:not(.honeywell-dark-theme) i.icon.backward:before{content:"\F04A"}html:not(.honeywell-dark-theme) i.icon.play:before{content:"\F04B"}html:not(.honeywell-dark-theme) i.icon.pause:before{content:"\F04C"}html:not(.honeywell-dark-theme) i.icon.stop:before{content:"\F04D"}html:not(.honeywell-dark-theme) i.icon.forward:before{content:"\F04E"}html:not(.honeywell-dark-theme) i.icon.fast.forward:before{content:"\F050"}html:not(.honeywell-dark-theme) i.icon.step.forward:before{content:"\F051"}html:not(.honeywell-dark-theme) i.icon.eject:before{content:"\F052"}html:not(.honeywell-dark-theme) i.icon.unmute:before{content:"\F130"}html:not(.honeywell-dark-theme) i.icon.mute:before{content:"\F131"}html:not(.honeywell-dark-theme) i.icon.video.play:before{content:"\F144"}html:not(.honeywell-dark-theme) i.icon.closed.captioning:before{content:"\F20A"}html:not(.honeywell-dark-theme) i.icon.pause.circle:before{content:"\F28B"}html:not(.honeywell-dark-theme) i.icon.pause.circle.outline:before{content:"\F28C"}html:not(.honeywell-dark-theme) i.icon.stop.circle:before{content:"\F28D"}html:not(.honeywell-dark-theme) i.icon.stop.circle.outline:before{content:"\F28E"}html:not(.honeywell-dark-theme) i.icon.marker:before{content:"\F041"}html:not(.honeywell-dark-theme) i.icon.coffee:before{content:"\F0F4"}html:not(.honeywell-dark-theme) i.icon.food:before{content:"\F0F5"}html:not(.honeywell-dark-theme) i.icon.building.outline:before{content:"\F0F7"}html:not(.honeywell-dark-theme) i.icon.hospital:before{content:"\F0F8"}html:not(.honeywell-dark-theme) i.icon.emergency:before{content:"\F0F9"}html:not(.honeywell-dark-theme) i.icon.first.aid:before{content:"\F0FA"}html:not(.honeywell-dark-theme) i.icon.military:before{content:"\F0FB"}html:not(.honeywell-dark-theme) i.icon.h:before{content:"\F0FD"}html:not(.honeywell-dark-theme) i.icon.location.arrow:before{content:"\F124"}html:not(.honeywell-dark-theme) i.icon.compass:before{content:"\F14E"}html:not(.honeywell-dark-theme) i.icon.space.shuttle:before{content:"\F197"}html:not(.honeywell-dark-theme) i.icon.university:before{content:"\F19C"}html:not(.honeywell-dark-theme) i.icon.building:before{content:"\F1AD"}html:not(.honeywell-dark-theme) i.icon.paw:before{content:"\F1B0"}html:not(.honeywell-dark-theme) i.icon.spoon:before{content:"\F1B1"}html:not(.honeywell-dark-theme) i.icon.car:before{content:"\F1B9"}html:not(.honeywell-dark-theme) i.icon.taxi:before{content:"\F1BA"}html:not(.honeywell-dark-theme) i.icon.tree:before{content:"\F1BB"}html:not(.honeywell-dark-theme) i.icon.bicycle:before{content:"\F206"}html:not(.honeywell-dark-theme) i.icon.bus:before{content:"\F207"}html:not(.honeywell-dark-theme) i.icon.ship:before{content:"\F21A"}html:not(.honeywell-dark-theme) i.icon.motorcycle:before{content:"\F21C"}html:not(.honeywell-dark-theme) i.icon.street.view:before{content:"\F21D"}html:not(.honeywell-dark-theme) i.icon.hotel:before{content:"\F236"}html:not(.honeywell-dark-theme) i.icon.train:before{content:"\F238"}html:not(.honeywell-dark-theme) i.icon.subway:before{content:"\F239"}html:not(.honeywell-dark-theme) i.icon.map.pin:before{content:"\F276"}html:not(.honeywell-dark-theme) i.icon.map.signs:before{content:"\F277"}html:not(.honeywell-dark-theme) i.icon.map.outline:before{content:"\F278"}html:not(.honeywell-dark-theme) i.icon.map:before{content:"\F279"}html:not(.honeywell-dark-theme) i.icon.table:before{content:"\F0CE"}html:not(.honeywell-dark-theme) i.icon.columns:before{content:"\F0DB"}html:not(.honeywell-dark-theme) i.icon.sort:before{content:"\F0DC"}html:not(.honeywell-dark-theme) i.icon.sort.descending:before{content:"\F0DD"}html:not(.honeywell-dark-theme) i.icon.sort.ascending:before{content:"\F0DE"}html:not(.honeywell-dark-theme) i.icon.sort.alphabet.ascending:before{content:"\F15D"}html:not(.honeywell-dark-theme) i.icon.sort.alphabet.descending:before{content:"\F15E"}html:not(.honeywell-dark-theme) i.icon.sort.content.ascending:before{content:"\F160"}html:not(.honeywell-dark-theme) i.icon.sort.content.descending:before{content:"\F161"}html:not(.honeywell-dark-theme) i.icon.sort.numeric.ascending:before{content:"\F162"}html:not(.honeywell-dark-theme) i.icon.sort.numeric.descending:before{content:"\F163"}html:not(.honeywell-dark-theme) i.icon.font:before{content:"\F031"}html:not(.honeywell-dark-theme) i.icon.bold:before{content:"\F032"}html:not(.honeywell-dark-theme) i.icon.italic:before{content:"\F033"}html:not(.honeywell-dark-theme) i.icon.text.height:before{content:"\F034"}html:not(.honeywell-dark-theme) i.icon.text.width:before{content:"\F035"}html:not(.honeywell-dark-theme) i.icon.align.left:before{content:"\F036"}html:not(.honeywell-dark-theme) i.icon.align.center:before{content:"\F037"}html:not(.honeywell-dark-theme) i.icon.align.right:before{content:"\F038"}html:not(.honeywell-dark-theme) i.icon.align.justify:before{content:"\F039"}html:not(.honeywell-dark-theme) i.icon.list:before{content:"\F03A"}html:not(.honeywell-dark-theme) i.icon.outdent:before{content:"\F03B"}html:not(.honeywell-dark-theme) i.icon.indent:before{content:"\F03C"}html:not(.honeywell-dark-theme) i.icon.linkify:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.cut:before{content:"\F0C4"}html:not(.honeywell-dark-theme) i.icon.copy:before{content:"\F0C5"}html:not(.honeywell-dark-theme) i.icon.attach:before{content:"\F0C6"}html:not(.honeywell-dark-theme) i.icon.save:before{content:"\F0C7"}html:not(.honeywell-dark-theme) i.icon.content:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.unordered.list:before{content:"\F0CA"}html:not(.honeywell-dark-theme) i.icon.ordered.list:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.strikethrough:before{content:"\F0CC"}html:not(.honeywell-dark-theme) i.icon.underline:before{content:"\F0CD"}html:not(.honeywell-dark-theme) i.icon.paste:before{content:"\F0EA"}html:not(.honeywell-dark-theme) i.icon.unlinkify:before{content:"\F127"}html:not(.honeywell-dark-theme) i.icon.superscript:before{content:"\F12B"}html:not(.honeywell-dark-theme) i.icon.subscript:before{content:"\F12C"}html:not(.honeywell-dark-theme) i.icon.header:before{content:"\F1DC"}html:not(.honeywell-dark-theme) i.icon.paragraph:before{content:"\F1DD"}html:not(.honeywell-dark-theme) i.icon.text.cursor:before{content:"\F246"}html:not(.honeywell-dark-theme) i.icon.euro:before{content:"\F153"}html:not(.honeywell-dark-theme) i.icon.pound:before{content:"\F154"}html:not(.honeywell-dark-theme) i.icon.dollar:before{content:"\F155"}html:not(.honeywell-dark-theme) i.icon.rupee:before{content:"\F156"}html:not(.honeywell-dark-theme) i.icon.yen:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.ruble:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.won:before{content:"\F159"}html:not(.honeywell-dark-theme) i.icon.bitcoin:before{content:"\F15A"}html:not(.honeywell-dark-theme) i.icon.lira:before{content:"\F195"}html:not(.honeywell-dark-theme) i.icon.shekel:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.paypal:before{content:"\F1ED"}html:not(.honeywell-dark-theme) i.icon.google.wallet:before{content:"\F1EE"}html:not(.honeywell-dark-theme) i.icon.visa:before{content:"\F1F0"}html:not(.honeywell-dark-theme) i.icon.mastercard:before{content:"\F1F1"}html:not(.honeywell-dark-theme) i.icon.discover:before{content:"\F1F2"}html:not(.honeywell-dark-theme) i.icon.american.express:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.paypal.card:before{content:"\F1F4"}html:not(.honeywell-dark-theme) i.icon.stripe:before{content:"\F1F5"}html:not(.honeywell-dark-theme) i.icon.japan.credit.bureau:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.diners.club:before{content:"\F24C"}html:not(.honeywell-dark-theme) i.icon.credit.card.alternative:before{content:"\F283"}html:not(.honeywell-dark-theme) i.icon.twitter.square:before{content:"\F081"}html:not(.honeywell-dark-theme) i.icon.facebook.square:before{content:"\F082"}html:not(.honeywell-dark-theme) i.icon.linkedin.square:before{content:"\F08C"}html:not(.honeywell-dark-theme) i.icon.github.square:before{content:"\F092"}html:not(.honeywell-dark-theme) i.icon.twitter:before{content:"\F099"}html:not(.honeywell-dark-theme) i.icon.facebook.f:before{content:"\F09A"}html:not(.honeywell-dark-theme) i.icon.github:before{content:"\F09B"}html:not(.honeywell-dark-theme) i.icon.pinterest:before{content:"\F0D2"}html:not(.honeywell-dark-theme) i.icon.pinterest.square:before{content:"\F0D3"}html:not(.honeywell-dark-theme) i.icon.google.plus.square:before{content:"\F0D4"}html:not(.honeywell-dark-theme) i.icon.google.plus:before{content:"\F0D5"}html:not(.honeywell-dark-theme) i.icon.linkedin:before{content:"\F0E1"}html:not(.honeywell-dark-theme) i.icon.github.alternate:before{content:"\F113"}html:not(.honeywell-dark-theme) i.icon.maxcdn:before{content:"\F136"}html:not(.honeywell-dark-theme) i.icon.youtube.square:before{content:"\F166"}html:not(.honeywell-dark-theme) i.icon.youtube:before{content:"\F167"}html:not(.honeywell-dark-theme) i.icon.xing:before{content:"\F168"}html:not(.honeywell-dark-theme) i.icon.xing.square:before{content:"\F169"}html:not(.honeywell-dark-theme) i.icon.youtube.play:before{content:"\F16A"}html:not(.honeywell-dark-theme) i.icon.dropbox:before{content:"\F16B"}html:not(.honeywell-dark-theme) i.icon.stack.overflow:before{content:"\F16C"}html:not(.honeywell-dark-theme) i.icon.instagram:before{content:"\F16D"}html:not(.honeywell-dark-theme) i.icon.flickr:before{content:"\F16E"}html:not(.honeywell-dark-theme) i.icon.adn:before{content:"\F170"}html:not(.honeywell-dark-theme) i.icon.bitbucket:before{content:"\F171"}html:not(.honeywell-dark-theme) i.icon.bitbucket.square:before{content:"\F172"}html:not(.honeywell-dark-theme) i.icon.tumblr:before{content:"\F173"}html:not(.honeywell-dark-theme) i.icon.tumblr.square:before{content:"\F174"}html:not(.honeywell-dark-theme) i.icon.apple:before{content:"\F179"}html:not(.honeywell-dark-theme) i.icon.windows:before{content:"\F17A"}html:not(.honeywell-dark-theme) i.icon.android:before{content:"\F17B"}html:not(.honeywell-dark-theme) i.icon.linux:before{content:"\F17C"}html:not(.honeywell-dark-theme) i.icon.dribble:before{content:"\F17D"}html:not(.honeywell-dark-theme) i.icon.skype:before{content:"\F17E"}html:not(.honeywell-dark-theme) i.icon.foursquare:before{content:"\F180"}html:not(.honeywell-dark-theme) i.icon.trello:before{content:"\F181"}html:not(.honeywell-dark-theme) i.icon.gittip:before{content:"\F184"}html:not(.honeywell-dark-theme) i.icon.vk:before{content:"\F189"}html:not(.honeywell-dark-theme) i.icon.weibo:before{content:"\F18A"}html:not(.honeywell-dark-theme) i.icon.renren:before{content:"\F18B"}html:not(.honeywell-dark-theme) i.icon.pagelines:before{content:"\F18C"}html:not(.honeywell-dark-theme) i.icon.stack.exchange:before{content:"\F18D"}html:not(.honeywell-dark-theme) i.icon.vimeo.square:before{content:"\F194"}html:not(.honeywell-dark-theme) i.icon.slack:before{content:"\F198"}html:not(.honeywell-dark-theme) i.icon.wordpress:before{content:"\F19A"}html:not(.honeywell-dark-theme) i.icon.yahoo:before{content:"\F19E"}html:not(.honeywell-dark-theme) i.icon.google:before{content:"\F1A0"}html:not(.honeywell-dark-theme) i.icon.reddit:before{content:"\F1A1"}html:not(.honeywell-dark-theme) i.icon.reddit.square:before{content:"\F1A2"}html:not(.honeywell-dark-theme) i.icon.stumbleupon.circle:before{content:"\F1A3"}html:not(.honeywell-dark-theme) i.icon.stumbleupon:before{content:"\F1A4"}html:not(.honeywell-dark-theme) i.icon.delicious:before{content:"\F1A5"}html:not(.honeywell-dark-theme) i.icon.digg:before{content:"\F1A6"}html:not(.honeywell-dark-theme) i.icon.pied.piper:before{content:"\F1A7"}html:not(.honeywell-dark-theme) i.icon.pied.piper.alternate:before{content:"\F1A8"}html:not(.honeywell-dark-theme) i.icon.drupal:before{content:"\F1A9"}html:not(.honeywell-dark-theme) i.icon.joomla:before{content:"\F1AA"}html:not(.honeywell-dark-theme) i.icon.behance:before{content:"\F1B4"}html:not(.honeywell-dark-theme) i.icon.behance.square:before{content:"\F1B5"}html:not(.honeywell-dark-theme) i.icon.steam:before{content:"\F1B6"}html:not(.honeywell-dark-theme) i.icon.steam.square:before{content:"\F1B7"}html:not(.honeywell-dark-theme) i.icon.spotify:before{content:"\F1BC"}html:not(.honeywell-dark-theme) i.icon.deviantart:before{content:"\F1BD"}html:not(.honeywell-dark-theme) i.icon.soundcloud:before{content:"\F1BE"}html:not(.honeywell-dark-theme) i.icon.vine:before{content:"\F1CA"}html:not(.honeywell-dark-theme) i.icon.codepen:before{content:"\F1CB"}html:not(.honeywell-dark-theme) i.icon.jsfiddle:before{content:"\F1CC"}html:not(.honeywell-dark-theme) i.icon.rebel:before{content:"\F1D0"}html:not(.honeywell-dark-theme) i.icon.empire:before{content:"\F1D1"}html:not(.honeywell-dark-theme) i.icon.git.square:before{content:"\F1D2"}html:not(.honeywell-dark-theme) i.icon.git:before{content:"\F1D3"}html:not(.honeywell-dark-theme) i.icon.hacker.news:before{content:"\F1D4"}html:not(.honeywell-dark-theme) i.icon.tencent.weibo:before{content:"\F1D5"}html:not(.honeywell-dark-theme) i.icon.qq:before{content:"\F1D6"}html:not(.honeywell-dark-theme) i.icon.wechat:before{content:"\F1D7"}html:not(.honeywell-dark-theme) i.icon.slideshare:before{content:"\F1E7"}html:not(.honeywell-dark-theme) i.icon.twitch:before{content:"\F1E8"}html:not(.honeywell-dark-theme) i.icon.yelp:before{content:"\F1E9"}html:not(.honeywell-dark-theme) i.icon.lastfm:before{content:"\F202"}html:not(.honeywell-dark-theme) i.icon.lastfm.square:before{content:"\F203"}html:not(.honeywell-dark-theme) i.icon.ioxhost:before{content:"\F208"}html:not(.honeywell-dark-theme) i.icon.angellist:before{content:"\F209"}html:not(.honeywell-dark-theme) i.icon.meanpath:before{content:"\F20C"}html:not(.honeywell-dark-theme) i.icon.buysellads:before{content:"\F20D"}html:not(.honeywell-dark-theme) i.icon.connectdevelop:before{content:"\F20E"}html:not(.honeywell-dark-theme) i.icon.dashcube:before{content:"\F210"}html:not(.honeywell-dark-theme) i.icon.forumbee:before{content:"\F211"}html:not(.honeywell-dark-theme) i.icon.leanpub:before{content:"\F212"}html:not(.honeywell-dark-theme) i.icon.sellsy:before{content:"\F213"}html:not(.honeywell-dark-theme) i.icon.shirtsinbulk:before{content:"\F214"}html:not(.honeywell-dark-theme) i.icon.simplybuilt:before{content:"\F215"}html:not(.honeywell-dark-theme) i.icon.skyatlas:before{content:"\F216"}html:not(.honeywell-dark-theme) i.icon.facebook:before{content:"\F230"}html:not(.honeywell-dark-theme) i.icon.pinterest:before{content:"\F231"}html:not(.honeywell-dark-theme) i.icon.whatsapp:before{content:"\F232"}html:not(.honeywell-dark-theme) i.icon.viacoin:before{content:"\F237"}html:not(.honeywell-dark-theme) i.icon.medium:before{content:"\F23A"}html:not(.honeywell-dark-theme) i.icon.y.combinator:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.optinmonster:before{content:"\F23C"}html:not(.honeywell-dark-theme) i.icon.opencart:before{content:"\F23D"}html:not(.honeywell-dark-theme) i.icon.expeditedssl:before{content:"\F23E"}html:not(.honeywell-dark-theme) i.icon.gg:before{content:"\F260"}html:not(.honeywell-dark-theme) i.icon.gg.circle:before{content:"\F261"}html:not(.honeywell-dark-theme) i.icon.tripadvisor:before{content:"\F262"}html:not(.honeywell-dark-theme) i.icon.odnoklassniki:before{content:"\F263"}html:not(.honeywell-dark-theme) i.icon.odnoklassniki.square:before{content:"\F264"}html:not(.honeywell-dark-theme) i.icon.pocket:before{content:"\F265"}html:not(.honeywell-dark-theme) i.icon.wikipedia:before{content:"\F266"}html:not(.honeywell-dark-theme) i.icon.safari:before{content:"\F267"}html:not(.honeywell-dark-theme) i.icon.chrome:before{content:"\F268"}html:not(.honeywell-dark-theme) i.icon.firefox:before{content:"\F269"}html:not(.honeywell-dark-theme) i.icon.opera:before{content:"\F26A"}html:not(.honeywell-dark-theme) i.icon.internet.explorer:before{content:"\F26B"}html:not(.honeywell-dark-theme) i.icon.contao:before{content:"\F26D"}html:not(.honeywell-dark-theme) i.icon.\35 00px:before{content:"\F26E"}html:not(.honeywell-dark-theme) i.icon.amazon:before{content:"\F270"}html:not(.honeywell-dark-theme) i.icon.houzz:before{content:"\F27C"}html:not(.honeywell-dark-theme) i.icon.vimeo:before{content:"\F27D"}html:not(.honeywell-dark-theme) i.icon.black.tie:before{content:"\F27E"}html:not(.honeywell-dark-theme) i.icon.fonticons:before{content:"\F280"}html:not(.honeywell-dark-theme) i.icon.reddit.alien:before{content:"\F281"}html:not(.honeywell-dark-theme) i.icon.microsoft.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.codiepie:before{content:"\F284"}html:not(.honeywell-dark-theme) i.icon.modx:before{content:"\F285"}html:not(.honeywell-dark-theme) i.icon.fort.awesome:before{content:"\F286"}html:not(.honeywell-dark-theme) i.icon.product.hunt:before{content:"\F288"}html:not(.honeywell-dark-theme) i.icon.mixcloud:before{content:"\F289"}html:not(.honeywell-dark-theme) i.icon.scribd:before{content:"\F28A"}html:not(.honeywell-dark-theme) i.icon.gitlab:before{content:"\F296"}html:not(.honeywell-dark-theme) i.icon.wpbeginner:before{content:"\F297"}html:not(.honeywell-dark-theme) i.icon.wpforms:before{content:"\F298"}html:not(.honeywell-dark-theme) i.icon.envira.gallery:before{content:"\F299"}html:not(.honeywell-dark-theme) i.icon.glide:before{content:"\F2A5"}html:not(.honeywell-dark-theme) i.icon.glide.g:before{content:"\F2A6"}html:not(.honeywell-dark-theme) i.icon.viadeo:before{content:"\F2A9"}html:not(.honeywell-dark-theme) i.icon.viadeo.square:before{content:"\F2AA"}html:not(.honeywell-dark-theme) i.icon.snapchat:before{content:"\F2AB"}html:not(.honeywell-dark-theme) i.icon.snapchat.ghost:before{content:"\F2AC"}html:not(.honeywell-dark-theme) i.icon.snapchat.square:before{content:"\F2AD"}html:not(.honeywell-dark-theme) i.icon.pied.piper.hat:before{content:"\F2AE"}html:not(.honeywell-dark-theme) i.icon.first.order:before{content:"\F2B0"}html:not(.honeywell-dark-theme) i.icon.yoast:before{content:"\F2B1"}html:not(.honeywell-dark-theme) i.icon.themeisle:before{content:"\F2B2"}html:not(.honeywell-dark-theme) i.icon.google.plus.circle:before{content:"\F2B3"}html:not(.honeywell-dark-theme) i.icon.font.awesome:before{content:"\F2B4"}html:not(.honeywell-dark-theme) i.icon.linode:before{content:"\F2B8"}html:not(.honeywell-dark-theme) i.icon.quora:before{content:"\F2C4"}html:not(.honeywell-dark-theme) i.icon.free.code.camp:before{content:"\F2C5"}html:not(.honeywell-dark-theme) i.icon.telegram:before{content:"\F2C6"}html:not(.honeywell-dark-theme) i.icon.bandcamp:before{content:"\F2D5"}html:not(.honeywell-dark-theme) i.icon.grav:before{content:"\F2D6"}html:not(.honeywell-dark-theme) i.icon.etsy:before{content:"\F2D7"}html:not(.honeywell-dark-theme) i.icon.imdb:before{content:"\F2D8"}html:not(.honeywell-dark-theme) i.icon.ravelry:before{content:"\F2D9"}html:not(.honeywell-dark-theme) i.icon.eercast:before{content:"\F2DA"}html:not(.honeywell-dark-theme) i.icon.superpowers:before{content:"\F2DD"}html:not(.honeywell-dark-theme) i.icon.wpexplorer:before{content:"\F2DE"}html:not(.honeywell-dark-theme) i.icon.meetup:before{content:"\F2E0"}html:not(.honeywell-dark-theme) i.icon.like:before{content:"\F004"}html:not(.honeywell-dark-theme) i.icon.favorite:before{content:"\F005"}html:not(.honeywell-dark-theme) i.icon.video:before{content:"\F008"}html:not(.honeywell-dark-theme) i.icon.check:before{content:"\F00C"}html:not(.honeywell-dark-theme) i.icon.close:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.cancel:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.delete:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.x:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.zoom.in:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.magnify:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.shutdown:before{content:"\F011"}html:not(.honeywell-dark-theme) i.icon.clock:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.time:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.play.circle.outline:before{content:"\F01D"}html:not(.honeywell-dark-theme) i.icon.headphone:before{content:"\F025"}html:not(.honeywell-dark-theme) i.icon.camera:before{content:"\F030"}html:not(.honeywell-dark-theme) i.icon.video.camera:before{content:"\F03D"}html:not(.honeywell-dark-theme) i.icon.picture:before{content:"\F03E"}html:not(.honeywell-dark-theme) i.icon.pencil:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.compose:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.point:before{content:"\F041"}html:not(.honeywell-dark-theme) i.icon.tint:before{content:"\F043"}html:not(.honeywell-dark-theme) i.icon.signup:before{content:"\F044"}html:not(.honeywell-dark-theme) i.icon.plus.circle:before{content:"\F055"}html:not(.honeywell-dark-theme) i.icon.question.circle:before{content:"\F059"}html:not(.honeywell-dark-theme) i.icon.dont:before{content:"\F05E"}html:not(.honeywell-dark-theme) i.icon.minimize:before{content:"\F066"}html:not(.honeywell-dark-theme) i.icon.add:before{content:"\F067"}html:not(.honeywell-dark-theme) i.icon.exclamation.circle:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.attention:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.eye:before{content:"\F06E"}html:not(.honeywell-dark-theme) i.icon.exclamation.triangle:before{content:"\F071"}html:not(.honeywell-dark-theme) i.icon.shuffle:before{content:"\F074"}html:not(.honeywell-dark-theme) i.icon.chat:before{content:"\F075"}html:not(.honeywell-dark-theme) i.icon.cart:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.shopping.cart:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.bar.graph:before{content:"\F080"}html:not(.honeywell-dark-theme) i.icon.key:before{content:"\F084"}html:not(.honeywell-dark-theme) i.icon.cogs:before{content:"\F085"}html:not(.honeywell-dark-theme) i.icon.discussions:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.like.outline:before{content:"\F087"}html:not(.honeywell-dark-theme) i.icon.dislike.outline:before{content:"\F088"}html:not(.honeywell-dark-theme) i.icon.heart.outline:before{content:"\F08A"}html:not(.honeywell-dark-theme) i.icon.log.out:before{content:"\F08B"}html:not(.honeywell-dark-theme) i.icon.thumb.tack:before{content:"\F08D"}html:not(.honeywell-dark-theme) i.icon.winner:before{content:"\F091"}html:not(.honeywell-dark-theme) i.icon.phone:before{content:"\F095"}html:not(.honeywell-dark-theme) i.icon.bookmark.outline:before{content:"\F097"}html:not(.honeywell-dark-theme) i.icon.phone.square:before{content:"\F098"}html:not(.honeywell-dark-theme) i.icon.credit.card:before{content:"\F09D"}html:not(.honeywell-dark-theme) i.icon.hdd.outline:before{content:"\F0A0"}html:not(.honeywell-dark-theme) i.icon.bullhorn:before{content:"\F0A1"}html:not(.honeywell-dark-theme) i.icon.bell.outline:before{content:"\F0A2"}html:not(.honeywell-dark-theme) i.icon.hand.outline.right:before{content:"\F0A4"}html:not(.honeywell-dark-theme) i.icon.hand.outline.left:before{content:"\F0A5"}html:not(.honeywell-dark-theme) i.icon.hand.outline.up:before{content:"\F0A6"}html:not(.honeywell-dark-theme) i.icon.hand.outline.down:before{content:"\F0A7"}html:not(.honeywell-dark-theme) i.icon.globe:before{content:"\F0AC"}html:not(.honeywell-dark-theme) i.icon.wrench:before{content:"\F0AD"}html:not(.honeywell-dark-theme) i.icon.briefcase:before{content:"\F0B1"}html:not(.honeywell-dark-theme) i.icon.group:before{content:"\F0C0"}html:not(.honeywell-dark-theme) i.icon.linkify:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.chain:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.flask:before{content:"\F0C3"}html:not(.honeywell-dark-theme) i.icon.sidebar:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.bars:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.list.ul:before{content:"\F0CA"}html:not(.honeywell-dark-theme) i.icon.list.ol:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.numbered.list:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.magic:before{content:"\F0D0"}html:not(.honeywell-dark-theme) i.icon.truck:before{content:"\F0D1"}html:not(.honeywell-dark-theme) i.icon.currency:before{content:"\F0D6"}html:not(.honeywell-dark-theme) i.icon.triangle.down:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.dropdown:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.triangle.up:before{content:"\F0D8"}html:not(.honeywell-dark-theme) i.icon.triangle.left:before{content:"\F0D9"}html:not(.honeywell-dark-theme) i.icon.triangle.right:before{content:"\F0DA"}html:not(.honeywell-dark-theme) i.icon.envelope:before{content:"\F0E0"}html:not(.honeywell-dark-theme) i.icon.conversation:before{content:"\F0E6"}html:not(.honeywell-dark-theme) i.icon.rain:before{content:"\F0E9"}html:not(.honeywell-dark-theme) i.icon.clipboard:before{content:"\F0EA"}html:not(.honeywell-dark-theme) i.icon.lightbulb:before{content:"\F0EB"}html:not(.honeywell-dark-theme) i.icon.bell:before{content:"\F0F3"}html:not(.honeywell-dark-theme) i.icon.ambulance:before{content:"\F0F9"}html:not(.honeywell-dark-theme) i.icon.medkit:before{content:"\F0FA"}html:not(.honeywell-dark-theme) i.icon.fighter.jet:before{content:"\F0FB"}html:not(.honeywell-dark-theme) i.icon.beer:before{content:"\F0FC"}html:not(.honeywell-dark-theme) i.icon.plus.square:before{content:"\F0FE"}html:not(.honeywell-dark-theme) i.icon.computer:before{content:"\F108"}html:not(.honeywell-dark-theme) i.icon.circle.outline:before{content:"\F10C"}html:not(.honeywell-dark-theme) i.icon.gamepad:before{content:"\F11B"}html:not(.honeywell-dark-theme) i.icon.star.half.full:before{content:"\F123"}html:not(.honeywell-dark-theme) i.icon.broken.chain:before{content:"\F127"}html:not(.honeywell-dark-theme) i.icon.question:before{content:"\F128"}html:not(.honeywell-dark-theme) i.icon.exclamation:before{content:"\F12A"}html:not(.honeywell-dark-theme) i.icon.eraser:before{content:"\F12D"}html:not(.honeywell-dark-theme) i.icon.microphone:before{content:"\F130"}html:not(.honeywell-dark-theme) i.icon.microphone.slash:before{content:"\F131"}html:not(.honeywell-dark-theme) i.icon.shield:before{content:"\F132"}html:not(.honeywell-dark-theme) i.icon.target:before{content:"\F140"}html:not(.honeywell-dark-theme) i.icon.play.circle:before{content:"\F144"}html:not(.honeywell-dark-theme) i.icon.pencil.square:before{content:"\F14B"}html:not(.honeywell-dark-theme) i.icon.eur:before{content:"\F153"}html:not(.honeywell-dark-theme) i.icon.gbp:before{content:"\F154"}html:not(.honeywell-dark-theme) i.icon.usd:before{content:"\F155"}html:not(.honeywell-dark-theme) i.icon.inr:before{content:"\F156"}html:not(.honeywell-dark-theme) i.icon.cny:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.rmb:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.jpy:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.rouble:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.rub:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.krw:before{content:"\F159"}html:not(.honeywell-dark-theme) i.icon.btc:before{content:"\F15A"}html:not(.honeywell-dark-theme) i.icon.gratipay:before{content:"\F184"}html:not(.honeywell-dark-theme) i.icon.zip:before{content:"\F187"}html:not(.honeywell-dark-theme) i.icon.dot.circle.outline:before{content:"\F192"}html:not(.honeywell-dark-theme) i.icon.try:before{content:"\F195"}html:not(.honeywell-dark-theme) i.icon.graduation:before{content:"\F19D"}html:not(.honeywell-dark-theme) i.icon.circle.outline:before{content:"\F1DB"}html:not(.honeywell-dark-theme) i.icon.sliders:before{content:"\F1DE"}html:not(.honeywell-dark-theme) i.icon.weixin:before{content:"\F1D7"}html:not(.honeywell-dark-theme) i.icon.tty:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.teletype:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.binoculars:before{content:"\F1E5"}html:not(.honeywell-dark-theme) i.icon.power.cord:before{content:"\F1E6"}html:not(.honeywell-dark-theme) i.icon.wi-fi:before{content:"\F1EB"}html:not(.honeywell-dark-theme) i.icon.visa.card:before{content:"\F1F0"}html:not(.honeywell-dark-theme) i.icon.mastercard.card:before{content:"\F1F1"}html:not(.honeywell-dark-theme) i.icon.discover.card:before{content:"\F1F2"}html:not(.honeywell-dark-theme) i.icon.amex:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.american.express.card:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.stripe.card:before{content:"\F1F5"}html:not(.honeywell-dark-theme) i.icon.bell.slash:before{content:"\F1F6"}html:not(.honeywell-dark-theme) i.icon.bell.slash.outline:before{content:"\F1F7"}html:not(.honeywell-dark-theme) i.icon.area.graph:before{content:"\F1FE"}html:not(.honeywell-dark-theme) i.icon.pie.graph:before{content:"\F200"}html:not(.honeywell-dark-theme) i.icon.line.graph:before{content:"\F201"}html:not(.honeywell-dark-theme) i.icon.cc:before{content:"\F20A"}html:not(.honeywell-dark-theme) i.icon.sheqel:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.ils:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.plus.cart:before{content:"\F217"}html:not(.honeywell-dark-theme) i.icon.arrow.down.cart:before{content:"\F218"}html:not(.honeywell-dark-theme) i.icon.detective:before{content:"\F21B"}html:not(.honeywell-dark-theme) i.icon.venus:before{content:"\F221"}html:not(.honeywell-dark-theme) i.icon.mars:before{content:"\F222"}html:not(.honeywell-dark-theme) i.icon.mercury:before{content:"\F223"}html:not(.honeywell-dark-theme) i.icon.intersex:before{content:"\F224"}html:not(.honeywell-dark-theme) i.icon.venus.double:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.female.homosexual:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.mars.double:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.male.homosexual:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.venus.mars:before{content:"\F228"}html:not(.honeywell-dark-theme) i.icon.mars.stroke:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.mars.alternate:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.mars.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.mars.stroke.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.mars.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.mars.stroke.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.asexual:before{content:"\F22D"}html:not(.honeywell-dark-theme) i.icon.facebook.official:before{content:"\F230"}html:not(.honeywell-dark-theme) i.icon.user.plus:before{content:"\F234"}html:not(.honeywell-dark-theme) i.icon.user.times:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.close:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.cancel:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.delete:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.x:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.bed:before{content:"\F236"}html:not(.honeywell-dark-theme) i.icon.yc:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.ycombinator:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.battery.four:before{content:"\F240"}html:not(.honeywell-dark-theme) i.icon.battery.three:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.three.quarters:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.two:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.half:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.one:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.quarter:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.zero:before{content:"\F244"}html:not(.honeywell-dark-theme) i.icon.i.cursor:before{content:"\F246"}html:not(.honeywell-dark-theme) i.icon.jcb:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.japan.credit.bureau.card:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.diners.club.card:before{content:"\F24C"}html:not(.honeywell-dark-theme) i.icon.balance:before{content:"\F24E"}html:not(.honeywell-dark-theme) i.icon.hourglass.outline:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.zero:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.one:before{content:"\F251"}html:not(.honeywell-dark-theme) i.icon.hourglass.two:before{content:"\F252"}html:not(.honeywell-dark-theme) i.icon.hourglass.three:before{content:"\F253"}html:not(.honeywell-dark-theme) i.icon.hourglass.four:before{content:"\F254"}html:not(.honeywell-dark-theme) i.icon.grab:before{content:"\F255"}html:not(.honeywell-dark-theme) i.icon.hand.victory:before{content:"\F25B"}html:not(.honeywell-dark-theme) i.icon.tm:before{content:"\F25C"}html:not(.honeywell-dark-theme) i.icon.r.circle:before{content:"\F25D"}html:not(.honeywell-dark-theme) i.icon.television:before{content:"\F26C"}html:not(.honeywell-dark-theme) i.icon.five.hundred.pixels:before{content:"\F26E"}html:not(.honeywell-dark-theme) i.icon.calendar.plus:before{content:"\F271"}html:not(.honeywell-dark-theme) i.icon.calendar.minus:before{content:"\F272"}html:not(.honeywell-dark-theme) i.icon.calendar.times:before{content:"\F273"}html:not(.honeywell-dark-theme) i.icon.calendar.check:before{content:"\F274"}html:not(.honeywell-dark-theme) i.icon.factory:before{content:"\F275"}html:not(.honeywell-dark-theme) i.icon.commenting:before{content:"\F27A"}html:not(.honeywell-dark-theme) i.icon.commenting.outline:before{content:"\F27B"}html:not(.honeywell-dark-theme) i.icon.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.ms.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.wordpress.beginner:before{content:"\F297"}html:not(.honeywell-dark-theme) i.icon.wordpress.forms:before{content:"\F298"}html:not(.honeywell-dark-theme) i.icon.envira:before{content:"\F299"}html:not(.honeywell-dark-theme) i.icon.question.circle.outline:before{content:"\F29C"}html:not(.honeywell-dark-theme) i.icon.assistive.listening.devices:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.als:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.ald:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.asl.interpreting:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.deaf:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.american.sign.language.interpreting:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.hard.of.hearing:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.signing:before{content:"\F2A7"}html:not(.honeywell-dark-theme) i.icon.new.pied.piper:before{content:"\F2AE"}html:not(.honeywell-dark-theme) i.icon.theme.isle:before{content:"\F2B2"}html:not(.honeywell-dark-theme) i.icon.google.plus.official:before{content:"\F2B3"}html:not(.honeywell-dark-theme) i.icon.fa:before{content:"\F2B4"}html:not(.honeywell-dark-theme) i.icon.vcard:before{content:"\F2BB"}html:not(.honeywell-dark-theme) i.icon.vcard.outline:before{content:"\F2BC"}html:not(.honeywell-dark-theme) i.icon.drivers.license:before{content:"\F2C2"}html:not(.honeywell-dark-theme) i.icon.drivers.license.outline:before{content:"\F2C3"}html:not(.honeywell-dark-theme) i.icon.thermometer:before{content:"\F2C7"}html:not(.honeywell-dark-theme) i.icon.s15:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.bath:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.times.rectangle:before{content:"\F2D3"}html:not(.honeywell-dark-theme) i.icon.times.rectangle.outline:before{content:"\F2D4"}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart{position:relative}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-axis-labels span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-axis-labels text{color:#404040 !important;fill:#404040 !important;font-weight:700}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-axis-title{color:#404040 !important;fill:#404040 !important;font-size:.875rem !important}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .center-block{position:absolute;text-align:center;transform:translate(-50%, -50%)}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .center-block .title{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:#404040;font-weight:700}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .center-block .subtitle{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-root{display:flex;flex-direction:column}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-title{text-transform:uppercase;font-weight:600;fill:#303030 !important;color:#303030 !important;font-size:1.125rem}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-subtitle{fill:#404040 !important}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip{cursor:default;pointer-events:none;white-space:nowrap;transition:stroke 150ms;color:#fff !important;font-size:inherit;padding:0;background:#303030 !important}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .label-color{width:0.75em;height:0.75em;position:relative;display:inline-block;margin-right:0.25em}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .label-color-round{width:0.75em;height:0.75em;position:relative;display:inline-block;margin-right:0.375em;border-radius:0.375em}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .highcharts-tooltip-box{background:#303030 !important;fill:#303030 !important}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .tooltip-content{color:#fff !important;text-align:center;padding:.125rem .5rem}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .tooltip-content .tooltip-value{font-weight:400;font-size:1rem !important;padding-bottom:.125rem}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .tooltip-content .tooltip-value .label-color{margin-right:0.5em}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .tooltip-content.shared-content .tooltip-value{font-size:0.85rem !important}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .tooltip-content.shared-content .tooltip-value:last-child{padding-bottom:0}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip text{color:#fff !important}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip .highcharts-header{font-size:0.85em}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip-box{stroke-width:0;fill:#fff;fill-opacity:1}html:not(.honeywell-dark-theme) .ui.high-chart .highcharts-tooltip-box .highcharts-label-box{fill:#fff;fill-opacity:0.85}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-axis-labels text,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-axis-labels span{color:#404040 !important;fill:#404040 !important;font-weight:700}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-axis-title{color:#404040 !important;fill:#404040 !important;font-size:.875rem !important}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart.y-axis-grid .highcharts-axis.highcharts-yaxis.highcharts-grid-axis path{stroke:#d0d0d0}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-root{display:flex;flex-direction:column}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .gauge-center-label{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;font-weight:700;font-size:2.5rem;padding-right:.25rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .gauge-center-suffix{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .title,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .title,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .title{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:#404040;font-weight:700}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .subtitle,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .subtitle,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .subtitle{font-family:"Honeywell Sans Web",Arial,Helvetica,sans-serif;color:#303030;letter-spacing:0px;font-weight:400;font-size:1rem;line-height:1.5rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .align-left,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .align-left,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .align-left{text-align:left}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .align-center,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .align-center,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .align-center{text-align:center}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .align-right,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .align-right,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .align-right{text-align:right}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .controls,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .controls,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .controls{display:flex;justify-content:space-between}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .forge.ui.chart-head .controls .zoom-button-group .ui.button,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .forge.ui.chart-head .controls .zoom-button-group .ui.button,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .forge.ui.chart-head .controls .zoom-button-group .ui.button{padding:0 .25rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-item span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-title span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .legend-custom-label,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-item span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-title span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-legend .legend-custom-label{color:#303030;letter-spacing:0px;font-weight:400;font-size:.875rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-legend .highcharts-legend-item .disabled-click-event,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-legend .highcharts-legend-item .disabled-click-event{position:relative;top:-3px}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-label-box,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-label-box,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-label-box{fill:#303030}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip>span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box>span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip>span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box>span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip>span,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box>span{color:#fff !important}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content{text-align:center;font-size:.8rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-value,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-value,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-value{font-weight:600}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-label,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-label,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip .highcharts-tooltip-box .highcharts-tooltip-content .highcharts-tooltip-label{padding-left:.125rem}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-label-marker,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-label-marker,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-label-marker{padding-right:4px}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-value,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.basic-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-value,html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.gantt-chart .highcharts-tooltip>span .highcharts-tooltip-content .highcharts-tooltip-value{font-weight:700}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-axis-labels text{color:#404040 !important;fill:#404040 !important;font-weight:700}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-axis-title{color:#404040 !important;fill:#404040 !important;font-size:.875rem !important}html:not(.honeywell-dark-theme) .ui.forge.chart-wrap.timeseries-chart .highcharts-root{display:flex;flex-direction:column}


.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top;
}
.react-grid-item.cssTransforms {
  transition-property: transform;
}
.react-grid-item.resizing {
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.react-grid-placeholder {
  background: red;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  cursor: se-resize;
}

.react-grid-item > .react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

html.honeywell-dark-theme{/*!
 * # Semantic UI 2.2.11 - Icon
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}@font-face{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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{html.honeywell-dark-theme{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}}html.honeywell-dark-theme .h-icon.global{font-family:'Honeywell-Global' !important}html.honeywell-dark-theme .h-icon.global.badge-alert:before{content:"\E900"}html.honeywell-dark-theme .h-icon.global.badge-help:before{content:"\E901"}html.honeywell-dark-theme .h-icon.global.badge-info:before{content:"\E902"}html.honeywell-dark-theme .h-icon.global.badge-stop:before{content:"\E903"}html.honeywell-dark-theme .h-icon.global.badge-warning:before{content:"\E904"}html.honeywell-dark-theme .h-icon.global.battery-empty:before{content:"\E905"}html.honeywell-dark-theme .h-icon.global.battery-full:before{content:"\E906"}html.honeywell-dark-theme .h-icon.global.battery-low:before{content:"\E907"}html.honeywell-dark-theme .h-icon.global.battery-mid:before{content:"\E908"}html.honeywell-dark-theme .h-icon.global.calendar:before{content:"\E909"}html.honeywell-dark-theme .h-icon.global.camera:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.global.caret-down:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.global.caret-left:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.global.caret-right:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.global.caret-up:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.global.check:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.global.close:before{content:"\E910"}html.honeywell-dark-theme .h-icon.global.credit-card:before{content:"\E911"}html.honeywell-dark-theme .h-icon.global.delete:before{content:"\E912"}html.honeywell-dark-theme .h-icon.global.document:before{content:"\E913"}html.honeywell-dark-theme .h-icon.global.edit-circled:before{content:"\E914"}html.honeywell-dark-theme .h-icon.global.edit:before{content:"\E915"}html.honeywell-dark-theme .h-icon.global.email:before{content:"\E916"}html.honeywell-dark-theme .h-icon.global.expand:before{content:"\E917"}html.honeywell-dark-theme .h-icon.global.export:before{content:"\E918"}html.honeywell-dark-theme .h-icon.global.file-download:before{content:"\E919"}html.honeywell-dark-theme .h-icon.global.file-upload:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.global.filter:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.global.flag-icon:before{content:"\E91C"}html.honeywell-dark-theme .h-icon.global.fullscreen-enter:before{content:"\E91D"}html.honeywell-dark-theme .h-icon.global.fullscreen-exit:before{content:"\E91E"}html.honeywell-dark-theme .h-icon.global.globe:before{content:"\E91F"}html.honeywell-dark-theme .h-icon.global.graph:before{content:"\E920"}html.honeywell-dark-theme .h-icon.global.home:before{content:"\E921"}html.honeywell-dark-theme .h-icon.global.location:before{content:"\E922"}html.honeywell-dark-theme .h-icon.global.locked:before{content:"\E923"}html.honeywell-dark-theme .h-icon.global.map:before{content:"\E924"}html.honeywell-dark-theme .h-icon.global.menu-icon:before{content:"\E925"}html.honeywell-dark-theme .h-icon.global.message:before{content:"\E926"}html.honeywell-dark-theme .h-icon.global.multiple-devices:before{content:"\E927"}html.honeywell-dark-theme .h-icon.global.notification:before{content:"\E928"}html.honeywell-dark-theme .h-icon.global.paperclip:before{content:"\E929"}html.honeywell-dark-theme .h-icon.global.pc:before{content:"\E92A"}html.honeywell-dark-theme .h-icon.global.phone:before{content:"\E92B"}html.honeywell-dark-theme .h-icon.global.playback-pause:before{content:"\E92C"}html.honeywell-dark-theme .h-icon.global.playback-play:before{content:"\E92D"}html.honeywell-dark-theme .h-icon.global.print:before{content:"\E92E"}html.honeywell-dark-theme .h-icon.global.redo:before{content:"\E92F"}html.honeywell-dark-theme .h-icon.global.refresh:before{content:"\E930"}html.honeywell-dark-theme .h-icon.global.reminders:before{content:"\E931"}html.honeywell-dark-theme .h-icon.global.save:before{content:"\E932"}html.honeywell-dark-theme .h-icon.global.search:before{content:"\E933"}html.honeywell-dark-theme .h-icon.global.settings:before{content:"\E934"}html.honeywell-dark-theme .h-icon.global.share-2:before{content:"\E935"}html.honeywell-dark-theme .h-icon.global.share:before{content:"\E936"}html.honeywell-dark-theme .h-icon.global.shopping-bag:before{content:"\E937"}html.honeywell-dark-theme .h-icon.global.slider-controls-minus:before{content:"\E938"}html.honeywell-dark-theme .h-icon.global.slider-controls-plus:before{content:"\E939"}html.honeywell-dark-theme .h-icon.global.smartphone:before{content:"\E93A"}html.honeywell-dark-theme .h-icon.global.social-fb-sq:before{content:"\E93B"}html.honeywell-dark-theme .h-icon.global.social-fb:before{content:"\E93C"}html.honeywell-dark-theme .h-icon.global.social-ig-sq:before{content:"\E93D"}html.honeywell-dark-theme .h-icon.global.social-ig:before{content:"\E93E"}html.honeywell-dark-theme .h-icon.global.social-li-sq:before{content:"\E93F"}html.honeywell-dark-theme .h-icon.global.social-li:before{content:"\E940"}html.honeywell-dark-theme .h-icon.global.social-tw-sq:before{content:"\E941"}html.honeywell-dark-theme .h-icon.global.social-tw:before{content:"\E942"}html.honeywell-dark-theme .h-icon.global.social-yt-sq:before{content:"\E943"}html.honeywell-dark-theme .h-icon.global.social-yt:before{content:"\E944"}html.honeywell-dark-theme .h-icon.global.speaker-off:before{content:"\E945"}html.honeywell-dark-theme .h-icon.global.speaker-on:before{content:"\E946"}html.honeywell-dark-theme .h-icon.global.star:before{content:"\E947"}html.honeywell-dark-theme .h-icon.global.tools:before{content:"\E948"}html.honeywell-dark-theme .h-icon.global.undo:before{content:"\E949"}html.honeywell-dark-theme .h-icon.global.unlocked:before{content:"\E94A"}html.honeywell-dark-theme .h-icon.global.user:before{content:"\E94B"}html.honeywell-dark-theme .h-icon.global.users:before{content:"\E94C"}html.honeywell-dark-theme .h-icon.global.voice-message:before{content:"\E94D"}html.honeywell-dark-theme .h-icon.global.wifi:before{content:"\E94E"}html.honeywell-dark-theme .h-icon.global.shipping{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.shipping:before{content:"\1F399"}html.honeywell-dark-theme .h-icon.global.app-launcher{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.app-launcher:before{content:"\E900"}html.honeywell-dark-theme .h-icon.global.double-caret-right{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.double-caret-right:before{content:"\E901"}html.honeywell-dark-theme .h-icon.global.double-caret-left{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.double-caret-left:before{content:"\E902"}html.honeywell-dark-theme .h-icon.global.rtm{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.rtm:before{content:"\E916"}html.honeywell-dark-theme .h-icon.global.organization{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.organization:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.global.dash{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.dash:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.global.equipment{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.equipment:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.global.inspections{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.inspections:before{content:"\E910"}html.honeywell-dark-theme .h-icon.global.reports{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.reports:before{content:"\E911"}html.honeywell-dark-theme .h-icon.global.training{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.training:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.global.sites-pin{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.sites-pin:before{content:"\E919"}html.honeywell-dark-theme .h-icon.global.users-two{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.users-two:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.global.unequal{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.global.unequal:before{content:"\E918"}html.honeywell-dark-theme .h-icon.aero{font-family:'Honeywell-Flight' !important}html.honeywell-dark-theme .h-icon.aero.ac-atr:before{content:"\E92A"}html.honeywell-dark-theme .h-icon.aero.ac-bga:before{content:"\E92B"}html.honeywell-dark-theme .h-icon.aero.ac-dns:before{content:"\E92C"}html.honeywell-dark-theme .h-icon.aero.ac-dualprop:before{content:"\E92D"}html.honeywell-dark-theme .h-icon.aero.ac-glider:before{content:"\E92E"}html.honeywell-dark-theme .h-icon.aero.ac-highwing:before{content:"\E92F"}html.honeywell-dark-theme .h-icon.aero.ac-lowwing:before{content:"\E930"}html.honeywell-dark-theme .h-icon.aero.ac-profile:before{content:"\E931"}html.honeywell-dark-theme .h-icon.aero.ac-right:before{content:"\E932"}html.honeywell-dark-theme .h-icon.aero.ac-settings:before{content:"\E933"}html.honeywell-dark-theme .h-icon.aero.ac-up:before{content:"\E934"}html.honeywell-dark-theme .h-icon.aero.airports-directory:before{content:"\E935"}html.honeywell-dark-theme .h-icon.aero.airports-nearby:before{content:"\E936"}html.honeywell-dark-theme .h-icon.aero.airports:before{content:"\E937"}html.honeywell-dark-theme .h-icon.aero.cabin-seat:before{content:"\E938"}html.honeywell-dark-theme .h-icon.aero.cabin:before{content:"\E939"}html.honeywell-dark-theme .h-icon.aero.cleaning:before{content:"\E93A"}html.honeywell-dark-theme .h-icon.aero.eapis-3:before{content:"\E93B"}html.honeywell-dark-theme .h-icon.aero.eapis-alt:before{content:"\E93C"}html.honeywell-dark-theme .h-icon.aero.eapis:before{content:"\E93D"}html.honeywell-dark-theme .h-icon.aero.egi-2:before{content:"\E93E"}html.honeywell-dark-theme .h-icon.aero.egi:before{content:"\E93F"}html.honeywell-dark-theme .h-icon.aero.fbo-1:before{content:"\E940"}html.honeywell-dark-theme .h-icon.aero.fbo-2:before{content:"\E941"}html.honeywell-dark-theme .h-icon.aero.fbo:before{content:"\E942"}html.honeywell-dark-theme .h-icon.aero.flight-attendant:before{content:"\E943"}html.honeywell-dark-theme .h-icon.aero.flight-plan-doc:before{content:"\E944"}html.honeywell-dark-theme .h-icon.aero.flight-plan-new:before{content:"\E945"}html.honeywell-dark-theme .h-icon.aero.flight-plan:before{content:"\E946"}html.honeywell-dark-theme .h-icon.aero.flight-schedule-alt:before{content:"\E947"}html.honeywell-dark-theme .h-icon.aero.flight-schedule:before{content:"\E948"}html.honeywell-dark-theme .h-icon.aero.fuel:before{content:"\E949"}html.honeywell-dark-theme .h-icon.aero.hangar:before{content:"\E94A"}html.honeywell-dark-theme .h-icon.aero.helicopter:before{content:"\E94B"}html.honeywell-dark-theme .h-icon.aero.intl-trip:before{content:"\E94C"}html.honeywell-dark-theme .h-icon.aero.luggage:before{content:"\E94D"}html.honeywell-dark-theme .h-icon.aero.notams-2:before{content:"\E94E"}html.honeywell-dark-theme .h-icon.aero.notams-3:before{content:"\E94F"}html.honeywell-dark-theme .h-icon.aero.notams:before{content:"\E950"}html.honeywell-dark-theme .h-icon.aero.pilot-crushcap:before{content:"\E951"}html.honeywell-dark-theme .h-icon.aero.plane-approach-1:before{content:"\E952"}html.honeywell-dark-theme .h-icon.aero.plane-approach-2:before{content:"\E953"}html.honeywell-dark-theme .h-icon.aero.psngr-boarding:before{content:"\E954"}html.honeywell-dark-theme .h-icon.aero.psngr-deboarding:before{content:"\E955"}html.honeywell-dark-theme .h-icon.aero.ramp-1:before{content:"\E956"}html.honeywell-dark-theme .h-icon.aero.ramp-2:before{content:"\E957"}html.honeywell-dark-theme .h-icon.aero.ramp-3:before{content:"\E958"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-1:before{content:"\E959"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-2:before{content:"\E95A"}html.honeywell-dark-theme .h-icon.aero.runway-analysis-3:before{content:"\E95B"}html.honeywell-dark-theme .h-icon.aero.runway:before{content:"\E95C"}html.honeywell-dark-theme .h-icon.aero.screen-seat:before{content:"\E95D"}html.honeywell-dark-theme .h-icon.aero.speed-indicator-air:before{content:"\E95E"}html.honeywell-dark-theme .h-icon.aero.speed-indicator-vertical:before{content:"\E95F"}html.honeywell-dark-theme .h-icon.aero.speed-indicator:before{content:"\E960"}html.honeywell-dark-theme .h-icon.aero.track-up-centered:before{content:"\E961"}html.honeywell-dark-theme .h-icon.aero.track-up:before{content:"\E962"}html.honeywell-dark-theme .h-icon.aero.trip-kit-add:before{content:"\E963"}html.honeywell-dark-theme .h-icon.aero.trip-kit-refresh:before{content:"\E964"}html.honeywell-dark-theme .h-icon.aero.trip-kit:before{content:"\E965"}html.honeywell-dark-theme .h-icon.aero.uav:before{content:"\E966"}html.honeywell-dark-theme .h-icon.aero.valance:before{content:"\E967"}html.honeywell-dark-theme .h-icon.aero.weather-chart:before{content:"\E968"}html.honeywell-dark-theme .h-icon.aero.wheel-chocks:before{content:"\E969"}html.honeywell-dark-theme .h-icon.aero.window-down:before{content:"\E96A"}html.honeywell-dark-theme .h-icon.aero.window-mid:before{content:"\E96B"}html.honeywell-dark-theme .h-icon.aero.window-up:before{content:"\E96C"}html.honeywell-dark-theme .h-icon.aero.ptmd{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.ptmd:before{content:"\E903"}html.honeywell-dark-theme .h-icon.aero.flight-efficiency{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.flight-efficiency:before{content:"\E904"}html.honeywell-dark-theme .h-icon.aero.cmx{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.aero.cmx:before{content:"\E905"}html.honeywell-dark-theme .h-icon.building{font-family:'Honeywell-Buildings' !important}html.honeywell-dark-theme .h-icon.building.add:before{content:"\E96D"}html.honeywell-dark-theme .h-icon.building.badge-alert:before{content:"\E96E"}html.honeywell-dark-theme .h-icon.building.badge-help:before{content:"\E96F"}html.honeywell-dark-theme .h-icon.building.badge-info:before{content:"\E970"}html.honeywell-dark-theme .h-icon.building.badge-stop:before{content:"\E971"}html.honeywell-dark-theme .h-icon.building.badge-warning:before{content:"\E972"}html.honeywell-dark-theme .h-icon.building.battery-empty:before{content:"\E973"}html.honeywell-dark-theme .h-icon.building.battery-full:before{content:"\E974"}html.honeywell-dark-theme .h-icon.building.battery-low:before{content:"\E975"}html.honeywell-dark-theme .h-icon.building.battery-mid:before{content:"\E976"}html.honeywell-dark-theme .h-icon.building.calendar .path1:before{content:"\E977"}html.honeywell-dark-theme .h-icon.building.calendar .path2:before{content:"\EA1B";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path3:before{content:"\EA1C";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path4:before{content:"\EA1D";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path5:before{content:"\EA1E";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path6:before{content:"\EA1F";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path7:before{content:"\EA20";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path8:before{content:"\EA21";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path9:before{content:"\EA22";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path10:before{content:"\EA23";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path11:before{content:"\EA24";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path12:before{content:"\EA25";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.calendar .path13:before{content:"\EA26";margin-left:-1em}html.honeywell-dark-theme .h-icon.building.camera:before{content:"\E978"}html.honeywell-dark-theme .h-icon.building.caret-down:before{content:"\E979"}html.honeywell-dark-theme .h-icon.building.caret-left:before{content:"\E97A"}html.honeywell-dark-theme .h-icon.building.caret-right:before{content:"\E97B"}html.honeywell-dark-theme .h-icon.building.caret-up:before{content:"\E97C"}html.honeywell-dark-theme .h-icon.building.check:before{content:"\E97D"}html.honeywell-dark-theme .h-icon.building.close-circled:before{content:"\E97E"}html.honeywell-dark-theme .h-icon.building.close:before{content:"\E97F"}html.honeywell-dark-theme .h-icon.building.cloud-download:before{content:"\E980"}html.honeywell-dark-theme .h-icon.building.cloud-upload:before{content:"\E981"}html.honeywell-dark-theme .h-icon.building.collapse:before{content:"\E982"}html.honeywell-dark-theme .h-icon.building.credit-card:before{content:"\E983"}html.honeywell-dark-theme .h-icon.building.dashboard:before{content:"\E984"}html.honeywell-dark-theme .h-icon.building.delete:before{content:"\E985"}html.honeywell-dark-theme .h-icon.building.doc-add:before{content:"\E986"}html.honeywell-dark-theme .h-icon.building.doc-annotate:before{content:"\E987"}html.honeywell-dark-theme .h-icon.building.doc-certificate:before{content:"\E988"}html.honeywell-dark-theme .h-icon.building.doc-pdf:before{content:"\E989"}html.honeywell-dark-theme .h-icon.building.doc-photo:before{content:"\E98A"}html.honeywell-dark-theme .h-icon.building.doc-proc:before{content:"\E98B"}html.honeywell-dark-theme .h-icon.building.doc-search:before{content:"\E98C"}html.honeywell-dark-theme .h-icon.building.doc-test:before{content:"\E98D"}html.honeywell-dark-theme .h-icon.building.document:before{content:"\E98E"}html.honeywell-dark-theme .h-icon.building.edit-circled:before{content:"\E98F"}html.honeywell-dark-theme .h-icon.building.edit:before{content:"\E990"}html.honeywell-dark-theme .h-icon.building.email:before{content:"\E991"}html.honeywell-dark-theme .h-icon.building.expand:before{content:"\E992"}html.honeywell-dark-theme .h-icon.building.export:before{content:"\E993"}html.honeywell-dark-theme .h-icon.building.file-download:before{content:"\E994"}html.honeywell-dark-theme .h-icon.building.file-upload:before{content:"\E995"}html.honeywell-dark-theme .h-icon.building.filter:before{content:"\E996"}html.honeywell-dark-theme .h-icon.building.flag-icon:before{content:"\E997"}html.honeywell-dark-theme .h-icon.building.folder-music:before{content:"\E998"}html.honeywell-dark-theme .h-icon.building.folder:before{content:"\E999"}html.honeywell-dark-theme .h-icon.building.fullscreen-enter:before{content:"\E99A"}html.honeywell-dark-theme .h-icon.building.fullscreen-exit:before{content:"\E99B"}html.honeywell-dark-theme .h-icon.building.globe:before{content:"\E99C"}html.honeywell-dark-theme .h-icon.building.graph:before{content:"\E99D"}html.honeywell-dark-theme .h-icon.building.home:before{content:"\E99E"}html.honeywell-dark-theme .h-icon.building.location:before{content:"\E99F"}html.honeywell-dark-theme .h-icon.building.locked:before{content:"\E9A0"}html.honeywell-dark-theme .h-icon.building.map:before{content:"\E9A1"}html.honeywell-dark-theme .h-icon.building.menu-icon:before{content:"\E9A2"}html.honeywell-dark-theme .h-icon.building.message:before{content:"\E9A3"}html.honeywell-dark-theme .h-icon.building.messages:before{content:"\E9A4"}html.honeywell-dark-theme .h-icon.building.modify:before{content:"\E9A5"}html.honeywell-dark-theme .h-icon.building.multiple-devices:before{content:"\E9A6"}html.honeywell-dark-theme .h-icon.building.music:before{content:"\E9A7"}html.honeywell-dark-theme .h-icon.building.notification:before{content:"\E9A8"}html.honeywell-dark-theme .h-icon.building.paperclip:before{content:"\E9A9"}html.honeywell-dark-theme .h-icon.building.pc:before{content:"\E9AA"}html.honeywell-dark-theme .h-icon.building.phone:before{content:"\E9AB"}html.honeywell-dark-theme .h-icon.building.playback-pause:before{content:"\E9AC"}html.honeywell-dark-theme .h-icon.building.playback-play:before{content:"\E9AD"}html.honeywell-dark-theme .h-icon.building.playback-rec:before{content:"\E9AE"}html.honeywell-dark-theme .h-icon.building.playback-stop:before{content:"\E9AF"}html.honeywell-dark-theme .h-icon.building.print:before{content:"\E9B0"}html.honeywell-dark-theme .h-icon.building.redo:before{content:"\E9B1"}html.honeywell-dark-theme .h-icon.building.refresh:before{content:"\E9B2"}html.honeywell-dark-theme .h-icon.building.save:before{content:"\E9B3"}html.honeywell-dark-theme .h-icon.building.search:before{content:"\E9B4"}html.honeywell-dark-theme .h-icon.building.settings:before{content:"\E9B5"}html.honeywell-dark-theme .h-icon.building.share-2:before{content:"\E9B6"}html.honeywell-dark-theme .h-icon.building.share:before{content:"\E9B7"}html.honeywell-dark-theme .h-icon.building.shopping-bag:before{content:"\E9B8"}html.honeywell-dark-theme .h-icon.building.slider-controls-minus:before{content:"\E9B9"}html.honeywell-dark-theme .h-icon.building.slider-controls-plus:before{content:"\E9BA"}html.honeywell-dark-theme .h-icon.building.smartphone:before{content:"\E9BB"}html.honeywell-dark-theme .h-icon.building.social-fb:before{content:"\E9BC"}html.honeywell-dark-theme .h-icon.building.social-ig:before{content:"\E9BD"}html.honeywell-dark-theme .h-icon.building.social-tw:before{content:"\E9BE"}html.honeywell-dark-theme .h-icon.building.social-yt:before{content:"\E9BF"}html.honeywell-dark-theme .h-icon.building.speaker-off:before{content:"\E9C0"}html.honeywell-dark-theme .h-icon.building.speaker-on:before{content:"\E9C1"}html.honeywell-dark-theme .h-icon.building.star:before{content:"\E9C2"}html.honeywell-dark-theme .h-icon.building.tag:before{content:"\E9C3"}html.honeywell-dark-theme .h-icon.building.timeline:before{content:"\E9C4"}html.honeywell-dark-theme .h-icon.building.tools:before{content:"\E9C5"}html.honeywell-dark-theme .h-icon.building.undo:before{content:"\E9C6"}html.honeywell-dark-theme .h-icon.building.unlocked:before{content:"\E9C7"}html.honeywell-dark-theme .h-icon.building.user-filled:before{content:"\E9C8"}html.honeywell-dark-theme .h-icon.building.user:before{content:"\E9C9"}html.honeywell-dark-theme .h-icon.building.voicemessages:before{content:"\E9CA"}html.honeywell-dark-theme .h-icon.building.wifi:before{content:"\E9CB"}html.honeywell-dark-theme .h-icon.building.total-footprint{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.total-footprint:before{content:"\E912"}html.honeywell-dark-theme .h-icon.building.sites{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.sites:before{content:"\E913"}html.honeywell-dark-theme .h-icon.building.portfolio-savings{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.portfolio-savings:before{content:"\E914"}html.honeywell-dark-theme .h-icon.building.portfolio-cost{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.portfolio-cost:before{content:"\E915"}html.honeywell-dark-theme .h-icon.building.comfort{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.comfort:before{content:"\E906"}html.honeywell-dark-theme .h-icon.building.filter-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.filter-alt:before{content:"\E907"}html.honeywell-dark-theme .h-icon.building.graph-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.graph-alt:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.building.home-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.home-alt:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.building.sites-alt{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.sites-alt:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.building.operations{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.operations:before{content:"\E908"}html.honeywell-dark-theme .h-icon.building.energy{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.energy:before{content:"\E909"}html.honeywell-dark-theme .h-icon.building.rounds{font-family:"Honeywell-Addons" !important}html.honeywell-dark-theme .h-icon.building.rounds:before{content:"\E917"}html.honeywell-dark-theme .h-icon.weather{font-family:'Honeywell-Weather'}html.honeywell-dark-theme .h-icon.weather.blowingsnow:before{content:"\E900"}html.honeywell-dark-theme .h-icon.weather.breezy:before{content:"\E901"}html.honeywell-dark-theme .h-icon.weather.clear:before{content:"\E902"}html.honeywell-dark-theme .h-icon.weather.clearnight:before{content:"\E903"}html.honeywell-dark-theme .h-icon.weather.drizzle:before{content:"\E904"}html.honeywell-dark-theme .h-icon.weather.fewbrokenclowds:before{content:"\E905"}html.honeywell-dark-theme .h-icon.weather.fog:before{content:"\E906"}html.honeywell-dark-theme .h-icon.weather.freezingdrizzle:before{content:"\E907"}html.honeywell-dark-theme .h-icon.weather.freezingrain:before{content:"\E908"}html.honeywell-dark-theme .h-icon.weather.funnelcloud:before{content:"\E909"}html.honeywell-dark-theme .h-icon.weather.hail:before{content:"\E90A"}html.honeywell-dark-theme .h-icon.weather.haze:before{content:"\E90B"}html.honeywell-dark-theme .h-icon.weather.heavyfog:before{content:"\E90C"}html.honeywell-dark-theme .h-icon.weather.heavyrain:before{content:"\E90D"}html.honeywell-dark-theme .h-icon.weather.heavysnow:before{content:"\E90E"}html.honeywell-dark-theme .h-icon.weather.hot:before{content:"\E90F"}html.honeywell-dark-theme .h-icon.weather.hurricane:before{content:"\E910"}html.honeywell-dark-theme .h-icon.weather.ice:before{content:"\E911"}html.honeywell-dark-theme .h-icon.weather.icepellets:before{content:"\E912"}html.honeywell-dark-theme .h-icon.weather.lightfog:before{content:"\E913"}html.honeywell-dark-theme .h-icon.weather.lightrain:before{content:"\E914"}html.honeywell-dark-theme .h-icon.weather.lightsnow:before{content:"\E915"}html.honeywell-dark-theme .h-icon.weather.mixrainfall:before{content:"\E916"}html.honeywell-dark-theme .h-icon.weather.moderatefog:before{content:"\E917"}html.honeywell-dark-theme .h-icon.weather.moderaterain:before{content:"\E918"}html.honeywell-dark-theme .h-icon.weather.moderatesnow:before{content:"\E919"}html.honeywell-dark-theme .h-icon.weather.na:before{content:"\E91A"}html.honeywell-dark-theme .h-icon.weather.noreport:before{content:"\E91B"}html.honeywell-dark-theme .h-icon.weather.overcast:before{content:"\E91C"}html.honeywell-dark-theme .h-icon.weather.rain:before{content:"\E91D"}html.honeywell-dark-theme .h-icon.weather.rainshowers:before{content:"\E91E"}html.honeywell-dark-theme .h-icon.weather.sandustorm:before{content:"\E91F"}html.honeywell-dark-theme .h-icon.weather.scatteredclouds:before{content:"\E920"}html.honeywell-dark-theme .h-icon.weather.scatteredshowers:before{content:"\E921"}html.honeywell-dark-theme .h-icon.weather.scatteredthunderstorm:before{content:"\E922"}html.honeywell-dark-theme .h-icon.weather.smoke:before{content:"\E923"}html.honeywell-dark-theme .h-icon.weather.snowshowers:before{content:"\E924"}html.honeywell-dark-theme .h-icon.weather.sunrise:before{content:"\E925"}html.honeywell-dark-theme .h-icon.weather.sunset:before{content:"\E926"}html.honeywell-dark-theme .h-icon.weather.thunderstorm:before{content:"\E927"}html.honeywell-dark-theme .h-icon.weather.tropicalstorm:before{content:"\E928"}html.honeywell-dark-theme .h-icon.weather.water:before{content:"\E929"}@font-face{html.honeywell-dark-theme{font-family:'Icons';src:url(/static/media/icons.7bfcab6d.eot);src:url(/static/media/icons.7bfcab6d.eot) format("embedded-opentype"),url(/static/media/icons.2adefcbc.woff2) format("woff2"),url(/static/media/icons.ba0c59de.woff) format("woff"),url(/static/media/icons.aa58f33f.ttf) format("truetype"),url(/static/media/icons.ad615792.svg) format("svg");font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-decoration:inherit;text-transform:none}}html.honeywell-dark-theme i.icon{font-family:'Honeywell-Global', 'Icons';display:inline-block;opacity:1;font-style:normal;font-weight:normal;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;backface-visibility:hidden}html.honeywell-dark-theme i.icon:before{background:none !important}html.honeywell-dark-theme i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html.honeywell-dark-theme i.icon.hover{opacity:1 !important}html.honeywell-dark-theme i.icon.active{opacity:1 !important}html.honeywell-dark-theme i.emphasized.icon{opacity:1 !important}html.honeywell-dark-theme i.disabled.icon{opacity:0.45 !important}html.honeywell-dark-theme i.fitted.icon{width:auto;margin:0em}html.honeywell-dark-theme i.link.icon,html.honeywell-dark-theme i.link.icons{cursor:pointer;opacity:0.8;transition:opacity 0.1s ease}html.honeywell-dark-theme i.link.icon:hover,html.honeywell-dark-theme i.link.icons:hover{opacity:1 !important}html.honeywell-dark-theme i.circular.icon{border-radius:500em !important;line-height:1 !important;padding:0.5em 0.5em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset;width:2em !important;height:2em !important}html.honeywell-dark-theme i.circular.inverted.icon{border:none;box-shadow:none}html.honeywell-dark-theme i.flipped.icon,html.honeywell-dark-theme i.horizontally.flipped.icon{transform:scale(-1, 1)}html.honeywell-dark-theme i.vertically.flipped.icon{transform:scale(1, -1)}html.honeywell-dark-theme i.rotated.icon,html.honeywell-dark-theme i.right.rotated.icon,html.honeywell-dark-theme i.clockwise.rotated.icon{transform:rotate(90deg)}html.honeywell-dark-theme i.left.rotated.icon,html.honeywell-dark-theme i.counterclockwise.rotated.icon{transform:rotate(-90deg)}html.honeywell-dark-theme i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:0.5em 0.41em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset}html.honeywell-dark-theme i.bordered.inverted.icon{border:none;box-shadow:none}html.honeywell-dark-theme i.inverted.bordered.icon,html.honeywell-dark-theme i.inverted.circular.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html.honeywell-dark-theme i.inverted.icon{color:#FFFFFF}html.honeywell-dark-theme i.red.icon{color:#DB2828 !important}html.honeywell-dark-theme i.inverted.red.icon{color:#FF695E !important}html.honeywell-dark-theme i.inverted.bordered.red.icon,html.honeywell-dark-theme i.inverted.circular.red.icon{background-color:#DB2828 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.orange.icon{color:#F2711C !important}html.honeywell-dark-theme i.inverted.orange.icon{color:#FF851B !important}html.honeywell-dark-theme i.inverted.bordered.orange.icon,html.honeywell-dark-theme i.inverted.circular.orange.icon{background-color:#F2711C !important;color:#FFFFFF !important}html.honeywell-dark-theme i.yellow.icon{color:#FBBD08 !important}html.honeywell-dark-theme i.inverted.yellow.icon{color:#FFE21F !important}html.honeywell-dark-theme i.inverted.bordered.yellow.icon,html.honeywell-dark-theme i.inverted.circular.yellow.icon{background-color:#FBBD08 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.olive.icon{color:#B5CC18 !important}html.honeywell-dark-theme i.inverted.olive.icon{color:#D9E778 !important}html.honeywell-dark-theme i.inverted.bordered.olive.icon,html.honeywell-dark-theme i.inverted.circular.olive.icon{background-color:#B5CC18 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.green.icon{color:#21BA45 !important}html.honeywell-dark-theme i.inverted.green.icon{color:#2ECC40 !important}html.honeywell-dark-theme i.inverted.bordered.green.icon,html.honeywell-dark-theme i.inverted.circular.green.icon{background-color:#21BA45 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.teal.icon{color:#00B5AD !important}html.honeywell-dark-theme i.inverted.teal.icon{color:#6DFFFF !important}html.honeywell-dark-theme i.inverted.bordered.teal.icon,html.honeywell-dark-theme i.inverted.circular.teal.icon{background-color:#00B5AD !important;color:#FFFFFF !important}html.honeywell-dark-theme i.blue.icon{color:#2185D0 !important}html.honeywell-dark-theme i.inverted.blue.icon{color:#54C8FF !important}html.honeywell-dark-theme i.inverted.bordered.blue.icon,html.honeywell-dark-theme i.inverted.circular.blue.icon{background-color:#2185D0 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.violet.icon{color:#6435C9 !important}html.honeywell-dark-theme i.inverted.violet.icon{color:#A291FB !important}html.honeywell-dark-theme i.inverted.bordered.violet.icon,html.honeywell-dark-theme i.inverted.circular.violet.icon{background-color:#6435C9 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.purple.icon{color:#A333C8 !important}html.honeywell-dark-theme i.inverted.purple.icon{color:#DC73FF !important}html.honeywell-dark-theme i.inverted.bordered.purple.icon,html.honeywell-dark-theme i.inverted.circular.purple.icon{background-color:#A333C8 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.pink.icon{color:#E03997 !important}html.honeywell-dark-theme i.inverted.pink.icon{color:#FF8EDF !important}html.honeywell-dark-theme i.inverted.bordered.pink.icon,html.honeywell-dark-theme i.inverted.circular.pink.icon{background-color:#E03997 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.brown.icon{color:#A5673F !important}html.honeywell-dark-theme i.inverted.brown.icon{color:#D67C1C !important}html.honeywell-dark-theme i.inverted.bordered.brown.icon,html.honeywell-dark-theme i.inverted.circular.brown.icon{background-color:#A5673F !important;color:#FFFFFF !important}html.honeywell-dark-theme i.grey.icon{color:#767676 !important}html.honeywell-dark-theme i.inverted.grey.icon{color:#DCDDDE !important}html.honeywell-dark-theme i.inverted.bordered.grey.icon,html.honeywell-dark-theme i.inverted.circular.grey.icon{background-color:#767676 !important;color:#FFFFFF !important}html.honeywell-dark-theme i.black.icon{color:#1B1C1D !important}html.honeywell-dark-theme i.inverted.black.icon{color:#545454 !important}html.honeywell-dark-theme i.inverted.bordered.black.icon,html.honeywell-dark-theme i.inverted.circular.black.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html.honeywell-dark-theme i.mini.icon,html.honeywell-dark-theme i.mini.icons{line-height:1;font-size:0.4em}html.honeywell-dark-theme i.tiny.icon,html.honeywell-dark-theme i.tiny.icons{line-height:1;font-size:0.5em}html.honeywell-dark-theme i.small.icon,html.honeywell-dark-theme i.small.icons{line-height:1;font-size:0.75em}html.honeywell-dark-theme i.icon,html.honeywell-dark-theme i.icons{font-size:1em}html.honeywell-dark-theme i.large.icon,html.honeywell-dark-theme i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}html.honeywell-dark-theme i.big.icon,html.honeywell-dark-theme i.big.icons{line-height:1;vertical-align:middle;font-size:2em}html.honeywell-dark-theme i.huge.icon,html.honeywell-dark-theme i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}html.honeywell-dark-theme i.massive.icon,html.honeywell-dark-theme i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}html.honeywell-dark-theme i.icons{display:inline-block;position:relative;line-height:1}html.honeywell-dark-theme i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0em;margin:0}html.honeywell-dark-theme i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:0.25rem}html.honeywell-dark-theme i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:0.45em;text-shadow:-1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF}html.honeywell-dark-theme i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}html.honeywell-dark-theme i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}html.honeywell-dark-theme i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}html.honeywell-dark-theme i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}html.honeywell-dark-theme i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D}html.honeywell-dark-theme i.icon.search:before{content:"\F002"}html.honeywell-dark-theme i.icon.mail.outline:before{content:"\F003"}html.honeywell-dark-theme i.icon.signal:before{content:"\F012"}html.honeywell-dark-theme i.icon.setting:before{content:"\F013"}html.honeywell-dark-theme i.icon.home:before{content:"\F015"}html.honeywell-dark-theme i.icon.inbox:before{content:"\F01C"}html.honeywell-dark-theme i.icon.browser:before{content:"\F022"}html.honeywell-dark-theme i.icon.tag:before{content:"\F02B"}html.honeywell-dark-theme i.icon.tags:before{content:"\F02C"}html.honeywell-dark-theme i.icon.image:before{content:"\F03E"}html.honeywell-dark-theme i.icon.calendar:before{content:"\F073"}html.honeywell-dark-theme i.icon.comment:before{content:"\F075"}html.honeywell-dark-theme i.icon.shop:before{content:"\F07A"}html.honeywell-dark-theme i.icon.comments:before{content:"\F086"}html.honeywell-dark-theme i.icon.external:before{content:"\F08E"}html.honeywell-dark-theme i.icon.privacy:before{content:"\F084"}html.honeywell-dark-theme i.icon.settings:before{content:"\F085"}html.honeywell-dark-theme i.icon.comments:before{content:"\F086"}html.honeywell-dark-theme i.icon.external:before{content:"\F08E"}html.honeywell-dark-theme i.icon.trophy:before{content:"\F091"}html.honeywell-dark-theme i.icon.payment:before{content:"\F09D"}html.honeywell-dark-theme i.icon.feed:before{content:"\F09E"}html.honeywell-dark-theme i.icon.alarm.outline:before{content:"\F0A2"}html.honeywell-dark-theme i.icon.tasks:before{content:"\F0AE"}html.honeywell-dark-theme i.icon.cloud:before{content:"\F0C2"}html.honeywell-dark-theme i.icon.lab:before{content:"\F0C3"}html.honeywell-dark-theme i.icon.mail:before{content:"\F0E0"}html.honeywell-dark-theme i.icon.dashboard:before{content:"\F0E4"}html.honeywell-dark-theme i.icon.comment.outline:before{content:"\F0E5"}html.honeywell-dark-theme i.icon.comments.outline:before{content:"\F0E6"}html.honeywell-dark-theme i.icon.sitemap:before{content:"\F0E8"}html.honeywell-dark-theme i.icon.idea:before{content:"\F0EB"}html.honeywell-dark-theme i.icon.alarm:before{content:"\F0F3"}html.honeywell-dark-theme i.icon.terminal:before{content:"\F120"}html.honeywell-dark-theme i.icon.code:before{content:"\F121"}html.honeywell-dark-theme i.icon.protect:before{content:"\F132"}html.honeywell-dark-theme i.icon.calendar.outline:before{content:"\F133"}html.honeywell-dark-theme i.icon.ticket:before{content:"\F145"}html.honeywell-dark-theme i.icon.external.square:before{content:"\F14C"}html.honeywell-dark-theme i.icon.bug:before{content:"\F188"}html.honeywell-dark-theme i.icon.mail.square:before{content:"\F199"}html.honeywell-dark-theme i.icon.history:before{content:"\F1DA"}html.honeywell-dark-theme i.icon.options:before{content:"\F1DE"}html.honeywell-dark-theme i.icon.text.telephone:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.find:before{content:"\F1E5"}html.honeywell-dark-theme i.icon.alarm.mute:before{content:"\F1F6"}html.honeywell-dark-theme i.icon.alarm.mute.outline:before{content:"\F1F7"}html.honeywell-dark-theme i.icon.copyright:before{content:"\F1F9"}html.honeywell-dark-theme i.icon.at:before{content:"\F1FA"}html.honeywell-dark-theme i.icon.eyedropper:before{content:"\F1FB"}html.honeywell-dark-theme i.icon.paint.brush:before{content:"\F1FC"}html.honeywell-dark-theme i.icon.heartbeat:before{content:"\F21E"}html.honeywell-dark-theme i.icon.mouse.pointer:before{content:"\F245"}html.honeywell-dark-theme i.icon.hourglass.empty:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.start:before{content:"\F251"}html.honeywell-dark-theme i.icon.hourglass.half:before{content:"\F252"}html.honeywell-dark-theme i.icon.hourglass.end:before{content:"\F253"}html.honeywell-dark-theme i.icon.hourglass.full:before{content:"\F254"}html.honeywell-dark-theme i.icon.hand.pointer:before{content:"\F25A"}html.honeywell-dark-theme i.icon.trademark:before{content:"\F25C"}html.honeywell-dark-theme i.icon.registered:before{content:"\F25D"}html.honeywell-dark-theme i.icon.creative.commons:before{content:"\F25E"}html.honeywell-dark-theme i.icon.add.to.calendar:before{content:"\F271"}html.honeywell-dark-theme i.icon.remove.from.calendar:before{content:"\F272"}html.honeywell-dark-theme i.icon.delete.calendar:before{content:"\F273"}html.honeywell-dark-theme i.icon.checked.calendar:before{content:"\F274"}html.honeywell-dark-theme i.icon.industry:before{content:"\F275"}html.honeywell-dark-theme i.icon.shopping.bag:before{content:"\F290"}html.honeywell-dark-theme i.icon.shopping.basket:before{content:"\F291"}html.honeywell-dark-theme i.icon.hashtag:before{content:"\F292"}html.honeywell-dark-theme i.icon.percent:before{content:"\F295"}html.honeywell-dark-theme i.icon.handshake:before{content:"\F2B5"}html.honeywell-dark-theme i.icon.open.envelope:before{content:"\F2B6"}html.honeywell-dark-theme i.icon.open.envelope.outline:before{content:"\F2B7"}html.honeywell-dark-theme i.icon.address.book:before{content:"\F2B9"}html.honeywell-dark-theme i.icon.address.book.outline:before{content:"\F2BA"}html.honeywell-dark-theme i.icon.address.card:before{content:"\F2BB"}html.honeywell-dark-theme i.icon.address.card.outline:before{content:"\F2BC"}html.honeywell-dark-theme i.icon.id.badge:before{content:"\F2C1"}html.honeywell-dark-theme i.icon.id.card:before{content:"\F2C2"}html.honeywell-dark-theme i.icon.id.card.outline:before{content:"\F2C3"}html.honeywell-dark-theme i.icon.podcast:before{content:"\F2CE"}html.honeywell-dark-theme i.icon.window.maximize:before{content:"\F2D0"}html.honeywell-dark-theme i.icon.window.minimize:before{content:"\F2D1"}html.honeywell-dark-theme i.icon.window.restore:before{content:"\F2D2"}html.honeywell-dark-theme i.icon.window.close:before{content:"\F2D3"}html.honeywell-dark-theme i.icon.window.close.outline:before{content:"\F2D4"}html.honeywell-dark-theme i.icon.wait:before{content:"\F017"}html.honeywell-dark-theme i.icon.download:before{content:"\F019"}html.honeywell-dark-theme i.icon.repeat:before{content:"\F01E"}html.honeywell-dark-theme i.icon.refresh:before{content:"\F021"}html.honeywell-dark-theme i.icon.lock:before{content:"\F023"}html.honeywell-dark-theme i.icon.bookmark:before{content:"\F02E"}html.honeywell-dark-theme i.icon.print:before{content:"\F02F"}html.honeywell-dark-theme i.icon.write:before{content:"\F040"}html.honeywell-dark-theme i.icon.adjust:before{content:"\F042"}html.honeywell-dark-theme i.icon.theme:before{content:"\F043"}html.honeywell-dark-theme i.icon.edit:before{content:"\F044"}html.honeywell-dark-theme i.icon.external.share:before{content:"\F045"}html.honeywell-dark-theme i.icon.ban:before{content:"\F05E"}html.honeywell-dark-theme i.icon.mail.forward:before{content:"\F064"}html.honeywell-dark-theme i.icon.share:before{content:"\F064"}html.honeywell-dark-theme i.icon.expand:before{content:"\F065"}html.honeywell-dark-theme i.icon.compress:before{content:"\F066"}html.honeywell-dark-theme i.icon.unhide:before{content:"\F06E"}html.honeywell-dark-theme i.icon.hide:before{content:"\F070"}html.honeywell-dark-theme i.icon.random:before{content:"\F074"}html.honeywell-dark-theme i.icon.retweet:before{content:"\F079"}html.honeywell-dark-theme i.icon.sign.out:before{content:"\F08B"}html.honeywell-dark-theme i.icon.pin:before{content:"\F08D"}html.honeywell-dark-theme i.icon.sign.in:before{content:"\F090"}html.honeywell-dark-theme i.icon.upload:before{content:"\F093"}html.honeywell-dark-theme i.icon.call:before{content:"\F095"}html.honeywell-dark-theme i.icon.remove.bookmark:before{content:"\F097"}html.honeywell-dark-theme i.icon.call.square:before{content:"\F098"}html.honeywell-dark-theme i.icon.unlock:before{content:"\F09C"}html.honeywell-dark-theme i.icon.configure:before{content:"\F0AD"}html.honeywell-dark-theme i.icon.filter:before{content:"\F0B0"}html.honeywell-dark-theme i.icon.wizard:before{content:"\F0D0"}html.honeywell-dark-theme i.icon.undo:before{content:"\F0E2"}html.honeywell-dark-theme i.icon.exchange:before{content:"\F0EC"}html.honeywell-dark-theme i.icon.cloud.download:before{content:"\F0ED"}html.honeywell-dark-theme i.icon.cloud.upload:before{content:"\F0EE"}html.honeywell-dark-theme i.icon.reply:before{content:"\F112"}html.honeywell-dark-theme i.icon.reply.all:before{content:"\F122"}html.honeywell-dark-theme i.icon.erase:before{content:"\F12D"}html.honeywell-dark-theme i.icon.unlock.alternate:before{content:"\F13E"}html.honeywell-dark-theme i.icon.write.square:before{content:"\F14B"}html.honeywell-dark-theme i.icon.share.square:before{content:"\F14D"}html.honeywell-dark-theme i.icon.archive:before{content:"\F187"}html.honeywell-dark-theme i.icon.translate:before{content:"\F1AB"}html.honeywell-dark-theme i.icon.recycle:before{content:"\F1B8"}html.honeywell-dark-theme i.icon.send:before{content:"\F1D8"}html.honeywell-dark-theme i.icon.send.outline:before{content:"\F1D9"}html.honeywell-dark-theme i.icon.share.alternate:before{content:"\F1E0"}html.honeywell-dark-theme i.icon.share.alternate.square:before{content:"\F1E1"}html.honeywell-dark-theme i.icon.add.to.cart:before{content:"\F217"}html.honeywell-dark-theme i.icon.in.cart:before{content:"\F218"}html.honeywell-dark-theme i.icon.add.user:before{content:"\F234"}html.honeywell-dark-theme i.icon.remove.user:before{content:"\F235"}html.honeywell-dark-theme i.icon.object.group:before{content:"\F247"}html.honeywell-dark-theme i.icon.object.ungroup:before{content:"\F248"}html.honeywell-dark-theme i.icon.clone:before{content:"\F24D"}html.honeywell-dark-theme i.icon.talk:before{content:"\F27A"}html.honeywell-dark-theme i.icon.talk.outline:before{content:"\F27B"}html.honeywell-dark-theme i.icon.help.circle:before{content:"\F059"}html.honeywell-dark-theme i.icon.info.circle:before{content:"\F05A"}html.honeywell-dark-theme i.icon.warning.circle:before{content:"\F06A"}html.honeywell-dark-theme i.icon.warning.sign:before{content:"\F071"}html.honeywell-dark-theme i.icon.announcement:before{content:"\F0A1"}html.honeywell-dark-theme i.icon.help:before{content:"\F128"}html.honeywell-dark-theme i.icon.info:before{content:"\F129"}html.honeywell-dark-theme i.icon.warning:before{content:"\F12A"}html.honeywell-dark-theme i.icon.birthday:before{content:"\F1FD"}html.honeywell-dark-theme i.icon.help.circle.outline:before{content:"\F29C"}html.honeywell-dark-theme i.icon.user:before{content:"\F007"}html.honeywell-dark-theme i.icon.users:before{content:"\F0C0"}html.honeywell-dark-theme i.icon.doctor:before{content:"\F0F0"}html.honeywell-dark-theme i.icon.handicap:before{content:"\F193"}html.honeywell-dark-theme i.icon.student:before{content:"\F19D"}html.honeywell-dark-theme i.icon.child:before{content:"\F1AE"}html.honeywell-dark-theme i.icon.spy:before{content:"\F21B"}html.honeywell-dark-theme i.icon.user.circle:before{content:"\F2BD"}html.honeywell-dark-theme i.icon.user.circle.outline:before{content:"\F2BE"}html.honeywell-dark-theme i.icon.user.outline:before{content:"\F2C0"}html.honeywell-dark-theme i.icon.female:before{content:"\F182"}html.honeywell-dark-theme i.icon.male:before{content:"\F183"}html.honeywell-dark-theme i.icon.woman:before{content:"\F221"}html.honeywell-dark-theme i.icon.man:before{content:"\F222"}html.honeywell-dark-theme i.icon.non.binary.transgender:before{content:"\F223"}html.honeywell-dark-theme i.icon.intergender:before{content:"\F224"}html.honeywell-dark-theme i.icon.transgender:before{content:"\F225"}html.honeywell-dark-theme i.icon.lesbian:before{content:"\F226"}html.honeywell-dark-theme i.icon.gay:before{content:"\F227"}html.honeywell-dark-theme i.icon.heterosexual:before{content:"\F228"}html.honeywell-dark-theme i.icon.other.gender:before{content:"\F229"}html.honeywell-dark-theme i.icon.other.gender.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.other.gender.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.neuter:before{content:"\F22C"}html.honeywell-dark-theme i.icon.genderless:before{content:"\F22D"}html.honeywell-dark-theme i.icon.universal.access:before{content:"\F29A"}html.honeywell-dark-theme i.icon.wheelchair:before{content:"\F29B"}html.honeywell-dark-theme i.icon.blind:before{content:"\F29D"}html.honeywell-dark-theme i.icon.audio.description:before{content:"\F29E"}html.honeywell-dark-theme i.icon.volume.control.phone:before{content:"\F2A0"}html.honeywell-dark-theme i.icon.braille:before{content:"\F2A1"}html.honeywell-dark-theme i.icon.asl:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.assistive.listening.systems:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.deafness:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.sign.language:before{content:"\F2A7"}html.honeywell-dark-theme i.icon.low.vision:before{content:"\F2A8"}html.honeywell-dark-theme i.icon.block.layout:before{content:"\F009"}html.honeywell-dark-theme i.icon.grid.layout:before{content:"\F00A"}html.honeywell-dark-theme i.icon.list.layout:before{content:"\F00B"}html.honeywell-dark-theme i.icon.zoom:before{content:"\F00E"}html.honeywell-dark-theme i.icon.zoom.out:before{content:"\F010"}html.honeywell-dark-theme i.icon.resize.vertical:before{content:"\F07D"}html.honeywell-dark-theme i.icon.resize.horizontal:before{content:"\F07E"}html.honeywell-dark-theme i.icon.maximize:before{content:"\F0B2"}html.honeywell-dark-theme i.icon.crop:before{content:"\F125"}html.honeywell-dark-theme i.icon.cocktail:before{content:"\F000"}html.honeywell-dark-theme i.icon.road:before{content:"\F018"}html.honeywell-dark-theme i.icon.flag:before{content:"\F024"}html.honeywell-dark-theme i.icon.book:before{content:"\F02D"}html.honeywell-dark-theme i.icon.gift:before{content:"\F06B"}html.honeywell-dark-theme i.icon.leaf:before{content:"\F06C"}html.honeywell-dark-theme i.icon.fire:before{content:"\F06D"}html.honeywell-dark-theme i.icon.plane:before{content:"\F072"}html.honeywell-dark-theme i.icon.magnet:before{content:"\F076"}html.honeywell-dark-theme i.icon.lemon:before{content:"\F094"}html.honeywell-dark-theme i.icon.world:before{content:"\F0AC"}html.honeywell-dark-theme i.icon.travel:before{content:"\F0B1"}html.honeywell-dark-theme i.icon.shipping:before{content:"\F0D1"}html.honeywell-dark-theme i.icon.money:before{content:"\F0D6"}html.honeywell-dark-theme i.icon.legal:before{content:"\F0E3"}html.honeywell-dark-theme i.icon.lightning:before{content:"\F0E7"}html.honeywell-dark-theme i.icon.umbrella:before{content:"\F0E9"}html.honeywell-dark-theme i.icon.treatment:before{content:"\F0F1"}html.honeywell-dark-theme i.icon.suitcase:before{content:"\F0F2"}html.honeywell-dark-theme i.icon.bar:before{content:"\F0FC"}html.honeywell-dark-theme i.icon.flag.outline:before{content:"\F11D"}html.honeywell-dark-theme i.icon.flag.checkered:before{content:"\F11E"}html.honeywell-dark-theme i.icon.puzzle:before{content:"\F12E"}html.honeywell-dark-theme i.icon.fire.extinguisher:before{content:"\F134"}html.honeywell-dark-theme i.icon.rocket:before{content:"\F135"}html.honeywell-dark-theme i.icon.anchor:before{content:"\F13D"}html.honeywell-dark-theme i.icon.bullseye:before{content:"\F140"}html.honeywell-dark-theme i.icon.sun:before{content:"\F185"}html.honeywell-dark-theme i.icon.moon:before{content:"\F186"}html.honeywell-dark-theme i.icon.fax:before{content:"\F1AC"}html.honeywell-dark-theme i.icon.life.ring:before{content:"\F1CD"}html.honeywell-dark-theme i.icon.bomb:before{content:"\F1E2"}html.honeywell-dark-theme i.icon.soccer:before{content:"\F1E3"}html.honeywell-dark-theme i.icon.calculator:before{content:"\F1EC"}html.honeywell-dark-theme i.icon.diamond:before{content:"\F219"}html.honeywell-dark-theme i.icon.sticky.note:before{content:"\F249"}html.honeywell-dark-theme i.icon.sticky.note.outline:before{content:"\F24A"}html.honeywell-dark-theme i.icon.law:before{content:"\F24E"}html.honeywell-dark-theme i.icon.hand.peace:before{content:"\F25B"}html.honeywell-dark-theme i.icon.hand.rock:before{content:"\F255"}html.honeywell-dark-theme i.icon.hand.paper:before{content:"\F256"}html.honeywell-dark-theme i.icon.hand.scissors:before{content:"\F257"}html.honeywell-dark-theme i.icon.hand.lizard:before{content:"\F258"}html.honeywell-dark-theme i.icon.hand.spock:before{content:"\F259"}html.honeywell-dark-theme i.icon.tv:before{content:"\F26C"}html.honeywell-dark-theme i.icon.thermometer.full:before{content:"\F2C7"}html.honeywell-dark-theme i.icon.thermometer.three.quarters:before{content:"\F2C8"}html.honeywell-dark-theme i.icon.thermometer.half:before{content:"\F2C9"}html.honeywell-dark-theme i.icon.thermometer.quarter:before{content:"\F2CA"}html.honeywell-dark-theme i.icon.thermometer.empty:before{content:"\F2CB"}html.honeywell-dark-theme i.icon.shower:before{content:"\F2CC"}html.honeywell-dark-theme i.icon.bathtub:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.snowflake:before{content:"\F2DC"}html.honeywell-dark-theme i.icon.crosshairs:before{content:"\F05B"}html.honeywell-dark-theme i.icon.asterisk:before{content:"\F069"}html.honeywell-dark-theme i.icon.square.outline:before{content:"\F096"}html.honeywell-dark-theme i.icon.certificate:before{content:"\F0A3"}html.honeywell-dark-theme i.icon.square:before{content:"\F0C8"}html.honeywell-dark-theme i.icon.quote.left:before{content:"\F10D"}html.honeywell-dark-theme i.icon.quote.right:before{content:"\F10E"}html.honeywell-dark-theme i.icon.spinner:before{content:"\F110"}html.honeywell-dark-theme i.icon.circle:before{content:"\F111"}html.honeywell-dark-theme i.icon.ellipsis.horizontal:before{content:"\F141"}html.honeywell-dark-theme i.icon.ellipsis.vertical:before{content:"\F142"}html.honeywell-dark-theme i.icon.cube:before{content:"\F1B2"}html.honeywell-dark-theme i.icon.cubes:before{content:"\F1B3"}html.honeywell-dark-theme i.icon.circle.notched:before{content:"\F1CE"}html.honeywell-dark-theme i.icon.circle.thin:before{content:"\F1DB"}html.honeywell-dark-theme i.icon.checkmark:before{content:"\F00C"}html.honeywell-dark-theme i.icon.remove:before{content:"\F00D"}html.honeywell-dark-theme i.icon.checkmark.box:before{content:"\F046"}html.honeywell-dark-theme i.icon.move:before{content:"\F047"}html.honeywell-dark-theme i.icon.add.circle:before{content:"\F055"}html.honeywell-dark-theme i.icon.minus.circle:before{content:"\F056"}html.honeywell-dark-theme i.icon.remove.circle:before{content:"\F057"}html.honeywell-dark-theme i.icon.check.circle:before{content:"\F058"}html.honeywell-dark-theme i.icon.remove.circle.outline:before{content:"\F05C"}html.honeywell-dark-theme i.icon.check.circle.outline:before{content:"\F05D"}html.honeywell-dark-theme i.icon.plus:before{content:"\F067"}html.honeywell-dark-theme i.icon.minus:before{content:"\F068"}html.honeywell-dark-theme i.icon.add.square:before{content:"\F0FE"}html.honeywell-dark-theme i.icon.radio:before{content:"\F10C"}html.honeywell-dark-theme i.icon.minus.square:before{content:"\F146"}html.honeywell-dark-theme i.icon.minus.square.outline:before{content:"\F147"}html.honeywell-dark-theme i.icon.check.square:before{content:"\F14A"}html.honeywell-dark-theme i.icon.selected.radio:before{content:"\F192"}html.honeywell-dark-theme i.icon.plus.square.outline:before{content:"\F196"}html.honeywell-dark-theme i.icon.toggle.off:before{content:"\F204"}html.honeywell-dark-theme i.icon.toggle.on:before{content:"\F205"}html.honeywell-dark-theme i.icon.film:before{content:"\F008"}html.honeywell-dark-theme i.icon.sound:before{content:"\F025"}html.honeywell-dark-theme i.icon.photo:before{content:"\F030"}html.honeywell-dark-theme i.icon.bar.chart:before{content:"\F080"}html.honeywell-dark-theme i.icon.camera.retro:before{content:"\F083"}html.honeywell-dark-theme i.icon.newspaper:before{content:"\F1EA"}html.honeywell-dark-theme i.icon.area.chart:before{content:"\F1FE"}html.honeywell-dark-theme i.icon.pie.chart:before{content:"\F200"}html.honeywell-dark-theme i.icon.line.chart:before{content:"\F201"}html.honeywell-dark-theme i.icon.arrow.circle.outline.down:before{content:"\F01A"}html.honeywell-dark-theme i.icon.arrow.circle.outline.up:before{content:"\F01B"}html.honeywell-dark-theme i.icon.chevron.left:before{content:"\F053"}html.honeywell-dark-theme i.icon.chevron.right:before{content:"\F054"}html.honeywell-dark-theme i.icon.arrow.left:before{content:"\F060"}html.honeywell-dark-theme i.icon.arrow.right:before{content:"\F061"}html.honeywell-dark-theme i.icon.arrow.up:before{content:"\F062"}html.honeywell-dark-theme i.icon.arrow.down:before{content:"\F063"}html.honeywell-dark-theme i.icon.chevron.up:before{content:"\E90E"}html.honeywell-dark-theme i.icon.chevron.down:before{content:"\E90B"}html.honeywell-dark-theme i.icon.pointing.right:before{content:"\F0A4"}html.honeywell-dark-theme i.icon.pointing.left:before{content:"\F0A5"}html.honeywell-dark-theme i.icon.pointing.up:before{content:"\F0A6"}html.honeywell-dark-theme i.icon.pointing.down:before{content:"\F0A7"}html.honeywell-dark-theme i.icon.arrow.circle.left:before{content:"\F0A8"}html.honeywell-dark-theme i.icon.arrow.circle.right:before{content:"\F0A9"}html.honeywell-dark-theme i.icon.arrow.circle.up:before{content:"\F0AA"}html.honeywell-dark-theme i.icon.arrow.circle.down:before{content:"\F0AB"}html.honeywell-dark-theme i.icon.caret.down:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.caret.up:before{content:"\F0D8"}html.honeywell-dark-theme i.icon.caret.left:before{content:"\F0D9"}html.honeywell-dark-theme i.icon.caret.right:before{content:"\F0DA"}html.honeywell-dark-theme i.icon.angle.double.left:before{content:"\F100"}html.honeywell-dark-theme i.icon.angle.double.right:before{content:"\F101"}html.honeywell-dark-theme i.icon.angle.double.up:before{content:"\F102"}html.honeywell-dark-theme i.icon.angle.double.down:before{content:"\F103"}html.honeywell-dark-theme i.icon.angle.left:before{content:"\F104"}html.honeywell-dark-theme i.icon.angle.right:before{content:"\F105"}html.honeywell-dark-theme i.icon.angle.up:before{content:"\F106"}html.honeywell-dark-theme i.icon.angle.down:before{content:"\F107"}html.honeywell-dark-theme i.icon.chevron.circle.left:before{content:"\F137"}html.honeywell-dark-theme i.icon.chevron.circle.right:before{content:"\F138"}html.honeywell-dark-theme i.icon.chevron.circle.up:before{content:"\F139"}html.honeywell-dark-theme i.icon.chevron.circle.down:before{content:"\F13A"}html.honeywell-dark-theme i.icon.toggle.down:before{content:"\F150"}html.honeywell-dark-theme i.icon.toggle.up:before{content:"\F151"}html.honeywell-dark-theme i.icon.toggle.right:before{content:"\F152"}html.honeywell-dark-theme i.icon.long.arrow.down:before{content:"\F175"}html.honeywell-dark-theme i.icon.long.arrow.up:before{content:"\F176"}html.honeywell-dark-theme i.icon.long.arrow.left:before{content:"\F177"}html.honeywell-dark-theme i.icon.long.arrow.right:before{content:"\F178"}html.honeywell-dark-theme i.icon.arrow.circle.outline.right:before{content:"\F18E"}html.honeywell-dark-theme i.icon.arrow.circle.outline.left:before{content:"\F190"}html.honeywell-dark-theme i.icon.toggle.left:before{content:"\F191"}html.honeywell-dark-theme i.icon.tablet:before{content:"\F10A"}html.honeywell-dark-theme i.icon.mobile:before{content:"\F10B"}html.honeywell-dark-theme i.icon.battery.full:before{content:"\F240"}html.honeywell-dark-theme i.icon.battery.high:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.medium:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.low:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.empty:before{content:"\F244"}html.honeywell-dark-theme i.icon.power:before{content:"\F011"}html.honeywell-dark-theme i.icon.trash.outline:before{content:"\F014"}html.honeywell-dark-theme i.icon.disk.outline:before{content:"\F0A0"}html.honeywell-dark-theme i.icon.desktop:before{content:"\F108"}html.honeywell-dark-theme i.icon.laptop:before{content:"\F109"}html.honeywell-dark-theme i.icon.game:before{content:"\F11B"}html.honeywell-dark-theme i.icon.keyboard:before{content:"\F11C"}html.honeywell-dark-theme i.icon.plug:before{content:"\F1E6"}html.honeywell-dark-theme i.icon.trash:before{content:"\F1F8"}html.honeywell-dark-theme i.icon.file.outline:before{content:"\F016"}html.honeywell-dark-theme i.icon.folder:before{content:"\F07B"}html.honeywell-dark-theme i.icon.folder.open:before{content:"\F07C"}html.honeywell-dark-theme i.icon.file.text.outline:before{content:"\F0F6"}html.honeywell-dark-theme i.icon.folder.outline:before{content:"\F114"}html.honeywell-dark-theme i.icon.folder.open.outline:before{content:"\F115"}html.honeywell-dark-theme i.icon.level.up:before{content:"\F148"}html.honeywell-dark-theme i.icon.level.down:before{content:"\F149"}html.honeywell-dark-theme i.icon.file:before{content:"\F15B"}html.honeywell-dark-theme i.icon.file.text:before{content:"\F15C"}html.honeywell-dark-theme i.icon.file.pdf.outline:before{content:"\F1C1"}html.honeywell-dark-theme i.icon.file.word.outline:before{content:"\F1C2"}html.honeywell-dark-theme i.icon.file.excel.outline:before{content:"\F1C3"}html.honeywell-dark-theme i.icon.file.powerpoint.outline:before{content:"\F1C4"}html.honeywell-dark-theme i.icon.file.image.outline:before{content:"\F1C5"}html.honeywell-dark-theme i.icon.file.archive.outline:before{content:"\F1C6"}html.honeywell-dark-theme i.icon.file.audio.outline:before{content:"\F1C7"}html.honeywell-dark-theme i.icon.file.video.outline:before{content:"\F1C8"}html.honeywell-dark-theme i.icon.file.code.outline:before{content:"\F1C9"}html.honeywell-dark-theme i.icon.qrcode:before{content:"\F029"}html.honeywell-dark-theme i.icon.barcode:before{content:"\F02A"}html.honeywell-dark-theme i.icon.rss:before{content:"\F09E"}html.honeywell-dark-theme i.icon.fork:before{content:"\F126"}html.honeywell-dark-theme i.icon.html5:before{content:"\F13B"}html.honeywell-dark-theme i.icon.css3:before{content:"\F13C"}html.honeywell-dark-theme i.icon.rss.square:before{content:"\F143"}html.honeywell-dark-theme i.icon.openid:before{content:"\F19B"}html.honeywell-dark-theme i.icon.database:before{content:"\F1C0"}html.honeywell-dark-theme i.icon.wifi:before{content:"\F1EB"}html.honeywell-dark-theme i.icon.server:before{content:"\F233"}html.honeywell-dark-theme i.icon.usb:before{content:"\F287"}html.honeywell-dark-theme i.icon.bluetooth:before{content:"\F293"}html.honeywell-dark-theme i.icon.bluetooth.alternative:before{content:"\F294"}html.honeywell-dark-theme i.icon.microchip:before{content:"\F2DB"}html.honeywell-dark-theme i.icon.heart:before{content:"\F004"}html.honeywell-dark-theme i.icon.star:before{content:"\F005"}html.honeywell-dark-theme i.icon.empty.star:before{content:"\F006"}html.honeywell-dark-theme i.icon.thumbs.outline.up:before{content:"\F087"}html.honeywell-dark-theme i.icon.thumbs.outline.down:before{content:"\F088"}html.honeywell-dark-theme i.icon.star.half:before{content:"\F089"}html.honeywell-dark-theme i.icon.empty.heart:before{content:"\F08A"}html.honeywell-dark-theme i.icon.smile:before{content:"\F118"}html.honeywell-dark-theme i.icon.frown:before{content:"\F119"}html.honeywell-dark-theme i.icon.meh:before{content:"\F11A"}html.honeywell-dark-theme i.icon.star.half.empty:before{content:"\F123"}html.honeywell-dark-theme i.icon.thumbs.up:before{content:"\F164"}html.honeywell-dark-theme i.icon.thumbs.down:before{content:"\F165"}html.honeywell-dark-theme i.icon.music:before{content:"\F001"}html.honeywell-dark-theme i.icon.video.play.outline:before{content:"\F01D"}html.honeywell-dark-theme i.icon.volume.off:before{content:"\F026"}html.honeywell-dark-theme i.icon.volume.down:before{content:"\F027"}html.honeywell-dark-theme i.icon.volume.up:before{content:"\F028"}html.honeywell-dark-theme i.icon.record:before{content:"\F03D"}html.honeywell-dark-theme i.icon.step.backward:before{content:"\F048"}html.honeywell-dark-theme i.icon.fast.backward:before{content:"\F049"}html.honeywell-dark-theme i.icon.backward:before{content:"\F04A"}html.honeywell-dark-theme i.icon.play:before{content:"\F04B"}html.honeywell-dark-theme i.icon.pause:before{content:"\F04C"}html.honeywell-dark-theme i.icon.stop:before{content:"\F04D"}html.honeywell-dark-theme i.icon.forward:before{content:"\F04E"}html.honeywell-dark-theme i.icon.fast.forward:before{content:"\F050"}html.honeywell-dark-theme i.icon.step.forward:before{content:"\F051"}html.honeywell-dark-theme i.icon.eject:before{content:"\F052"}html.honeywell-dark-theme i.icon.unmute:before{content:"\F130"}html.honeywell-dark-theme i.icon.mute:before{content:"\F131"}html.honeywell-dark-theme i.icon.video.play:before{content:"\F144"}html.honeywell-dark-theme i.icon.closed.captioning:before{content:"\F20A"}html.honeywell-dark-theme i.icon.pause.circle:before{content:"\F28B"}html.honeywell-dark-theme i.icon.pause.circle.outline:before{content:"\F28C"}html.honeywell-dark-theme i.icon.stop.circle:before{content:"\F28D"}html.honeywell-dark-theme i.icon.stop.circle.outline:before{content:"\F28E"}html.honeywell-dark-theme i.icon.marker:before{content:"\F041"}html.honeywell-dark-theme i.icon.coffee:before{content:"\F0F4"}html.honeywell-dark-theme i.icon.food:before{content:"\F0F5"}html.honeywell-dark-theme i.icon.building.outline:before{content:"\F0F7"}html.honeywell-dark-theme i.icon.hospital:before{content:"\F0F8"}html.honeywell-dark-theme i.icon.emergency:before{content:"\F0F9"}html.honeywell-dark-theme i.icon.first.aid:before{content:"\F0FA"}html.honeywell-dark-theme i.icon.military:before{content:"\F0FB"}html.honeywell-dark-theme i.icon.h:before{content:"\F0FD"}html.honeywell-dark-theme i.icon.location.arrow:before{content:"\F124"}html.honeywell-dark-theme i.icon.compass:before{content:"\F14E"}html.honeywell-dark-theme i.icon.space.shuttle:before{content:"\F197"}html.honeywell-dark-theme i.icon.university:before{content:"\F19C"}html.honeywell-dark-theme i.icon.building:before{content:"\F1AD"}html.honeywell-dark-theme i.icon.paw:before{content:"\F1B0"}html.honeywell-dark-theme i.icon.spoon:before{content:"\F1B1"}html.honeywell-dark-theme i.icon.car:before{content:"\F1B9"}html.honeywell-dark-theme i.icon.taxi:before{content:"\F1BA"}html.honeywell-dark-theme i.icon.tree:before{content:"\F1BB"}html.honeywell-dark-theme i.icon.bicycle:before{content:"\F206"}html.honeywell-dark-theme i.icon.bus:before{content:"\F207"}html.honeywell-dark-theme i.icon.ship:before{content:"\F21A"}html.honeywell-dark-theme i.icon.motorcycle:before{content:"\F21C"}html.honeywell-dark-theme i.icon.street.view:before{content:"\F21D"}html.honeywell-dark-theme i.icon.hotel:before{content:"\F236"}html.honeywell-dark-theme i.icon.train:before{content:"\F238"}html.honeywell-dark-theme i.icon.subway:before{content:"\F239"}html.honeywell-dark-theme i.icon.map.pin:before{content:"\F276"}html.honeywell-dark-theme i.icon.map.signs:before{content:"\F277"}html.honeywell-dark-theme i.icon.map.outline:before{content:"\F278"}html.honeywell-dark-theme i.icon.map:before{content:"\F279"}html.honeywell-dark-theme i.icon.table:before{content:"\F0CE"}html.honeywell-dark-theme i.icon.columns:before{content:"\F0DB"}html.honeywell-dark-theme i.icon.sort:before{content:"\F0DC"}html.honeywell-dark-theme i.icon.sort.descending:before{content:"\F0DD"}html.honeywell-dark-theme i.icon.sort.ascending:before{content:"\F0DE"}html.honeywell-dark-theme i.icon.sort.alphabet.ascending:before{content:"\F15D"}html.honeywell-dark-theme i.icon.sort.alphabet.descending:before{content:"\F15E"}html.honeywell-dark-theme i.icon.sort.content.ascending:before{content:"\F160"}html.honeywell-dark-theme i.icon.sort.content.descending:before{content:"\F161"}html.honeywell-dark-theme i.icon.sort.numeric.ascending:before{content:"\F162"}html.honeywell-dark-theme i.icon.sort.numeric.descending:before{content:"\F163"}html.honeywell-dark-theme i.icon.font:before{content:"\F031"}html.honeywell-dark-theme i.icon.bold:before{content:"\F032"}html.honeywell-dark-theme i.icon.italic:before{content:"\F033"}html.honeywell-dark-theme i.icon.text.height:before{content:"\F034"}html.honeywell-dark-theme i.icon.text.width:before{content:"\F035"}html.honeywell-dark-theme i.icon.align.left:before{content:"\F036"}html.honeywell-dark-theme i.icon.align.center:before{content:"\F037"}html.honeywell-dark-theme i.icon.align.right:before{content:"\F038"}html.honeywell-dark-theme i.icon.align.justify:before{content:"\F039"}html.honeywell-dark-theme i.icon.list:before{content:"\F03A"}html.honeywell-dark-theme i.icon.outdent:before{content:"\F03B"}html.honeywell-dark-theme i.icon.indent:before{content:"\F03C"}html.honeywell-dark-theme i.icon.linkify:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.cut:before{content:"\F0C4"}html.honeywell-dark-theme i.icon.copy:before{content:"\F0C5"}html.honeywell-dark-theme i.icon.attach:before{content:"\F0C6"}html.honeywell-dark-theme i.icon.save:before{content:"\F0C7"}html.honeywell-dark-theme i.icon.content:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.unordered.list:before{content:"\F0CA"}html.honeywell-dark-theme i.icon.ordered.list:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.strikethrough:before{content:"\F0CC"}html.honeywell-dark-theme i.icon.underline:before{content:"\F0CD"}html.honeywell-dark-theme i.icon.paste:before{content:"\F0EA"}html.honeywell-dark-theme i.icon.unlinkify:before{content:"\F127"}html.honeywell-dark-theme i.icon.superscript:before{content:"\F12B"}html.honeywell-dark-theme i.icon.subscript:before{content:"\F12C"}html.honeywell-dark-theme i.icon.header:before{content:"\F1DC"}html.honeywell-dark-theme i.icon.paragraph:before{content:"\F1DD"}html.honeywell-dark-theme i.icon.text.cursor:before{content:"\F246"}html.honeywell-dark-theme i.icon.euro:before{content:"\F153"}html.honeywell-dark-theme i.icon.pound:before{content:"\F154"}html.honeywell-dark-theme i.icon.dollar:before{content:"\F155"}html.honeywell-dark-theme i.icon.rupee:before{content:"\F156"}html.honeywell-dark-theme i.icon.yen:before{content:"\F157"}html.honeywell-dark-theme i.icon.ruble:before{content:"\F158"}html.honeywell-dark-theme i.icon.won:before{content:"\F159"}html.honeywell-dark-theme i.icon.bitcoin:before{content:"\F15A"}html.honeywell-dark-theme i.icon.lira:before{content:"\F195"}html.honeywell-dark-theme i.icon.shekel:before{content:"\F20B"}html.honeywell-dark-theme i.icon.paypal:before{content:"\F1ED"}html.honeywell-dark-theme i.icon.google.wallet:before{content:"\F1EE"}html.honeywell-dark-theme i.icon.visa:before{content:"\F1F0"}html.honeywell-dark-theme i.icon.mastercard:before{content:"\F1F1"}html.honeywell-dark-theme i.icon.discover:before{content:"\F1F2"}html.honeywell-dark-theme i.icon.american.express:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.paypal.card:before{content:"\F1F4"}html.honeywell-dark-theme i.icon.stripe:before{content:"\F1F5"}html.honeywell-dark-theme i.icon.japan.credit.bureau:before{content:"\F24B"}html.honeywell-dark-theme i.icon.diners.club:before{content:"\F24C"}html.honeywell-dark-theme i.icon.credit.card.alternative:before{content:"\F283"}html.honeywell-dark-theme i.icon.twitter.square:before{content:"\F081"}html.honeywell-dark-theme i.icon.facebook.square:before{content:"\F082"}html.honeywell-dark-theme i.icon.linkedin.square:before{content:"\F08C"}html.honeywell-dark-theme i.icon.github.square:before{content:"\F092"}html.honeywell-dark-theme i.icon.twitter:before{content:"\F099"}html.honeywell-dark-theme i.icon.facebook.f:before{content:"\F09A"}html.honeywell-dark-theme i.icon.github:before{content:"\F09B"}html.honeywell-dark-theme i.icon.pinterest:before{content:"\F0D2"}html.honeywell-dark-theme i.icon.pinterest.square:before{content:"\F0D3"}html.honeywell-dark-theme i.icon.google.plus.square:before{content:"\F0D4"}html.honeywell-dark-theme i.icon.google.plus:before{content:"\F0D5"}html.honeywell-dark-theme i.icon.linkedin:before{content:"\F0E1"}html.honeywell-dark-theme i.icon.github.alternate:before{content:"\F113"}html.honeywell-dark-theme i.icon.maxcdn:before{content:"\F136"}html.honeywell-dark-theme i.icon.youtube.square:before{content:"\F166"}html.honeywell-dark-theme i.icon.youtube:before{content:"\F167"}html.honeywell-dark-theme i.icon.xing:before{content:"\F168"}html.honeywell-dark-theme i.icon.xing.square:before{content:"\F169"}html.honeywell-dark-theme i.icon.youtube.play:before{content:"\F16A"}html.honeywell-dark-theme i.icon.dropbox:before{content:"\F16B"}html.honeywell-dark-theme i.icon.stack.overflow:before{content:"\F16C"}html.honeywell-dark-theme i.icon.instagram:before{content:"\F16D"}html.honeywell-dark-theme i.icon.flickr:before{content:"\F16E"}html.honeywell-dark-theme i.icon.adn:before{content:"\F170"}html.honeywell-dark-theme i.icon.bitbucket:before{content:"\F171"}html.honeywell-dark-theme i.icon.bitbucket.square:before{content:"\F172"}html.honeywell-dark-theme i.icon.tumblr:before{content:"\F173"}html.honeywell-dark-theme i.icon.tumblr.square:before{content:"\F174"}html.honeywell-dark-theme i.icon.apple:before{content:"\F179"}html.honeywell-dark-theme i.icon.windows:before{content:"\F17A"}html.honeywell-dark-theme i.icon.android:before{content:"\F17B"}html.honeywell-dark-theme i.icon.linux:before{content:"\F17C"}html.honeywell-dark-theme i.icon.dribble:before{content:"\F17D"}html.honeywell-dark-theme i.icon.skype:before{content:"\F17E"}html.honeywell-dark-theme i.icon.foursquare:before{content:"\F180"}html.honeywell-dark-theme i.icon.trello:before{content:"\F181"}html.honeywell-dark-theme i.icon.gittip:before{content:"\F184"}html.honeywell-dark-theme i.icon.vk:before{content:"\F189"}html.honeywell-dark-theme i.icon.weibo:before{content:"\F18A"}html.honeywell-dark-theme i.icon.renren:before{content:"\F18B"}html.honeywell-dark-theme i.icon.pagelines:before{content:"\F18C"}html.honeywell-dark-theme i.icon.stack.exchange:before{content:"\F18D"}html.honeywell-dark-theme i.icon.vimeo.square:before{content:"\F194"}html.honeywell-dark-theme i.icon.slack:before{content:"\F198"}html.honeywell-dark-theme i.icon.wordpress:before{content:"\F19A"}html.honeywell-dark-theme i.icon.yahoo:before{content:"\F19E"}html.honeywell-dark-theme i.icon.google:before{content:"\F1A0"}html.honeywell-dark-theme i.icon.reddit:before{content:"\F1A1"}html.honeywell-dark-theme i.icon.reddit.square:before{content:"\F1A2"}html.honeywell-dark-theme i.icon.stumbleupon.circle:before{content:"\F1A3"}html.honeywell-dark-theme i.icon.stumbleupon:before{content:"\F1A4"}html.honeywell-dark-theme i.icon.delicious:before{content:"\F1A5"}html.honeywell-dark-theme i.icon.digg:before{content:"\F1A6"}html.honeywell-dark-theme i.icon.pied.piper:before{content:"\F1A7"}html.honeywell-dark-theme i.icon.pied.piper.alternate:before{content:"\F1A8"}html.honeywell-dark-theme i.icon.drupal:before{content:"\F1A9"}html.honeywell-dark-theme i.icon.joomla:before{content:"\F1AA"}html.honeywell-dark-theme i.icon.behance:before{content:"\F1B4"}html.honeywell-dark-theme i.icon.behance.square:before{content:"\F1B5"}html.honeywell-dark-theme i.icon.steam:before{content:"\F1B6"}html.honeywell-dark-theme i.icon.steam.square:before{content:"\F1B7"}html.honeywell-dark-theme i.icon.spotify:before{content:"\F1BC"}html.honeywell-dark-theme i.icon.deviantart:before{content:"\F1BD"}html.honeywell-dark-theme i.icon.soundcloud:before{content:"\F1BE"}html.honeywell-dark-theme i.icon.vine:before{content:"\F1CA"}html.honeywell-dark-theme i.icon.codepen:before{content:"\F1CB"}html.honeywell-dark-theme i.icon.jsfiddle:before{content:"\F1CC"}html.honeywell-dark-theme i.icon.rebel:before{content:"\F1D0"}html.honeywell-dark-theme i.icon.empire:before{content:"\F1D1"}html.honeywell-dark-theme i.icon.git.square:before{content:"\F1D2"}html.honeywell-dark-theme i.icon.git:before{content:"\F1D3"}html.honeywell-dark-theme i.icon.hacker.news:before{content:"\F1D4"}html.honeywell-dark-theme i.icon.tencent.weibo:before{content:"\F1D5"}html.honeywell-dark-theme i.icon.qq:before{content:"\F1D6"}html.honeywell-dark-theme i.icon.wechat:before{content:"\F1D7"}html.honeywell-dark-theme i.icon.slideshare:before{content:"\F1E7"}html.honeywell-dark-theme i.icon.twitch:before{content:"\F1E8"}html.honeywell-dark-theme i.icon.yelp:before{content:"\F1E9"}html.honeywell-dark-theme i.icon.lastfm:before{content:"\F202"}html.honeywell-dark-theme i.icon.lastfm.square:before{content:"\F203"}html.honeywell-dark-theme i.icon.ioxhost:before{content:"\F208"}html.honeywell-dark-theme i.icon.angellist:before{content:"\F209"}html.honeywell-dark-theme i.icon.meanpath:before{content:"\F20C"}html.honeywell-dark-theme i.icon.buysellads:before{content:"\F20D"}html.honeywell-dark-theme i.icon.connectdevelop:before{content:"\F20E"}html.honeywell-dark-theme i.icon.dashcube:before{content:"\F210"}html.honeywell-dark-theme i.icon.forumbee:before{content:"\F211"}html.honeywell-dark-theme i.icon.leanpub:before{content:"\F212"}html.honeywell-dark-theme i.icon.sellsy:before{content:"\F213"}html.honeywell-dark-theme i.icon.shirtsinbulk:before{content:"\F214"}html.honeywell-dark-theme i.icon.simplybuilt:before{content:"\F215"}html.honeywell-dark-theme i.icon.skyatlas:before{content:"\F216"}html.honeywell-dark-theme i.icon.facebook:before{content:"\F230"}html.honeywell-dark-theme i.icon.pinterest:before{content:"\F231"}html.honeywell-dark-theme i.icon.whatsapp:before{content:"\F232"}html.honeywell-dark-theme i.icon.viacoin:before{content:"\F237"}html.honeywell-dark-theme i.icon.medium:before{content:"\F23A"}html.honeywell-dark-theme i.icon.y.combinator:before{content:"\F23B"}html.honeywell-dark-theme i.icon.optinmonster:before{content:"\F23C"}html.honeywell-dark-theme i.icon.opencart:before{content:"\F23D"}html.honeywell-dark-theme i.icon.expeditedssl:before{content:"\F23E"}html.honeywell-dark-theme i.icon.gg:before{content:"\F260"}html.honeywell-dark-theme i.icon.gg.circle:before{content:"\F261"}html.honeywell-dark-theme i.icon.tripadvisor:before{content:"\F262"}html.honeywell-dark-theme i.icon.odnoklassniki:before{content:"\F263"}html.honeywell-dark-theme i.icon.odnoklassniki.square:before{content:"\F264"}html.honeywell-dark-theme i.icon.pocket:before{content:"\F265"}html.honeywell-dark-theme i.icon.wikipedia:before{content:"\F266"}html.honeywell-dark-theme i.icon.safari:before{content:"\F267"}html.honeywell-dark-theme i.icon.chrome:before{content:"\F268"}html.honeywell-dark-theme i.icon.firefox:before{content:"\F269"}html.honeywell-dark-theme i.icon.opera:before{content:"\F26A"}html.honeywell-dark-theme i.icon.internet.explorer:before{content:"\F26B"}html.honeywell-dark-theme i.icon.contao:before{content:"\F26D"}html.honeywell-dark-theme i.icon.\35 00px:before{content:"\F26E"}html.honeywell-dark-theme i.icon.amazon:before{content:"\F270"}html.honeywell-dark-theme i.icon.houzz:before{content:"\F27C"}html.honeywell-dark-theme i.icon.vimeo:before{content:"\F27D"}html.honeywell-dark-theme i.icon.black.tie:before{content:"\F27E"}html.honeywell-dark-theme i.icon.fonticons:before{content:"\F280"}html.honeywell-dark-theme i.icon.reddit.alien:before{content:"\F281"}html.honeywell-dark-theme i.icon.microsoft.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.codiepie:before{content:"\F284"}html.honeywell-dark-theme i.icon.modx:before{content:"\F285"}html.honeywell-dark-theme i.icon.fort.awesome:before{content:"\F286"}html.honeywell-dark-theme i.icon.product.hunt:before{content:"\F288"}html.honeywell-dark-theme i.icon.mixcloud:before{content:"\F289"}html.honeywell-dark-theme i.icon.scribd:before{content:"\F28A"}html.honeywell-dark-theme i.icon.gitlab:before{content:"\F296"}html.honeywell-dark-theme i.icon.wpbeginner:before{content:"\F297"}html.honeywell-dark-theme i.icon.wpforms:before{content:"\F298"}html.honeywell-dark-theme i.icon.envira.gallery:before{content:"\F299"}html.honeywell-dark-theme i.icon.glide:before{content:"\F2A5"}html.honeywell-dark-theme i.icon.glide.g:before{content:"\F2A6"}html.honeywell-dark-theme i.icon.viadeo:before{content:"\F2A9"}html.honeywell-dark-theme i.icon.viadeo.square:before{content:"\F2AA"}html.honeywell-dark-theme i.icon.snapchat:before{content:"\F2AB"}html.honeywell-dark-theme i.icon.snapchat.ghost:before{content:"\F2AC"}html.honeywell-dark-theme i.icon.snapchat.square:before{content:"\F2AD"}html.honeywell-dark-theme i.icon.pied.piper.hat:before{content:"\F2AE"}html.honeywell-dark-theme i.icon.first.order:before{content:"\F2B0"}html.honeywell-dark-theme i.icon.yoast:before{content:"\F2B1"}html.honeywell-dark-theme i.icon.themeisle:before{content:"\F2B2"}html.honeywell-dark-theme i.icon.google.plus.circle:before{content:"\F2B3"}html.honeywell-dark-theme i.icon.font.awesome:before{content:"\F2B4"}html.honeywell-dark-theme i.icon.linode:before{content:"\F2B8"}html.honeywell-dark-theme i.icon.quora:before{content:"\F2C4"}html.honeywell-dark-theme i.icon.free.code.camp:before{content:"\F2C5"}html.honeywell-dark-theme i.icon.telegram:before{content:"\F2C6"}html.honeywell-dark-theme i.icon.bandcamp:before{content:"\F2D5"}html.honeywell-dark-theme i.icon.grav:before{content:"\F2D6"}html.honeywell-dark-theme i.icon.etsy:before{content:"\F2D7"}html.honeywell-dark-theme i.icon.imdb:before{content:"\F2D8"}html.honeywell-dark-theme i.icon.ravelry:before{content:"\F2D9"}html.honeywell-dark-theme i.icon.eercast:before{content:"\F2DA"}html.honeywell-dark-theme i.icon.superpowers:before{content:"\F2DD"}html.honeywell-dark-theme i.icon.wpexplorer:before{content:"\F2DE"}html.honeywell-dark-theme i.icon.meetup:before{content:"\F2E0"}html.honeywell-dark-theme i.icon.like:before{content:"\F004"}html.honeywell-dark-theme i.icon.favorite:before{content:"\F005"}html.honeywell-dark-theme i.icon.video:before{content:"\F008"}html.honeywell-dark-theme i.icon.check:before{content:"\F00C"}html.honeywell-dark-theme i.icon.close:before{content:"\F00D"}html.honeywell-dark-theme i.icon.cancel:before{content:"\F00D"}html.honeywell-dark-theme i.icon.delete:before{content:"\F00D"}html.honeywell-dark-theme i.icon.x:before{content:"\F00D"}html.honeywell-dark-theme i.icon.zoom.in:before{content:"\F00E"}html.honeywell-dark-theme i.icon.magnify:before{content:"\F00E"}html.honeywell-dark-theme i.icon.shutdown:before{content:"\F011"}html.honeywell-dark-theme i.icon.clock:before{content:"\F017"}html.honeywell-dark-theme i.icon.time:before{content:"\F017"}html.honeywell-dark-theme i.icon.play.circle.outline:before{content:"\F01D"}html.honeywell-dark-theme i.icon.headphone:before{content:"\F025"}html.honeywell-dark-theme i.icon.camera:before{content:"\F030"}html.honeywell-dark-theme i.icon.video.camera:before{content:"\F03D"}html.honeywell-dark-theme i.icon.picture:before{content:"\F03E"}html.honeywell-dark-theme i.icon.pencil:before{content:"\F040"}html.honeywell-dark-theme i.icon.compose:before{content:"\F040"}html.honeywell-dark-theme i.icon.point:before{content:"\F041"}html.honeywell-dark-theme i.icon.tint:before{content:"\F043"}html.honeywell-dark-theme i.icon.signup:before{content:"\F044"}html.honeywell-dark-theme i.icon.plus.circle:before{content:"\F055"}html.honeywell-dark-theme i.icon.question.circle:before{content:"\F059"}html.honeywell-dark-theme i.icon.dont:before{content:"\F05E"}html.honeywell-dark-theme i.icon.minimize:before{content:"\F066"}html.honeywell-dark-theme i.icon.add:before{content:"\F067"}html.honeywell-dark-theme i.icon.exclamation.circle:before{content:"\F06A"}html.honeywell-dark-theme i.icon.attention:before{content:"\F06A"}html.honeywell-dark-theme i.icon.eye:before{content:"\F06E"}html.honeywell-dark-theme i.icon.exclamation.triangle:before{content:"\F071"}html.honeywell-dark-theme i.icon.shuffle:before{content:"\F074"}html.honeywell-dark-theme i.icon.chat:before{content:"\F075"}html.honeywell-dark-theme i.icon.cart:before{content:"\F07A"}html.honeywell-dark-theme i.icon.shopping.cart:before{content:"\F07A"}html.honeywell-dark-theme i.icon.bar.graph:before{content:"\F080"}html.honeywell-dark-theme i.icon.key:before{content:"\F084"}html.honeywell-dark-theme i.icon.cogs:before{content:"\F085"}html.honeywell-dark-theme i.icon.discussions:before{content:"\F086"}html.honeywell-dark-theme i.icon.like.outline:before{content:"\F087"}html.honeywell-dark-theme i.icon.dislike.outline:before{content:"\F088"}html.honeywell-dark-theme i.icon.heart.outline:before{content:"\F08A"}html.honeywell-dark-theme i.icon.log.out:before{content:"\F08B"}html.honeywell-dark-theme i.icon.thumb.tack:before{content:"\F08D"}html.honeywell-dark-theme i.icon.winner:before{content:"\F091"}html.honeywell-dark-theme i.icon.phone:before{content:"\F095"}html.honeywell-dark-theme i.icon.bookmark.outline:before{content:"\F097"}html.honeywell-dark-theme i.icon.phone.square:before{content:"\F098"}html.honeywell-dark-theme i.icon.credit.card:before{content:"\F09D"}html.honeywell-dark-theme i.icon.hdd.outline:before{content:"\F0A0"}html.honeywell-dark-theme i.icon.bullhorn:before{content:"\F0A1"}html.honeywell-dark-theme i.icon.bell.outline:before{content:"\F0A2"}html.honeywell-dark-theme i.icon.hand.outline.right:before{content:"\F0A4"}html.honeywell-dark-theme i.icon.hand.outline.left:before{content:"\F0A5"}html.honeywell-dark-theme i.icon.hand.outline.up:before{content:"\F0A6"}html.honeywell-dark-theme i.icon.hand.outline.down:before{content:"\F0A7"}html.honeywell-dark-theme i.icon.globe:before{content:"\F0AC"}html.honeywell-dark-theme i.icon.wrench:before{content:"\F0AD"}html.honeywell-dark-theme i.icon.briefcase:before{content:"\F0B1"}html.honeywell-dark-theme i.icon.group:before{content:"\F0C0"}html.honeywell-dark-theme i.icon.linkify:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.chain:before{content:"\F0C1"}html.honeywell-dark-theme i.icon.flask:before{content:"\F0C3"}html.honeywell-dark-theme i.icon.sidebar:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.bars:before{content:"\F0C9"}html.honeywell-dark-theme i.icon.list.ul:before{content:"\F0CA"}html.honeywell-dark-theme i.icon.list.ol:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.numbered.list:before{content:"\F0CB"}html.honeywell-dark-theme i.icon.magic:before{content:"\F0D0"}html.honeywell-dark-theme i.icon.truck:before{content:"\F0D1"}html.honeywell-dark-theme i.icon.currency:before{content:"\F0D6"}html.honeywell-dark-theme i.icon.triangle.down:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.dropdown:before{content:"\F0D7"}html.honeywell-dark-theme i.icon.triangle.up:before{content:"\F0D8"}html.honeywell-dark-theme i.icon.triangle.left:before{content:"\F0D9"}html.honeywell-dark-theme i.icon.triangle.right:before{content:"\F0DA"}html.honeywell-dark-theme i.icon.envelope:before{content:"\F0E0"}html.honeywell-dark-theme i.icon.conversation:before{content:"\F0E6"}html.honeywell-dark-theme i.icon.rain:before{content:"\F0E9"}html.honeywell-dark-theme i.icon.clipboard:before{content:"\F0EA"}html.honeywell-dark-theme i.icon.lightbulb:before{content:"\F0EB"}html.honeywell-dark-theme i.icon.bell:before{content:"\F0F3"}html.honeywell-dark-theme i.icon.ambulance:before{content:"\F0F9"}html.honeywell-dark-theme i.icon.medkit:before{content:"\F0FA"}html.honeywell-dark-theme i.icon.fighter.jet:before{content:"\F0FB"}html.honeywell-dark-theme i.icon.beer:before{content:"\F0FC"}html.honeywell-dark-theme i.icon.plus.square:before{content:"\F0FE"}html.honeywell-dark-theme i.icon.computer:before{content:"\F108"}html.honeywell-dark-theme i.icon.circle.outline:before{content:"\F10C"}html.honeywell-dark-theme i.icon.gamepad:before{content:"\F11B"}html.honeywell-dark-theme i.icon.star.half.full:before{content:"\F123"}html.honeywell-dark-theme i.icon.broken.chain:before{content:"\F127"}html.honeywell-dark-theme i.icon.question:before{content:"\F128"}html.honeywell-dark-theme i.icon.exclamation:before{content:"\F12A"}html.honeywell-dark-theme i.icon.eraser:before{content:"\F12D"}html.honeywell-dark-theme i.icon.microphone:before{content:"\F130"}html.honeywell-dark-theme i.icon.microphone.slash:before{content:"\F131"}html.honeywell-dark-theme i.icon.shield:before{content:"\F132"}html.honeywell-dark-theme i.icon.target:before{content:"\F140"}html.honeywell-dark-theme i.icon.play.circle:before{content:"\F144"}html.honeywell-dark-theme i.icon.pencil.square:before{content:"\F14B"}html.honeywell-dark-theme i.icon.eur:before{content:"\F153"}html.honeywell-dark-theme i.icon.gbp:before{content:"\F154"}html.honeywell-dark-theme i.icon.usd:before{content:"\F155"}html.honeywell-dark-theme i.icon.inr:before{content:"\F156"}html.honeywell-dark-theme i.icon.cny:before{content:"\F157"}html.honeywell-dark-theme i.icon.rmb:before{content:"\F157"}html.honeywell-dark-theme i.icon.jpy:before{content:"\F157"}html.honeywell-dark-theme i.icon.rouble:before{content:"\F158"}html.honeywell-dark-theme i.icon.rub:before{content:"\F158"}html.honeywell-dark-theme i.icon.krw:before{content:"\F159"}html.honeywell-dark-theme i.icon.btc:before{content:"\F15A"}html.honeywell-dark-theme i.icon.gratipay:before{content:"\F184"}html.honeywell-dark-theme i.icon.zip:before{content:"\F187"}html.honeywell-dark-theme i.icon.dot.circle.outline:before{content:"\F192"}html.honeywell-dark-theme i.icon.try:before{content:"\F195"}html.honeywell-dark-theme i.icon.graduation:before{content:"\F19D"}html.honeywell-dark-theme i.icon.circle.outline:before{content:"\F1DB"}html.honeywell-dark-theme i.icon.sliders:before{content:"\F1DE"}html.honeywell-dark-theme i.icon.weixin:before{content:"\F1D7"}html.honeywell-dark-theme i.icon.tty:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.teletype:before{content:"\F1E4"}html.honeywell-dark-theme i.icon.binoculars:before{content:"\F1E5"}html.honeywell-dark-theme i.icon.power.cord:before{content:"\F1E6"}html.honeywell-dark-theme i.icon.wi-fi:before{content:"\F1EB"}html.honeywell-dark-theme i.icon.visa.card:before{content:"\F1F0"}html.honeywell-dark-theme i.icon.mastercard.card:before{content:"\F1F1"}html.honeywell-dark-theme i.icon.discover.card:before{content:"\F1F2"}html.honeywell-dark-theme i.icon.amex:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.american.express.card:before{content:"\F1F3"}html.honeywell-dark-theme i.icon.stripe.card:before{content:"\F1F5"}html.honeywell-dark-theme i.icon.bell.slash:before{content:"\F1F6"}html.honeywell-dark-theme i.icon.bell.slash.outline:before{content:"\F1F7"}html.honeywell-dark-theme i.icon.area.graph:before{content:"\F1FE"}html.honeywell-dark-theme i.icon.pie.graph:before{content:"\F200"}html.honeywell-dark-theme i.icon.line.graph:before{content:"\F201"}html.honeywell-dark-theme i.icon.cc:before{content:"\F20A"}html.honeywell-dark-theme i.icon.sheqel:before{content:"\F20B"}html.honeywell-dark-theme i.icon.ils:before{content:"\F20B"}html.honeywell-dark-theme i.icon.plus.cart:before{content:"\F217"}html.honeywell-dark-theme i.icon.arrow.down.cart:before{content:"\F218"}html.honeywell-dark-theme i.icon.detective:before{content:"\F21B"}html.honeywell-dark-theme i.icon.venus:before{content:"\F221"}html.honeywell-dark-theme i.icon.mars:before{content:"\F222"}html.honeywell-dark-theme i.icon.mercury:before{content:"\F223"}html.honeywell-dark-theme i.icon.intersex:before{content:"\F224"}html.honeywell-dark-theme i.icon.venus.double:before{content:"\F226"}html.honeywell-dark-theme i.icon.female.homosexual:before{content:"\F226"}html.honeywell-dark-theme i.icon.mars.double:before{content:"\F227"}html.honeywell-dark-theme i.icon.male.homosexual:before{content:"\F227"}html.honeywell-dark-theme i.icon.venus.mars:before{content:"\F228"}html.honeywell-dark-theme i.icon.mars.stroke:before{content:"\F229"}html.honeywell-dark-theme i.icon.mars.alternate:before{content:"\F229"}html.honeywell-dark-theme i.icon.mars.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.mars.stroke.vertical:before{content:"\F22A"}html.honeywell-dark-theme i.icon.mars.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.mars.stroke.horizontal:before{content:"\F22B"}html.honeywell-dark-theme i.icon.asexual:before{content:"\F22D"}html.honeywell-dark-theme i.icon.facebook.official:before{content:"\F230"}html.honeywell-dark-theme i.icon.user.plus:before{content:"\F234"}html.honeywell-dark-theme i.icon.user.times:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.close:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.cancel:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.delete:before{content:"\F235"}html.honeywell-dark-theme i.icon.user.x:before{content:"\F235"}html.honeywell-dark-theme i.icon.bed:before{content:"\F236"}html.honeywell-dark-theme i.icon.yc:before{content:"\F23B"}html.honeywell-dark-theme i.icon.ycombinator:before{content:"\F23B"}html.honeywell-dark-theme i.icon.battery.four:before{content:"\F240"}html.honeywell-dark-theme i.icon.battery.three:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.three.quarters:before{content:"\F241"}html.honeywell-dark-theme i.icon.battery.two:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.half:before{content:"\F242"}html.honeywell-dark-theme i.icon.battery.one:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.quarter:before{content:"\F243"}html.honeywell-dark-theme i.icon.battery.zero:before{content:"\F244"}html.honeywell-dark-theme i.icon.i.cursor:before{content:"\F246"}html.honeywell-dark-theme i.icon.jcb:before{content:"\F24B"}html.honeywell-dark-theme i.icon.japan.credit.bureau.card:before{content:"\F24B"}html.honeywell-dark-theme i.icon.diners.club.card:before{content:"\F24C"}html.honeywell-dark-theme i.icon.balance:before{content:"\F24E"}html.honeywell-dark-theme i.icon.hourglass.outline:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.zero:before{content:"\F250"}html.honeywell-dark-theme i.icon.hourglass.one:before{content:"\F251"}html.honeywell-dark-theme i.icon.hourglass.two:before{content:"\F252"}html.honeywell-dark-theme i.icon.hourglass.three:before{content:"\F253"}html.honeywell-dark-theme i.icon.hourglass.four:before{content:"\F254"}html.honeywell-dark-theme i.icon.grab:before{content:"\F255"}html.honeywell-dark-theme i.icon.hand.victory:before{content:"\F25B"}html.honeywell-dark-theme i.icon.tm:before{content:"\F25C"}html.honeywell-dark-theme i.icon.r.circle:before{content:"\F25D"}html.honeywell-dark-theme i.icon.television:before{content:"\F26C"}html.honeywell-dark-theme i.icon.five.hundred.pixels:before{content:"\F26E"}html.honeywell-dark-theme i.icon.calendar.plus:before{content:"\F271"}html.honeywell-dark-theme i.icon.calendar.minus:before{content:"\F272"}html.honeywell-dark-theme i.icon.calendar.times:before{content:"\F273"}html.honeywell-dark-theme i.icon.calendar.check:before{content:"\F274"}html.honeywell-dark-theme i.icon.factory:before{content:"\F275"}html.honeywell-dark-theme i.icon.commenting:before{content:"\F27A"}html.honeywell-dark-theme i.icon.commenting.outline:before{content:"\F27B"}html.honeywell-dark-theme i.icon.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.ms.edge:before{content:"\F282"}html.honeywell-dark-theme i.icon.wordpress.beginner:before{content:"\F297"}html.honeywell-dark-theme i.icon.wordpress.forms:before{content:"\F298"}html.honeywell-dark-theme i.icon.envira:before{content:"\F299"}html.honeywell-dark-theme i.icon.question.circle.outline:before{content:"\F29C"}html.honeywell-dark-theme i.icon.assistive.listening.devices:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.als:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.ald:before{content:"\F2A2"}html.honeywell-dark-theme i.icon.asl.interpreting:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.deaf:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.american.sign.language.interpreting:before{content:"\F2A3"}html.honeywell-dark-theme i.icon.hard.of.hearing:before{content:"\F2A4"}html.honeywell-dark-theme i.icon.signing:before{content:"\F2A7"}html.honeywell-dark-theme i.icon.new.pied.piper:before{content:"\F2AE"}html.honeywell-dark-theme i.icon.theme.isle:before{content:"\F2B2"}html.honeywell-dark-theme i.icon.google.plus.official:before{content:"\F2B3"}html.honeywell-dark-theme i.icon.fa:before{content:"\F2B4"}html.honeywell-dark-theme i.icon.vcard:before{content:"\F2BB"}html.honeywell-dark-theme i.icon.vcard.outline:before{content:"\F2BC"}html.honeywell-dark-theme i.icon.drivers.license:before{content:"\F2C2"}html.honeywell-dark-theme i.icon.drivers.license.outline:before{content:"\F2C3"}html.honeywell-dark-theme i.icon.thermometer:before{content:"\F2C7"}html.honeywell-dark-theme i.icon.s15:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.bath:before{content:"\F2CD"}html.honeywell-dark-theme i.icon.times.rectangle:before{content:"\F2D3"}html.honeywell-dark-theme i.icon.times.rectangle.outline:before{content:"\F2D4"}html.honeywell-dark-theme .ui.dashboard-wrap{position:relative;display:flex;min-height:82px;overflow:hidden}html.honeywell-dark-theme .ui.dashboard-wrap .react-resizable-handle::after{border-color:#fff}html.honeywell-dark-theme .ui.dashboard-wrap .layout-grid{z-index:2}html.honeywell-dark-theme .ui.dashboard-wrap .layout-grid .ui.tile-container{background:#303030;border:1px solid transparent;box-shadow:0 1px 2px rgba(0,0,0,0.5);position:relative;display:flex;overflow:hidden}html.honeywell-dark-theme .ui.dashboard-wrap .layout-grid .react-grid-item.react-grid-placeholder{background:#06f;z-index:1;opacity:0.35}html.honeywell-dark-theme .ui.dashboard-wrap.editable .layout-grid .tile-container{cursor:grab}html.honeywell-dark-theme .ui.dashboard-wrap.editable .layout-grid .tile-container.react-draggable-dragging{cursor:grabbing !important;border:1px solid #45A7EA;opacity:0.7}html.honeywell-dark-theme .ui.dashboard-wrap .marker-grid{position:absolute;z-index:1;top:0;left:0;right:0;opacity:0;pointer-events:none}html.honeywell-dark-theme .ui.dashboard-wrap .marker-grid .grid-marker{border:.0625rem dashed #606060;opacity:0.6}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html.honeywell-dark-theme .ui.dashboard-wrap .marker-grid{display:none}}html.honeywell-dark-theme .ui.dashboard-wrap.explicit-height.in-flux .over-flow-marker{height:calc(100% - 6px);border-bottom:2px dashed #606060;width:100%}html.honeywell-dark-theme .ui.tile-container .tile-wrapper{width:100%}html.honeywell-dark-theme .ui.tile-container .tile-actions{position:absolute;top:0;width:100%;z-index:900;right:0;left:0;display:flex;justify-content:flex-end;padding:1rem 1rem 1rem 0;width:calc(100% - 1rem)}html.honeywell-dark-theme .ui.tile-container .tile-actions .tile-action-icon{display:inline-block;cursor:pointer !important;color:#fff;line-height:1rem}html.honeywell-dark-theme .ui.tile-container .tile-actions .tile-action-icon:hover{color:#45A7EA}html.honeywell-dark-theme .ui.tile-container .tile-actions .tile-action-icon+.tile-action-icon{margin-left:1rem}html:not(.honeywell-dark-theme){/*!
 * # Semantic UI 2.2.11 - Icon
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */}@font-face{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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{html:not(.honeywell-dark-theme){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}}html:not(.honeywell-dark-theme) .h-icon.global{font-family:'Honeywell-Global' !important}html:not(.honeywell-dark-theme) .h-icon.global.badge-alert:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.global.badge-help:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.global.badge-info:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.global.badge-stop:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.global.badge-warning:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.global.battery-empty:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.global.battery-full:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.global.battery-low:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.global.battery-mid:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.global.calendar:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.global.camera:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.global.caret-down:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.global.caret-left:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.global.caret-right:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.global.caret-up:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.global.check:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.global.close:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.global.credit-card:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.global.delete:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.global.document:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.global.edit-circled:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.global.edit:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.global.email:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.global.expand:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.global.export:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.global.file-download:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.global.file-upload:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.global.filter:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.global.flag-icon:before{content:"\E91C"}html:not(.honeywell-dark-theme) .h-icon.global.fullscreen-enter:before{content:"\E91D"}html:not(.honeywell-dark-theme) .h-icon.global.fullscreen-exit:before{content:"\E91E"}html:not(.honeywell-dark-theme) .h-icon.global.globe:before{content:"\E91F"}html:not(.honeywell-dark-theme) .h-icon.global.graph:before{content:"\E920"}html:not(.honeywell-dark-theme) .h-icon.global.home:before{content:"\E921"}html:not(.honeywell-dark-theme) .h-icon.global.location:before{content:"\E922"}html:not(.honeywell-dark-theme) .h-icon.global.locked:before{content:"\E923"}html:not(.honeywell-dark-theme) .h-icon.global.map:before{content:"\E924"}html:not(.honeywell-dark-theme) .h-icon.global.menu-icon:before{content:"\E925"}html:not(.honeywell-dark-theme) .h-icon.global.message:before{content:"\E926"}html:not(.honeywell-dark-theme) .h-icon.global.multiple-devices:before{content:"\E927"}html:not(.honeywell-dark-theme) .h-icon.global.notification:before{content:"\E928"}html:not(.honeywell-dark-theme) .h-icon.global.paperclip:before{content:"\E929"}html:not(.honeywell-dark-theme) .h-icon.global.pc:before{content:"\E92A"}html:not(.honeywell-dark-theme) .h-icon.global.phone:before{content:"\E92B"}html:not(.honeywell-dark-theme) .h-icon.global.playback-pause:before{content:"\E92C"}html:not(.honeywell-dark-theme) .h-icon.global.playback-play:before{content:"\E92D"}html:not(.honeywell-dark-theme) .h-icon.global.print:before{content:"\E92E"}html:not(.honeywell-dark-theme) .h-icon.global.redo:before{content:"\E92F"}html:not(.honeywell-dark-theme) .h-icon.global.refresh:before{content:"\E930"}html:not(.honeywell-dark-theme) .h-icon.global.reminders:before{content:"\E931"}html:not(.honeywell-dark-theme) .h-icon.global.save:before{content:"\E932"}html:not(.honeywell-dark-theme) .h-icon.global.search:before{content:"\E933"}html:not(.honeywell-dark-theme) .h-icon.global.settings:before{content:"\E934"}html:not(.honeywell-dark-theme) .h-icon.global.share-2:before{content:"\E935"}html:not(.honeywell-dark-theme) .h-icon.global.share:before{content:"\E936"}html:not(.honeywell-dark-theme) .h-icon.global.shopping-bag:before{content:"\E937"}html:not(.honeywell-dark-theme) .h-icon.global.slider-controls-minus:before{content:"\E938"}html:not(.honeywell-dark-theme) .h-icon.global.slider-controls-plus:before{content:"\E939"}html:not(.honeywell-dark-theme) .h-icon.global.smartphone:before{content:"\E93A"}html:not(.honeywell-dark-theme) .h-icon.global.social-fb-sq:before{content:"\E93B"}html:not(.honeywell-dark-theme) .h-icon.global.social-fb:before{content:"\E93C"}html:not(.honeywell-dark-theme) .h-icon.global.social-ig-sq:before{content:"\E93D"}html:not(.honeywell-dark-theme) .h-icon.global.social-ig:before{content:"\E93E"}html:not(.honeywell-dark-theme) .h-icon.global.social-li-sq:before{content:"\E93F"}html:not(.honeywell-dark-theme) .h-icon.global.social-li:before{content:"\E940"}html:not(.honeywell-dark-theme) .h-icon.global.social-tw-sq:before{content:"\E941"}html:not(.honeywell-dark-theme) .h-icon.global.social-tw:before{content:"\E942"}html:not(.honeywell-dark-theme) .h-icon.global.social-yt-sq:before{content:"\E943"}html:not(.honeywell-dark-theme) .h-icon.global.social-yt:before{content:"\E944"}html:not(.honeywell-dark-theme) .h-icon.global.speaker-off:before{content:"\E945"}html:not(.honeywell-dark-theme) .h-icon.global.speaker-on:before{content:"\E946"}html:not(.honeywell-dark-theme) .h-icon.global.star:before{content:"\E947"}html:not(.honeywell-dark-theme) .h-icon.global.tools:before{content:"\E948"}html:not(.honeywell-dark-theme) .h-icon.global.undo:before{content:"\E949"}html:not(.honeywell-dark-theme) .h-icon.global.unlocked:before{content:"\E94A"}html:not(.honeywell-dark-theme) .h-icon.global.user:before{content:"\E94B"}html:not(.honeywell-dark-theme) .h-icon.global.users:before{content:"\E94C"}html:not(.honeywell-dark-theme) .h-icon.global.voice-message:before{content:"\E94D"}html:not(.honeywell-dark-theme) .h-icon.global.wifi:before{content:"\E94E"}html:not(.honeywell-dark-theme) .h-icon.global.shipping{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.shipping:before{content:"\1F399"}html:not(.honeywell-dark-theme) .h-icon.global.app-launcher{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.app-launcher:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-right{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-right:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-left{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.double-caret-left:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.global.rtm{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.rtm:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.global.organization{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.organization:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.global.dash{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.dash:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.global.equipment{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.equipment:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.global.inspections{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.inspections:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.global.reports{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.reports:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.global.training{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.training:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.global.sites-pin{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.sites-pin:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.global.users-two{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.users-two:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.global.unequal{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.global.unequal:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.aero{font-family:'Honeywell-Flight' !important}html:not(.honeywell-dark-theme) .h-icon.aero.ac-atr:before{content:"\E92A"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-bga:before{content:"\E92B"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-dns:before{content:"\E92C"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-dualprop:before{content:"\E92D"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-glider:before{content:"\E92E"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-highwing:before{content:"\E92F"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-lowwing:before{content:"\E930"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-profile:before{content:"\E931"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-right:before{content:"\E932"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-settings:before{content:"\E933"}html:not(.honeywell-dark-theme) .h-icon.aero.ac-up:before{content:"\E934"}html:not(.honeywell-dark-theme) .h-icon.aero.airports-directory:before{content:"\E935"}html:not(.honeywell-dark-theme) .h-icon.aero.airports-nearby:before{content:"\E936"}html:not(.honeywell-dark-theme) .h-icon.aero.airports:before{content:"\E937"}html:not(.honeywell-dark-theme) .h-icon.aero.cabin-seat:before{content:"\E938"}html:not(.honeywell-dark-theme) .h-icon.aero.cabin:before{content:"\E939"}html:not(.honeywell-dark-theme) .h-icon.aero.cleaning:before{content:"\E93A"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis-3:before{content:"\E93B"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis-alt:before{content:"\E93C"}html:not(.honeywell-dark-theme) .h-icon.aero.eapis:before{content:"\E93D"}html:not(.honeywell-dark-theme) .h-icon.aero.egi-2:before{content:"\E93E"}html:not(.honeywell-dark-theme) .h-icon.aero.egi:before{content:"\E93F"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo-1:before{content:"\E940"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo-2:before{content:"\E941"}html:not(.honeywell-dark-theme) .h-icon.aero.fbo:before{content:"\E942"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-attendant:before{content:"\E943"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan-doc:before{content:"\E944"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan-new:before{content:"\E945"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-plan:before{content:"\E946"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-schedule-alt:before{content:"\E947"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-schedule:before{content:"\E948"}html:not(.honeywell-dark-theme) .h-icon.aero.fuel:before{content:"\E949"}html:not(.honeywell-dark-theme) .h-icon.aero.hangar:before{content:"\E94A"}html:not(.honeywell-dark-theme) .h-icon.aero.helicopter:before{content:"\E94B"}html:not(.honeywell-dark-theme) .h-icon.aero.intl-trip:before{content:"\E94C"}html:not(.honeywell-dark-theme) .h-icon.aero.luggage:before{content:"\E94D"}html:not(.honeywell-dark-theme) .h-icon.aero.notams-2:before{content:"\E94E"}html:not(.honeywell-dark-theme) .h-icon.aero.notams-3:before{content:"\E94F"}html:not(.honeywell-dark-theme) .h-icon.aero.notams:before{content:"\E950"}html:not(.honeywell-dark-theme) .h-icon.aero.pilot-crushcap:before{content:"\E951"}html:not(.honeywell-dark-theme) .h-icon.aero.plane-approach-1:before{content:"\E952"}html:not(.honeywell-dark-theme) .h-icon.aero.plane-approach-2:before{content:"\E953"}html:not(.honeywell-dark-theme) .h-icon.aero.psngr-boarding:before{content:"\E954"}html:not(.honeywell-dark-theme) .h-icon.aero.psngr-deboarding:before{content:"\E955"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-1:before{content:"\E956"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-2:before{content:"\E957"}html:not(.honeywell-dark-theme) .h-icon.aero.ramp-3:before{content:"\E958"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-1:before{content:"\E959"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-2:before{content:"\E95A"}html:not(.honeywell-dark-theme) .h-icon.aero.runway-analysis-3:before{content:"\E95B"}html:not(.honeywell-dark-theme) .h-icon.aero.runway:before{content:"\E95C"}html:not(.honeywell-dark-theme) .h-icon.aero.screen-seat:before{content:"\E95D"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator-air:before{content:"\E95E"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator-vertical:before{content:"\E95F"}html:not(.honeywell-dark-theme) .h-icon.aero.speed-indicator:before{content:"\E960"}html:not(.honeywell-dark-theme) .h-icon.aero.track-up-centered:before{content:"\E961"}html:not(.honeywell-dark-theme) .h-icon.aero.track-up:before{content:"\E962"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit-add:before{content:"\E963"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit-refresh:before{content:"\E964"}html:not(.honeywell-dark-theme) .h-icon.aero.trip-kit:before{content:"\E965"}html:not(.honeywell-dark-theme) .h-icon.aero.uav:before{content:"\E966"}html:not(.honeywell-dark-theme) .h-icon.aero.valance:before{content:"\E967"}html:not(.honeywell-dark-theme) .h-icon.aero.weather-chart:before{content:"\E968"}html:not(.honeywell-dark-theme) .h-icon.aero.wheel-chocks:before{content:"\E969"}html:not(.honeywell-dark-theme) .h-icon.aero.window-down:before{content:"\E96A"}html:not(.honeywell-dark-theme) .h-icon.aero.window-mid:before{content:"\E96B"}html:not(.honeywell-dark-theme) .h-icon.aero.window-up:before{content:"\E96C"}html:not(.honeywell-dark-theme) .h-icon.aero.ptmd{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.ptmd:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.aero.flight-efficiency{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.flight-efficiency:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.aero.cmx{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.aero.cmx:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.building{font-family:'Honeywell-Buildings' !important}html:not(.honeywell-dark-theme) .h-icon.building.add:before{content:"\E96D"}html:not(.honeywell-dark-theme) .h-icon.building.badge-alert:before{content:"\E96E"}html:not(.honeywell-dark-theme) .h-icon.building.badge-help:before{content:"\E96F"}html:not(.honeywell-dark-theme) .h-icon.building.badge-info:before{content:"\E970"}html:not(.honeywell-dark-theme) .h-icon.building.badge-stop:before{content:"\E971"}html:not(.honeywell-dark-theme) .h-icon.building.badge-warning:before{content:"\E972"}html:not(.honeywell-dark-theme) .h-icon.building.battery-empty:before{content:"\E973"}html:not(.honeywell-dark-theme) .h-icon.building.battery-full:before{content:"\E974"}html:not(.honeywell-dark-theme) .h-icon.building.battery-low:before{content:"\E975"}html:not(.honeywell-dark-theme) .h-icon.building.battery-mid:before{content:"\E976"}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path1:before{content:"\E977"}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path2:before{content:"\EA1B";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path3:before{content:"\EA1C";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path4:before{content:"\EA1D";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path5:before{content:"\EA1E";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path6:before{content:"\EA1F";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path7:before{content:"\EA20";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path8:before{content:"\EA21";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path9:before{content:"\EA22";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path10:before{content:"\EA23";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path11:before{content:"\EA24";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path12:before{content:"\EA25";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.calendar .path13:before{content:"\EA26";margin-left:-1em}html:not(.honeywell-dark-theme) .h-icon.building.camera:before{content:"\E978"}html:not(.honeywell-dark-theme) .h-icon.building.caret-down:before{content:"\E979"}html:not(.honeywell-dark-theme) .h-icon.building.caret-left:before{content:"\E97A"}html:not(.honeywell-dark-theme) .h-icon.building.caret-right:before{content:"\E97B"}html:not(.honeywell-dark-theme) .h-icon.building.caret-up:before{content:"\E97C"}html:not(.honeywell-dark-theme) .h-icon.building.check:before{content:"\E97D"}html:not(.honeywell-dark-theme) .h-icon.building.close-circled:before{content:"\E97E"}html:not(.honeywell-dark-theme) .h-icon.building.close:before{content:"\E97F"}html:not(.honeywell-dark-theme) .h-icon.building.cloud-download:before{content:"\E980"}html:not(.honeywell-dark-theme) .h-icon.building.cloud-upload:before{content:"\E981"}html:not(.honeywell-dark-theme) .h-icon.building.collapse:before{content:"\E982"}html:not(.honeywell-dark-theme) .h-icon.building.credit-card:before{content:"\E983"}html:not(.honeywell-dark-theme) .h-icon.building.dashboard:before{content:"\E984"}html:not(.honeywell-dark-theme) .h-icon.building.delete:before{content:"\E985"}html:not(.honeywell-dark-theme) .h-icon.building.doc-add:before{content:"\E986"}html:not(.honeywell-dark-theme) .h-icon.building.doc-annotate:before{content:"\E987"}html:not(.honeywell-dark-theme) .h-icon.building.doc-certificate:before{content:"\E988"}html:not(.honeywell-dark-theme) .h-icon.building.doc-pdf:before{content:"\E989"}html:not(.honeywell-dark-theme) .h-icon.building.doc-photo:before{content:"\E98A"}html:not(.honeywell-dark-theme) .h-icon.building.doc-proc:before{content:"\E98B"}html:not(.honeywell-dark-theme) .h-icon.building.doc-search:before{content:"\E98C"}html:not(.honeywell-dark-theme) .h-icon.building.doc-test:before{content:"\E98D"}html:not(.honeywell-dark-theme) .h-icon.building.document:before{content:"\E98E"}html:not(.honeywell-dark-theme) .h-icon.building.edit-circled:before{content:"\E98F"}html:not(.honeywell-dark-theme) .h-icon.building.edit:before{content:"\E990"}html:not(.honeywell-dark-theme) .h-icon.building.email:before{content:"\E991"}html:not(.honeywell-dark-theme) .h-icon.building.expand:before{content:"\E992"}html:not(.honeywell-dark-theme) .h-icon.building.export:before{content:"\E993"}html:not(.honeywell-dark-theme) .h-icon.building.file-download:before{content:"\E994"}html:not(.honeywell-dark-theme) .h-icon.building.file-upload:before{content:"\E995"}html:not(.honeywell-dark-theme) .h-icon.building.filter:before{content:"\E996"}html:not(.honeywell-dark-theme) .h-icon.building.flag-icon:before{content:"\E997"}html:not(.honeywell-dark-theme) .h-icon.building.folder-music:before{content:"\E998"}html:not(.honeywell-dark-theme) .h-icon.building.folder:before{content:"\E999"}html:not(.honeywell-dark-theme) .h-icon.building.fullscreen-enter:before{content:"\E99A"}html:not(.honeywell-dark-theme) .h-icon.building.fullscreen-exit:before{content:"\E99B"}html:not(.honeywell-dark-theme) .h-icon.building.globe:before{content:"\E99C"}html:not(.honeywell-dark-theme) .h-icon.building.graph:before{content:"\E99D"}html:not(.honeywell-dark-theme) .h-icon.building.home:before{content:"\E99E"}html:not(.honeywell-dark-theme) .h-icon.building.location:before{content:"\E99F"}html:not(.honeywell-dark-theme) .h-icon.building.locked:before{content:"\E9A0"}html:not(.honeywell-dark-theme) .h-icon.building.map:before{content:"\E9A1"}html:not(.honeywell-dark-theme) .h-icon.building.menu-icon:before{content:"\E9A2"}html:not(.honeywell-dark-theme) .h-icon.building.message:before{content:"\E9A3"}html:not(.honeywell-dark-theme) .h-icon.building.messages:before{content:"\E9A4"}html:not(.honeywell-dark-theme) .h-icon.building.modify:before{content:"\E9A5"}html:not(.honeywell-dark-theme) .h-icon.building.multiple-devices:before{content:"\E9A6"}html:not(.honeywell-dark-theme) .h-icon.building.music:before{content:"\E9A7"}html:not(.honeywell-dark-theme) .h-icon.building.notification:before{content:"\E9A8"}html:not(.honeywell-dark-theme) .h-icon.building.paperclip:before{content:"\E9A9"}html:not(.honeywell-dark-theme) .h-icon.building.pc:before{content:"\E9AA"}html:not(.honeywell-dark-theme) .h-icon.building.phone:before{content:"\E9AB"}html:not(.honeywell-dark-theme) .h-icon.building.playback-pause:before{content:"\E9AC"}html:not(.honeywell-dark-theme) .h-icon.building.playback-play:before{content:"\E9AD"}html:not(.honeywell-dark-theme) .h-icon.building.playback-rec:before{content:"\E9AE"}html:not(.honeywell-dark-theme) .h-icon.building.playback-stop:before{content:"\E9AF"}html:not(.honeywell-dark-theme) .h-icon.building.print:before{content:"\E9B0"}html:not(.honeywell-dark-theme) .h-icon.building.redo:before{content:"\E9B1"}html:not(.honeywell-dark-theme) .h-icon.building.refresh:before{content:"\E9B2"}html:not(.honeywell-dark-theme) .h-icon.building.save:before{content:"\E9B3"}html:not(.honeywell-dark-theme) .h-icon.building.search:before{content:"\E9B4"}html:not(.honeywell-dark-theme) .h-icon.building.settings:before{content:"\E9B5"}html:not(.honeywell-dark-theme) .h-icon.building.share-2:before{content:"\E9B6"}html:not(.honeywell-dark-theme) .h-icon.building.share:before{content:"\E9B7"}html:not(.honeywell-dark-theme) .h-icon.building.shopping-bag:before{content:"\E9B8"}html:not(.honeywell-dark-theme) .h-icon.building.slider-controls-minus:before{content:"\E9B9"}html:not(.honeywell-dark-theme) .h-icon.building.slider-controls-plus:before{content:"\E9BA"}html:not(.honeywell-dark-theme) .h-icon.building.smartphone:before{content:"\E9BB"}html:not(.honeywell-dark-theme) .h-icon.building.social-fb:before{content:"\E9BC"}html:not(.honeywell-dark-theme) .h-icon.building.social-ig:before{content:"\E9BD"}html:not(.honeywell-dark-theme) .h-icon.building.social-tw:before{content:"\E9BE"}html:not(.honeywell-dark-theme) .h-icon.building.social-yt:before{content:"\E9BF"}html:not(.honeywell-dark-theme) .h-icon.building.speaker-off:before{content:"\E9C0"}html:not(.honeywell-dark-theme) .h-icon.building.speaker-on:before{content:"\E9C1"}html:not(.honeywell-dark-theme) .h-icon.building.star:before{content:"\E9C2"}html:not(.honeywell-dark-theme) .h-icon.building.tag:before{content:"\E9C3"}html:not(.honeywell-dark-theme) .h-icon.building.timeline:before{content:"\E9C4"}html:not(.honeywell-dark-theme) .h-icon.building.tools:before{content:"\E9C5"}html:not(.honeywell-dark-theme) .h-icon.building.undo:before{content:"\E9C6"}html:not(.honeywell-dark-theme) .h-icon.building.unlocked:before{content:"\E9C7"}html:not(.honeywell-dark-theme) .h-icon.building.user-filled:before{content:"\E9C8"}html:not(.honeywell-dark-theme) .h-icon.building.user:before{content:"\E9C9"}html:not(.honeywell-dark-theme) .h-icon.building.voicemessages:before{content:"\E9CA"}html:not(.honeywell-dark-theme) .h-icon.building.wifi:before{content:"\E9CB"}html:not(.honeywell-dark-theme) .h-icon.building.total-footprint{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.total-footprint:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.building.sites{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.sites:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-savings{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-savings:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-cost{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.portfolio-cost:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.building.comfort{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.comfort:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.building.filter-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.filter-alt:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.building.graph-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.graph-alt:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.building.home-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.home-alt:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.building.sites-alt{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.sites-alt:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.building.operations{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.operations:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.building.energy{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.energy:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.building.rounds{font-family:"Honeywell-Addons" !important}html:not(.honeywell-dark-theme) .h-icon.building.rounds:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.weather{font-family:'Honeywell-Weather'}html:not(.honeywell-dark-theme) .h-icon.weather.blowingsnow:before{content:"\E900"}html:not(.honeywell-dark-theme) .h-icon.weather.breezy:before{content:"\E901"}html:not(.honeywell-dark-theme) .h-icon.weather.clear:before{content:"\E902"}html:not(.honeywell-dark-theme) .h-icon.weather.clearnight:before{content:"\E903"}html:not(.honeywell-dark-theme) .h-icon.weather.drizzle:before{content:"\E904"}html:not(.honeywell-dark-theme) .h-icon.weather.fewbrokenclowds:before{content:"\E905"}html:not(.honeywell-dark-theme) .h-icon.weather.fog:before{content:"\E906"}html:not(.honeywell-dark-theme) .h-icon.weather.freezingdrizzle:before{content:"\E907"}html:not(.honeywell-dark-theme) .h-icon.weather.freezingrain:before{content:"\E908"}html:not(.honeywell-dark-theme) .h-icon.weather.funnelcloud:before{content:"\E909"}html:not(.honeywell-dark-theme) .h-icon.weather.hail:before{content:"\E90A"}html:not(.honeywell-dark-theme) .h-icon.weather.haze:before{content:"\E90B"}html:not(.honeywell-dark-theme) .h-icon.weather.heavyfog:before{content:"\E90C"}html:not(.honeywell-dark-theme) .h-icon.weather.heavyrain:before{content:"\E90D"}html:not(.honeywell-dark-theme) .h-icon.weather.heavysnow:before{content:"\E90E"}html:not(.honeywell-dark-theme) .h-icon.weather.hot:before{content:"\E90F"}html:not(.honeywell-dark-theme) .h-icon.weather.hurricane:before{content:"\E910"}html:not(.honeywell-dark-theme) .h-icon.weather.ice:before{content:"\E911"}html:not(.honeywell-dark-theme) .h-icon.weather.icepellets:before{content:"\E912"}html:not(.honeywell-dark-theme) .h-icon.weather.lightfog:before{content:"\E913"}html:not(.honeywell-dark-theme) .h-icon.weather.lightrain:before{content:"\E914"}html:not(.honeywell-dark-theme) .h-icon.weather.lightsnow:before{content:"\E915"}html:not(.honeywell-dark-theme) .h-icon.weather.mixrainfall:before{content:"\E916"}html:not(.honeywell-dark-theme) .h-icon.weather.moderatefog:before{content:"\E917"}html:not(.honeywell-dark-theme) .h-icon.weather.moderaterain:before{content:"\E918"}html:not(.honeywell-dark-theme) .h-icon.weather.moderatesnow:before{content:"\E919"}html:not(.honeywell-dark-theme) .h-icon.weather.na:before{content:"\E91A"}html:not(.honeywell-dark-theme) .h-icon.weather.noreport:before{content:"\E91B"}html:not(.honeywell-dark-theme) .h-icon.weather.overcast:before{content:"\E91C"}html:not(.honeywell-dark-theme) .h-icon.weather.rain:before{content:"\E91D"}html:not(.honeywell-dark-theme) .h-icon.weather.rainshowers:before{content:"\E91E"}html:not(.honeywell-dark-theme) .h-icon.weather.sandustorm:before{content:"\E91F"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredclouds:before{content:"\E920"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredshowers:before{content:"\E921"}html:not(.honeywell-dark-theme) .h-icon.weather.scatteredthunderstorm:before{content:"\E922"}html:not(.honeywell-dark-theme) .h-icon.weather.smoke:before{content:"\E923"}html:not(.honeywell-dark-theme) .h-icon.weather.snowshowers:before{content:"\E924"}html:not(.honeywell-dark-theme) .h-icon.weather.sunrise:before{content:"\E925"}html:not(.honeywell-dark-theme) .h-icon.weather.sunset:before{content:"\E926"}html:not(.honeywell-dark-theme) .h-icon.weather.thunderstorm:before{content:"\E927"}html:not(.honeywell-dark-theme) .h-icon.weather.tropicalstorm:before{content:"\E928"}html:not(.honeywell-dark-theme) .h-icon.weather.water:before{content:"\E929"}@font-face{html:not(.honeywell-dark-theme){font-family:'Icons';src:url(/static/media/icons.7bfcab6d.eot);src:url(/static/media/icons.7bfcab6d.eot) format("embedded-opentype"),url(/static/media/icons.2adefcbc.woff2) format("woff2"),url(/static/media/icons.ba0c59de.woff) format("woff"),url(/static/media/icons.aa58f33f.ttf) format("truetype"),url(/static/media/icons.ad615792.svg) format("svg");font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-decoration:inherit;text-transform:none}}html:not(.honeywell-dark-theme) i.icon{font-family:'Honeywell-Global', 'Icons';display:inline-block;opacity:1;font-style:normal;font-weight:normal;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;backface-visibility:hidden}html:not(.honeywell-dark-theme) i.icon:before{background:none !important}html:not(.honeywell-dark-theme) i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}html:not(.honeywell-dark-theme) i.icon.hover{opacity:1 !important}html:not(.honeywell-dark-theme) i.icon.active{opacity:1 !important}html:not(.honeywell-dark-theme) i.emphasized.icon{opacity:1 !important}html:not(.honeywell-dark-theme) i.disabled.icon{opacity:0.45 !important}html:not(.honeywell-dark-theme) i.fitted.icon{width:auto;margin:0em}html:not(.honeywell-dark-theme) i.link.icon,html:not(.honeywell-dark-theme) i.link.icons{cursor:pointer;opacity:0.8;transition:opacity 0.1s ease}html:not(.honeywell-dark-theme) i.link.icon:hover,html:not(.honeywell-dark-theme) i.link.icons:hover{opacity:1 !important}html:not(.honeywell-dark-theme) i.circular.icon{border-radius:500em !important;line-height:1 !important;padding:0.5em 0.5em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset;width:2em !important;height:2em !important}html:not(.honeywell-dark-theme) i.circular.inverted.icon{border:none;box-shadow:none}html:not(.honeywell-dark-theme) i.flipped.icon,html:not(.honeywell-dark-theme) i.horizontally.flipped.icon{transform:scale(-1, 1)}html:not(.honeywell-dark-theme) i.vertically.flipped.icon{transform:scale(1, -1)}html:not(.honeywell-dark-theme) i.rotated.icon,html:not(.honeywell-dark-theme) i.right.rotated.icon,html:not(.honeywell-dark-theme) i.clockwise.rotated.icon{transform:rotate(90deg)}html:not(.honeywell-dark-theme) i.left.rotated.icon,html:not(.honeywell-dark-theme) i.counterclockwise.rotated.icon{transform:rotate(-90deg)}html:not(.honeywell-dark-theme) i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:0.5em 0.41em !important;box-shadow:0em 0em 0em 0.1em rgba(0,0,0,0.1) inset}html:not(.honeywell-dark-theme) i.bordered.inverted.icon{border:none;box-shadow:none}html:not(.honeywell-dark-theme) i.inverted.bordered.icon,html:not(.honeywell-dark-theme) i.inverted.circular.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.inverted.icon{color:#FFFFFF}html:not(.honeywell-dark-theme) i.red.icon{color:#DB2828 !important}html:not(.honeywell-dark-theme) i.inverted.red.icon{color:#FF695E !important}html:not(.honeywell-dark-theme) i.inverted.bordered.red.icon,html:not(.honeywell-dark-theme) i.inverted.circular.red.icon{background-color:#DB2828 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.orange.icon{color:#F2711C !important}html:not(.honeywell-dark-theme) i.inverted.orange.icon{color:#FF851B !important}html:not(.honeywell-dark-theme) i.inverted.bordered.orange.icon,html:not(.honeywell-dark-theme) i.inverted.circular.orange.icon{background-color:#F2711C !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.yellow.icon{color:#FBBD08 !important}html:not(.honeywell-dark-theme) i.inverted.yellow.icon{color:#FFE21F !important}html:not(.honeywell-dark-theme) i.inverted.bordered.yellow.icon,html:not(.honeywell-dark-theme) i.inverted.circular.yellow.icon{background-color:#FBBD08 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.olive.icon{color:#B5CC18 !important}html:not(.honeywell-dark-theme) i.inverted.olive.icon{color:#D9E778 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.olive.icon,html:not(.honeywell-dark-theme) i.inverted.circular.olive.icon{background-color:#B5CC18 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.green.icon{color:#21BA45 !important}html:not(.honeywell-dark-theme) i.inverted.green.icon{color:#2ECC40 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.green.icon,html:not(.honeywell-dark-theme) i.inverted.circular.green.icon{background-color:#21BA45 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.teal.icon{color:#00B5AD !important}html:not(.honeywell-dark-theme) i.inverted.teal.icon{color:#6DFFFF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.teal.icon,html:not(.honeywell-dark-theme) i.inverted.circular.teal.icon{background-color:#00B5AD !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.blue.icon{color:#2185D0 !important}html:not(.honeywell-dark-theme) i.inverted.blue.icon{color:#54C8FF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.blue.icon,html:not(.honeywell-dark-theme) i.inverted.circular.blue.icon{background-color:#2185D0 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.violet.icon{color:#6435C9 !important}html:not(.honeywell-dark-theme) i.inverted.violet.icon{color:#A291FB !important}html:not(.honeywell-dark-theme) i.inverted.bordered.violet.icon,html:not(.honeywell-dark-theme) i.inverted.circular.violet.icon{background-color:#6435C9 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.purple.icon{color:#A333C8 !important}html:not(.honeywell-dark-theme) i.inverted.purple.icon{color:#DC73FF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.purple.icon,html:not(.honeywell-dark-theme) i.inverted.circular.purple.icon{background-color:#A333C8 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.pink.icon{color:#E03997 !important}html:not(.honeywell-dark-theme) i.inverted.pink.icon{color:#FF8EDF !important}html:not(.honeywell-dark-theme) i.inverted.bordered.pink.icon,html:not(.honeywell-dark-theme) i.inverted.circular.pink.icon{background-color:#E03997 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.brown.icon{color:#A5673F !important}html:not(.honeywell-dark-theme) i.inverted.brown.icon{color:#D67C1C !important}html:not(.honeywell-dark-theme) i.inverted.bordered.brown.icon,html:not(.honeywell-dark-theme) i.inverted.circular.brown.icon{background-color:#A5673F !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.grey.icon{color:#767676 !important}html:not(.honeywell-dark-theme) i.inverted.grey.icon{color:#DCDDDE !important}html:not(.honeywell-dark-theme) i.inverted.bordered.grey.icon,html:not(.honeywell-dark-theme) i.inverted.circular.grey.icon{background-color:#767676 !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.black.icon{color:#1B1C1D !important}html:not(.honeywell-dark-theme) i.inverted.black.icon{color:#545454 !important}html:not(.honeywell-dark-theme) i.inverted.bordered.black.icon,html:not(.honeywell-dark-theme) i.inverted.circular.black.icon{background-color:#1B1C1D !important;color:#FFFFFF !important}html:not(.honeywell-dark-theme) i.mini.icon,html:not(.honeywell-dark-theme) i.mini.icons{line-height:1;font-size:0.4em}html:not(.honeywell-dark-theme) i.tiny.icon,html:not(.honeywell-dark-theme) i.tiny.icons{line-height:1;font-size:0.5em}html:not(.honeywell-dark-theme) i.small.icon,html:not(.honeywell-dark-theme) i.small.icons{line-height:1;font-size:0.75em}html:not(.honeywell-dark-theme) i.icon,html:not(.honeywell-dark-theme) i.icons{font-size:1em}html:not(.honeywell-dark-theme) i.large.icon,html:not(.honeywell-dark-theme) i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}html:not(.honeywell-dark-theme) i.big.icon,html:not(.honeywell-dark-theme) i.big.icons{line-height:1;vertical-align:middle;font-size:2em}html:not(.honeywell-dark-theme) i.huge.icon,html:not(.honeywell-dark-theme) i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}html:not(.honeywell-dark-theme) i.massive.icon,html:not(.honeywell-dark-theme) i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}html:not(.honeywell-dark-theme) i.icons{display:inline-block;position:relative;line-height:1}html:not(.honeywell-dark-theme) i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0em;margin:0}html:not(.honeywell-dark-theme) i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:0.25rem}html:not(.honeywell-dark-theme) i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:0.45em;text-shadow:-1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF}html:not(.honeywell-dark-theme) i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}html:not(.honeywell-dark-theme) i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}html:not(.honeywell-dark-theme) i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}html:not(.honeywell-dark-theme) i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}html:not(.honeywell-dark-theme) i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D}html:not(.honeywell-dark-theme) i.icon.search:before{content:"\F002"}html:not(.honeywell-dark-theme) i.icon.mail.outline:before{content:"\F003"}html:not(.honeywell-dark-theme) i.icon.signal:before{content:"\F012"}html:not(.honeywell-dark-theme) i.icon.setting:before{content:"\F013"}html:not(.honeywell-dark-theme) i.icon.home:before{content:"\F015"}html:not(.honeywell-dark-theme) i.icon.inbox:before{content:"\F01C"}html:not(.honeywell-dark-theme) i.icon.browser:before{content:"\F022"}html:not(.honeywell-dark-theme) i.icon.tag:before{content:"\F02B"}html:not(.honeywell-dark-theme) i.icon.tags:before{content:"\F02C"}html:not(.honeywell-dark-theme) i.icon.image:before{content:"\F03E"}html:not(.honeywell-dark-theme) i.icon.calendar:before{content:"\F073"}html:not(.honeywell-dark-theme) i.icon.comment:before{content:"\F075"}html:not(.honeywell-dark-theme) i.icon.shop:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.comments:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.external:before{content:"\F08E"}html:not(.honeywell-dark-theme) i.icon.privacy:before{content:"\F084"}html:not(.honeywell-dark-theme) i.icon.settings:before{content:"\F085"}html:not(.honeywell-dark-theme) i.icon.comments:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.external:before{content:"\F08E"}html:not(.honeywell-dark-theme) i.icon.trophy:before{content:"\F091"}html:not(.honeywell-dark-theme) i.icon.payment:before{content:"\F09D"}html:not(.honeywell-dark-theme) i.icon.feed:before{content:"\F09E"}html:not(.honeywell-dark-theme) i.icon.alarm.outline:before{content:"\F0A2"}html:not(.honeywell-dark-theme) i.icon.tasks:before{content:"\F0AE"}html:not(.honeywell-dark-theme) i.icon.cloud:before{content:"\F0C2"}html:not(.honeywell-dark-theme) i.icon.lab:before{content:"\F0C3"}html:not(.honeywell-dark-theme) i.icon.mail:before{content:"\F0E0"}html:not(.honeywell-dark-theme) i.icon.dashboard:before{content:"\F0E4"}html:not(.honeywell-dark-theme) i.icon.comment.outline:before{content:"\F0E5"}html:not(.honeywell-dark-theme) i.icon.comments.outline:before{content:"\F0E6"}html:not(.honeywell-dark-theme) i.icon.sitemap:before{content:"\F0E8"}html:not(.honeywell-dark-theme) i.icon.idea:before{content:"\F0EB"}html:not(.honeywell-dark-theme) i.icon.alarm:before{content:"\F0F3"}html:not(.honeywell-dark-theme) i.icon.terminal:before{content:"\F120"}html:not(.honeywell-dark-theme) i.icon.code:before{content:"\F121"}html:not(.honeywell-dark-theme) i.icon.protect:before{content:"\F132"}html:not(.honeywell-dark-theme) i.icon.calendar.outline:before{content:"\F133"}html:not(.honeywell-dark-theme) i.icon.ticket:before{content:"\F145"}html:not(.honeywell-dark-theme) i.icon.external.square:before{content:"\F14C"}html:not(.honeywell-dark-theme) i.icon.bug:before{content:"\F188"}html:not(.honeywell-dark-theme) i.icon.mail.square:before{content:"\F199"}html:not(.honeywell-dark-theme) i.icon.history:before{content:"\F1DA"}html:not(.honeywell-dark-theme) i.icon.options:before{content:"\F1DE"}html:not(.honeywell-dark-theme) i.icon.text.telephone:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.find:before{content:"\F1E5"}html:not(.honeywell-dark-theme) i.icon.alarm.mute:before{content:"\F1F6"}html:not(.honeywell-dark-theme) i.icon.alarm.mute.outline:before{content:"\F1F7"}html:not(.honeywell-dark-theme) i.icon.copyright:before{content:"\F1F9"}html:not(.honeywell-dark-theme) i.icon.at:before{content:"\F1FA"}html:not(.honeywell-dark-theme) i.icon.eyedropper:before{content:"\F1FB"}html:not(.honeywell-dark-theme) i.icon.paint.brush:before{content:"\F1FC"}html:not(.honeywell-dark-theme) i.icon.heartbeat:before{content:"\F21E"}html:not(.honeywell-dark-theme) i.icon.mouse.pointer:before{content:"\F245"}html:not(.honeywell-dark-theme) i.icon.hourglass.empty:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.start:before{content:"\F251"}html:not(.honeywell-dark-theme) i.icon.hourglass.half:before{content:"\F252"}html:not(.honeywell-dark-theme) i.icon.hourglass.end:before{content:"\F253"}html:not(.honeywell-dark-theme) i.icon.hourglass.full:before{content:"\F254"}html:not(.honeywell-dark-theme) i.icon.hand.pointer:before{content:"\F25A"}html:not(.honeywell-dark-theme) i.icon.trademark:before{content:"\F25C"}html:not(.honeywell-dark-theme) i.icon.registered:before{content:"\F25D"}html:not(.honeywell-dark-theme) i.icon.creative.commons:before{content:"\F25E"}html:not(.honeywell-dark-theme) i.icon.add.to.calendar:before{content:"\F271"}html:not(.honeywell-dark-theme) i.icon.remove.from.calendar:before{content:"\F272"}html:not(.honeywell-dark-theme) i.icon.delete.calendar:before{content:"\F273"}html:not(.honeywell-dark-theme) i.icon.checked.calendar:before{content:"\F274"}html:not(.honeywell-dark-theme) i.icon.industry:before{content:"\F275"}html:not(.honeywell-dark-theme) i.icon.shopping.bag:before{content:"\F290"}html:not(.honeywell-dark-theme) i.icon.shopping.basket:before{content:"\F291"}html:not(.honeywell-dark-theme) i.icon.hashtag:before{content:"\F292"}html:not(.honeywell-dark-theme) i.icon.percent:before{content:"\F295"}html:not(.honeywell-dark-theme) i.icon.handshake:before{content:"\F2B5"}html:not(.honeywell-dark-theme) i.icon.open.envelope:before{content:"\F2B6"}html:not(.honeywell-dark-theme) i.icon.open.envelope.outline:before{content:"\F2B7"}html:not(.honeywell-dark-theme) i.icon.address.book:before{content:"\F2B9"}html:not(.honeywell-dark-theme) i.icon.address.book.outline:before{content:"\F2BA"}html:not(.honeywell-dark-theme) i.icon.address.card:before{content:"\F2BB"}html:not(.honeywell-dark-theme) i.icon.address.card.outline:before{content:"\F2BC"}html:not(.honeywell-dark-theme) i.icon.id.badge:before{content:"\F2C1"}html:not(.honeywell-dark-theme) i.icon.id.card:before{content:"\F2C2"}html:not(.honeywell-dark-theme) i.icon.id.card.outline:before{content:"\F2C3"}html:not(.honeywell-dark-theme) i.icon.podcast:before{content:"\F2CE"}html:not(.honeywell-dark-theme) i.icon.window.maximize:before{content:"\F2D0"}html:not(.honeywell-dark-theme) i.icon.window.minimize:before{content:"\F2D1"}html:not(.honeywell-dark-theme) i.icon.window.restore:before{content:"\F2D2"}html:not(.honeywell-dark-theme) i.icon.window.close:before{content:"\F2D3"}html:not(.honeywell-dark-theme) i.icon.window.close.outline:before{content:"\F2D4"}html:not(.honeywell-dark-theme) i.icon.wait:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.download:before{content:"\F019"}html:not(.honeywell-dark-theme) i.icon.repeat:before{content:"\F01E"}html:not(.honeywell-dark-theme) i.icon.refresh:before{content:"\F021"}html:not(.honeywell-dark-theme) i.icon.lock:before{content:"\F023"}html:not(.honeywell-dark-theme) i.icon.bookmark:before{content:"\F02E"}html:not(.honeywell-dark-theme) i.icon.print:before{content:"\F02F"}html:not(.honeywell-dark-theme) i.icon.write:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.adjust:before{content:"\F042"}html:not(.honeywell-dark-theme) i.icon.theme:before{content:"\F043"}html:not(.honeywell-dark-theme) i.icon.edit:before{content:"\F044"}html:not(.honeywell-dark-theme) i.icon.external.share:before{content:"\F045"}html:not(.honeywell-dark-theme) i.icon.ban:before{content:"\F05E"}html:not(.honeywell-dark-theme) i.icon.mail.forward:before{content:"\F064"}html:not(.honeywell-dark-theme) i.icon.share:before{content:"\F064"}html:not(.honeywell-dark-theme) i.icon.expand:before{content:"\F065"}html:not(.honeywell-dark-theme) i.icon.compress:before{content:"\F066"}html:not(.honeywell-dark-theme) i.icon.unhide:before{content:"\F06E"}html:not(.honeywell-dark-theme) i.icon.hide:before{content:"\F070"}html:not(.honeywell-dark-theme) i.icon.random:before{content:"\F074"}html:not(.honeywell-dark-theme) i.icon.retweet:before{content:"\F079"}html:not(.honeywell-dark-theme) i.icon.sign.out:before{content:"\F08B"}html:not(.honeywell-dark-theme) i.icon.pin:before{content:"\F08D"}html:not(.honeywell-dark-theme) i.icon.sign.in:before{content:"\F090"}html:not(.honeywell-dark-theme) i.icon.upload:before{content:"\F093"}html:not(.honeywell-dark-theme) i.icon.call:before{content:"\F095"}html:not(.honeywell-dark-theme) i.icon.remove.bookmark:before{content:"\F097"}html:not(.honeywell-dark-theme) i.icon.call.square:before{content:"\F098"}html:not(.honeywell-dark-theme) i.icon.unlock:before{content:"\F09C"}html:not(.honeywell-dark-theme) i.icon.configure:before{content:"\F0AD"}html:not(.honeywell-dark-theme) i.icon.filter:before{content:"\F0B0"}html:not(.honeywell-dark-theme) i.icon.wizard:before{content:"\F0D0"}html:not(.honeywell-dark-theme) i.icon.undo:before{content:"\F0E2"}html:not(.honeywell-dark-theme) i.icon.exchange:before{content:"\F0EC"}html:not(.honeywell-dark-theme) i.icon.cloud.download:before{content:"\F0ED"}html:not(.honeywell-dark-theme) i.icon.cloud.upload:before{content:"\F0EE"}html:not(.honeywell-dark-theme) i.icon.reply:before{content:"\F112"}html:not(.honeywell-dark-theme) i.icon.reply.all:before{content:"\F122"}html:not(.honeywell-dark-theme) i.icon.erase:before{content:"\F12D"}html:not(.honeywell-dark-theme) i.icon.unlock.alternate:before{content:"\F13E"}html:not(.honeywell-dark-theme) i.icon.write.square:before{content:"\F14B"}html:not(.honeywell-dark-theme) i.icon.share.square:before{content:"\F14D"}html:not(.honeywell-dark-theme) i.icon.archive:before{content:"\F187"}html:not(.honeywell-dark-theme) i.icon.translate:before{content:"\F1AB"}html:not(.honeywell-dark-theme) i.icon.recycle:before{content:"\F1B8"}html:not(.honeywell-dark-theme) i.icon.send:before{content:"\F1D8"}html:not(.honeywell-dark-theme) i.icon.send.outline:before{content:"\F1D9"}html:not(.honeywell-dark-theme) i.icon.share.alternate:before{content:"\F1E0"}html:not(.honeywell-dark-theme) i.icon.share.alternate.square:before{content:"\F1E1"}html:not(.honeywell-dark-theme) i.icon.add.to.cart:before{content:"\F217"}html:not(.honeywell-dark-theme) i.icon.in.cart:before{content:"\F218"}html:not(.honeywell-dark-theme) i.icon.add.user:before{content:"\F234"}html:not(.honeywell-dark-theme) i.icon.remove.user:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.object.group:before{content:"\F247"}html:not(.honeywell-dark-theme) i.icon.object.ungroup:before{content:"\F248"}html:not(.honeywell-dark-theme) i.icon.clone:before{content:"\F24D"}html:not(.honeywell-dark-theme) i.icon.talk:before{content:"\F27A"}html:not(.honeywell-dark-theme) i.icon.talk.outline:before{content:"\F27B"}html:not(.honeywell-dark-theme) i.icon.help.circle:before{content:"\F059"}html:not(.honeywell-dark-theme) i.icon.info.circle:before{content:"\F05A"}html:not(.honeywell-dark-theme) i.icon.warning.circle:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.warning.sign:before{content:"\F071"}html:not(.honeywell-dark-theme) i.icon.announcement:before{content:"\F0A1"}html:not(.honeywell-dark-theme) i.icon.help:before{content:"\F128"}html:not(.honeywell-dark-theme) i.icon.info:before{content:"\F129"}html:not(.honeywell-dark-theme) i.icon.warning:before{content:"\F12A"}html:not(.honeywell-dark-theme) i.icon.birthday:before{content:"\F1FD"}html:not(.honeywell-dark-theme) i.icon.help.circle.outline:before{content:"\F29C"}html:not(.honeywell-dark-theme) i.icon.user:before{content:"\F007"}html:not(.honeywell-dark-theme) i.icon.users:before{content:"\F0C0"}html:not(.honeywell-dark-theme) i.icon.doctor:before{content:"\F0F0"}html:not(.honeywell-dark-theme) i.icon.handicap:before{content:"\F193"}html:not(.honeywell-dark-theme) i.icon.student:before{content:"\F19D"}html:not(.honeywell-dark-theme) i.icon.child:before{content:"\F1AE"}html:not(.honeywell-dark-theme) i.icon.spy:before{content:"\F21B"}html:not(.honeywell-dark-theme) i.icon.user.circle:before{content:"\F2BD"}html:not(.honeywell-dark-theme) i.icon.user.circle.outline:before{content:"\F2BE"}html:not(.honeywell-dark-theme) i.icon.user.outline:before{content:"\F2C0"}html:not(.honeywell-dark-theme) i.icon.female:before{content:"\F182"}html:not(.honeywell-dark-theme) i.icon.male:before{content:"\F183"}html:not(.honeywell-dark-theme) i.icon.woman:before{content:"\F221"}html:not(.honeywell-dark-theme) i.icon.man:before{content:"\F222"}html:not(.honeywell-dark-theme) i.icon.non.binary.transgender:before{content:"\F223"}html:not(.honeywell-dark-theme) i.icon.intergender:before{content:"\F224"}html:not(.honeywell-dark-theme) i.icon.transgender:before{content:"\F225"}html:not(.honeywell-dark-theme) i.icon.lesbian:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.gay:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.heterosexual:before{content:"\F228"}html:not(.honeywell-dark-theme) i.icon.other.gender:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.other.gender.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.other.gender.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.neuter:before{content:"\F22C"}html:not(.honeywell-dark-theme) i.icon.genderless:before{content:"\F22D"}html:not(.honeywell-dark-theme) i.icon.universal.access:before{content:"\F29A"}html:not(.honeywell-dark-theme) i.icon.wheelchair:before{content:"\F29B"}html:not(.honeywell-dark-theme) i.icon.blind:before{content:"\F29D"}html:not(.honeywell-dark-theme) i.icon.audio.description:before{content:"\F29E"}html:not(.honeywell-dark-theme) i.icon.volume.control.phone:before{content:"\F2A0"}html:not(.honeywell-dark-theme) i.icon.braille:before{content:"\F2A1"}html:not(.honeywell-dark-theme) i.icon.asl:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.assistive.listening.systems:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.deafness:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.sign.language:before{content:"\F2A7"}html:not(.honeywell-dark-theme) i.icon.low.vision:before{content:"\F2A8"}html:not(.honeywell-dark-theme) i.icon.block.layout:before{content:"\F009"}html:not(.honeywell-dark-theme) i.icon.grid.layout:before{content:"\F00A"}html:not(.honeywell-dark-theme) i.icon.list.layout:before{content:"\F00B"}html:not(.honeywell-dark-theme) i.icon.zoom:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.zoom.out:before{content:"\F010"}html:not(.honeywell-dark-theme) i.icon.resize.vertical:before{content:"\F07D"}html:not(.honeywell-dark-theme) i.icon.resize.horizontal:before{content:"\F07E"}html:not(.honeywell-dark-theme) i.icon.maximize:before{content:"\F0B2"}html:not(.honeywell-dark-theme) i.icon.crop:before{content:"\F125"}html:not(.honeywell-dark-theme) i.icon.cocktail:before{content:"\F000"}html:not(.honeywell-dark-theme) i.icon.road:before{content:"\F018"}html:not(.honeywell-dark-theme) i.icon.flag:before{content:"\F024"}html:not(.honeywell-dark-theme) i.icon.book:before{content:"\F02D"}html:not(.honeywell-dark-theme) i.icon.gift:before{content:"\F06B"}html:not(.honeywell-dark-theme) i.icon.leaf:before{content:"\F06C"}html:not(.honeywell-dark-theme) i.icon.fire:before{content:"\F06D"}html:not(.honeywell-dark-theme) i.icon.plane:before{content:"\F072"}html:not(.honeywell-dark-theme) i.icon.magnet:before{content:"\F076"}html:not(.honeywell-dark-theme) i.icon.lemon:before{content:"\F094"}html:not(.honeywell-dark-theme) i.icon.world:before{content:"\F0AC"}html:not(.honeywell-dark-theme) i.icon.travel:before{content:"\F0B1"}html:not(.honeywell-dark-theme) i.icon.shipping:before{content:"\F0D1"}html:not(.honeywell-dark-theme) i.icon.money:before{content:"\F0D6"}html:not(.honeywell-dark-theme) i.icon.legal:before{content:"\F0E3"}html:not(.honeywell-dark-theme) i.icon.lightning:before{content:"\F0E7"}html:not(.honeywell-dark-theme) i.icon.umbrella:before{content:"\F0E9"}html:not(.honeywell-dark-theme) i.icon.treatment:before{content:"\F0F1"}html:not(.honeywell-dark-theme) i.icon.suitcase:before{content:"\F0F2"}html:not(.honeywell-dark-theme) i.icon.bar:before{content:"\F0FC"}html:not(.honeywell-dark-theme) i.icon.flag.outline:before{content:"\F11D"}html:not(.honeywell-dark-theme) i.icon.flag.checkered:before{content:"\F11E"}html:not(.honeywell-dark-theme) i.icon.puzzle:before{content:"\F12E"}html:not(.honeywell-dark-theme) i.icon.fire.extinguisher:before{content:"\F134"}html:not(.honeywell-dark-theme) i.icon.rocket:before{content:"\F135"}html:not(.honeywell-dark-theme) i.icon.anchor:before{content:"\F13D"}html:not(.honeywell-dark-theme) i.icon.bullseye:before{content:"\F140"}html:not(.honeywell-dark-theme) i.icon.sun:before{content:"\F185"}html:not(.honeywell-dark-theme) i.icon.moon:before{content:"\F186"}html:not(.honeywell-dark-theme) i.icon.fax:before{content:"\F1AC"}html:not(.honeywell-dark-theme) i.icon.life.ring:before{content:"\F1CD"}html:not(.honeywell-dark-theme) i.icon.bomb:before{content:"\F1E2"}html:not(.honeywell-dark-theme) i.icon.soccer:before{content:"\F1E3"}html:not(.honeywell-dark-theme) i.icon.calculator:before{content:"\F1EC"}html:not(.honeywell-dark-theme) i.icon.diamond:before{content:"\F219"}html:not(.honeywell-dark-theme) i.icon.sticky.note:before{content:"\F249"}html:not(.honeywell-dark-theme) i.icon.sticky.note.outline:before{content:"\F24A"}html:not(.honeywell-dark-theme) i.icon.law:before{content:"\F24E"}html:not(.honeywell-dark-theme) i.icon.hand.peace:before{content:"\F25B"}html:not(.honeywell-dark-theme) i.icon.hand.rock:before{content:"\F255"}html:not(.honeywell-dark-theme) i.icon.hand.paper:before{content:"\F256"}html:not(.honeywell-dark-theme) i.icon.hand.scissors:before{content:"\F257"}html:not(.honeywell-dark-theme) i.icon.hand.lizard:before{content:"\F258"}html:not(.honeywell-dark-theme) i.icon.hand.spock:before{content:"\F259"}html:not(.honeywell-dark-theme) i.icon.tv:before{content:"\F26C"}html:not(.honeywell-dark-theme) i.icon.thermometer.full:before{content:"\F2C7"}html:not(.honeywell-dark-theme) i.icon.thermometer.three.quarters:before{content:"\F2C8"}html:not(.honeywell-dark-theme) i.icon.thermometer.half:before{content:"\F2C9"}html:not(.honeywell-dark-theme) i.icon.thermometer.quarter:before{content:"\F2CA"}html:not(.honeywell-dark-theme) i.icon.thermometer.empty:before{content:"\F2CB"}html:not(.honeywell-dark-theme) i.icon.shower:before{content:"\F2CC"}html:not(.honeywell-dark-theme) i.icon.bathtub:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.snowflake:before{content:"\F2DC"}html:not(.honeywell-dark-theme) i.icon.crosshairs:before{content:"\F05B"}html:not(.honeywell-dark-theme) i.icon.asterisk:before{content:"\F069"}html:not(.honeywell-dark-theme) i.icon.square.outline:before{content:"\F096"}html:not(.honeywell-dark-theme) i.icon.certificate:before{content:"\F0A3"}html:not(.honeywell-dark-theme) i.icon.square:before{content:"\F0C8"}html:not(.honeywell-dark-theme) i.icon.quote.left:before{content:"\F10D"}html:not(.honeywell-dark-theme) i.icon.quote.right:before{content:"\F10E"}html:not(.honeywell-dark-theme) i.icon.spinner:before{content:"\F110"}html:not(.honeywell-dark-theme) i.icon.circle:before{content:"\F111"}html:not(.honeywell-dark-theme) i.icon.ellipsis.horizontal:before{content:"\F141"}html:not(.honeywell-dark-theme) i.icon.ellipsis.vertical:before{content:"\F142"}html:not(.honeywell-dark-theme) i.icon.cube:before{content:"\F1B2"}html:not(.honeywell-dark-theme) i.icon.cubes:before{content:"\F1B3"}html:not(.honeywell-dark-theme) i.icon.circle.notched:before{content:"\F1CE"}html:not(.honeywell-dark-theme) i.icon.circle.thin:before{content:"\F1DB"}html:not(.honeywell-dark-theme) i.icon.checkmark:before{content:"\F00C"}html:not(.honeywell-dark-theme) i.icon.remove:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.checkmark.box:before{content:"\F046"}html:not(.honeywell-dark-theme) i.icon.move:before{content:"\F047"}html:not(.honeywell-dark-theme) i.icon.add.circle:before{content:"\F055"}html:not(.honeywell-dark-theme) i.icon.minus.circle:before{content:"\F056"}html:not(.honeywell-dark-theme) i.icon.remove.circle:before{content:"\F057"}html:not(.honeywell-dark-theme) i.icon.check.circle:before{content:"\F058"}html:not(.honeywell-dark-theme) i.icon.remove.circle.outline:before{content:"\F05C"}html:not(.honeywell-dark-theme) i.icon.check.circle.outline:before{content:"\F05D"}html:not(.honeywell-dark-theme) i.icon.plus:before{content:"\F067"}html:not(.honeywell-dark-theme) i.icon.minus:before{content:"\F068"}html:not(.honeywell-dark-theme) i.icon.add.square:before{content:"\F0FE"}html:not(.honeywell-dark-theme) i.icon.radio:before{content:"\F10C"}html:not(.honeywell-dark-theme) i.icon.minus.square:before{content:"\F146"}html:not(.honeywell-dark-theme) i.icon.minus.square.outline:before{content:"\F147"}html:not(.honeywell-dark-theme) i.icon.check.square:before{content:"\F14A"}html:not(.honeywell-dark-theme) i.icon.selected.radio:before{content:"\F192"}html:not(.honeywell-dark-theme) i.icon.plus.square.outline:before{content:"\F196"}html:not(.honeywell-dark-theme) i.icon.toggle.off:before{content:"\F204"}html:not(.honeywell-dark-theme) i.icon.toggle.on:before{content:"\F205"}html:not(.honeywell-dark-theme) i.icon.film:before{content:"\F008"}html:not(.honeywell-dark-theme) i.icon.sound:before{content:"\F025"}html:not(.honeywell-dark-theme) i.icon.photo:before{content:"\F030"}html:not(.honeywell-dark-theme) i.icon.bar.chart:before{content:"\F080"}html:not(.honeywell-dark-theme) i.icon.camera.retro:before{content:"\F083"}html:not(.honeywell-dark-theme) i.icon.newspaper:before{content:"\F1EA"}html:not(.honeywell-dark-theme) i.icon.area.chart:before{content:"\F1FE"}html:not(.honeywell-dark-theme) i.icon.pie.chart:before{content:"\F200"}html:not(.honeywell-dark-theme) i.icon.line.chart:before{content:"\F201"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.down:before{content:"\F01A"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.up:before{content:"\F01B"}html:not(.honeywell-dark-theme) i.icon.chevron.left:before{content:"\F053"}html:not(.honeywell-dark-theme) i.icon.chevron.right:before{content:"\F054"}html:not(.honeywell-dark-theme) i.icon.arrow.left:before{content:"\F060"}html:not(.honeywell-dark-theme) i.icon.arrow.right:before{content:"\F061"}html:not(.honeywell-dark-theme) i.icon.arrow.up:before{content:"\F062"}html:not(.honeywell-dark-theme) i.icon.arrow.down:before{content:"\F063"}html:not(.honeywell-dark-theme) i.icon.chevron.up:before{content:"\E90E"}html:not(.honeywell-dark-theme) i.icon.chevron.down:before{content:"\E90B"}html:not(.honeywell-dark-theme) i.icon.pointing.right:before{content:"\F0A4"}html:not(.honeywell-dark-theme) i.icon.pointing.left:before{content:"\F0A5"}html:not(.honeywell-dark-theme) i.icon.pointing.up:before{content:"\F0A6"}html:not(.honeywell-dark-theme) i.icon.pointing.down:before{content:"\F0A7"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.left:before{content:"\F0A8"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.right:before{content:"\F0A9"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.up:before{content:"\F0AA"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.down:before{content:"\F0AB"}html:not(.honeywell-dark-theme) i.icon.caret.down:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.caret.up:before{content:"\F0D8"}html:not(.honeywell-dark-theme) i.icon.caret.left:before{content:"\F0D9"}html:not(.honeywell-dark-theme) i.icon.caret.right:before{content:"\F0DA"}html:not(.honeywell-dark-theme) i.icon.angle.double.left:before{content:"\F100"}html:not(.honeywell-dark-theme) i.icon.angle.double.right:before{content:"\F101"}html:not(.honeywell-dark-theme) i.icon.angle.double.up:before{content:"\F102"}html:not(.honeywell-dark-theme) i.icon.angle.double.down:before{content:"\F103"}html:not(.honeywell-dark-theme) i.icon.angle.left:before{content:"\F104"}html:not(.honeywell-dark-theme) i.icon.angle.right:before{content:"\F105"}html:not(.honeywell-dark-theme) i.icon.angle.up:before{content:"\F106"}html:not(.honeywell-dark-theme) i.icon.angle.down:before{content:"\F107"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.left:before{content:"\F137"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.right:before{content:"\F138"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.up:before{content:"\F139"}html:not(.honeywell-dark-theme) i.icon.chevron.circle.down:before{content:"\F13A"}html:not(.honeywell-dark-theme) i.icon.toggle.down:before{content:"\F150"}html:not(.honeywell-dark-theme) i.icon.toggle.up:before{content:"\F151"}html:not(.honeywell-dark-theme) i.icon.toggle.right:before{content:"\F152"}html:not(.honeywell-dark-theme) i.icon.long.arrow.down:before{content:"\F175"}html:not(.honeywell-dark-theme) i.icon.long.arrow.up:before{content:"\F176"}html:not(.honeywell-dark-theme) i.icon.long.arrow.left:before{content:"\F177"}html:not(.honeywell-dark-theme) i.icon.long.arrow.right:before{content:"\F178"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.right:before{content:"\F18E"}html:not(.honeywell-dark-theme) i.icon.arrow.circle.outline.left:before{content:"\F190"}html:not(.honeywell-dark-theme) i.icon.toggle.left:before{content:"\F191"}html:not(.honeywell-dark-theme) i.icon.tablet:before{content:"\F10A"}html:not(.honeywell-dark-theme) i.icon.mobile:before{content:"\F10B"}html:not(.honeywell-dark-theme) i.icon.battery.full:before{content:"\F240"}html:not(.honeywell-dark-theme) i.icon.battery.high:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.medium:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.low:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.empty:before{content:"\F244"}html:not(.honeywell-dark-theme) i.icon.power:before{content:"\F011"}html:not(.honeywell-dark-theme) i.icon.trash.outline:before{content:"\F014"}html:not(.honeywell-dark-theme) i.icon.disk.outline:before{content:"\F0A0"}html:not(.honeywell-dark-theme) i.icon.desktop:before{content:"\F108"}html:not(.honeywell-dark-theme) i.icon.laptop:before{content:"\F109"}html:not(.honeywell-dark-theme) i.icon.game:before{content:"\F11B"}html:not(.honeywell-dark-theme) i.icon.keyboard:before{content:"\F11C"}html:not(.honeywell-dark-theme) i.icon.plug:before{content:"\F1E6"}html:not(.honeywell-dark-theme) i.icon.trash:before{content:"\F1F8"}html:not(.honeywell-dark-theme) i.icon.file.outline:before{content:"\F016"}html:not(.honeywell-dark-theme) i.icon.folder:before{content:"\F07B"}html:not(.honeywell-dark-theme) i.icon.folder.open:before{content:"\F07C"}html:not(.honeywell-dark-theme) i.icon.file.text.outline:before{content:"\F0F6"}html:not(.honeywell-dark-theme) i.icon.folder.outline:before{content:"\F114"}html:not(.honeywell-dark-theme) i.icon.folder.open.outline:before{content:"\F115"}html:not(.honeywell-dark-theme) i.icon.level.up:before{content:"\F148"}html:not(.honeywell-dark-theme) i.icon.level.down:before{content:"\F149"}html:not(.honeywell-dark-theme) i.icon.file:before{content:"\F15B"}html:not(.honeywell-dark-theme) i.icon.file.text:before{content:"\F15C"}html:not(.honeywell-dark-theme) i.icon.file.pdf.outline:before{content:"\F1C1"}html:not(.honeywell-dark-theme) i.icon.file.word.outline:before{content:"\F1C2"}html:not(.honeywell-dark-theme) i.icon.file.excel.outline:before{content:"\F1C3"}html:not(.honeywell-dark-theme) i.icon.file.powerpoint.outline:before{content:"\F1C4"}html:not(.honeywell-dark-theme) i.icon.file.image.outline:before{content:"\F1C5"}html:not(.honeywell-dark-theme) i.icon.file.archive.outline:before{content:"\F1C6"}html:not(.honeywell-dark-theme) i.icon.file.audio.outline:before{content:"\F1C7"}html:not(.honeywell-dark-theme) i.icon.file.video.outline:before{content:"\F1C8"}html:not(.honeywell-dark-theme) i.icon.file.code.outline:before{content:"\F1C9"}html:not(.honeywell-dark-theme) i.icon.qrcode:before{content:"\F029"}html:not(.honeywell-dark-theme) i.icon.barcode:before{content:"\F02A"}html:not(.honeywell-dark-theme) i.icon.rss:before{content:"\F09E"}html:not(.honeywell-dark-theme) i.icon.fork:before{content:"\F126"}html:not(.honeywell-dark-theme) i.icon.html5:before{content:"\F13B"}html:not(.honeywell-dark-theme) i.icon.css3:before{content:"\F13C"}html:not(.honeywell-dark-theme) i.icon.rss.square:before{content:"\F143"}html:not(.honeywell-dark-theme) i.icon.openid:before{content:"\F19B"}html:not(.honeywell-dark-theme) i.icon.database:before{content:"\F1C0"}html:not(.honeywell-dark-theme) i.icon.wifi:before{content:"\F1EB"}html:not(.honeywell-dark-theme) i.icon.server:before{content:"\F233"}html:not(.honeywell-dark-theme) i.icon.usb:before{content:"\F287"}html:not(.honeywell-dark-theme) i.icon.bluetooth:before{content:"\F293"}html:not(.honeywell-dark-theme) i.icon.bluetooth.alternative:before{content:"\F294"}html:not(.honeywell-dark-theme) i.icon.microchip:before{content:"\F2DB"}html:not(.honeywell-dark-theme) i.icon.heart:before{content:"\F004"}html:not(.honeywell-dark-theme) i.icon.star:before{content:"\F005"}html:not(.honeywell-dark-theme) i.icon.empty.star:before{content:"\F006"}html:not(.honeywell-dark-theme) i.icon.thumbs.outline.up:before{content:"\F087"}html:not(.honeywell-dark-theme) i.icon.thumbs.outline.down:before{content:"\F088"}html:not(.honeywell-dark-theme) i.icon.star.half:before{content:"\F089"}html:not(.honeywell-dark-theme) i.icon.empty.heart:before{content:"\F08A"}html:not(.honeywell-dark-theme) i.icon.smile:before{content:"\F118"}html:not(.honeywell-dark-theme) i.icon.frown:before{content:"\F119"}html:not(.honeywell-dark-theme) i.icon.meh:before{content:"\F11A"}html:not(.honeywell-dark-theme) i.icon.star.half.empty:before{content:"\F123"}html:not(.honeywell-dark-theme) i.icon.thumbs.up:before{content:"\F164"}html:not(.honeywell-dark-theme) i.icon.thumbs.down:before{content:"\F165"}html:not(.honeywell-dark-theme) i.icon.music:before{content:"\F001"}html:not(.honeywell-dark-theme) i.icon.video.play.outline:before{content:"\F01D"}html:not(.honeywell-dark-theme) i.icon.volume.off:before{content:"\F026"}html:not(.honeywell-dark-theme) i.icon.volume.down:before{content:"\F027"}html:not(.honeywell-dark-theme) i.icon.volume.up:before{content:"\F028"}html:not(.honeywell-dark-theme) i.icon.record:before{content:"\F03D"}html:not(.honeywell-dark-theme) i.icon.step.backward:before{content:"\F048"}html:not(.honeywell-dark-theme) i.icon.fast.backward:before{content:"\F049"}html:not(.honeywell-dark-theme) i.icon.backward:before{content:"\F04A"}html:not(.honeywell-dark-theme) i.icon.play:before{content:"\F04B"}html:not(.honeywell-dark-theme) i.icon.pause:before{content:"\F04C"}html:not(.honeywell-dark-theme) i.icon.stop:before{content:"\F04D"}html:not(.honeywell-dark-theme) i.icon.forward:before{content:"\F04E"}html:not(.honeywell-dark-theme) i.icon.fast.forward:before{content:"\F050"}html:not(.honeywell-dark-theme) i.icon.step.forward:before{content:"\F051"}html:not(.honeywell-dark-theme) i.icon.eject:before{content:"\F052"}html:not(.honeywell-dark-theme) i.icon.unmute:before{content:"\F130"}html:not(.honeywell-dark-theme) i.icon.mute:before{content:"\F131"}html:not(.honeywell-dark-theme) i.icon.video.play:before{content:"\F144"}html:not(.honeywell-dark-theme) i.icon.closed.captioning:before{content:"\F20A"}html:not(.honeywell-dark-theme) i.icon.pause.circle:before{content:"\F28B"}html:not(.honeywell-dark-theme) i.icon.pause.circle.outline:before{content:"\F28C"}html:not(.honeywell-dark-theme) i.icon.stop.circle:before{content:"\F28D"}html:not(.honeywell-dark-theme) i.icon.stop.circle.outline:before{content:"\F28E"}html:not(.honeywell-dark-theme) i.icon.marker:before{content:"\F041"}html:not(.honeywell-dark-theme) i.icon.coffee:before{content:"\F0F4"}html:not(.honeywell-dark-theme) i.icon.food:before{content:"\F0F5"}html:not(.honeywell-dark-theme) i.icon.building.outline:before{content:"\F0F7"}html:not(.honeywell-dark-theme) i.icon.hospital:before{content:"\F0F8"}html:not(.honeywell-dark-theme) i.icon.emergency:before{content:"\F0F9"}html:not(.honeywell-dark-theme) i.icon.first.aid:before{content:"\F0FA"}html:not(.honeywell-dark-theme) i.icon.military:before{content:"\F0FB"}html:not(.honeywell-dark-theme) i.icon.h:before{content:"\F0FD"}html:not(.honeywell-dark-theme) i.icon.location.arrow:before{content:"\F124"}html:not(.honeywell-dark-theme) i.icon.compass:before{content:"\F14E"}html:not(.honeywell-dark-theme) i.icon.space.shuttle:before{content:"\F197"}html:not(.honeywell-dark-theme) i.icon.university:before{content:"\F19C"}html:not(.honeywell-dark-theme) i.icon.building:before{content:"\F1AD"}html:not(.honeywell-dark-theme) i.icon.paw:before{content:"\F1B0"}html:not(.honeywell-dark-theme) i.icon.spoon:before{content:"\F1B1"}html:not(.honeywell-dark-theme) i.icon.car:before{content:"\F1B9"}html:not(.honeywell-dark-theme) i.icon.taxi:before{content:"\F1BA"}html:not(.honeywell-dark-theme) i.icon.tree:before{content:"\F1BB"}html:not(.honeywell-dark-theme) i.icon.bicycle:before{content:"\F206"}html:not(.honeywell-dark-theme) i.icon.bus:before{content:"\F207"}html:not(.honeywell-dark-theme) i.icon.ship:before{content:"\F21A"}html:not(.honeywell-dark-theme) i.icon.motorcycle:before{content:"\F21C"}html:not(.honeywell-dark-theme) i.icon.street.view:before{content:"\F21D"}html:not(.honeywell-dark-theme) i.icon.hotel:before{content:"\F236"}html:not(.honeywell-dark-theme) i.icon.train:before{content:"\F238"}html:not(.honeywell-dark-theme) i.icon.subway:before{content:"\F239"}html:not(.honeywell-dark-theme) i.icon.map.pin:before{content:"\F276"}html:not(.honeywell-dark-theme) i.icon.map.signs:before{content:"\F277"}html:not(.honeywell-dark-theme) i.icon.map.outline:before{content:"\F278"}html:not(.honeywell-dark-theme) i.icon.map:before{content:"\F279"}html:not(.honeywell-dark-theme) i.icon.table:before{content:"\F0CE"}html:not(.honeywell-dark-theme) i.icon.columns:before{content:"\F0DB"}html:not(.honeywell-dark-theme) i.icon.sort:before{content:"\F0DC"}html:not(.honeywell-dark-theme) i.icon.sort.descending:before{content:"\F0DD"}html:not(.honeywell-dark-theme) i.icon.sort.ascending:before{content:"\F0DE"}html:not(.honeywell-dark-theme) i.icon.sort.alphabet.ascending:before{content:"\F15D"}html:not(.honeywell-dark-theme) i.icon.sort.alphabet.descending:before{content:"\F15E"}html:not(.honeywell-dark-theme) i.icon.sort.content.ascending:before{content:"\F160"}html:not(.honeywell-dark-theme) i.icon.sort.content.descending:before{content:"\F161"}html:not(.honeywell-dark-theme) i.icon.sort.numeric.ascending:before{content:"\F162"}html:not(.honeywell-dark-theme) i.icon.sort.numeric.descending:before{content:"\F163"}html:not(.honeywell-dark-theme) i.icon.font:before{content:"\F031"}html:not(.honeywell-dark-theme) i.icon.bold:before{content:"\F032"}html:not(.honeywell-dark-theme) i.icon.italic:before{content:"\F033"}html:not(.honeywell-dark-theme) i.icon.text.height:before{content:"\F034"}html:not(.honeywell-dark-theme) i.icon.text.width:before{content:"\F035"}html:not(.honeywell-dark-theme) i.icon.align.left:before{content:"\F036"}html:not(.honeywell-dark-theme) i.icon.align.center:before{content:"\F037"}html:not(.honeywell-dark-theme) i.icon.align.right:before{content:"\F038"}html:not(.honeywell-dark-theme) i.icon.align.justify:before{content:"\F039"}html:not(.honeywell-dark-theme) i.icon.list:before{content:"\F03A"}html:not(.honeywell-dark-theme) i.icon.outdent:before{content:"\F03B"}html:not(.honeywell-dark-theme) i.icon.indent:before{content:"\F03C"}html:not(.honeywell-dark-theme) i.icon.linkify:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.cut:before{content:"\F0C4"}html:not(.honeywell-dark-theme) i.icon.copy:before{content:"\F0C5"}html:not(.honeywell-dark-theme) i.icon.attach:before{content:"\F0C6"}html:not(.honeywell-dark-theme) i.icon.save:before{content:"\F0C7"}html:not(.honeywell-dark-theme) i.icon.content:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.unordered.list:before{content:"\F0CA"}html:not(.honeywell-dark-theme) i.icon.ordered.list:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.strikethrough:before{content:"\F0CC"}html:not(.honeywell-dark-theme) i.icon.underline:before{content:"\F0CD"}html:not(.honeywell-dark-theme) i.icon.paste:before{content:"\F0EA"}html:not(.honeywell-dark-theme) i.icon.unlinkify:before{content:"\F127"}html:not(.honeywell-dark-theme) i.icon.superscript:before{content:"\F12B"}html:not(.honeywell-dark-theme) i.icon.subscript:before{content:"\F12C"}html:not(.honeywell-dark-theme) i.icon.header:before{content:"\F1DC"}html:not(.honeywell-dark-theme) i.icon.paragraph:before{content:"\F1DD"}html:not(.honeywell-dark-theme) i.icon.text.cursor:before{content:"\F246"}html:not(.honeywell-dark-theme) i.icon.euro:before{content:"\F153"}html:not(.honeywell-dark-theme) i.icon.pound:before{content:"\F154"}html:not(.honeywell-dark-theme) i.icon.dollar:before{content:"\F155"}html:not(.honeywell-dark-theme) i.icon.rupee:before{content:"\F156"}html:not(.honeywell-dark-theme) i.icon.yen:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.ruble:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.won:before{content:"\F159"}html:not(.honeywell-dark-theme) i.icon.bitcoin:before{content:"\F15A"}html:not(.honeywell-dark-theme) i.icon.lira:before{content:"\F195"}html:not(.honeywell-dark-theme) i.icon.shekel:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.paypal:before{content:"\F1ED"}html:not(.honeywell-dark-theme) i.icon.google.wallet:before{content:"\F1EE"}html:not(.honeywell-dark-theme) i.icon.visa:before{content:"\F1F0"}html:not(.honeywell-dark-theme) i.icon.mastercard:before{content:"\F1F1"}html:not(.honeywell-dark-theme) i.icon.discover:before{content:"\F1F2"}html:not(.honeywell-dark-theme) i.icon.american.express:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.paypal.card:before{content:"\F1F4"}html:not(.honeywell-dark-theme) i.icon.stripe:before{content:"\F1F5"}html:not(.honeywell-dark-theme) i.icon.japan.credit.bureau:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.diners.club:before{content:"\F24C"}html:not(.honeywell-dark-theme) i.icon.credit.card.alternative:before{content:"\F283"}html:not(.honeywell-dark-theme) i.icon.twitter.square:before{content:"\F081"}html:not(.honeywell-dark-theme) i.icon.facebook.square:before{content:"\F082"}html:not(.honeywell-dark-theme) i.icon.linkedin.square:before{content:"\F08C"}html:not(.honeywell-dark-theme) i.icon.github.square:before{content:"\F092"}html:not(.honeywell-dark-theme) i.icon.twitter:before{content:"\F099"}html:not(.honeywell-dark-theme) i.icon.facebook.f:before{content:"\F09A"}html:not(.honeywell-dark-theme) i.icon.github:before{content:"\F09B"}html:not(.honeywell-dark-theme) i.icon.pinterest:before{content:"\F0D2"}html:not(.honeywell-dark-theme) i.icon.pinterest.square:before{content:"\F0D3"}html:not(.honeywell-dark-theme) i.icon.google.plus.square:before{content:"\F0D4"}html:not(.honeywell-dark-theme) i.icon.google.plus:before{content:"\F0D5"}html:not(.honeywell-dark-theme) i.icon.linkedin:before{content:"\F0E1"}html:not(.honeywell-dark-theme) i.icon.github.alternate:before{content:"\F113"}html:not(.honeywell-dark-theme) i.icon.maxcdn:before{content:"\F136"}html:not(.honeywell-dark-theme) i.icon.youtube.square:before{content:"\F166"}html:not(.honeywell-dark-theme) i.icon.youtube:before{content:"\F167"}html:not(.honeywell-dark-theme) i.icon.xing:before{content:"\F168"}html:not(.honeywell-dark-theme) i.icon.xing.square:before{content:"\F169"}html:not(.honeywell-dark-theme) i.icon.youtube.play:before{content:"\F16A"}html:not(.honeywell-dark-theme) i.icon.dropbox:before{content:"\F16B"}html:not(.honeywell-dark-theme) i.icon.stack.overflow:before{content:"\F16C"}html:not(.honeywell-dark-theme) i.icon.instagram:before{content:"\F16D"}html:not(.honeywell-dark-theme) i.icon.flickr:before{content:"\F16E"}html:not(.honeywell-dark-theme) i.icon.adn:before{content:"\F170"}html:not(.honeywell-dark-theme) i.icon.bitbucket:before{content:"\F171"}html:not(.honeywell-dark-theme) i.icon.bitbucket.square:before{content:"\F172"}html:not(.honeywell-dark-theme) i.icon.tumblr:before{content:"\F173"}html:not(.honeywell-dark-theme) i.icon.tumblr.square:before{content:"\F174"}html:not(.honeywell-dark-theme) i.icon.apple:before{content:"\F179"}html:not(.honeywell-dark-theme) i.icon.windows:before{content:"\F17A"}html:not(.honeywell-dark-theme) i.icon.android:before{content:"\F17B"}html:not(.honeywell-dark-theme) i.icon.linux:before{content:"\F17C"}html:not(.honeywell-dark-theme) i.icon.dribble:before{content:"\F17D"}html:not(.honeywell-dark-theme) i.icon.skype:before{content:"\F17E"}html:not(.honeywell-dark-theme) i.icon.foursquare:before{content:"\F180"}html:not(.honeywell-dark-theme) i.icon.trello:before{content:"\F181"}html:not(.honeywell-dark-theme) i.icon.gittip:before{content:"\F184"}html:not(.honeywell-dark-theme) i.icon.vk:before{content:"\F189"}html:not(.honeywell-dark-theme) i.icon.weibo:before{content:"\F18A"}html:not(.honeywell-dark-theme) i.icon.renren:before{content:"\F18B"}html:not(.honeywell-dark-theme) i.icon.pagelines:before{content:"\F18C"}html:not(.honeywell-dark-theme) i.icon.stack.exchange:before{content:"\F18D"}html:not(.honeywell-dark-theme) i.icon.vimeo.square:before{content:"\F194"}html:not(.honeywell-dark-theme) i.icon.slack:before{content:"\F198"}html:not(.honeywell-dark-theme) i.icon.wordpress:before{content:"\F19A"}html:not(.honeywell-dark-theme) i.icon.yahoo:before{content:"\F19E"}html:not(.honeywell-dark-theme) i.icon.google:before{content:"\F1A0"}html:not(.honeywell-dark-theme) i.icon.reddit:before{content:"\F1A1"}html:not(.honeywell-dark-theme) i.icon.reddit.square:before{content:"\F1A2"}html:not(.honeywell-dark-theme) i.icon.stumbleupon.circle:before{content:"\F1A3"}html:not(.honeywell-dark-theme) i.icon.stumbleupon:before{content:"\F1A4"}html:not(.honeywell-dark-theme) i.icon.delicious:before{content:"\F1A5"}html:not(.honeywell-dark-theme) i.icon.digg:before{content:"\F1A6"}html:not(.honeywell-dark-theme) i.icon.pied.piper:before{content:"\F1A7"}html:not(.honeywell-dark-theme) i.icon.pied.piper.alternate:before{content:"\F1A8"}html:not(.honeywell-dark-theme) i.icon.drupal:before{content:"\F1A9"}html:not(.honeywell-dark-theme) i.icon.joomla:before{content:"\F1AA"}html:not(.honeywell-dark-theme) i.icon.behance:before{content:"\F1B4"}html:not(.honeywell-dark-theme) i.icon.behance.square:before{content:"\F1B5"}html:not(.honeywell-dark-theme) i.icon.steam:before{content:"\F1B6"}html:not(.honeywell-dark-theme) i.icon.steam.square:before{content:"\F1B7"}html:not(.honeywell-dark-theme) i.icon.spotify:before{content:"\F1BC"}html:not(.honeywell-dark-theme) i.icon.deviantart:before{content:"\F1BD"}html:not(.honeywell-dark-theme) i.icon.soundcloud:before{content:"\F1BE"}html:not(.honeywell-dark-theme) i.icon.vine:before{content:"\F1CA"}html:not(.honeywell-dark-theme) i.icon.codepen:before{content:"\F1CB"}html:not(.honeywell-dark-theme) i.icon.jsfiddle:before{content:"\F1CC"}html:not(.honeywell-dark-theme) i.icon.rebel:before{content:"\F1D0"}html:not(.honeywell-dark-theme) i.icon.empire:before{content:"\F1D1"}html:not(.honeywell-dark-theme) i.icon.git.square:before{content:"\F1D2"}html:not(.honeywell-dark-theme) i.icon.git:before{content:"\F1D3"}html:not(.honeywell-dark-theme) i.icon.hacker.news:before{content:"\F1D4"}html:not(.honeywell-dark-theme) i.icon.tencent.weibo:before{content:"\F1D5"}html:not(.honeywell-dark-theme) i.icon.qq:before{content:"\F1D6"}html:not(.honeywell-dark-theme) i.icon.wechat:before{content:"\F1D7"}html:not(.honeywell-dark-theme) i.icon.slideshare:before{content:"\F1E7"}html:not(.honeywell-dark-theme) i.icon.twitch:before{content:"\F1E8"}html:not(.honeywell-dark-theme) i.icon.yelp:before{content:"\F1E9"}html:not(.honeywell-dark-theme) i.icon.lastfm:before{content:"\F202"}html:not(.honeywell-dark-theme) i.icon.lastfm.square:before{content:"\F203"}html:not(.honeywell-dark-theme) i.icon.ioxhost:before{content:"\F208"}html:not(.honeywell-dark-theme) i.icon.angellist:before{content:"\F209"}html:not(.honeywell-dark-theme) i.icon.meanpath:before{content:"\F20C"}html:not(.honeywell-dark-theme) i.icon.buysellads:before{content:"\F20D"}html:not(.honeywell-dark-theme) i.icon.connectdevelop:before{content:"\F20E"}html:not(.honeywell-dark-theme) i.icon.dashcube:before{content:"\F210"}html:not(.honeywell-dark-theme) i.icon.forumbee:before{content:"\F211"}html:not(.honeywell-dark-theme) i.icon.leanpub:before{content:"\F212"}html:not(.honeywell-dark-theme) i.icon.sellsy:before{content:"\F213"}html:not(.honeywell-dark-theme) i.icon.shirtsinbulk:before{content:"\F214"}html:not(.honeywell-dark-theme) i.icon.simplybuilt:before{content:"\F215"}html:not(.honeywell-dark-theme) i.icon.skyatlas:before{content:"\F216"}html:not(.honeywell-dark-theme) i.icon.facebook:before{content:"\F230"}html:not(.honeywell-dark-theme) i.icon.pinterest:before{content:"\F231"}html:not(.honeywell-dark-theme) i.icon.whatsapp:before{content:"\F232"}html:not(.honeywell-dark-theme) i.icon.viacoin:before{content:"\F237"}html:not(.honeywell-dark-theme) i.icon.medium:before{content:"\F23A"}html:not(.honeywell-dark-theme) i.icon.y.combinator:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.optinmonster:before{content:"\F23C"}html:not(.honeywell-dark-theme) i.icon.opencart:before{content:"\F23D"}html:not(.honeywell-dark-theme) i.icon.expeditedssl:before{content:"\F23E"}html:not(.honeywell-dark-theme) i.icon.gg:before{content:"\F260"}html:not(.honeywell-dark-theme) i.icon.gg.circle:before{content:"\F261"}html:not(.honeywell-dark-theme) i.icon.tripadvisor:before{content:"\F262"}html:not(.honeywell-dark-theme) i.icon.odnoklassniki:before{content:"\F263"}html:not(.honeywell-dark-theme) i.icon.odnoklassniki.square:before{content:"\F264"}html:not(.honeywell-dark-theme) i.icon.pocket:before{content:"\F265"}html:not(.honeywell-dark-theme) i.icon.wikipedia:before{content:"\F266"}html:not(.honeywell-dark-theme) i.icon.safari:before{content:"\F267"}html:not(.honeywell-dark-theme) i.icon.chrome:before{content:"\F268"}html:not(.honeywell-dark-theme) i.icon.firefox:before{content:"\F269"}html:not(.honeywell-dark-theme) i.icon.opera:before{content:"\F26A"}html:not(.honeywell-dark-theme) i.icon.internet.explorer:before{content:"\F26B"}html:not(.honeywell-dark-theme) i.icon.contao:before{content:"\F26D"}html:not(.honeywell-dark-theme) i.icon.\35 00px:before{content:"\F26E"}html:not(.honeywell-dark-theme) i.icon.amazon:before{content:"\F270"}html:not(.honeywell-dark-theme) i.icon.houzz:before{content:"\F27C"}html:not(.honeywell-dark-theme) i.icon.vimeo:before{content:"\F27D"}html:not(.honeywell-dark-theme) i.icon.black.tie:before{content:"\F27E"}html:not(.honeywell-dark-theme) i.icon.fonticons:before{content:"\F280"}html:not(.honeywell-dark-theme) i.icon.reddit.alien:before{content:"\F281"}html:not(.honeywell-dark-theme) i.icon.microsoft.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.codiepie:before{content:"\F284"}html:not(.honeywell-dark-theme) i.icon.modx:before{content:"\F285"}html:not(.honeywell-dark-theme) i.icon.fort.awesome:before{content:"\F286"}html:not(.honeywell-dark-theme) i.icon.product.hunt:before{content:"\F288"}html:not(.honeywell-dark-theme) i.icon.mixcloud:before{content:"\F289"}html:not(.honeywell-dark-theme) i.icon.scribd:before{content:"\F28A"}html:not(.honeywell-dark-theme) i.icon.gitlab:before{content:"\F296"}html:not(.honeywell-dark-theme) i.icon.wpbeginner:before{content:"\F297"}html:not(.honeywell-dark-theme) i.icon.wpforms:before{content:"\F298"}html:not(.honeywell-dark-theme) i.icon.envira.gallery:before{content:"\F299"}html:not(.honeywell-dark-theme) i.icon.glide:before{content:"\F2A5"}html:not(.honeywell-dark-theme) i.icon.glide.g:before{content:"\F2A6"}html:not(.honeywell-dark-theme) i.icon.viadeo:before{content:"\F2A9"}html:not(.honeywell-dark-theme) i.icon.viadeo.square:before{content:"\F2AA"}html:not(.honeywell-dark-theme) i.icon.snapchat:before{content:"\F2AB"}html:not(.honeywell-dark-theme) i.icon.snapchat.ghost:before{content:"\F2AC"}html:not(.honeywell-dark-theme) i.icon.snapchat.square:before{content:"\F2AD"}html:not(.honeywell-dark-theme) i.icon.pied.piper.hat:before{content:"\F2AE"}html:not(.honeywell-dark-theme) i.icon.first.order:before{content:"\F2B0"}html:not(.honeywell-dark-theme) i.icon.yoast:before{content:"\F2B1"}html:not(.honeywell-dark-theme) i.icon.themeisle:before{content:"\F2B2"}html:not(.honeywell-dark-theme) i.icon.google.plus.circle:before{content:"\F2B3"}html:not(.honeywell-dark-theme) i.icon.font.awesome:before{content:"\F2B4"}html:not(.honeywell-dark-theme) i.icon.linode:before{content:"\F2B8"}html:not(.honeywell-dark-theme) i.icon.quora:before{content:"\F2C4"}html:not(.honeywell-dark-theme) i.icon.free.code.camp:before{content:"\F2C5"}html:not(.honeywell-dark-theme) i.icon.telegram:before{content:"\F2C6"}html:not(.honeywell-dark-theme) i.icon.bandcamp:before{content:"\F2D5"}html:not(.honeywell-dark-theme) i.icon.grav:before{content:"\F2D6"}html:not(.honeywell-dark-theme) i.icon.etsy:before{content:"\F2D7"}html:not(.honeywell-dark-theme) i.icon.imdb:before{content:"\F2D8"}html:not(.honeywell-dark-theme) i.icon.ravelry:before{content:"\F2D9"}html:not(.honeywell-dark-theme) i.icon.eercast:before{content:"\F2DA"}html:not(.honeywell-dark-theme) i.icon.superpowers:before{content:"\F2DD"}html:not(.honeywell-dark-theme) i.icon.wpexplorer:before{content:"\F2DE"}html:not(.honeywell-dark-theme) i.icon.meetup:before{content:"\F2E0"}html:not(.honeywell-dark-theme) i.icon.like:before{content:"\F004"}html:not(.honeywell-dark-theme) i.icon.favorite:before{content:"\F005"}html:not(.honeywell-dark-theme) i.icon.video:before{content:"\F008"}html:not(.honeywell-dark-theme) i.icon.check:before{content:"\F00C"}html:not(.honeywell-dark-theme) i.icon.close:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.cancel:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.delete:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.x:before{content:"\F00D"}html:not(.honeywell-dark-theme) i.icon.zoom.in:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.magnify:before{content:"\F00E"}html:not(.honeywell-dark-theme) i.icon.shutdown:before{content:"\F011"}html:not(.honeywell-dark-theme) i.icon.clock:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.time:before{content:"\F017"}html:not(.honeywell-dark-theme) i.icon.play.circle.outline:before{content:"\F01D"}html:not(.honeywell-dark-theme) i.icon.headphone:before{content:"\F025"}html:not(.honeywell-dark-theme) i.icon.camera:before{content:"\F030"}html:not(.honeywell-dark-theme) i.icon.video.camera:before{content:"\F03D"}html:not(.honeywell-dark-theme) i.icon.picture:before{content:"\F03E"}html:not(.honeywell-dark-theme) i.icon.pencil:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.compose:before{content:"\F040"}html:not(.honeywell-dark-theme) i.icon.point:before{content:"\F041"}html:not(.honeywell-dark-theme) i.icon.tint:before{content:"\F043"}html:not(.honeywell-dark-theme) i.icon.signup:before{content:"\F044"}html:not(.honeywell-dark-theme) i.icon.plus.circle:before{content:"\F055"}html:not(.honeywell-dark-theme) i.icon.question.circle:before{content:"\F059"}html:not(.honeywell-dark-theme) i.icon.dont:before{content:"\F05E"}html:not(.honeywell-dark-theme) i.icon.minimize:before{content:"\F066"}html:not(.honeywell-dark-theme) i.icon.add:before{content:"\F067"}html:not(.honeywell-dark-theme) i.icon.exclamation.circle:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.attention:before{content:"\F06A"}html:not(.honeywell-dark-theme) i.icon.eye:before{content:"\F06E"}html:not(.honeywell-dark-theme) i.icon.exclamation.triangle:before{content:"\F071"}html:not(.honeywell-dark-theme) i.icon.shuffle:before{content:"\F074"}html:not(.honeywell-dark-theme) i.icon.chat:before{content:"\F075"}html:not(.honeywell-dark-theme) i.icon.cart:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.shopping.cart:before{content:"\F07A"}html:not(.honeywell-dark-theme) i.icon.bar.graph:before{content:"\F080"}html:not(.honeywell-dark-theme) i.icon.key:before{content:"\F084"}html:not(.honeywell-dark-theme) i.icon.cogs:before{content:"\F085"}html:not(.honeywell-dark-theme) i.icon.discussions:before{content:"\F086"}html:not(.honeywell-dark-theme) i.icon.like.outline:before{content:"\F087"}html:not(.honeywell-dark-theme) i.icon.dislike.outline:before{content:"\F088"}html:not(.honeywell-dark-theme) i.icon.heart.outline:before{content:"\F08A"}html:not(.honeywell-dark-theme) i.icon.log.out:before{content:"\F08B"}html:not(.honeywell-dark-theme) i.icon.thumb.tack:before{content:"\F08D"}html:not(.honeywell-dark-theme) i.icon.winner:before{content:"\F091"}html:not(.honeywell-dark-theme) i.icon.phone:before{content:"\F095"}html:not(.honeywell-dark-theme) i.icon.bookmark.outline:before{content:"\F097"}html:not(.honeywell-dark-theme) i.icon.phone.square:before{content:"\F098"}html:not(.honeywell-dark-theme) i.icon.credit.card:before{content:"\F09D"}html:not(.honeywell-dark-theme) i.icon.hdd.outline:before{content:"\F0A0"}html:not(.honeywell-dark-theme) i.icon.bullhorn:before{content:"\F0A1"}html:not(.honeywell-dark-theme) i.icon.bell.outline:before{content:"\F0A2"}html:not(.honeywell-dark-theme) i.icon.hand.outline.right:before{content:"\F0A4"}html:not(.honeywell-dark-theme) i.icon.hand.outline.left:before{content:"\F0A5"}html:not(.honeywell-dark-theme) i.icon.hand.outline.up:before{content:"\F0A6"}html:not(.honeywell-dark-theme) i.icon.hand.outline.down:before{content:"\F0A7"}html:not(.honeywell-dark-theme) i.icon.globe:before{content:"\F0AC"}html:not(.honeywell-dark-theme) i.icon.wrench:before{content:"\F0AD"}html:not(.honeywell-dark-theme) i.icon.briefcase:before{content:"\F0B1"}html:not(.honeywell-dark-theme) i.icon.group:before{content:"\F0C0"}html:not(.honeywell-dark-theme) i.icon.linkify:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.chain:before{content:"\F0C1"}html:not(.honeywell-dark-theme) i.icon.flask:before{content:"\F0C3"}html:not(.honeywell-dark-theme) i.icon.sidebar:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.bars:before{content:"\F0C9"}html:not(.honeywell-dark-theme) i.icon.list.ul:before{content:"\F0CA"}html:not(.honeywell-dark-theme) i.icon.list.ol:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.numbered.list:before{content:"\F0CB"}html:not(.honeywell-dark-theme) i.icon.magic:before{content:"\F0D0"}html:not(.honeywell-dark-theme) i.icon.truck:before{content:"\F0D1"}html:not(.honeywell-dark-theme) i.icon.currency:before{content:"\F0D6"}html:not(.honeywell-dark-theme) i.icon.triangle.down:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.dropdown:before{content:"\F0D7"}html:not(.honeywell-dark-theme) i.icon.triangle.up:before{content:"\F0D8"}html:not(.honeywell-dark-theme) i.icon.triangle.left:before{content:"\F0D9"}html:not(.honeywell-dark-theme) i.icon.triangle.right:before{content:"\F0DA"}html:not(.honeywell-dark-theme) i.icon.envelope:before{content:"\F0E0"}html:not(.honeywell-dark-theme) i.icon.conversation:before{content:"\F0E6"}html:not(.honeywell-dark-theme) i.icon.rain:before{content:"\F0E9"}html:not(.honeywell-dark-theme) i.icon.clipboard:before{content:"\F0EA"}html:not(.honeywell-dark-theme) i.icon.lightbulb:before{content:"\F0EB"}html:not(.honeywell-dark-theme) i.icon.bell:before{content:"\F0F3"}html:not(.honeywell-dark-theme) i.icon.ambulance:before{content:"\F0F9"}html:not(.honeywell-dark-theme) i.icon.medkit:before{content:"\F0FA"}html:not(.honeywell-dark-theme) i.icon.fighter.jet:before{content:"\F0FB"}html:not(.honeywell-dark-theme) i.icon.beer:before{content:"\F0FC"}html:not(.honeywell-dark-theme) i.icon.plus.square:before{content:"\F0FE"}html:not(.honeywell-dark-theme) i.icon.computer:before{content:"\F108"}html:not(.honeywell-dark-theme) i.icon.circle.outline:before{content:"\F10C"}html:not(.honeywell-dark-theme) i.icon.gamepad:before{content:"\F11B"}html:not(.honeywell-dark-theme) i.icon.star.half.full:before{content:"\F123"}html:not(.honeywell-dark-theme) i.icon.broken.chain:before{content:"\F127"}html:not(.honeywell-dark-theme) i.icon.question:before{content:"\F128"}html:not(.honeywell-dark-theme) i.icon.exclamation:before{content:"\F12A"}html:not(.honeywell-dark-theme) i.icon.eraser:before{content:"\F12D"}html:not(.honeywell-dark-theme) i.icon.microphone:before{content:"\F130"}html:not(.honeywell-dark-theme) i.icon.microphone.slash:before{content:"\F131"}html:not(.honeywell-dark-theme) i.icon.shield:before{content:"\F132"}html:not(.honeywell-dark-theme) i.icon.target:before{content:"\F140"}html:not(.honeywell-dark-theme) i.icon.play.circle:before{content:"\F144"}html:not(.honeywell-dark-theme) i.icon.pencil.square:before{content:"\F14B"}html:not(.honeywell-dark-theme) i.icon.eur:before{content:"\F153"}html:not(.honeywell-dark-theme) i.icon.gbp:before{content:"\F154"}html:not(.honeywell-dark-theme) i.icon.usd:before{content:"\F155"}html:not(.honeywell-dark-theme) i.icon.inr:before{content:"\F156"}html:not(.honeywell-dark-theme) i.icon.cny:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.rmb:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.jpy:before{content:"\F157"}html:not(.honeywell-dark-theme) i.icon.rouble:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.rub:before{content:"\F158"}html:not(.honeywell-dark-theme) i.icon.krw:before{content:"\F159"}html:not(.honeywell-dark-theme) i.icon.btc:before{content:"\F15A"}html:not(.honeywell-dark-theme) i.icon.gratipay:before{content:"\F184"}html:not(.honeywell-dark-theme) i.icon.zip:before{content:"\F187"}html:not(.honeywell-dark-theme) i.icon.dot.circle.outline:before{content:"\F192"}html:not(.honeywell-dark-theme) i.icon.try:before{content:"\F195"}html:not(.honeywell-dark-theme) i.icon.graduation:before{content:"\F19D"}html:not(.honeywell-dark-theme) i.icon.circle.outline:before{content:"\F1DB"}html:not(.honeywell-dark-theme) i.icon.sliders:before{content:"\F1DE"}html:not(.honeywell-dark-theme) i.icon.weixin:before{content:"\F1D7"}html:not(.honeywell-dark-theme) i.icon.tty:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.teletype:before{content:"\F1E4"}html:not(.honeywell-dark-theme) i.icon.binoculars:before{content:"\F1E5"}html:not(.honeywell-dark-theme) i.icon.power.cord:before{content:"\F1E6"}html:not(.honeywell-dark-theme) i.icon.wi-fi:before{content:"\F1EB"}html:not(.honeywell-dark-theme) i.icon.visa.card:before{content:"\F1F0"}html:not(.honeywell-dark-theme) i.icon.mastercard.card:before{content:"\F1F1"}html:not(.honeywell-dark-theme) i.icon.discover.card:before{content:"\F1F2"}html:not(.honeywell-dark-theme) i.icon.amex:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.american.express.card:before{content:"\F1F3"}html:not(.honeywell-dark-theme) i.icon.stripe.card:before{content:"\F1F5"}html:not(.honeywell-dark-theme) i.icon.bell.slash:before{content:"\F1F6"}html:not(.honeywell-dark-theme) i.icon.bell.slash.outline:before{content:"\F1F7"}html:not(.honeywell-dark-theme) i.icon.area.graph:before{content:"\F1FE"}html:not(.honeywell-dark-theme) i.icon.pie.graph:before{content:"\F200"}html:not(.honeywell-dark-theme) i.icon.line.graph:before{content:"\F201"}html:not(.honeywell-dark-theme) i.icon.cc:before{content:"\F20A"}html:not(.honeywell-dark-theme) i.icon.sheqel:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.ils:before{content:"\F20B"}html:not(.honeywell-dark-theme) i.icon.plus.cart:before{content:"\F217"}html:not(.honeywell-dark-theme) i.icon.arrow.down.cart:before{content:"\F218"}html:not(.honeywell-dark-theme) i.icon.detective:before{content:"\F21B"}html:not(.honeywell-dark-theme) i.icon.venus:before{content:"\F221"}html:not(.honeywell-dark-theme) i.icon.mars:before{content:"\F222"}html:not(.honeywell-dark-theme) i.icon.mercury:before{content:"\F223"}html:not(.honeywell-dark-theme) i.icon.intersex:before{content:"\F224"}html:not(.honeywell-dark-theme) i.icon.venus.double:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.female.homosexual:before{content:"\F226"}html:not(.honeywell-dark-theme) i.icon.mars.double:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.male.homosexual:before{content:"\F227"}html:not(.honeywell-dark-theme) i.icon.venus.mars:before{content:"\F228"}html:not(.honeywell-dark-theme) i.icon.mars.stroke:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.mars.alternate:before{content:"\F229"}html:not(.honeywell-dark-theme) i.icon.mars.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.mars.stroke.vertical:before{content:"\F22A"}html:not(.honeywell-dark-theme) i.icon.mars.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.mars.stroke.horizontal:before{content:"\F22B"}html:not(.honeywell-dark-theme) i.icon.asexual:before{content:"\F22D"}html:not(.honeywell-dark-theme) i.icon.facebook.official:before{content:"\F230"}html:not(.honeywell-dark-theme) i.icon.user.plus:before{content:"\F234"}html:not(.honeywell-dark-theme) i.icon.user.times:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.close:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.cancel:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.delete:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.user.x:before{content:"\F235"}html:not(.honeywell-dark-theme) i.icon.bed:before{content:"\F236"}html:not(.honeywell-dark-theme) i.icon.yc:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.ycombinator:before{content:"\F23B"}html:not(.honeywell-dark-theme) i.icon.battery.four:before{content:"\F240"}html:not(.honeywell-dark-theme) i.icon.battery.three:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.three.quarters:before{content:"\F241"}html:not(.honeywell-dark-theme) i.icon.battery.two:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.half:before{content:"\F242"}html:not(.honeywell-dark-theme) i.icon.battery.one:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.quarter:before{content:"\F243"}html:not(.honeywell-dark-theme) i.icon.battery.zero:before{content:"\F244"}html:not(.honeywell-dark-theme) i.icon.i.cursor:before{content:"\F246"}html:not(.honeywell-dark-theme) i.icon.jcb:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.japan.credit.bureau.card:before{content:"\F24B"}html:not(.honeywell-dark-theme) i.icon.diners.club.card:before{content:"\F24C"}html:not(.honeywell-dark-theme) i.icon.balance:before{content:"\F24E"}html:not(.honeywell-dark-theme) i.icon.hourglass.outline:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.zero:before{content:"\F250"}html:not(.honeywell-dark-theme) i.icon.hourglass.one:before{content:"\F251"}html:not(.honeywell-dark-theme) i.icon.hourglass.two:before{content:"\F252"}html:not(.honeywell-dark-theme) i.icon.hourglass.three:before{content:"\F253"}html:not(.honeywell-dark-theme) i.icon.hourglass.four:before{content:"\F254"}html:not(.honeywell-dark-theme) i.icon.grab:before{content:"\F255"}html:not(.honeywell-dark-theme) i.icon.hand.victory:before{content:"\F25B"}html:not(.honeywell-dark-theme) i.icon.tm:before{content:"\F25C"}html:not(.honeywell-dark-theme) i.icon.r.circle:before{content:"\F25D"}html:not(.honeywell-dark-theme) i.icon.television:before{content:"\F26C"}html:not(.honeywell-dark-theme) i.icon.five.hundred.pixels:before{content:"\F26E"}html:not(.honeywell-dark-theme) i.icon.calendar.plus:before{content:"\F271"}html:not(.honeywell-dark-theme) i.icon.calendar.minus:before{content:"\F272"}html:not(.honeywell-dark-theme) i.icon.calendar.times:before{content:"\F273"}html:not(.honeywell-dark-theme) i.icon.calendar.check:before{content:"\F274"}html:not(.honeywell-dark-theme) i.icon.factory:before{content:"\F275"}html:not(.honeywell-dark-theme) i.icon.commenting:before{content:"\F27A"}html:not(.honeywell-dark-theme) i.icon.commenting.outline:before{content:"\F27B"}html:not(.honeywell-dark-theme) i.icon.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.ms.edge:before{content:"\F282"}html:not(.honeywell-dark-theme) i.icon.wordpress.beginner:before{content:"\F297"}html:not(.honeywell-dark-theme) i.icon.wordpress.forms:before{content:"\F298"}html:not(.honeywell-dark-theme) i.icon.envira:before{content:"\F299"}html:not(.honeywell-dark-theme) i.icon.question.circle.outline:before{content:"\F29C"}html:not(.honeywell-dark-theme) i.icon.assistive.listening.devices:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.als:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.ald:before{content:"\F2A2"}html:not(.honeywell-dark-theme) i.icon.asl.interpreting:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.deaf:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.american.sign.language.interpreting:before{content:"\F2A3"}html:not(.honeywell-dark-theme) i.icon.hard.of.hearing:before{content:"\F2A4"}html:not(.honeywell-dark-theme) i.icon.signing:before{content:"\F2A7"}html:not(.honeywell-dark-theme) i.icon.new.pied.piper:before{content:"\F2AE"}html:not(.honeywell-dark-theme) i.icon.theme.isle:before{content:"\F2B2"}html:not(.honeywell-dark-theme) i.icon.google.plus.official:before{content:"\F2B3"}html:not(.honeywell-dark-theme) i.icon.fa:before{content:"\F2B4"}html:not(.honeywell-dark-theme) i.icon.vcard:before{content:"\F2BB"}html:not(.honeywell-dark-theme) i.icon.vcard.outline:before{content:"\F2BC"}html:not(.honeywell-dark-theme) i.icon.drivers.license:before{content:"\F2C2"}html:not(.honeywell-dark-theme) i.icon.drivers.license.outline:before{content:"\F2C3"}html:not(.honeywell-dark-theme) i.icon.thermometer:before{content:"\F2C7"}html:not(.honeywell-dark-theme) i.icon.s15:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.bath:before{content:"\F2CD"}html:not(.honeywell-dark-theme) i.icon.times.rectangle:before{content:"\F2D3"}html:not(.honeywell-dark-theme) i.icon.times.rectangle.outline:before{content:"\F2D4"}html:not(.honeywell-dark-theme) .ui.dashboard-wrap{position:relative;display:flex;min-height:82px;overflow:hidden}html:not(.honeywell-dark-theme) .ui.dashboard-wrap .react-resizable-handle::after{border-color:#303030}html:not(.honeywell-dark-theme) .ui.dashboard-wrap .layout-grid{z-index:2}html:not(.honeywell-dark-theme) .ui.dashboard-wrap .layout-grid .ui.tile-container{background:#fff;border:1px solid transparent;box-shadow:0 1px 2px rgba(0,0,0,0.1);position:relative;display:flex;overflow:hidden}html:not(.honeywell-dark-theme) .ui.dashboard-wrap .layout-grid .react-grid-item.react-grid-placeholder{background:#06f;z-index:1;opacity:0.35}html:not(.honeywell-dark-theme) .ui.dashboard-wrap.editable .layout-grid .tile-container{cursor:grab}html:not(.honeywell-dark-theme) .ui.dashboard-wrap.editable .layout-grid .tile-container.react-draggable-dragging{cursor:grabbing !important;border:1px solid #1274B7;opacity:0.7}html:not(.honeywell-dark-theme) .ui.dashboard-wrap .marker-grid{position:absolute;z-index:1;top:0;left:0;right:0;opacity:0;pointer-events:none}html:not(.honeywell-dark-theme) .ui.dashboard-wrap .marker-grid .grid-marker{border:.0625rem dashed #a0a0a0;opacity:0.6}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){html:not(.honeywell-dark-theme) .ui.dashboard-wrap .marker-grid{display:none}}html:not(.honeywell-dark-theme) .ui.dashboard-wrap.explicit-height.in-flux .over-flow-marker{height:calc(100% - 6px);border-bottom:2px dashed #a0a0a0;width:100%}html:not(.honeywell-dark-theme) .ui.tile-container .tile-wrapper{width:100%}html:not(.honeywell-dark-theme) .ui.tile-container .tile-actions{position:absolute;top:0;width:100%;z-index:900;right:0;left:0;display:flex;justify-content:flex-end;padding:1rem 1rem 1rem 0;width:calc(100% - 1rem)}html:not(.honeywell-dark-theme) .ui.tile-container .tile-actions .tile-action-icon{display:inline-block;cursor:pointer !important;color:#303030;line-height:1rem}html:not(.honeywell-dark-theme) .ui.tile-container .tile-actions .tile-action-icon:hover{color:#1274B7}html:not(.honeywell-dark-theme) .ui.tile-container .tile-actions .tile-action-icon+.tile-action-icon{margin-left:1rem}


