/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-target {
  position: relative; }

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1; }

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0; }

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat; }

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto; }

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0; }

.noUi-horizontal .noUi-origin {
  height: 0; }

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute; }

.noUi-touch-area {
  height: 100%;
  width: 100%; }

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s; }

.noUi-state-drag * {
  cursor: inherit !important; }

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px; }

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px; }

.noUi-vertical {
  width: 18px; }

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px; }

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto; }

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB; }

.noUi-connects {
  border-radius: 3px; }

.noUi-connect {
  background: #3FB8AF; }

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize; }

.noUi-vertical .noUi-draggable {
  cursor: ns-resize; }

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB; }

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB; }

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px; }

.noUi-handle:after {
  left: 17px; }

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px; }

.noUi-vertical .noUi-handle:after {
  top: 17px; }

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8; }

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed; }

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-pips {
  position: absolute;
  color: #999; }

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center; }

.noUi-value-sub {
  color: #ccc;
  font-size: 10px; }

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC; }

.noUi-marker-sub {
  background: #AAA; }

.noUi-marker-large {
  background: #AAA; }

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%; }

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%); }

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%); }

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px; }

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px; }

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px; }

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%; }

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px; }

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%); }

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px; }

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px; }

.noUi-marker-vertical.noUi-marker-large {
  width: 15px; }

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap; }

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%; }

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%; }

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px; }

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px; }

body {
  background-color: #efefef; }

#text {
  background-color: white;
  border-radius: 10px;
  padding: 1em;
  border: lightgrey 1px solid;
  box-shadow: 3px 3px 5px lightgrey; }

.interviewers {
  display: none;
  color: #ff0041;
  font-style: italic; }

.quote {
  font-style: italic;
  color: #888888; }

.design {
  width: 100%; }
  .design th {
    text-align: center;
    border: white solid 1px;
    padding-top: 1.5em;
    padding-bottom: 1em; }
  .design td, .design th {
    background-color: #f1f1f1;
    border-left: 1.5em white solid;
    border-right: 1.5em white solid;
    position: relative;
    vertical-align: top;
    background-clip: padding-box; }
  .design td {
    text-align: center;
    font-size: 0.9em; }
  .design td.blue, .design th.blue {
    background-color: #e7f8ff; }
  .design td.yellow, .design th.yellow {
    background-color: #fffcec !important; }
  .design td.purple, .design th.purple {
    background-color: #ffe7ee !important; }
  .design td.green, .design th.green {
    background-color: #e4fff1 !important; }
  .design td.brown, .design th.brown {
    background-color: #fff2ea !important; }
  .design td {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    border-top: #d1d1d1 solid 1px; }
  .design td:before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    height: 1px;
    width: 10px;
    border-bottom: 1px solid #f1f1f1; }
  .design td:after {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    height: 1px;
    width: 10px;
    border-bottom: 1px solid #f1f1f1; }
  .design td.first-column, .design th.first-column {
    text-align: left;
    background-color: white !important; }
    .design td.first-column:before, .design th.first-column:before {
      content: "";
      position: absolute;
      left: 0;
      top: -1px;
      height: 1px;
      width: 10px;
      border-bottom: 1px solid white; }
    .design td.first-column:after, .design th.first-column:after {
      content: "";
      position: absolute;
      right: 0;
      top: -1px;
      height: 1px;
      width: 10px;
      border-bottom: 1px solid white; }
  .design .uberRow td, .design .uberRow th {
    padding-bottom: 0; }
  .design .subrow td {
    border-top: 1px solid #f1f1f1;
    padding-top: 0;
    padding-bottom: 0; }
  .design .subrow td.first-column {
    border-top: 1px solid #f1f1f1;
    padding: 0.3em 0 0.3em 2em; }
  .design .subrow td.first-column, .design .subrow th.first-column {
    border-top: 1px solid white; }
  .design .subrow td.blue, .design .subrow th.blue {
    border-top: 1px solid #e7f8ff; }
  .design .subrow td.yellow, .design .subrow th.yellow {
    border-top: 1px solid #fffcec; }
  .design .subrow td.purple, .design .subrow th.purple {
    border-top: 1px solid #ffe7ee; }
  .design .subrow td.green, .design .subrow th.green {
    border-top: 1px solid #e4fff1; }
  .design .subrow td.brown, .design .subrow th.brown {
    border-top: 1px solid #fff2ea; }

.questionPercentageScale .scale {
  margin-bottom: 5em; }
.questionPercentageScale .noUi-value {
  top: 1.2em; }
.questionPercentageScale .noUi-handle {
  cursor: pointer;
  background-color: #2790B0;
  /*box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;*/
  box-shadow: none; }
.questionPercentageScale .noUi-base {
  cursor: pointer; }
.questionPercentageScale .labels {
  display: flex;
  color: #646464;
  margin-bottom: 0.5em;
  width: 110%;
  margin-left: -5%; }

#side-buttons {
  position: fixed;
  right: 0;
  top: 3vh;
  text-align: right;
  font-size: 0.8em; }
  #side-buttons a {
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
    margin-bottom: 3px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
    transition: 0.2s; }
  #side-buttons a:hover, #side-buttons a.active {
    background-color: #147cc0;
    padding-right: 1.5em; }

.questionGridDecimal .doest-know .decimal-input {
  background-color: lightgrey;
  color: lightgrey; }
.questionGridDecimal .doest-know input {
  color: lightgrey;
  background-color: lightgrey; }

.questDecimal.doest-know .decimal-input {
  background-color: lightgrey;
  color: lightgrey; }
.questDecimal.doest-know input {
  color: lightgrey;
  background-color: lightgrey; }

.decimal-input {
  display: inline-block;
  white-space: nowrap;
  background-color: white;
  padding: 0 0 0 0;
  border: 1px solid #cacaca;
  outline: none; }
  .decimal-input:focus-within {
    border: 1px solid #8a8a8a;
    -webkit-box-shadow: 0 0 5px #cacaca;
    box-shadow: 0 0 5px #cacaca;
    -webkit-transition: -webkit-box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  .decimal-input span:first-child input {
    text-align: right; }
  .decimal-input span:last-child input {
    text-align: left;
    width: 2em;
    margin-right: 0.2em; }
  .decimal-input input, .decimal-input input:active, .decimal-input input:focus {
    border: 0 solid gray;
    box-shadow: none;
    margin: 0;
    padding: 0; }

h1 {
  font-size: 30px;
  margin-bottom: 0.8em;
  color: #2790B0;
  text-align: center; }

h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold; }

h3 {
  font-size: 1.1em;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase; }

.introtext h2 {
  margin-top: 1.8em;
  font-size: 1em; }

span.reference {
  color: #3176FF;
  margin-right: 0.5em;
  display: none; }

span.referenceValue {
  color: #860CFF;
  margin-right: 0.5em;
  display: none; }

.intro {
  font-size: 1em; }

.button {
  font-size: 1em;
  font-size: 1em; }

p, ul {
  font-size: 1em; }

p img {
  width: 50%;
  float: left;
  margin: 0 2em 2em 0; }

.source {
  color: grey; }

table.display thead tr {
  background-color: rgba(72, 154, 255, 0.2); }
table.display tbody tr:nth-child(even) {
  background-color: #f7f7f7; }

.inputPrefix {
  float: left;
  margin-right: 0.5em;
  margin-top: 0.5em; }

.questionGridtext input[type=text] {
  width: initial;
  text-align: center;
  display: inline-block; }

#button-bar {
  margin-top: 2em; }
  #button-bar input {
    font-size: 1.1em; }

#progress-bar {
  margin-bottom: 0px;
  font-size: 0.8em; }
  #progress-bar div.item {
    float: left; }
    #progress-bar div.item span {
      width: 100%;
      padding: 0;
      margin: 0;
      height: 1em;
      display: inline-block;
      background-color: #dddddd; }
    #progress-bar div.item span.done {
      background-color: #2199e8;
      color: white;
      font-weight: bold; }
    #progress-bar div.item div.divider {
      float: left;
      padding: 3px 10px 3px 0; }
      #progress-bar div.item div.divider div {
        width: 20px;
        border-bottom: 2px solid #dddddd;
        position: relative;
        top: -1em; }

div.question {
  padding-top: 15px;
  padding-bottom: 10px; }

label {
  font-weight: normal; }

.error {
  color: #cc0000;
  margin-bottom: 1em; }

div.questionText {
  font-weight: bolder;
  margin-bottom: 1em; }
  div.questionText label {
    font-weight: bolder;
    font-size: 1em; }

.questionDescription {
  margin-bottom: 1em;
  font-weight: normal;
  font-style: italic;
  color: #666666; }

div.comment {
  margin-top: 1.5em; }

.inputSuffix {
  color: #888888;
  font-style: italic;
  margin-left: 0.5em;
  display: inline-block; }

.questionRadioList .answers label, .questionMultipleCheckbox .answers label, .questionTextArea .answers label {
  display: block;
  border: 1px lightgrey solid;
  padding: 0.4em 0.8em;
  margin-bottom: 0.4em;
  font-size: 1em;
  cursor: pointer; }
  .questionRadioList .answers label:hover, .questionMultipleCheckbox .answers label:hover, .questionTextArea .answers label:hover {
    border: 1px #B3B3B3 solid;
    background-color: #fcfcfc;
    transition: 0.05s; }
  .questionRadioList .answers label span, .questionMultipleCheckbox .answers label span, .questionTextArea .answers label span {
    margin-left: 2em;
    display: block; }
.questionRadioList .answers label.field-header, .questionMultipleCheckbox .answers label.field-header, .questionTextArea .answers label.field-header {
  border: 0 lightgrey solid;
  font-weight: bold;
  margin-top: 1.5em; }
.questionRadioList .answers input, .questionMultipleCheckbox .answers input, .questionTextArea .answers input {
  margin-top: 0.4em;
  margin-bottom: 0;
  float: left; }

.questionMultipleCheckbox .answers label, .questionTextArea .answers label {
  font-size: 0.9em; }

.questionTextArea .answers label {
  width: 60%; }

.checked {
  background-color: rgba(72, 154, 255, 0.2) !important; }

.horizontalScale {
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  margin-top: 10px; }
  .horizontalScale .hidden-label {
    display: none; }
  .horizontalScale td {
    border: 1px solid #e0e0e0;
    padding: 5px 10px 5px 10px;
    text-align: center;
    height: 3em; }
  .horizontalScale .topLegendLeft {
    float: left;
    margin-right: 20px;
    text-align: left; }
  .horizontalScale tr:hover td {
    background-color: #f9f9f9; }
  .horizontalScale .topLegendRight {
    float: right;
    margin-left: 20px;
    text-align: right; }
  .horizontalScale input {
    margin: 0; }
  .horizontalScale tr td.labels {
    font-size: 0.9em;
    vertical-align: bottom; }
  .horizontalScale .valueCell, .horizontalScale input {
    cursor: pointer; }

.desc-table td {
  vertical-align: top;
  text-align: left;
  padding: 1.2em;
  border: 1px solid #f1f1f1; }

.desc-table td ul {
  margin-bottom: 0; }

.desc-table td ol {
  margin-bottom: 0; }

table tbody tr:nth-child(even) {
  background-color: transparent; }

.designE {
  border: 0 solid #e0e0e0; }
  .designE tbody {
    border: 0 solid #e0e0e0; }
  .designE td, .designE th {
    border: 0 solid #e0e0e0;
    text-align: center; }
  .designE .first-column {
    border-bottom: 1px solid #e0e0e0;
    text-align: left; }
  .designE .second-column,
  .designE .third-column,
  .designE .fourth-column {
    width: 20% !important; }
  .designE .second-column {
    background-color: rgba(72, 154, 255, 0.1);
    border: 1px solid #e0e0e0;
    border-left: 2px #489aff solid;
    border-right: 2px #489aff solid; }
  .designE .third-column {
    border: 1px solid #e0e0e0;
    border-left: 2px #489aff solid;
    border-right: 2px #489aff solid;
    background-color: rgba(72, 154, 255, 0.1); }
  .designE tr:first-child .second-column {
    font-weight: bold;
    border-top: 2px #489aff solid; }
  .designE tr:first-child .third-column {
    font-weight: bold;
    border-top: 2px #489aff solid; }
  .designE tr.last .third-column {
    border-bottom: 2px #489aff solid; }
  .designE tr.last .second-column {
    border-bottom: 2px #489aff solid; }
  .designE .fifth-column {
    border: 1px solid #e0e0e0;
    border-left: 2px #489aff solid;
    border-right: 2px #489aff solid;
    background-color: rgba(72, 154, 255, 0.1); }
  .designE tr:first-child .fifth-column {
    font-weight: bold;
    border-top: 2px #489aff solid; }
  .designE tr.last .fifth-column {
    border-bottom: 2px #489aff solid; }
  .designE .fourth-column {
    border: 1px solid #e0e0e0;
    border-left: 2px #489aff solid;
    border-right: 2px #489aff solid;
    background-color: rgba(72, 154, 255, 0.1); }
  .designE tr:first-child .fourth-column {
    font-weight: bold;
    border-top: 2px #489aff solid; }
  .designE tr.last .fourth-column {
    border-bottom: 2px #489aff solid; }
  .designE tr.buttons td {
    border: 0px solid black;
    background-color: white;
    padding-top: 2em; }

.questText input[type=text] {
  display: inline-block;
  max-width: 60%; }

.translate-link {
  display: inline-block !important;
  color: #cccccc; }

.translate-link a {
  color: #cccccc; }

.foodTitle {
  font-size: 1.4em; }

/*
html,
body,
table,
div {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Arial", "Vedrana", sans-serif;
  font-size: 15px;
  line-height: 21px;
}
table {
  font-size: 15px;
  line-height: 21px;
}
body,
table,
ul {
  color: #4A4B46;
}
a {
  text-decoration: none;
  color: #2790B0;
}
#container {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}
#containerFull {
  margin-left: 20px;
  margin-right: 20px;
}

div#text h1 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #2790B0;
}

div.question {
  padding-top: 15px;
  padding-bottom: 10px;
}
div.questionText label {
  font-weight: bolder;
}
div.questionText {
  font-weight: bolder;
}
label {
  font-weight: normal;
}


.questionRadioListInline input {
  margin-right: 8px;
}
.questionRadioListInline label {
  margin-right: 30px;
}
.questionRadioList input {
  margin-right: 8px;
}


.questionMultipleCheckbox input {
  margin-right: 15px;
}
.error {
  color: #AF3618;
  margin-left: 40px;
  padding-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
.errorPage {
  color: #AF3618;
  font-size: 14px;
  font-weight: bold;
}
div.comment {
  margin-left: 20px;
}
div.comment span {
  padding-right: 20px;
}
table.display td {
  padding-right: 10px;
  padding-left: 10px;
}

div#header-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
div#header-strip .white {
  background-color: #ffffff;
}
div#header-strip .orange {
  background-color: #2790B0;
}
div.instructions,
span.instructions,
p.instructions {
  color: #006600;

}
span.reference {
  color: #3176FF;
  margin-right: 0.5em;
  display: none;
}
span.referenceValue {
  color: #860CFF;
  margin-right: 0.5em;
  display: none;
}
#button-bar {
  margin-top: 40px;
}
input[type=submit] {
  padding: 5px 10px 5px 10px;
}
.questionDescription {
  font-weight: normal;
  margin: 10px 0 10px 0;
  font-style: italic;
  color: #666666;
}
.imageComment {
  font-size: 0.9em;
  color: #666666;
  text-align: center;
}
.datepicker {
  text-align: center;
}
table.vydajeGrid {
  margin-top: 30px;
}
table.vydajeGrid td {
  padding: 15px 3px 15px 3px;
  border-collapse: collapse;
}
table.vydajeGrid tr.bottom-row td {
  border-bottom: 1px solid #999999;
}
table.vydajeGrid td.bottom {
  border-bottom: 1px solid #999999;
}
table.vydajeGrid th {
  background-color: #f8f8f8;
  padding: 10px 0 10px 0;
  text-align: left;
  vertical-align: top;
}
table.vydajeGrid td,
table.vydajeGrid th {
  padding-right: 40px;
}
table.vydajeGrid tr.th-no-bold th {
  font-weight: normal;
}
table.vydajeGrid td.tdError {
  background-color: #ffeeee;
}
.batteryError td {
  color: #dd0000;
}
.horizontalScale {
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  margin-top: 10px;
}
.horizontalScale td {
  border: 1px solid #e0e0e0;
  padding: 5px 10px 5px 10px;
  text-align: center;
}
.horizontalScale .topLegendLeft {
  float: left;
  margin-right: 20px;
  text-align: left;
}
.horizontalScale .topLegendRight {
  float: right;
  margin-left: 20px;
  text-align: right;
}
.horizontalScale tr:hover td {
  background-color: #f9f9f9;
}
.valuesBattery tr:hover td {
  background-color: #f9f9f9;
}
.designTable {
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  margin-top: 10px;
}
.designTable td {
  border: 1px solid #e0e0e0;
  padding: 5px 10px 5px 10px;
  text-align: left;
}
.designTable .topLegendLeft {
  float: left;
  margin-right: 20px;
}
.designTable .topLegendRight {
  float: right;
  margin-left: 20px;
}
.designTable tr:hover td {
  background-color: #f9f9f9;
}
.designTableX {
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  margin-top: 10px;
}
.designTableX td {
  border: 1px solid #e0e0e0;
  padding: 5px 10px 5px 10px;
  text-align: left;
}
.designTableX .topLegendLeft {
  float: left;
  margin-right: 20px;
}
.designTableX .topLegendRight {
  float: right;
  margin-left: 20px;
}
.i-dont-know input[type=checkbox] {
  margin: 0 0 0 1em;
}
.clickableImage {
  max-width: 100%;
}

#progress-bar {
  margin-top: 20px;
  font-size: 0.8em;
}
#progress-bar div.item {
  float: left;
}
#progress-bar div.item span {
  display: block;
  height: 15px;
  margin: 0 0 0 0;
  background-color: #dddddd;
  border-right: 1px solid white;
}
#progress-bar div.item span.done {
  background-color: #2790b0;
  color: white;
  font-weight: bold;
}
/*
#progress-bar {

  margin-top: 20px;
  font-size: 0.8em;

  div.item {
    float: left;

    span {
      padding: 3px 10px 3px 10px;
      margin: 0 10px 0 0;
      background-color: #dddddd;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      border-radius: 12px;
    }

    span.done {
      background-color: rgb(39, 144, 176);
      color: white;
      font-weight: bold;
    }

    div.divider {
      float: left;
      padding: 3px 10px 3px 0;

      div {
        width: 20px;
        border-bottom: 2px solid #dddddd;
        position: relative;
        top: -1em;
      }

    }

  }
}

#reference-switcher {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1em 1em;
  position: fixed;
  bottom: 1em;
  left: 0.5em;
}

#doubleScaleContainer {
  width: 300px;
  height: 550px;
  border: 1px solid white;
  position: relative;
  float: right;
  font-family: "Arial", sans-serif;
  z-index: 20;
  background-color: rgba(0, 252, 0, 0.1);
}
#doubleScaleContainer #lineNot {
  position: absolute;
  left: 0;
  background-color: rgba(252, 0, 0, 0.1);
  border-bottom: 2px rgba(252, 0, 0, 0.3) solid;
  width: 300px;
  font-size: 0;
  line-height: 0;
  display: none;
  z-index: 3;
}
#doubleScaleContainer #lineYes {
  position: absolute;
  left: 0;
  height: 550px;
  background-color: #ffffff;
  width: 300px;
  font-size: 0;
  line-height: 0;
  z-index: 2;
}
#doubleScaleContainer #unlockYes {
  position: absolute;
  bottom: -35px;
  right: -60px;
  font-size: 15px;
  line-height: 17px;
  color: black;
  width: 50px;
  display: none;
  z-index: 150;
}
#doubleScaleContainer #lineFixedNot {
  position: absolute;
  left: 10px;
  border-bottom: 2px #fc0000 solid;
  width: 280px;
  font-size: 0;
  line-height: 0;
  display: none;
  z-index: 2;
}
#doubleScaleContainer #lineFixedYes {
  position: absolute;
  left: 10px;
  border-bottom: 2px #00fc00 solid;
  width: 280px;
  font-size: 0;
  line-height: 0;
  display: none;
  z-index: 2;
}
#doubleScaleContainer #numberDisplayYes {
  position: absolute;
  bottom: -100px;
  left: 10px;
  display: none;
  font-size: 13px;
  line-height: 17px;
  color: #00fc00;
  width: 140px;
}
#doubleScaleContainer #numberDisplayYesMonth {
  position: absolute;
  bottom: -100px;
  left: 220px;
  font-size: 13px;
  line-height: 17px;
  color: #00fc00;
  width: 70px;
  text-align: right;
  display: none;
}
#doubleScaleContainer #ruler {
  position: absolute;
  left: 150px;
  top: 25px;
  height: 500px;
  width: 1px;
  border-left: 1px black solid;
  z-index: 100;
}
#doubleScaleContainer #unlockNot {
  position: absolute;
  bottom: 7px;
  right: -70px;
  display: none;
  font-size: 15px;
  line-height: 17px;
  color: black;
  width: 50px;
  z-index: 300;
}
#doubleScaleContainer #numberDisplayYes .display {
  font-size: 16px;
  color: #00fc00;
  display: block;
  float: left;
  border: solid 2px #00fc00;
  padding: 5px;
  font-weight: bold;
  background-color: white;
  width: 60px;
  text-align: right;
}
#doubleScaleContainer #numberDisplayYesMonth .display {
  font-size: 15px;
  color: #00fc00;
  display: block;
  float: right;
  margin-top: 10px;
  background: none;
  text-align: right;
}
#doubleScaleContainer #numberDisplayNot {
  position: absolute;
  bottom: 5px;
  left: 10px;
  display: block;
  font-size: 13px;
  line-height: 17px;
  color: #fc0000;
  width: 150px;
}
#doubleScaleContainer #numberDisplayNot .display {
  font-size: 16px;
  color: #fc0000;
  display: block;
  float: left;
  border: solid 2px #fc0000;
  padding: 5px;
  margin-top: 10px;
  font-weight: bold;
  background-color: white;
  width: 60px;
  text-align: right;
}
#doubleScaleContainer #numberDisplayNotMonth {
  position: absolute;
  bottom: 5px;
  left: 220px;
  display: block;
  font-size: 13px;
  line-height: 17px;
  color: #fc0000;
  width: 70px;
  text-align: right;
}
#doubleScaleContainer #numberDisplayNotMonth .display {
  font-size: 15px;
  color: #fc0000;
  display: block;
  float: right;
  margin-top: 10px;
  background: none;
  text-align: right;
}
#doubleScaleContainer span.currency {
  font-size: 20px;
  float: left;
  border: solid 2px #fc0000;
  padding: 5px 0 5px 0;
  border: 0 solid black;
}
#doubleScaleContainer #numberDisplayNot span.currency {
  padding-top: 16px;
}
#doubleScaleContainer #numberDisplayNotMonth span.currency {
  font-size: 12px;
  padding-top: 0;
  margin-top: 10px;
  float: right;
}
#doubleScaleContainer #numberDisplayYesMonth span.currency {
  font-size: 12px;
  padding-top: 0;
  margin-top: 10px;
  float: right;
}
#doubleScaleContainer #moveUp {
  position: absolute;
  left: 100px;
  top: -30px;
  display: block;
  width: 100px;
  z-index: 500;
  display: none;
}
#doubleScaleContainer #moveDown {
  position: absolute;
  left: 100px;
  top: 560px;
  display: block;
  width: 100px;
  display: none;
  z-index: 500;
}
#doubleScaleContainer #wontPay {
  position: absolute;
  left: 0px;
  top: 600px;
  display: block;
  width: 100px;
  width: 300px;
  text-align: center;
  font-weight: bold;
  z-index: 500;
  font-size: 1.2em;
}
#text2 {
  color: #669966;
}
#text3 {
  color: #996666;
}
.popover {
  max-width: 500px;
}
.popover-enable,
.popover-enable-top {
  border-bottom: dashed darkred 1px;
  color: darkred;
}
.popover-title {
  font-weight: bold;
}
.desc-table td {
  vertical-align: top;
  text-align: left;
  padding: 1.2em;
}
.desc-table td ul {
  margin-bottom: 0;
}
.desc-table td ol {
  margin-bottom: 0;
}


.infoDesign .secondColumn {
  width: 12em;
  text-align: center;
  background-color: #eeeeee;
}
.infoDesign .thirdColumn {
  width: 12em;
  text-align: center;
  background-color: #f5f5f5;
}
.grid-idk {
  color: #aaaaaa;
}

label {
  display: inline;
}


.sucha-povodne {
  color: #E3704D;
  font-weight: bold;
}

.naklady {
  color: #1F497D;
  font-weight: bold;
}

.non-technical {
  color: #e38019;
  font-weight: bold;
}

.mitigation {
  color: #00B050;
  font-weight: bold;
}

.technical {
  color: #984806;
  font-weight: bold;
}
*/
#scaleContainer {
  width: 200px;
  height: 600px;
  top: -510px;
  border: 0px solid grey;
  position: relative;
  margin-right: 20px;
  margin-left: 100px;
  font-family: "Arial", sans-serif; }
  #scaleContainer #line {
    position: absolute;
    left: 10px;
    border-bottom: 2px rgba(252, 0, 0, 0.2) solid;
    width: 180px;
    font-size: 0;
    line-height: 0;
    display: none;
    z-index: 2; }
  #scaleContainer #lineFixed {
    position: absolute;
    left: 10px;
    border-bottom: 2px #fc0000 solid;
    width: 180px;
    font-size: 0;
    line-height: 0;
    display: none;
    z-index: 2; }
  #scaleContainer #ruler {
    position: absolute;
    left: 100px;
    top: 50px;
    height: 500px;
    width: 1px;
    border-left: 1px black solid; }
  #scaleContainer #numberDisplay {
    position: absolute;
    bottom: 5px;
    left: 10px;
    display: block;
    font-size: 20px;
    line-height: 20px;
    color: grey; }
  #scaleContainer #bestState {
    font-size: 13px;
    width: 100px;
    position: absolute;
    top: 0px;
    left: 50px;
    text-align: center;
    line-height: 1.1em; }
  #scaleContainer #worstState {
    font-size: 13px;
    width: 100px;
    position: absolute;
    top: 570px;
    left: 50px;
    text-align: center;
    line-height: 1.1em; }

.hide-for-desktop {
  display: none; }

@media only screen and (max-width: 700px) {
  .hide-for-desktop {
    display: block; }

  .questionHorizontalScale.collapsible table {
    border: 0 solid black;
    display: block; }
    .questionHorizontalScale.collapsible table tr.table-heading {
      display: none; }
    .questionHorizontalScale.collapsible table tr {
      display: block; }
    .questionHorizontalScale.collapsible table td:first-child {
      font-weight: 600; }
    .questionHorizontalScale.collapsible table td {
      display: block;
      width: 100% !important;
      text-align: left !important;
      height: auto; }
      .questionHorizontalScale.collapsible table td .hidden-label {
        display: block; }
        .questionHorizontalScale.collapsible table td .hidden-label br::before {
          content: "";
          display: none; }
        .questionHorizontalScale.collapsible table td .hidden-label br {
          display: none; }
      .questionHorizontalScale.collapsible table td .label-wrapper {
        display: flex;
        gap: 10px; } }

/*# sourceMappingURL=quest.css.map */
