/* 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; }

@media (max-width: 768px) {
  body > .row > .columns {
    padding: 0; } }

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

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

.illness-card-grid {
  margin-top: 1em;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "left-top right-column" "left-bottom right-column";
  column-gap: 3rem;
  row-gap: 0; }

.illness-card-top {
  grid-area: left-top; }

.illness-card-bottom {
  grid-area: left-bottom; }
  @media (min-width: 641px) {
    .illness-card-bottom #questionContent {
      display: none; }
      .illness-card-bottom #questionContent.show {
        display: block; } }

.illness-card-right {
  grid-area: right-column;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem; }
  @media (min-width: 641px) {
    .illness-card-right {
      margin-top: 0;
      margin-bottom: 0; } }
  .illness-card-right > div {
    border: 1px solid #e0e0e0; }
  .illness-card-right table {
    margin-bottom: 0; }

.illness-card-continue-btn {
  display: none;
  margin-top: 1.5rem; }
  @media (min-width: 641px) {
    .illness-card-continue-btn {
      display: inline-block; }
      .illness-card-continue-btn.hidden {
        display: none; } }

@media (min-width: 641px) {
  body:has(.illness-card-grid) #button-bar {
    display: none; }
    body:has(.illness-card-grid) #button-bar.show {
      display: block; } }
@media (max-width: 640px) {
  .illness-card-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "left-top" "right-column" "left-bottom"; }

  .illness-card-bottom #questionContent {
    display: block !important; } }
.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;
    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 label {
    display: none; }

@media (max-width: 768px) {
  .questionHorizontalScale {
    width: 100%;
    max-width: 100%; }

  .horizontalScale {
    display: block;
    border: none;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0; }
    .horizontalScale tbody {
      display: block;
      width: 100%;
      max-width: 100%; }
    .horizontalScale tr:not(.values-row) {
      display: none; }
    .horizontalScale tr.values-row {
      display: block;
      width: 100%;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      margin-bottom: 5px;
      margin-left: 0;
      margin-right: 0;
      box-sizing: border-box; }
      .horizontalScale tr.values-row td.subquestion-text {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        padding: 15px 45px 15px 15px !important;
        font-weight: bold;
        background-color: #147cc0;
        color: white;
        border: none;
        cursor: pointer;
        position: relative;
        text-align: left !important;
        min-height: 50px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        box-sizing: border-box; }
        .horizontalScale tr.values-row td.subquestion-text::after {
          content: '\25B6';
          position: absolute;
          right: 15px;
          top: 50%;
          transform: translateY(-50%) rotate(-90deg);
          transform-origin: center center;
          font-size: 1.2em;
          color: white;
          transition: transform 0.3s ease; }
      .horizontalScale tr.values-row td:not(.subquestion-text) {
        display: block;
        width: 100%;
        padding: 8px 15px;
        border: none;
        border-top: 1px solid #e0e0e0;
        text-align: left;
        height: auto;
        cursor: pointer; }
        .horizontalScale tr.values-row td:not(.subquestion-text) label {
          display: inline;
          margin-left: 8px;
          cursor: pointer; }
        .horizontalScale tr.values-row td:not(.subquestion-text) input[type="radio"] {
          margin: 0;
          vertical-align: middle; }
      .horizontalScale tr.values-row.collapsed {
        overflow: hidden; }
        .horizontalScale tr.values-row.collapsed td:not(.subquestion-text) {
          max-height: 0;
          padding-top: 0;
          padding-bottom: 0;
          overflow: hidden;
          border-top: none; }
      .horizontalScale tr.values-row.open {
        overflow: visible; }
        .horizontalScale tr.values-row.open td.subquestion-text::after {
          transform: translateY(-50%) rotate(90deg); }
      .horizontalScale tr.values-row.answered td.subquestion-text {
        background-color: #147cc0;
        color: white; }
        .horizontalScale tr.values-row.answered td.subquestion-text::before {
          content: '\2713';
          display: inline-block;
          margin-right: 8px;
          color: white;
          font-weight: bold; }
    .horizontalScale tr:hover td {
      background-color: transparent; } }
.biddingGame {
  margin-top: 2em; }

.bidding-game-cards {
  display: flex;
  justify-content: center;
  gap: 100px; }
  @media (max-width: 768px) {
    .bidding-game-cards {
      flex-direction: column;
      align-items: center;
      gap: 40px; } }

.bidding-game-card {
  width: 300px; }

.bidding-game__label {
  margin-bottom: 1em;
  text-decoration: underline;
  text-align: center; }

.bidding-game__price-display {
  margin: 0 50px;
  background-color: #e8e8e8;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 0.5em; }

.bidding-game__question {
  text-align: center;
  margin-top: 3em; }

.bidding-game__buttons {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  gap: 100px; }
  @media (max-width: 768px) {
    .bidding-game__buttons {
      margin-top: 2em;
      flex-direction: column;
      align-items: center;
      gap: 5px; } }

.bid-button {
  text-align: center;
  width: 100%; }

@media (min-width: 769px) {
  .responsive-display-table .table-label {
    display: none; } }
@media (max-width: 768px) {
  .responsive-display-table {
    display: block;
    border: none; }
    .responsive-display-table thead {
      display: none; }
    .responsive-display-table tbody {
      display: block;
      border: 0; }
    .responsive-display-table.group-by-row tbody tr {
      display: block;
      margin-bottom: 0.5rem;
      border: 1px solid #ddd;
      overflow: hidden;
      background-color: #fff; }
      .responsive-display-table.group-by-row tbody tr th {
        display: block;
        width: 100%;
        padding: 0.7rem 1rem;
        background-color: #d3ebfa;
        font-weight: bold;
        font-size: 1em;
        text-align: left;
        border: none; }
      .responsive-display-table.group-by-row tbody tr td {
        display: block;
        width: 100%;
        padding: 1rem;
        border: none;
        border-top: 1px solid #f1f1f1;
        text-align: left; }
        .responsive-display-table.group-by-row tbody tr td .table-label {
          display: block;
          font-weight: normal;
          text-decoration: underline;
          margin-bottom: 0.5rem;
          color: #888888;
          font-size: 0.95em; }
      .responsive-display-table.group-by-row tbody tr:nth-child(even) {
        background-color: #fff; } }
  @media (max-width: 768px) and (min-width: 769px) {
    .responsive-display-table.group-by-column .table-label {
      display: none; } }
  @media (max-width: 768px) and (max-width: 768px) {
    .responsive-display-table.group-by-column {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0; }
      .responsive-display-table.group-by-column thead, .responsive-display-table.group-by-column tbody {
        display: contents; }
      .responsive-display-table.group-by-column thead tr, .responsive-display-table.group-by-column tbody tr {
        display: contents; }
      .responsive-display-table.group-by-column thead th:first-child {
        display: none; }
      .responsive-display-table.group-by-column tbody th {
        display: none; }
      .responsive-display-table.group-by-column thead th, .responsive-display-table.group-by-column tbody td {
        padding: 1rem;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        text-align: left;
        background-color: #fff; }
      .responsive-display-table.group-by-column tbody td {
        border-top: 1px solid #f1f1f1; }
        .responsive-display-table.group-by-column tbody td .table-label {
          display: block;
          font-weight: normal;
          text-decoration: underline;
          margin-bottom: 0.5rem;
          color: #888888;
          font-size: 0.95em; }
      .responsive-display-table.group-by-column thead th:not(:first-child) {
        background-color: #d3ebfa;
        font-weight: bold;
        font-size: 1em;
        border-top: 1px solid #ddd;
        padding: 0.7rem 1rem; } }

.vas-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start; }
  @media (max-width: 768px) {
    .vas-page-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem; } }

.vas-page-left {
  display: block;
  min-width: 0; }
  .vas-page-left .introtext {
    margin-bottom: 1.5rem; }
  .vas-page-left .vas-question-content {
    margin-top: 1rem; }
  .vas-page-left .questionText {
    display: block; }

.vas-page-right {
  display: flex;
  justify-content: flex-end; }
  @media (min-width: 769px) {
    .vas-page-right {
      position: sticky;
      top: 20px; } }

.vas-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  font-family: system-ui, -apple-system, sans-serif; }

@media (min-width: 769px) {
  .vas-sticky {
    position: sticky;
    top: 20px; } }

.vas-main-wrapper {
  display: flex;
  align-items: center;
  gap: 20px; }

.vas-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }
  .vas-input-wrapper input.vas-value-input,
  .vas-input-wrapper input[data-vas-input] {
    width: 70px !important;
    padding: 10px 8px;
    font-size: 20px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
    transition: border-color 0.2s ease; }
    .vas-input-wrapper input.vas-value-input:focus,
    .vas-input-wrapper input[data-vas-input]:focus {
      outline: none;
      border-color: #2199e8;
      background: #fff; }
    .vas-input-wrapper input.vas-value-input::placeholder,
    .vas-input-wrapper input[data-vas-input]::placeholder {
      color: #999; }

.vas-wrapper {
  display: flex;
  align-items: stretch;
  gap: 5px; }

.vas-labels {
  position: relative;
  font-size: 14px;
  color: #555;
  text-align: right;
  padding: 0;
  width: 80px; }
  .vas-labels .vas-label-top,
  .vas-labels .vas-label-bottom {
    position: absolute;
    right: 0;
    max-width: 200px;
    width: max-content;
    line-height: 1.3;
    transform: translateY(-50%); }
  .vas-labels .vas-label-top {
    top: 0; }
  .vas-labels .vas-label-bottom {
    bottom: 0;
    transform: translateY(50%); }

.vas-scale-area {
  position: relative;
  width: 55px;
  height: 450px;
  cursor: pointer;
  touch-action: none; }

.vas-axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #333;
  transform: translateX(-50%); }

.vas-tick {
  position: absolute;
  height: 1px;
  background: #333;
  left: 50%;
  transform: translateX(-50%); }

.vas-tick-0-5 {
  width: 6px;
  display: none; }

.vas-tick-1 {
  width: 10px; }

.vas-tick-2-5 {
  width: 14px;
  display: none; }

.vas-tick-5 {
  width: 20px; }

.vas-tick-10 {
  width: 32px; }

.vas-tick-label-right {
  position: absolute;
  font-size: 11px;
  color: #555;
  transform: translateY(-50%);
  left: calc(50% + 20px);
  user-select: none; }

.vas-marker,
.vas-hover {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  pointer-events: none; }

.vas-marker {
  background: #2199e8;
  display: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 2; }

.vas-hover {
  background: rgba(33, 153, 232, 0.3);
  display: none;
  z-index: 1; }

.vas-marker::before,
.vas-marker::after,
.vas-hover::before,
.vas-hover::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent; }

.vas-marker::before {
  left: -6px;
  border-right: 8px solid #2199e8; }

.vas-marker::after {
  right: -6px;
  border-left: 8px solid #2199e8; }

.vas-hover::before {
  left: -6px;
  border-right: 8px solid rgba(33, 153, 232, 0.3); }

.vas-hover::after {
  right: -6px;
  border-left: 8px solid rgba(33, 153, 232, 0.3); }

@media (max-width: 600px) {
  .vas-container {
    width: 100%;
    align-items: center; }

  .vas-main-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px; }

  .vas-wrapper {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    order: 1; }

  .vas-labels {
    position: static;
    width: auto;
    height: 0;
    font-size: 13px; }
    .vas-labels .vas-label-top,
    .vas-labels .vas-label-bottom {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      right: auto;
      max-width: none;
      text-align: center;
      white-space: nowrap; }
    .vas-labels .vas-label-top {
      top: 0; }
    .vas-labels .vas-label-bottom {
      bottom: 0; }

  .vas-scale-area {
    width: 65px;
    height: 320px !important; }

  .vas-input-wrapper {
    width: 100%;
    justify-content: center;
    order: 2; }
    .vas-input-wrapper input.vas-value-input,
    .vas-input-wrapper input[data-vas-input] {
      width: 100px !important;
      font-size: 24px; }

  .vas-marker,
  .vas-hover {
    width: 70px; }

  .vas-tick-1 {
    display: none; }

  .vas-tick-2-5 {
    display: block;
    width: 12px; }

  .vas-tick-5 {
    width: 26px; }

  .vas-tick-10 {
    width: 40px; }

  .vas-tick-label-right {
    left: calc(50% + 26px);
    font-size: 12px; } }
.questionVAS .vas-container {
  margin-top: 1rem; }

.risk-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 2rem 0; }
  .risk-comparison-table th, .risk-comparison-table td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc; }
  .risk-comparison-table thead th {
    background-color: #2199e8;
    color: white;
    font-weight: bold; }
  .risk-comparison-table .row-label {
    background-color: #2199e8;
    color: white;
    font-weight: normal;
    text-align: left;
    width: 180px; }
  .risk-comparison-table .risk-cell {
    background-color: #f0f0f0;
    padding: 15px; }
  .risk-comparison-table .risk-text {
    margin-bottom: 10px;
    font-weight: bold; }
  .risk-comparison-table .cost-cell {
    background-color: #f0f0f0; }
  .risk-comparison-table .cost-select {
    display: inline-block !important;
    width: auto !important;
    padding: 5px 30px 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: white;
    vertical-align: middle;
    margin: 8px 10px 8px 0; }
  .risk-comparison-table .choose-cell {
    background-color: #f0f0f0; }
  .risk-comparison-table .risk-choice-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: normal;
    color: white;
    background-color: #2199e8;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s; }
    .risk-comparison-table .risk-choice-btn:hover {
      background-color: #147dc2; }
    .risk-comparison-table .risk-choice-btn:active {
      background-color: #0f5f94; }
  .risk-comparison-table .mobile-label-row {
    display: none; }
  .risk-comparison-table .mobile-row-label {
    background-color: rgba(33, 153, 232, 0.43);
    color: black;
    font-weight: bold;
    text-align: center; }

.person-grid {
  display: inline-block;
  line-height: 0;
  font-size: 0;
  background-color: white;
  width: 360px; }

.person-icon {
  display: inline-block;
  width: 16px;
  height: 24px;
  margin: 1px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }
  .person-icon.person-colored {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 36'%3E%3Ccircle cx='12' cy='6' r='5' fill='%23ed7d31'/%3E%3Cpath d='M12 12c-5 0-9 4-9 9v12h4v-10h2v10h6v-10h2v10h4v-12c0-5-4-9-9-9z' fill='%23ed7d31'/%3E%3C/svg%3E"); }
  .person-icon.person-normal {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 36'%3E%3Ccircle cx='12' cy='6' r='5' fill='%235b9bd5'/%3E%3Cpath d='M12 12c-5 0-9 4-9 9v12h4v-10h2v10h6v-10h2v10h4v-12c0-5-4-9-9-9z' fill='%235b9bd5'/%3E%3C/svg%3E"); }

.square-grid {
  display: inline-block;
  line-height: 0;
  font-size: 0;
  background-color: white;
  width: 350px; }

.square-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0.5px; }
  .square-icon.square-colored {
    background-color: #ed7d31; }
  .square-icon.square-normal {
    background-color: #5b9bd5; }

@media (max-width: 768px) {
  .risk-comparison-table .row-label {
    width: auto; }
  .risk-comparison-table th, .risk-comparison-table td {
    padding: 5px; }
  .risk-comparison-table .desktop-only {
    display: none; }
  .risk-comparison-table .mobile-label-row {
    display: table-row; }

  .person-icon {
    width: 12px;
    height: 18px;
    margin: 0.5px; }

  .person-grid {
    width: 130px; }

  .square-icon {
    width: 4px;
    height: 4px;
    margin: 0.25px; }

  .square-grid {
    width: 112px; } }
@media (max-width: 480px) {
  .person-icon {
    width: 8px;
    height: 12px;
    margin: 0.25px; }

  .person-grid {
    width: 85px; }

  .square-icon {
    width: 3px;
    height: 3px;
    margin: 0.2px; }

  .square-grid {
    width: 85px; } }
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: inline; }

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

.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 tbody tr:nth-child(even) {
  background-color: #f7f7f7; }
table.display td {
  vertical-align: top;
  text-align: left;
  padding: 0.4em;
  border: 1px solid #f1f1f1; }
  table.display td ul, table.display td li {
    margin-bottom: 0; }
table.display th {
  background-color: #d3ebfa;
  vertical-align: top;
  font-weight: bold;
  text-align: left; }
table.display thead th {
  font-weight: bold; }

.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;
  display: flex;
  justify-items: top;
  gap: 0.5em; }
  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: flex;
  align-items: start;
  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 {
    display: inline; }
    .questionRadioList .answers label span.referenceValue, .questionMultipleCheckbox .answers label span.referenceValue, .questionTextArea .answers label span.referenceValue {
      margin-left: 0;
      margin-right: 0.5em; }
.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.50em;
  margin-right: 2em;
  margin-bottom: 0;
  float: none; }

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

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

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

.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: inline;
}
span.referenceValue {
  color: #860CFF;
  margin-right: 0.5em;
  display: inline;
}
#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; }

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