html, body {
  --six-sky:                  #00b0db;
  --six-blue:                 #1961ac;
  --six-yellow:               #f9b122;
  --six-yellow-active:        #d1951c;
  --six-green:                #95c11f;
  --six-green-active:         #5b7513;
  --six-red:                  #e52322;
  --six-red-active:           #ad1a1a;
  --six-purple:               #585fa8;
  --six-white:                #ffffff;
  --six-gray:                 #bbbbbb;
  --six-black:                #000000;

  --background-color:         var(--six-white);
  --background-color-active:  var(--six-gray);
  --main-color:               var(--six-blue);
  --primary-color:            var(--six-sky);
  --primary-color-active:     var(--six-blue);
  --primary-color-disabled:   var(--six-gray);
  --secondary-color:          var(--six-yellow);
  --secondary-color-active:   var(--six-yellow-active);
  --secondary-color-disabled: var(--six-gray);

  --selected-color:           var(--six-yellow);
  --selected-color-active:    var(--six-yellow-active);
  --selected-color-disabled:  var(--six-gray);

  --ok-color:                 var(--six-green-active);
  --warning-color:            var(--six-yellow);
  --warning-color-active:     var(--six-yellow-active);
  --error-color:              var(--six-red);
  --error-color-active:       var(--six-red-active);
}

@font-face {
  font-family: 'Slackey';
  src: url('/fonts/Slackey.ttf')  ;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/MerriweatherSans.ttf')  ;
  font-weight: normal;
  font-style: normal;
}

body::before {
  content: "DEV\00a0VERSION";
  position: fixed;
  top: 50%;
  height: 1.1em;
  margin-top: -.5em;
  left: -50%;
  width: 200%;
  font-size: 10em;
  font-weight: bold;
  text-align: center;
  opacity: .1;
  color: #f42534;
  transform: rotate(-33deg);
  border: .05em solid;
  pointer-events: none;
  z-index: 1000;
}

body {
  background-color: #00000000;
  padding: 0 1em 2em 1em;
  font-family: Merriweather, sans-serif;
  min-height: 55em;
}

.header {
  font-family: Slackey, sans-serif;
  font-weight: normal !important;
  color: var(--six-sky);
}

.intro {
  margin-bottom: 3em;
}

.value {
  background-color: #bbbbbb60 !important; /* six-gray at ~40% */
}

.value.selected {
  background-color: #95c11f80 !important; /* six-green at 50% */
}

.value.warn, .notes .warn::before {
  background-color: #f9b12280 !important; /* six-yellow at 50% */
}

.value.warn.selected {
  background-color: #d1951c80 !important; /* six-yellow-active at 50% */
}

.value.error, .notes .error::before {
  background-color: #e5232280 !important; /* six-red at 50% */
}

.value.error.selected {
  background-color: #ad1a1a80 !important; /* six-yellow-active at 50% */
}

.zones .value  .name {
  display: block;
  position: relative;
  line-height: 2.2em;
  min-height: 2em;
  font-size: 1.3em !important;
  padding-left: 2.5em !important;
}

.zones .value  .name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2em;
  width: 2em;
  margin: auto;
  background-color: var(--primary-color-active);
  mask-size: cover;
}

.zone_1 .name::before {
  mask-image: url(/img/indoor.svg);
}

.zone_2 .name::before {
  mask-image: url(/img/terrace.svg);
}

.zone_3 .name::before {
  mask-image: url(/img/vip.svg);
}

lbt-button {
  border-radius: .2em !important;
}

app-dialog.showDialog {
  flex-flow: column nowrap;
}

app-dialog .box {
  border-radius: .5em !important;
}

app-dialog::before, app-dialog::after {
  content: '';
  flex-grow: 1;
  mask: center no-repeat repeat url('/img/arrow.svg');
  background-color: var(--primary-color-active);
  opacity: .6;
}

app-dialog::before {
  transform: rotate(180deg);
}

@media (max-width:1280px) {

  .header {
    font-size: 3em !important;
  }

  .kitchen1 .value, .kitchen2 .value {
    width: inherit;
  }
}

@media (min-width:1281px) {
  
  .kitchen1 .value, .kitchen2 .value {
    width: 15% !important;
  }

  .kitchen1 .value .name, .kitchen2 .value .name {
    text-align: center;
  }
}
