@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/* Bitters 0.10.0
 * http://bitters.bourbon.io
 * Copyright 2013–2014 thoughtbot, inc.
 * MIT License */
button, .template-buttons .button, #backend-header .navigation-buttons .log-out, #backend-header .navigation-buttons .survey, #backend-header .navigation-buttons .overview, #backend-header .navigation-buttons .participant-list,
input[type=submit] {
  -webkit-font-smoothing: antialiased;
  background-color: #244B90;
  border-radius: 3px;
  color: white;
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
  padding: 0.75em 1em;
  text-decoration: none;
}
button:hover, .template-buttons .button:hover, #backend-header .navigation-buttons .log-out:hover, #backend-header .navigation-buttons .survey:hover, #backend-header .navigation-buttons .overview:hover, #backend-header .navigation-buttons .participant-list:hover,
input[type=submit]:hover {
  background-color: #152b53;
  color: white;
}
button:disabled, .template-buttons .button:disabled, #backend-header .navigation-buttons .log-out:disabled, #backend-header .navigation-buttons .survey:disabled, #backend-header .navigation-buttons .overview:disabled, #backend-header .navigation-buttons .participant-list:disabled,
input[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: white;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  line-height: 1.25;
  margin: 0;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: 2.25em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1em;
}

p, .cluster-list .cluster-buttons {
  margin: 0 0 0.75em;
}

a {
  -webkit-transition: color 0.1s linear;
  -moz-transition: color 0.1s linear;
  transition: color 0.1s linear;
  color: #244B90;
  text-decoration: none;
}
a:hover {
  color: #152b53;
}
a:active, a:focus {
  color: #152b53;
  outline: none;
}

hr {
  border-bottom: 1px solid #E0E0E0;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

blockquote {
  border-left: 2px solid #E0E0E0;
  color: #595959;
  margin: 1.5em 0;
  padding-left: 0.75em;
}

cite {
  color: #737373;
  font-style: italic;
}
cite:before {
  content: "— ";
}

fieldset {
  background: #fafafa;
  border: 1px solid #E0E0E0;
  margin: 0 0 0.75em 0;
  padding: 1.5em;
}

input,
label,
select {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1em;
}

label {
  font-weight: bold;
  margin-bottom: 0.375em;
}
label.required:after {
  content: "*";
}
label abbr {
  display: none;
}

textarea,
input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=time], input[type=week],
select[multiple=multiple] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color;
  -moz-transition: border-color;
  transition: border-color;
  background-color: white;
  border-radius: 3px;
  border: 1px solid #E0E0E0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em 0.5em;
  width: 100%;
}
textarea:hover,
input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=search]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=url]:hover, input[type=color]:hover, input[type=date]:hover, input[type=datetime]:hover, input[type=datetime-local]:hover, input[type=month]:hover, input[type=time]:hover, input[type=week]:hover,
select[multiple=multiple]:hover {
  border-color: #c7c7c7;
}
textarea:focus,
input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus,
select[multiple=multiple]:focus {
  border-color: #244B90;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(31, 64, 124, 0.7);
  outline: none;
}

.select2-container {
  width: 100%;
}

textarea {
  resize: vertical;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
  margin-right: 0.375em;
}

input[type=file] {
  padding-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto;
}

table {
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #bababa;
  font-weight: bold;
  padding: 0.75em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #E0E0E0;
  padding: 0.75em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
dl {
  margin-bottom: 0.75em;
}
dl dt {
  font-weight: bold;
  margin-top: 0.75em;
}
dl dd {
  margin: 0;
}

button, .template-buttons .button, #backend-header .navigation-buttons .log-out, #backend-header .navigation-buttons .survey, #backend-header .navigation-buttons .overview, #backend-header .navigation-buttons .participant-list,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa, .delete-button, .expander-icon, .report-analysis .edit-icon, .report-analysis .cluster-icon .icon, .report-sections .drag-handle, .expandable .expander .icon, .question-list .drag-handle i, .object-list .drag-handle i, .cluster-list h2 .drag-handle, .action-expander, .action-print, .action-download, .action-duplicate, .action-update, .action-detail, .action-delete, .question-type-multi, .question-type-cc, .question-type-text, .question-type-likert, .question-type-yesno, .boolean-false, .boolean-true, #backend-object-list .sortable.descending .icon, .backend-object-list .sortable.descending .icon, #backend-object-list .sortable.ascending .icon, .backend-object-list .sortable.ascending .icon, #backend-navigation .icon {
  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;
  transform: translate(0, 0);
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw, .delete-button, .report-analysis .cluster-icon .icon, .question-type-multi, .question-type-cc, .question-type-text, .question-type-likert, .question-type-yesno, #backend-navigation .icon {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left, .pull-left.delete-button, .pull-left.expander-icon, .report-analysis .pull-left.edit-icon, .report-analysis .cluster-icon .pull-left.icon, .report-sections .pull-left.drag-handle, .expandable .expander .pull-left.icon, .question-list .drag-handle i.pull-left, .object-list .drag-handle i.pull-left, .cluster-list h2 .pull-left.drag-handle, .pull-left.action-expander, .pull-left.action-print, .pull-left.action-download, .pull-left.action-duplicate, .pull-left.action-update, .pull-left.action-detail, .pull-left.action-delete, .pull-left.question-type-multi, .pull-left.question-type-cc, .pull-left.question-type-text, .pull-left.question-type-likert, .pull-left.question-type-yesno, .pull-left.boolean-false, .pull-left.boolean-true, #backend-object-list .sortable.descending .pull-left.icon, .backend-object-list .sortable.descending .pull-left.icon, #backend-object-list .sortable.ascending .pull-left.icon, .backend-object-list .sortable.ascending .pull-left.icon, #backend-navigation .pull-left.icon {
  margin-right: 0.3em;
}
.fa.pull-right, .pull-right.delete-button, .pull-right.expander-icon, .report-analysis .pull-right.edit-icon, .report-analysis .cluster-icon .pull-right.icon, .report-sections .pull-right.drag-handle, .expandable .expander .pull-right.icon, .question-list .drag-handle i.pull-right, .object-list .drag-handle i.pull-right, .cluster-list h2 .pull-right.drag-handle, .pull-right.action-expander, .pull-right.action-print, .pull-right.action-download, .pull-right.action-duplicate, .pull-right.action-update, .pull-right.action-detail, .pull-right.action-delete, .pull-right.question-type-multi, .pull-right.question-type-cc, .pull-right.question-type-text, .pull-right.question-type-likert, .pull-right.question-type-yesno, .pull-right.boolean-false, .pull-right.boolean-true, #backend-object-list .sortable.descending .pull-right.icon, .backend-object-list .sortable.descending .pull-right.icon, #backend-object-list .sortable.ascending .pull-right.icon, .backend-object-list .sortable.ascending .pull-right.icon, #backend-navigation .pull-right.icon {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before, .action-detail:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before, #backend-navigation .nav-managers > a .icon:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before, .question-type-multi:before {
  content: "";
}

.fa-check:before, .boolean-true:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before,
.boolean-false:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before,
#backend-navigation .nav-settings > a .icon:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before, .action-download:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before, #backend-navigation .nav-reports > a .icon:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before, .action-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before, .question-type-text:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before, .report-analysis .edit-icon:before, .action-update:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before, .report-analysis .cluster-icon .icon:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before, .question-type-cc:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before, #backend-navigation .nav-surveys > a .icon:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before,
#backend-navigation .nav-committees > a .icon:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before, .action-duplicate:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.report-sections .drag-handle:before,
.question-list .drag-handle i:before,
.object-list .drag-handle i:before,
.cluster-list h2 .drag-handle:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before,
#backend-object-list .sortable.ascending .icon:before,
.backend-object-list .sortable.ascending .icon:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before,
#backend-object-list .sortable.descending .icon:before,
.backend-object-list .sortable.descending .icon:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before, #backend-navigation .nav-dashboard > a .icon:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before, #backend-navigation .nav-survey-templates > a .icon:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before, #backend-navigation .nav-companies > a .icon:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before, .expander-icon.collapsed:before, .expandable.collapsed .expander .icon:before, .action-expander.collapsed:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before, #backend-navigation .nav-questions > a .icon:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before, .expander-icon.expanded:before, .expandable.expanded .expander .icon:before, .action-expander.expanded:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before, .question-type-yesno:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-genderless:before,
.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before, .delete-button:before, .action-delete:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before, .question-type-likert:before {
  content: "";
}

.fa-line-chart:before, #backend-navigation .nav-standardvalues > a .icon:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.table-minimal, .question-list, .object-list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-minimal th, .question-list th, .object-list th {
  text-align: left;
}
.table-minimal td, .question-list td, .object-list td {
  line-height: 1.5;
}
.table-minimal tbody tr:hover > td, .question-list tbody tr:hover > td, .object-list tbody tr:hover > td, .table-minimal tbody tr:hover > th, .question-list tbody tr:hover > th, .object-list tbody tr:hover > th {
  background-color: #fafafa;
}
.table-minimal tbody tr:first-child td, .question-list tbody tr:first-child td, .object-list tbody tr:first-child td {
  border-top: 2px solid #E0E0E0;
}
.table-minimal thead th, .question-list thead th, .object-list thead th {
  background-color: white;
  border-bottom: 0px;
  padding: 0.75em 1em;
}
.table-minimal tbody, .question-list tbody, .object-list tbody {
  background-color: white;
}
.table-minimal tbody td, .question-list tbody td, .object-list tbody td {
  border-bottom: 0px;
  border-top: 1px solid #E0E0E0;
  padding: 0.75em 1em;
}
.table-minimal tbody td button, .question-list tbody td button, .object-list tbody td button, .table-minimal tbody td #backend-header .navigation-buttons .log-out, .question-list tbody td #backend-header .navigation-buttons .log-out, .object-list tbody td #backend-header .navigation-buttons .log-out, #backend-header .navigation-buttons .table-minimal tbody td .log-out, #backend-header .navigation-buttons .question-list tbody td .log-out, #backend-header .navigation-buttons .object-list tbody td .log-out, .table-minimal tbody td #backend-header .navigation-buttons .survey, .question-list tbody td #backend-header .navigation-buttons .survey, .object-list tbody td #backend-header .navigation-buttons .survey, #backend-header .navigation-buttons .table-minimal tbody td .survey, #backend-header .navigation-buttons .question-list tbody td .survey, #backend-header .navigation-buttons .object-list tbody td .survey, .table-minimal tbody td #backend-header .navigation-buttons .overview, .question-list tbody td #backend-header .navigation-buttons .overview, .object-list tbody td #backend-header .navigation-buttons .overview, #backend-header .navigation-buttons .table-minimal tbody td .overview, #backend-header .navigation-buttons .question-list tbody td .overview, #backend-header .navigation-buttons .object-list tbody td .overview, .table-minimal tbody td #backend-header .navigation-buttons .participant-list, .question-list tbody td #backend-header .navigation-buttons .participant-list, .object-list tbody td #backend-header .navigation-buttons .participant-list, #backend-header .navigation-buttons .table-minimal tbody td .participant-list, #backend-header .navigation-buttons .question-list tbody td .participant-list, #backend-header .navigation-buttons .object-list tbody td .participant-list, .table-minimal tbody td .button, .question-list tbody td .button, .object-list tbody td .button {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  display: inline-block;
  font-size: 0.7em;
  line-height: 1.5;
  margin-bottom: 0.3em;
  margin-right: 0.5em;
  outline: none;
  padding: 0.3em 1em;
  width: 100%;
}
.table-minimal tbody td button:hover:not(:disabled), .question-list tbody td button:hover:not(:disabled), .object-list tbody td button:hover:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .log-out:hover:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .log-out:hover:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .log-out:hover:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .log-out:hover:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .log-out:hover:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .log-out:hover:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .survey:hover:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .survey:hover:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .survey:hover:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .survey:hover:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .survey:hover:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .survey:hover:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .overview:hover:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .overview:hover:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .overview:hover:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .overview:hover:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .overview:hover:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .overview:hover:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .participant-list:hover:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .participant-list:hover:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .participant-list:hover:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .participant-list:hover:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .participant-list:hover:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .participant-list:hover:not(:disabled), .table-minimal tbody td .button:hover:not(:disabled), .question-list tbody td .button:hover:not(:disabled), .object-list tbody td .button:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
.table-minimal tbody td button:active:not(:disabled), .question-list tbody td button:active:not(:disabled), .object-list tbody td button:active:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .log-out:active:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .log-out:active:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .log-out:active:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .log-out:active:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .log-out:active:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .log-out:active:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .survey:active:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .survey:active:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .survey:active:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .survey:active:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .survey:active:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .survey:active:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .overview:active:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .overview:active:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .overview:active:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .overview:active:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .overview:active:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .overview:active:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .participant-list:active:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .participant-list:active:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .participant-list:active:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .participant-list:active:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .participant-list:active:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .participant-list:active:not(:disabled), .table-minimal tbody td button:focus:not(:disabled), .question-list tbody td button:focus:not(:disabled), .object-list tbody td button:focus:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .log-out:focus:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .log-out:focus:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .log-out:focus:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .log-out:focus:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .log-out:focus:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .log-out:focus:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .survey:focus:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .survey:focus:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .survey:focus:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .survey:focus:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .survey:focus:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .survey:focus:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .overview:focus:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .overview:focus:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .overview:focus:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .overview:focus:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .overview:focus:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .overview:focus:not(:disabled), .table-minimal tbody td #backend-header .navigation-buttons .participant-list:focus:not(:disabled), .question-list tbody td #backend-header .navigation-buttons .participant-list:focus:not(:disabled), .object-list tbody td #backend-header .navigation-buttons .participant-list:focus:not(:disabled), #backend-header .navigation-buttons .table-minimal tbody td .participant-list:focus:not(:disabled), #backend-header .navigation-buttons .question-list tbody td .participant-list:focus:not(:disabled), #backend-header .navigation-buttons .object-list tbody td .participant-list:focus:not(:disabled), .table-minimal tbody td .button:active:not(:disabled), .question-list tbody td .button:active:not(:disabled), .object-list tbody td .button:active:not(:disabled), .table-minimal tbody td .button:focus:not(:disabled), .question-list tbody td .button:focus:not(:disabled), .object-list tbody td .button:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
.table-minimal tbody td button:disabled, .question-list tbody td button:disabled, .object-list tbody td button:disabled, .table-minimal tbody td #backend-header .navigation-buttons .log-out:disabled, .question-list tbody td #backend-header .navigation-buttons .log-out:disabled, .object-list tbody td #backend-header .navigation-buttons .log-out:disabled, #backend-header .navigation-buttons .table-minimal tbody td .log-out:disabled, #backend-header .navigation-buttons .question-list tbody td .log-out:disabled, #backend-header .navigation-buttons .object-list tbody td .log-out:disabled, .table-minimal tbody td #backend-header .navigation-buttons .survey:disabled, .question-list tbody td #backend-header .navigation-buttons .survey:disabled, .object-list tbody td #backend-header .navigation-buttons .survey:disabled, #backend-header .navigation-buttons .table-minimal tbody td .survey:disabled, #backend-header .navigation-buttons .question-list tbody td .survey:disabled, #backend-header .navigation-buttons .object-list tbody td .survey:disabled, .table-minimal tbody td #backend-header .navigation-buttons .overview:disabled, .question-list tbody td #backend-header .navigation-buttons .overview:disabled, .object-list tbody td #backend-header .navigation-buttons .overview:disabled, #backend-header .navigation-buttons .table-minimal tbody td .overview:disabled, #backend-header .navigation-buttons .question-list tbody td .overview:disabled, #backend-header .navigation-buttons .object-list tbody td .overview:disabled, .table-minimal tbody td #backend-header .navigation-buttons .participant-list:disabled, .question-list tbody td #backend-header .navigation-buttons .participant-list:disabled, .object-list tbody td #backend-header .navigation-buttons .participant-list:disabled, #backend-header .navigation-buttons .table-minimal tbody td .participant-list:disabled, #backend-header .navigation-buttons .question-list tbody td .participant-list:disabled, #backend-header .navigation-buttons .object-list tbody td .participant-list:disabled, .table-minimal tbody td .button:disabled, .question-list tbody td .button:disabled, .object-list tbody td .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (min-width: 40em) {
  .table-minimal tbody td button, .question-list tbody td button, .object-list tbody td button, .table-minimal tbody td #backend-header .navigation-buttons .log-out, .question-list tbody td #backend-header .navigation-buttons .log-out, .object-list tbody td #backend-header .navigation-buttons .log-out, #backend-header .navigation-buttons .table-minimal tbody td .log-out, #backend-header .navigation-buttons .question-list tbody td .log-out, #backend-header .navigation-buttons .object-list tbody td .log-out, .table-minimal tbody td #backend-header .navigation-buttons .survey, .question-list tbody td #backend-header .navigation-buttons .survey, .object-list tbody td #backend-header .navigation-buttons .survey, #backend-header .navigation-buttons .table-minimal tbody td .survey, #backend-header .navigation-buttons .question-list tbody td .survey, #backend-header .navigation-buttons .object-list tbody td .survey, .table-minimal tbody td #backend-header .navigation-buttons .overview, .question-list tbody td #backend-header .navigation-buttons .overview, .object-list tbody td #backend-header .navigation-buttons .overview, #backend-header .navigation-buttons .table-minimal tbody td .overview, #backend-header .navigation-buttons .question-list tbody td .overview, #backend-header .navigation-buttons .object-list tbody td .overview, .table-minimal tbody td #backend-header .navigation-buttons .participant-list, .question-list tbody td #backend-header .navigation-buttons .participant-list, .object-list tbody td #backend-header .navigation-buttons .participant-list, #backend-header .navigation-buttons .table-minimal tbody td .participant-list, #backend-header .navigation-buttons .question-list tbody td .participant-list, #backend-header .navigation-buttons .object-list tbody td .participant-list, .table-minimal tbody td .button, .question-list tbody td .button, .object-list tbody td .button {
    margin-bottom: 0;
    width: auto;
  }
}

.flash-alert, .messages .warning {
  background-color: #FFF6BF;
  color: #8c7800;
  display: block;
  font-weight: 600;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-alert a, .messages .warning a {
  color: #594c00;
}
.flash-alert a:focus, .messages .warning a:focus, .flash-alert a:hover, .messages .warning a:hover {
  color: black;
}

.flash-error, .messages .error {
  background-color: #FBE3E4;
  color: #97161b;
  display: block;
  font-weight: 600;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-error a, .messages .error a {
  color: #6a0f13;
}
.flash-error a:focus, .messages .error a:focus, .flash-error a:hover, .messages .error a:hover {
  color: #110203;
}

.flash-notice {
  background-color: #9ab6e6;
  color: #10213e;
  display: block;
  font-weight: 600;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-notice a {
  color: #050b16;
}
.flash-notice a:focus, .flash-notice a:hover {
  color: black;
}

.flash-success, .messages .success {
  background-color: #E6EFC2;
  color: #56651a;
  display: block;
  font-weight: 600;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-success a, .messages .success a {
  color: #333c10;
}
.flash-success a:focus, .messages .success a:focus, .flash-success a:hover, .messages .success a:hover {
  color: black;
}

form.search-bar {
  position: relative;
}
form.search-bar input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color;
  -moz-transition: border-color;
  transition: border-color;
  background-color: white;
  border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #E0E0E0;
  display: block;
  font-size: 1em;
  font-style: italic;
  margin: 0;
  padding: 0.5em 0.5em;
  position: relative;
  width: 100%;
}
form.search-bar button[type=submit], form.search-bar .template-buttons [type=submit].button, .template-buttons form.search-bar [type=submit].button, form.search-bar #backend-header .navigation-buttons [type=submit].log-out, #backend-header .navigation-buttons form.search-bar [type=submit].log-out, form.search-bar #backend-header .navigation-buttons [type=submit].survey, #backend-header .navigation-buttons form.search-bar [type=submit].survey, form.search-bar #backend-header .navigation-buttons [type=submit].overview, #backend-header .navigation-buttons form.search-bar [type=submit].overview, form.search-bar #backend-header .navigation-buttons [type=submit].participant-list, #backend-header .navigation-buttons form.search-bar [type=submit].participant-list {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  position: absolute;
  top: 0em;
  right: 0em;
  bottom: 0em;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  outline: none;
  padding: 5px 10px;
}
form.search-bar button[type=submit]:hover:not(:disabled), form.search-bar .template-buttons [type=submit].button:hover:not(:disabled), .template-buttons form.search-bar [type=submit].button:hover:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].log-out:hover:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].log-out:hover:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].survey:hover:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].survey:hover:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].overview:hover:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].overview:hover:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].participant-list:hover:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].participant-list:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
form.search-bar button[type=submit]:active:not(:disabled), form.search-bar .template-buttons [type=submit].button:active:not(:disabled), .template-buttons form.search-bar [type=submit].button:active:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].log-out:active:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].log-out:active:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].survey:active:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].survey:active:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].overview:active:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].overview:active:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].participant-list:active:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].participant-list:active:not(:disabled), form.search-bar button[type=submit]:focus:not(:disabled), form.search-bar .template-buttons [type=submit].button:focus:not(:disabled), .template-buttons form.search-bar [type=submit].button:focus:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].log-out:focus:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].log-out:focus:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].survey:focus:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].survey:focus:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].overview:focus:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].overview:focus:not(:disabled), form.search-bar #backend-header .navigation-buttons [type=submit].participant-list:focus:not(:disabled), #backend-header .navigation-buttons form.search-bar [type=submit].participant-list:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
form.search-bar button[type=submit]:disabled, form.search-bar .template-buttons [type=submit].button:disabled, .template-buttons form.search-bar [type=submit].button:disabled, form.search-bar #backend-header .navigation-buttons [type=submit].log-out:disabled, #backend-header .navigation-buttons form.search-bar [type=submit].log-out:disabled, form.search-bar #backend-header .navigation-buttons [type=submit].survey:disabled, #backend-header .navigation-buttons form.search-bar [type=submit].survey:disabled, form.search-bar #backend-header .navigation-buttons [type=submit].overview:disabled, #backend-header .navigation-buttons form.search-bar [type=submit].overview:disabled, form.search-bar #backend-header .navigation-buttons [type=submit].participant-list:disabled, #backend-header .navigation-buttons form.search-bar [type=submit].participant-list:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
form.search-bar button[type=submit] img, form.search-bar .template-buttons [type=submit].button img, .template-buttons form.search-bar [type=submit].button img, form.search-bar #backend-header .navigation-buttons [type=submit].log-out img, #backend-header .navigation-buttons form.search-bar [type=submit].log-out img, form.search-bar #backend-header .navigation-buttons [type=submit].survey img, #backend-header .navigation-buttons form.search-bar [type=submit].survey img, form.search-bar #backend-header .navigation-buttons [type=submit].overview img, #backend-header .navigation-buttons form.search-bar [type=submit].overview img, form.search-bar #backend-header .navigation-buttons [type=submit].participant-list img, #backend-header .navigation-buttons form.search-bar [type=submit].participant-list img {
  height: 12px;
  opacity: 0.7;
}
form.search-bar .reset {
  position: absolute;
  right: 50px;
  top: 8px;
}

.pagination {
  text-align: center;
}
.pagination ul {
  margin: 0;
  padding: 0;
}
.pagination li {
  list-style: none;
}
.pagination a {
  text-decoration: none;
}
.pagination ul {
  display: inline;
  text-align: center;
}
.pagination ul li {
  display: inline;
}
.pagination ul ul li {
  display: none;
}
.pagination ul ul li:nth-child(1), .pagination ul ul li:nth-child(2), .pagination ul ul li:nth-child(3) {
  display: inline;
}
@media screen and (min-width: 53.75em) {
  .pagination ul ul li {
    display: inline;
  }
}
.pagination ul li a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: #fafafa;
  border-radius: 3px;
  border: 1px solid #E0E0E0;
  color: #333;
  outline: none;
  padding: 0.375em 0.809em;
}
.pagination ul li a:hover, .pagination ul li a:focus {
  background: white;
  color: #244B90;
}
.pagination ul li a:active {
  background: #fafafa;
}
.pagination ul li.current a {
  background-color: #333;
  border-color: #333;
  color: #fafafa;
}

.modal h1 {
  margin: 0;
}
.modal p, .modal .cluster-list .cluster-buttons, .cluster-list .modal .cluster-buttons {
  color: #333;
  line-height: 1.5;
}
.modal label {
  cursor: pointer;
  margin-bottom: 0;
}
.modal label img {
  border-radius: 150px;
  display: block;
  max-width: 300px;
}
.modal .modal-state {
  display: none;
}
.modal .modal-trigger {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  padding: 0.8em 1em;
}
.modal .modal-trigger:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
.modal .modal-trigger:active:not(:disabled), .modal .modal-trigger:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
.modal .modal-trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal .modal-window {
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  padding-top: 0.6em;
  text-align: left;
  visibility: hidden;
  z-index: 99999999999;
}
@media screen and (min-width: 53.75em) {
  .modal .modal-window {
    padding-top: 10em;
  }
}
.modal .modal-window .modal-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  cursor: pointer;
}
.modal .modal-close {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  height: 1.5em;
  width: 1.5em;
  background: white;
  cursor: pointer;
}
.modal .modal-close:after, .modal .modal-close:before {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 0;
  left: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 1.5em;
  width: 0.15em;
  background: #E0E0E0;
  content: "";
  display: block;
  margin: -3px 0 0 -1px;
}
.modal .modal-close:hover:after, .modal .modal-close:hover:before {
  background: #c7c7c7;
}
.modal .modal-close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal .modal-inner {
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  background: white;
  border-radius: 3px;
  margin-top: 0;
  margin: auto;
  max-height: 95%;
  overflow: auto;
  padding: 1.5em;
  position: relative;
  width: 95%;
}
@media screen and (min-width: 40em) {
  .modal .modal-inner {
    max-height: 70%;
    padding: 3em;
    width: 60%;
  }
}
@media screen and (min-width: 53.75em) {
  .modal .modal-inner {
    width: 50%;
  }
}
.modal .modal-inner h1 {
  color: #333;
  margin-bottom: 0.6em;
  text-align: left;
  text-transform: capitalize;
}
.modal .modal-inner .modal-intro {
  font-weight: 800;
}
.modal .modal-inner .modal-content {
  color: #333;
}
@media screen and (min-width: 40em) {
  .modal .modal-inner .modal-content {
    -webkit-columns: 2 8em;
    -moz-columns: 2 8em;
    columns: 2 8em;
  }
}
.modal .modal-inner a.cta {
  color: white;
  display: inline-block;
  margin-right: 0.5em;
  margin-top: 1em;
}
.modal .modal-inner a.cta:last-child {
  padding: 0 2em;
}
.modal .modal-state:checked + .modal-window {
  opacity: 1;
  visibility: visible;
}
.modal .modal-state:checked + .modal-window .modal-inner {
  top: 0.5em;
}

.modal-open {
  overflow: hidden;
}

.progress-bar-indication {
  background-color: #f2f2f2;
  border-radius: 3px;
  border: 1px solid #E0E0E0;
  box-shadow: inset 0 0 3px 0 rgba(115, 115, 115, 0.15);
  margin: 0 auto;
  width: 100%;
}
.progress-bar-indication p, .progress-bar-indication .cluster-list .cluster-buttons, .cluster-list .progress-bar-indication .cluster-buttons {
  line-height: 1.5;
}
.progress-bar-indication > span.meter {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #244B90;
  background-repeat: repeat-x;
  background-size: 40px 40px;
  border-bottom-right-radius: 0;
  border-radius: 2px;
  border-top-right-radius: 0;
  border: 1px solid #152b53;
  display: block;
  height: 100%;
  width: 60%;
}
.progress-bar-indication p, .progress-bar-indication .cluster-list .cluster-buttons, .cluster-list .progress-bar-indication .cluster-buttons {
  color: white;
  font-weight: 800;
  margin: 0;
  padding: 0.1em 0.5em;
  text-shadow: 0 0 1px black;
}

.dropdown {
  line-height: 1.5;
}
.dropdown .dropdown-container {
  display: inline-block;
  position: relative;
  text-align: center;
}
.dropdown .dropdown-description {
  background: white;
  border-bottom-left-radius: 3px;
  border-bottom: 1px solid silver;
  border-left: 1px solid silver;
  border-top-left-radius: 3px;
  border-top: 1px solid silver;
  color: #999999;
  float: left;
  font-size: 0.7em;
  line-height: 40px;
  margin: 0;
  padding: 0 0.5em 0 1em;
}
@media screen and (min-width: 53.75em) {
  .dropdown .dropdown-description {
    font-size: 1em;
  }
}
.dropdown .dropdown-button {
  background: white;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  border-top: 1px solid silver;
  border-right: 1px solid silver;
  border-bottom: 1px solid silver;
  cursor: pointer;
  float: right;
  font-size: 0.7em;
  font-weight: 800;
  line-height: 40px;
  margin: 0;
  padding: 0 2.5em 0 0.5em;
  position: relative;
}
@media screen and (min-width: 53.75em) {
  .dropdown .dropdown-button {
    font-size: 1em;
    padding: 0 2.5em 0 0.5em;
  }
}
.dropdown .dropdown-button:hover {
  background-color: #f7f7f7;
}
.dropdown .dropdown-button:after {
  color: #333;
  content: "▾";
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
}
.dropdown .dropdown-menu {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: white;
  border-radius: 3px;
  border: 1px solid silver;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  color: #333;
  cursor: pointer;
  display: none;
  margin: 0;
  overflow: show;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50px;
  width: 228px;
  z-index: 99999;
}
.dropdown .dropdown-menu:before {
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  left: 0;
  color: white;
  content: "▲";
  font-size: 1.4em;
  pointer-events: none;
  text-shadow: 0 -2px 2px rgba(0, 0, 0, 0.3);
  top: -0.7em;
}
.dropdown .dropdown-menu li {
  border-bottom: 1px solid silver;
  color: #333;
  list-style: none;
  padding: 0.5em;
}
.dropdown .dropdown-menu li:hover {
  background: #f7f7f7;
}
.dropdown .dropdown-menu li:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.dropdown .dropdown-menu li:last-child {
  border: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.dropdown .show-menu {
  display: block;
}

.tabs {
  line-height: 1.5;
  padding: 0;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 1em;
}
.tabs:after {
  content: "";
  display: table;
  clear: both;
}
.tabs li {
  background-color: white;
  border-top: 1px solid #E0E0E0;
  color: #333;
  display: block;
  padding: 0.75em 1.618em;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 40em) {
  .tabs li {
    border-top: 0;
    display: inline-block;
  }
}
.tabs li:hover {
  color: #477dca;
}
.tabs li:focus {
  outline: none;
}
.tabs li.selected {
  border-bottom: 0;
}
@media screen and (min-width: 40em) {
  .tabs li.selected {
    border: 1px solid #E0E0E0;
    border-bottom-color: white;
    margin-bottom: -1px;
  }
}

#backend-wrapper {
  padding: 1.618em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#backend-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

#backend-sidebar {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%;
}
#backend-sidebar:last-child {
  margin-right: 0;
}

#backend-navigation .icon {
  margin-right: 0.5em;
}
#backend-version {
  border: 1px solid #ccc;
  color: #999;
  padding: 1em;
  font-size: 90%;
}
#backend-version h6 {
  font-weight: bold;
  font-size: 100%;
  margin-bottom: 0.5em;
}
#backend-version p, #backend-version .cluster-list .cluster-buttons, .cluster-list #backend-version .cluster-buttons {
  font-family: monospace;
  margin: 0;
}

#backend-content {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 74.4105871005%;
}
#backend-content:last-child {
  margin-right: 0;
}
#backend-content h2, #backend-content h3 {
  margin: 0.5em 0;
}

body {
  margin: 0;
  padding: 0;
}

.title-buttons {
  float: right;
  padding: 0.5em 0;
}
.title-buttons li {
  display: inline;
}
.title-buttons a {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  display: inline-block;
}
.title-buttons a:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
.title-buttons a:active:not(:disabled), .title-buttons a:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
.title-buttons a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#backend-top-bar {
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: start;
  margin: 0 0 0.75em;
}
#backend-top-bar .search-bar {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 1em;
}
#backend-top-bar .buttons {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
#backend-top-bar .buttons a {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  display: inline-block;
}
#backend-top-bar .buttons a:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
#backend-top-bar .buttons a:active:not(:disabled), #backend-top-bar .buttons a:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
#backend-top-bar .buttons a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#backend-header {
  background-color: #E0E0E0;
  border-bottom: 1px solid #c7c7c7;
  min-height: 70px;
  width: 100%;
  z-index: 999;
}
#backend-header .navigation-wrapper {
  padding: 1.618em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 9999;
}
#backend-header .navigation-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
#backend-header .navigation-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
#backend-header .logo {
  max-height: 70px;
}
#backend-header .logo img {
  max-height: 70px;
}
#backend-header .navigation-buttons {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 70px;
  padding-left: 0.809em;
  white-space: nowrap;
}
#backend-header .navigation-buttons:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 30em) {
  #backend-header .navigation-buttons {
    float: right;
  }
}
#backend-header .navigation-buttons .overview, #backend-header .navigation-buttons .participant-list {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
  margin-top: 1.1em;
  display: block;
  font-size: 0.8em;
  text-transform: uppercase;
  padding: 0.75em 1em;
  text-align: center;
}
#backend-header .navigation-buttons .overview:last-child, #backend-header .navigation-buttons .participant-list:last-child {
  margin-right: 0;
}
@media screen and (min-width: 30em) {
  #backend-header .navigation-buttons .overview, #backend-header .navigation-buttons .participant-list {
    width: auto;
    display: inline;
    float: none;
  }
}
#backend-header .navigation-buttons .log-out, #backend-header .navigation-buttons .survey {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
  margin-top: 1.1em;
  display: block;
  font-size: 0.8em;
  text-transform: uppercase;
  padding: 0.75em 1em;
  text-align: center;
}
#backend-header .navigation-buttons .log-out:last-child, #backend-header .navigation-buttons .survey:last-child {
  margin-right: 0;
}
@media screen and (min-width: 30em) {
  #backend-header .navigation-buttons .log-out, #backend-header .navigation-buttons .survey {
    width: auto;
    display: inline;
    float: none;
  }
}
#backend-header .language-chooser {
  margin-right: 2em;
  float: right;
  font-size: 80%;
  line-height: 200%;
  margin-right: 2em/0.8;
}
#backend-header .language-chooser a.selected {
  font-weight: bold;
  text-decoration: underline;
}

#backend-navigation {
  background-color: #fafafa;
  border: 1px solid #E0E0E0;
  margin-bottom: 1.5em;
}
#backend-navigation ul {
  margin: 0;
  padding: 0;
}
#backend-navigation li {
  list-style: none;
}
#backend-navigation p, #backend-navigation .cluster-list .cluster-buttons, .cluster-list #backend-navigation .cluster-buttons {
  color: #333;
  line-height: 1.5;
}
#backend-navigation a {
  text-decoration: none;
}
#backend-navigation li {
  border-bottom: 1px solid #E0E0E0;
}
#backend-navigation li > a {
  color: #333;
  display: block;
  padding: 0.75em 1.618em;
}
#backend-navigation li:last-child {
  border: none;
}
#backend-navigation li:focus, #backend-navigation li:hover {
  background-color: white;
}
#backend-navigation ul.submenu {
  display: block;
  font-size: 90%;
}
#backend-navigation ul.submenu li {
  background-color: #ededed;
}
#backend-navigation ul.submenu li > a {
  padding: 0.375em 1.618em;
}
#backend-navigation ul.submenu li:first-child {
  border-top: 1px solid #E0E0E0;
  box-shadow: inset 0 1px 1px #dddddd;
}
#backend-navigation ul.submenu li:focus, #backend-navigation ul.submenu li:hover {
  background-color: #f2f2f2;
}
#backend-navigation .is-expanded {
  display: block;
  padding-bottom: 0;
}

#backend-dashboard-table {
  table-layout: auto;
}
#backend-dashboard-table th, #backend-dashboard-table td {
  vertical-align: top;
}
#backend-dashboard-table .button {
  white-space: nowrap;
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
}
#backend-dashboard-table .button:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
#backend-dashboard-table .button:active:not(:disabled), #backend-dashboard-table .button:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
#backend-dashboard-table .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#backend-object-list, .backend-object-list {
  table-layout: auto;
}
#backend-object-list th, #backend-object-list td, .backend-object-list th, .backend-object-list td {
  vertical-align: top;
}
#backend-object-list th a, .backend-object-list th a {
  color: inherit;
}
#backend-object-list .sortable, .backend-object-list .sortable {
  position: relative;
}
#backend-object-list .sortable .icon, .backend-object-list .sortable .icon {
  position: absolute;
  left: 0.2em;
}
#backend-object-list .sortable.ascending .icon, .backend-object-list .sortable.ascending .icon {
  color: #666;
}
#backend-object-list .sortable.descending .icon, .backend-object-list .sortable.descending .icon {
  color: #666;
}
#backend-object-list td, .backend-object-list td {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
#backend-object-list td.field-id, #backend-object-list td.field-actions, .backend-object-list td.field-id, .backend-object-list td.field-actions {
  word-wrap: normal;
  word-break: normal;
  overflow-wrap: normal;
}
#backend-object-list td.actions, .backend-object-list td.actions {
  width: 1px;
  white-space: nowrap;
  overflow: hidden;
}
#backend-object-list td.actions > *, .backend-object-list td.actions > * {
  margin-right: 0.5em;
}
#backend-object-list td.actions > *:last-child, .backend-object-list td.actions > *:last-child {
  margin-right: 0;
}
#backend-object-list .participation-status, .backend-object-list .participation-status {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 3px;
  margin-top: 0.3em;
  margin-left: 0.8em;
}
#backend-object-list .participation-status.open, .backend-object-list .participation-status.open {
  background-color: #ff0000;
}
#backend-object-list .participation-status.answering, .backend-object-list .participation-status.answering {
  background-color: #ffd700;
}
#backend-object-list .participation-status.finished, .backend-object-list .participation-status.finished {
  background-color: #008000;
}
#backend-object-list .small, .backend-object-list .small {
  font-size: 80%;
}

#backend-object-detail th, #backend-object-detail td {
  vertical-align: top;
}
#backend-object-detail td {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
#backend-object-detail td.field-id, #backend-object-detail td.field-actions {
  word-wrap: normal;
  word-break: normal;
  overflow-wrap: normal;
}
#backend-object-detail td.actions {
  width: 1px;
  white-space: nowrap;
  overflow: hidden;
}
#backend-object-detail td.actions > * {
  margin-right: 0.5em;
}
#backend-object-detail td.actions > *:last-child {
  margin-right: 0;
}
#backend-object-detail .placeholder {
  color: #999;
  font-style: italic;
}

.backend-object-form td.field input, .backend-object-form td.field textarea, .backend-object-form td.field select {
  margin: 0;
}
.backend-object-form label {
  font-weight: normal;
}
.backend-object-form table {
  table-layout: auto;
}
.backend-object-form td.label {
  width: 30%;
}
.backend-object-form td.field {
  width: 70%;
}
.backend-object-form tr.error td.label, .backend-object-form .field.error td.label {
  color: #900;
}
.backend-object-form tr.error input, .backend-object-form tr.error textarea, .backend-object-form tr.error select, .backend-object-form tr.error .cke, .backend-object-form .field.error input, .backend-object-form .field.error textarea, .backend-object-form .field.error select, .backend-object-form .field.error .cke {
  border-color: #900 !important;
}
.backend-object-form tr.error .errorlist, .backend-object-form .field.error .errorlist {
  color: #900;
}
.backend-object-form .field-tags ul, .backend-object-form .field-based_on ul, .backend-object-form .field-recipients ul {
  overflow: auto;
  max-height: 8.6em;
  border: 1px solid #E0E0E0;
  padding: 0.5em;
}
.backend-object-form .field-tags label, .backend-object-form .field-based_on label, .backend-object-form .field-recipients label {
  margin: 0;
}
.backend-object-form .field-address_addition textarea {
  height: 4em;
}
.backend-object-form .help-text {
  color: grey;
  font-size: 90%;
}
.backend-object-form .field-report_logo a, .backend-object-form .field-report_icon a {
  display: block;
  margin-bottom: 0.5em;
}
.backend-object-form .field-report_logo input[type=checkbox], .backend-object-form .field-report_icon input[type=checkbox] {
  float: left;
  margin-top: 0.25em;
  margin-right: 0.5em;
}

.boolean-true {
  color: #090;
}

.boolean-false {
  color: #900;
}

.question-type-yesno {
  color: #999;
}

.question-type-likert {
  color: #999;
}

.question-type-text {
  color: #999;
}

.question-type-cc {
  color: #999;
}

.question-type-multi {
  color: #999;
}

.question-type-number:before {
  content: "123";
  color: #999;
  font-weight: bold;
}

.action-delete.disabled {
  color: rgba(36, 75, 144, 0.2);
}

.action-detail.disabled {
  color: rgba(36, 75, 144, 0.2);
}

.action-update.disabled {
  color: rgba(36, 75, 144, 0.2);
}

.action-duplicate.disabled {
  color: rgba(36, 75, 144, 0.2);
}

.cluster-list th, .cluster-list td {
  vertical-align: top;
}
.cluster-list h2 .action-update, .cluster-list h2 .action-delete, .cluster-list h2 .action-expander {
  vertical-align: middle;
  font-size: 50%;
  margin-left: 0.5em;
}
.cluster-list h2 .drag-handle {
  cursor: move;
  font-size: 50%;
  vertical-align: middle;
  margin-right: 0.5em;
}
.cluster-list h2.dragging {
  background-color: rgba(0, 0, 0, 0.05);
}
.cluster-list .cluster-buttons a {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
}
.cluster-list .cluster-buttons a:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
.cluster-list .cluster-buttons a:active:not(:disabled), .cluster-list .cluster-buttons a:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
.cluster-list .cluster-buttons a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cluster-list .empty td {
  color: rgba(0, 0, 0, 0.3);
}
.cluster-list .empty .drag-handle {
  cursor: default;
}

.question-list, .object-list {
  table-layout: auto;
}
.question-list .drag-handle, .object-list .drag-handle {
  width: 1px;
  cursor: move;
}
.question-list .dragging, .object-list .dragging {
  background-color: rgba(0, 0, 0, 0.05);
}
.question-list .actions, .object-list .actions {
  width: 1px;
  white-space: nowrap;
}
.question-list .actions > *, .object-list .actions > * {
  margin-right: 0.5em;
}
.question-list .actions > *:last-child, .object-list .actions > *:last-child {
  margin-right: 0;
}

#add-question-table {
  table-layout: auto;
}
#add-question-table th, #add-question-table td {
  vertical-align: top;
}
#add-question-table .col-checkbox {
  width: 1px;
}
#add-question-table .col-name {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
#add-question-table .col-type {
  width: 1px;
}

#backend-dashboard .task-list .link {
  float: right;
}
#backend-dashboard .current-survey-list {
  margin-top: 30px;
}
#backend-dashboard .current-survey-list .title {
  margin-top: 0.5em;
}
#backend-dashboard .current-survey-list .info {
  float: right;
  text-align: right;
}
#backend-dashboard .current-survey-list .days-left {
  display: inline-block;
  min-width: 180px;
}
#backend-dashboard .current-survey-list .whitelabel-logo-small {
  max-height: 20px;
  vertical-align: bottom;
}
#backend-dashboard .current-survey-list .whitelabel-title {
  color: #999;
}
#backend-dashboard .whitelabel-logo {
  max-height: 32px;
}

#backend-company-detail .company {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#backend-company-detail .company:after {
  content: "";
  display: table;
  clear: both;
}
#backend-company-detail .company .data {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
#backend-company-detail .company .data:last-child {
  margin-right: 0;
}
#backend-company-detail .company .data .address {
  margin: 20px 0;
}
#backend-company-detail .company .image {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
#backend-company-detail .company .image:last-child {
  margin-right: 0;
}
#backend-company-detail .managers {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
#backend-company-detail .managers:after {
  content: "";
  display: table;
  clear: both;
}
#backend-company-detail .managers .manager {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
#backend-company-detail .managers .manager:last-child {
  margin-right: 0;
}
#backend-company-detail .managers .manager .name {
  font-weight: bold;
}
#backend-company-detail .surveys {
  margin-top: 30px;
}
#backend-company-detail .buttons a {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  display: inline-block;
}
#backend-company-detail .buttons a:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
#backend-company-detail .buttons a:active:not(:disabled), #backend-company-detail .buttons a:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
#backend-company-detail .buttons a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#backend-survey-detail .company {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#backend-survey-detail .company:after {
  content: "";
  display: table;
  clear: both;
}
#backend-survey-detail .company .data {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
#backend-survey-detail .company .data:last-child {
  margin-right: 0;
}
#backend-survey-detail .company .data .actions {
  font-size: 16px;
}
#backend-survey-detail .company .data .address {
  margin: 20px 0;
}
#backend-survey-detail .company .image {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
#backend-survey-detail .company .image:last-child {
  margin-right: 0;
}
#backend-survey-detail .managers {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
#backend-survey-detail .managers:after {
  content: "";
  display: table;
  clear: both;
}
#backend-survey-detail .managers .manager {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
#backend-survey-detail .managers .manager:last-child {
  margin-right: 0;
}
#backend-survey-detail .managers .manager .name {
  font-weight: bold;
}
#backend-survey-detail .button {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  margin: 5px 0;
}
#backend-survey-detail .button:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
#backend-survey-detail .button:active:not(:disabled), #backend-survey-detail .button:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
#backend-survey-detail .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#backend-survey-detail .button.red {
  background-color: red;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
}
#backend-survey-detail .button.red:hover:not(:disabled) {
  background-color: #ff1a1a;
  cursor: pointer;
}
#backend-survey-detail .button.red:active:not(:disabled), #backend-survey-detail .button.red:focus:not(:disabled) {
  background-color: #e10505;
  cursor: pointer;
}
#backend-survey-detail .button.red:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#backend-survey-detail .participants {
  margin-top: 30px;
}
#backend-survey-detail .review {
  margin-top: 30px;
}
#backend-survey-detail .reports {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 100%;
  margin-top: 30px;
}
#backend-survey-detail .reports:last-child {
  margin-right: 0;
}
#backend-survey-detail table {
  table-layout: auto;
}
#backend-survey-detail table .actions {
  width: 1px;
  white-space: nowrap;
}
#backend-survey-detail .send-emails form {
  display: inline-block;
  margin-bottom: 0.3em;
}

#backend-survey-email-confirm .email-preview {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  margin: 0 0 0.75em 0;
  padding: 1em;
}
#backend-survey-email-confirm .email-preview h6 {
  font-size: 80%;
  color: gray;
}
#backend-survey-email-confirm .email-preview .recipients {
  font-size: 80%;
  margin: 0.5em -0.2em 1em -0.2em;
}
#backend-survey-email-confirm .email-preview .recipients li {
  margin: 0.2em;
  display: inline-block;
  background-color: #ddd;
  padding: 0.2em 0.5em;
  border-radius: 4px;
}
#backend-survey-email-confirm .email-preview .subject {
  margin-bottom: 1em;
  font-weight: bold;
}
#backend-survey-email-confirm .email-preview .body {
  font-family: monospace;
}

#backend-report-detail .button {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
  margin: 5px 0;
}
#backend-report-detail .button:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
#backend-report-detail .button:active:not(:disabled), #backend-report-detail .button:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
#backend-report-detail .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#backend-report-detail .file-upload {
  width: 40%;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  padding: 1em;
}
#backend-report-detail .file-upload input {
  width: 60%;
  display: inline-block;
}

.used-in-surveys {
  margin-top: 30px;
}
.used-in-surveys .col-end {
  white-space: nowrap;
}

#backend-login {
  margin-left: 25.5894128995%;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
#backend-login:last-child {
  margin-right: 0;
}
#backend-login .login-button {
  float: right;
}
#backend-login td {
  border: none;
}

.expandable .expander {
  font-weight: bold;
}
.expandable .expander .icon {
  margin-left: 0.5em;
  color: #999;
}
.expandable.collapsed .content {
  display: none;
}
.expandable.expanded .content {
  display: block;
}

.report-sections {
  table-layout: auto;
}
.report-sections h6 {
  padding: 0.75em 0;
}
.report-sections .field {
  overflow: hidden;
  width: 100%;
  margin-bottom: 0.75em;
}
.report-sections .field input, .report-sections .field textarea, .report-sections .field select {
  margin-bottom: 0;
}
.report-sections .field:last-child {
  margin-bottom: 0;
}
.report-sections .field label {
  font-weight: normal;
  width: 30%;
  float: left;
}
.report-sections .field input, .report-sections .field select {
  width: 70%;
  margin-left: 30%;
}
.report-sections .field textarea.large {
  height: 20em;
}
.report-sections .field .help {
  font-size: 90%;
  margin-top: -1em;
  color: #666;
}
.report-sections .field .cke {
  clear: both;
}
.report-sections .drag-handle {
  cursor: move;
}
.report-sections .dragging {
  background-color: rgba(0, 0, 0, 0.05);
}
.report-sections tr.error .section-type-name {
  color: red;
}
.report-sections .preview-link {
  font-size: 80%;
}
.report-sections .include-in-toc, .report-sections .attachment-topic {
  font-size: 80%;
}
.report-sections .include-in-toc input, .report-sections .attachment-topic input {
  margin: 0;
  vertical-align: middle;
}
.report-sections .include-in-toc label, .report-sections .attachment-topic label {
  font-weight: inherit;
}
.report-sections td {
  vertical-align: top;
}
.report-sections td.section-drag-handle {
  width: 24px;
}
.report-sections td.section-type {
  width: 20em;
  cursor: pointer;
}
.report-sections td.section-config {
  min-width: 20em;
}
.report-sections td.section-actions {
  width: 1em;
}
.report-sections td.section-type {
  font-weight: bold;
}
.report-sections td.section-drag-handle {
  padding-right: 10px;
}
.report-sections td.section-actions {
  padding-left: 10px;
}

.report-analysis {
  table-layout: auto;
}
.report-analysis h6 {
  padding: 0.75em 0;
}
.report-analysis .field {
  overflow: hidden;
  width: 100%;
  margin-bottom: 0.75em;
}
.report-analysis .field input, .report-analysis .field textarea, .report-analysis .field select {
  margin-bottom: 0;
}
.report-analysis .field:last-child {
  margin-bottom: 0;
}
.report-analysis .field label {
  font-weight: normal;
  width: 30%;
  float: left;
}
.report-analysis .field input, .report-analysis .field select {
  width: 70%;
  margin-left: 30%;
}
.report-analysis .field textarea.large {
  height: 20em;
}
.report-analysis .field .help {
  font-size: 90%;
  margin-top: -1em;
  color: #666;
}
.report-analysis .field .cke {
  clear: both;
}
.report-analysis .cluster-icon .icon {
  color: #999;
}
.report-analysis .edit-icon {
  color: #999;
}
.report-analysis .dragging {
  background-color: rgba(0, 0, 0, 0.05);
}
.report-analysis td {
  vertical-align: top;
}
.report-analysis td.cluster-icon, .report-analysis td.question-icon {
  width: 24px;
}
.report-analysis td.cluster-content {
  min-width: 20em;
}
.report-analysis td.cluster-actions, .report-analysis td.question-actions {
  text-align: right;
  padding-left: 10px;
  padding-right: 0;
  width: 48px;
}
.report-analysis td.cluster-actions i, .report-analysis td.question-actions i {
  cursor: pointer;
}
.report-analysis input.cluster-title {
  width: 100%;
}
.report-analysis label {
  display: block;
}
.report-analysis .question-number {
  float: left;
  margin-right: 0.5em;
}

.django-ckeditor-widget {
  width: 100%;
}

.expander-icon {
  color: #999;
}
.language-tabs {
  padding: 0 0.5em;
}
.language-tabs li {
  display: inline-block;
  margin-left: -1px;
  border-width: 1px;
  border-color: #c7c7c7;
  border-style: solid solid none solid;
  padding: 0.2em 1em;
  cursor: pointer;
  color: #ccc;
}
.language-tabs li:first-child {
  margin-left: 0;
}
.language-tabs li.current {
  position: relative;
  border-color: #777;
  color: black;
}

.delete-button {
  cursor: pointer;
  float: right;
}

#backend-report-statistics .button {
  background-color: #244B90;
  border-radius: 3px;
  border: none;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  padding: 7px 18px;
  text-decoration: none;
  background-clip: padding-box;
}
#backend-report-statistics .button:hover:not(:disabled) {
  background-color: #2554a9;
  cursor: pointer;
}
#backend-report-statistics .button:active:not(:disabled), #backend-report-statistics .button:focus:not(:disabled) {
  background-color: #224179;
  cursor: pointer;
}
#backend-report-statistics .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}