:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}

.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}

.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@charset "UTF-8";
.enketo {
  padding: 0 1em;
  margin: 0;
  /* min-height: 90vh !important; */
}
@font-face {
  font-family: 'FontAwesome';
  src: url('fontawesome-webfont.2cbc2a27c400b050970c.woff?v=4.6.2') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* From: https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap */
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUK0Udc1UAw.woff2)
      format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUK0ddc1UAw.woff2)
      format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUK0Vdc1UAw.woff2)
      format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUK0adc1UAw.woff2)
      format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUK0Wdc1UAw.woff2)
      format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUK0Xdc1UAw.woff2)
      format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUK0Zdc0.woff2)
      format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFWJ0bbck.woff2)
      format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFUZ0bbck.woff2)
      format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFWZ0bbck.woff2)
      format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVp0bbck.woff2)
      format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFWp0bbck.woff2)
      format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFW50bbck.woff2)
      format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0b.woff2)
      format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
.enketo .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.enketo .sr-only-focusable:active,
.enketo .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@keyframes pulsate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.enketo * {
  box-sizing: border-box;
}
.enketo *:before,
.enketo *:after {
  box-sizing: border-box;
}
.enketo input,
.enketo button,
.enketo select,
.enketo textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.enketo a {
  color: #ee7325;
}
.enketo a:hover,
.enketo a:focus {
  color: #843304;
}
.enketo a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.enketo figure {
  margin: 0;
}
.enketo img {
  vertical-align: middle;
}
.enketo hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.enketo strong {
  font-weight: bold;
}
.enketo h1 {
  font-size: 44px;
}
.enketo h2 {
  font-size: 36px;
}
.enketo h3 {
  font-size: 20px;
}
.enketo h4 {
  font-size: 16px;
}
.enketo h5 {
  font-size: 13.6px;
}
.enketo h6 {
  font-size: 11.6px;
}
.enketo h2,
.enketo h3,
.enketo h4 {
  font-weight: bold;
}
.enketo input,
.enketo select,
.enketo textarea {
  font-weight: normal;
}
.enketo .iframe .paper {
  border-radius: 0;
  border: none;
}
.enketo .iframe .form-header__button--homescreen {
  display: none;
}
.enketo .ios-iframe-bug-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
}
.enketo .ios-iframe-bug-wrap .main-loader {
  height: 100vh;
}
.enketo .edit .paper .branding {
  display: none;
}
.enketo .ios-safari {
  display: inline-block;
  width: 25px;
  height: 30px;
  margin-bottom: -3px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA/CAYAAACrSjsVAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACw2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDxwaG90b3Nob3A6RGF0ZUNyZWF0ZWQ+MjAxNS0xMi0yNFQwOToxODozMTwvcGhvdG9zaG9wOkRhdGVDcmVhdGVkPgogICAgICAgICA8ZXhpZjpVc2VyQ29tbWVudD4KICAgICAgICAgICAgPHJkZjpBbHQ+CiAgICAgICAgICAgICAgIDxyZGY6bGkgeG1sOmxhbmc9IngtZGVmYXVsdCI+U2NyZWVuc2hvdDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpBbHQ+CiAgICAgICAgIDwvZXhpZjpVc2VyQ29tbWVudD4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CqO4YmMAAAIkSURBVGgF7ZrPSsNAEMZnTaOCvogeFAQv2h7EiwcREU+CJ0+eBBFEoSK1tIhePKigT+ADeNfWgx68+SjaRtKo2dJtlKKZltkhjbOlJCST+eab32ZJ/6harfYJKRwDKfTUtCTG+o0sG7Hygwv6zTUyHELaUOkuktrL+tZlIzVLUsWKC8eVSMYYtG0uA8qSozBt8f6nKaPUNpezR25Ahc5svL6bys81jCcw+9pcuepa0dZ+rCweh2HRZvoV5n3YzUbG9L4+poc2V6pG07TtnmCH3Jg2ddoq9mTBh+2ZoKNMfUyf08OWOdJ2GVMqbNfFog/rk52mjMvN6QAGHYCt22jF3M9FZE1cr1syYmePTpOUNnW9/LcpU+zGVACXSz7oazS5q+fQKdEgI7Y2EcDNiwM7sw1YGftAl6epumEV508OrI7/ThidsBWo6vU6y9P96NFwU/I173VbY0/xZFOxJ3WLF4kxi821kjq1xGJXRXPTd9tW7CJhK///JWZIYQmYeOy227xYwqklJsawUyspcUIsKSSwdQgxbKeSEifEkkICW4cQw3YqKXFCLCkksHUIMWynkhKXUQr3cws2Ls4YV57YrwbiCsWefzt4x4aSxMk9RtJGxiRCjLHZJFJCjKSNjEmEGGOzSaSEGEkbGZMIMcZmk0gJMZI2MiYRYozNJpFCf9AcKQyRCHIlSe1UVJ7nsfzliIuU0UktMTFmEPfLVoj1CylT5xd6HHOR9k4uUAAAAABJRU5ErkJggg==);
  background-size: 25px 30px;
  background-repeat: no-repeat;
}
.enketo .android-chrome {
  padding: 0 5px;
}
.enketo .alert-box {
  width: 100%;
  padding: 10px;
}
.enketo .alert-box.error {
  background-color: #f2dede;
  color: #a94442;
  border: #ebccd1;
}
.enketo .alert-box.warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border: #faebcc;
}
.enketo .alert-box.success {
  background-color: #dff0d8;
  color: #3c763d;
  border: #d6e9c6;
}
.enketo .alert-box.info {
  background-color: #d9edf7;
  color: #31708f;
  border: #bce8f1;
}
.enketo .alert-box em {
  color: #666;
}
.enketo .alert-box strong {
  color: black;
  font-size: 110%;
  text-decoration: none;
}
.enketo .alert-box a {
  text-decoration: underline;
}
.enketo .alert-box .error-list {
  margin-top: 1em;
  font-size: 0.8em;
}
.enketo .alert-box .error-list li {
  line-height: 1.4em;
}
.enketo #feedback-bar {
  transition: all 1s ease-out;
  box-sizing: border-box;
  border-radius: 0;
  position: fixed;
  z-index: 13;
  top: -100px;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 35px;
  height: auto;
  z-index: 5000;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.enketo #feedback-bar p {
  position: relative;
  margin: 0 50px;
  text-align: center;
  padding: 0.6em 0;
  font-size: 1.1em;
}
.enketo #feedback-bar p + p {
  border-top: 1px #ddd dashed;
}
.enketo #feedback-bar .icon-info-circle,
.enketo #feedback-bar .close {
  position: absolute;
  top: 50%;
}
.enketo #feedback-bar .icon-info-circle {
  margin-top: -7.5px;
  left: 20px;
}
.enketo #feedback-bar .close {
  margin-top: -10.5px;
  right: 20px;
}
.enketo #feedback-bar.feedback-bar--show {
  top: 0px;
}
.enketo .notification {
  border: 2px solid #ee7325;
  width: calc((100% - 1100px) / 2 - 40px);
  min-height: 140px;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  background: white;
  line-height: 22px;
  top: 100px;
  left: 20px;
}
@media screen and (max-width: 1023px) {
  .enketo .notification {
    display: none;
  }
}
.enketo .main-loader__image {
  border-color: #ee7325;
}
.enketo .clearfix:before,
.enketo .clearfix:after {
  content: ' ';
  display: table;
}
.enketo .clearfix:after {
  clear: both;
}
.enketo .center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.enketo .pull-right {
  float: right !important;
}
.enketo .pull-left {
  float: left !important;
}
.enketo .hide {
  display: none !important;
}
.enketo .show {
  display: block !important;
}
.enketo .invisible {
  visibility: hidden;
}
.enketo .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.enketo .hidden {
  display: none !important;
  visibility: hidden !important;
}
.enketo .affix {
  position: fixed;
}
.enketo button {
  background: none;
  border: none;
}
.enketo .btn,
.enketo .vex.vex-theme-plain .vex-dialog-button {
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  font-family: 'Open Sans';
  font-weight: normal;
  line-height: normal;
  margin: 0 0 16px;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  font-size: 16px;
  background-color: #ee7325;
  border-color: #a53f06;
  color: white;
  border-radius: 3px;
  transition: background-color 300ms ease-out;
}
.enketo .btn:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button:hover,
.enketo .btn:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button:focus {
  background-color: #a53f06;
}
.enketo .btn:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button:hover,
.enketo .btn:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button:focus {
  color: white;
}
.enketo .btn:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button:focus,
.enketo .btn:link,
.enketo .vex.vex-theme-plain .vex-dialog-button:link,
.enketo .btn:active,
.enketo .vex.vex-theme-plain .vex-dialog-button:active,
.enketo .btn:visited,
.enketo .vex.vex-theme-plain .vex-dialog-button:visited {
  text-decoration: none;
}
.enketo .btn.btn-default,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button {
  background-color: white;
  border-color: #cccccc;
  color: #333333;
  border-radius: 3px;
}
.enketo .btn.btn-default:hover,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:hover,
.enketo .btn.btn-default:focus,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:focus {
  background-color: #cccccc;
}
.enketo .btn.btn-default:hover,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:hover,
.enketo .btn.btn-default:focus,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:focus {
  color: #333333;
}
.enketo .btn.btn-default:focus,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:focus,
.enketo .btn.btn-default:link,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:link,
.enketo .btn.btn-default:active,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:active,
.enketo .btn.btn-default:visited,
.enketo .vex.vex-theme-plain .btn-default.vex-dialog-button:visited {
  text-decoration: none;
}
.enketo .btn.small,
.enketo .vex.vex-theme-plain .small.vex-dialog-button,
.enketo
  .vex.vex-theme-plain
  .vex-dialog-button.or-comment-widget__content__btn-update,
.enketo .btn.or-comment-widget__content__btn-update {
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 14px;
}
.enketo .btn.disabled,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button,
.enketo .btn[disabled],
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled] {
  background-color: #ee7325;
  border-color: #a53f06;
  color: white;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
  border-radius: 3px;
}
.enketo .btn.disabled:hover,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:hover,
.enketo .btn.disabled:focus,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:focus,
.enketo .btn[disabled]:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:hover,
.enketo .btn[disabled]:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:focus {
  background-color: #a53f06;
}
.enketo .btn.disabled:hover,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:hover,
.enketo .btn.disabled:focus,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:focus,
.enketo .btn[disabled]:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:hover,
.enketo .btn[disabled]:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:focus {
  color: white;
}
.enketo .btn.disabled:focus,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:focus,
.enketo .btn.disabled:link,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:link,
.enketo .btn.disabled:active,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:active,
.enketo .btn.disabled:visited,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:visited,
.enketo .btn[disabled]:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:focus,
.enketo .btn[disabled]:link,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:link,
.enketo .btn[disabled]:active,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:active,
.enketo .btn[disabled]:visited,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:visited {
  text-decoration: none;
}
.enketo .btn.disabled:hover,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:hover,
.enketo .btn.disabled:focus,
.enketo .vex.vex-theme-plain .disabled.vex-dialog-button:focus,
.enketo .btn[disabled]:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:hover,
.enketo .btn[disabled]:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled]:focus {
  background-color: #ee7325;
}
.enketo .btn.disabled.btn-default,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button,
.enketo .btn[disabled].btn-default,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default {
  background-color: white;
  border-color: #cccccc;
  color: #333333;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
  border-radius: 3px;
}
.enketo .btn.disabled.btn-default:hover,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:hover,
.enketo .btn.disabled.btn-default:focus,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:focus,
.enketo .btn[disabled].btn-default:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:hover,
.enketo .btn[disabled].btn-default:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:focus {
  background-color: #cccccc;
}
.enketo .btn.disabled.btn-default:hover,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:hover,
.enketo .btn.disabled.btn-default:focus,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:focus,
.enketo .btn[disabled].btn-default:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:hover,
.enketo .btn[disabled].btn-default:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:focus {
  color: #333333;
}
.enketo .btn.disabled.btn-default:focus,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:focus,
.enketo .btn.disabled.btn-default:link,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:link,
.enketo .btn.disabled.btn-default:active,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:active,
.enketo .btn.disabled.btn-default:visited,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:visited,
.enketo .btn[disabled].btn-default:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:focus,
.enketo .btn[disabled].btn-default:link,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:link,
.enketo .btn[disabled].btn-default:active,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:active,
.enketo .btn[disabled].btn-default:visited,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:visited {
  text-decoration: none;
}
.enketo .btn.disabled.btn-default:hover,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:hover,
.enketo .btn.disabled.btn-default:focus,
.enketo .vex.vex-theme-plain .disabled.btn-default.vex-dialog-button:focus,
.enketo .btn[disabled].btn-default:hover,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:hover,
.enketo .btn[disabled].btn-default:focus,
.enketo .vex.vex-theme-plain .vex-dialog-button[disabled].btn-default:focus {
  background-color: white;
}
.enketo .btn .icon,
.enketo .vex.vex-theme-plain .vex-dialog-button .icon,
.enketo .btn .android-chrome,
.enketo .vex.vex-theme-plain .vex-dialog-button .android-chrome,
.enketo .btn .record-list__records__record[data-draft='true']::before,
.enketo
  .vex.vex-theme-plain
  .vex-dialog-button
  .record-list__records__record[data-draft='true']::before,
.enketo .btn .enketo-geopoint-marker,
.enketo .vex.vex-theme-plain .vex-dialog-button .enketo-geopoint-marker,
.enketo .btn .glyphicon-chevron-up,
.enketo .vex.vex-theme-plain .vex-dialog-button .glyphicon-chevron-up,
.enketo .btn .glyphicon-chevron-down,
.enketo .vex.vex-theme-plain .vex-dialog-button .glyphicon-chevron-down {
  margin-right: 6px;
}
.enketo button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
@media only screen and (min-width: lower-bound(40.063em, 64em)) {
  .enketo button,
  .enketo .button {
    display: inline-block;
  }
}
.enketo .btn-icon-only {
  margin: 0 10px 0 10px;
  padding: 0;
  color: #333333;
  background: none;
  border: none;
  font-size: 20px;
  box-shadow: none;
  opacity: 0.7;
}
.enketo .btn-icon-only:hover,
.enketo .btn-icon-only:focus,
.enketo .btn-icon-only:active,
.enketo .btn-icon-only.active,
.enketo .btn-icon-only:disabled,
.enketo .btn-icon-only.disabled {
  background: none;
  box-shadow: none;
}
.enketo .btn-icon-only:hover {
  color: #333333;
  opacity: 0.5;
}
.enketo .btn-bg-icon-only {
  margin: 0 10px 0 10px;
  padding: 0;
  border: none;
}
.enketo .btn-bg-icon-only:hover,
.enketo .btn-bg-icon-only:focus,
.enketo .btn-bg-icon-only:active,
.enketo .btn-bg-icon-only.active,
.enketo .btn-bg-icon-only:disabled,
.enketo .btn-bg-icon-only.disabled {
  box-shadow: none;
}
.enketo .btn-bg-icon-only:hover {
  opacity: 0.5;
}
.enketo .question:not(.or-appearance-literacy) .btn-default {
  padding: 0 15px;
}
.enketo .question .btn-default.dropdown-toggle {
  padding: 7px 15px;
}
.enketo .draw-widget__undo {
  font-size: 13px;
}
.enketo .add-repeat-btn .icon,
.enketo .add-repeat-btn .android-chrome,
.enketo
  .add-repeat-btn
  .record-list__records__record[data-draft='true']::before,
.enketo .add-repeat-btn .enketo-geopoint-marker,
.enketo .add-repeat-btn .glyphicon-chevron-up,
.enketo .add-repeat-btn .glyphicon-chevron-down,
.enketo .repeat-buttons .remove .icon,
.enketo .repeat-buttons .remove .android-chrome,
.enketo
  .repeat-buttons
  .remove
  .record-list__records__record[data-draft='true']::before,
.enketo .repeat-buttons .remove .enketo-geopoint-marker,
.enketo .repeat-buttons .remove .glyphicon-chevron-up,
.enketo .repeat-buttons .remove .glyphicon-chevron-down,
.enketo .geopicker [name='geodetect'] .icon,
.enketo .geopicker [name='geodetect'] .android-chrome,
.enketo
  .geopicker
  [name='geodetect']
  .record-list__records__record[data-draft='true']::before,
.enketo .geopicker [name='geodetect'] .enketo-geopoint-marker,
.enketo .geopicker [name='geodetect'] .glyphicon-chevron-up,
.enketo .geopicker [name='geodetect'] .glyphicon-chevron-down {
  margin-right: 0;
}
.enketo .paper {
  border-width: 1px;
  box-shadow: 0 0 5px #888;
  background-color: #fff;
  position: relative;
  min-height: 100%;
}
.enketo .or {
  flex: 1;
  margin-bottom: 20px;
}
.enketo .main {
  flex: 1;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding: 20px 0 70px 0;
  position: relative;
  width: 100%;
  max-width: 1100px;
}
.enketo .paper {
  flex: 1;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 45px;
  position: relative;
  min-height: 100%;
}
.enketo .form-header {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  top: -76px;
  width: 100%;
  min-height: 69px;
  padding: 16px 0;
}
.enketo .form-language-selector {
  padding: 0;
  margin-left: 10px;
  font-size: 0.8em;
}
.enketo #form-languages {
  display: inline;
  width: auto;
  height: 36px;
  background: none;
  min-width: 11em;
  border: 1px solid #ccc;
  margin: 0 0 0 16px;
  font-size: 0.9em;
}
.enketo [dir='rtl'] #form-languages {
  margin: 0 16px 0 0;
}
.enketo .form-footer {
  margin: 45px 0;
}
.enketo .enketo-power {
  position: relative;
  left: 50%;
  margin: 30px 0 0 -100px;
  width: 200px;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
}
.enketo .enketo-power a {
  font-style: italic;
}
.enketo .enketo-power img {
  float: none;
  vertical-align: top;
  width: 48px;
}
.enketo .pages.or .or-group,
.enketo .pages.or .or-group-data,
.enketo .pages.or .or-repeat {
  display: block;
}
.enketo .pages.or .or-group.contains-current,
.enketo .pages.or .or-group-data.contains-current,
.enketo .pages.or .or-repeat.contains-current {
  display: block;
}
.enketo .pages.or .or-repeat[role='page'].current + .or-repeat-info {
  display: block;
}
.enketo .pages.or [role='page'] {
  display: none;
}
.enketo .pages.or [role='page'].current {
  display: block;
}
.enketo .pages.or [role='page'].current .or-group:not(.disabled),
.enketo .pages.or [role='page'].current .or-group-data:not(.disabled),
.enketo .pages.or [role='page'].current .or-repeat:not(.disabled) {
  display: block;
}
.enketo .pages.or [role='page'].hidden {
  opacity: 0;
}
.enketo .pages.or [role='page'].fade-out {
  opacity: 0;
  transition: all 0.6s ease-out;
}
.enketo .pages ~ .form-footer {
  margin-top: 0;
}
.enketo .pages ~ .form-footer.end .btn,
.enketo .pages ~ .form-footer.end .vex.vex-theme-plain .vex-dialog-button,
.enketo .vex.vex-theme-plain .pages ~ .form-footer.end .vex-dialog-button {
  display: inline-block;
}
.enketo .pages ~ .form-footer.end .next-page {
  display: none;
}
.enketo .pages ~ .form-footer.end .logout,
.enketo .pages ~ .form-footer.end .draft {
  display: block;
}
.enketo .pages ~ .form-footer .logout {
  margin-bottom: 50px;
}
.enketo .pages ~ .form-footer .vex.vex-theme-plain .vex-dialog-button,
.enketo .vex.vex-theme-plain .pages ~ .form-footer .vex-dialog-button {
  display: none;
}
.enketo .pages ~ .form-footer .previous-page,
.enketo .pages ~ .form-footer .next-page {
  display: inline-block;
}
.enketo .pages ~ .form-footer .previous-page.disabled,
.enketo .pages ~ .form-footer .next-page.disabled {
  display: none;
}
.enketo .pages ~ .form-footer .first-page,
.enketo .pages ~ .form-footer .last-page {
  display: inline-block;
}
.enketo .pages ~ .form-footer .logout,
.enketo .pages ~ .form-footer .draft {
  display: none;
}
.enketo .pages-toc__list {
  border: 1px solid black;
  border-width: 1px;
  box-shadow: 0 0 5px #888;
  position: absolute;
  right: 0;
  left: 0;
  top: 69px;
  width: 320px;
  height: 0;
  max-height: calc(100vh - 100px);
  max-width: 100vw;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  background: white;
  z-index: 1000;
  overflow: scroll;
  transition: height 1s ease-out;
  opacity: 0;
}
.enketo .pages-toc__list li {
  border-bottom: 1px solid #555555;
  padding: 0;
  margin: 0;
}
.enketo .pages-toc__list li:hover {
  background: #e4f4ff;
}
.enketo .pages-toc__list a,
.enketo .pages-toc__list a:link,
.enketo .pages-toc__list a:visited {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.enketo .pages-toc__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: #555555;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0.5;
}
.enketo .pages-toc #toc-toggle {
  display: none;
}
.enketo .pages-toc #toc-toggle:checked + .pages-toc__list {
  height: auto;
  opacity: 1;
}
.enketo .pages-toc #toc-toggle:checked ~ .pages-toc__overlay {
  display: block;
}
.enketo .pages-toc label[for='toc-toggle'] {
  display: block;
  width: 27px;
  height: 27px;
  margin: 5px 0 5px 20px;
  background: repeating-linear-gradient(
    #555555 2px,
    #555555 5px,
    transparent 5px,
    transparent 12px
  );
}
.enketo .pages-toc label[for='toc-toggle']:hover {
  opacity: 0.7;
}
.enketo .side-slider {
  position: absolute;
  z-index: 1001;
  box-sizing: border-box;
  transition: all 0.6s ease-out;
  color: white;
  font-size: 13px;
  top: 0;
  margin: 0;
  left: -240px;
  background-color: #323232;
  width: 240px;
  min-height: 100%;
  padding: 20px;
}
.enketo .side-slider h3 {
  color: white;
}
.enketo .side-slider .close {
  font-size: 22px;
  color: white;
  text-shadow: none;
  opacity: 0.9;
  display: block;
  position: absolute;
  top: 10px;
  right: 15px;
}
.enketo .side-slider__button-bar {
  margin: 20px 0 33px 0;
}
.enketo .side-slider__toggle {
  font-family: arial, sans-serif;
  position: fixed;
  top: 50%;
  margin: 0;
  padding: 0;
  height: 50px;
  width: 6px;
  background: none;
  border-top: 2px solid;
  border-bottom: 2px solid;
  font-size: 20px;
  line-height: 30px;
}
.enketo .side-slider__toggle.open {
  border-left: none;
  border-right: 3px solid;
  border-color: #888888;
  left: 8px;
  z-index: 10;
}
.enketo .side-slider__toggle.open:hover {
  border-color: #000000;
}
.enketo .side-slider__toggle.close {
  transition: all 0.6s ease-out;
  opacity: 1;
  left: -10px;
  border-right: none;
  border-left: 3px solid;
  border-color: #999999;
  z-index: 1001;
}
.enketo .side-slider__toggle.close:hover {
  border-color: #ffffff;
}
.enketo .side-slider__app-version {
  margin-top: 40px;
  color: #666;
  font-size: 10px;
  text-align: center;
  border-top: #666 solid 1px;
  padding: 2px 0;
}
.enketo .side-slider__app-version:hover {
  color: white;
  font-weight: bold;
}
.enketo .side-slider__advanced__button {
  width: 100%;
  padding: 10px;
  height: 40px;
}
.enketo .show-side-slider .side-slider {
  transform: translate(240px, 0);
  transition: all 0.6s ease-out;
}
.enketo .show-side-slider .side-slider__toggle.close {
  transform: translate(240px, 0);
}
.enketo .show-side-slider .slider-overlay {
  z-index: 999;
  display: block;
}
.enketo .record-list__button-bar {
  margin-top: 30px;
}
.enketo .record-list__button-bar__button {
  width: 100%;
  padding: 10px;
}
.enketo .record-list__button-bar__button.export {
  display: block;
  padding: 2px;
  font-size: 13px;
  background: none;
  color: white;
}
.enketo .record-list__button-bar__button.export:hover {
  background: #626262;
  color: white;
}
.enketo .record-list__upload-progress {
  visibility: hidden;
  width: 100%;
}
.enketo .record-list__records {
  list-style-type: none;
  padding: 0;
  margin-left: 0;
  margin-top: 0;
}
.enketo .record-list__records__record {
  padding: 2px 5px;
  margin: 5px 0 2px 0;
  border: 1px solid white;
  word-break: break-word;
}
.enketo .record-list__records__record.success {
  opacity: 0.6;
  border-width: 2px;
  border-color: green;
}
.enketo .record-list__records__record.ongoing {
  border-width: 2px;
  border-color: orange;
}
.enketo .record-list__records__record.error {
  cursor: pointer;
  border-width: 2px;
  border-color: red;
}
.enketo .record-list__records__record[data-draft='true'] {
  cursor: pointer;
  border-color: #999999;
  border-style: dotted;
  color: #eeeeee;
}
.enketo .record-list__records__record[data-draft='true']:hover,
.enketo .record-list__records__record[data-draft='true'].active {
  background: #666666;
  color: white;
}
.enketo .record-list__records__record[data-draft='true']::before {
  float: right;
  color: #aaaaaa;
}
.enketo .record-list__records__record[data-draft='true']:hover::before {
  color: white;
}
.enketo .record-list__records__record[data-draft='true'].active::before {
  color: white;
}
.enketo .record-list__records__msg {
  padding: 0 5px;
  line-height: 15px;
}
.enketo .record-list__records__msg.success {
  color: green;
}
.enketo .record-list__records__msg.ongoing {
  color: orange;
}
.enketo .record-list__records__msg.error {
  color: red;
}
.enketo .record-list__records--none {
  text-align: center;
  margin-bottom: 35px;
  font-style: italic;
}
.enketo [dir='rtl'] .record-list__records__record[data-draft='true']::before {
  float: left;
}
.enketo .or [lang]:not(.active),
.enketo .or-option-translations,
.enketo .or-appearance-page-break,
.enketo .or-constraint-msg,
.enketo .or-required-msg,
.enketo .or-relevant-msg,
.enketo .option-wrapper .itemset-template,
.enketo .itemset-labels,
.enketo .or-hint.or-form-guidance,
.enketo .or-hint.or-form-guidance.active {
  display: none;
}
.enketo .or > h3,
.enketo .or-group > h3 {
  padding: 5px 0 15px 0;
  word-wrap: break-word;
  color: #ee7325;
  text-align: center;
}
.enketo .or > h4,
.enketo .or-group > h4 {
  text-align: inherit;
  margin-top: 9px;
  margin-bottom: 9px;
  color: #ee7325;
}
.enketo .or > h4 strong,
.enketo .or-group > h4 strong {
  font-size: inherit;
}
.enketo .or.hide {
  display: none;
}
.enketo .or .question-label h1,
.enketo .or .question-label h2,
.enketo .or .question-label h3,
.enketo .or .question-label h4,
.enketo .or .question-label h5,
.enketo .or .question-label h6,
.enketo .or .or-hint h1,
.enketo .or .or-hint h2,
.enketo .or .or-hint h3,
.enketo .or .or-hint h4,
.enketo .or .or-hint h5,
.enketo .or .or-hint h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.enketo .or .question-label h1:first-child,
.enketo .or .question-label h2:first-child,
.enketo .or .question-label h3:first-child,
.enketo .or .question-label h4:first-child,
.enketo .or .question-label h5:first-child,
.enketo .or .question-label h6:first-child,
.enketo .or .or-hint h1:first-child,
.enketo .or .or-hint h2:first-child,
.enketo .or .or-hint h3:first-child,
.enketo .or .or-hint h4:first-child,
.enketo .or .or-hint h5:first-child,
.enketo .or .or-hint h6:first-child {
  margin-top: 0;
}
.enketo .or .question-label h1:last-child,
.enketo .or .question-label h2:last-child,
.enketo .or .question-label h3:last-child,
.enketo .or .question-label h4:last-child,
.enketo .or .question-label h5:last-child,
.enketo .or .question-label h6:last-child,
.enketo .or .or-hint h1:last-child,
.enketo .or .or-hint h2:last-child,
.enketo .or .or-hint h3:last-child,
.enketo .or .or-hint h4:last-child,
.enketo .or .or-hint h5:last-child,
.enketo .or .or-hint h6:last-child {
  margin-bottom: 0;
}
.enketo .or .question-label {
  word-break: break-word;
  display: inline-block;
}
.enketo .or-hint.active {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  color: #888888;
  display: block;
  line-height: 16px;
  font-weight: bold;
  font-size: 13px;
  font-style: italic;
  padding-top: 5px;
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.enketo .or-hint.active ~ br {
  display: none;
}
.enketo .or .form-logo {
  display: block;
  text-align: center;
  width: 100%;
}
.enketo .or .form-logo img {
  float: none;
  display: inline;
  max-height: 200px;
  max-width: 120px;
}
.enketo .or-repeat {
  background-color: #fef5ef;
  margin: 0 0 3px 0;
  padding: 20px 10px 10px 10px;
  position: relative;
}
.enketo .or-repeat:empty {
  padding: 0;
}
.enketo .or-repeat .repeat-number {
  display: block;
  position: absolute;
  top: 7px;
  right: 10px;
  /*color: #ee7325; */
  color: #ee7325;
}
.enketo .or-repeat .repeat-number + .or-group {
  border-top: none;
}
.enketo .or-repeat .or-repeat {
  background-color: white;
}
.enketo .or-repeat .or-repeat .or-repeat {
  background-color: #fef5ef;
}
.enketo .or-repeat .or-repeat .or-repeat .or-repeat {
  background-color: white;
}
.enketo .or-group:not(.or-appearance-no-collapse) > h4 {
  position: relative;
  pointer-events: none;
}
.enketo .or-group:not(.or-appearance-no-collapse) > h4 {
  position: relative;
  pointer-events: none;
}
.enketo #stats + .or-group,
.enketo #or-preload-items + .or-group,
.enketo #form-languages + .or-group {
  border-top: none;
}
.enketo .question:not(.readonly) {
  font-weight: bold;
}
.enketo .question {
  display: block;
  margin: 0 0 9px 0;
  padding-top: 15px;
  border: none;
  position: relative;
}
.enketo .question > fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
.enketo .question-label strong {
  font-size: 17px;
}
.enketo .question > img,
.enketo .question > video,
.enketo .question > audio {
  margin: 10px auto 10px;
}
.enketo .question.readonly input[readonly].empty,
.enketo .question.readonly select[readonly].empty,
.enketo .question.readonly textarea[readonly].empty {
  display: none;
}
.enketo .question.readonly strong {
  font-size: inherit;
}
.enketo label,
.enketo legend {
  font-size: 16px;
}
.enketo .or img,
.enketo .or audio,
.enketo .or video {
  display: block;
  max-height: 300px;
  max-width: 70%;
}
.enketo .or video {
  max-width: 100%;
}
.enketo legend {
  display: block;
  position: relative;
  border: none;
  width: 100%;
  padding: 0;
  margin-bottom: 12px;
}
.enketo .option-wrapper {
  /*IE10*/
  display: flex;
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .option-wrapper > label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  display: block;
  margin: 0;
  cursor: pointer;
  padding: 4px;
  margin: 0 10px 1px 10px;
  flex-basis: 98%;
  flex-grow: 0;
}
.enketo .option-wrapper > label:hover:not(.filler) {
  background-color: #e4f4ff;
}
.enketo .option-wrapper > label:before,
.enketo .option-wrapper > label:after {
  content: ' ';
  display: table;
}
.enketo .option-wrapper > label:after {
  clear: both;
}
.enketo .option-wrapper .option-label {
  margin-left: 30px;
  display: block;
}
.enketo .option-wrapper img,
.enketo .option-wrapper video,
.enketo .option-wrapper audio {
  float: right;
  margin: 10px 0 10px 10px;
}
.enketo .or[dir='rtl'] .option-wrapper .option-label {
  margin-right: 30px;
}
.enketo .or[dir='rtl'] .option-wrapper img,
.enketo .or[dir='rtl'] .option-wrapper video,
.enketo .or[dir='rtl'] .option-wrapper audio {
  float: left;
  margin: 10px 10px 10px 0;
}
.enketo .touch .question.simple-select .option-wrapper > label {
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: auto;
  margin: 0 0 6.4px 0;
  padding: 10px;
}
.enketo
  .touch
  .question.simple-select
  .option-wrapper
  > label
  input[type='radio'],
.enketo
  .touch
  .question.simple-select
  .option-wrapper
  > label
  input[type='checkbox'] {
  margin-left: 5px;
}
.enketo .touch .question.simple-select .option-wrapper > label:focus,
.enketo .touch .question.simple-select .option-wrapper > label:hover,
.enketo .touch .question.simple-select .option-wrapper > label:active {
  background-color: #e4f4ff;
}
.enketo .touch input[type='text'],
.enketo .touch input[type='tel'],
.enketo .touch input[type='password'],
.enketo .touch input[type='url'],
.enketo .touch input[type='email'],
.enketo .touch input[type='file'],
.enketo .touch input[type='date'],
.enketo .touch input[type='month'],
.enketo .touch input[type='time'],
.enketo .touch input[type='datetime'],
.enketo .touch input[type='number'],
.enketo .touch textarea,
.enketo .touch select {
  margin: 10px 0 10px 0;
  color: #104b66;
}
.enketo .touch input[type='text'],
.enketo .touch input[type='tel'],
.enketo .touch input[type='password'],
.enketo .touch input[type='url'],
.enketo .touch input[type='email'],
.enketo .touch input[type='file'],
.enketo .touch input[type='date'],
.enketo .touch input[type='month'],
.enketo .touch input[type='time'],
.enketo .touch input[type='datetime'],
.enketo .touch input[type='number'],
.enketo .touch textarea {
  border: 1px solid #ddd8ce;
}
.enketo .touch select {
  width: 100%;
}
.enketo input[type='text'],
.enketo input[type='tel'],
.enketo input[type='password'],
.enketo input[type='url'],
.enketo input[type='email'],
.enketo input[type='file'],
.enketo input[type='date'],
.enketo input[type='month'],
.enketo input[type='time'],
.enketo input[type='datetime'],
.enketo input[type='number'],
.enketo input[type='range'],
.enketo textarea,
.enketo select,
.enketo .widget {
  display: block;
  margin: 8px 0 8px 0;
}
.enketo input:not([type='radio']):not([type='checkbox']),
.enketo textarea {
  height: 34px;
}
.enketo select {
  width: 80%;
}
.enketo .question input[type='text'],
.enketo .question input[type='tel'],
.enketo .question input[type='password'],
.enketo .question input[type='url'],
.enketo .question input[type='email'],
.enketo .question input[type='file'] {
  width: 80%;
}
.enketo .question input[type='date'],
.enketo .question input[type='month'],
.enketo .question input[type='number'],
.enketo .question input[type='time'],
.enketo .question input[type='datetime'],
.enketo .question input[type='text'].mask-date {
  width: 144px;
}
.enketo .question input[type='radio'],
.enketo .question input[type='checkbox'] {
  float: left;
  display: block;
  margin-top: 2px;
}
.enketo .or[dir='rtl'] .question input[type='radio'],
.enketo .or[dir='rtl'] .question input[type='checkbox'] {
  float: right;
}
.enketo .question textarea {
  width: 80%;
  resize: vertical;
  min-height: 9em;
}
.enketo .or-repeat .repeat-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.enketo .or-repeat .remove {
  margin-bottom: 0;
  margin-right: 0;
}
.enketo .or-repeat-info:not(:empty) {
  padding-top: 10px;
}
.enketo .add-repeat-btn {
  display: block;
  margin: 0 auto 10px auto;
  min-width: 150px;
}
.enketo .or[dir='rtl'] .remove {
  float: left;
}
.enketo .alert {
  margin-bottom: 4px;
}
.enketo .required {
  position: absolute;
  top: 10px;
  left: -10px;
  /*color: #ee7325; */
  /*color: #ee7325;*/
  color: red;
}
.enketo legend .required {
  top: 0;
}
.enketo .or[dir='rtl'] .required {
  left: auto;
  right: -10px;
}
.enketo .disabled {
  opacity: 0.5;
}
.enketo .invalid-constraint,
.enketo .invalid-required,
.enketo .invalid-relevant {
  transition: all 0.6s ease-out;
  background-color: #f2dede;
  border-color: #ebccd1;
  border-radius: 3px;
  margin-right: -10px;
  margin-left: -10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.enketo .invalid-constraint .or-constraint-msg.active,
.enketo .invalid-constraint .file-picker .file-feedback.error,
.enketo .file-picker .invalid-constraint .file-feedback.error,
.enketo .invalid-constraint .draw-widget__feedback,
.enketo .invalid-constraint .image-map__error,
.enketo .invalid-required .or-required-msg.active,
.enketo .invalid-required .file-picker .file-feedback.warning,
.enketo .file-picker .invalid-required .file-feedback.warning,
.enketo .question.invalid-relevant .or-relevant-msg.active {
  display: block;
}
.enketo .or-required-msg.active,
.enketo .file-picker .file-feedback.warning,
.enketo .or-constraint-msg.active,
.enketo .file-picker .file-feedback.error,
.enketo .draw-widget__feedback,
.enketo .image-map__error,
.enketo .or-relevant-msg.active {
  font-weight: bold;
  padding-top: 5px;
  font-size: 0.85em;
  color: #a94442;
}
.enketo .or-branch.disabled,
.enketo .or-branch.or-branch.pre-init {
  display: none;
}
.enketo .bootstrap-select {
  margin-top: 15px;
}
.enketo .bootstrap-select .dropdown-toggle {
  width: 218.99632px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: left;
}
.enketo .bootstrap-select .dropdown-toggle .caret {
  position: absolute;
  top: 14px;
  right: 12px;
}
.enketo .bootstrap-select .dropdown-toggle .selected {
  width: calc(100% - 12px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.enketo .bootstrap-select .dropdown-toggle ~ .dropdown-menu {
  max-height: 200px;
  max-width: 100%;
  overflow: auto;
}
.enketo .bootstrap-select .dropdown-toggle ~ .dropdown-menu .option-wrapper {
  padding-left: 5px;
  background-color: transparent;
  color: black;
  text-decoration: none;
}
.enketo
  .bootstrap-select
  .dropdown-toggle
  ~ .dropdown-menu
  .option-wrapper
  label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 0px;
  font-size: 16px;
}
.enketo
  .bootstrap-select
  .dropdown-toggle
  ~ .dropdown-menu
  .option-wrapper
  label:hover {
  background: transparent;
}
.enketo
  .bootstrap-select
  .dropdown-toggle
  ~ .dropdown-menu
  .option-wrapper
  label
  .option-label {
  margin-top: 1px;
}
.enketo .readonly .bootstrap-select .dropdown-toggle {
  opacity: 0.7;
}
.enketo .or[dir='rtl'] .bootstrap-select .dropdown-toggle {
  text-align: right;
}
.enketo .or[dir='rtl'] .bootstrap-select .dropdown-toggle .caret {
  margin-left: 0;
  margin-right: 10px;
  left: 12px;
  right: auto;
}
.enketo .btn-group {
  position: relative;
  vertical-align: middle;
}
.enketo .btn-group > .btn,
.enketo .vex.vex-theme-plain .btn-group > .vex-dialog-button {
  position: relative;
}
.enketo .btn-group > .btn:hover,
.enketo .vex.vex-theme-plain .btn-group > .vex-dialog-button:hover,
.enketo .btn-group > .btn:focus,
.enketo .vex.vex-theme-plain .btn-group > .vex-dialog-button:focus,
.enketo .btn-group > .btn:active,
.enketo .vex.vex-theme-plain .btn-group > .vex-dialog-button:active,
.enketo .btn-group > .btn.active,
.enketo .vex.vex-theme-plain .btn-group > .active.vex-dialog-button {
  z-index: 2;
}
.enketo .btn-group .dropdown-toggle:active,
.enketo .btn-group.open .dropdown-toggle {
  outline: 0;
}
.enketo .btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.enketo .btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.enketo .btn .caret,
.enketo .vex.vex-theme-plain .vex-dialog-button .caret {
  margin-left: 0;
}
.enketo .mobileselect {
  margin-left: 10px;
}
.enketo .datalist {
  list-style: none;
  display: none;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
  padding: 0;
  border: 1px solid #555555;
}
.enketo .datalist:empty {
  display: none !important;
}
.enketo .datalist li {
  padding: 5px;
}
.enketo .datalist li.active {
  background: #3875d7;
  color: white;
}
.enketo input[type='text'].autocomplete {
  width: 218.99632px;
}
.enketo input[type='text'].autocomplete.notfound {
  color: #999999;
}
.enketo .touch input[type='text'].autocomplete {
  width: 100%;
}
.enketo .enketo-geopoint-marker {
  margin-top: -24px;
  width: 24px;
  height: 24px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #508ecd;
}
.enketo .enketo-area-popup .leaflet-popup-content-wrapper {
  border-radius: 2px;
  color: black;
  background: none;
  box-shadow: none;
}
.enketo .enketo-area-popup .leaflet-popup-content {
  margin: 3px 20px;
}
.enketo .enketo-area-popup .leaflet-popup-tip-container {
  display: none;
}
.enketo
  .leaflet-container
  .enketo-area-popup:hover
  a.leaflet-popup-close-button {
  display: block;
}
.enketo .leaflet-container .enketo-area-popup a.leaflet-popup-close-button {
  z-index: 1;
  display: none;
  font-weight: normal;
  color: black;
}
.enketo .enketo-geopoint-circle-marker,
.enketo .geopicker .point {
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 8px;
  border: 1px solid #4e4e4e;
  background: #818181;
}
.enketo .enketo-geopoint-circle-marker-active,
.enketo .geopicker .point.active {
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 8px;
  border: 1px solid #508ecd;
  background: #9fc1e4;
}
.enketo .geopicker {
  margin-top: 25px;
}
.enketo .geopicker img {
  margin: 0;
  max-height: none;
  max-width: none;
}
.enketo .geopicker .geo-inputs {
  position: relative;
  min-width: 160px;
  width: 27%;
  margin: 0 4% 0 0;
}
@media screen and (max-width: 1100px) {
  .enketo .geopicker .geo-inputs {
    width: 100%;
  }
}
.enketo .geopicker .geo-inputs .paste-progress,
.enketo .geopicker .geo-inputs .disabled-msg {
  position: absolute;
  display: block;
  top: 50%;
  width: calc(100% - 20px);
  text-align: center;
  margin: 0px 10px;
}
.enketo .geopicker .geo-inputs .disabled-msg {
  display: none;
  color: #a94442;
}
.enketo .geopicker .map-canvas-wrapper {
  position: relative;
}
.enketo .geopicker .map-canvas-wrapper,
.enketo .geopicker .search-bar {
  width: 65%;
  float: right;
  padding-left: 4%;
  border-left: solid 1px #bbbbbb;
}
@media screen and (max-width: 1100px) {
  .enketo .geopicker .map-canvas-wrapper,
  .enketo .geopicker .search-bar {
    width: 100%;
    float: none;
    padding-left: 0;
    border-left: none;
  }
}
.enketo .geopicker .search-bar {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
}
.enketo .geopicker .search-bar .input-group {
  display: flex;
  width: 80%;
  order: 2;
}
.enketo .geopicker .search-bar [name='search'] {
  margin: 0 !important;
  width: calc(100% - 40px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.enketo .geopicker .search-bar .hide-map-btn {
  display: none;
}
.enketo .geopicker .search-bar .search-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.enketo .geopicker .btn:not(.close-chain-btn):not(.toggle-input-type-btn),
.enketo
  .geopicker
  .vex.vex-theme-plain
  .vex-dialog-button:not(.close-chain-btn):not(.toggle-input-type-btn),
.enketo
  .vex.vex-theme-plain
  .geopicker
  .vex-dialog-button:not(.close-chain-btn):not(.toggle-input-type-btn) {
  height: 34px;
}
.enketo .geopicker .btn[name='geodetect'],
.enketo .geopicker .vex.vex-theme-plain .vex-dialog-button[name='geodetect'],
.enketo .vex.vex-theme-plain .geopicker .vex-dialog-button[name='geodetect'] {
  font-size: 16px;
  margin: 0 0 0 4%;
  order: 3;
}
.enketo .geopicker .close-chain-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0 5px;
  margin-left: 15px;
}
.enketo .geopicker .toggle-input-visibility-btn {
  position: absolute;
  top: calc(50% - 15px);
  left: -16px;
  background: none;
  border-left: 3px solid #aaaaaa;
  border-bottom: 2px solid #aaaaaa;
  border-top: 2px solid #aaaaaa;
  border-right: none;
  height: 30px;
  width: 7px;
  padding: 0;
  z-index: 10;
}
.enketo .geopicker .toggle-input-visibility-btn.open {
  left: -20px;
  border-left: none;
  border-right: 3px solid #aaaaaa;
}
.enketo .geopicker .points {
  width: 100%;
  padding-bottom: 15px;
}
.enketo .geopicker .point {
  margin-right: 10px;
  display: inline-block;
  opacity: 0.9;
}
.enketo .geopicker .point.has-error:not(.active) {
  border: 1px solid #a94442;
  background: #f2dede;
  opacity: 1;
}
.enketo .geopicker .addpoint {
  border: none;
  background: none;
  height: 16px;
  width: 16px;
  font-weight: bold;
  font-size: 16px;
  padding: 0;
  vertical-align: top;
  line-height: 16px;
  margin: 0;
  display: inline-block;
  margin-top: -1px;
}
.enketo .geopicker .hide-search.no-map {
  border-left: none;
}
.enketo .geopicker .hide-search .input-group {
  display: none;
}
.enketo .geopicker .hide-search .btn[name='geodetect'],
.enketo
  .geopicker
  .hide-search
  .vex.vex-theme-plain
  .vex-dialog-button[name='geodetect'],
.enketo
  .vex.vex-theme-plain
  .geopicker
  .hide-search
  .vex-dialog-button[name='geodetect'] {
  margin: 15px auto 15px auto;
  width: 50%;
}
.enketo .geopicker label.geo {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  display: block;
  border: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.enketo .geopicker label.geo.lat,
.enketo .geopicker label.geo.kml {
  padding-top: 5px;
}
.enketo .geopicker label.geo.long {
  margin-bottom: 20px;
}
.enketo .geopicker label.geo.alt {
  border-top: solid 1px #bbbbbb;
  padding: 12px 0 0 0;
  margin: 0 0 0 0;
}
@media screen and (max-width: 1100px) {
  .enketo .geopicker label.geo.alt {
    border-top: none;
  }
}
.enketo .geopicker label.geo.acc {
  padding: 0;
  margin: 5px 0 0 0;
}
.enketo .geopicker label.geo.alt,
.enketo .geopicker label.geo.acc {
  min-height: 70px;
  line-height: 50px;
  font-size: 12px;
}
.enketo .geopicker input[name='lat'],
.enketo .geopicker input[name='long'],
.enketo .geopicker textarea[name='kml'] {
  float: none;
  box-sizing: border-box;
  width: 100%;
  /*&:invalid {
                //copied from bootstrap
                color: $state-danger-text;
                border-color: $state-danger-text;
                @include box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.075));
                // Redeclare so transitions work
                &:focus {
                    border-color: darken($state-danger-text, 10%);
                    $shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px lighten($state-danger-text, 20%);
                    @include box-shadow($shadow);
                }
            }*/
}
.enketo .geopicker input[name='alt'],
.enketo .geopicker input[name='acc'] {
  box-sizing: border-box;
  display: block;
  float: right;
  width: 40%;
}
@media screen and (max-width: 1100px) {
  .enketo .geopicker input[name='alt'],
  .enketo .geopicker input[name='acc'] {
    width: 50%;
  }
}
.enketo .geopicker textarea[name='kml'] {
  min-height: 260px;
  overflow: auto;
}
.enketo .geopicker textarea[name='kml']:disabled + .disabled-msg {
  display: block;
}
.enketo .geopicker .geo.kml {
  display: none;
  margin-bottom: 10px;
}
.enketo .geopicker .toggle-input-type-btn {
  border: none;
  background: none;
  color: #ccc;
  position: absolute;
  top: -10px;
  right: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  font-size: 12px;
}
.enketo .geopicker .toggle-input-type-btn .kml-input {
  display: block;
}
.enketo .geopicker .toggle-input-type-btn .points-input {
  display: none;
}
.enketo .geopicker .kml-input-mode .geo {
  display: none;
}
.enketo .geopicker .kml-input-mode .geo.kml {
  display: block;
}
.enketo .geopicker .kml-input-mode .toggle-input-type-btn .kml-input {
  display: none;
}
.enketo .geopicker .kml-input-mode .toggle-input-type-btn .points-input {
  display: block;
}
.enketo .geopicker .map-canvas {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-top: 10px;
  height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: crosshair;
}
.enketo .geopicker .map-canvas img {
  max-width: none;
}
.enketo .geopicker .map-canvas .attribution {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 10px;
}
.enketo .geopicker .map-canvas.static {
  cursor: not-allowed;
}
.enketo .geopicker .map-canvas .show-map-btn {
  width: 150px;
  margin: 120px auto;
  display: block;
}
.enketo .geopicker.full-screen {
  /*IE10*/
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: white;
  margin-top: 0;
  padding-top: 25px;
}
.enketo .geopicker.full-screen .geo-inputs {
  margin-left: 25px;
  margin-bottom: 15px;
}
.enketo .geopicker.full-screen .geo-inputs .geo,
.enketo .geopicker.full-screen .geo-inputs .toggle-input-type-btn {
  display: none;
}
.enketo .geopicker.full-screen .geo-inputs .close-chain-btn {
  margin-left: 20px;
  margin-top: 0;
}
.enketo .geopicker.full-screen .map-canvas-wrapper {
  float: none;
  width: 100%;
  padding: 0 25px 15px 25px;
  flex: 1;
  /*IE10*/
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
}
.enketo .geopicker.full-screen .map-canvas-wrapper .map-canvas {
  height: 100%;
  flex: 1;
}
.enketo .geopicker.full-screen .map-canvas-wrapper .show-map-btn {
  display: none;
}
.enketo .geopicker.full-screen .search-bar {
  width: 100%;
  padding: 0 25px 15px 25px;
}
.enketo .geopicker.full-screen .search-bar.hide-search {
  display: block;
}
.enketo .geopicker.full-screen .search-bar .hide-map-btn {
  display: block;
  width: 70px;
  margin-right: 15px;
  order: 1;
}
.enketo .geopicker.full-screen .search-bar [name='geodetect'] {
  width: 70px;
  margin-left: 15px;
}
.enketo .geopicker.full-screen .search-bar .input-group {
  width: auto;
  flex: 100%;
}
.enketo .geopicker.full-screen .points {
  display: none;
}
.enketo .geopicker.full-screen .btn-remove {
  margin-left: 0;
}
.enketo .geopicker .leaflet-control-layers-toggle,
.enketo .geopicker .leaflet-retina .leaflet-control-layers-toggle {
  background: none;
  color: #888;
  text-align: center;
  font-size: 20px;
  line-height: 44px;
}
.enketo .geopicker .leaflet-control-layers-toggle .icon-globe,
.enketo .geopicker .leaflet-retina .leaflet-control-layers-toggle .icon-globe {
  margin: -1px auto 0 auto;
}
.enketo .geopicker .leaflet-control-layers-list label {
  text-align: left;
  padding: 5px;
}
.enketo .geopicker .leaflet-control-layers-list label .option-label {
  margin-left: 30px;
  display: block;
  line-height: 20px;
}
.enketo .geopicker:not(.full-screen).hide-input.wide .map-canvas {
  height: 375px;
}
.enketo .geopicker:not(.full-screen).hide-input .geo-inputs .geo {
  display: none;
}
.enketo .geopicker:not(.full-screen).hide-input .toggle-input-type-btn {
  display: none;
}
.enketo .geopicker:not(.full-screen).hide-input .btn-remove {
  margin: 10px 0 5px 0;
}
.enketo .geopicker:not(.full-screen).hide-input .map-canvas-wrapper,
.enketo .geopicker:not(.full-screen).hide-input .search-bar {
  width: 100%;
  border-left: none;
  padding-left: 0;
}
.enketo .or[dir='rtl'] .geopicker .geo-inputs {
  margin: 0 0 0 4%;
}
.enketo .or[dir='rtl'] .geopicker .map-canvas-wrapper,
.enketo .or[dir='rtl'] .geopicker .search-bar {
  float: left;
  border-left: none;
  border-right: solid 1px #bbbbbb;
}
@media screen and (max-width: 1100px) {
  .enketo .or[dir='rtl'] .geopicker .map-canvas-wrapper,
  .enketo .or[dir='rtl'] .geopicker .search-bar {
    border-right: none;
  }
}
.enketo .or[dir='rtl'] .geopicker .map-canvas-wrapper .input-group,
.enketo .or[dir='rtl'] .geopicker .search-bar .input-group {
  flex-direction: row-reverse;
}
.enketo .or[dir='rtl'] .geopicker .toggle-input-visibility-btn {
  right: -16px;
  border-right: 3px solid #aaaaaa;
  border-bottom: 2px solid #aaaaaa;
  border-top: 2px solid #aaaaaa;
  border-left: none;
}
.enketo .or[dir='rtl'] .geopicker .toggle-input-visibility-btn.open {
  right: -20px;
  border-right: none;
  border-left: 3px solid #aaaaaa;
}
.enketo .or[dir='rtl'] .geopicker input[name='alt'],
.enketo .or[dir='rtl'] .geopicker input[name='acc'] {
  float: left;
}
.enketo .or[dir='rtl'] .geopicker .btn[name='geodetect'],
.enketo
  .or[dir='rtl']
  .geopicker
  .vex.vex-theme-plain
  .vex-dialog-button[name='geodetect'],
.enketo
  .vex.vex-theme-plain
  .or[dir='rtl']
  .geopicker
  .vex-dialog-button[name='geodetect'] {
  font-size: 16px;
  margin: 0 4% 0 0;
}
.enketo .or[dir='rtl'] .geopicker .hide-map-btn {
  margin: 0 0 0 4%;
}
.enketo .or[dir='rtl'] .geopicker .hide-search .btn[name='geodetect'],
.enketo
  .or[dir='rtl']
  .geopicker
  .hide-search
  .vex.vex-theme-plain
  .vex-dialog-button[name='geodetect'],
.enketo
  .vex.vex-theme-plain
  .or[dir='rtl']
  .geopicker
  .hide-search
  .vex-dialog-button[name='geodetect'] {
  margin: 15px auto;
  width: 50%;
}
.enketo .or[dir='rtl'] .geopicker .close-chain-btn {
  margin-left: 0;
  margin-right: 15px;
}
.enketo .or[dir='rtl'] .geopicker .toggle-input-type-btn {
  left: 0;
  right: auto;
}
.enketo
  .or[dir='rtl']
  .geopicker:not(.full-screen).hide-input
  .map-canvas-wrapper,
.enketo .or[dir='rtl'] .geopicker:not(.full-screen).hide-input .search-bar {
  border-right: none;
  padding-right: 4%;
  padding-left: 0;
}
@media screen and (max-width: 500px) {
  .enketo .full-screen.geopicker .search-bar .search-btn {
    display: none;
  }
  .enketo .full-screen.geopicker .search-bar [name='search'] {
    width: 100%;
  }
  .enketo .full-screen.geopicker .search-bar [name='search'] {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
}
.enketo
  .question:not(.or-appearance-label):not(.or-appearance-compact):not(.or-appearance-quickcompact)
  .geopicker
  label {
  line-height: 16px;
  font-weight: normal;
}
.enketo
  .question:not(.or-appearance-label):not(.or-appearance-compact):not(.or-appearance-quickcompact)
  .geopicker
  label
  input[type='radio']
  ~ .option-label::before {
  font-size: 16px;
  height: 16px;
  margin-right: 2px;
}
.enketo .question.or-appearance-list-nolabel,
.enketo .question.or-appearance-label {
  margin: -0.9em 0 -0.7em 0;
}
.enketo .question.or-appearance-list-nolabel legend,
.enketo .question.or-appearance-label legend {
  float: left;
  border: none;
  line-height: 17px;
  width: 35%;
  min-height: 1px;
}
.enketo .question.or-appearance-list-nolabel .option-wrapper,
.enketo .question.or-appearance-label .option-wrapper {
  /*IE10*/
  display: flex;
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: nowrap;
}
.enketo .question.or-appearance-list-nolabel .option-wrapper label,
.enketo .question.or-appearance-label .option-wrapper label {
  flex: 1;
  text-align: center;
  padding: 4px 0;
  word-break: break-word;
}
.enketo .question.or-appearance-list-nolabel .option-wrapper label .active,
.enketo .question.or-appearance-label .option-wrapper label .active {
  margin: 0 auto;
}
.enketo .question.or-appearance-list-nolabel .option-label.active,
.enketo .question.or-appearance-label .option-label.active {
  text-align: center;
}
.enketo .or[dir='rtl'] .question.or-appearance-list-nolabel,
.enketo .or[dir='rtl'] .question.or-appearance-label {
  margin: -0.9em 0 -0.7em 0;
}
.enketo .or[dir='rtl'] .question.or-appearance-list-nolabel legend,
.enketo .or[dir='rtl'] .question.or-appearance-label legend {
  float: right;
}
.enketo .or[dir='rtl'] .question.or-appearance-list-nolabel input[type='radio'],
.enketo
  .or[dir='rtl']
  .question.or-appearance-list-nolabel
  input[type='checkbox'] {
  float: none;
  margin: 0;
}
.enketo .question.or-appearance-list-nolabel label .active {
  display: none;
  float: none;
}
.enketo .question.or-appearance-list-nolabel input[type='radio'],
.enketo .question.or-appearance-list-nolabel input[type='checkbox'] {
  float: none;
  text-align: center;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.enketo .question.or-appearance-label .option-wrapper > label {
  margin-bottom: 6px;
}
.enketo .question.or-appearance-label .option-wrapper > label:hover {
  background-color: transparent;
}
.enketo .question.or-appearance-label input[type='radio'],
.enketo .question.or-appearance-label input[type='checkbox'] {
  display: none;
}
.enketo .question.or-appearance-label img {
  max-height: 30px;
  max-width: 30px;
  float: none;
}
.enketo
  .or[dir='rtl']
  .question.or-appearance-label
  .option-wrapper
  > label
  img {
  float: none;
}
.enketo .datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}
.enketo .datepicker-inline {
  width: 220px;
}
.enketo .datepicker-rtl {
  direction: rtl;
}
.enketo .datepicker-rtl.dropdown-menu {
  left: auto;
}
.enketo .datepicker-rtl table tr td span {
  float: right;
}
.enketo .datepicker-dropdown {
  top: 0;
  left: 0;
}
.enketo .datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.enketo .datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.enketo .datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.enketo .datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.enketo .datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.enketo .datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.enketo .datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.enketo .datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.enketo .datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.enketo .datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.enketo .datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.enketo .datepicker td,
.enketo .datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}
.enketo .table-striped .datepicker table tr td,
.enketo .table-striped .datepicker table tr th {
  background-color: transparent;
}
.enketo .datepicker table tr td.day.focused,
.enketo .datepicker table tr td.day:hover {
  background: #eee;
  cursor: pointer;
}
.enketo .datepicker table tr td.new,
.enketo .datepicker table tr td.old {
  color: #999;
}
.enketo .datepicker table tr td.disabled,
.enketo .datepicker table tr td.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}
.enketo .datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.enketo .datepicker table tr td.today,
.enketo .datepicker table tr td.today.disabled,
.enketo .datepicker table tr td.today.disabled:hover,
.enketo .datepicker table tr td.today:hover {
  background-color: #fde19a;
  /* background-image: -webkit-gradient(
      linear,
      0 0,
      0 100%,
      from(#fdd49a),
      to(#fdf59a)
    ); */
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.enketo .datepicker table tr td.today.active,
.enketo .datepicker table tr td.today.disabled,
.enketo .datepicker table tr td.today.disabled.active,
.enketo .datepicker table tr td.today.disabled.disabled,
.enketo .datepicker table tr td.today.disabled:active,
.enketo .datepicker table tr td.today.disabled:hover,
.enketo .datepicker table tr td.today.disabled:hover.active,
.enketo .datepicker table tr td.today.disabled:hover.disabled,
.enketo .datepicker table tr td.today.disabled:hover:active,
.enketo .datepicker table tr td.today.disabled:hover:hover,
.enketo .datepicker table tr td.today.disabled:hover[disabled],
.enketo .datepicker table tr td.today.disabled[disabled],
.enketo .datepicker table tr td.today:active,
.enketo .datepicker table tr td.today:hover,
.enketo .datepicker table tr td.today:hover.active,
.enketo .datepicker table tr td.today:hover.disabled,
.enketo .datepicker table tr td.today:hover:active,
.enketo .datepicker table tr td.today:hover:hover,
.enketo .datepicker table tr td.today:hover[disabled],
.enketo .datepicker table tr td.today[disabled] {
  background-color: #fdf59a;
}
.enketo .datepicker table tr td.today.active,
.enketo .datepicker table tr td.today.disabled.active,
.enketo .datepicker table tr td.today.disabled:active,
.enketo .datepicker table tr td.today.disabled:hover.active,
.enketo .datepicker table tr td.today.disabled:hover:active,
.enketo .datepicker table tr td.today:active,
.enketo .datepicker table tr td.today:hover.active,
.enketo .datepicker table tr td.today:hover:active {
  background-color: #fbf069;
}
.enketo .datepicker table tr td.today:hover:hover {
  color: #000;
}
.enketo .datepicker table tr td.today.active:hover {
  color: #fff;
}
.enketo .datepicker table tr td.range,
.enketo .datepicker table tr td.range.disabled,
.enketo .datepicker table tr td.range.disabled:hover,
.enketo .datepicker table tr td.range:hover {
  background: #eee;
  border-radius: 0;
}
.enketo .datepicker table tr td.range.today,
.enketo .datepicker table tr td.range.today.disabled,
.enketo .datepicker table tr td.range.today.disabled:hover,
.enketo .datepicker table tr td.range.today:hover {
  background-color: #f3d17a;
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0;
}
.enketo .datepicker table tr td.range.today.active,
.enketo .datepicker table tr td.range.today.disabled,
.enketo .datepicker table tr td.range.today.disabled.active,
.enketo .datepicker table tr td.range.today.disabled.disabled,
.enketo .datepicker table tr td.range.today.disabled:active,
.enketo .datepicker table tr td.range.today.disabled:hover,
.enketo .datepicker table tr td.range.today.disabled:hover.active,
.enketo .datepicker table tr td.range.today.disabled:hover.disabled,
.enketo .datepicker table tr td.range.today.disabled:hover:active,
.enketo .datepicker table tr td.range.today.disabled:hover:hover,
.enketo .datepicker table tr td.range.today.disabled:hover[disabled],
.enketo .datepicker table tr td.range.today.disabled[disabled],
.enketo .datepicker table tr td.range.today:active,
.enketo .datepicker table tr td.range.today:hover,
.enketo .datepicker table tr td.range.today:hover.active,
.enketo .datepicker table tr td.range.today:hover.disabled,
.enketo .datepicker table tr td.range.today:hover:active,
.enketo .datepicker table tr td.range.today:hover:hover,
.enketo .datepicker table tr td.range.today:hover[disabled],
.enketo .datepicker table tr td.range.today[disabled] {
  background-color: #f3e97a;
}
.enketo .datepicker table tr td.range.today.active,
.enketo .datepicker table tr td.range.today.disabled.active,
.enketo .datepicker table tr td.range.today.disabled:active,
.enketo .datepicker table tr td.range.today.disabled:hover.active,
.enketo .datepicker table tr td.range.today.disabled:hover:active,
.enketo .datepicker table tr td.range.today:active,
.enketo .datepicker table tr td.range.today:hover.active,
.enketo .datepicker table tr td.range.today:hover:active {
  background-color: #efe24b;
}
.enketo .datepicker table tr td.selected,
.enketo .datepicker table tr td.selected.disabled,
.enketo .datepicker table tr td.selected.disabled:hover,
.enketo .datepicker table tr td.selected:hover {
  background-color: #9e9e9e;
  /* background-image: -webkit-gradient(
      linear,
      0 0,
      0 100%,
      from(#b3b3b3),
      to(grey)
    ); */
  background-image: linear-gradient(to bottom, #b3b3b3, grey);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: grey grey #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.enketo .datepicker table tr td.selected.active,
.enketo .datepicker table tr td.selected.disabled,
.enketo .datepicker table tr td.selected.disabled.active,
.enketo .datepicker table tr td.selected.disabled.disabled,
.enketo .datepicker table tr td.selected.disabled:active,
.enketo .datepicker table tr td.selected.disabled:hover,
.enketo .datepicker table tr td.selected.disabled:hover.active,
.enketo .datepicker table tr td.selected.disabled:hover.disabled,
.enketo .datepicker table tr td.selected.disabled:hover:active,
.enketo .datepicker table tr td.selected.disabled:hover:hover,
.enketo .datepicker table tr td.selected.disabled:hover[disabled],
.enketo .datepicker table tr td.selected.disabled[disabled],
.enketo .datepicker table tr td.selected:active,
.enketo .datepicker table tr td.selected:hover,
.enketo .datepicker table tr td.selected:hover.active,
.enketo .datepicker table tr td.selected:hover.disabled,
.enketo .datepicker table tr td.selected:hover:active,
.enketo .datepicker table tr td.selected:hover:hover,
.enketo .datepicker table tr td.selected:hover[disabled],
.enketo .datepicker table tr td.selected[disabled] {
  background-color: grey;
}
.enketo .datepicker table tr td.selected.active,
.enketo .datepicker table tr td.selected.disabled.active,
.enketo .datepicker table tr td.selected.disabled:active,
.enketo .datepicker table tr td.selected.disabled:hover.active,
.enketo .datepicker table tr td.selected.disabled:hover:active,
.enketo .datepicker table tr td.selected:active,
.enketo .datepicker table tr td.selected:hover.active,
.enketo .datepicker table tr td.selected:hover:active {
  background-color: #6669;
}
.enketo .datepicker table tr td.active,
.enketo .datepicker table tr td.active.disabled,
.enketo .datepicker table tr td.active.disabled:hover,
.enketo .datepicker table tr td.active:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.enketo .datepicker table tr td.active.active,
.enketo .datepicker table tr td.active.disabled,
.enketo .datepicker table tr td.active.disabled.active,
.enketo .datepicker table tr td.active.disabled.disabled,
.enketo .datepicker table tr td.active.disabled:active,
.enketo .datepicker table tr td.active.disabled:hover,
.enketo .datepicker table tr td.active.disabled:hover.active,
.enketo .datepicker table tr td.active.disabled:hover.disabled,
.enketo .datepicker table tr td.active.disabled:hover:active,
.enketo .datepicker table tr td.active.disabled:hover:hover,
.enketo .datepicker table tr td.active.disabled:hover[disabled],
.enketo .datepicker table tr td.active.disabled[disabled],
.enketo .datepicker table tr td.active:active,
.enketo .datepicker table tr td.active:hover,
.enketo .datepicker table tr td.active:hover.active,
.enketo .datepicker table tr td.active:hover.disabled,
.enketo .datepicker table tr td.active:hover:active,
.enketo .datepicker table tr td.active:hover:hover,
.enketo .datepicker table tr td.active:hover[disabled],
.enketo .datepicker table tr td.active[disabled] {
  background-color: #04c;
}
.enketo .datepicker table tr td.active.active,
.enketo .datepicker table tr td.active.disabled.active,
.enketo .datepicker table tr td.active.disabled:active,
.enketo .datepicker table tr td.active.disabled:hover.active,
.enketo .datepicker table tr td.active.disabled:hover:active,
.enketo .datepicker table tr td.active:active,
.enketo .datepicker table tr td.active:hover.active,
.enketo .datepicker table tr td.active:hover:active {
  background-color: #0399;
}
.enketo .datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.enketo .datepicker table tr td span.focused,
.enketo .datepicker table tr td span:hover {
  background: #eee;
}
.enketo .datepicker table tr td span.disabled,
.enketo .datepicker table tr td span.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}
.enketo .datepicker table tr td span.active,
.enketo .datepicker table tr td span.active.disabled,
.enketo .datepicker table tr td span.active.disabled:hover,
.enketo .datepicker table tr td span.active:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.enketo .datepicker table tr td span.active.active,
.enketo .datepicker table tr td span.active.disabled,
.enketo .datepicker table tr td span.active.disabled.active,
.enketo .datepicker table tr td span.active.disabled.disabled,
.enketo .datepicker table tr td span.active.disabled:active,
.enketo .datepicker table tr td span.active.disabled:hover,
.enketo .datepicker table tr td span.active.disabled:hover.active,
.enketo .datepicker table tr td span.active.disabled:hover.disabled,
.enketo .datepicker table tr td span.active.disabled:hover:active,
.enketo .datepicker table tr td span.active.disabled:hover:hover,
.enketo .datepicker table tr td span.active.disabled:hover[disabled],
.enketo .datepicker table tr td span.active.disabled[disabled],
.enketo .datepicker table tr td span.active:active,
.enketo .datepicker table tr td span.active:hover,
.enketo .datepicker table tr td span.active:hover.active,
.enketo .datepicker table tr td span.active:hover.disabled,
.enketo .datepicker table tr td span.active:hover:active,
.enketo .datepicker table tr td span.active:hover:hover,
.enketo .datepicker table tr td span.active:hover[disabled],
.enketo .datepicker table tr td span.active[disabled] {
  background-color: #04c;
}
.enketo .datepicker table tr td span.active.active,
.enketo .datepicker table tr td span.active.disabled.active,
.enketo .datepicker table tr td span.active.disabled:active,
.enketo .datepicker table tr td span.active.disabled:hover.active,
.enketo .datepicker table tr td span.active.disabled:hover:active,
.enketo .datepicker table tr td span.active:active,
.enketo .datepicker table tr td span.active:hover.active,
.enketo .datepicker table tr td span.active:hover:active {
  background-color: #0399;
}
.enketo .datepicker table tr td span.new,
.enketo .datepicker table tr td span.old {
  color: #999;
}
.enketo .datepicker .datepicker-switch {
  width: 145px;
}
.enketo .datepicker .datepicker-switch,
.enketo .datepicker .next,
.enketo .datepicker .prev,
.enketo .datepicker tfoot tr th {
  cursor: pointer;
}
.enketo .datepicker .datepicker-switch:hover,
.enketo .datepicker .next:hover,
.enketo .datepicker .prev:hover,
.enketo .datepicker tfoot tr th:hover {
  background: #eee;
}
.enketo .datepicker .next.disabled,
.enketo .datepicker .prev.disabled {
  visibility: hidden;
}
.enketo .datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.enketo .input-append.date .add-on,
.enketo .input-prepend.date .add-on {
  cursor: pointer;
}
.enketo .input-append.date .add-on i,
.enketo .input-prepend.date .add-on i {
  margin-top: 3px;
}
.enketo .input-daterange input {
  text-align: center;
}
.enketo .input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.enketo .input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.enketo .input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
.enketo .question .date input[type='text'] {
  display: inline-block;
  width: 144px;
}
.enketo table {
  max-width: 100%;
  background-color: transparent;
}
.enketo th {
  text-align: left;
}
.enketo .table-condensed > thead > tr > th,
.enketo .table-condensed > thead > tr > td,
.enketo .table-condensed > tbody > tr > th,
.enketo .table-condensed > tbody > tr > td,
.enketo .table-condensed > tfoot > tr > th,
.enketo .table-condensed > tfoot > tr > td {
  padding: 5px;
}
.enketo .table-hover > tbody > tr:hover > td,
.enketo .table-hover > tbody > tr:hover > th {
  background-color: whitesmoke;
}
.enketo table col[class*='col-'] {
  position: static;
  float: none;
  display: table-column;
}
.enketo table td[class*='col-'],
.enketo table th[class*='col-'] {
  position: static;
  float: none;
  display: table-cell;
}
.enketo .table > thead > tr > td.active,
.enketo .table > thead > tr > th.active,
.enketo .table > thead > tr.active > td,
.enketo .table > thead > tr.active > th,
.enketo .table > tbody > tr > td.active,
.enketo .table > tbody > tr > th.active,
.enketo .table > tbody > tr.active > td,
.enketo .table > tbody > tr.active > th,
.enketo .table > tfoot > tr > td.active,
.enketo .table > tfoot > tr > th.active,
.enketo .table > tfoot > tr.active > td,
.enketo .table > tfoot > tr.active > th {
  background-color: whitesmoke;
}
.enketo .table-hover > tbody > tr > td.active:hover,
.enketo .table-hover > tbody > tr > th.active:hover,
.enketo .table-hover > tbody > tr.active:hover > td,
.enketo .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.enketo .timepicker {
  position: relative;
}
.enketo .timepicker.pull-right .timepicker-widget.dropdown-menu {
  left: auto;
  right: 0;
}
.enketo .timepicker.pull-right .timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px;
}
.enketo .timepicker.pull-right .timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px;
}
.enketo .timepicker .input-group-addon {
  cursor: pointer;
}
.enketo .timepicker .input-group-addon i {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.enketo .timepicker-widget.dropdown-menu {
  padding: 4px;
}
.enketo .timepicker-widget.dropdown-menu.open {
  display: inline-block;
}
.enketo .timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: '';
  display: inline-block;
  position: absolute;
}
.enketo .timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: '';
  display: inline-block;
  position: absolute;
}
.enketo .timepicker-widget.timepicker-orient-left:before {
  left: 6px;
}
.enketo .timepicker-widget.timepicker-orient-left:after {
  left: 7px;
}
.enketo .timepicker-widget.timepicker-orient-right:before {
  right: 6px;
}
.enketo .timepicker-widget.timepicker-orient-right:after {
  right: 7px;
}
.enketo .timepicker-widget.timepicker-orient-top:before {
  top: -7px;
}
.enketo .timepicker-widget.timepicker-orient-top:after {
  top: -6px;
}
.enketo .timepicker-widget.timepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.enketo .timepicker-widget.timepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.enketo .timepicker-widget a.btn,
.enketo .timepicker-widget .vex.vex-theme-plain a.vex-dialog-button,
.enketo .vex.vex-theme-plain .timepicker-widget a.vex-dialog-button,
.enketo .timepicker-widget input {
  border-radius: 4px;
}
.enketo .timepicker-widget table {
  width: 100%;
  margin: 0;
}
.enketo .timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px;
}
.enketo .timepicker-widget table td:not(.separator) {
  min-width: 30px;
}
.enketo .timepicker-widget table td span {
  width: 100%;
}
.enketo .timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333;
}
.enketo .timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  border-radius: 4px;
  border-color: #ddd;
}
.enketo .timepicker-widget table td a i {
  margin-top: 2px;
  font-size: 18px;
}
.enketo .timepicker-widget table td input {
  width: 25px;
  margin: 0;
  text-align: center;
}
.enketo .timepicker input[type='text'] {
  display: inline-block;
  width: 144px;
}
.enketo .timepicker-widget.dropdown-menu input {
  width: 50px;
  margin: 0 auto;
}
.enketo .timepicker-widget table td span {
  width: 12px;
}
.enketo .timepicker-widget table td a i {
  width: 11px;
  height: 17px;
  display: inline-block;
}
.enketo .datetimepicker .date,
.enketo .datetimepicker .timepicker {
  margin-right: 10px;
  display: inline-block;
}
.enketo .datetimepicker .date {
  margin-right: 10px;
}
.enketo .or[dir='rtl'] .datetimepicker .date {
  margin-right: 0;
}
.enketo .touch .timepicker-widget.dropdown-menu input {
  width: 50px;
  margin: 0 auto;
}
.enketo .question.or-appearance-compact legend,
.enketo .question.or-appearance-quickcompact legend {
  border: none;
}
.enketo .question.or-appearance-compact .option-wrapper,
.enketo .question.or-appearance-quickcompact .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact .option-wrapper > label,
.enketo .question.or-appearance-quickcompact .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact .option-wrapper > label:hover,
.enketo .question.or-appearance-quickcompact .option-wrapper > label:hover {
  background: none;
}
.enketo .question.or-appearance-compact .option-wrapper > label .option-label,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact .option-wrapper > label .active,
.enketo .question.or-appearance-quickcompact .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact .option-wrapper > label input,
.enketo .question.or-appearance-quickcompact .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  /*border-color: #ee7325; */
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact
  .option-wrapper
  > label
  input:focus
  ~ .active,
.enketo
  .question.or-appearance-quickcompact
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-1 legend {
  border: none;
}
.enketo .question.or-appearance-compact-1 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-1 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-1 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-1 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-1 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  /*border-color: #ee7325; */
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-1
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-1 .option-wrapper > label {
  width: 100%;
}
.enketo .question.or-appearance-compact-1 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-2 legend {
  border: none;
}
.enketo .question.or-appearance-compact-2 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-2 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-2 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-2 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-2 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  /*border-color: #ee7325; */
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-2
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-2 .option-wrapper > label {
  width: 50%;
}
.enketo .question.or-appearance-compact-2 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-3 legend {
  border: none;
}
.enketo .question.or-appearance-compact-3 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-3 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-3 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-3 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-3 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  /*border-color: #ee7325; */
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-3
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-3 .option-wrapper > label {
  width: 33.3333333333%;
}
.enketo .question.or-appearance-compact-3 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-4 legend {
  border: none;
}
.enketo .question.or-appearance-compact-4 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-4 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-4 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-4 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-4 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  /*border-color: #ee7325; */
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-4
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-4 .option-wrapper > label {
  width: 25%;
}
.enketo .question.or-appearance-compact-4 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-5 legend {
  border: none;
}
.enketo .question.or-appearance-compact-5 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-5 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-5 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-5 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-5 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  /*border-color: #ee7325; */
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-5
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-5 .option-wrapper > label {
  width: 20%;
}
.enketo .question.or-appearance-compact-5 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-6 legend {
  border: none;
}
.enketo .question.or-appearance-compact-6 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-6 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-6 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-6 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-6 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  /*border-color: #ee7325; */
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-6
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-6 .option-wrapper > label {
  width: 16.6666666667%;
}
.enketo .question.or-appearance-compact-6 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-7 legend {
  border: none;
}
.enketo .question.or-appearance-compact-7 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-7 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-7 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-7 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-7 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-7
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-7 .option-wrapper > label {
  width: 14.2857142857%;
}
.enketo .question.or-appearance-compact-7 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-8 legend {
  border: none;
}
.enketo .question.or-appearance-compact-8 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-8 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-8 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-8 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-8 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-8
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-8 .option-wrapper > label {
  width: 12.5%;
}
.enketo .question.or-appearance-compact-8 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-9 legend {
  border: none;
}
.enketo .question.or-appearance-compact-9 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-9 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-9 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-9 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-9 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-9
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-9 .option-wrapper > label {
  width: 11.1111111111%;
}
.enketo .question.or-appearance-compact-9 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .question.or-appearance-compact-10 legend {
  border: none;
}
.enketo .question.or-appearance-compact-10 .option-wrapper {
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .question.or-appearance-compact-10 .option-wrapper > label {
  display: inline-block;
  margin: 0;
  padding: 10px !important;
}
.enketo .question.or-appearance-compact-10 .option-wrapper > label:hover {
  background: none;
}
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  .option-label {
  padding: 2px;
}
.enketo .question.or-appearance-compact-10 .option-wrapper > label .active {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  max-width: 150px;
  max-height: 150px;
  float: none;
  border: 2px solid transparent;
}
.enketo .question.or-appearance-compact-10 .option-wrapper > label input {
  width: 1px;
  height: 1px;
  position: relative;
  top: 15px;
  left: 15px;
  z-index: -1;
}
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input:not([disabled]):not([readonly])
  ~ .active:hover {
  border-color: #faa474;
}
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input[disabled]:checked
  ~ .active:hover,
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input[readonly]:checked
  ~ .active:hover {
  border-color: #555555;
}
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input:checked
  ~ .active,
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input:checked
  ~ .active:hover {
  border-color: #ee7325;
}
.enketo
  .question.or-appearance-compact-10
  .option-wrapper
  > label
  input:focus
  ~ .active {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question.or-appearance-compact-10 .option-wrapper > label {
  width: 10%;
}
.enketo .question.or-appearance-compact-10 .option-wrapper > label img.active {
  max-width: 100%;
  max-height: 100%;
}
.enketo .file-picker .fake-file-input {
  flex: 1;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  height: 34px;
  flex-basis: 34px;
  display: inline-block;
  width: 80%;
  text-align: start;
}
.enketo .file-picker .fake-file-input:focus {
  outline: none;
  box-shadow: none;
}
.enketo .file-picker .fake-file-input::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.enketo .file-picker .fake-file-input:-ms-input-placeholder {
  color: #999999;
}
.enketo .file-picker .fake-file-input::-webkit-input-placeholder {
  color: #999999;
}
.enketo .file-picker .fake-file-input[disabled],
.enketo .file-picker .fake-file-input[readonly],
.enketo fieldset[disabled] .file-picker .fake-file-input {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
  padding-left: 5px;
  padding-right: 5px;
}
.enketo .file-picker .file-feedback,
.enketo .file-picker .file-preview {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
}
.enketo .file-picker .file-feedback.warning {
  color: #8a6d3b;
}
.enketo .file-picker .file-preview {
  margin-top: 10px;
}
.enketo .file-picker .btn-download {
  margin-right: 0;
}
.enketo .file-picker .btn-download[href=''] {
  display: none;
}
.enketo .or-drawing-initialized input[type='text'],
.enketo .or-signature-initialized input[type='text'],
.enketo .or-annotate-initialized input[type='text'] {
  display: none;
}
.enketo .or-signature-initialized .draw-widget__body {
  padding-top: 45%;
}
.enketo .draw-widget {
  width: 100%;
}
.enketo .draw-widget__body {
  position: relative;
  width: 100%;
  padding-top: 75%;
}
.enketo .draw-widget__body__canvas {
  background: white;
  border: 1px solid #eeeeee;
  flex: 1;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  height: 34px;
  flex-basis: 34px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.enketo .draw-widget__body__canvas:focus {
  outline: none;
  box-shadow: none;
}
.enketo .draw-widget__body__canvas::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.enketo .draw-widget__body__canvas:-ms-input-placeholder {
  color: #999999;
}
.enketo .draw-widget__body__canvas::-webkit-input-placeholder {
  color: #999999;
}
.enketo .draw-widget__body__canvas[disabled],
.enketo .draw-widget__body__canvas[readonly],
.enketo fieldset[disabled] .draw-widget__body__canvas {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
  padding-left: 5px;
  padding-right: 5px;
}
.enketo .draw-widget__body__canvas.disabled {
  cursor: not-allowed;
  background: white;
  opacity: 1;
}
.enketo .draw-widget__body__canvas.disabled ~ .draw-widget__colorpicker,
.enketo .draw-widget__body__canvas.disabled ~ .draw-widget__undo {
  display: none;
}
.enketo .draw-widget__body input[type='file'] {
  display: none;
}
.enketo .draw-widget__body .file-picker {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
}
.enketo .draw-widget__body .show-canvas-btn {
  position: absolute;
  z-index: 10;
  top: calc(50% - 16px);
  left: 50%;
  width: 200px;
  margin-left: -100px;
}
.enketo .draw-widget__body .hide-canvas-btn {
  display: none;
}
.enketo .draw-widget__footer {
  margin-top: 10px;
}
.enketo .draw-widget__footer .draw-widget__btn-reset:disabled {
  display: none;
}
.enketo .draw-widget__undo {
  position: absolute;
  top: 37px;
  right: 7px;
  width: 20px;
  height: 20px;
  margin: 2px;
  padding: 0;
  border: 2px solid grey;
}
.enketo .draw-widget__colorpicker {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  max-width: calc(100% - (2 * 7px));
  top: 7px;
  right: 7px;
}
.enketo .draw-widget__colorpicker div {
  display: none;
}
.enketo .draw-widget__colorpicker div {
  width: 20px;
  height: 20px;
  margin: 2px;
  border: none;
  padding: 0;
}
.enketo .draw-widget__colorpicker.reveal div {
  display: block;
}
.enketo .draw-widget__colorpicker .current {
  display: block;
  border: 2px solid grey;
}
.enketo .draw-widget.full-screen {
  /*IE10*/
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: white;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
}
.enketo .draw-widget.full-screen .draw-widget__body {
  width: calc(100vmin - 2 * 15px);
  padding-top: calc(0.75 * 100vmin);
  margin: 50px auto;
}
.enketo .draw-widget.full-screen .draw-widget__body input[type='file'] {
  left: 90px;
}
.enketo .draw-widget.full-screen .draw-widget__body .file-picker {
  left: 80px;
  width: calc(100% - 18px);
}
.enketo .draw-widget.full-screen .hide-canvas-btn {
  display: block;
  position: absolute;
  z-index: 30;
  top: -40px;
  left: 0;
  width: 70px;
}
.enketo .draw-widget.full-screen .show-canvas-btn {
  display: none;
}
.enketo .draw-widget.full-screen .draw-widget__footer {
  width: calc(100vmin - 2 * 15px);
  margin: -40px auto 0 auto;
}
.enketo .draw-widget .btn-download {
  margin-right: 0;
}
.enketo .draw-widget .btn-download[href=''] {
  display: none;
}
.enketo .or-signature-initialized .draw-widget.full-screen .draw-widget__body {
  width: calc(100% - 2 * 15px);
  padding-top: calc(0.45 * (100% - 2 * 15px));
}
.enketo
  .or-signature-initialized
  .draw-widget.full-screen
  .draw-widget__footer {
  width: calc(100% - 2 * 15px);
}
.enketo .or-annotate-initialized .draw-widget__body {
  margin-top: 50px;
}
.enketo .or-appearance-likert .option-wrapper {
  /*IE10*/
  display: flex;
  flex-wrap: nowrap;
  -moz-flex-direction: row;
  flex-direction: row;
}
.enketo .or-appearance-likert .option-wrapper > label {
  flex: 1;
  /*IE10*/
  display: flex;
  flex-wrap: nowrap;
  -moz-flex-direction: column;
  flex-direction: column;
  margin: 0;
  float: none;
  padding-left: 0 !important;
  padding-right: 0;
}
.enketo .or-appearance-likert .option-wrapper > label input[type='radio'],
.enketo .or-appearance-likert .option-wrapper > label input[type='checkbox'] {
  position: relative;
  left: 50%;
  padding: 0;
  margin-left: -10px;
  background-color: white;
  z-index: 10;
}
.enketo .or-appearance-likert .option-wrapper > label .active {
  margin: 0;
}
.enketo .or-appearance-likert .option-wrapper > label .option-label {
  position: relative;
  text-align: center;
  margin-top: -8.5px;
  padding-top: 15px;
  border-top: 3px solid #666666;
  font-size: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
}
.enketo
  .or-appearance-likert
  .option-wrapper
  > label:first-of-type
  .option-label::after {
  content: '';
  display: block;
  position: absolute;
  top: -3px;
  width: 50%;
  background-color: white;
  height: 10px;
  left: 0;
}
.enketo
  .or-appearance-likert
  .option-wrapper
  > label:last-of-type
  .option-label::after {
  content: '';
  display: block;
  position: absolute;
  top: -3px;
  width: 50%;
  background-color: white;
  height: 10px;
  right: 0;
}
.enketo .or-appearance-likert .option-wrapper > label:hover {
  background-color: transparent;
}
.enketo
  .or-appearance-likert:hover
  .option-wrapper
  > label:first-of-type
  .option-label::after,
.enketo
  .or-appearance-likert:hover
  .option-wrapper
  > label:last-of-type
  .option-label::after {
  background-color: #fffded;
}
.enketo
  .or-appearance-likert.focus
  .option-wrapper
  > label:first-of-type
  .option-label::after,
.enketo
  .or-appearance-likert.focus
  .option-wrapper
  > label:last-of-type
  .option-label::after {
  background-color: #fffad4;
}
.enketo .or[dir='rtl'] .or-appearance-likert .option-wrapper > label {
  margin-right: 0;
}
.enketo
  .or[dir='rtl']
  .or-appearance-likert
  .option-wrapper
  > label:first-of-type
  .option-label::after {
  left: auto;
  right: 0;
}
.enketo
  .or[dir='rtl']
  .or-appearance-likert
  .option-wrapper
  > label:last-of-type
  .option-label::after {
  right: auto;
  left: 0;
}
.enketo
  .or[dir='rtl']
  .or-appearance-likert
  .option-wrapper
  > label
  input[type='radio'],
.enketo
  .or[dir='rtl']
  .or-appearance-likert
  .option-wrapper
  > label
  input[type='checkbox'] {
  right: 50%;
  margin-right: -10px;
}
.enketo .or[dir='rtl'] .or-appearance-likert .option-wrapper .option-label {
  margin-right: 0;
}
.enketo
  .or-repeat
  .or-appearance-likert
  .option-wrapper
  > label:first-of-type
  .option-label::after,
.enketo
  .or-repeat
  .or-appearance-likert
  .option-wrapper
  > label:last-of-type
  .option-label::after,
.enketo
  .or-repeat
  .or-appearance-likert
  .option-wrapper
  > label
  input[type='radio'],
.enketo
  .or-repeat
  .or-appearance-likert
  .option-wrapper
  > label
  input[type='checkbox'] {
  background-color: #fef5ef;
}
.enketo .or-horizontal-initialized .option-wrapper {
  /*IE10*/
  display: flex;
  flex-wrap: wrap;
  -moz-flex-direction: row;
  flex-direction: row;
}
.enketo .or-horizontal-initialized label,
.enketo .or-horizontal-initialized .filler {
  flex: 1 0 30%;
}
.enketo .or-horizontal-initialized .filler,
.enketo .or-horizontal-initialized .filler:hover,
.enketo .or-horizontal-initialized .filler:focus {
  border: none !important;
  background: transparent !important;
}
.enketo .or-appearance-horizontal-compact .option-wrapper {
  /*IE10*/
  display: flex;
  flex-wrap: wrap;
  -moz-flex-direction: row;
  flex-direction: row;
}
.enketo .or-appearance-horizontal-compact label {
  display: inline-block;
}
.enketo
  .touch
  .question:not(.or-appearance-compact):not(.or-appearance-quickcompact):not(.or-appearance-label):not(.or-appearance-list-nolabel):not(.or-appearance-likert).or-horizontal-initialized
  .option-wrapper
  > label,
.enketo
  .touch
  .question:not(.or-appearance-compact):not(.or-appearance-quickcompact):not(.or-appearance-label):not(.or-appearance-list-nolabel):not(.or-appearance-likert).or-appearance-horizontal-compact
  .option-wrapper
  > label {
  margin-right: 10px;
}
.enketo
  .touch
  .or[dir='rtl']
  .question:not(.or-appearance-compact):not(.or-appearance-quickcompact):not(.or-appearance-label):not(.or-appearance-list-nolabel):not(.or-appearance-likert).or-horizontal-initialized
  .option-wrapper
  > label,
.enketo
  .touch
  .or[dir='rtl']
  .question:not(.or-appearance-compact):not(.or-appearance-quickcompact):not(.or-appearance-label):not(.or-appearance-list-nolabel):not(.or-appearance-likert).or-appearance-horizontal-compact
  .option-wrapper
  > label {
  margin-left: 10px;
  margin-right: inherit;
}
.enketo .or-big-image {
  display: block;
  max-width: 70%;
  max-height: 300px;
}
.enketo .or-big-image img {
  border: 2px solid #ee7325;
  max-width: 100%;
}
.enketo .or-big-image.open {
  /*IE10*/
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  z-index: 10000;
  background: white;
  margin-top: 0;
}
.enketo .or-big-image.open img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
}
.enketo .or-comment-widget {
  display: block;
  position: absolute;
  z-index: 1001;
  top: 100%;
  left: 0;
  width: 100%;
}
.enketo .or-comment-widget__overlay {
  background: rgba(0, 0, 0, 0.3);
}
.enketo .or-comment-widget__content {
  position: relative;
  border: 1px solid #555555;
  background: white;
  padding: 30px;
  padding-bottom: 100px;
}
.enketo .or-comment-widget__content__btn-update {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.enketo .or-comment-widget__content__btn-close-x {
  top: 20px;
  right: 13px;
  position: absolute;
  content: '00D7';
  font-size: 26px;
  font-weight: normal;
  line-height: 31px;
  height: 30px;
  width: 30px;
  text-align: center;
  color: #bbb;
  background: transparent;
}
.enketo .or-comment-widget__overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.enketo .or-comment-widget__question-label,
.enketo .or-comment-widget__question-value {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  font-style: italic;
  padding-right: 35px;
}
.enketo .or-comment-widget__question-value {
  margin-left: 20px;
  margin-top: 10px;
}
.enketo .or-comment-widget .question textarea,
.enketo .or-comment-widget .question input[type='text'] {
  width: 100%;
}
.enketo .or-comment-widget .or-required-msg.active,
.enketo .or-comment-widget .file-picker .file-feedback.warning,
.enketo .file-picker .or-comment-widget .file-feedback.warning,
.enketo .or-comment-widget .or-constraint-msg.active,
.enketo .or-comment-widget .file-picker .file-feedback.error,
.enketo .file-picker .or-comment-widget .file-feedback.error,
.enketo .or-comment-widget .draw-widget__feedback,
.enketo .or-comment-widget .image-map__error {
  display: none;
}
.enketo .or-comment-widget .invalid-required > .or-required-msg,
.enketo .or-comment-widget .invalid-constraint > .or-constraint-msg {
  display: block;
}
.enketo .btn-comment {
  cursor: pointer;
}
.enketo .btn-comment.invalid {
  transition: all 0.6s ease-out;
  color: #e00e0e;
}
.enketo .btn-comment.invalid .icon,
.enketo .btn-comment.invalid .android-chrome,
.enketo
  .btn-comment.invalid
  .record-list__records__record[data-draft='true']::before,
.enketo .btn-comment.invalid .enketo-geopoint-marker,
.enketo .btn-comment.invalid .glyphicon-chevron-up,
.enketo .btn-comment.invalid .glyphicon-chevron-down {
  font-weight: bold;
}
.enketo .or[dir='rtl'] .btn-comment {
  left: auto;
  right: calc(100% - 25px);
}
.enketo .or[dir='rtl'] .or-comment-widget__content__btn-update {
  right: auto;
  left: 30px;
}
.enketo .or[dir='rtl'] .or-comment-widget__content__btn-close-x {
  right: auto;
  left: 13px;
}
.enketo .or[dir='rtl'] .or-comment-widget__question-label,
.enketo .or[dir='rtl'] .or-comment-widget__question-value {
  padding-right: 0;
  padding-left: 35px;
}
.enketo .or[dir='rtl'] .or-comment-widget__question-value {
  margin-left: 0;
  margin-right: 20px;
}
.enketo .or-image-map-initialized img {
  visibility: hidden;
}
.enketo .or-image-map-initialized .option-wrapper {
  display: none;
}
.enketo
  .or-image-map-initialized
  .image-map
  svg:not([or-readonly])
  path[id]:hover,
.enketo
  .or-image-map-initialized
  .image-map
  svg:not([or-readonly])
  g[id]:hover {
  opacity: 0.5 !important;
}
.enketo .image-map svg {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100 vmin;
  height: auto;
}
.enketo .image-map svg[or-readonly] {
  opacity: 0.75 !important;
}
.enketo .image-map svg path[id][or-selected],
.enketo .image-map svg g[id][or-selected] {
  fill: #ee7325 !important;
  stroke: #ee7325 !important;
}
.enketo .image-map__ui {
  height: 2em;
  width: 100%;
  text-align: center;
  font-weight: normal;
}
.enketo .image-map__ui__tooltip {
  display: inline-block;
  background: #fee5d6;
  padding: 2px 8px;
  color: #555555;
  border-radius: 2px;
}
.enketo .image-map__ui__tooltip:empty {
  padding: 0;
}
.enketo .or-appearance-literacy.simple-select input[type='text'] {
  display: none;
}
.enketo .or-appearance-literacy.simple-select .option-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .or-appearance-literacy.simple-select .option-wrapper label {
  display: none;
  flex-direction: column;
  padding: 10px;
  margin: 2px 4px;
}
.enketo
  .or-appearance-literacy.simple-select
  .option-wrapper
  label.incorrect-word
  .option-label {
  text-decoration: line-through;
}
.enketo .or-appearance-literacy.simple-select .option-wrapper label.at-flash {
  background-color: #66afe9 !important;
}
.enketo .or-appearance-literacy.simple-select .option-wrapper label.at-end {
  background-color: #f2dede !important;
}
.enketo .or-appearance-literacy.simple-select .option-wrapper label.unread {
  opacity: 0.5;
}
.enketo .or-appearance-literacy.simple-select .option-wrapper .option-label {
  order: 1;
  margin: 0 auto;
  font-size: 1.5em;
}
.enketo
  .or-appearance-literacy.simple-select
  .option-wrapper
  input[type='checkbox'] {
  order: 2;
  margin: 10px auto 0 auto;
}
.enketo
  .or-appearance-literacy.simple-select
  .option-wrapper
  input[type='checkbox']:disabled,
.enketo
  .or-appearance-literacy.simple-select
  .option-wrapper
  input[type='checkbox'][readonly] {
  visibility: hidden;
}
.enketo .or-appearance-literacy.simple-select .literacy-widget__start,
.enketo .or-appearance-literacy.simple-select .literacy-widget__stop,
.enketo .or-appearance-literacy.simple-select .literacy-widget__timer {
  display: block;
  margin: 0 calc(100% / 2 - 100px);
  width: 200px;
  margin-bottom: 20px;
}
.enketo .or-appearance-literacy.simple-select .literacy-widget__stop {
  display: none;
}
.enketo .or-appearance-literacy.simple-select .literacy-widget__timer {
  display: none;
  margin-bottom: 10px;
  font-size: 1.8em;
  padding: 10px;
  border: 1px solid #555555;
  text-align: center;
  background: white;
}
.enketo .or-appearance-literacy.simple-select .literacy-widget .btn-reset {
  margin-left: calc(100% - 30px);
}
.enketo .or-appearance-literacy.simple-select.flash .literacy-widget label,
.enketo .or-appearance-literacy.simple-select.stop .literacy-widget label,
.enketo .or-appearance-literacy.simple-select.start .literacy-widget label,
.enketo .or-appearance-literacy.simple-select.finish .literacy-widget label {
  display: flex;
}
.enketo .or-appearance-literacy.simple-select.flash .literacy-widget__timer,
.enketo .or-appearance-literacy.simple-select.stop .literacy-widget__timer,
.enketo .or-appearance-literacy.simple-select.start .literacy-widget__timer,
.enketo .or-appearance-literacy.simple-select.finish .literacy-widget__timer {
  display: block;
}
.enketo .or-appearance-literacy.simple-select.flash .literacy-widget__start,
.enketo .or-appearance-literacy.simple-select.stop .literacy-widget__start,
.enketo .or-appearance-literacy.simple-select.start .literacy-widget__start,
.enketo .or-appearance-literacy.simple-select.finish .literacy-widget__start {
  display: none;
}
.enketo .or-appearance-literacy.simple-select.flash .literacy-widget__stop,
.enketo .or-appearance-literacy.simple-select.start .literacy-widget__stop {
  display: block;
}
.enketo .or-appearance-literacy.simple-select.flash:not(.note):not(.focus),
.enketo
  .or-appearance-literacy.simple-select.flash.question:not(.note):not(.focus):hover,
.enketo .or-appearance-literacy.simple-select.stop:not(.note):not(.focus),
.enketo
  .or-appearance-literacy.simple-select.stop.question:not(.note):not(.focus):hover {
  background: #f9f96e;
}
.enketo
  .touch
  .question.or-appearance-literacy.simple-select
  .option-wrapper
  > label {
  padding: 10px;
  margin: 2px 4px;
  border: none;
}
.enketo
  .touch
  .question.or-appearance-literacy.simple-select
  .option-wrapper
  > label
  input[type='checkbox'] {
  margin-left: auto;
}
.enketo
  .touch
  .question.or-appearance-literacy.simple-select
  .option-wrapper
  .option-label {
  margin-left: 0;
}
.enketo .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.enketo .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.enketo .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.enketo .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.enketo .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.25;
  color: #333333;
  white-space: nowrap;
}
.enketo .or[dir='rtl'] .dropdown-menu {
  right: 0;
}
.enketo .dropdown-menu > li > a:hover,
.enketo .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: whitesmoke;
}
.enketo .dropdown-menu > .active > a,
.enketo .dropdown-menu > .active > a:hover,
.enketo .dropdown-menu > .active > a:focus {
  color: white;
  text-decoration: none;
  outline: 0;
  background-color: #ee7325;
}
.enketo .dropdown-menu > .disabled > a,
.enketo .dropdown-menu > .disabled > a:hover,
.enketo .dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.enketo .dropdown-menu > .disabled > a:hover,
.enketo .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.enketo .open > .dropdown-menu {
  display: block;
}
.enketo .open > a {
  outline: 0;
}
.enketo .question .geopoint.widget input[type='number'][name='alt'],
.enketo .question .geopoint.widget input[type='number'][name='acc'],
.enketo .question .geopoint.widget input[type='text'][name='alt'],
.enketo .question .geopoint.widget input[type='text'][name='acc'] {
  width: 40%;
}
.enketo .widget.date,
.enketo .widget.timepicker,
.enketo .widget.datetimepicker {
  /*IE10*/
  display: flex;
  flex-wrap: nowrap;
  -moz-flex-direction: row;
  flex-direction: row;
}
.enketo .question .widget.datetimepicker .date,
.enketo .question .widget.datetimepicker .timepicker {
  /*IE10*/
  display: flex;
  flex: 1;
}
.enketo .question .widget.datetimepicker .timepicker {
  margin-left: 0;
  margin-right: 0;
}
.enketo .or-appearance-likert .option-wrapper {
  margin-top: 20px;
}
.enketo .or-appearance-likert .option-wrapper > label {
  -moz-flex-direction: column-reverse;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.enketo .question.or-appearance-list-nolabel,
.enketo .question.or-appearance-label {
  margin: 0;
}
.enketo .question.or-appearance-list-nolabel:not(:last-of-type),
.enketo .question.or-appearance-label:not(:last-of-type) {
  border-bottom: none;
}
.enketo .or-appearance-label {
  padding-bottom: 0;
}
.enketo
  .touch
  .question:not(.or-appearance-compact):not(.or-appearance-quickcompact):not(.or-appearance-label):not(.or-appearance-list-nolabel):not(.or-appearance-likert)
  .option-wrapper
  > label {
  border: none;
  border-radius: 0;
}
.enketo .question .geopicker.widget input[type='text'],
.enketo .question .geopicker.widget input[type='number'],
.enketo .question .geopicker.widget textarea {
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px dotted #cccccc;
  background-color: transparent;
}
.enketo .question .geopicker.widget input[type='text'][name='search'] {
  width: 80%;
}
.enketo .question .geopicker.widget textarea {
  padding-top: 10px;
}
.enketo .question .geopicker.widget label.geo.alt {
  border-top: none;
}
.enketo .question .geopicker.widget .btn:not(.close-chain-btn),
.enketo
  .question
  .geopicker.widget
  .vex.vex-theme-plain
  .vex-dialog-button:not(.close-chain-btn),
.enketo
  .vex.vex-theme-plain
  .question
  .geopicker.widget
  .vex-dialog-button:not(.close-chain-btn) {
  background: transparent;
  border: none;
}
.enketo .question .geopicker.widget .btn:not(.close-chain-btn):hover,
.enketo
  .question
  .geopicker.widget
  .vex.vex-theme-plain
  .vex-dialog-button:not(.close-chain-btn):hover,
.enketo
  .vex.vex-theme-plain
  .question
  .geopicker.widget
  .vex-dialog-button:not(.close-chain-btn):hover {
  opacity: 0.6;
}
.enketo .question .geopicker.widget .map-canvas-wrapper,
.enketo .question .geopicker.widget .search-bar {
  border-left: none;
}
.enketo
  .question
  .geopicker.widget:not(.full-screen).hide-input.wide
  .map-canvas {
  height: 450px;
}
.enketo .question .geopicker.widget .toggle-input-btn:not(.open) {
  left: 0;
}
.enketo .esri-geopicker {
  border-bottom: none;
  padding-bottom: 0;
}
.enketo .esri-geopicker .btn[name='geodetect'],
.enketo
  .esri-geopicker
  .vex.vex-theme-plain
  .vex-dialog-button[name='geodetect'],
.enketo
  .vex.vex-theme-plain
  .esri-geopicker
  .vex-dialog-button[name='geodetect'] {
  border: none;
  background: transparent;
  box-shadow: none;
  font-weight: bolder;
}
.enketo .esri-geopicker input[type='text'],
.enketo .esri-geopicker input[type='number'],
.enketo .esri-geopicker textarea,
.enketo .esri-geopicker select {
  border-bottom: 1px dotted #cccccc;
}
.enketo .esri-geopicker .geo-unit {
  right: 12px;
}
.enketo html:not(.touch) .question .geopoint.widget .search-bar button.btn,
.enketo
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  .vex.vex-theme-plain
  button.vex-dialog-button,
.enketo
  .vex.vex-theme-plain
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  button.vex-dialog-button {
  border: none;
  background: transparent;
  border-radius: 0;
}
.enketo
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  button.btn:hover,
.enketo
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  .vex.vex-theme-plain
  button.vex-dialog-button:hover,
.enketo
  .vex.vex-theme-plain
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  button.vex-dialog-button:hover {
  background: transparent;
  color: #aaaaaa;
}
.enketo
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  [name='search']
  ~ .input-group-btn
  .btn,
.enketo
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  [name='search']
  ~ .input-group-btn
  .vex.vex-theme-plain
  .vex-dialog-button,
.enketo
  .vex.vex-theme-plain
  html:not(.touch)
  .question
  .geopoint.widget
  .search-bar
  [name='search']
  ~ .input-group-btn
  .vex-dialog-button {
  border-bottom: 1px dotted #cccccc;
}
.enketo .or-comment-widget__content {
  padding-top: 60px;
}
.enketo .or-comment-widget__overlay + .question {
  margin-left: 0;
  margin-right: 0;
}
.enketo .or-comment-widget .question {
  border: 1px solid black;
}
.enketo .or-comment-widget .question input,
.enketo .or-comment-widget .question textarea {
  order: 4;
}
.enketo .btn-comment {
  position: absolute;
  top: 6px;
  right: 0;
  margin: 0;
}
.enketo legend .btn-comment {
  top: 0;
  right: -6px;
}
.enketo legend .btn-comment .icon,
.enketo legend .btn-comment .android-chrome,
.enketo
  legend
  .btn-comment
  .record-list__records__record[data-draft='true']::before,
.enketo legend .btn-comment .enketo-geopoint-marker,
.enketo legend .btn-comment .glyphicon-chevron-up,
.enketo legend .btn-comment .glyphicon-chevron-down {
  position: static;
}
.enketo .or[dir='rtl'] .btn-comment {
  left: 0;
  right: auto;
}
.enketo .or[dir='rtl'] legend .btn-comment {
  left: -6px;
}
.enketo .or[dir='rtl'] .esri-geopicker .geo-unit {
  right: auto;
  left: 12px;
}
.enketo .bootstrap-select .dropdown-toggle,
.enketo .bootstrap-select .dropdown-menu {
  width: 100%;
}
.enketo .draw-widget__body__canvas {
  border: 1px solid #999999;
}
.enketo .file-picker {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.enketo .file-picker .file-feedback,
.enketo .file-picker .file-preview {
  width: 100%;
}
.enketo .file-picker .btn-download {
  margin-right: 10px;
}
.enketo .file-picker .btn-download .icon,
.enketo .file-picker .btn-download .android-chrome,
.enketo
  .file-picker
  .btn-download
  .record-list__records__record[data-draft='true']::before,
.enketo .file-picker .btn-download .enketo-geopoint-marker,
.enketo .file-picker .btn-download .glyphicon-chevron-up,
.enketo .file-picker .btn-download .glyphicon-chevron-down {
  vertical-align: middle;
  margin-top: 1px;
}
.enketo .or-appearance-vertical .range-widget__wrap,
.enketo .or-appearance-distress .range-widget__wrap {
  margin-top: 0;
}
.enketo input[type='text'],
.enketo input[type='tel'],
.enketo input[type='password'],
.enketo input[type='url'],
.enketo input[type='email'],
.enketo input[type='file'],
.enketo input[type='date'],
.enketo input[type='month'],
.enketo input[type='time'],
.enketo input[type='datetime'],
.enketo input[type='number'],
.enketo select,
.enketo textarea {
  flex: 1;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  height: 34px;
  flex-basis: 34px;
}
.enketo input[type='text']:focus,
.enketo input[type='tel']:focus,
.enketo input[type='password']:focus,
.enketo input[type='url']:focus,
.enketo input[type='email']:focus,
.enketo input[type='file']:focus,
.enketo input[type='date']:focus,
.enketo input[type='month']:focus,
.enketo input[type='time']:focus,
.enketo input[type='datetime']:focus,
.enketo input[type='number']:focus,
.enketo select:focus,
.enketo textarea:focus {
  outline: none;
  box-shadow: none;
}
.enketo input[type='text']::-moz-placeholder,
.enketo input[type='tel']::-moz-placeholder,
.enketo input[type='password']::-moz-placeholder,
.enketo input[type='url']::-moz-placeholder,
.enketo input[type='email']::-moz-placeholder,
.enketo input[type='file']::-moz-placeholder,
.enketo input[type='date']::-moz-placeholder,
.enketo input[type='month']::-moz-placeholder,
.enketo input[type='time']::-moz-placeholder,
.enketo input[type='datetime']::-moz-placeholder,
.enketo input[type='number']::-moz-placeholder,
.enketo select::-moz-placeholder,
.enketo textarea::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.enketo input[type='text']:-ms-input-placeholder,
.enketo input[type='tel']:-ms-input-placeholder,
.enketo input[type='password']:-ms-input-placeholder,
.enketo input[type='url']:-ms-input-placeholder,
.enketo input[type='email']:-ms-input-placeholder,
.enketo input[type='file']:-ms-input-placeholder,
.enketo input[type='date']:-ms-input-placeholder,
.enketo input[type='month']:-ms-input-placeholder,
.enketo input[type='time']:-ms-input-placeholder,
.enketo input[type='datetime']:-ms-input-placeholder,
.enketo input[type='number']:-ms-input-placeholder,
.enketo select:-ms-input-placeholder,
.enketo textarea:-ms-input-placeholder {
  color: #999999;
}
.enketo input[type='text']::-webkit-input-placeholder,
.enketo input[type='tel']::-webkit-input-placeholder,
.enketo input[type='password']::-webkit-input-placeholder,
.enketo input[type='url']::-webkit-input-placeholder,
.enketo input[type='email']::-webkit-input-placeholder,
.enketo input[type='file']::-webkit-input-placeholder,
.enketo input[type='date']::-webkit-input-placeholder,
.enketo input[type='month']::-webkit-input-placeholder,
.enketo input[type='time']::-webkit-input-placeholder,
.enketo input[type='datetime']::-webkit-input-placeholder,
.enketo input[type='number']::-webkit-input-placeholder,
.enketo select::-webkit-input-placeholder,
.enketo textarea::-webkit-input-placeholder {
  color: #999999;
}
.enketo input[type='text'][disabled],
.enketo input[type='text'][readonly],
.enketo fieldset[disabled] input[type='text'],
.enketo input[type='tel'][disabled],
.enketo input[type='tel'][readonly],
.enketo fieldset[disabled] input[type='tel'],
.enketo input[type='password'][disabled],
.enketo input[type='password'][readonly],
.enketo fieldset[disabled] input[type='password'],
.enketo input[type='url'][disabled],
.enketo input[type='url'][readonly],
.enketo fieldset[disabled] input[type='url'],
.enketo input[type='email'][disabled],
.enketo input[type='email'][readonly],
.enketo fieldset[disabled] input[type='email'],
.enketo input[type='file'][disabled],
.enketo input[type='file'][readonly],
.enketo fieldset[disabled] input[type='file'],
.enketo input[type='date'][disabled],
.enketo input[type='date'][readonly],
.enketo fieldset[disabled] input[type='date'],
.enketo input[type='month'][disabled],
.enketo input[type='month'][readonly],
.enketo fieldset[disabled] input[type='month'],
.enketo input[type='time'][disabled],
.enketo input[type='time'][readonly],
.enketo fieldset[disabled] input[type='time'],
.enketo input[type='datetime'][disabled],
.enketo input[type='datetime'][readonly],
.enketo fieldset[disabled] input[type='datetime'],
.enketo input[type='number'][disabled],
.enketo input[type='number'][readonly],
.enketo fieldset[disabled] input[type='number'],
.enketo select[disabled],
.enketo select[readonly],
.enketo fieldset[disabled] select,
.enketo textarea[disabled],
.enketo textarea[readonly],
.enketo fieldset[disabled] textarea {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
  padding-left: 5px;
  padding-right: 5px;
}
.enketo input:not([readonly]) + .widget input[type='text'][readonly],
.enketo input:not([readonly]) + .widget input[type='tel'][readonly],
.enketo input:not([readonly]) + .widget input[type='password'][readonly],
.enketo input:not([readonly]) + .widget input[type='url'][readonly],
.enketo input:not([readonly]) + .widget input[type='email'][readonly],
.enketo input:not([readonly]) + .widget input[type='file'][readonly],
.enketo input:not([readonly]) + .widget input[type='date'][readonly],
.enketo input:not([readonly]) + .widget input[type='month'][readonly],
.enketo input:not([readonly]) + .widget input[type='time'][readonly],
.enketo input:not([readonly]) + .widget input[type='datetime'][readonly],
.enketo input:not([readonly]) + .widget input[type='number'][readonly],
.enketo input:not([readonly]) + .widget select[readonly],
.enketo input:not([readonly]) + .widget textarea[readonly] {
  background-color: transparent;
  cursor: auto;
}
.enketo input:not([readonly]) + .widget input[type='text'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='tel'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='password'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='url'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='email'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='file'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='date'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='month'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='time'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='datetime'][readonly]:hover,
.enketo input:not([readonly]) + .widget input[type='number'][readonly]:hover,
.enketo input:not([readonly]) + .widget select[readonly]:hover,
.enketo input:not([readonly]) + .widget textarea[readonly]:hover {
  background-color: transparent;
}
.enketo fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.enketo input[type='search'] {
  box-sizing: border-box;
}
.enketo input[type='radio'],
.enketo input[type='checkbox'] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}
.enketo input[type='file'] {
  display: block;
}
.enketo input[type='range'] {
  display: block;
  width: 100%;
}
.enketo select[multiple],
.enketo select[size] {
  height: auto;
}
.enketo input[type='file']:focus,
.enketo input[type='radio']:focus,
.enketo input[type='checkbox']:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.enketo input[type='search'] {
  -webkit-appearance: none;
}
.enketo input[type='date'] {
  line-height: 34px;
}
.enketo input[type='radio'][disabled],
.enketo fieldset[disabled] input[type='radio'],
.enketo input[type='checkbox'][disabled],
.enketo fieldset[disabled] input[type='checkbox'] {
  cursor: not-allowed;
}
.enketo .option-wrapper {
  line-height: 20px;
}
.enketo .question input[type='radio'] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 0;
  border-width: 3px;
  border-style: solid;
  border-radius: 0;
  background-color: transparent;
  border-color: #666666;
  border-radius: 10px;
}
.enketo .question input[type='radio']:disabled,
.enketo .question input[type='radio'][readonly] {
  border-color: #737373;
}
.enketo .question input[type='radio']:focus {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question input[type='radio']:checked {
  border-color: black;
  background-image: radial-gradient(4px, black 0%, black 99%, transparent 100%);
}
.enketo .question input[type='radio']:checked:focus {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question input[type='checkbox'] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 0;
  border-width: 3px;
  border-style: solid;
  border-radius: 0;
  background-color: transparent;
  border-color: #666666;
}
.enketo .question input[type='checkbox']:disabled,
.enketo .question input[type='checkbox'][readonly] {
  border-color: #737373;
}
.enketo .question input[type='checkbox']:focus {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .question input[type='checkbox']:checked {
  border-color: black;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20stroke%3D%27black%27%20fill%3D%27black%27%20width%3D%2732%27%20height%3D%2732%27%20viewBox%3D%270%200%2032%2032%27%3E%3Cpath%20d%3D%27M25.1%2012.5l-3.4-3.3-8%208-2.9-3-3.4%203.4%206.3%206.3z%27%2F%3E%3C%2Fsvg%3E');
  background-size: 20px 20px;
  background-position: -3px;
}
.enketo .question input[type='checkbox']:checked:focus {
  outline: 0;
  box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
}
.enketo .touch .question.simple-select .option-wrapper .option-label {
  margin-left: 35px;
}
.enketo .or[dir='rtl'] .question input[type='checkbox'],
.enketo .or[dir='rtl'] .question input[type='radio'],
.enketo [dir='rtl'] .form-footer .question input[type='checkbox'],
.enketo [dir='rtl'] .form-footer .question input[type='radio'] {
  margin-right: 0;
  margin-left: 10px;
}
.enketo .or-appearance-likert .option-wrapper > label .option-label {
  margin-top: -11.5px;
}
.enketo body,
.enketo .main,
.enketo .paper,
.enketo .or,
.enketo .or-group,
.enketo .or-group-data,
.enketo .or-repeat,
.enketo .question {
  position: relative;
}
.enketo body {
  line-height: 1.5;
}
.enketo .paper {
  border-width: 1px;
  box-shadow: 0 0 5px #888;
}
.enketo .question input[type='radio'],
.enketo .question input[type='checkbox'] {
  border-width: 1px;
}
.enketo .question input[type='checkbox']:checked {
  border-color: black;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20stroke%3D%27transparent%27%20fill%3D%27black%27%20width%3D%2732%27%20height%3D%2732%27%20viewBox%3D%270%200%2032%2032%27%3E%3Cpath%20d%3D%27M25.1%2012.5l-3.4-3.3-8%208-2.9-3-3.4%203.4%206.3%206.3z%27%2F%3E%3C%2Fsvg%3E');
  background-size: 20px 20px;
  background-position: -3px;
  background-position: -1px;
}
.enketo .or-group {
  margin: 0;
  border-top: none;
}
.enketo .or-group .or-group {
  margin: 0;
}
.enketo h4 + .or-repeat {
  border-top: none;
}
.enketo .or-group > h4 {
  background: #ffffff;
  margin: 0 -1px 0 0;
  padding: 12px 6px 6px 6px;
}
.enketo .or,
.enketo .or-group,
.enketo .or-group-data,
.enketo .or-repeat {
  /*IE10*/
  display: flex;
  flex-wrap: wrap;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-align-content: flex-start;
  align-content: flex-start;
  box-sizing: border-box;
}
.enketo .pages.or [role='page'].current:not(.question) {
  /*IE10*/
  display: flex;
  flex-wrap: wrap;
  -moz-flex-direction: row;
  flex-direction: row;
  box-sizing: border-box;
}
.enketo .pages.or [role='page'].current:not(.question) .or-group:not(.disabled),
.enketo
  .pages.or
  [role='page'].current:not(.question)
  .or-group-data:not(.disabled),
.enketo
  .pages.or
  [role='page'].current:not(.question)
  .or-repeat:not(.disabled) {
  /*IE10*/
  display: flex;
  flex-wrap: wrap;
  -moz-flex-direction: row;
  flex-direction: row;
  box-sizing: border-box;
}
.enketo .or > .or-group,
.enketo .or > .or-group-data {
  border-right: 1px solid black;
}
.enketo .or > #form-title + .or-group-data,
.enketo .or > .disabled:first-of-type + .or-group-data,
.enketo .or > .disabled:first-of-type ~ .disabled + .or-group-data {
  border-top: 1px solid black;
}
.enketo .or [role='page'] {
  border-top: 1px solid black;
}
.enketo .or > .question {
  border: 1px solid black;
  margin-left: -1px;
  margin-top: -1px;
}
.enketo .or-repeat:not(:empty) {
  border-bottom: 2px solid black;
}
.enketo .question {
  flex: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  border-right: none;
  border-top: none;
  position: relative;
  margin: 0px;
  padding: 6px 6px 13px 6px;
}
.enketo .question {
  /*IE10*/
  display: flex;
  flex-wrap: nowrap;
  -moz-flex-direction: column;
  flex-direction: column;
}
.enketo .question:not(.readonly):not(.focus):hover {
  background: #fffded;
}
.enketo .question.readonly {
  background: #eeeeee;
}
.enketo .question.focus {
  background: #fffad4;
}
.enketo .question .required {
  position: absolute;
  top: -2px;
  left: auto;
  right: 0;
  margin: 0 3px;
}
.enketo .question.invalid-constraint,
.enketo .question.invalid-required {
  border-radius: 0;
  margin: 0px;
  padding: 6px 6px 13px 6px;
}
.enketo .question .question-label {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 12px;
  width: calc(100% - 30px);
  order: 1;
}
.enketo .question .or-hint.active {
  order: 2;
}
.enketo .question audio,
.enketo .question video,
.enketo .question img {
  order: 3;
}
.enketo .question input[type='text'],
.enketo .question input[type='tel'],
.enketo .question input[type='password'],
.enketo .question input[type='url'],
.enketo .question input[type='email'],
.enketo .question input[type='file'],
.enketo .question input[type='date'],
.enketo .question input[type='time'],
.enketo .question input[type='datetime'],
.enketo .question input[type='number'],
.enketo .question textarea {
  width: 100%;
}
.enketo .question textarea {
  min-height: 68px;
}
.enketo .question .file-feedback {
  order: 4;
}
.enketo .question input:not(.ignore),
.enketo .question textarea,
.enketo .question select,
.enketo .question .widget,
.enketo .question .option-wrapper {
  order: 4;
}
.enketo .question .or-constraint-msg,
.enketo .question .or-required-msg,
.enketo .question .or-relevant-msg {
  order: 5;
}
.enketo .question .btn-comment {
  margin: 0 12px;
  top: 3px;
  order: 1;
}
.enketo .no-text-transform .question .question-label {
  text-transform: none;
  font-size: 14px;
}
.enketo .or[dir='rtl'] .question .required {
  right: auto;
  left: 0;
}
.enketo .or[dir='rtl'] .question legend .required {
  left: -6px;
  right: auto;
}
.enketo .touch input[type='text'],
.enketo .touch input[type='tel'],
.enketo .touch input[type='password'],
.enketo .touch input[type='url'],
.enketo .touch input[type='email'],
.enketo .touch input[type='file'],
.enketo .touch input[type='date'],
.enketo .touch input[type='time'],
.enketo .touch input[type='datetime'],
.enketo .touch input[type='number'],
.enketo .touch textarea,
.enketo .touch select {
  border: none;
}
.enketo .or-hint.active {
  padding-top: 0;
  line-height: 12px;
}
.enketo .option-wrapper > label {
  margin-left: 0;
}
.enketo .or-repeat {
  margin: 0;
  padding: 0;
  background: #fef5ef;
}
.enketo .or-repeat .repeat-number {
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: 4px;
  z-index: 10;
  height: auto;
  float: none;
  color: #bbb;
  font-size: 18px;
  font-weight: bold;
}
.enketo .or-repeat .repeat-buttons {
  width: calc(100% + 1px);
  margin-top: 0;
  height: 0px;
}
.enketo .or-repeat .remove {
  padding: 0;
  border: none;
  margin-top: -20px;
  margin-right: -20px;
}
.enketo .or[dir='rtl'] .or-repeat .repeat-number {
  right: 100%;
  left: auto;
  padding-left: 0;
  padding-right: 4px;
}
.enketo .or[dir='rtl'] .or-repeat .remove {
  margin-left: -20px;
}
.enketo .or-repeat-info:not(:empty) {
  flex: 100%;
  width: 100%;
  margin-right: -1px;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
}
.enketo .or-group,
.enketo .or-group-data,
.enketo .or-repeat {
  flex: 100%;
}
.enketo .question legend {
  line-height: 1.1em;
  margin-bottom: 8px;
}
.enketo .question legend .question-label {
  display: block;
}
.enketo .question legend .required {
  right: -6px;
}
.enketo .question legend .btn-comment {
  top: 0;
}
.enketo .question legend .btn-comment .icon,
.enketo .question legend .btn-comment .android-chrome,
.enketo
  .question
  legend
  .btn-comment
  .record-list__records__record[data-draft='true']::before,
.enketo .question legend .btn-comment .enketo-geopoint-marker,
.enketo .question legend .btn-comment .glyphicon-chevron-up,
.enketo .question legend .btn-comment .glyphicon-chevron-down {
  position: static;
}
.enketo #form-title {
  display: none;
}
.enketo .or-group > h4,
.enketo .or-repeat > h4 {
  width: calc(100% + 1px);
  border-right: 1px solid black;
  border-right-color: transparent;
  /*border-bottom: 3px solid #ee7325;*/
  border-bottom: 3px solid #222;
  padding-bottom: 5px;
  margin-bottom: 0;
}
@media print, screen and (min-width: 600px) {
  .enketo .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(25% - 13px);
    -ms-flex-preferred-size: calc(25% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(25% - 13px);
  }
  .enketo .or-appearance-w1 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(50% - 13px);
    -ms-flex-preferred-size: calc(50% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(50% - 13px);
  }
  .enketo .or-appearance-w2 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(50% - 13px);
    -ms-flex-preferred-size: calc(50% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(50% - 13px);
  }
  .enketo .or-appearance-w2 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(75% - 13px);
    -ms-flex-preferred-size: calc(75% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(75% - 13px);
  }
  .enketo .or-appearance-w3 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(33.3333333333% - 13px);
    -ms-flex-preferred-size: calc(33.3333333333% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(33.3333333333% - 13px);
  }
  .enketo .or-appearance-w3 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(66.6666666667% - 13px);
    -ms-flex-preferred-size: calc(66.6666666667% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(66.6666666667% - 13px);
  }
  .enketo .or-appearance-w3 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w4 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(25% - 13px);
    -ms-flex-preferred-size: calc(25% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(25% - 13px);
  }
  .enketo .or-appearance-w4 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(50% - 13px);
    -ms-flex-preferred-size: calc(50% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(50% - 13px);
  }
  .enketo .or-appearance-w4 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(75% - 13px);
    -ms-flex-preferred-size: calc(75% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(75% - 13px);
  }
  .enketo .or-appearance-w4 .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w5 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w5 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(20% - 13px);
    -ms-flex-preferred-size: calc(20% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(20% - 13px);
  }
  .enketo .or-appearance-w5 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(40% - 13px);
    -ms-flex-preferred-size: calc(40% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(40% - 13px);
  }
  .enketo .or-appearance-w5 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(60% - 13px);
    -ms-flex-preferred-size: calc(60% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(60% - 13px);
  }
  .enketo .or-appearance-w5 .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(80% - 13px);
    -ms-flex-preferred-size: calc(80% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(80% - 13px);
  }
  .enketo .or-appearance-w5 .or-appearance-w5 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w6 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w6 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(16.6666666667% - 13px);
    -ms-flex-preferred-size: calc(16.6666666667% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(16.6666666667% - 13px);
  }
  .enketo .or-appearance-w6 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(33.3333333333% - 13px);
    -ms-flex-preferred-size: calc(33.3333333333% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(33.3333333333% - 13px);
  }
  .enketo .or-appearance-w6 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(50% - 13px);
    -ms-flex-preferred-size: calc(50% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(50% - 13px);
  }
  .enketo .or-appearance-w6 .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(66.6666666667% - 13px);
    -ms-flex-preferred-size: calc(66.6666666667% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(66.6666666667% - 13px);
  }
  .enketo .or-appearance-w6 .or-appearance-w5 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(83.3333333333% - 13px);
    -ms-flex-preferred-size: calc(83.3333333333% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(83.3333333333% - 13px);
  }
  .enketo .or-appearance-w6 .or-appearance-w6 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w7 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w7 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(14.2857142857% - 13px);
    -ms-flex-preferred-size: calc(14.2857142857% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(14.2857142857% - 13px);
  }
  .enketo .or-appearance-w7 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(28.5714285714% - 13px);
    -ms-flex-preferred-size: calc(28.5714285714% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(28.5714285714% - 13px);
  }
  .enketo .or-appearance-w7 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(42.8571428571% - 13px);
    -ms-flex-preferred-size: calc(42.8571428571% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(42.8571428571% - 13px);
  }
  .enketo .or-appearance-w7 .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(57.1428571429% - 13px);
    -ms-flex-preferred-size: calc(57.1428571429% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(57.1428571429% - 13px);
  }
  .enketo .or-appearance-w7 .or-appearance-w5 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(71.4285714286% - 13px);
    -ms-flex-preferred-size: calc(71.4285714286% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(71.4285714286% - 13px);
  }
  .enketo .or-appearance-w7 .or-appearance-w6 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(85.7142857143% - 13px);
    -ms-flex-preferred-size: calc(85.7142857143% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(85.7142857143% - 13px);
  }
  .enketo .or-appearance-w7 .or-appearance-w7 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w8 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(12.5% - 13px);
    -ms-flex-preferred-size: calc(12.5% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(12.5% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(25% - 13px);
    -ms-flex-preferred-size: calc(25% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(25% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(37.5% - 13px);
    -ms-flex-preferred-size: calc(37.5% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(37.5% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(50% - 13px);
    -ms-flex-preferred-size: calc(50% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(50% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w5 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(62.5% - 13px);
    -ms-flex-preferred-size: calc(62.5% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(62.5% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w6 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(75% - 13px);
    -ms-flex-preferred-size: calc(75% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(75% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w7 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(87.5% - 13px);
    -ms-flex-preferred-size: calc(87.5% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(87.5% - 13px);
  }
  .enketo .or-appearance-w8 .or-appearance-w8 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w9 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(11.1111111111% - 13px);
    -ms-flex-preferred-size: calc(11.1111111111% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(11.1111111111% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(22.2222222222% - 13px);
    -ms-flex-preferred-size: calc(22.2222222222% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(22.2222222222% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(33.3333333333% - 13px);
    -ms-flex-preferred-size: calc(33.3333333333% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(33.3333333333% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(44.4444444444% - 13px);
    -ms-flex-preferred-size: calc(44.4444444444% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(44.4444444444% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w5 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(55.5555555556% - 13px);
    -ms-flex-preferred-size: calc(55.5555555556% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(55.5555555556% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w6 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(66.6666666667% - 13px);
    -ms-flex-preferred-size: calc(66.6666666667% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(66.6666666667% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w7 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(77.7777777778% - 13px);
    -ms-flex-preferred-size: calc(77.7777777778% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(77.7777777778% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w8 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(88.8888888889% - 13px);
    -ms-flex-preferred-size: calc(88.8888888889% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(88.8888888889% - 13px);
  }
  .enketo .or-appearance-w9 .or-appearance-w9 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w10 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w1 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(10% - 13px);
    -ms-flex-preferred-size: calc(10% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(10% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w2 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(20% - 13px);
    -ms-flex-preferred-size: calc(20% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(20% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w3 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(30% - 13px);
    -ms-flex-preferred-size: calc(30% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(30% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w4 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(40% - 13px);
    -ms-flex-preferred-size: calc(40% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(40% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w5 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(50% - 13px);
    -ms-flex-preferred-size: calc(50% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(50% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w6 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(60% - 13px);
    -ms-flex-preferred-size: calc(60% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(60% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w7 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(70% - 13px);
    -ms-flex-preferred-size: calc(70% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(70% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w8 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(80% - 13px);
    -ms-flex-preferred-size: calc(80% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(80% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w9 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(90% - 13px);
    -ms-flex-preferred-size: calc(90% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(90% - 13px);
  }
  .enketo .or-appearance-w10 .or-appearance-w10 {
    flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-basis: calc(100% - 13px);
    -ms-flex-preferred-size: calc(100% - 13px);
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    flex-basis: calc(100% - 13px);
  }
}
@media print, screen and (min-width: 1100px) and (max-width: 1200px) {
  .enketo .paper .or .form-logo {
    margin-top: 0;
  }
}
.enketo .btn.remove,
.enketo .vex.vex-theme-plain .remove.vex-dialog-button {
  margin-right: -26px;
  margin-left: -26px;
}
.enketo .btn.remove .icon,
.enketo .vex.vex-theme-plain .remove.vex-dialog-button .icon,
.enketo .btn.remove .android-chrome,
.enketo .vex.vex-theme-plain .remove.vex-dialog-button .android-chrome,
.enketo .btn.remove .record-list__records__record[data-draft='true']::before,
.enketo
  .vex.vex-theme-plain
  .remove.vex-dialog-button
  .record-list__records__record[data-draft='true']::before,
.enketo .btn.remove .enketo-geopoint-marker,
.enketo .vex.vex-theme-plain .remove.vex-dialog-button .enketo-geopoint-marker,
.enketo .btn.remove .glyphicon-chevron-up,
.enketo .vex.vex-theme-plain .remove.vex-dialog-button .glyphicon-chevron-up,
.enketo .btn.remove .glyphicon-chevron-down,
.enketo .vex.vex-theme-plain .remove.vex-dialog-button .glyphicon-chevron-down {
  margin: 0 4px;
}
.enketo .form-header {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  text-align: left;
  align-items: center;
}
.enketo .form-header__branding {
  order: 1;
  padding-right: 10px;
}
.enketo .form-header__branding .logo-wrapper {
  display: flex;
  align-items: flex-end;
}
.enketo .form-header__branding img {
  max-height: 30px;
  max-width: 130px;
}
.enketo .form-header__branding span {
  display: inline-block;
  color: #444444;
  font-weight: bold;
  font-size: 1.4em;
}
.enketo .form-header__branding span:hover {
  text-decoration: none;
  opacity: 0.8;
}
.enketo .form-header a.form-header__branding:hover {
  opacity: 0.8;
}
.enketo .form-header__filler {
  order: 20;
  flex: 1;
  min-width: 1px;
  min-height: 1px;
}
.enketo .form-header .form-language-selector {
  order: 30;
}
.enketo .form-header__button--print {
  background-image: url('data:image/svg+xml,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20stroke%3D%27%2523{%24color}%27%20fill%3D%27%2523{%24color}%27%20width%3D%2734%27%20height%3D%2732%27%20viewBox%3D%270%200%2034%2032%27%3E%3Cpath%20d%3D%27M31.109%209.316h-27.423c-1.904%200-3.686%201.904-3.686%203.767v10.41h4.861v8.506h24.709v-8.506h4.861v-10.41c0-1.863-1.458-3.767-3.322-3.767zM27.139%2029.165h-19.848v-8.911h19.848v8.911zM31.19%2015.797h-2.835v-2.835h2.835v2.835z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M6.076%200h22.278v5.671h-22.278v-5.671z%27%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
  background-size: 100%;
  order: 40;
  width: 32px;
  height: 30px;
  margin: 0;
  margin-left: 20px;
  margin-right: 0;
  outline: 0;
}
.enketo .form-header__button--homescreen {
  position: fixed;
  top: 1px;
  right: 0;
  order: 61;
}
.enketo .form-header__button--homescreen .icon,
.enketo .form-header__button--homescreen .android-chrome,
.enketo
  .form-header__button--homescreen
  .record-list__records__record[data-draft='true']::before,
.enketo .form-header__button--homescreen .enketo-geopoint-marker,
.enketo .form-header__button--homescreen .glyphicon-chevron-up,
.enketo .form-header__button--homescreen .glyphicon-chevron-down {
  font-size: 25px;
}
.enketo .form-header .pages-toc {
  order: 70;
}
.enketo .form-header .pages-toc label[for='toc-toggle'] {
  background: repeating-linear-gradient(
    black 2px,
    black 5px,
    transparent 5px,
    transparent 12px
  );
}
.enketo .form-progress {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  max-width: 100% !important;
  width: 34px;
  min-width: 34px !important;
  margin: 0;
  height: 3px;
  background-color: #d15200;
  z-index: 1000;
  transition: all 1s ease-out;
}
.enketo [dir='rtl'] .form-header {
  flex-direction: row-reverse;
}
.enketo [dir='rtl'] .offline-enabled {
  top: 0px;
}
.enketo [dir='rtl'] .form-progress {
  right: 0;
  left: auto;
}
.enketo .offline-enabled {
  display: block;
  position: fixed;
  top: 3px;
  left: 0;
}
.enketo .offline-enabled .offline-enabled__icon {
  width: 34px;
  height: 34px;
  background-color: #d15200;
  background-image: url('/images/offline-enabled.png');
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 3s ease-out;
}
.enketo .offline-enabled .offline-enabled__icon.not-enabled {
  height: 0;
  opacity: 0;
  width: 0;
  background: none;
}
.enketo .offline-enabled .offline-enabled__icon:hover {
  opacity: 0.8;
}
.enketo .offline-enabled .offline-enabled__queue-length {
  cursor: pointer;
  margin-top: 1px;
  width: 34px;
  min-height: 34px;
  color: #d15200;
  background-color: #ffffff;
  text-align: center;
  padding: 9.5px 0 9.5px 0;
  line-height: 15px;
  font-size: 15px;
  opacity: 1;
  transition: opacity 3s ease-out;
}
.enketo .offline-enabled .offline-enabled__queue-length.hide {
  opacity: 0;
  display: none;
}
.enketo .offline-enabled .offline-enabled__queue-length.submitting {
  color: #ee7325;
}
.enketo .offline-enabled .offline-enabled__queue-length:hover {
  color: green;
}
.enketo #form-languages {
  max-width: 12em;
  font-size: 14px;
  margin: 1em 0 1em 0;
  text-align: right;
  text-transform: capitalize;
}
.enketo .form-language-selector {
  margin: 0;
}
.enketo .form-language-selector #form-languages {
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .enketo .offline-enabled {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }
  .enketo .offline-enabled__icon {
    float: left;
    display: block;
  }
  .enketo .offline-enabled__queue-length {
    margin-top: 0;
    float: left;
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .enketo .form-header {
    flex-wrap: wrap;
    padding: 0 16px 0 16px;
    border-bottom: none;
  }
  .enketo .form-header__branding {
    margin-top: 16px;
  }
  .enketo .form-header .form-language-selector {
    flex: 100%;
    order: 100;
    padding-bottom: 0;
    margin: 0 auto;
    min-width: 280px;
  }
  .enketo .form-header__button--print {
    display: none;
  }
  .enketo .form-header__button--homescreen {
    top: -2px;
    position: static;
    align-self: flex-start;
    margin-top: -1px;
    margin-right: 0;
  }
  .enketo #form-languages {
    margin: 0;
    width: 100%;
  }
  .enketo .or .form-logo img {
    margin-top: 25px;
  }
  .enketo .offline-enabled {
    align-self: flex-start;
    margin-left: -16px;
  }
  .enketo .offline-enabled .queue-length {
    background-color: whitesmoke;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .enketo .question input[type='radio'],
  .enketo .question input[type='checkbox'] {
    opacity: 0;
  }
  .enketo .question input[type='radio'] + .option-label::before,
  .enketo .question input[type='checkbox'] + .option-label::before {
    display: inline-block;
    content: '';
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-left: -30px;
    margin-right: 10px;
    margin-bottom: 0;
    margin-top: 0;
    border-width: 3px;
    border-style: solid;
    background-color: transparent;
  }
  .enketo .question input[type='checkbox'] + .option-label::before {
    border-radius: 0;
    border-color: #666666;
  }
  .enketo .question input[type='checkbox']:checked + .option-label::before {
    border-color: black;
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20stroke%3D%27black%27%20fill%3D%27black%27%20width%3D%2732%27%20height%3D%2732%27%20viewBox%3D%270%200%2032%2032%27%3E%3Cpath%20d%3D%27M25.1%2012.5l-3.4-3.3-8%208-2.9-3-3.4%203.4%206.3%206.3z%27%2F%3E%3C%2Fsvg%3E');
    background-size: 20px 20px;
    background-position: -3px;
  }
  .enketo .question input[type='radio'] + .option-label::before {
    border-radius: 10px;
    border-color: #666666;
  }
  .enketo .question input[type='radio']:checked + .option-label::before {
    border-color: black;
    background-image: radial-gradient(
      4px,
      black 0%,
      black 99%,
      transparent 100%
    );
  }
  .enketo .question input[type='checkbox']:focus + .option-label::before,
  .enketo .question input[type='radio']:focus + .option-label::before {
    outline: 0;
    box-shadow: 0 0 0 1px #66afe9, 0 0 8px rgba(102, 175, 233, 0.6);
  }
  .enketo .question input[type='checkbox']:disabled + .option-label::before,
  .enketo .question input[type='checkbox'][readonly] + .option-label::before,
  .enketo .question input[type='radio']:disabled + .option-label::before,
  .enketo .question input[type='radio'][readonly] + .option-label::before {
    border-color: #737373;
  }
  .enketo .or-appearance-likert input[type='radio'] + .option-label::before,
  .enketo .or-appearance-likert input[type='checkbox'] + .option-label::before {
    display: block;
    position: relative;
    left: 50%;
    padding: 0;
    margin-left: -11px;
    background-color: white;
    z-index: 10;
    top: -27px;
    margin-bottom: -23px;
  }
  .enketo
    .question.or-appearance-label
    input[type='checkbox']
    + .option-label::before,
  .enketo
    .question.or-appearance-label
    input[type='radio']
    + .option-label::before {
    display: none;
  }
  .enketo
    .question.or-appearance-list-nolabel
    input[type='checkbox']
    + .option-label,
  .enketo
    .question.or-appearance-list-nolabel
    input[type='radio']
    + .option-label {
    display: block;
    position: relative;
    text-indent: -500%;
    color: transparent;
    white-space: nowrap;
    min-width: 25px;
    min-height: 25px;
    overflow: hidden;
  }
  .enketo
    .question.or-appearance-list-nolabel
    input[type='checkbox']
    + .option-label::before,
  .enketo
    .question.or-appearance-list-nolabel
    input[type='radio']
    + .option-label::before {
    position: absolute;
    left: 50%;
    margin-left: -11px;
  }
  .enketo .or[dir='rtl'] input[type='radio'] + .option-label::before,
  .enketo .or[dir='rtl'] input[type='checkbox'] + .option-label::before {
    margin-left: 10px;
    margin-right: -30px;
  }
  .enketo
    .or[dir='rtl']
    .or-appearance-likert
    input[type='radio']
    + .option-label::before,
  .enketo
    .or[dir='rtl']
    .or-appearance-likert
    input[type='checkbox']
    + .option-label::before,
  .enketo
    .or[dir='rtl']
    .question.or-appearance-list-nolabel
    input[type='radio']
    + .option-label::before,
  .enketo
    .or[dir='rtl']
    .question.or-appearance-list-nolabel
    input[type='checkbox']
    + .option-label::before {
    right: 50%;
    margin-right: -11px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .enketo input[type='radio'] + .option-label::before,
  .enketo input[type='checkbox'] + .option-label::before {
    border-width: 1px;
  }
  .enketo input[type='radio']:checked + .option-label::before,
  .enketo input[type='checkbox']:checked + .option-label::before {
    background-position: -1px;
  }
  .enketo input[type='radio']:checked + .option-label::before {
    background-position: 0;
  }
}
.enketo section .disabled {
  display: none !important;
}
.enketo .or-group h4 {
  border-right: 1px solid black !important;
  border-right-color: transparent !important;
}
.enketo .or-repeat {
  background: white !important;
}
.enketo h5 {
  font-weight: bold !important;
}
.enketo h4 {
  margin-top: 1em !important;
  color: #026cb6 !important;
}
.enketo label h4 {
  margin-top: 5px !important;
  color: #4a4a4a !important;
}
.enketo section .or-group-data {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}
.enketo section .or-group-data label select {
  width: 100%;
  font-size: 13px;
}
.enketo .question {
  border-right: 1px solid black !important;
}
.enketo .pages.or [role='page'].current:not(.question) {
  border: none !important;
}
.enketo .form-footer {
  position: relative;
}
.enketo .form-footer__content {
  /*IE10*/
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
}
.enketo .form-footer__content__main-controls {
  flex: 1;
  width: 100%;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.enketo .form-footer__content__main-controls .btn,
.enketo
  .form-footer__content__main-controls
  .vex.vex-theme-plain
  .vex-dialog-button,
.enketo
  .vex.vex-theme-plain
  .form-footer__content__main-controls
  .vex-dialog-button {
  display: inline-block;
  min-width: 180px;
  position: static;
  min-height: 32px;
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
}
.enketo .form-footer__content__main-controls .btn progress,
.enketo
  .form-footer__content__main-controls
  .vex.vex-theme-plain
  .vex-dialog-button
  progress,
.enketo
  .vex.vex-theme-plain
  .form-footer__content__main-controls
  .vex-dialog-button
  progress {
  margin: 0;
  padding: 0;
  width: 100%;
}
.enketo .form-footer__content__main-controls .draft {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: normal;
  width: 100%;
  font-style: italic;
  text-align: center;
  display: block;
  border: none;
  flex: none;
  padding: 0;
  margin: 0 auto 20px auto;
  max-width: 250px;
}
.enketo .form-footer__content__main-controls .draft label {
  margin-left: 0;
  width: 100%;
}
.enketo .form-footer__content__main-controls .previous-page,
.enketo .form-footer__content__main-controls .next-page {
  display: none;
}
.enketo .form-footer__content__jump-nav {
  /*IE10*/
  display: flex;
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: nowrap;
}
.enketo .form-footer__content__jump-nav .first-page,
.enketo .form-footer__content__jump-nav .last-page {
  flex: 1;
  opacity: 0.7;
  border-radius: 0 !important;
  display: none;
  padding: 9px;
  margin-bottom: 0;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.enketo .form-footer__content__jump-nav .first-page {
  padding-left: 32px;
}
.enketo .form-footer__content__jump-nav .first-page:not(:hover) {
  border-right: none;
}
.enketo .form-footer__content__jump-nav .first-page::before {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20version%3D%271.1%27%20stroke%3D%27%2523{%24color}%27%20fill%3D%27%2523{%24color}%27%20width%3D%2734%27%20height%3D%2732%27%20viewBox%3D%270%200%2034%2032%27%3E%3Cpath%20d%3D%27M34.07%2019.41v0.41c0%206.61-5.37%2011.97-11.97%2012.18l0.83-0.83c-1.03-1.44-0.62-1.65%200-4.13l-0.83-0.83c3.3%200%206.19-2.89%206.19-6.19v-0.62c0-3.51-2.68-6.19-6.4-6.19h-11.97l2.48%202.27c1.03%201.24%201.03%203.1%200%204.13-0.62%200.41-1.24%200.83-2.06%200.83s-1.44-0.21-2.06-0.83l-7.43-7.23c-1.03-1.24-1.03-3.1%200-4.13l7.43-7.43c1.24-1.24%203.1-1.24%204.13%200%201.03%201.03%201.03%203.1%200%204.13l-2.48%202.48h11.77c6.81%200%2012.39%205.37%2012.39%2011.97zM5.99%2026.01h16.93v5.78h-16.93v-5.78zM15.28%2032h-8.26c-1.65%200-2.89-1.44-2.89-3.1s1.45-2.89%202.89-2.89h3.3z%27%2F%3E%3C%2Fsvg%3E');
  background-size: 100%;
  width: 17px;
  height: 16px;
  margin-top: 2px;
  margin-left: -22px;
  content: ' ';
  float: left;
}
.enketo .form-footer__content__jump-nav .last-page {
  padding-right: 32px;
}
.enketo .form-footer__content__jump-nav .last-page::before {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20version%3D%271.1%27%20stroke%3D%27%2523{%24color}%27%20fill%3D%27%2523{%24color}%27%20width%3D%2747%27%20height%3D%2732%27%20viewBox%3D%270%200%2047%2032%27%3E%3Cpath%20d%3D%27M21.56%2029.5c-0.68-0.68-0.91-1.36-0.91-2.27s0.23-1.59%200.91-2.27l5.67-5.67h-24.06c-1.82%200-3.18-1.59-3.18-3.4s1.36-3.18%203.18-3.18h24.06l-5.67-5.67c-0.68-0.68-0.91-1.36-0.91-2.27s0.23-1.59%200.91-2.27c1.36-1.13%203.4-1.13%204.54%200l11.12%2011.12c0.23%200.23%200.23%200.23%200.45%200.45%200.68%200.91%200.68%202.04%200.23%202.95-0.23%200.45-0.45%200.68-0.68%201.14l-11.12%2011.35c-1.36%201.14-3.4%201.14-4.54%200z%27%2F%3E%3Cpath%20d%3D%27M43.35%2032c-1.82%200-3.18-1.36-3.18-3.18v-25.64c0-1.82%201.36-3.18%203.18-3.18s3.18%201.36%203.18%203.18v25.42c0.23%201.82-1.36%203.4-3.18%203.4z%27%2F%3E%3C%2Fsvg%3E');
  background-size: 100%;
  width: 24px;
  height: 16px;
  margin-top: 2px;
  margin-right: -22px;
  content: ' ';
  float: right;
}
.enketo .form-footer .logout {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  text-align: center;
}
.enketo .form-footer .enketo-power {
  position: static;
  margin: 0 auto 20px auto;
  left: auto;
  width: 100%;
  line-height: 25px;
}
.enketo .form-footer .enketo-power img {
  width: 51px;
}
.enketo .pages ~ .form-footer .form-footer__content__main-controls {
  margin-bottom: 0;
  margin-top: 0;
}
.enketo .pages ~ .form-footer.end .logout {
  margin-bottom: 50px;
}
@media screen and (min-width: 1100px) {
  .enketo .form-footer .enketo-power {
    position: absolute;
    bottom: -85px;
    right: 5px;
    width: auto;
  }
  .enketo .pages ~ .form-footer .enketo-power {
    bottom: -95px;
  }
}
.enketo .touch .form-footer .draft .option-wrapper > label {
  border: none !important;
  width: 100% !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .enketo .form-footer__content__main-controls,
  .enketo .main,
  .enketo .main .paper,
  .enketo .paper > form {
    -ms-flex-basis: auto;
    flex-basis: auto;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
  }
  .enketo .form__loader {
    min-height: 200px;
  }
  .enketo
    .question:not(.or-appearance-list-nolabel)
    .option-wrapper
    > label
    img {
    display: inline !important;
    pointer-events: none;
  }
}
@media screen and (max-width: 720px) {
  .enketo body.edit .form-header {
    border-bottom: none;
  }
}
@keyframes vex-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vex-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@media screen and (max-width: 1100px) {
  .enketo body {
    padding: 0 !important;
    margin: 0;
  }
  .enketo .main {
    margin: 0;
    padding: 0;
  }
  .enketo .preview-header {
    top: -5px;
  }
  .enketo .paper {
    border-radius: 0;
    padding-top: 0;
  }
  .enketo .form-header {
    position: relative;
    top: 0;
    padding: 0 14px;
    border-bottom: 1px solid #bbbbbb;
    min-height: 0;
    margin-left: -45px;
    margin-right: -45px;
    width: calc(100% + (2 * 45px));
  }
  .enketo .form-header .form-language-selector {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 600px) {
  .enketo body {
    line-height: 1.3125;
  }
  .enketo .or-group:not(.or-appearance-no-collapse) > h4 {
    margin-left: 8px;
  }
  .enketo .touch .question.simple-select .option-wrapper > label {
    padding: 10px 5px;
  }
  .enketo .main .paper {
    padding: 0 30px 30px 30px;
  }
  .enketo .form-header {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + (2 * 30px));
  }
  .enketo .form-footer {
    margin: 30px 0;
  }
}
@media screen and (max-width: 400px) {
  .enketo body {
    line-height: 1.3625;
  }
  .enketo input[type='text'],
  .enketo input[type='password'],
  .enketo input[type='url'],
  .enketo input[type='email'],
  .enketo input[type='date'],
  .enketo input[type='number'],
  .enketo input[type='time'],
  .enketo input[type='datetime'],
  .enketo input[type='file'] {
    width: 100%;
  }
  .enketo select,
  .enketo textarea {
    width: 100%;
  }
  .enketo .or-group:not(.or-appearance-no-collapse) > h4 {
    margin-left: 15px;
  }
  .enketo .main .paper {
    padding: 0 20px 20px 20px;
  }
  .enketo .form-header {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + (2 * 20px));
  }
  .enketo .form-header .form-language-selector {
    border-right: none;
  }
  .enketo .form-footer {
    margin: 20px -20px -20px -20px;
  }
}
.enketo .fa,
.enketo .icon,
.enketo .android-chrome,
.enketo .record-list__records__record[data-draft='true']::before,
.enketo .enketo-geopoint-marker,
.enketo .glyphicon-chevron-up,
.enketo .glyphicon-chevron-down {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.enketo .fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.enketo .fa-2x {
  font-size: 2em;
}
.enketo .fa-3x {
  font-size: 3em;
}
.enketo .fa-4x {
  font-size: 4em;
}
.enketo .fa-5x {
  font-size: 5em;
}
.enketo .fa-fw {
  width: 1.2857142857em;
  text-align: center;
}
.enketo .fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.enketo .fa-ul > li {
  position: relative;
}
.enketo .fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.enketo .fa-li.fa-lg {
  left: -1.8571428571em;
}
.enketo .fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.enketo .fa-pull-left {
  float: left;
}
.enketo .fa-pull-right {
  float: right;
}
.enketo .fa.fa-pull-left,
.enketo .fa-pull-left.icon,
.enketo .fa-pull-left.android-chrome,
.enketo .fa-pull-left.record-list__records__record[data-draft='true']::before,
.enketo .fa-pull-left.enketo-geopoint-marker,
.enketo .fa-pull-left.glyphicon-chevron-up,
.enketo .fa-pull-left.glyphicon-chevron-down {
  margin-right: 0.3em;
}
.enketo .fa.fa-pull-right,
.enketo .fa-pull-right.icon,
.enketo .fa-pull-right.android-chrome,
.enketo .fa-pull-right.record-list__records__record[data-draft='true']::before,
.enketo .fa-pull-right.enketo-geopoint-marker,
.enketo .fa-pull-right.glyphicon-chevron-up,
.enketo .fa-pull-right.glyphicon-chevron-down {
  margin-left: 0.3em;
}
.enketo .pull-right {
  float: right;
}
.enketo .pull-left {
  float: left;
}
.enketo .fa.pull-left,
.enketo .pull-left.icon,
.enketo .pull-left.android-chrome,
.enketo .pull-left.record-list__records__record[data-draft='true']::before,
.enketo .pull-left.enketo-geopoint-marker,
.enketo .pull-left.glyphicon-chevron-up,
.enketo .pull-left.glyphicon-chevron-down {
  margin-right: 0.3em;
}
.enketo .fa.pull-right,
.enketo .pull-right.icon,
.enketo .pull-right.android-chrome,
.enketo .pull-right.record-list__records__record[data-draft='true']::before,
.enketo .pull-right.enketo-geopoint-marker,
.enketo .pull-right.glyphicon-chevron-up,
.enketo .pull-right.glyphicon-chevron-down {
  margin-left: 0.3em;
}
.enketo .fa-spin {
  animation: fa-spin 2s infinite linear;
}
.enketo .fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
.enketo .fa-rotate-90 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
  transform: rotate(90deg);
}
.enketo .fa-rotate-180 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
  transform: rotate(180deg);
}
.enketo .fa-rotate-270 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
  transform: rotate(270deg);
}
.enketo .fa-flip-horizontal {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
  transform: scale(-1, 1);
}
.enketo .fa-flip-vertical {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
  transform: scale(1, -1);
}
.enketo :root .fa-rotate-90,
.enketo :root .fa-rotate-180,
.enketo :root .fa-rotate-270,
.enketo :root .fa-flip-horizontal,
.enketo :root .fa-flip-vertical {
  filter: none;
}
.enketo .fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.enketo .fa-stack-1x,
.enketo .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.enketo .fa-stack-1x {
  line-height: inherit;
}
.enketo .fa-stack-2x {
  font-size: 2em;
}
.enketo .fa-inverse {
  color: #fff;
}
.enketo .fa-glass:before {
  content: '';
}
.enketo .fa-music:before {
  content: '';
}
.enketo .fa-search:before,
.enketo .icon-search:before {
  content: '';
}
.enketo .fa-envelope-o:before {
  content: '';
}
.enketo .fa-heart:before {
  content: '';
}
.enketo .fa-star:before {
  content: '';
}
.enketo .fa-star-o:before,
.enketo .icon-star-o:before {
  content: '';
}
.enketo .fa-user:before {
  content: '';
}
.enketo .fa-film:before {
  content: '';
}
.enketo .fa-th-large:before {
  content: '';
}
.enketo .fa-th:before {
  content: '';
}
.enketo .fa-th-list:before {
  content: '';
}
.enketo .fa-check:before,
.enketo .icon-check:before {
  content: '';
}
.enketo .fa-remove:before,
.enketo .fa-close:before,
.enketo .fa-times:before {
  content: '';
}
.enketo .fa-search-plus:before {
  content: '';
}
.enketo .fa-search-minus:before {
  content: '';
}
.enketo .fa-power-off:before {
  content: '';
}
.enketo .fa-signal:before {
  content: '';
}
.enketo .fa-gear:before,
.enketo .fa-cog:before {
  content: '';
}
.enketo .fa-trash-o:before {
  content: '';
}
.enketo .fa-home:before {
  content: '';
}
.enketo .fa-file-o:before {
  content: '';
}
.enketo .fa-clock-o:before {
  content: '';
}
.enketo .fa-road:before {
  content: '';
}
.enketo .fa-download:before,
.enketo .icon-download:before {
  content: '';
}
.enketo .fa-arrow-circle-o-down:before {
  content: '';
}
.enketo .fa-arrow-circle-o-up:before {
  content: '';
}
.enketo .fa-inbox:before {
  content: '';
}
.enketo .fa-play-circle-o:before {
  content: '';
}
.enketo .fa-rotate-right:before,
.enketo .fa-repeat:before {
  content: '';
}
.enketo .fa-refresh:before,
.enketo .icon-refresh:before {
  content: '';
}
.enketo .fa-list-alt:before {
  content: '';
}
.enketo .fa-lock:before {
  content: '';
}
.enketo .fa-flag:before {
  content: '';
}
.enketo .fa-headphones:before {
  content: '';
}
.enketo .fa-volume-off:before {
  content: '';
}
.enketo .fa-volume-down:before {
  content: '';
}
.enketo .fa-volume-up:before {
  content: '';
}
.enketo .fa-qrcode:before {
  content: '';
}
.enketo .fa-barcode:before {
  content: '';
}
.enketo .fa-tag:before {
  content: '';
}
.enketo .fa-tags:before {
  content: '';
}
.enketo .fa-book:before {
  content: '';
}
.enketo .fa-bookmark:before {
  content: '';
}
.enketo .fa-print:before {
  content: '';
}
.enketo .fa-camera:before {
  content: '';
}
.enketo .fa-font:before {
  content: '';
}
.enketo .fa-bold:before {
  content: '';
}
.enketo .fa-italic:before {
  content: '';
}
.enketo .fa-text-height:before {
  content: '';
}
.enketo .fa-text-width:before {
  content: '';
}
.enketo .fa-align-left:before {
  content: '';
}
.enketo .fa-align-center:before {
  content: '';
}
.enketo .fa-align-right:before {
  content: '';
}
.enketo .fa-align-justify:before {
  content: '';
}
.enketo .fa-list:before {
  content: '';
}
.enketo .fa-dedent:before,
.enketo .fa-outdent:before {
  content: '';
}
.enketo .fa-indent:before {
  content: '';
}
.enketo .fa-video-camera:before {
  content: '';
}
.enketo .fa-photo:before,
.enketo .fa-image:before,
.enketo .fa-picture-o:before {
  content: '';
}
.enketo .fa-pencil:before,
.enketo .icon-pencil:before,
.enketo .record-list__records__record[data-draft='true']:before {
  content: '';
}
.enketo .fa-map-marker:before,
.enketo .icon-marker:before,
.enketo .enketo-geopoint-marker:before {
  content: '';
}
.enketo .fa-adjust:before {
  content: '';
}
.enketo .fa-tint:before {
  content: '';
}
.enketo .fa-edit:before,
.enketo .fa-pencil-square-o:before {
  content: '';
}
.enketo .fa-share-square-o:before {
  content: '';
}
.enketo .fa-check-square-o:before {
  content: '';
}
.enketo .fa-arrows:before {
  content: '';
}
.enketo .fa-step-backward:before {
  content: '';
}
.enketo .fa-fast-backward:before {
  content: '';
}
.enketo .fa-backward:before {
  content: '';
}
.enketo .fa-play:before {
  content: '';
}
.enketo .fa-pause:before {
  content: '';
}
.enketo .fa-stop:before {
  content: '';
}
.enketo .fa-forward:before {
  content: '';
}
.enketo .fa-fast-forward:before {
  content: '';
}
.enketo .fa-step-forward:before {
  content: '';
}
.enketo .fa-eject:before {
  content: '';
}
.enketo .fa-chevron-left:before,
.enketo .icon-chevron-left:before {
  content: '';
}
.enketo .fa-chevron-right:before,
.enketo .icon-chevron-right:before {
  content: '';
}
.enketo .fa-plus-circle:before {
  content: '';
}
.enketo .fa-minus-circle:before {
  content: '';
}
.enketo .fa-times-circle:before {
  content: '';
}
.enketo .fa-check-circle:before {
  content: '';
}
.enketo .fa-question-circle:before {
  content: '';
}
.enketo .fa-info-circle:before,
.enketo .icon-info-circle:before {
  content: '';
}
.enketo .fa-crosshairs:before,
.enketo .icon-crosshairs:before {
  content: '';
}
.enketo .fa-times-circle-o:before {
  content: '';
}
.enketo .fa-check-circle-o:before {
  content: '';
}
.enketo .fa-ban:before {
  content: '';
}
.enketo .fa-arrow-left:before,
.enketo .icon-arrow-left:before {
  content: '';
}
.enketo .fa-arrow-right:before,
.enketo .icon-arrow-right:before,
.enketo .record-list__records__record.active[data-draft='true']:before {
  content: '';
}
.enketo .fa-arrow-up:before {
  content: '';
}
.enketo .fa-arrow-down:before {
  content: '';
}
.enketo .fa-mail-forward:before,
.enketo .fa-share:before {
  content: '';
}
.enketo .fa-expand:before {
  content: '';
}
.enketo .fa-compress:before {
  content: '';
}
.enketo .fa-plus:before,
.enketo .icon-plus:before {
  content: '';
}
.enketo .fa-minus:before,
.enketo .icon-minus:before {
  content: '';
}
.enketo .fa-asterisk:before {
  content: '';
}
.enketo .fa-exclamation-circle:before {
  content: '';
}
.enketo .fa-gift:before {
  content: '';
}
.enketo .fa-leaf:before {
  content: '';
}
.enketo .fa-fire:before {
  content: '';
}
.enketo .fa-eye:before {
  content: '';
}
.enketo .fa-eye-slash:before {
  content: '';
}
.enketo .fa-warning:before,
.enketo .fa-exclamation-triangle:before {
  content: '';
}
.enketo .fa-plane:before {
  content: '';
}
.enketo .fa-calendar:before {
  content: '';
}
.enketo .fa-random:before {
  content: '';
}
.enketo .fa-comment:before {
  content: '';
}
.enketo .fa-magnet:before {
  content: '';
}
.enketo .fa-chevron-up:before,
.enketo .icon-chevron-up:before,
.enketo .glyphicon-chevron-up:before {
  content: '';
}
.enketo .fa-chevron-down:before,
.enketo .icon-chevron-down:before,
.enketo .glyphicon-chevron-down:before {
  content: '';
}
.enketo .fa-retweet:before {
  content: '';
}
.enketo .fa-shopping-cart:before {
  content: '';
}
.enketo .fa-folder:before {
  content: '';
}
.enketo .fa-folder-open:before {
  content: '';
}
.enketo .fa-arrows-v:before {
  content: '';
}
.enketo .fa-arrows-h:before {
  content: '';
}
.enketo .fa-bar-chart-o:before,
.enketo .fa-bar-chart:before {
  content: '';
}
.enketo .fa-twitter-square:before {
  content: '';
}
.enketo .fa-facebook-square:before {
  content: '';
}
.enketo .fa-camera-retro:before {
  content: '';
}
.enketo .fa-key:before {
  content: '';
}
.enketo .fa-gears:before,
.enketo .fa-cogs:before {
  content: '';
}
.enketo .fa-comments:before {
  content: '';
}
.enketo .fa-thumbs-o-up:before {
  content: '';
}
.enketo .fa-thumbs-o-down:before {
  content: '';
}
.enketo .fa-star-half:before {
  content: '';
}
.enketo .fa-heart-o:before {
  content: '';
}
.enketo .fa-sign-out:before {
  content: '';
}
.enketo .fa-linkedin-square:before {
  content: '';
}
.enketo .fa-thumb-tack:before {
  content: '';
}
.enketo .fa-external-link:before {
  content: '';
}
.enketo .fa-sign-in:before {
  content: '';
}
.enketo .fa-trophy:before {
  content: '';
}
.enketo .fa-github-square:before {
  content: '';
}
.enketo .fa-upload:before {
  content: '';
}
.enketo .fa-lemon-o:before {
  content: '';
}
.enketo .fa-phone:before {
  content: '';
}
.enketo .fa-square-o:before {
  content: '';
}
.enketo .fa-bookmark-o:before,
.enketo .icon-bookmark-o:before {
  content: '';
}
.enketo .fa-phone-square:before {
  content: '';
}
.enketo .fa-twitter:before {
  content: '';
}
.enketo .fa-facebook-f:before,
.enketo .fa-facebook:before {
  content: '';
}
.enketo .fa-github:before {
  content: '';
}
.enketo .fa-unlock:before {
  content: '';
}
.enketo .fa-credit-card:before {
  content: '';
}
.enketo .fa-feed:before,
.enketo .fa-rss:before {
  content: '';
}
.enketo .fa-hdd-o:before {
  content: '';
}
.enketo .fa-bullhorn:before {
  content: '';
}
.enketo .fa-bell:before {
  content: '';
}
.enketo .fa-certificate:before {
  content: '';
}
.enketo .fa-hand-o-right:before {
  content: '';
}
.enketo .fa-hand-o-left:before {
  content: '';
}
.enketo .fa-hand-o-up:before {
  content: '';
}
.enketo .fa-hand-o-down:before {
  content: '';
}
.enketo .fa-arrow-circle-left:before {
  content: '';
}
.enketo .fa-arrow-circle-right:before {
  content: '';
}
.enketo .fa-arrow-circle-up:before {
  content: '';
}
.enketo .fa-arrow-circle-down:before {
  content: '';
}
.enketo .fa-globe:before,
.enketo .icon-globe:before {
  content: '';
}
.enketo .fa-wrench:before {
  content: '';
}
.enketo .fa-tasks:before {
  content: '';
}
.enketo .fa-filter:before {
  content: '';
}
.enketo .fa-briefcase:before {
  content: '';
}
.enketo .fa-arrows-alt:before {
  content: '';
}
.enketo .fa-group:before,
.enketo .fa-users:before {
  content: '';
}
.enketo .fa-chain:before,
.enketo .fa-link:before {
  content: '';
}
.enketo .fa-cloud:before {
  content: '';
}
.enketo .fa-flask:before {
  content: '';
}
.enketo .fa-cut:before,
.enketo .fa-scissors:before {
  content: '';
}
.enketo .fa-copy:before,
.enketo .fa-files-o:before {
  content: '';
}
.enketo .fa-paperclip:before {
  content: '';
}
.enketo .fa-save:before,
.enketo .fa-floppy-o:before {
  content: '';
}
.enketo .fa-square:before {
  content: '';
}
.enketo .fa-navicon:before,
.enketo .fa-reorder:before,
.enketo .fa-bars:before {
  content: '';
}
.enketo .fa-list-ul:before {
  content: '';
}
.enketo .fa-list-ol:before {
  content: '';
}
.enketo .fa-strikethrough:before {
  content: '';
}
.enketo .fa-underline:before {
  content: '';
}
.enketo .fa-table:before {
  content: '';
}
.enketo .fa-magic:before {
  content: '';
}
.enketo .fa-truck:before {
  content: '';
}
.enketo .fa-pinterest:before {
  content: '';
}
.enketo .fa-pinterest-square:before {
  content: '';
}
.enketo .fa-google-plus-square:before {
  content: '';
}
.enketo .fa-google-plus:before {
  content: '';
}
.enketo .fa-money:before {
  content: '';
}
.enketo .fa-caret-down:before {
  content: '';
}
.enketo .fa-caret-up:before {
  content: '';
}
.enketo .fa-caret-left:before {
  content: '';
}
.enketo .fa-caret-right:before {
  content: '';
}
.enketo .fa-columns:before {
  content: '';
}
.enketo .fa-unsorted:before,
.enketo .fa-sort:before {
  content: '';
}
.enketo .fa-sort-down:before,
.enketo .fa-sort-desc:before {
  content: '';
}
.enketo .fa-sort-up:before,
.enketo .fa-sort-asc:before {
  content: '';
}
.enketo .fa-envelope:before {
  content: '';
}
.enketo .fa-linkedin:before {
  content: '';
}
.enketo .fa-rotate-left:before,
.enketo .fa-undo:before,
.enketo .icon-undo:before {
  content: '';
}
.enketo .fa-legal:before,
.enketo .fa-gavel:before {
  content: '';
}
.enketo .fa-dashboard:before,
.enketo .fa-tachometer:before {
  content: '';
}
.enketo .fa-comment-o:before {
  content: '';
}
.enketo .fa-comments-o:before {
  content: '';
}
.enketo .fa-flash:before,
.enketo .fa-bolt:before {
  content: '';
}
.enketo .fa-sitemap:before {
  content: '';
}
.enketo .fa-umbrella:before {
  content: '';
}
.enketo .fa-paste:before,
.enketo .fa-clipboard:before {
  content: '';
}
.enketo .fa-lightbulb-o:before {
  content: '';
}
.enketo .fa-exchange:before {
  content: '';
}
.enketo .fa-cloud-download:before {
  content: '';
}
.enketo .fa-cloud-upload:before {
  content: '';
}
.enketo .fa-user-md:before {
  content: '';
}
.enketo .fa-stethoscope:before {
  content: '';
}
.enketo .fa-suitcase:before {
  content: '';
}
.enketo .fa-bell-o:before {
  content: '';
}
.enketo .fa-coffee:before {
  content: '';
}
.enketo .fa-cutlery:before {
  content: '';
}
.enketo .fa-file-text-o:before {
  content: '';
}
.enketo .fa-building-o:before {
  content: '';
}
.enketo .fa-hospital-o:before {
  content: '';
}
.enketo .fa-ambulance:before {
  content: '';
}
.enketo .fa-medkit:before {
  content: '';
}
.enketo .fa-fighter-jet:before {
  content: '';
}
.enketo .fa-beer:before {
  content: '';
}
.enketo .fa-h-square:before {
  content: '';
}
.enketo .fa-plus-square:before {
  content: '';
}
.enketo .fa-angle-double-left:before {
  content: '';
}
.enketo .fa-angle-double-right:before {
  content: '';
}
.enketo .fa-angle-double-up:before {
  content: '';
}
.enketo .fa-angle-double-down:before {
  content: '';
}
.enketo .fa-angle-left:before {
  content: '';
}
.enketo .fa-angle-right:before {
  content: '';
}
.enketo .fa-angle-up:before {
  content: '';
}
.enketo .fa-angle-down:before {
  content: '';
}
.enketo .fa-desktop:before {
  content: '';
}
.enketo .fa-laptop:before {
  content: '';
}
.enketo .fa-tablet:before {
  content: '';
}
.enketo .fa-mobile-phone:before,
.enketo .fa-mobile:before {
  content: '';
}
.enketo .fa-circle-o:before {
  content: '';
}
.enketo .fa-quote-left:before {
  content: '';
}
.enketo .fa-quote-right:before {
  content: '';
}
.enketo .fa-spinner:before {
  content: '';
}
.enketo .fa-circle:before {
  content: '';
}
.enketo .fa-mail-reply:before,
.enketo .fa-reply:before {
  content: '';
}
.enketo .fa-github-alt:before {
  content: '';
}
.enketo .fa-folder-o:before {
  content: '';
}
.enketo .fa-folder-open-o:before {
  content: '';
}
.enketo .fa-smile-o:before {
  content: '';
}
.enketo .fa-frown-o:before {
  content: '';
}
.enketo .fa-meh-o:before {
  content: '';
}
.enketo .fa-gamepad:before {
  content: '';
}
.enketo .fa-keyboard-o:before {
  content: '';
}
.enketo .fa-flag-o:before {
  content: '';
}
.enketo .fa-flag-checkered:before {
  content: '';
}
.enketo .fa-terminal:before {
  content: '';
}
.enketo .fa-code:before {
  content: '';
}
.enketo .fa-mail-reply-all:before,
.enketo .fa-reply-all:before {
  content: '';
}
.enketo .fa-star-half-empty:before,
.enketo .fa-star-half-full:before,
.enketo .fa-star-half-o:before {
  content: '';
}
.enketo .fa-location-arrow:before {
  content: '';
}
.enketo .fa-crop:before {
  content: '';
}
.enketo .fa-code-fork:before {
  content: '';
}
.enketo .fa-unlink:before,
.enketo .fa-chain-broken:before {
  content: '';
}
.enketo .fa-question:before {
  content: '';
}
.enketo .fa-info:before {
  content: '';
}
.enketo .fa-exclamation:before {
  content: '';
}
.enketo .fa-superscript:before {
  content: '';
}
.enketo .fa-subscript:before {
  content: '';
}
.enketo .fa-eraser:before {
  content: '';
}
.enketo .fa-puzzle-piece:before {
  content: '';
}
.enketo .fa-microphone:before {
  content: '';
}
.enketo .fa-microphone-slash:before {
  content: '';
}
.enketo .fa-shield:before {
  content: '';
}
.enketo .fa-calendar-o:before {
  content: '';
}
.enketo .fa-fire-extinguisher:before {
  content: '';
}
.enketo .fa-rocket:before {
  content: '';
}
.enketo .fa-maxcdn:before {
  content: '';
}
.enketo .fa-chevron-circle-left:before {
  content: '';
}
.enketo .fa-chevron-circle-right:before {
  content: '';
}
.enketo .fa-chevron-circle-up:before {
  content: '';
}
.enketo .fa-chevron-circle-down:before {
  content: '';
}
.enketo .fa-html5:before {
  content: '';
}
.enketo .fa-css3:before {
  content: '';
}
.enketo .fa-anchor:before {
  content: '';
}
.enketo .fa-unlock-alt:before {
  content: '';
}
.enketo .fa-bullseye:before {
  content: '';
}
.enketo .fa-ellipsis-h:before {
  content: '';
}
.enketo .fa-ellipsis-v:before,
.enketo .icon-ellipsis-v:before,
.enketo .android-chrome:before {
  content: '';
}
.enketo .fa-rss-square:before {
  content: '';
}
.enketo .fa-play-circle:before {
  content: '';
}
.enketo .fa-ticket:before {
  content: '';
}
.enketo .fa-minus-square:before {
  content: '';
}
.enketo .fa-minus-square-o:before {
  content: '';
}
.enketo .fa-level-up:before {
  content: '';
}
.enketo .fa-level-down:before {
  content: '';
}
.enketo .fa-check-square:before {
  content: '';
}
.enketo .fa-pencil-square:before {
  content: '';
}
.enketo .fa-external-link-square:before {
  content: '';
}
.enketo .fa-share-square:before {
  content: '';
}
.enketo .fa-compass:before {
  content: '';
}
.enketo .fa-toggle-down:before,
.enketo .fa-caret-square-o-down:before {
  content: '';
}
.enketo .fa-toggle-up:before,
.enketo .fa-caret-square-o-up:before {
  content: '';
}
.enketo .fa-toggle-right:before,
.enketo .fa-caret-square-o-right:before {
  content: '';
}
.enketo .fa-euro:before,
.enketo .fa-eur:before {
  content: '';
}
.enketo .fa-gbp:before {
  content: '';
}
.enketo .fa-dollar:before,
.enketo .fa-usd:before {
  content: '';
}
.enketo .fa-rupee:before,
.enketo .fa-inr:before {
  content: '';
}
.enketo .fa-cny:before,
.enketo .fa-rmb:before,
.enketo .fa-yen:before,
.enketo .fa-jpy:before {
  content: '';
}
.enketo .fa-ruble:before,
.enketo .fa-rouble:before,
.enketo .fa-rub:before {
  content: '';
}
.enketo .fa-won:before,
.enketo .fa-krw:before {
  content: '';
}
.enketo .fa-bitcoin:before,
.enketo .fa-btc:before {
  content: '';
}
.enketo .fa-file:before {
  content: '';
}
.enketo .fa-file-text:before {
  content: '';
}
.enketo .fa-sort-alpha-asc:before {
  content: '';
}
.enketo .fa-sort-alpha-desc:before {
  content: '';
}
.enketo .fa-sort-amount-asc:before {
  content: '';
}
.enketo .fa-sort-amount-desc:before {
  content: '';
}
.enketo .fa-sort-numeric-asc:before {
  content: '';
}
.enketo .fa-sort-numeric-desc:before {
  content: '';
}
.enketo .fa-thumbs-up:before {
  content: '';
}
.enketo .fa-thumbs-down:before {
  content: '';
}
.enketo .fa-youtube-square:before {
  content: '';
}
.enketo .fa-youtube:before {
  content: '';
}
.enketo .fa-xing:before {
  content: '';
}
.enketo .fa-xing-square:before {
  content: '';
}
.enketo .fa-youtube-play:before {
  content: '';
}
.enketo .fa-dropbox:before {
  content: '';
}
.enketo .fa-stack-overflow:before {
  content: '';
}
.enketo .fa-instagram:before {
  content: '';
}
.enketo .fa-flickr:before {
  content: '';
}
.enketo .fa-adn:before {
  content: '';
}
.enketo .fa-bitbucket:before {
  content: '';
}
.enketo .fa-bitbucket-square:before {
  content: '';
}
.enketo .fa-tumblr:before {
  content: '';
}
.enketo .fa-tumblr-square:before {
  content: '';
}
.enketo .fa-long-arrow-down:before {
  content: '';
}
.enketo .fa-long-arrow-up:before {
  content: '';
}
.enketo .fa-long-arrow-left:before {
  content: '';
}
.enketo .fa-long-arrow-right:before {
  content: '';
}
.enketo .fa-apple:before {
  content: '';
}
.enketo .fa-windows:before {
  content: '';
}
.enketo .fa-android:before {
  content: '';
}
.enketo .fa-linux:before {
  content: '';
}
.enketo .fa-dribbble:before {
  content: '';
}
.enketo .fa-skype:before {
  content: '';
}
.enketo .fa-foursquare:before {
  content: '';
}
.enketo .fa-trello:before {
  content: '';
}
.enketo .fa-female:before {
  content: '';
}
.enketo .fa-male:before {
  content: '';
}
.enketo .fa-gittip:before,
.enketo .fa-gratipay:before {
  content: '';
}
.enketo .fa-sun-o:before {
  content: '';
}
.enketo .fa-moon-o:before {
  content: '';
}
.enketo .fa-archive:before {
  content: '';
}
.enketo .fa-bug:before {
  content: '';
}
.enketo .fa-vk:before {
  content: '';
}
.enketo .fa-weibo:before {
  content: '';
}
.enketo .fa-renren:before {
  content: '';
}
.enketo .fa-pagelines:before {
  content: '';
}
.enketo .fa-stack-exchange:before {
  content: '';
}
.enketo .fa-arrow-circle-o-right:before {
  content: '';
}
.enketo .fa-arrow-circle-o-left:before {
  content: '';
}
.enketo .fa-toggle-left:before,
.enketo .fa-caret-square-o-left:before {
  content: '';
}
.enketo .fa-dot-circle-o:before {
  content: '';
}
.enketo .fa-wheelchair:before {
  content: '';
}
.enketo .fa-vimeo-square:before {
  content: '';
}
.enketo .fa-turkish-lira:before,
.enketo .fa-try:before {
  content: '';
}
.enketo .fa-plus-square-o:before {
  content: '';
}
.enketo .fa-space-shuttle:before {
  content: '';
}
.enketo .fa-slack:before {
  content: '';
}
.enketo .fa-envelope-square:before {
  content: '';
}
.enketo .fa-wordpress:before {
  content: '';
}
.enketo .fa-openid:before {
  content: '';
}
.enketo .fa-institution:before,
.enketo .fa-bank:before,
.enketo .fa-university:before {
  content: '';
}
.enketo .fa-mortar-board:before,
.enketo .fa-graduation-cap:before {
  content: '';
}
.enketo .fa-yahoo:before {
  content: '';
}
.enketo .fa-google:before {
  content: '';
}
.enketo .fa-reddit:before {
  content: '';
}
.enketo .fa-reddit-square:before {
  content: '';
}
.enketo .fa-stumbleupon-circle:before {
  content: '';
}
.enketo .fa-stumbleupon:before {
  content: '';
}
.enketo .fa-delicious:before {
  content: '';
}
.enketo .fa-digg:before {
  content: '';
}
.enketo .fa-pied-piper-pp:before {
  content: '';
}
.enketo .fa-pied-piper-alt:before {
  content: '';
}
.enketo .fa-drupal:before {
  content: '';
}
.enketo .fa-joomla:before {
  content: '';
}
.enketo .fa-language:before {
  content: '';
}
.enketo .fa-fax:before {
  content: '';
}
.enketo .fa-building:before {
  content: '';
}
.enketo .fa-child:before {
  content: '';
}
.enketo .fa-paw:before {
  content: '';
}
.enketo .fa-spoon:before {
  content: '';
}
.enketo .fa-cube:before {
  content: '';
}
.enketo .fa-cubes:before {
  content: '';
}
.enketo .fa-behance:before {
  content: '';
}
.enketo .fa-behance-square:before {
  content: '';
}
.enketo .fa-steam:before {
  content: '';
}
.enketo .fa-steam-square:before {
  content: '';
}
.enketo .fa-recycle:before {
  content: '';
}
.enketo .fa-automobile:before,
.enketo .fa-car:before {
  content: '';
}
.enketo .fa-cab:before,
.enketo .fa-taxi:before {
  content: '';
}
.enketo .fa-tree:before {
  content: '';
}
.enketo .fa-spotify:before {
  content: '';
}
.enketo .fa-deviantart:before {
  content: '';
}
.enketo .fa-soundcloud:before {
  content: '';
}
.enketo .fa-database:before {
  content: '';
}
.enketo .fa-file-pdf-o:before {
  content: '';
}
.enketo .fa-file-word-o:before {
  content: '';
}
.enketo .fa-file-excel-o:before {
  content: '';
}
.enketo .fa-file-powerpoint-o:before {
  content: '';
}
.enketo .fa-file-photo-o:before,
.enketo .fa-file-picture-o:before,
.enketo .fa-file-image-o:before {
  content: '';
}
.enketo .fa-file-zip-o:before,
.enketo .fa-file-archive-o:before {
  content: '';
}
.enketo .fa-file-sound-o:before,
.enketo .fa-file-audio-o:before {
  content: '';
}
.enketo .fa-file-movie-o:before,
.enketo .fa-file-video-o:before {
  content: '';
}
.enketo .fa-file-code-o:before {
  content: '';
}
.enketo .fa-vine:before {
  content: '';
}
.enketo .fa-codepen:before {
  content: '';
}
.enketo .fa-jsfiddle:before {
  content: '';
}
.enketo .fa-life-bouy:before,
.enketo .fa-life-buoy:before,
.enketo .fa-life-saver:before,
.enketo .fa-support:before,
.enketo .fa-life-ring:before {
  content: '';
}
.enketo .fa-circle-o-notch:before {
  content: '';
}
.enketo .fa-ra:before,
.enketo .fa-resistance:before,
.enketo .fa-rebel:before {
  content: '';
}
.enketo .fa-ge:before,
.enketo .fa-empire:before {
  content: '';
}
.enketo .fa-git-square:before {
  content: '';
}
.enketo .fa-git:before {
  content: '';
}
.enketo .fa-y-combinator-square:before,
.enketo .fa-yc-square:before,
.enketo .fa-hacker-news:before {
  content: '';
}
.enketo .fa-tencent-weibo:before {
  content: '';
}
.enketo .fa-qq:before {
  content: '';
}
.enketo .fa-wechat:before,
.enketo .fa-weixin:before {
  content: '';
}
.enketo .fa-send:before,
.enketo .fa-paper-plane:before {
  content: '';
}
.enketo .fa-send-o:before,
.enketo .fa-paper-plane-o:before {
  content: '';
}
.enketo .fa-history:before {
  content: '';
}
.enketo .fa-circle-thin:before {
  content: '';
}
.enketo .fa-header:before {
  content: '';
}
.enketo .fa-paragraph:before {
  content: '';
}
.enketo .fa-sliders:before {
  content: '';
}
.enketo .fa-share-alt:before {
  content: '';
}
.enketo .fa-share-alt-square:before {
  content: '';
}
.enketo .fa-bomb:before {
  content: '';
}
.enketo .fa-soccer-ball-o:before,
.enketo .fa-futbol-o:before {
  content: '';
}
.enketo .fa-tty:before {
  content: '';
}
.enketo .fa-binoculars:before {
  content: '';
}
.enketo .fa-plug:before {
  content: '';
}
.enketo .fa-slideshare:before {
  content: '';
}
.enketo .fa-twitch:before {
  content: '';
}
.enketo .fa-yelp:before {
  content: '';
}
.enketo .fa-newspaper-o:before {
  content: '';
}
.enketo .fa-wifi:before {
  content: '';
}
.enketo .fa-calculator:before {
  content: '';
}
.enketo .fa-paypal:before {
  content: '';
}
.enketo .fa-google-wallet:before {
  content: '';
}
.enketo .fa-cc-visa:before {
  content: '';
}
.enketo .fa-cc-mastercard:before {
  content: '';
}
.enketo .fa-cc-discover:before {
  content: '';
}
.enketo .fa-cc-amex:before {
  content: '';
}
.enketo .fa-cc-paypal:before {
  content: '';
}
.enketo .fa-cc-stripe:before {
  content: '';
}
.enketo .fa-bell-slash:before {
  content: '';
}
.enketo .fa-bell-slash-o:before {
  content: '';
}
.enketo .fa-trash:before,
.enketo .icon-trash:before {
  content: '';
}
.enketo .fa-copyright:before {
  content: '';
}
.enketo .fa-at:before {
  content: '';
}
.enketo .fa-eyedropper:before {
  content: '';
}
.enketo .fa-paint-brush:before {
  content: '';
}
.enketo .fa-birthday-cake:before {
  content: '';
}
.enketo .fa-area-chart:before {
  content: '';
}
.enketo .fa-pie-chart:before {
  content: '';
}
.enketo .fa-line-chart:before {
  content: '';
}
.enketo .fa-lastfm:before {
  content: '';
}
.enketo .fa-lastfm-square:before {
  content: '';
}
.enketo .fa-toggle-off:before {
  content: '';
}
.enketo .fa-toggle-on:before {
  content: '';
}
.enketo .fa-bicycle:before {
  content: '';
}
.enketo .fa-bus:before {
  content: '';
}
.enketo .fa-ioxhost:before {
  content: '';
}
.enketo .fa-angellist:before {
  content: '';
}
.enketo .fa-cc:before {
  content: '';
}
.enketo .fa-shekel:before,
.enketo .fa-sheqel:before,
.enketo .fa-ils:before {
  content: '';
}
.enketo .fa-meanpath:before {
  content: '';
}
.enketo .fa-buysellads:before {
  content: '';
}
.enketo .fa-connectdevelop:before {
  content: '';
}
.enketo .fa-dashcube:before {
  content: '';
}
.enketo .fa-forumbee:before {
  content: '';
}
.enketo .fa-leanpub:before {
  content: '';
}
.enketo .fa-sellsy:before {
  content: '';
}
.enketo .fa-shirtsinbulk:before {
  content: '';
}
.enketo .fa-simplybuilt:before {
  content: '';
}
.enketo .fa-skyatlas:before {
  content: '';
}
.enketo .fa-cart-plus:before {
  content: '';
}
.enketo .fa-cart-arrow-down:before {
  content: '';
}
.enketo .fa-diamond:before {
  content: '';
}
.enketo .fa-ship:before {
  content: '';
}
.enketo .fa-user-secret:before {
  content: '';
}
.enketo .fa-motorcycle:before {
  content: '';
}
.enketo .fa-street-view:before {
  content: '';
}
.enketo .fa-heartbeat:before {
  content: '';
}
.enketo .fa-venus:before {
  content: '';
}
.enketo .fa-mars:before {
  content: '';
}
.enketo .fa-mercury:before {
  content: '';
}
.enketo .fa-intersex:before,
.enketo .fa-transgender:before {
  content: '';
}
.enketo .fa-transgender-alt:before {
  content: '';
}
.enketo .fa-venus-double:before {
  content: '';
}
.enketo .fa-mars-double:before {
  content: '';
}
.enketo .fa-venus-mars:before {
  content: '';
}
.enketo .fa-mars-stroke:before {
  content: '';
}
.enketo .fa-mars-stroke-v:before {
  content: '';
}
.enketo .fa-mars-stroke-h:before {
  content: '';
}
.enketo .fa-neuter:before {
  content: '';
}
.enketo .fa-genderless:before {
  content: '';
}
.enketo .fa-facebook-official:before {
  content: '';
}
.enketo .fa-pinterest-p:before {
  content: '';
}
.enketo .fa-whatsapp:before {
  content: '';
}
.enketo .fa-server:before {
  content: '';
}
.enketo .fa-user-plus:before {
  content: '';
}
.enketo .fa-user-times:before {
  content: '';
}
.enketo .fa-hotel:before,
.enketo .fa-bed:before {
  content: '';
}
.enketo .fa-viacoin:before {
  content: '';
}
.enketo .fa-train:before {
  content: '';
}
.enketo .fa-subway:before {
  content: '';
}
.enketo .fa-medium:before {
  content: '';
}
.enketo .fa-yc:before,
.enketo .fa-y-combinator:before {
  content: '';
}
.enketo .fa-optin-monster:before {
  content: '';
}
.enketo .fa-opencart:before {
  content: '';
}
.enketo .fa-expeditedssl:before {
  content: '';
}
.enketo .fa-battery-4:before,
.enketo .fa-battery-full:before {
  content: '';
}
.enketo .fa-battery-3:before,
.enketo .fa-battery-three-quarters:before {
  content: '';
}
.enketo .fa-battery-2:before,
.enketo .fa-battery-half:before {
  content: '';
}
.enketo .fa-battery-1:before,
.enketo .fa-battery-quarter:before {
  content: '';
}
.enketo .fa-battery-0:before,
.enketo .fa-battery-empty:before {
  content: '';
}
.enketo .fa-mouse-pointer:before {
  content: '';
}
.enketo .fa-i-cursor:before {
  content: '';
}
.enketo .fa-object-group:before {
  content: '';
}
.enketo .fa-object-ungroup:before {
  content: '';
}
.enketo .fa-sticky-note:before,
.enketo .icon-sticky-note:before,
.enketo .btn-comment .icon:before,
.enketo .btn-comment .android-chrome:before,
.enketo .btn-comment .enketo-geopoint-marker:before,
.enketo .btn-comment .glyphicon-chevron-up:before,
.enketo .btn-comment .glyphicon-chevron-down:before {
  content: '';
}
.enketo .fa-sticky-note-o:before,
.enketo .icon-sticky-note-o:before,
.enketo .btn-comment.empty .icon:before,
.enketo .btn-comment.empty .android-chrome:before,
.enketo .btn-comment.empty .enketo-geopoint-marker:before,
.enketo .btn-comment.empty .glyphicon-chevron-up:before,
.enketo .btn-comment.empty .glyphicon-chevron-down:before {
  content: '';
}
.enketo .fa-cc-jcb:before {
  content: '';
}
.enketo .fa-cc-diners-club:before {
  content: '';
}
.enketo .fa-clone:before {
  content: '';
}
.enketo .fa-balance-scale:before {
  content: '';
}
.enketo .fa-hourglass-o:before {
  content: '';
}
.enketo .fa-hourglass-1:before,
.enketo .fa-hourglass-start:before {
  content: '';
}
.enketo .fa-hourglass-2:before,
.enketo .fa-hourglass-half:before {
  content: '';
}
.enketo .fa-hourglass-3:before,
.enketo .fa-hourglass-end:before {
  content: '';
}
.enketo .fa-hourglass:before {
  content: '';
}
.enketo .fa-hand-grab-o:before,
.enketo .fa-hand-rock-o:before {
  content: '';
}
.enketo .fa-hand-stop-o:before,
.enketo .fa-hand-paper-o:before {
  content: '';
}
.enketo .fa-hand-scissors-o:before {
  content: '';
}
.enketo .fa-hand-lizard-o:before {
  content: '';
}
.enketo .fa-hand-spock-o:before {
  content: '';
}
.enketo .fa-hand-pointer-o:before {
  content: '';
}
.enketo .fa-hand-peace-o:before {
  content: '';
}
.enketo .fa-trademark:before {
  content: '';
}
.enketo .fa-registered:before {
  content: '';
}
.enketo .fa-creative-commons:before {
  content: '';
}
.enketo .fa-gg:before {
  content: '';
}
.enketo .fa-gg-circle:before {
  content: '';
}
.enketo .fa-tripadvisor:before {
  content: '';
}
.enketo .fa-odnoklassniki:before {
  content: '';
}
.enketo .fa-odnoklassniki-square:before {
  content: '';
}
.enketo .fa-get-pocket:before {
  content: '';
}
.enketo .fa-wikipedia-w:before {
  content: '';
}
.enketo .fa-safari:before {
  content: '';
}
.enketo .fa-chrome:before {
  content: '';
}
.enketo .fa-firefox:before {
  content: '';
}
.enketo .fa-opera:before {
  content: '';
}
.enketo .fa-internet-explorer:before {
  content: '';
}
.enketo .fa-tv:before,
.enketo .fa-television:before {
  content: '';
}
.enketo .fa-contao:before {
  content: '';
}
.enketo .fa-500px:before {
  content: '';
}
.enketo .fa-amazon:before {
  content: '';
}
.enketo .fa-calendar-plus-o:before {
  content: '';
}
.enketo .fa-calendar-minus-o:before {
  content: '';
}
.enketo .fa-calendar-times-o:before {
  content: '';
}
.enketo .fa-calendar-check-o:before {
  content: '';
}
.enketo .fa-industry:before {
  content: '';
}
.enketo .fa-map-pin:before {
  content: '';
}
.enketo .fa-map-signs:before {
  content: '';
}
.enketo .fa-map-o:before {
  content: '';
}
.enketo .fa-map:before {
  content: '';
}
.enketo .fa-commenting:before {
  content: '';
}
.enketo .fa-commenting-o:before {
  content: '';
}
.enketo .fa-houzz:before {
  content: '';
}
.enketo .fa-vimeo:before {
  content: '';
}
.enketo .fa-black-tie:before {
  content: '';
}
.enketo .fa-fonticons:before {
  content: '';
}
.enketo .fa-reddit-alien:before {
  content: '';
}
.enketo .fa-edge:before {
  content: '';
}
.enketo .fa-credit-card-alt:before {
  content: '';
}
.enketo .fa-codiepie:before {
  content: '';
}
.enketo .fa-modx:before {
  content: '';
}
.enketo .fa-fort-awesome:before {
  content: '';
}
.enketo .fa-usb:before {
  content: '';
}
.enketo .fa-product-hunt:before {
  content: '';
}
.enketo .fa-mixcloud:before {
  content: '';
}
.enketo .fa-scribd:before {
  content: '';
}
.enketo .fa-pause-circle:before {
  content: '';
}
.enketo .fa-pause-circle-o:before {
  content: '';
}
.enketo .fa-stop-circle:before {
  content: '';
}
.enketo .fa-stop-circle-o:before {
  content: '';
}
.enketo .fa-shopping-bag:before {
  content: '';
}
.enketo .fa-shopping-basket:before {
  content: '';
}
.enketo .fa-hashtag:before {
  content: '';
}
.enketo .fa-bluetooth:before {
  content: '';
}
.enketo .fa-bluetooth-b:before {
  content: '';
}
.enketo .fa-percent:before {
  content: '';
}
.enketo .fa-gitlab:before {
  content: '';
}
.enketo .fa-wpbeginner:before {
  content: '';
}
.enketo .fa-wpforms:before {
  content: '';
}
.enketo .fa-envira:before {
  content: '';
}
.enketo .fa-universal-access:before {
  content: '';
}
.enketo .fa-wheelchair-alt:before {
  content: '';
}
.enketo .fa-question-circle-o:before {
  content: '';
}
.enketo .fa-blind:before {
  content: '';
}
.enketo .fa-audio-description:before {
  content: '';
}
.enketo .fa-volume-control-phone:before {
  content: '';
}
.enketo .fa-braille:before {
  content: '';
}
.enketo .fa-assistive-listening-systems:before {
  content: '';
}
.enketo .fa-asl-interpreting:before,
.enketo .fa-american-sign-language-interpreting:before {
  content: '';
}
.enketo .fa-deafness:before,
.enketo .fa-hard-of-hearing:before,
.enketo .fa-deaf:before {
  content: '';
}
.enketo .fa-glide:before {
  content: '';
}
.enketo .fa-glide-g:before {
  content: '';
}
.enketo .fa-signing:before,
.enketo .fa-sign-language:before {
  content: '';
}
.enketo .fa-low-vision:before {
  content: '';
}
.enketo .fa-viadeo:before {
  content: '';
}
.enketo .fa-viadeo-square:before {
  content: '';
}
.enketo .fa-snapchat:before {
  content: '';
}
.enketo .fa-snapchat-ghost:before {
  content: '';
}
.enketo .fa-snapchat-square:before {
  content: '';
}
.enketo .fa-pied-piper:before {
  content: '';
}
.enketo .fa-first-order:before {
  content: '';
}
.enketo .fa-yoast:before {
  content: '';
}
.enketo .fa-themeisle:before {
  content: '';
}

