:root {
  --base-color-blue: #198fcd;
  --base-color-purple: #47599b;
}
* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: none;
  user-select: none;
  -webkit-user-drag: none;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
select,
input:not([type=checkbox]):not([type=hidden]):not([type=radio]):not([type=range]),
button,
textarea {
  user-select: auto;
  appearance: none;
  border: none;
  outline: none;
  font-size: 1rem;
}
html,
body {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  position: relative;
  background: white;
}
body:has(.panel.active > header) {
  background-color: #47599b;
}
body,
input,
select,
textarea {
  font-family: -apple-system-font, "Helvetica Neue", HelveticaNeue, "Roboto", "Segoe UI", sans-serif;
  color: black;
}
button {
  cursor: pointer;
  padding: 10px 20px;
  background: #198fcd;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
}
main {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: opacity ease-in-out 500ms;
}
main > section.panels {
  flex: 1;
  position: relative;
}
main > nav {
  background: #1d2023;
  height: 60px;
  overflow: hidden;
}
main > nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}
main > nav ul li {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #b3b3b3;
  padding: 5px 0;
  margin: 0;
}
main > nav ul li > svg {
  display: block;
  width: 100%;
  height: 24px;
  margin: 5px 0 7px 0;
}
main > nav ul li > svg > * {
  fill: #b3b3b3;
}
main > nav ul li > div {
  text-transform: uppercase;
  font-size: 11px;
  height: 15px;
  line-height: 15px;
}
main > nav ul li.active svg > * {
  fill: #F5A31D;
}
main > nav ul li.active div {
  color: #F5A31D;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
dialog {
  width: calc(100vw - 40px);
  max-width: 400px;
  background-color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  --t-duration: 300ms;
  transition: opacity var(--t-duration) ease-out, transform var(--t-duration) ease-out, overlay var(--t-duration), display calc(var(--t-duration) + 100ms);
  transition-behavior: allow-discrete;
  transform: translateY(30px);
  opacity: 0;
}
dialog > *:empty {
  display: none;
}
dialog > .dialog-header {
  padding: 10px;
  font-weight: bold;
}
dialog > .dialog-body {
  padding: 10px;
}
dialog > .dialog-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  text-align: center;
}
dialog > .dialog-footer button.btn-cancel {
  margin-top: 10px;
  background: none;
  color: #575e69;
}
dialog > .dialog-footer:has( > button:nth-child(3)) {
  flex-direction: column;
}
dialog::backdrop {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity var(--t-duration) ease-out;
}
dialog[open] {
  opacity: 1;
  transform: translateY(0);
  @starting-style {
    transform: translateY(-30px);
    opacity: 0;
  }
}
dialog[open]::backdrop {
  opacity: 1;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
body > div#msg-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: all ease-in-out 100ms;
}
body > div#msg-loading > section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  max-width: 50%;
  height: 120px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
}
body > div#msg-loading > section > div {
  font-size: 30px;
}
body > div#msg-loading > section > footer {
  text-align: center;
  padding: 10px 10px 0 10px;
}
body > div#msg-loading.visible {
  opacity: 1;
  backdrop-filter: blur(5px);
}
body > div#msg-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3) !important;
  opacity: 0;
  transition: all ease-in-out 300ms;
}
body > div#msg-progress > section {
  width: 80%;
  background: white;
  padding: 50px;
}
body > div#msg-progress > section > header {
  text-align: center;
  font-weight: bold;
  padding-bottom: 50px;
}
body > div#msg-progress > section > div.value {
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
body > div#msg-progress > section > div.value > span {
  display: block;
  height: 10px;
  width: 0;
  background-color: #47599b;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  transition: width ease-in-out 100ms;
  animation: 1s linear infinite progress-bar-stripes;
}
body > div#msg-progress > section > div.value:after {
  content: attr(data-value);
  display: block;
  position: absolute;
  right: 0;
  margin-top: 5px;
  font-size: 0.8rem;
  opacity: 0.7;
}
body > div#msg-progress.visible {
  opacity: 1;
  backdrop-filter: blur(5px);
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 20px;
  }
}
/* photoswipe plugin */
.pswp__top-bar {
  padding-top: env(safe-area-inset-top);
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* https://github.com/GioSensation/ios-slide */
@keyframes panelSlideInFromRight {
  0% {
    left: 100vw;
  }
  100% {
    left: 0;
  }
}
@keyframes panelSlideInFromLeft {
  0% {
    left: -30vw;
  }
  100% {
    left: 0;
  }
}
@keyframes panelSlideInFromTop {
  0% {
    top: -100vh;
  }
  100% {
    top: 0;
  }
}
@keyframes panelSlideInFromBottom {
  0% {
    top: 100vh;
  }
  100% {
    top: 0;
  }
}
@keyframes panelSlideOutFromRight {
  0% {
    left: 0;
  }
  100% {
    left: -30vw;
  }
}
@keyframes panelSlideOutFromLeft {
  0% {
    left: 0;
  }
  100% {
    left: 100vw;
  }
}
@keyframes panelSlideOutFromTop {
  0% {
    top: 0;
  }
  100% {
    top: -30vh;
  }
}
@keyframes panelSlideOutFromBottom {
  0% {
    top: 0;
  }
  100% {
    top: 30vw;
  }
}
@keyframes panelFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes panelFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
section.panels > article.panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  flex-direction: column;
  display: none;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  background: white;
}
section.panels > article.panel[class*='slide-'] {
  opacity: 1;
}
section.panels > article.panel[class*='slide-in'] {
  box-shadow: -3px 0 10px 5px rgba(0, 0, 0, 0.2);
}
section.panels > article.panel.slide-in-from-right {
  animation: panelSlideInFromRight 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
section.panels > article.panel.slide-in-from-left {
  animation: panelSlideInFromLeft 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
section.panels > article.panel.slide-in-from-top {
  animation: panelSlideInFromTop 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
section.panels > article.panel.slide-in-from-bottom {
  animation: panelSlideInFromBottom 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
section.panels > article.panel.slide-out-from-right {
  animation: panelSlideOutFromRight 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
section.panels > article.panel.slide-out-from-left {
  animation: panelSlideOutFromLeft 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
section.panels > article.panel.slide-out-from-top {
  animation: panelSlideOutFromTop 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
section.panels > article.panel.slide-out-from-bottom {
  animation: panelSlideOutFromBottom 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
section.panels > article.panel.fade-in {
  animation: panelFadeIn 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
section.panels > article.panel.fade-out {
  animation: panelFadeOut 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
section.panels > article.panel.visible {
  left: 0;
  opacity: 1;
}
section.panels > article.panel.active {
  display: flex;
  visibility: visible;
}
section.panels > article.panel.touch-active {
  pointer-events: all;
  z-index: 2;
}
section.panels > article.panel > header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  height: calc(44px + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: #47599b;
}
section.panels > article.panel > header h1 {
  flex: 1;
  color: white;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 20px;
  font-size: 20px;
}
section.panels > article.panel > header h1:last-child {
  padding-right: 50px;
}
section.panels > article.panel > header button {
  background: none;
  border: none;
  outline: none;
  width: 50px;
  height: 100%;
  padding: 0;
  font-family: 'Font Awesome 5 Free';
  font-size: 20px;
  font-weight: 900;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.panels > article.panel > header button.btn-back:before {
  content: '\f060';
}
html.platform-ios section.panels > article.panel > section:last-child,
html.platform-ios section.panels > article.panel > footer:last-child {
  padding-bottom: env(safe-area-inset-bottom);
}
section.panels article.panel-start {
  background: url('../img/bg_start.jpg') no-repeat center center;
  background-size: cover;
}
section.panels article.panel-start button,
section.panels article.panel-start input {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
section.panels article.panel-start > header {
  height: calc(30% + env(safe-area-inset-bottom));
  padding-top: env(safe-area-inset-top);
  background: white url('../img/logo.svg') no-repeat 50% calc(50% + env(safe-area-inset-top));
  background-size: 80%;
  border-bottom: 22px solid #47599b;
}
section.panels article.panel-start > header:after {
  content: '';
  position: absolute;
  bottom: -22px;
  display: block;
  width: 100%;
  height: 4px;
  background: #198fcd;
}
section.panels article.panel-start > section {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}
section.panels article.panel-start > section > div {
  display: flex;
  flex-direction: column;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease-in-out 300ms;
}
section.panels article.panel-start > section > div.active {
  opacity: 1;
  pointer-events: unset;
}
section.panels article.panel-start > section > div.start {
  justify-content: flex-end;
  align-items: center;
  padding-bottom: calc(20% - 50px);
}
section.panels article.panel-start > section > div.start button {
  border: 0;
  outline: 0;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  width: 80%;
  padding: 20px 0;
}
section.panels article.panel-start > section > div.start button > span.fa {
  margin-right: 5px;
}
section.panels article.panel-start > section > div.start button.btn-measure {
  background-color: #198fcd;
  margin-bottom: 20px;
}
section.panels article.panel-start > section > div.start button.btn-login,
section.panels article.panel-start > section > div.start button.btn-measurements {
  background-color: #47599b;
}
section.panels article.panel-start > section > div.start button.btn-documents {
  background: none;
  box-shadow: none;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5), 0px 0px 5px #000000;
}
section.panels article.panel-start > section > div.login {
  justify-content: center;
  align-items: center;
  padding: 15px;
}
section.panels article.panel-start > section > div.login form {
  width: 100%;
  padding: 30px;
  background: rgba(71, 89, 155, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
section.panels article.panel-start > section > div.login form div.form-input {
  position: relative;
  margin-bottom: 15px;
}
section.panels article.panel-start > section > div.login form div.form-input span.fa {
  position: absolute;
  left: 15px;
  line-height: 40px;
  color: gray;
}
section.panels article.panel-start > section > div.login form div.form-input input {
  padding-left: 40px;
}
section.panels article.panel-start > section > div.login form input,
section.panels article.panel-start > section > div.login form button {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0;
  border-radius: 0;
}
section.panels article.panel-start > section > div.login form input:last-child,
section.panels article.panel-start > section > div.login form button:last-child {
  margin-bottom: 0;
}
section.panels article.panel-start > section > div.login form button.btn-submit {
  margin-bottom: 15px;
  margin-top: 20px;
  box-shadow: unset;
}
section.panels article.panel-start > section > div.login button.btn-cancel {
  background: none;
  box-shadow: none;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
  margin-top: 15px;
  padding-bottom: 0;
}
section.panels article.panel-measurements > header button.btn-logout:before {
  content: '\f2f5';
}
section.panels article.panel-measurements > section {
  flex: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
section.panels article.panel-measurements > section form {
  position: relative;
  margin: 10px;
  border-radius: 5px;
  background: whitesmoke;
}
section.panels article.panel-measurements > section form input[type=search] {
  width: calc(100% - 30px);
  height: 2.5rem;
  margin-left: 30px;
  background: none;
  outline: none;
  border: none;
}
section.panels article.panel-measurements > section form input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  margin-left: 0.4em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
  cursor: pointer;
}
section.panels article.panel-measurements > section form.noresults:after {
  content: attr(data-text-noresults);
  position: absolute;
  display: block;
  width: 100%;
  top: 100%;
  padding: 20px;
  text-align: center;
}
section.panels article.panel-measurements > section form:before {
  content: '\f002';
  display: flex;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 10px;
  height: 100%;
  font-family: 'Font Awesome 5 Free';
  font-size: 1rem;
  font-weight: 900;
  opacity: 0.6;
}
section.panels article.panel-measurements > section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.panels article.panel-measurements > section ul li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0 0 0 15px;
  border-bottom: 1px solid #198fcd;
  cursor: pointer;
}
section.panels article.panel-measurements > section ul li div.score {
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
section.panels article.panel-measurements > section ul li div.score:before {
  content: '\f0a3';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'Font Awesome 5 Free';
  font-size: 30px;
  font-weight: 900;
}
section.panels article.panel-measurements > section ul li div.score:after {
  content: attr(data-score);
  display: block;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
section.panels article.panel-measurements > section ul li div.score[data-score]:before {
  color: #008000;
}
section.panels article.panel-measurements > section ul li div.score[data-score="4"]:before {
  color: #FF8C00;
}
section.panels article.panel-measurements > section ul li div.score[data-score="5"]:before {
  color: #e60000;
}
section.panels article.panel-measurements > section ul li div.address {
  flex: 1;
  padding: 15px;
}
section.panels article.panel-measurements > section ul li button.btn-more {
  box-sizing: content-box;
  width: 26px;
  height: 26px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 15px solid white;
  background: #999999;
}
section.panels article.panel-measurements > section ul li.hidden {
  display: none;
}
section.panels article.panel-measurements > section ul li:last-child {
  border: none;
}
section.panels article.panel-measurement-form-main > section,
section.panels article.panel-measurement-form-extra > section {
  flex: 1;
  padding: 15px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
section.panels article.panel-measurement-form-main > section ul.form,
section.panels article.panel-measurement-form-extra > section ul.form {
  list-style: none;
  background: whitesmoke;
  border: 1px solid #e6e6e6;
  padding: 0;
  margin: 0 0 15px 0;
  border-radius: 3px;
}
section.panels article.panel-measurement-form-main > section ul.form li,
section.panels article.panel-measurement-form-extra > section ul.form li {
  padding: 10px;
  margin: 0;
}
section.panels article.panel-measurement-form-main > section ul.form li > div:first-child,
section.panels article.panel-measurement-form-extra > section ul.form li > div:first-child {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
section.panels article.panel-measurement-form-main > section ul.form li > div:first-child > button,
section.panels article.panel-measurement-form-extra > section ul.form li > div:first-child > button {
  float: right;
  background: #999999;
  color: white;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  font-size: 11px;
  border-radius: 50%;
  overflow: hidden;
}
section.panels article.panel-measurement-form-main > section ul.form li label,
section.panels article.panel-measurement-form-extra > section ul.form li label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 3px 0;
}
section.panels article.panel-measurement-form-main > section ul.form li input:not([type=checkbox]),
section.panels article.panel-measurement-form-extra > section ul.form li input:not([type=checkbox]),
section.panels article.panel-measurement-form-main > section ul.form li select,
section.panels article.panel-measurement-form-extra > section ul.form li select,
section.panels article.panel-measurement-form-main > section ul.form li textarea,
section.panels article.panel-measurement-form-extra > section ul.form li textarea {
  display: block;
  width: 100%;
  background: white;
  padding: 10px;
  border: 1px solid #f2f2f2 !important;
  height: 2.8rem;
}
section.panels article.panel-measurement-form-main > section ul.form li input:not([type=checkbox]).hidden,
section.panels article.panel-measurement-form-extra > section ul.form li input:not([type=checkbox]).hidden,
section.panels article.panel-measurement-form-main > section ul.form li select.hidden,
section.panels article.panel-measurement-form-extra > section ul.form li select.hidden,
section.panels article.panel-measurement-form-main > section ul.form li textarea.hidden,
section.panels article.panel-measurement-form-extra > section ul.form li textarea.hidden {
  display: none;
}
section.panels article.panel-measurement-form-main > section ul.form li select,
section.panels article.panel-measurement-form-extra > section ul.form li select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="gray" d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: auto 50%;
  padding-right: 40px;
}
section.panels article.panel-measurement-form-main > section ul.form li select + input,
section.panels article.panel-measurement-form-extra > section ul.form li select + input {
  margin-top: 10px;
}
section.panels article.panel-measurement-form-main > section ul.form li textarea,
section.panels article.panel-measurement-form-extra > section ul.form li textarea {
  height: 100px;
}
section.panels article.panel-measurement-form-main > section ul.form li input[type=checkbox],
section.panels article.panel-measurement-form-extra > section ul.form li input[type=checkbox] {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
section.panels article.panel-measurement-form-main > section ul.form li:not(:last-child),
section.panels article.panel-measurement-form-extra > section ul.form li:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}
section.panels article.panel-measurement-form-main > footer,
section.panels article.panel-measurement-form-extra > footer {
  text-align: center;
  padding: 15px;
}
section.panels article.panel-measurement-form-extra div.input-row {
  position: relative;
}
section.panels article.panel-measurement-form-extra div.input-row span.postfix {
  display: flex;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 0px;
  height: 100%;
  font-size: 1.2rem;
  color: gray;
}
section.panels article.panel-measurement-form-extra div.photos {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
  padding: 10px;
  border: 1px solid #f2f2f2;
  background: white;
  margin-bottom: 10px;
}
section.panels article.panel-measurement-form-extra div.photos figure {
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 100%;
  min-height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
section.panels article.panel-measurement-form-extra div.photos:empty {
  display: none;
}
section.panels article.panel-measurement-form-extra div.photos-add {
  text-align: center;
}
section.panels article.panel-measurement-form-extra div.photos-add button {
  background: #47599b;
}
section.panels article.panel-measurement-values > ul.progress {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  margin: 0;
  list-style: none;
}
section.panels article.panel-measurement-values > ul.progress li {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  line-height: 27px;
  border-radius: 50%;
  text-align: center;
  background: white;
  border: 2px solid #47599b;
  cursor: pointer;
  transition: background ease-in-out 300ms;
}
section.panels article.panel-measurement-values > ul.progress li.active {
  background: #47599b;
  color: white;
  font-weight: bold;
}
section.panels article.panel-measurement-values > ul.progress:after {
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 29px;
  height: 2px;
  width: calc(100% - 40px);
  background: #47599b;
}
section.panels article.panel-measurement-values > section {
  flex: 1;
  padding: 15px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
section.panels article.panel-measurement-values > section div.variables div.var {
  display: none;
}
section.panels article.panel-measurement-values > section div.variables div.var h2 {
  margin: 0;
  padding: 0 0 10px 0;
  word-wrap: break-word;
}
section.panels article.panel-measurement-values > section div.variables div.var p {
  margin: 0;
  padding: 0;
}
section.panels article.panel-measurement-values > section div.variables div.var input[type=range] {
  appearance: none;
  position: relative;
  width: 100%;
  margin: 50px 0 0 0;
  box-shadow: unset;
}
section.panels article.panel-measurement-values > section div.variables div.var input[type=range]::-webkit-slider-runnable-track {
  background: #e6e6e6;
  border-radius: 15px;
}
section.panels article.panel-measurement-values > section div.variables div.var input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  outline: none;
  background-color: #198fcd;
  cursor: pointer;
}
section.panels article.panel-measurement-values > section div.variables div.var.active {
  display: block;
}
section.panels article.panel-measurement-values > section div.variables div.var ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  padding: 5px 0 0 0;
  margin: 0;
}
section.panels article.panel-measurement-values > section div.variables div.var ul li {
  display: block;
  width: 30px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
}
section.panels article.panel-measurement-values > section div.photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 50px;
}
section.panels article.panel-measurement-values > section div.photo-container figure {
  display: none;
  padding: 10px;
  margin: 0 0 10px 0;
  border-radius: 5px;
  background: #e6e6e6;
}
section.panels article.panel-measurement-values > section div.photo-container figure > img {
  display: block;
  border: 1px solid #cccccc;
  max-height: 200px;
  max-width: 200px;
}
section.panels article.panel-measurement-values > section div.photo-container button {
  background: #47599b;
}
section.panels article.panel-measurement-values > section div.photo-container button:after {
  content: attr(data-text-add);
}
section.panels article.panel-measurement-values > section div.photo-container.photo-visible figure {
  display: block;
}
section.panels article.panel-measurement-values > section div.photo-container.photo-visible button:after {
  content: attr(data-text-change);
}
section.panels article.panel-measurement-values > footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
  text-align: center;
}
section.panels article.panel-measurement-values > footer button {
  min-width: 40%;
  transition: background ease-in-out 150ms;
  white-space: nowrap;
}
section.panels article.panel-measurement-values.cur-var-1 > footer button.btn-prev {
  background: #cccccc;
  pointer-events: none;
  cursor: none;
}
section.panels article.panel-measurement-score > section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
section.panels article.panel-measurement-score > section h2 {
  text-align: center;
  font-size: 1.2rem;
}
section.panels article.panel-measurement-score > section div.score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}
section.panels article.panel-measurement-score > section div.score div.score-nr {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 15px 0;
}
section.panels article.panel-measurement-score > section div.score div.score-nr:before {
  content: '\f0a3';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'Font Awesome 5 Free';
  font-size: 100px;
  font-weight: 900;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
section.panels article.panel-measurement-score > section div.score div.score-nr:after {
  content: attr(data-score);
  display: block;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 50px;
  font-weight: bold;
}
section.panels article.panel-measurement-score > section div.score div.score-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  background: #e6e6e6;
  padding: 0 25px;
  height: 70px;
  border-radius: 5px;
}
section.panels article.panel-measurement-score > section div.score div.score-desc > * {
  display: block;
}
section.panels article.panel-measurement-score > section div.score[data-score] div.score-nr:before {
  color: #008000;
}
section.panels article.panel-measurement-score > section div.score[data-score='4'] div.score-nr:before {
  color: #FF8C00;
}
section.panels article.panel-measurement-score > section div.score[data-score='5'] div.score-nr:before {
  color: #e60000;
}
section.panels article.panel-measurement-score > section div.score-values {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
section.panels article.panel-measurement-score > section div.score-values table {
  border-collapse: collapse;
}
section.panels article.panel-measurement-score > section div.score-values table tr > * {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 15px;
}
section.panels article.panel-measurement-score > section div.score-values table tr th {
  text-align: left;
  font-weight: normal;
}
section.panels article.panel-measurement-score > section div.score-values table tr td:first-child {
  padding-right: 0;
}
section.panels article.panel-measurement-score > section div.score-values table tr td:last-child {
  padding-left: 0;
}
section.panels article.panel-measurement-score > section div.score-values table tr:last-child > * {
  border-bottom: none;
}
section.panels article.panel-measurement-score > section div.score-form-extra {
  text-align: center;
  padding-bottom: 100px;
}
section.panels article.panel-measurement-score > section div.score-form-extra button {
  background: #47599b;
}
section.panels article.panel-measurement-score > section div.score-form-extra.hidden {
  display: none;
}
section.panels article.panel-measurement-score > footer {
  padding: 15px;
  text-align: center;
}
section.panels article.panel-measurement-score > button.btn-contact {
  position: fixed;
  bottom: calc(90px + env(safe-area-inset-bottom));
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  background: #47599b;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity ease-in-out 300ms;
}
section.panels article.panel-measurement-score > button.btn-contact span.fa {
  animation: phone-attn 1s ease-in-out;
  animation-iteration-count: 15;
}
section.panels article.panel-measurement-score > button.btn-contact:after {
  content: attr(data-callout-text);
  display: block;
  position: absolute;
  bottom: -25px;
  left: -35px;
  width: 130px;
  height: 20px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
}
section.panels article.panel-measurement-score.visible > button.btn-contact {
  opacity: 1;
}
section.panels article.panel-measurement-products > section {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
section.panels article.panel-measurement-products > section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.panels article.panel-measurement-products > section ul li {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0;
  padding: 15px;
  border-bottom: 1px solid #198fcd;
  cursor: pointer;
}
section.panels article.panel-measurement-products > section ul li figure {
  display: block;
  margin: 0;
  padding: 0;
  width: 80px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.panels article.panel-measurement-products > section ul li div.product-data {
  flex: 1;
  margin-left: 15px;
}
section.panels article.panel-measurement-products > section ul li div.product-data h2 {
  margin: 0;
  padding: 0;
}
section.panels article.panel-measurement-products > section ul li div.product-data p {
  margin: 0;
  padding: 0;
}
section.panels article.panel-measurement-products > section ul li:last-child {
  border: none;
}
section.panels article.panel-measurement-products > section ul li:after {
  content: '\f35d';
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-family: 'Font Awesome 5 Free';
  font-size: 16px;
  font-weight: 900;
  color: #47599b;
}
section.panels article.panel-documents > section {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
section.panels article.panel-documents > section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.panels article.panel-documents > section ul.categories > li > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #198fcd;
  color: white;
  font-weight: bold;
  border-bottom: 1px solid white;
  cursor: pointer;
}
section.panels article.panel-documents > section ul.categories > li > div:after {
  display: inline-block;
  content: '\f0d7';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
section.panels article.panel-documents > section ul.categories > li > ul.products {
  display: none;
  padding: 5px 0;
}
section.panels article.panel-documents > section ul.categories > li > ul.products li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #cccccc;
  cursor: pointer;
}
section.panels article.panel-documents > section ul.categories > li > ul.products li:last-child {
  border-bottom: none;
}
section.panels article.panel-documents > section ul.categories > li > ul.products li:after {
  display: inline-block;
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #666666;
}
section.panels article.panel-documents > section ul.categories > li.active > ul.products {
  display: block;
}
section.panels article.panel-documents > section ul.categories > li.active > div:after {
  content: '\f0d8';
}
@keyframes phone-attn {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
