@charset "UTF-8";
.UI-scene-widget {
  width: 120px;
  height: 78px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.UI-scene-widget_content::before {
  content: "";
  min-height: 2px;
  transform: translateY(3px);
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  width: 96px;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.UI-scene-widget_content::after {
  content: "";
  min-height: 2px;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  width: 96px;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.UI-scene-widget_content {
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.UI-scene-widget_selector {
  transform: translateY(1px);
  width: 95px;
  height: 65px;
  max-height: 65px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  transition-property: background, box-shadow, transform;
  transform-origin: 50% 50%;
  margin: auto;
  background: linear-gradient(to right, #00000000 10px, #00000011 10px, #00000011 calc(100% - 10px), #00000000 calc(100% - 10px));
}
.UI-scene-widget_title {
  font-size: 1em;
  height: 16px;
}
.UI-scene-widget_selector_choice {
  height: 17px;
  text-align: center;
  font-size: 0.8em;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.UI-scene-widget_selector_choice.-alive {
  height: 22px;
  font-weight: 500;
  box-shadow: 0 0 1px #000 inset;
  background: hsl(var(--UI-hue), 30%, 55%);
  width: 100%;
  font-size: 0.9em;
}
.UI-scene-widget.-off .UI-scene-widget_selector {
  transform: translateY(38px);
}
.UI-widget {
  width: 120px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  --border-radius:55px;
}
.UI-widget::after {
  content: "";
  min-height: 2px;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  width: 96px;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.UI-widget_button {
  display: flex;
  width: 99px;
  height: 99px;
  transform: translateY(12px);
  border-radius: var(--border-radius);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  transition-property: background, box-shadow, transform;
  transform-origin: 50% 50%;
  padding: 5px;
}
.UI-widget_button.toRight {
  transform: translateY(13px) translateX(10px) rotate(30deg);
}
.UI-widget_button.toLeft {
  transform: translateY(13px) translateX(-10px) rotate(-30deg);
}
.UI-widget_button.off {
  transform: translateY(30px);
  background: none !important;
}
.UI-widget_button_content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0 9px 0;
  border-radius: var(--border-radius);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.7) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  transition-property: background;
  background: hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.7), calc(var(--UI-luminosity) * 1), 0.5);
  color: hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.7), var(--UI-contrast-luminosity));
}
.-darkmode .UI-widget_button_content {
  background: hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.7), calc(var(--UI-luminosity) * 0.61), 0.8);
}
.UI-widget_button.off .UI-widget_button_content {
  background: #00000011;
  box-shadow: none;
}
.-darkmode .UI-widget_button.off .UI-widget_button_content {
  background: #00000022;
}
.UI-widget_button_icon {
  width: 39px;
  flex: 0 0 26px;
  opacity: 0.7;
}
.UI-widget_button_title {
  min-height: 25px;
  max-height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 16px;
  padding: 0 3px;
  padding-top: 1px;
  font-weight: 400;
  letter-spacing: 1px;
  text-wrap: balance;
  font-size: 0.9em;
}
.UI-widget_button_state {
  padding-top: 3px;
  flex: 0 0 auto;
  letter-spacing: 1px;
  font-size: 0.7em;
  font-weight: bold;
}
.UI-header {
  display: none;
  height: 40px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  align-items: stretch;
  transition-property: opacity;
}
.UI-header_element {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  align-items: center;
  border-bottom: 1px solid #00000066;
  border-right: 1px solid #00000066;
  cursor: pointer;
  background-color: hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.13), var(--UI-luminosity), 0.4);
  backdrop-filter: blur(5px);
}
.UI-header_menu {
  display: flex;
  height: 100%;
  margin: auto;
  flex: 1 1 auto;
  vertical-align: middle;
  align-items: stretch;
  font-size: 1.3em;
  font-weight: 500;
}
.UI-header_element.-alive {
  -webkit-backdrop-filter: blur(5px);
  background: transparent;
  border-top: 1px solid #00000066;
  border-bottom: 0px solid #00000066;
}
.UI-header_element.-burger {
  width: 40px;
  max-width: 50px;
  flex: 0 0 auto;
  text-align: center;
  font-weight: bold;
  flex-direction: column;
  padding: 5px 0;
}
.UI-header_element.-small {
  width: 40px;
  max-width: 50px;
  flex: 0 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 2em;
}
.UI-header_element.-logo {
  min-width: 200px;
  height: 100%;
  font-weight: 600;
  flex: 1 1 auto;
  margin: auto;
  font-size: 2em;
  text-align: center;
}
.UI-header_element_img {
  max-height: 35px;
}
.UI-header_burger-line {
  width: 30px;
  height: 3px;
  margin: auto;
  background-color: black;
  border-radius: 4px;
  transition-property: width, background-color, transform, margin, height;
  transform-origin: 50% 50%;
}
body.-display-menu .UI-header_burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px) translateX(5px);
}
body.-display-menu .UI-header_burger-line:nth-child(2) {
  height: 0;
  margin: 0 auto;
  background-color: transparent;
}
body.-display-menu .UI-header_burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px) translateX(7px);
}
.UI-slider {
  min-width: 100%;
  max-width: 100%;
  height: 50px;
  overflow: hidden;
  text-align: left;
  flex: 0 0 auto;
}
.UI-slider_content {
  mask-image: linear-gradient(to right, #00000000 0px, #000000 10%, #000000 90%, #00000000 100%);
}
.UI-slider_range {
  width: 1000px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.UI-slider_range_step {
  display: flex;
  width: 1px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  gap: 4px;
  flex: 0 0 1px;
}
.UI-slider_range_step_label {
  font-size: 10pt;
  height: 20px;
  opacity: 0;
}
.UI-slider_range_step_tick {
  width: 1px;
  height: 10px;
  background: #00000099;
}
.UI-slider_range_step.-big .UI-slider_range_step_tick {
  height: 13px;
  background: #000000AA;
}
.UI-slider_range_step.-big .UI-slider_range_step_label {
  display: inline;
  opacity: 1;
}
.UI-slider_range_step.-selected .UI-slider_range_step_tick {
  height: 13px;
  background: #000000AA;
  width: 3px;
}
.UI-slider_range_step.-selected .UI-slider_range_step_label {
  display: inline;
  opacity: 1;
  font-weight: bold;
  font-size: 11pt;
}
ha network update eth0 --ipv4-gateway 172.3.32.1.UI-slider_title {
  flex: 0 0 150px;
  padding-left: 10px;
  font-weight: 600;
  font-size: 11pt;
}
.UI-slider_cursor-container {
  width: 100%;
  height: 15px;
  display: flex;
  justify-content: center;
}
.UI-slider_cursor {
  width: 0px;
  height: 0px;
  margin-top: 3px;
  border-style: solid;
  border-width: 10px 4px 0 4px;
  border-color: #000000 transparent transparent transparent;
  transform: translate(-3px, 0);
}
.UI-editor {
  overflow-y: scroll;
  max-height: 100%;
  padding-bottom: 30px;
}
.UI-editor h2 {
  text-align: center;
}
.UI-editor form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.UI-editor form .UI-form_line {
  flex: 0 0 auto;
}
.UI-editor form > * {
  flex: 0 0 auto;
}
.UI-editor form .half {
  width: calc(50% - 30px);
}
.UI-editor form fieldset.half {
  width: calc(50% - 30px);
}
.UI-editor form fieldset .UI-form_line:not(.half) {
  width: calc(100%);
  margin-right: 0;
}
.UI-editor form fieldset .UI-form_line.half {
  width: calc(50% - 8px);
  margin-right: 15px;
}
.UI-editor form fieldset .UI-form_line.half:nth-last-child(2n+1) {
  margin-right: 0px;
}
.area-panel_header {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  font-weight: bold;
}
.area-panel_devices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
  margin-top: 20px;
}
.area-panel_device-card-container {
  width: 300px;
  max-width: 100%;
  height: 400px;
  background: #00000077;
}
.UI-sheet {
  height: calc(740px);
  width: calc(100% / 6);
  position: absolute;
  z-index: 1;
  opacity: 0;
  left: 0px;
  top: 0px;
  transition-duration: 1s;
  transition-timing-function: linear;
  transition-property: margin, opacity;
  margin-left: 0px;
  margin-top: 40px;
  text-align: center;
  padding-top: 40px;
  overflow-y: scroll;
  padding: 3px;
  border: 1px solid transparent;
  margin-left: -20px;
  --sheet-hue:var(--UI-hue);
  --sheet-saturation:var(--UI-saturation);
  background: radial-gradient(circle at 50% 140%, hsla(var(--sheet-hue), calc(var(--sheet-saturation) * 0.8), var(--UI-luminosity), 1), hsla(var(--sheet-hue), calc(var(--sheet-saturation) * 0.4), var(--UI-luminosity), 0.2) 90%);
  border-image: radial-gradient(circle at 50% -150px, hsla(var(--sheet-hue), var(--sheet-saturation), 60%, 1), hsla(var(--sheet-hue), calc(var(--sheet-saturation) * 0.2), 95%, 0.5) 100%) 1;
}
.UI-panel.-one .UI-sheet.-one {
  z-index: 20;
  margin-left: 0px;
  margin-top: 20px;
  opacity: 1;
}
.UI-panel.-one .UI-sheet.-two {
  opacity: 0;
}
.UI-panel.-two .UI-sheet.one {
  opacity: 0;
}
.UI-panel.-two .UI-sheet.-two {
  z-index: 20;
  margin-left: 0px;
  margin-top: 20px;
  opacity: 1;
}
.UI-editor {
  background-color: #FFFFFF66;
  width: 100%;
  margin-top: 0px;
  transition-property: transform;
}
@media screen and (min-width: 760px) {
  .contentWrapper {
    overflow: hidden;
  }
  .UI-panel.-setting.inLoad > * {
    filter: grayscale(100%);
    opacity: 0.7;
    pointer-events: none;
  }
  .UI-panel.-editor {
    width: 300px;
  }
  .UI-editor {
    width: 600px;
    min-width: 600px;
  }
  body.inEditor .UI-editor {
    transform: translateX(-300px);
    transition-timing-function: ease-out;
    transition-duration: 0.5s;
    box-shadow: 0 0 4px #000;
  }
  body.inEditor .UI-panel.-setting {
    padding-right: 300px;
    transition-timing-function: ease-out;
    transition-duration: 0.5s;
  }
  .dashboard {
    flex: 1 1 auto;
  }
  .UI-sheet {
    width: calc(((100% - 900px ) / 3) - var(--planWidth));
    max-width: calc(((100% - 900px ) / 3) - var(--planWidth));
    min-width: calc(((100% - 900px ) / 3) - var(--planWidth));
    height: 100%;
  }
  .UI-sheet_content {
    width: calc(((100% - 900px ) / 3) - var(--planWidth));
    max-width: calc(((100% - 900px ) / 3) - var(--planWidth));
    min-width: calc(((100% - 900px ) / 3) - var(--planWidth));
    height: calc(100% - 4px);
  }
}
.UI-panel.-main > * {
  width: 100%;
}
.UI-panel.-main .hover {
  height: 100%;
  max-height: 0;
}
.firstLine {
  display: flex;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
}
svg circle.halo {
  mix-blend-mode: soft-light;
}
.planFlex {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 30px;
  margin-bottom: 0px;
}
svg .heater-line-symbol {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}
svg .heater-line-symbol:nth-child(2) {
  opacity: var(--opacity2);
}
svg .heater-line-symbol:nth-child(1) {
  opacity: var(--opacity3);
}
svg .heater {
  opacity: 0.1;
}
svg .heater.confort {
  opacity: 1;
  fill: #DD4400;
  --opacity2: 0.9;
  --opacity3: 0.8}
svg .heater.eco{opacity: 1;
  fill: #DD4400;
  --opacity2: 0.4;
  --opacity3: 0.1}
.plaRdc{min-width: 100%;
  margin: 0px;
  margin-bottom: 0;
}
.plan svg {
  width: calc(100% - 20px);
  height: auto;
}
.plan svg .windDirection {
  border: 3px solid red;
}
.plan svg .temperature {
  font-size: 30pt;
  text-align: center;
  font-weight: 600;
  font-family: monospace;
}
.plan svg .temperature-decimal {
  font-size: 20pt;
  text-align: center;
  font-weight: 600;
  font-family: monospace;
}
.plan svg .temperature-arrow {
  font-size: 15pt;
  text-align: center;
  font-weight: 400;
}
.plan svg .presence {
  mix-blend-mode: difference;
}
.plan svg #shutter-1.-open {
  opacity: 0.1;
}
.plan svg #shutter-1.-close {
  opacity: 1;
}
.plan svg #shutter-1.-opening, .plan svg #shutter-1.-closing {
  animation: shutterOn 3s 0.2s infinite backwards;
}
@keyframes shutterOn {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.plan svg #stove-state {
  font-size: 20pt;
  color: black;
  mix-blend-mode: color-burn;
  font-weight: 500;
}
.plan svg #stove2 #fireflame {
  display: none;
}
.plan svg #stove2 #fireflameUp {
  display: none;
}
.plan svg #stove2 #pelletFilling {
  display: none;
}
.plan svg #stove2 #noPellets {
  display: none;
}
.plan svg #stove2 #clean {
  display: none;
}
.plan svg #stove2 #fireflameDown {
  display: none;
}
.plan svg #stove2.-ignition #fireflameUp {
  display: block;
}
.plan svg #stove2.-burning #fireflame {
  display: block;
}
.plan svg #stove2.-burningChecking #fireflame {
  display: block;
}
.plan svg #stove2.-ignition #fireflameUp {
  display: block;
}
.plan svg #stove2.-cleaning #clean {
  display: block;
}
.plan svg #stove2.-extinction #fireflameDown {
  display: block;
  stroke: #FFF;
}
.plan svg #stove2.-spreadHeating #stove-area {
  stroke: #703f3f;
  fill: #703f3fAA;
}
.plan svg #stove2.-cooling #stove-area {
  animation: stoveCooling 6s 0.2s infinite backwards;
  stroke: #703f3f;
}
.plan svg #stove2.-burningChecking #stove-area {
  stroke: #FFF;
}
.plan svg #stove2.-pelletFilling #pelletFilling {
  display: block;
}
@keyframes stoveSpreadHeating {
  0% {
    stroke-width: 2px;
  }
  50% {
    stroke-width: 200px;
    stroke: #703f3f00;
  }
  100% {
    stroke-width: 2px;
    stroke: #703f3f00;
  }
}
@keyframes stoveCooling {
  0% {
    stroke: #00F;
  }
  50% {
    stroke: #00F;
  }
  100% {
    stroke: #703f3f;
  }
}
@keyframes plan-cmv-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.plan svg g.plan-cmv .fan-blades {
  transform-origin: 0 0;
}
.plan svg g.plan-cmv.-power0 .fan-blades {
  animation: none;
}
.plan svg g.plan-cmv.-power1 .fan-blades {
  animation: plan-cmv-spin 4.5s linear infinite;
}
.plan svg g.plan-cmv.-power2 .fan-blades {
  animation: plan-cmv-spin 1.5s linear infinite;
}
.plan svg g.plan-cmv.fan-blade {
  fill: #FFFFFF77;
}
.plan svg g.plan-cmv.-power2 .fan-blade {
  fill: #C42020AA;
}
.-darkmode .plan svg g.plan-cmv .fan-blade {
  fill: #FFFFFF77;
}
.whoInState {
  display: none;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  color: #910;
  flex: 0 0 55px;
}
.plan svg line.-closed {
  stroke-width: 5px;
}
.-darkmode .plan svg .presencePatternLine {
  fill: white;
}
@media screen and (max-height: 400px) {
  .plaRdc {
    min-width: unset;
    margin: 10px auto;
    width: 70%;
  }
}
@media screen and (min-width: 760px) {
  .plan svg #stove-state {
    font-size: 20pt;
  }
  .plaRdc {
    min-width: 100%;
    margin: 5px 30px;
    margin-bottom: 0;
  }
  .plan svg {
    width: calc(100% - 60px);
    height: auto;
  }
}
@media screen and (max-width: 760px) {
  .firstLine {
    margin-bottom: 20px;
  }
  .UI-panel.-main .state {
    padding-left: 0px !important;
  }
  .UI-panel.-main .firstLine {
    margin: 10px 0;
  }
}
.settingContent {
  width: 100%;
  padding: 20px;
  overflow: auto;
}
.UI-panel.-editor {
  background-color: rgba(0, 0, 0, 0.3);
}
.centerContent {
  width: calc((100%  + var(--planWidth))  / 3);
  flex: 0 0 auto;
  display: flex;
}
.leftContent {
  width: calc(((100%  + var(--planWidth)) / 3) - var(--planWidth));
  flex: 0 0 auto;
  height: 100%;
}
.dashboard {
  width: 510px;
  max-width: 100%;
  flex: 1 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
}
.dashboard-rounded_counter {
  width: 100%;
  aspect-ratio: 1.7333333333;
  margin-top: 20px;
  max-width: 250px;
  margin: auto;
}
.dashboard-graph {
  width: 100%;
  height: 150px;
}
.linky-label {
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 9pt;
}
.linky-label_span {
  font-weight: bold;
}
@keyframes graphCurrent {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dashboard-graph .-current {
  animation: graphCurrent 1.3s 0.1s infinite backwards;
}
.chartSubtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: color-mix(in srgb, var(--font-color), transparent 30%);
  font-weight: bold;
  align-items: center;
  margin-top: -15px;
  text-align: center;
}
.linky-instantPower {
  font-size: 3em;
  line-height: 0.8em;
  font-weight: bold;
  margin-top: 0px;
}
.linky-unit {
  font-size: 1em;
  font-weight: bold;
}
.linky-duration {
  margin-top: 2px;
  font-size: 0.9em;
  font-weight: normal;
}
.linky-instantPower-euro {
  margin-top: 0px;
  font-size: 1em;
  font-weight: 500;
}
.dashboard-tile {
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.pomme path:nth-child(1) {
  transition: fill 0.3s linear;
}
.dashboard-tile_title {
  flex: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  padding: 4px 10px;
  width: 100%;
  background: linear-gradient(to right, #FFFFFF14, #FFFFFF00);
  font-weight: 600;
}
.-darmMode .dashboard-tile_title {
  background-color: #00000033;
}
.dashboard-tile_content {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
}
.tile {
  --tile-hue:var(--UI-hue);
  --tile-saturation:30%;
  --tile-luminosity:30%;
  text-align: center;
  height: 200px;
  width: 25%;
  min-width: 220px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border: 1px solid transparent;
  background: radial-gradient(circle at 50% 200%, hsla(var(--tile-hue), calc(var(--tile-saturation) * 0.3), calc(var(--UI-light-luminosity) * 1.3), 0.7), hsla(var(--tile-hue), calc(var(--tile-saturation) * 0.2), calc(var(--UI-light-luminosity) / 1.5), 0.1) 100%);
  border-image: radial-gradient(circle at 50% -120px, hsla(var(--tile-hue), 14%, 80%, 0.34), hsla(var(--tile-hue), 20%, 80%, 0) 100%) 1;
}
.-darkmode .tile {
  background: radial-gradient(circle at 50% 240%, hsla(var(--tile-hue), calc(var(--tile-saturation) * 1), var(--UI-light-luminosity), 0.55), hsla(var(--tile-hue), calc(var(--tile-saturation) * 0.4), var(--UI-light-luminosity), 0) 90%);
  border-image: radial-gradient(circle at 50% -120px, hsla(var(--tile-hue), 14%, var(--UI-light-luminosity), 0.7), hsla(var(--tile-hue), 20%, var(--UI-light-luminosity), 0) 100%) 1;
}
.tile.by2 {
  width: 50%;
}
.tile.by3 {
  width: 55%;
}
.tile.by4 {
  width: 60%;
}
.graph-subtitle {
  background-color: #FFFFFF77;
  color: #333;
  padding: 2px;
  font-weight: 600;
  margin-right: 2px;
}
.tile.-linky {
  width: 100%;
}
.tile.-linky .dashboard-tile_content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 0 20px;
  width: calc(100% - 40px);
}
.dashboard-tile_content_sub {
  display: flex;
  flex-direction: column;
  width: 58%;
}
.dashboard_tile_content_main {
  font-size: 4em;
  font-weight: bold;
  color: color-mix(in srgb, var(--font-color), transparent 10%);
}
.dashboard_tile_content_sub {
  font-size: 1.6em;
  margin: 0;
  margin-top: 10px;
  padding: 0;
  line-height: 1em;
  font-weight: bold;
  color: color-mix(in srgb, var(--font-color), transparent 10%);
}
.dashboard-tile.-temperature .dashboard_tile_content_main {
  font-size: 5.5em;
}
#dashboard-temperature span {
  font-size: 0.6em;
}
.dashboard-tile_content.-notification {
  overflow: scroll;
  height: 100%;
  max-height: calc(100% - 15px);
  container-type: inline-size;
  justify-content: flex-start;
  mask-image: linear-gradient(to bottom, #00000000, #000000 50px, #000000 calc(100% - 20px), #00000000 100%);
}
.dashboard-notification-container {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.dashboard-notification {
  min-height: 40px;
  max-height: 40px;
  font-weight: 500;
  width: 93%;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  border-bottom: 0px;
  justify-content: space-between;
  border: 1px solid #00000033;
  background-color: #FFFFFF33;
}
html.-darkmode .dashboard-notification {
  background-color: #00000033;
}
@container (min-width: 440px) {
  .dashboard-notification {
    min-height: 25px;
    max-height: 25px;
  }
}
.dashboard-notification_label {
  text-align: left;
  line-height: 1.5em;
  flex: 1 1 100%;
  font-size: 0.9em;
}
.dashboard-notification_label b {
  font-weight: 600;
}
.dashboard-notification_icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 5px;
  padding-left: 5px;
  margin-right: 5px;
  border-right: 1px solid #00000033;
  padding: 0 10px;
}
.dashboard-notification_icon svg {
  width: 25px;
  height: 25px;
}
.-weather .dashboard-tile_title {
  text-align: left;
  justify-content: flex-start;
}
.-weather .dashboard-tile_title.-alert {
  width: 100%;
}
.weather23 {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex: 1 1 auto;
  background: var(--mask);
}
.weather {
  display: flex;
  height: 100%;
  flex-direction: column;
  width: 100%;
  justify-content: flex-end;
  gap: 20px;
  flex-direction: column;
  background: var(--cloud), var(--luminary), var(--layer);
  --luminary:url('/ressources/Home/img/weatherBackground/sunny.png') no-repeat 100% -20px / 80% auto;
  --cloud:none;
  --layer:linear-gradient(to bottom,#619FCE,#619FCE);
  --mask:linear-gradient(188deg,hsla(var(--UI-hue),60%,var(--UI-luminosity),0.3) 30%,hsl(var(--UI-hue),20%,var(--UI-luminosity),1) 80%);
}
.weather.-night {
  --dddfontColor:hsla(57.82, 20.64%, 63.03%, 1);
  --luminary:url('/ressources/Home/img/weatherBackground/moon.png') no-repeat 100% -20px / 80% auto;
  --layer:linear-gradient(to top,#1F2235,#171926 80%);
  --mask:linear-gradient(188deg,hsl(232,var(--UI-saturation),var(--UI-luminosity),0.31) 0%,hsl(var(--UI-hue),var(--UI-saturation),var(--UI-luminosity),1) 100%);
}
.weather.-dusk {
  --dddfontColor:#9285ab;
  --luminary:none;
  --layer:linear-gradient(to top,#935F61,#69607B 80%);
  --mask:linear-gradient(188deg,hsl(300,30%,30%,0.31) 0%,hsl(var(--UI-hue),var(--UI-saturation),var(--UI-luminosity),1) 100%);
}
.weather.-dawn {
  --luminary:url('/ressources/Home/img/weatherBackground/sunny.png') no-repeat 130% 0px / 80% auto;
  --layer:linear-gradient(to top,#4D6071,#B57E5F 80%);
  --mask:linear-gradient(188deg,hsla(var(--UI-hue),60%,var(--UI-luminosity),0)  30%,hsl(var(--UI-hue),60%,var(--UI-luminosity),1) 100%);
}
.weather.-sunny {
  --fdddontColor:#5e5a17;
}
.weather.-overcast {
  --cloud:url('/ressources/Home/img/weatherBackground/overcast3.png') no-repeat 0 0 / 100% auto;
  --dddfontColor:#384547;
}
.weather.-overcast.-night {
  --dddfontColor:#b4b28e;
  --cloud:url('/ressources/Home/img/weatherBackground/overcast6.png') no-repeat 0 0 / 100% auto;
}
.weather.-passingCloud {
  --ffffontColor:#17555e;
  --cloud:url('/ressources/Home/img/weatherBackground/passingCloud3.png') no-repeat 0 0 / 100% auto;
}
.weather.-sunnySpell {
  --ffffontColor:#5e5a17;
  --cloud:url('/ressources/Home/img/weatherBackground/sunnySpell.png') no-repeat 0 0px / 100% auto;
}
.weather.-rain {
  --cloud:url('/ressources/Home/img/weatherBackground/rain8.png') no-repeat 0 -10px / 100% auto;
  --ffffontColor:#151f21;
}
.weather.-drizzle {
  --cloud:url('/ressources/Home/img/weatherBackground/rain47.png') no-repeat 0 -30px / 100% auto;
  --luminary:none;
  --ffffontColor:#151f21;
}
.weather.-hazy {
  --ffffontColor:#102124;
  background: linear-gradient(196deg, hsl(var(--UI-hue), 60%, 60%, 0) 1%, hsl(var(--UI-hue), 60%, 60%, 1) 80%), url('/ressources/Home/img/weatherBackground/hazy4.png') no-repeat 0 0 / 100% auto, url('/ressources/Home/img/weatherBackground/sunny.png') no-repeat 100% 0px / 80% auto, linear-gradient(204deg, #619FCE, #619FCE00);
}
.weather-icon {
  width: 30px;
  min-width: 30px;
  min-height: 20px;
  font-size: 1.2em;
}
.weather_main {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 2;
  height: 100px;
  gap: 20px;
  padding: 0 20px;
  flex: 1 1 auto;
  display: FLEX;
  flex-direction: row;
  justify-content: space-evenly;
}
.weather_main-container {
  flex: 1 1 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, transparent, transparent);
}
.weather_main-container.-large {
  flex: 2 1 auto;
  max-width: 50%;
}
.weather_temperature2 {
  font-weight: 600;
  color: var(--font-color);
  font-size: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 2px #000;
}
.weather_temperature3 {
  font-weight: 500;
  font-size: 9pt;
  color: var(--font-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.weather_temperature4 {
  margin-left: 12px;
  line-height: 0.8em;
  margin-bottom: 3px;
}
.weather_temperature_triangle {
  display: inline-block;
  height: 0;
  width: 0;
  border-top: 6px solid #21a3db;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
}
.weather_temperature_triangle2 {
  margin-left: 5px;
  display: inline-block;
  height: 0;
  width: 0;
  border-right: 3px solid transparent;
  border-bottom: 6px solid #db2121;
  border-left: 3px solid transparent;
}
.weather_wind {
  width: 65px;
  height: 65px;
  border-radius: 50px;
  --windColor: #00000033;
  border: 2px dotted var(--font-color);
  --windColor: var(--font-color);
  background: #FFFFFF33;
}
html.-darkmode .weather_wind {
  background: #00000044;
}
.weather_wind_arrow-container {
  height: 0px;
  border-radius: 50px;
}
.weather_wind_arrow-container2 {
  height: 69px;
  width: 69px;
  margin-left: -2px;
  margin-top: -2px;
  transform-origin: 50% 50%;
  transition: transform 1s ease-in;
}
.weather_wind_arrow {
  display: inline-block;
  height: 0;
  width: 0;
  border-right: 4px solid transparent;
  border-bottom: 10px solid var(--windColor);
  border-left: 4px solid transparent;
}
.weather_wind_content {
  transform: rotate(0deg);
  display: grid;
  grid-template-areas: "n n n" "w c e" "s s s";
  grid-template-columns: 5px auto 5px;
  grid-template-rows: 5px auto 5px;
  height: 100%;
  width: 100%;
  margin-top: 4px;
}
.weather_wind_north {
  grid-area: n;
  font-size: 6pt;
  color: #F00;
  display: flex;
  width: 100%;
  justify-content: center;
  transform: translateY(px);
  color: #C42020;
  font-weight: 600;
}
.weather_wind_east {
  grid-area: e;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-2px);
  font-size: 6pt;
  color: var(--font-color);
  font-weight: 600;
}
.weather_wind_south {
  grid-area: s;
  font-size: 6pt;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-4px);
  color: var(--font-color);
  font-weight: 600;
}
.weather_wind_west {
  grid-area: w;
  transform: translateX(2px);
  font-size: 6pt;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-color);
  font-weight: 600;
}
.weather_wind_datas {
  grid-area: c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.weather_wind_fast {
  font-weight: 600;
  color: var(--font-color);
  line-height: 0.8em;
  font-size: 1.6em;
}
.weather_wind_unit {
  font-weight: 500;
  font-size: 7pt;
  color: var(--font-color);
}
.weather_main-other {
  flex-direction: column;
  display: flex;
  justify-content: space-evenly;
  height: 60px;
  max-width: 100%;
  color: var(--font-color);
}
.weather_main-other_element {
  font-size: 10pt;
  width: 100%;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.weather_main-other_element_value {
  font-weight: bold;
  display: inline;
}
.weather_main-other_element_title {
  font-size: 9pt;
  display: inline;
}
.weather_not-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.weather_daily-forecast {
  height: 25px;
  font-weight: 500;
  width: 93%;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  border-bottom: 0px;
  justify-content: space-between;
  color: var(--font-color);
  border: 1px solid #00000033;
  background-color: #FFFFFF33;
}
.-night .weather_daily-forecast {
  background-color: #00000044;
}
.weather_daily-forecast_label {
  text-align: center;
  flex: 1 1 100%;
}
.weather_daily-forecast_icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-right: 1px solid var(--font-color);
  padding-right: 5px;
  padding-left: 5px;
  margin-right: 5px;
}
.weather_daily-forecast_temperature {
  padding-left: 4px;
}
.weather_week-forecast {
  width: 100%;
  height: 55px;
  flex: 0 0 55px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: var(--font-color);
}
.weather_week-forecast_element {
  display: flex;
  flex-direction: column;
  height: 80%;
  align-items: center;
  justify-content: center;
  flex: 1 1 100%;
  border-left: 1px solid var(--font-color);
}
.weather_week-forecast_element:nth-child(1) {
  border-left: 0px solid #00000055;
}
.weather_week-forecast_elemen_title {
  margin-bottom: 4px;
  font-size: 0.8em;
}
.weather_week-forecast_elemen_temperature {
  font-size: 0.8em;
  margin-top: 2px;
}
h1 {
  font-size: 4em;
}
*:focus {
  outline: none;
}
.svg-icon .-close-path {
  display: block;
}
.svg-icon .-open-path {
  display: none;
}
.svg-icon.-open .-close-path {
  display: none;
}
.svg-icon.-open .-open-path {
  display: block;
}
.button.done .icon {
  background: url(/ressources/Home/img/icon/tick__100_white.png), radial-gradient(circle at 50% 50%, #761e1e, #761e1e 58%, rgba(118, 30, 30, 0) 58%);
  background-repeat: no-repeat, no-repeat;
  background-position: 50% 55%, 50% 50%;
  background-size: 20px 20px, 100% 100%;
}
.button.done .label {
  color: #761e1e;
}
.dashboard-tile_content.-music {
  justify-content: space-between;
}
.dashboard-music_title {
  display: flex;
  height: 25px;
  justify-content: center;
  flex-direction: column;
  margin-left: 105px;
  width: calc(100% - 105px);
  font-size: 11pt;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.dashboard-music_coverflow .-last .dashboard-music_coverflow_cover {
  width: 95px;
  height: 95px;
  background: url('https://sothebys-md.brightspotcdn.com/webnative/images/29/88/d9f7e03849119bdd891c3d423371/n11132-cfhwh-t1-02.jpg');
  background-size: contain;
  filter: grayscale(50%);
}
.dashboard-music_coverflow .-last {
  z-index: 7;
}
.dashboard-music_coverflow {
  position: relative;
  display: flex;
  width: 100%;
  flex: 0 0 133px;
  justify-content: space-between;
  align-items: center;
  mask-image: linear-gradient(to right, #00000055, #000000 30px, #000000 calc(100% - 30px), #00000055 100%);
  overflow: hidden;
}
.dashboard-music_coverflow_prev {
  flex: 0 0 50%;
  max-width: 0px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.dashboard-music_coverflow_prev .dashboard-music_coverflow_cover {
  background: url('https://cdns-images.dzcdn.net/images/cover/b691ee9fae05c7cf96d9c3aae286de40/500x500.jpg');
  transform: perspective(300px) translateX(0px) rotateY(40deg);
  z-index: 1;
  transform-origin: 50% 50%;
  background-size: contain;
}
.dashboard-music_coverflow_cover {
  background: url('https://www.chartsinfrance.net/communaute/uploads/monthly_2024_05/IMG_0080.jpeg.5283f95b754bfce2070cfb8ebd59fb69.jpeg');
  background-size: contain;
  background-position: 0 0;
  width: 95px;
  min-width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 0 3px #000;
}
.dashboard-music_coverflow_current_line {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #1ae63c 40%, transparent 40%);
}
.dashboard-music_coverflow_current {
  position: relative;
  transform: perspective(300px) translateX(0px) rotateY(0deg);
  z-index: 400;
  flex: 0 0 130px;
  display: flex;
  justify-content: center;
}
.dashboard-music_coverflow_current .dashboard-music_coverflow_cover {
  z-index: 400;
  width: 120px;
  min-width: 120px;
  height: 120px;
}
.dashboard-music_coverflow_next {
  position: relative;
  z-index: 12;
  display: flex;
  flex: 0 0 calc(50% - 100px);
  justify-content: center;
  flex: 0 0 50%;
  max-width: 0px;
}
.dashboard-music_coverflow_next .dashboard-music_coverflow_cover {
  background: url('https://www.mylene.net/img/album-avant-que-l-ombre-1.jpg');
  background-size: contain;
  transform: perspective(300px) translateX(0px) scale(1.08) rotateY(-40deg);
  transform-origin: 50% 50%;
  background-size: contain;
}
.dashboard-music_track-title {
  font-weight: 600;
  font-size: 12pt;
  transform: translateY(-7px);
}
.dashboard-music_track-title_artist {
  font-weight: 500;
  font-size: 10pt;
}
.dashboard-music_track-commands {
  display: flex;
  width: 100%;
  font-weight: 700;
  font-size: 1.5em;
  justify-content: space-between;
  align-items: flex-end;
}
.dashboard-music_track-command {
  border-top: 1px solid #00000044;
  border-right: 1px solid #00000044;
  background-color: #00000044;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0px 40px 0 0;
}
.dashboard-music_track-command.-left {
  background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/500px-Speaker_Icon.svg.png) 3px 70% / 21px 21px no-repeat;
}
.dashboard-music_track-command.-right {
  opacity: 0;
  border-left: 1px solid #00000044;
  border-right: 0px solid #00000044;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px 0px 0 0;
}
.whoIn {
  overflow: visible;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 0;
  max-height: 0;
  margin-left: 15px;
}
.whoIn > div {
  margin-top: -100px;
  flex: 0 0 auto;
  width: 70px;
  height: 140px;
  mask-image: linear-gradient(to top, #00000000 20px, #000000 20px);
}
.whoIn img {
  max-height: 100%;
  transition-property: filter, opacity;
  filter: grayscale(1%);
}
.whoIn img.off {
  opacity: 0.2;
  filter: grayscale(100%) contrast(0%) brightness(0%) drop-shadow(0px 0px 2px #fff);
}
.whoIn img.inBed {
  opacity: 0.3;
  filter: drop-shadow(0px 0px 2px #000);
}
.UI-background-container {
  position: absolute;
  left: 0px;
  top: 0px;
  max-height: 100%;
  height: 100%;
}
.UI-background_rect {
  transition-property: fill;
  transition-duration: 0.3s;
  --deltaLuminosity:0;
  --color:hsl(var(--UI-hue),var(--UI-saturation),var(--UI-luminosity));
  fill: hsl(from var(--color) h calc(s * 0.5) calc(l));
  opacity: var(--opacity);
}
html.-darkmode .UI-background_rect {
  opacity: 0.3;
}
@keyframes UI_calc__logo-snooze {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0px hsla(var(--UI-hue), 30%, 50%, 0.3));
  }
  42% {
    transform: translateY(-33px) scale(1.33);
    filter: drop-shadow(0 0 20px hsla(var(--UI-hue), 30%, 55%, 0.6));
  }
  50% {
    transform: translateY(-33px) scale(1.33);
    filter: drop-shadow(0 0 20px hsla(var(--UI-hue), 30%, 55%, 0.6));
  }
  85% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0px hsla(var(--UI-hue), 30%, 50%, 0.3));
  }
}
@keyframes UI_calc__dot {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  30% {
    transform: translateY(-14px);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 0.35;
  }
}
.UI_calc {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s linear;
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 10%, 1), hsla(var(--UI-hue), 30%, 30%, 1));
  backdrop-filter: blur(16px);
  z-index: 1200;
  font-weight: bold;
  color: hsl(var(--UI-hue), 18%, 58%);
}
.UI_calc .UI_calc_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
}
.UI_calc .UI_calc_logo {
  height: 150px;
}
.UI_calc .UI_calc_logo svg {
  height: 150px;
  width: 150px;
}
.UI_calc .UI_calc_title {
  font-size: 4rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.UI_calc .UI_calc_hint {
  display: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--UI-hue), 22%, 62%);
  margin-top: 10px;
}
.UI_calc .UI_calc_loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 20px;
  margin-top: 25px;
  flex-shrink: 0;
  pointer-events: none;
}
.UI_calc .UI_calc_loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: hsl(var(--UI-hue), 18%, 58%);
  box-shadow: 0 0 12px hsla(var(--UI-hue), 60%, 50%, 0.45);
  animation: UI_calc__dot 1.5s ease-in-out infinite;
}
.UI_calc .UI_calc_loader span:nth-child(2) {
  animation-delay: 0.15s;
}
.UI_calc .UI_calc_loader span:nth-child(3) {
  animation-delay: 0.3s;
}
.UI.-stand-by .UI_calc {
  opacity: 1;
  pointer-events: auto;
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 5%, 0.94), hsla(var(--UI-hue), 30%, 3%, 0.97));
}
.UI.-stand-by .UI_calc .UI_calc_logo {
  animation: UI_calc__logo-snooze 10s linear infinite;
}
.UI.-login .UI_calc {
  opacity: 1;
  pointer-events: auto;
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 10%, 0.92), hsla(var(--UI-hue), 30%, 30%, 0.87));
}
.UI.-login .UI_calc .UI_calc_hint.-login {
  display: block;
}
.UI.-boot .UI_calc {
  opacity: 1;
  pointer-events: auto;
}
.UI.-boot .UI_calc .UI_calc_loader {
  display: flex;
}
html:has(body.UI.-stand-by) {
  background-color: #000;
}
.UI_calc_login {
  display: none;
  width: 100%;
  max-width: 400px;
  height: 100%;
  position: relative;
  z-index: 1;
  transform: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-property: opacity, transform;
  transition-duration: 1.3s;
  box-shadow: 0px 0px 40px #33333360;
  opacity: 1;
  border: 1px solid transparent;
  background: radial-gradient(circle at 50% 140%, hsla(var(--UI-hue), calc(var(--UI-saturation) * 1), var(--UI-light-luminosity), 0.65), hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.4), var(--UI-light-luminosity), 0.1) 90%);
  border-image: radial-gradient(circle at 50% -120px, hsla(var(--UI-hue), 10%, var(--UI-light-luminosity), 0.8), hsla(var(--UI-hue), 20%, var(--UI-light-luminosity), 0) 100%) 1;
  color: hsla(var(--UI-hue), 20%, 3%, 0.6);
  color: #FFFFFFAA;
}
.UI.-login .UI_calc_login {
  display: flex;
}
.UI-login_panel {
  max-height: 0px;
  height: 100%;
  overflow: hidden;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  transition-property: max-height, height, opacity, color;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.UI-login_title {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3em;
}
.UI-login_title_star {
  display: inline-block;
  margin: 0 3px;
  line-height: 0.4em;
  transform: translateY(25px);
  font-size: 2.5em;
}
.UI_calc_login .-error .UI-login_title_star {
  color: #C42020;
}
.UI-keypad {
  display: flex;
  width: 320px;
  justify-content: center;
  flex-wrap: wrap;
}
.UI-keypad_key {
  display: flex;
  width: 65px;
  height: 65px;
  margin: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF22;
  border-radius: 100px;
  background: linear-gradient(-145deg, #FFFFFF00, #FFFFFF22);
  transition: box-shadow 0.2s;
  font-size: 3em;
  font-weight: bold;
  cursor: pointer;
}
.UI-keypad_key:hover {
  color: #FFFFFFAA;
}
.UI-keypad_key.-clicked {
  animation: UI-keypad_key__click 0.3s linear backwards;
}
.UI-keypad_key:hover {
  border: 1px solid #FFFFFF66;
}
.UI-keypad_key .icon {
  font-size: 21pt;
}
.UI-keypad_key.-ok .svg-icon {
  height: 40px;
  width: 40px;
}
.UI-keypad_key.-ok .svg-icon.-load {
  display: none;
}
.login-form.-in-load .UI-keypad_key.-ok .svg-icon {
  display: none;
}
.login-form.-in-load .UI-keypad_key.-ok .svg-icon.-load {
  display: block;
}
@keyframes UI-keypad_key__click {
  0% {
    box-shadow: 0 0 2px white;
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0);
  }
}
.UI_calc_login[name=login-form] .UI-login_panel.-login {
  flex: 2 1 auto;
  max-height: 100%;
}
.UI_calc_login[name=registration-form] .UI-login_panel.-registration {
  flex: 2 1 auto;
  max-height: 100%;
}
.UI-login_panel_link {
  margin-top: 5px;
  text-align: center;
  color: var(--light-font-color);
  text-decoration: underline;
  opacity: 0.8;
  font-weight: 600;
}
.UI_calc_login .UI-form_line.-hidden {
  display: none;
}
.UI-login_paragraph {
  padding: 0px 15px;
  margin: 0;
  font-weight: 500;
}
.UI.-login .UI_calc_login {
  opacity: 1;
  transform: translateX(0px);
  pointer-events: auto;
}
.UI.-login .UI-panel-container, .UI.-login .UI_dock {
  display: none;
  pointer-events: none;
}
.UI.-login .UI_popup-container {
  z-index: 1400;
  pointer-events: auto;
}
.UI.-login .UI-panel-container > * {
  opacity: 0;
  transition-property: opacity;
}
.UI.-login .UI-header_element:not(.-main) {
  display: none;
}
.UI.-login .UI-header_menu {
  display: none;
}
.UI.-login .UI-control-center {
  display: none;
}
.UI-control-center.-open {
  transform: translateY(calc(-100% + 100px));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.UI-control-center:not(.inInteraction) {
  transition: transform 0.3s ease-out, backdrop-filter 0.3s ease-out, top 0.3s linear;
}
.UI-control-center {
  width: 99%;
  height: 100%;
  max-width: var(--planWidth);
  z-index: 60;
  text-align: center;
  position: absolute;
  background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  top: calc(100% - 50px);
  transition: none;
}
.UI-control-center.-hidden {
  top: 100%;
}
.UI-control-center_header {
  display: flex;
  width: 100%;
}
.whoIn {
  overflow: visible;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 0;
  max-height: 0;
  margin-left: 15px;
}
.whoIn > div {
  margin-top: -100px;
  flex: 0 0 auto;
  width: 70px;
  height: 140px;
  mask-image: linear-gradient(to top, #00000000 20px, #000000 20px);
}
.whoIn img {
  max-height: 100%;
  transition-property: filter, opacity;
  filter: grayscale(1%);
}
.whoIn img.off {
  opacity: 0.2;
  filter: grayscale(100%) contrast(0%) brightness(0%) drop-shadow(0px 0px 2px #fff);
}
.whoIn img.inBed {
  opacity: 0.3;
  filter: drop-shadow(0px 0px 2px #000);
}
.UI-control-center_header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 47px;
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.UI-control-center_state_line {
  mask-image: linear-gradient(to right, #000000 95%, #00000000 100%);
  display: flex;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  padding-left: 5px;
  gap: 5px;
}
.a-state {
  min-width: 90px;
  height: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  font-weight: 500;
  padding: 0 3px;
  margin-left: 10px;
  background: hsl(from var(--UI-main-color) h s calc(s * 1.1));
  border-radius: 6px;
  box-shadow: 0 0 3px #000000AA inset;
  border: 1px solid hsl(from var(--UI-main-color) h s calc(l * 0.3));
  color: var(--font-color);
  font-size: 0.7em;
}
.a-bloc {
  min-width: 48px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  color: var(--font-color);
  margin: 0 5px;
}
.separator {
  height: 30px;
  width: 1px;
  background: hsl(from var(--UI-main-color) h s calc(l * 0.3));
}
.a-state .svg-icon {
  width: 32px;
  height: 22px;
}
.a-bloc .svg-icon {
  width: 34px;
  height: 24px;
}
@keyframes device-widget-loading-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.device-widget {
  width: 130px;
  height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  --border-radius:55px;
}
.device-widget.-invisible {
  opacity: 0;
  max-height: 1px;
}
.device-widget.-pointer-gesture {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.device-widget::after {
  content: "";
  min-height: 2px;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  width: 96px;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.device-widget_button {
  --widget-color:var(--background-color);
  display: flex;
  width: 105px;
  height: 105px;
  transform: translateY(12px);
  border-radius: var(--border-radius);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  transition-property: background, box-shadow, transform;
  transform-origin: 50% 50%;
  padding: 6px;
}
.device-widget_button.-tilt-right {
  transform: translateY(13px) translateX(10px) rotate(30deg);
}
.device-widget_button.-tilt-left {
  transform: translateY(13px) translateX(-10px) rotate(-30deg);
}
.device-widget_button.-loading {
  animation: device-widget-loading-pulse 2s ease-in-out infinite;
}
.device-widget_button:not(.-off-keep-bg).-off {
  background: none !important;
}
.device-widget_button.-off {
  transform: translateY(35px);
}
.device-widget_button_content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px 1px 9px 1px;
  border-radius: var(--border-radius);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.7) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(12px);
  text-align: center;
  transition-property: background;
  background: radial-gradient(circle at 50% 100%, hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.7), 80%, 0.55), hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.7), calc(var(--UI-luminosity)), 0.55) 100%);
  color: hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.7), var(--UI-contrast-luminosity) 80%);
}
.-darkmode .device-widget_button_content {
  background: hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.7), calc(var(--UI-luminosity) * 0.86), 0.8);
}
.device-widget_button.-off .device-widget_button_content {
  background: #00000011;
  box-shadow: none;
}
.device-widget_button.-off .device-widget_button_content .device-widget_button_icon, .device-widget_button.-off .device-widget_button_content .device-widget_button_title {
  opacity: 0.8;
}
.-darkmode .device-widget_button.-off .device-widget_button_content {
  background: #00000022;
}
.device-widget_button_icon {
  width: 39px;
  flex: 0 0 26px;
  opacity: 0.75;
}
.device-widget_button_title {
  min-height: 25px;
  max-height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 16px;
  padding: 0 3px;
  padding-top: 1px;
  font-weight: 400;
  letter-spacing: 1px;
  text-wrap: balance;
  font-size: 0.9em;
}
.device-widget_button_state {
  padding-top: 3px;
  flex: 0 0 auto;
  letter-spacing: 1px;
  font-size: 0.7em;
  font-weight: bold;
}
.device-card {
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  text-align: left;
  flex: 0 0 auto;
  background: radial-gradient(circle at 0px 0px, hsla(var(--UI-hue), 100%, 6%, 0.6) 70px, #00000066 70px, #00000066 71px, transparent 71px);
}
.-alive .device-card {
  background: radial-gradient(circle at 0px 0px, hsla(var(--UI-hue), 30%, 60%, 0.2) 70px, #00000066 70px, #00000066 71px, transparent 71px), radial-gradient(circle at 0px 0px, #FFFFFF55 40px, transparent 170px);
}
.device-card_header {
  display: flex;
  height: 50px;
  justify-content: center;
  gap: 10px;
  align-items: center;
  width: 100%;
}
.device-card_name {
  font-size: 1.2em;
  font-weight: bold;
  flex: 1 1 100%;
  text-align: center;
}
.device-card_header_icon {
  justify-content: center;
  align-items: center;
  flex: 0 0 50px;
  padding-top: 10px;
  text-align: center;
  color: #FFFFFF99;
}
.-alive .device-card .device-card_header_icon {
  color: var(--font-color);
}
.device-card_header-more-options-icon {
  justify-content: center;
  align-items: center;
  flex: 0 0 30px;
  padding-left: 10px;
}
.device-card_content {
  font-size: 0.8em;
}
.UI_dock {
  display: flex;
  width: calc(100%);
  bottom: 0;
  left: 0;
  width: calc(100% - 0px);
  bottom: 0px;
  padding-bottom: 15px;
  height: var(--dock-height);
  position: fixed;
  align-items: center;
  justify-content: center;
  z-index: 600;
  gap: 0px;
  box-shadow: 0 0 3px #000000AA, 0 0 12px #00000027, 0 0 17px #00000027;
  overflow: hidden;
  background: hsla(var(--UI-hue), 53%, 53%, 0.25);
  backdrop-filter: blur(10px) saturate(150%) brightness(60%);
}
.UI-kiosk.-no-activity .UI_dock {
  background: hsla(var(--UI-hue), 0%, 30%, 0.3);
}
.-darkmode .UI_dock {
  background: hsla(var(--UI-hue), 39%, 55%, 0.3);
  backdrop-filter: blur(10px) saturate(130%) brightness(60%);
}
.UI_dock_popup-action {
  display: none;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: width 0.3s linear;
}
.UI_dock_popup-action_button {
  display: flex;
  width: 100%;
  align-items: center;
  color: white;
  border: 1px solid transparent;
  border-bottom: 0px solid transparent;
  border-image: radial-gradient(circle at 50% 0px, hsla(var(--UI-hue), 0%, 100%, 0.8) 0%, hsla(var(--UI-hue), 0%, 100%, 0.2) 60%) 1;
  justify-content: center;
  text-decoration: underline;
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
  background: #FF000055;
}
.UI_dock_taskbar {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0 0;
  flex: 1 1 auto;
  direction: rtl;
  justify-content: flex-start;
  align-items: center;
  gap: 0px;
  overflow: scroll;
  touch-action: pan-x;
  transition: width 0.3s linear;
  mask-image: linear-gradient(to right, #00000000 0px, #000000 30px);
  opacity: 1;
}
.UI_dock_taskbar_content {
  display: flex;
  height: 100%;
  flex: 1 1 auto;
  direction: ltr;
  justify-content: flex-end;
  align-items: center;
  gap: 0px;
}
.UI_dock_task_pinned {
  height: 100%;
  order: 1;
  display: flex;
  box-shadow: 0 0 4px #00000088 inset;
  background: #00000033;
}
.UI_dock_task_pinned-label {
  display: flex;
  height: 100%;
  width: 30px;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: sideways-right;
  border-bottom: 1px solid hsla(var(--UI-hue), 30%, 40%, 1);
  color: var(--light-font-color);
  font-size: 0.7rem;
  font-weight: 600;
}
.UI_dock_task {
  display: flex;
  height: 100%;
  min-width: 190px;
  max-width: 190px;
  overflow: hidden;
  gap: 3px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border: 1px solid transparent;
  border-bottom: 0px solid transparent;
  font-weight: 400;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4rem;
  color: #FFFFFFCC;
  cursor: pointer;
  border-image: radial-gradient(circle at 50% 10%, hsla(var(--UI-hue), 0%, 100%, 0.4) 10%, hsla(var(--UI-hue), 0%, 100%, 0.05) 100%) 1;
}
.UI_dock_task.-small {
  line-height: 1.1rem;
}
.UI_dock_task.-alive {
  font-weight: 700;
}
.UI_dock_task.-focus {
  background: radial-gradient(circle at 50% 140%, hsla(var(--UI-hue), calc(var(--UI-saturation)), 60%, 1), hsla(var(--UI-hue), calc(var(--UI-saturation) * 1), 60%, 0) 100%);
}
.UI_dock_task:active {
  transform: scale(0.97);
}
.UI_dock_task:hover {
  border-image: radial-gradient(circle at var(--cursorX) var(--cursorY), hsla(var(--UI-hue), 0%, 100%, 0.8) 10%, hsla(var(--UI-hue), 0%, 100%, 0.2) 100%) 1;
}
.UI_dock_task_label {
  display: -webkit-box;
  max-height: inherit;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}
.UI_dock_button {
  display: flex;
  height: calc(100%);
  aspect-ratio: 1;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  color: var(--light-font-color);
  max-width: var(--dock-height);
  transition: max-width 0.3s linear, opacity 0.3s linear;
  cursor: pointer;
  border: 1px solid transparent;
  border-bottom: 0px solid transparent;
  border-image: radial-gradient(circle at 50% 10%, hsla(var(--UI-hue), 0%, 100%, 0.4) 10%, hsla(var(--UI-hue), 0%, 100%, 0.05) 100%) 1;
}
.UI_dock_button .UI-icon {
  --icon-size: 40px;
}
.UI_dock_button.-alive {
  border-image: radial-gradient(circle at 50% 0%, hsla(var(--UI-hue), 100%, 60%, 1), hsla(var(--UI-hue), 100%, 30%, 0.8) 100%) 1;
  box-shadow: 0 0 3px #000 inset;
  background: hsla(var(--UI-hue), 100%, 15%, 0.5);
}
.UI_dock_button:active {
  transform: scale(0.97);
}
.UI_dock_button:hover {
  border-image: radial-gradient(circle at var(--cursorX) var(--cursorY), hsla(var(--UI-hue), 0%, 100%, 0.8) 10%, hsla(var(--UI-hue), 0%, 100%, 0.2) 100%) 1;
}
.UI_dock_button.-main {
  max-width: none;
  min-width: 120px;
  gap: 8px;
  font-weight: 600;
}
.UI_dock_button.-burger {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: width 0.3s linear;
}
.UI_dock_button_burger-line {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 4px;
  transition-property: width, background-color, transform, margin, height;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transform-origin: 50% 50%;
}
.UI-kiosk.-display-home-bar .UI_dock_button_burger-line:nth-child(1), .UI-kiosk.-display-AP-bar .UI_dock_button_burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px) translateX(7px);
}
.UI-kiosk.-display-home-bar .UI_dock_button_burger-line:nth-child(2), .UI-kiosk.-display-AP-bar .UI_dock_button_burger-line:nth-child(2) {
  height: 0;
  margin: 0 auto;
  background-color: transparent;
}
.UI-kiosk.-display-home-bar .UI_dock_button_burger-line:nth-child(3), .UI-kiosk.-display-AP-bar .UI_dock_button_burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px) translateX(7px);
}
.UI_dock_updater {
  display: none;
  flex: 3 0 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  gap: 5px;
  text-align: center;
  background: rgba(255, 51, 51, 0.85);
  cursor: pointer;
  font-weight: 600;
  color: var(--light-font-color);
  animation: UI-kiosk_updater-blink 4s linear infinite;
}
.UI-kiosk.-deprecated .UI_dock > *:not(.UI_dock_updater) {
  display: none;
}
.UI-kiosk.-deprecated .UI_dock_updater {
  display: flex;
}
@keyframes UI-kiosk_updater-blink {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.UI_launcher {
  display: flex;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 550;
  left: 0;
  top: 0;
  padding: 10px;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: calc(10px + var(--dock-height));
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(circle at 100% 80%, hsla(var(--UI-hue), 30%, 0%, 0.8) 15%, hsla(var(--UI-hue), 30%, 10%, 0.2));
  pointer-events: none;
}
.UI_launcher.-open {
  opacity: 1;
  pointer-events: auto;
}
.UI_launcher.-open .UI_launcher_app {
  animation: launchpad-bounce-in 0.55s var(--animation-delay) cubic-bezier(0.22, 0.9, 0.3, 1.2) forwards;
}
.UI_launcher_title {
  font-size: 1.2rem;
  font-weight: 700;
  width: 270px;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFFFFBB;
}
.UI_launcher_app-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.UI_launcher_app {
  display: flex;
  width: 270px;
  height: 60px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-evenly;
  gap: 15px;
  background: radial-gradient(circle at 120% 50%, hsla(var(--UI-hue), 70%, 45%, 0.2) 0%, hsla(var(--UI-hue), 30%, 45%, 0) 200px);
  cursor: pointer;
  backdrop-filter: blur(30px) brightness(150%);
  border: 1px solid #FFFFFF33;
  border-image: radial-gradient(circle at 50% -140%, #FFFFFFFF, #FFFFFF00 100%) 1;
  opacity: 0;
  cursor: pointer;
  transform-origin: 0% 100%;
  color: #FFFFFFBB;
  --animation-delay:0s;
  --cursorX:50%;
  --cursorY:50%;
}
.UI_launcher_app .UI-icon {
  --icon-size:35px;
  flex: 0 0 35px;
  opacity: 0.85;
}
.UI_launcher_app:active {
  transform: scale(0.97);
}
.UI_launcher_app:hover {
  background: radial-gradient(circle at var(--cursorX) var(--cursorY), hsla(var(--UI-hue), 70%, 55%, 0.44) 10%, hsla(var(--UI-hue), 30%, 45%, 0.1) 200px);
}
.UI_launcher_app.-focus {
  background: radial-gradient(circle at 50% 0, hsla(var(--UI-hue), 70%, 55%, 0.44) 10%, hsla(var(--UI-hue), 30%, 45%, 0.1) 200px);
}
.UI_launcher_app:nth-last-child(1) {
  --animation-delay:0s;
}
.UI_launcher_app:nth-last-child(2) {
  --animation-delay:0.1s;
}
.UI_launcher_app:nth-last-child(3) {
  --animation-delay:0.2s;
}
.UI_launcher_app:nth-last-child(4) {
  --animation-delay:0.3s;
}
.UI_launcher_app:nth-last-child(5) {
  --animation-delay:0.4s;
}
.UI_launcher_app:nth-last-child(6) {
  --animation-delay:0.5s;
}
.UI_launcher_app:nth-last-child(7) {
  --animation-delay:0.6s;
}
.UI_launcher_app:nth-last-child(8) {
  --animation-delay:0.7s;
}
.UI_launcher_app:nth-last-child(9) {
  --animation-delay:0.8s;
}
.UI_launcher_app:nth-last-child(10) {
  --animation-delay:0.9s;
}
.UI_launcher_app_title {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.1rem;
  text-align: left;
  line-height: 1.4rem;
  font-weight: 700;
}
@keyframes launchpad-bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-4px);
  }
  80% {
    transform: scale(0.95) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.UI-form_line {
  display: flex;
  flex: 0 0 auto;
  flex-direction: line;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
}
form .mainErrorArea {
  color: #900;
  font-weight: bold;
}
form .mainErrorArea ul {
  padding-top: 0;
  margin-top: 0;
}
form .UI-form_line:last-child {
  margin-bottom: 0;
}
form .UI-form_line:first-child {
  margin-top: 0;
}
form .UI-form_line > span.label {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: var(--main-highlight-color);
  letter-spacing: 1px;
  font-size: 0.9em;
  height: 16px;
  transform: translateX(1px);
}
form .UI-form_line .helper {
  color: #333;
  font-size: 10pt;
  font-style: italic;
  text-align: right;
  flex: 1 1 auto;
  height: 16px;
}
form .UI-form_line.inError {
  border-bottom: 2px solid #C32020;
}
form .UI-form_line .errorLabel {
  color: #C32020;
  font-size: 10pt;
  display: flex;
}
form .UI-form_line .errorLabel:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(/ressources/Home/img/icon/alert__32_red.png);
  background-size: 100% 100%;
  background-position: 50% 50%;
  margin: 0px 3px;
}
form .UI-form_line.inError .helper {
  display: none;
}
form .UI-form_line .widget {
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 34px;
  padding-left: 10px;
  color: rgba(0, 0, 0, 0.8);
  transition-duration: 0.6s;
  transition-property: background-size, background-position;
  background: linear-gradient(to right, #000 0%, #000 100%), linear-gradient(to top, #FFFFFF30 0px, #FFFFFF30);
  background-size: 0 1px, 100% 100%;
  background-position: 50% 100%, 50% 50%;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  box-shadow: 0 0 1px #00000066;
  font-size: 1.1em;
}
.UI-form_line.focus .widget {
  background-size: 100% 1px, 100% 100%;
  background-position: 50% 100%;
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
}
form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  padding-left: 5px;
  border-left: 2px solid #000;
  margin: 5px 15px;
  width: calc(100% - 30px);
  display: flex;
  flex-direction: line;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  border-color: var(--main-highlight-color);
}
form fieldset legend {
  font-weight: 600;
  color: var(--main-highlight-color);
  padding-right: 15px;
}
form fieldset legend::before {
  content: '- ';
}
form fieldset + fieldset {
  margin-top: 20px;
}
form fieldset .UI-form_line {
  margin-right: 15px;
  width: calc(100% - 15px);
  margin-left: 0;
}
form .UI-form_line textarea.widget {
  height: 100px;
}
.UI-form_line .select2 {
  min-width: 100%;
}
.UI-form_line .widget.switch input {
  max-width: 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
}
.UI-form_line .widget.switch .slider {
  width: 50px;
  height: 26px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
}
.UI-form_line .widget.switch .switchLabel {
  margin-left: 5px;
}
.UI-form_line .widget.switch .switchLabel .on {
  color: #070;
  display: none;
}
.UI-form_line .widget.switch .switchLabel .off {
  color: #444;
}
.UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
  display: block;
}
.UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
  display: none;
}
.UI-form_line .widget.switch .slider:after {
  content: "o";
  height: 18px;
  width: 18px;
  font-size: 9pt;
  margin-left: 3px;
  display: inline-block;
  background-color: white;
  transition: 0.4s;
  text-align: center;
  border: 1px solid rgba(40, 40, 40, 0.5);
  line-height: 16px;
  color: #333;
}
.UI-form_line .widget.switch input:checked + .slider:after {
  transform: translateX(22px);
  background-color: #090;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 22px;
  height: 22px;
  line-height: 23px;
  color: #FFF;
  content: "✓";
  font-size: 13pt;
}
.button {
  height: 40px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transition-duration: 0.4s;
  transition-timing-function: linear;
  transition-property: background-size, background-position, border-radius;
  cursor: pointer;
  color: #FFFFFF;
  background: linear-gradient(#000, #000), linear-gradient(to right, #000, #000), linear-gradient(to left, #000, #000);
  background-size: 100% 100%, 0px 2px, 0px 2px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 100% 50%, 0% 0px, 0% 100%;
  width: 200px;
  border: 1px solid #00000077;
}
.button .icon {
  background-color: #000;
  width: 32px;
  min-width: 32px;
  height: 32px;
  max-height: 32px;
  margin-left: 3px;
  background-size: 20px 20px, 0% 0%;
  background-repeat: no-repeat;
  background-position: 50% 50%, 50% 50%;
  flex: 1 1 auto;
  font-weight: bold;
  box-shadow: 0 0 0 1px #00000077;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-highlight-color);
  border-radius: 0px;
  transition-duration: 0.7s;
  transition-property: width, max-width, display;
}
.button .icon span {
  display: none;
  background-color: #fff;
  width: 8px;
  height: 8px;
  margin: 1px 4px;
  border-radius: 0px;
  animation: waitingStep 1s infinite forwards;
  background-color: #000;
}
.button .icon span:nth-child(2n) {
  animation: waitingStep 1s 0.15s infinite forwards;
}
.button .icon span:nth-child(3n) {
  animation: waitingStep 1s 0.3s infinite forwards;
}
@keyframes waitingStep {
  20% {
    transform: translateY(0px);
  }
  45% {
    transform: translateY(-12px);
  }
  70% {
    transform: translateY(0px);
  }
}
.button .icon.tickIcon {
  background-image: url(/ressources/Home/img/icon/loginTick__white.svg), radial-gradient(circle at 50% 50%, #00FF0000, #00FF0000 50%, #00FF00 81%);
}
.button .label {
  text-align: center;
  width: 100%;
  font-weight: bold;
  transition-property: width, max-width, font-size;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: underline;
  letter-spacing: 1px;
  font-size: 13pt;
}
.button .labelSuccess {
  display: none;
}
form .button {
  margin: 20px auto;
}
.svg-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  fill: currentColor;
  stroke: currentColor;
}
@keyframes UI_lock-screen__logo-snooze {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0px hsla(var(--UI-hue), 30%, 50%, 0.3));
  }
  41% {
    transform: translateY(-33px) scale(1.33);
    filter: drop-shadow(0 0 20px hsla(var(--UI-hue), 30%, 55%, 0.6));
  }
  51% {
    transform: translateY(-33px) scale(1.33);
    filter: drop-shadow(0 0 20px hsla(var(--UI-hue), 30%, 55%, 0.6));
  }
  84% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0px hsla(var(--UI-hue), 30%, 50%, 0.3));
  }
}
@keyframes UI_lock-screen__logo-hearth-beat {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(0.95);
  }
  30% {
    transform: scale(1.25);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.UI_lock-screen {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s linear;
  backdrop-filter: blur(16px);
  z-index: 700;
  font-weight: bold;
  color: hsl(var(--UI-hue), 18%, 58%);
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 10%, 0.92), hsla(var(--UI-hue), 30%, 30%, 0.87));
}
.UI_lock-screen .UI_lock-screen_inner {
  position: fixed;
  z-index: 710;
  width: 500px;
  top: 0px;
  left: calc(50% - 250px);
  transition: left 0.6s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.UI_lock-screen .UI_lock-screen_logo {
  height: 150px;
  transform-origin: center 100%;
}
.UI_lock-screen .UI_lock-screen_logo svg {
  height: 150px;
  width: 150px;
}
.UI_lock-screen .UI_lock-screen_title {
  font-size: 4rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.UI.-lock-screen .UI_lock-screen {
  opacity: 1;
  pointer-events: auto;
}
.UI.-stand-by .UI_lock-screen {
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 5%, 0.96), hsla(var(--UI-hue), 30%, 3%, 0.99));
}
.UI.-stand-by .UI_lock-screen .UI_lock-screen_logo {
  animation: UI_lock-screen__logo-snooze 10s linear infinite;
  opacity: 0.2;
}
.UI.-stand-by .UI_lock-screen .UI_lock-screen_title {
  opacity: 0.2;
}
.UI.-loading .UI_lock-screen {
  backdrop-filter: none;
  background: radial-gradient(circle at 50% 50%, hsla(var(--UI-hue), 18%, 0%, 0.75), hsla(var(--UI-hue), 18%, 20%, 0.1) 100%);
}
.UI.-loading .UI_lock-screen .UI_lock-screen_logo {
  animation: UI_lock-screen__logo-hearth-beat 1.6s 0.5s linear infinite;
}
.UI.-login .UI_lock-screen {
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 10%, 0.92), hsla(var(--UI-hue), 30%, 30%, 0.87));
}
.UI.-login .UI_lock-screen .UI_lock-screen_inner {
  display: none;
}
.UI.-login .UI_lock-screen .UI_lock-screen_hint.-login {
  display: flex;
}
.UI.-login .UI_lock-screen .UI_lock-screen_inner {
  left: calc((((100% - 900px) /3) * 2) + 400px);
}
.UI.-boot .UI_lock-screen {
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 10%, 1), hsla(var(--UI-hue), 30%, 30%, 1));
}
.UI.-boot .UI_lock-screen .UI_lock-screen_logo {
  animation: UI_lock-screen__logo-hearth-beat 1.6s 0.5s linear infinite;
}
.UI.-boot .UI_lock-screen .UI_lock-screen_loader {
  display: flex;
}
.UI_lock-screen_login {
  width: 100%;
  max-width: 400px;
  z-index: 720;
  left: 0px;
  height: 100%;
  transition: opacity 0.6s linear, left 0.6s linear;
  box-shadow: 0 0 4px #000000AA, 0 0 6px 3px #00000027;
  border: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 50% 140%, hsla(var(--UI-hue), calc(var(--UI-saturation) * 1), var(--UI-light-luminosity), 0.65), hsla(var(--UI-hue), calc(var(--UI-saturation) * 0.4), var(--UI-light-luminosity), 0.1) 90%);
  border-image: radial-gradient(circle at 50% -120px, hsla(var(--UI-hue), 10%, var(--UI-light-luminosity), 0.8), hsla(var(--UI-hue), 20%, var(--UI-light-luminosity), 0) 100%) 1;
  color: hsla(var(--UI-hue), 20%, 3%, 0.6);
  color: #FFFFFFAA;
}
.UI.-login .UI_lock-screen_login {
  opacity: 1;
  pointer-events: auto;
  left: calc((100% - 900px) /3);
}
.UI_lock-screen_login_panel {
  display: flex;
  max-height: 100%;
  height: 100%;
  width: 100%;
  padding: 0 15px;
  opacity: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  transition: opacity 1s linear, transform 0.8s linear;
}
.UI_lock-screen_login_panel_title {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3em;
}
.UI_lock-screen_login_panel_title_star {
  display: inline-block;
  margin: 0 3px;
  line-height: 0.4em;
  transform: translateY(20px);
  font-size: 2.5em;
}
.UI_lock-screen_login_panel_title.-error .UI_lock-screen_login_panel_title_star {
  color: #C42020;
}
.UI_login-form_keypad {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.UI_login-form_keypad_key {
  display: flex;
  width: 65px;
  height: 65px;
  margin: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF22;
  border-radius: 100px;
  background: linear-gradient(-145deg, #FFFFFF00, #FFFFFF22);
  transition: box-shadow 0.2s;
  font-size: 3em;
  font-weight: 600;
  cursor: pointer;
}
.UI_login-form_keypad_key:hover {
  color: #FFFFFFAA;
}
.UI_login-form_keypad_key.-clicked {
  animation: UI_login-form_keypad_key__click 0.3s linear backwards;
}
.UI_login-form_keypad_key:hover {
  border: 1px solid #FFFFFF66;
}
.UI_login-form_keypad_key.-ok .svg-icon {
  height: 40px;
  width: 40px;
}
.UI_login-form_keypad_key.-ok .svg-icon.-load {
  display: none;
}
.login-form.-in-load .UI_login-form_keypad_key.-ok .svg-icon {
  display: none;
}
.login-form.-in-load .UI_login-form_keypad_key.-ok .svg-icon.-load {
  display: block;
}
@keyframes UI_login-form_keypad_key__click {
  0% {
    box-shadow: 0 0 2px white;
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0);
  }
}
.UI_lock-screen_login[name=login-form] .UI_lock-screen_login_panel.-login {
  opacity: 1;
}
.UI_lock-screen_login[name=registration-form] .UI_lock-screen_login_panel.-login {
  transform: translateY(-100%);
}
.UI_lock-screen_login[name=registration-form] .UI_lock-screen_login_panel.-registration {
  opacity: 1;
  transform: translateY(-100%);
}
.UI_lock-screen_login_panel_link {
  margin: 30px 0;
  text-align: center;
  color: var(--light-font-color);
  text-decoration: underline;
  opacity: 0.8;
  font-weight: 600;
}
.UI_lock-screen_login .UI-form_line.-hidden {
  display: none;
}
.UI_lock-screen_login_panel_paragraph {
  margin: 0;
  font-weight: 500;
}
.UI.-login .UI_lock-screen_login {
  opacity: 1;
  transform: translateX(0px);
  pointer-events: auto;
}
.UI.-login .UI-panel-container, .UI.-login .UI_dock {
  display: none;
  pointer-events: none;
}
.UI.-login .UI-panel-container > * {
  opacity: 0;
  transition-property: opacity;
}
.UI.-login .UI-header_element:not(.-main) {
  display: none;
}
.UI.-login .UI-header_menu {
  display: none;
}
.UI.-login .UI-control-center {
  display: none;
}
@font-face {
  font-family: 'Maven Pro';
  font-style: normal;
  font-weight: 400 900;
  src: url(/ressources/Home/font/maven/1.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Maven Pro';
  font-style: normal;
  font-weight: 400 900;
  src: url(/ressources/Home/font/maven/2.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
* {
  box-sizing: inherit;
  transition-duration: inherit;
  transition-property: transform;
}
html {
  height: 100%;
  max-height: 100%;
  width: 100%;
  min-width: 320px;
  margin: auto;
  overflow: hidden;
  box-sizing: border-box;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: none;
  background-color: var(--background-color);
  color: var(--font-color);
  --planWidth:820px;
  --dock-height:70px;
  --UI-hue:170deg;
  --UI-saturation:30%;
  --UI-light-luminosity:60%;
  --UI-dark-luminosity: min(30%,max(5%,calc(var(--UI-luminosity) - 40%)));
  --UI-luminosity:60%;
  --UI-contrast-luminosity:var(--UI-dark-luminosity);
  --background-color:hsl(var(--UI-hue),calc(var(--UI-saturation) * 0.5),var(--UI-luminosity));
  --dark-font-color:hsl(var(--UI-hue),30%,6%,0.94);
  --light-font-color:hsl(var(--UI-hue),20%,93%,0.94);
  --font-color:var(--dark-font-color);
}
html.-darkmode {
  --UI-light-luminosity:min(95%,max(70%,calc((100% - ((40% - var(--UI-luminosity) / 2))))));
  --UI-luminosity:var(--UI-dark-luminosity);
  --UI-contrast-luminosity:var(--UI-light-luminosity);
  --font-color:var(--light-font-color);
}
* {
  box-sizing: inherit;
  transition-duration: inherit;
  transition-property: transform;
}
body {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Maven Pro";
  color: var(----font-color);
  background-size: cover;
  overflow: hidden;
  touch-action: none;
}
.--clickable {
  cursor: pointer;
}
.--thinner {
  font-weight: 400;
}
.--thin {
  font-weight: 500;
}
.--bold {
  font-weight: 600;
}
.--bolder {
  font-weight: 700;
}
.--center {
  text-align: center;
}
.--justify {
  text-align: justify;
}
.--right {
  text-align: right;
  width: 100%;
}
.--ok {
  color: #090;
}
.--wrong {
  color: #900;
}
.--small {
  font-size: 0.9rem;
}
.--very-small {
  font-size: 0.8rem;
}
.--italic {
  font-style: italic;
}
.--link {
  text-decoration: underline;
}
.--strike {
  text-decoration: line-through;
}
.--underline {
  text-decoration: underline;
}
.--italic {
  text-decoration: underline;
}
.UI-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.UI_button {
  --button-icon:linear-gradient(to bottom,transparent,transparent);
  --button-color:hsl(var(--UI-hue),40%,var(--UI-luminosity));
  --button-color-highlight:hsl(from var(--button-color) h calc(s * 1.3)  calc(var(--UI-luminosity) * 1.3)  );
  --cursorX:50%;
  --cursorY:50%;
  --button-background:linear-gradient(to top,var(--button-color-highlight) 0%,#00000000 100%), radial-gradient( farthest-corner at 50% 100%, var(--button-color-highlight) 30%,var(--button-color) 100%);
  min-height: 40px;
  height: 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 3px;
  border: 1px solid hsl(from var(--button-color-highlight) h calc(s) calc(l * 1.3));
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  background: var(--button-icon), var(--button-background);
  background-position: 9px center, 0 0, 0 0;
  background-size: 30px 30px, auto, auto;
  background-repeat: no-repeat;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 35px;
  text-align: center;
}
.UI_button.-transparent {
  --button-color:transparent;
  border: 1px solid #FFFFFF77;
}
.UI_button.-delete {
  --button-color:hsl(10,38%,50%);
  --button-color-highlight:hsl(10,73%,64%);
}
.UI_button.-gray {
  --button-color:hsl(var(--UI-hue),13%,50%);
}
.UI_button.-icon-button {
  display: flex;
  width: 50px;
}
.UI_button.-icon-button .UI-icon {
  --icon-size: 30px;
}
.UI_button.-small-button {
  min-height: 30px;
  height: 30px;
  width: fit-content;
  line-height: 22px;
  font-size: 1rem;
  font-weight: 500;
}
.UI_button:not(.-icon-button).-add {
  --button-icon:url(/app/ressources/Kernel/icon/add__white.webp);
  padding: 0 10px 0 50px;
}
.UI_button:not(.-icon-button).-delivery {
  --button-icon:url(/app/ressources/Kernel/icon/delivery__white.webp);
  padding: 0 10px 0 50px;
}
.UI_button:not(.-icon-button).-save {
  --button-icon:url(/app/ressources/Kernel/icon/save__white.webp);
  padding: 0 10px 0 50px;
}
.UI_button:active {
  transform: scale(0.97);
}
.UI_button.-disabled {
  filter: grayscale(100%);
  --button-background:#555;
  color: #FFFFFF9BB;
  opacity: 0.35;
  pointer-events: none;
  text-decoration: none;
  animation: none;
}
.UI_button.-no-text-mobile {
  width: fit-content;
}
.UI_button:not(.-disabled):hover, .UI_button:not(.-disabled):active {
  --button-background:linear-gradient(to top,var(--button-color-highlight) 0%,#00000000 100%),radial-gradient( circle at var(--cursorX) var(--cursorY), var(--button-color-highlight) 30%,var(--button-color) 100%);
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
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;
}
img {
  border-style: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [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 {
  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-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
.UI-panel-container {
  position: absolute;
  left: 0px;
  top: 0px;
  margin-top: 0px;
  transform: translate3d(0, 0, 0);
  max-height: calc(100%);
  height: calc(100% - 20px);
  transition-property: transform, filter;
  transition-timing-function: ease-out;
  transition-duration: 0.8s;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  width: 600%;
}
.UI-panel {
  height: 100%;
  max-height: 100%;
  width: calc(100% / 6);
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
}
.UI-panel.-dashboard {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  flex-direction: row;
}
.UI-panel.-main {
  height: 100%;
  padding-bottom: 20px;
  max-height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.UI-panel.-setting {
  background-color: rgba(0, 0, 0, 0.3);
  transition-property: padding-right;
}
20.UI_popup-container {
  --popup-color: hsla(var(--UI-hue),70%,50%,0.2);
  --modal-hue:var(--UI-hue);
  --modal-saturation:100%;
  --modal-width:550px;
}
.UI_popup {
  --popup-color-highlight:hsl(from var(--popup-color) h calc(s * 1.5)  calc(l)  );
  position: fixed;
  max-height: calc(100% - var(--dock-height));
  z-index: 800;
  max-width: 100%;
  transform: translateY(-0.01px);
  transition: transform 0.4s linear, opacity 0.4s linear;
  border: 1px solid transparent;
  background: var(--popup-color);
  backdrop-filter: blur(30px);
  border-image: var(--popup-color-highlight);
}
.UI_popup:not(.-main) .UI_button.-badgable {
  animation: none;
}
.UI_popup:not(.-main) > * {
  pointer-events: none;
}
.UI_popup.-UI_popup_hidden {
  transform: translateY(-40px);
}
.UI_popup.-disapear {
  transition: transform 0.4s linear, opacity 0.4s linear;
  transform: translateY(80px);
  opacity: 0;
}
.UI_popup_handler {
  cursor: move;
}
.UI_popup_actions {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  transform: translate(0, -46px);
  gap: 6px;
  opacity: 0;
  pointer-events: none;
}
.UI_popup.-main .UI_popup_actions {
  opacity: 1;
  pointer-events: auto;
}
.UI_popup_action {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: var(--popup-color);
  backdrop-filter: blur(30px);
  border: 1px solid transparent;
  --cursorX: 50%;
  border-image: radial-gradient(circle at var(--cursorX) 5%, hsla(from var(--popup-color) h s l / 0.9), hsla(from var(--popup-color) h s l / 0.1) 100%) 1;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  line-height: 30px;
  gap: 5px;
  cursor: pointer;
}
.UI_popup_action.-close {
  width: 100px;
}
.UI_popup_action .UI-icon {
  --icon-size:16px;
}
.UI_popup-container-layer {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  justify-content: center;
  align-items: center;
  backdrop-filter: grayscale(40%);
  opacity: 1;
  --percent: 50%;
  --percent2: 50%;
  background: radial-gradient(circle at var(--percent2) var(--percent), hsla(var(--UI-hue), 30%, 0%, 0.6) 15%, hsla(var(--UI-hue), 30%, 10%, 0));
  pointer-events: none;
  transition: opacity 0.3s linear;
}
.UI_popup-container-layer.-hidden {
  opacity: 0;
}
.UI_popup-container.-blurred .UI_popup-container-layer {
  backdrop-filter: blur(6px) grayscale(50%) brightness(60%);
  pointer-events: auto;
}
.UI_modal {
  display: flex;
  width: 100%;
  max-width: var(--modal-width);
  --modal-hue:var(--UI-hue);
  --modal-saturation:var(--UI-saturation);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  backdrop-filter: blur(10px) saturate(200%);
  transform: translateY(0px);
  box-shadow: 0 0 4px #000000AA, 0 0 6px 3px #00000027;
  transition: transform 0.4s linear, opacity 0.4s linear;
  color: var(--light-font-color);
  background: radial-gradient(circle at 50% 240%, hsla(var(--modal-hue), calc(var(--modal-saturation) * 0.8), var(--UI-contrast-luminosity), 1), hsla(var(--modal-hue), calc(var(--modal-saturation) * 0.4), var(--UI-contrast-luminosity), 0.2) 90%);
  border-image: radial-gradient(circle at 50% -150px, hsla(var(--modal-hue), var(--modal-saturation), 60%, 1), hsla(var(--modal-hue), calc(var(--modal-saturation) * 0.2), 95%, 0.5) 100%) 1;
}
.UI_modal p {
  margin: 0;
  padding: 0;
  line-height: 1.4em;
}
.UI_modal.-neutral {
  background: radial-gradient(circle at 50% 240%, #999, rgba(153, 153, 153, 0.4) 90%);
  border-image: radial-gradient(circle at 50% -100px, #999, rgba(214, 194, 194, 0.4) 100%) 1;
}
.UI_modal.-neutral .UI_button:not(.-transparent) {
  --button-color:hsl(0,0%,23%);
}
.UI_modal.-large {
  --modal-width:850px;
}
.UI_modal.-error {
  background: radial-gradient(circle at 50% 240%, #f33, rgba(153, 153, 153, 0.4) 90%);
  border-image: radial-gradient(circle at 50% -100px, #f53d3d, rgba(214, 194, 194, 0.5) 100%) 1;
}
.UI_modal.-error .UI_button:not(.-transparent) {
  --button-color:hsla(0,30%,25%,0.2);
}
.UI_modal.-error .UI_modal_error_report {
  display: none;
  padding: 10px;
  border: 1px solid #FFFFFF11;
  background: #FFFFFF11;
  font-size: 0.9rem;
}
.UI_modal.-error .UI_modal_error_report.-visible {
  display: block;
}
.UI_modal.-error .UI_modal_error_report a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-size: 1rem;
  font-weight: 600;
}
.UI_modal_header {
  display: flex;
  width: 100%;
  flex: 0 0 70px;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #FFFFFF44;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.UI_modal_header_title {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.UI_modal_header_title .UI-icon {
  --icon-size:35px;
}
.UI_modal_header_title:has(+ .UI_modal_header_close) {
  margin-left: 60px;
}
.UI_modal_header_close {
  display: flex;
  flex: 0 0 50px;
  height: 50px;
  background: #00000022;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-image: radial-gradient(circle at 50% -10px, hsla(var(--modal-hue), 0%, 100%, 0.8), hsla(var(--modal-hue), calc(var(--modal-saturation) * 0.2), 95%, 0.1) 60%) 1;
  cursor: pointer;
}
.UI_modal_header_close .UI-icon {
  --icon-size:20px;
}
.UI_modal_header_close:active {
  transform: scale(0.97);
}
.UI_modal_header_close:hover {
  border-image: radial-gradient(circle at var(--cursorX) var(--cursorY), hsla(var(--modal-hue), 0%, 100%, 0.8) 10%, hsla(var(--modal-hue), 0%, 100%, 0.2) 100%) 1;
}
.UI_modal_content {
  display: flex;
  width: 100%;
  flex: 1 1 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
  overflow: scroll;
  font-size: 1.5rem;
  text-align: center;
}
.UI_modal_actions {
  display: flex;
  width: 100%;
  flex: 0 0 0px;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #FFFFFF44;
  background: #FFFFFF22;
  justify-content: flex-end;
}
.UI_modal_actions.-center {
  justify-content: center;
}
.UI_modal_actions .UI_button.-focus {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.UI_modal_content_small {
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.UI_modal_content_legend {
  font-size: 0.9rem;
  text-align: center;
}
.UI_modal_content .UI-table {
  font-size: 0.9rem;
  width: 100%;
}
.UI_modal_subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.UI_modal_paragraph {
  font-weight: 400;
  line-height: 1.6rem;
  font-size: 1.1rem;
  text-align: justify;
}
.UI_dialog {
  max-width: 800px;
}
.UI_dialog .UI_modal_content {
  padding: 30px 10px;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: transparent;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option--selectable {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 100;
  margin-right: 20px;
  padding-right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #333 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  color: #666;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  color: #222;
  outline: none;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
  padding: 0;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
}
.select2-container--default .select2-results__option--selected {
  font-weight: bold;
  color: var(--main-highlight-color);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #333 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #333;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option--group {
  padding: 0;
}
.select2-container--classic .select2-results__option--disabled {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
.select2 {
  transition-duration: 0s;
  transition-delay: 0s;
}
.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  text-align: left;
}
.select2-dropdown {
  color: #333;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.UI-setting-menu {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  --settingColor:hsl(var(--UI-hue),calc(var(--UI-saturation) / 3),min(80%,calc(var(--UI-luminosity) * 1.3)));
  color: var(--settingColor);
  display: flex;
  flex-direction: column;
}
.UI-setting-menu_line {
  height: 50px;
  min-height: 50px;
  text-align: center;
  font-size: 1.1em;
  -webkit-backdrop-filter: brightness(40%);
  line-height: 50px;
  border-bottom: 1px solid hsl(from var(--settingColor) h s l / 60%);
  background: linear-gradient(to left, #000000BB 1px, #00000000 4px);
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: background-color 0.1s linear;
}
.UI-setting-menu_line:hover {
  background-color: #FFFFFF33;
}
.UI-setting-menu_line.-alive {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.UI-setting-menu_separator {
  height: 50px;
  -webkit-backdrop-filter: brightness(40%);
  min-height: 50px;
  background: linear-gradient(to left, #000000BB 1px, #00000000 4px);
  border-bottom: 1px solid hsl(from var(--settingColor) h s l / 60%);
}
.UI-setting-menu_completer {
  flex: 1 1 100%;
  -webkit-backdrop-filter: brightness(40%);
  background: linear-gradient(to left, #000000BB 1px, #00000000 4px);
}
.UI-setting-menu_line_icon {
  width: 30px;
  min-width: 30px;
  height: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
.UI-setting-menu_line_text {
  flex: 1 1 100%;
  text-align: left;
  padding-left: 10px;
  height: 60%;
  display: flex;
  align-items: center;
  border-left: 1px solid hsl(from var(--settingColor) h s l / 60%);
}
@keyframes stand-by-calc__logo-snooze {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 12px hsla(var(--UI-hue), 60%, 50%, 0.3));
  }
  42% {
    transform: translateY(-33px) scale(1.33);
    filter: drop-shadow(0 0 20px hsla(var(--UI-hue), 65%, 55%, 0.7));
  }
  50% {
    transform: translateY(-33px) scale(1.33);
    filter: drop-shadow(0 0 20px hsla(var(--UI-hue), 65%, 55%, 0.7));
  }
  85% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 12px hsla(var(--UI-hue), 60%, 50%, 0.3));
  }
}
@keyframes stand-by-calc__dot {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 0.35;
  }
}
.stand-by-calc {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s linear;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 6%, 0.93), hsla(var(--UI-hue), 30%, 3%, 0.97));
  backdrop-filter: blur(16px);
  font-size: 6em;
  color: #444;
  z-index: 1200;
  font-weight: bold;
  overflow: hidden;
}
.UI.-stand-by .stand-by-calc {
  opacity: 1;
  pointer-events: default;
}
.stand-by-calc .stand-by-calc__glow {
  display: none;
}
.stand-by-calc .stand-by-calc__logo {
  animation: stand-by-calc__logo-snooze 10s linear infinite;
}
.stand-by-calc .stand-by-calc__loader {
  opacity: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 20px;
  margin-top: 0.15em;
}
.stand-by-calc.-in-load {
  background: linear-gradient(to bottom, hsla(var(--UI-hue), 50%, 5%, 1), hsla(var(--UI-hue), 30%, var(--UI-luminosity), 1));
}
.stand-by-calc.-in-load .stand-by-calc__loader {
  opacity: 1;
}
.stand-by-calc.-in-load .stand-by-calc__loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: hsl(var(--UI-hue), 50%, 58%);
  box-shadow: 0 0 12px hsla(var(--UI-hue), 60%, 50%, 0.45);
  animation: stand-by-calc__dot 1.5s ease-in-out infinite;
}
.stand-by-calc.-in-load .stand-by-calc__loader span:nth-child(2) {
  animation-delay: 0.15s;
}
.stand-by-calc.-in-load .stand-by-calc__loader span:nth-child(3) {
  animation-delay: 0.3s;
}
.stand-by-calc.-in-load .stand-by-calc__logo {
  animation: none;
}
.stand-by-calc.-in-load .stand-by-calc__glow {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  animation: stand-by-calc__ring 5s linear infinite;
  pointer-events: none;
}
.stand-by-calc .stand-by-calc__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stand-by-calc .stand-by-calc__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stand-by-calc svg {
  height: 150px;
  width: 150px;
  color: hsl(var(--UI-hue), 25%, 72%);
}
.stand-by-calc .stand-by-calc__title {
  font-size: 4rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: hsl(var(--UI-hue), 18%, 58%);
  text-shadow: 0 1px 24px hsla(var(--UI-hue), 40%, 30%, 0.4);
}
html.-stand-by {
  background-color: #000;
}
.UI-toolbar {
  display: flex;
  justify-content: space-evenly;
  gap: 5px 0;
  flex-wrap: wrap;
  flex: 1 1 100%;
  overflow-y: scroll;
  content-visibility: visible;
  will-change: transform;
  transform: translateZ(0);
  contain: none;
  padding: 5px;
  padding-bottom: 50px;
  mask-image: linear-gradient(to top, #00000000 2px, #000000 30px);
}
@media (min-width: 400px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-login_title {
    height: 100px;
  }
  .UI-keypad_key {
    width: 75px;
    height: 75px;
  }
  .UI-login_panel_link {
    margin-top: 15px;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_login-form_keypad_key {
    width: 75px;
    height: 75px;
  }
  .UI_lock-screen_login_panel_link {
    margin-top: 15px;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media screen and (min-width: 400px) and (min-width: 760px) {
  .contentWrapper {
    overflow: hidden;
  }
}
@media screen and (min-width: 400px) and (min-width: 760px) {
  .plan svg #stove-state {
    font-size: 20pt;
  }
}
@media screen and (min-width: 400px) and (max-width: 760px) {
  .firstLine {
    margin-bottom: 20px;
  }
}
@media not all and (min-width: 400px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 400px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 400px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 400px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
@media not all and (min-width: 760px) {
  .UI-header_menu {
    position: fixed;
    height: none;
    width: 100%;
    flex-direction: column;
    top: 50px;
    z-index: 11;
    flex: 0 0 auto;
    height: auto;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.6s linear;
  }
  .UI-header_menu .UI-header_element {
    height: 50px;
    background: hsla(var(--UI-hue), 60%, 59%, 1) !important;
  }
  body.-display-menu .UI-header_menu {
    max-height: 500px;
  }
  body.-display-menu .UI-header .UI-header_element:not(.-burger) {
    background: #00000033;
  }
  body.-display-menu .UI-header .UI-header_element.-burger {
    background: hsla(var(--UI-hue), 60%, 59%, 1);
  }
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .tile.-linky {
    height: 400px;
  }
  .tile.-linky .dashboard-tile_content {
    flex-direction: column;
    gap: 40px;
  }
  .dashboard-tile_content_sub {
    width: 100%;
    margin-top: -30px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .whoIn {
    margin-left: -10px;
  }
  .whoIn > div {
    width: 35px;
    mask-image: linear-gradient(to top, #00000000 10px, #000000 10px);
    margin-top: -60px;
    height: 80px;
  }
  .UI.-login .UI_calc .UI_calc_inner {
    display: none;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .whoIn {
    margin-left: -10px;
  }
  .whoIn > div {
    width: 35px;
    mask-image: linear-gradient(to top, #00000000 10px, #000000 10px);
    margin-top: -60px;
    height: 80px;
  }
  .state-text {
    display: none;
  }
  .UI_dock {
    backdrop-filter: blur(10px) brightness(80%);
  }
  .UI_dock.-display-popup-action > *:not(.UI_dock_popup-action, .-barcode) {
    display: none;
  }
  .UI_dock.-display-popup-action .UI_dock_popup-action {
    display: flex;
  }
  .UI-kiosk.-in-AP .UI_dock_button.-launcher {
    display: none;
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_button {
    font-size: 1.3rem;
  }
  .UI_button.-small-button {
    font-size: 0.9rem;
  }
  .UI_button.-no-text-mobile {
    background-position: 50% center, 0 0, 0 0, 0 0;
    font-size: 0;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .UI_popup_actions {
    display: none;
  }
  .UI_popup-container-layer {
    background: radial-gradient(circle at var(--percent2) var(--percent), hsla(var(--UI-hue), 30%, 0%, 0.75) 15%, hsla(var(--UI-hue), 30%, 10%, 0.5));
  }
  .UI_modal {
    font-size: 1rem;
  }
  .UI_modal_header {
    font-size: 1.5rem;
  }
  .UI_modal_content {
    font-size: 1.2rem;
  }
  .UI_modal_content_legend {
    font-size: 0.8rem;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 760px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 760px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 760px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
@media not all and (min-width: 1000px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 1000px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 1000px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 1000px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
@media not all and (min-width: 1280px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .plan svg .floorPattern {
    stroke-width: 0.1;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 1280px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 1280px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 1280px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
@media not all and (min-width: 1400px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 1400px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 1400px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 1400px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
@media not all and (min-width: 1680px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 1680px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 1680px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 1680px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
@media not all and (min-width: 2080px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 2080px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 2080px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 2080px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
@media not all and (min-width: 2380px) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media not all and (min-width: 2380px) {
  @media screen and (min-width: 760px) {
    .contentWrapper {
      overflow: hidden;
    }
  }
}
@media not all and (min-width: 2380px) {
  @media screen and (min-width: 760px) {
    .plan svg #stove-state {
      font-size: 20pt;
    }
  }
}
@media not all and (min-width: 2380px) {
  @media screen and (max-width: 760px) {
    .firstLine {
      margin-bottom: 20px;
    }
  }
}
.UI-editor form .half {
  width: calc(50% - 30px);
}
.UI-editor form fieldset.half {
  width: calc(50% - 30px);
}
@media screen and (min-width: 760px) {
  .contentWrapper {
    overflow: hidden;
  }
}
svg .heater-line-symbol:nth-child(2) {
  opacity: var(--opacity2);
}
svg .heater-line-symbol:nth-child(1) {
  opacity: var(--opacity3);
}
.plan svg #shutter-1.-open {
  opacity: 0.1;
}
.plan svg #shutter-1.-close {
  opacity: 1;
}
.plan svg #stove2 #fireflame {
  display: none;
}
.plan svg #stove2 #fireflameUp {
  display: none;
}
.plan svg #stove2 #pelletFilling {
  display: none;
}
.plan svg #stove2 #noPellets {
  display: none;
}
.plan svg #stove2 #clean {
  display: none;
}
.plan svg #stove2 #fireflameDown {
  display: none;
}
.plan svg #stove2.-pelletFilling #pelletFilling {
  display: block;
}
.plan svg g.plan-cmv.-power2 .fan-blade {
  fill: #C42020AA;
}
.plan svg line.-closed {
  stroke-width: 5px;
}
@media screen and (min-width: 760px) {
  .plan svg #stove-state {
    font-size: 20pt;
  }
}
@media screen and (max-width: 760px) {
  .firstLine {
    margin-bottom: 20px;
  }
}
.dashboard-tile.-temperature .dashboard_tile_content_main {
  font-size: 5.5em;
}
#dashboard-temperature span {
  font-size: 0.6em;
}
.UI-control-center {
  background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
}
.UI_dock_updater {
  animation: UI-kiosk_updater-blink 4s linear infinite;
}
form .UI-form_line:first-child {
  margin-top: 0;
}
form fieldset legend::before {
  content: '- ';
}
form fieldset + fieldset {
  margin-top: 20px;
}
.UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
  display: block;
}
.UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
  display: none;
}
.button .labelSuccess {
  display: none;
}
.UI_popup:not(.-main) .UI_button.-badgable {
  animation: none;
}
.stand-by-calc.-in-load .stand-by-calc__glow {
  background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
}
html.-stand-by {
  background-color: #000;
}
@media not  all and  \9  only screen and ( min-resolution: 200dpi), only screen and ( min-resolution: 1.25dppx) {
  .UI-editor form .half {
    width: calc(50% - 30px);
  }
  .UI-editor form fieldset.half {
    width: calc(50% - 30px);
  }
  svg .heater-line-symbol:nth-child(2) {
    opacity: var(--opacity2);
  }
  svg .heater-line-symbol:nth-child(1) {
    opacity: var(--opacity3);
  }
  .plan svg #shutter-1.-open {
    opacity: 0.1;
  }
  .plan svg #shutter-1.-close {
    opacity: 1;
  }
  .plan svg #stove2 #fireflame {
    display: none;
  }
  .plan svg #stove2 #fireflameUp {
    display: none;
  }
  .plan svg #stove2 #pelletFilling {
    display: none;
  }
  .plan svg #stove2 #noPellets {
    display: none;
  }
  .plan svg #stove2 #clean {
    display: none;
  }
  .plan svg #stove2 #fireflameDown {
    display: none;
  }
  .plan svg #stove2.-pelletFilling #pelletFilling {
    display: block;
  }
  .plan svg g.plan-cmv.-power2 .fan-blade {
    fill: #C42020AA;
  }
  .plan svg line.-closed {
    stroke-width: 5px;
  }
  .dashboard-tile.-temperature .dashboard_tile_content_main {
    font-size: 5.5em;
  }
  #dashboard-temperature span {
    font-size: 0.6em;
  }
  .UI-control-center {
    background: linear-gradient(to right, #000000AA 50%, #00000000 90%) no-repeat 0 0 / 100% 1px, linear-gradient(to right, #000000AA 50%, #000000AA 90%) no-repeat 0 51px / 100% 1px, linear-gradient(95deg, hsl(from var(--UI-main-color) h s calc(l * 0.7) / 80%) 50%, hsl(from var(--UI-main-color) h s l / 80%));
  }
  .UI_dock_updater {
    animation: UI-kiosk_updater-blink 4s linear infinite;
  }
  form .UI-form_line:first-child {
    margin-top: 0;
  }
  form fieldset legend::before {
    content: '- ';
  }
  form fieldset + fieldset {
    margin-top: 20px;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .on {
    display: block;
  }
  .UI-form_line .widget.switch input:checked + .slider + .switchLabel .off {
    display: none;
  }
  .button .labelSuccess {
    display: none;
  }
  .UI_popup:not(.-main) .UI_button.-badgable {
    animation: none;
  }
  .stand-by-calc.-in-load .stand-by-calc__glow {
    background: conic-gradient(from 0deg, hsla(var(--UI-hue), 55%, 45%, 0.15), hsla(calc(var(--UI-hue) + 40), 50%, 40%, 0.08), hsla(var(--UI-hue), 60%, 50%, 0.12), hsla(calc(var(--UI-hue) + 80), 45%, 42%, 0.08), hsla(var(--UI-hue), 55%, 45%, 0.15));
  }
  html.-stand-by {
    background-color: #000;
  }
}
@media screen and not  all and  \9  only screen and ( min-resolution: 200dpi), only screen and ( min-resolution: 1.25dppx) and (min-width: 760px) {
  .contentWrapper {
    overflow: hidden;
  }
}
@media screen and not  all and  \9  only screen and ( min-resolution: 200dpi), only screen and ( min-resolution: 1.25dppx) and (min-width: 760px) {
  .plan svg #stove-state {
    font-size: 20pt;
  }
}
@media screen and not  all and  \9  only screen and ( min-resolution: 200dpi), only screen and ( min-resolution: 1.25dppx) and (max-width: 760px) {
  .firstLine {
    margin-bottom: 20px;
  }
}
