/*  Base Styles
   ****************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Thin'), local('Roboto-Thin'), url(../fonts/Roboto-Thin.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Light'), url(../fonts/Roboto-Light.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Regular'), url(../fonts/Roboto-Regular.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../fonts/Roboto-Medium.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../fonts/Roboto-Bold.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
html {
  height: 100%;
}
body {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
}
body > .ember-view {
  height: 100%;
}
h1,
h2 {
  font-weight: 500;
}
h3,
h4,
h5 {
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
h1 {
  font-size: 1.25em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.25em;
}
a {
  color: #1B73B3;
  outline: thin;
  text-decoration: none;
  cursor: pointer;
}
a:active,
a:hover {
  outline: thin;
}
input,
label {
  cursor: pointer;
  font-size: 1rem;
}
input {
  margin: 0 2px;
}
ul,
ol {
  padding: 0 0 0 2em;
  margin-top: 5px;
}
ul li,
ol li {
  margin-top: 5px;
}
button {
  background: none;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-family: 'Roboto', sans-serif;
  outline: thin;
  text-shadow: none;
}
button[disabled] {
  opacity: .5;
}
span {
  display: inline;
}
input,
select {
  font-family: 'Roboto', sans-serif;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* Helper Classes
  *******************/
.clearfix:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.icon-state {
  float: right;
}
.push-right {
  right: 80%;
}
@media only screen and (min-width: 768px) {
  .push-right {
    right: 40%;
  }
}
.overlay {
  position: relative;
}
.overlay:after {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.remove-after-animation {
  -webkit-animation: fadeout 1s forwards 5s;
          animation: fadeout 1s forwards 5s;
}
.overflow-hidden {
  overflow: hidden;
}
.inline-button {
  width: auto !important;
}
.truncated-text {
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 100%;
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes spinning {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinning {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.hidden {
  display: none;
}
.invisible {
  visibility: hidden;
}
.nowrap {
  white-space: nowrap;
}
.emphasized {
  font-style: italic;
  font-size: 12px;
}
.emphasized i {
  display: inline-block;
  margin-left: 3px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 19px;
}
.switch input {
  width: 100%;
  height: 100%;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  border-radius: 35px;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  background-color: #00CA43;
  transition: .4s;
  pointer-events: none;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  right: 0;
  bottom: -1px;
  background-color: #F7F9FA;
  border: 1px solid #00CA43;
  transition: .2s;
  border-radius: 50%;
}
.switch input:checked + .slider {
  background-color: #BBB;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #cbcbcb;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  border: 1px solid #cbcbcb;
}
.block {
  width: 100%;
  display: block;
}
.collapse {
  display: none;
}
.ember-application > .ember-view:first-of-type {
  height: 100%;
}
.outer-container {
  height: 100vh;
  padding: 50px 0;
}
.layout-constrained {
  width: 95%;
  margin: 0 auto;
}
/*  Admin Page
   ***************/
.outer-container {
  background-color: #F7F9FA;
}
.panel-full {
  padding-top: 2rem;
  position: relative;
  text-align: center;
}
.panel-constrained:not(:last-child) {
  border-bottom: 1px solid #E4E8EB;
}
.panel-outer {
  position: relative;
}
.panel-inner {
  width: 85%;
  margin: 0 auto;
  min-height: 80px;
}
@media (min-width: 519px) {
  .panel-inner {
    width: 90%;
  }
}
.panel-inner .fa-spinner {
  margin-right: .2rem;
}
.panel-project-title {
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-size: 18px;
  font-weight: normal;
}
.panel-inner-controls {
  padding: 22px 0 48px;
}
@media only screen and (min-width: 768px) {
  .panel-inner-controls {
    padding: 3.5rem 0 1.5rem;
  }
}
.date-info {
  color: #627585;
  font-size: 10px;
  margin: 6px 0 9px;
}
.date-info i:first-child {
  margin-right: .3rem;
}
.summary-container {
  color: #16263B;
  margin: 0 20px;
  border: 1px solid #E4E8EB;
  border-radius: 4px;
  background-color: #FFF;
}
.summary-container .panel-constrained {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .summary-container .panel-constrained {
    width: 75%;
  }
}
.status-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.status-count {
  font-size: 2.5rem;
  font-weight: 400;
  margin-right: 1.25rem;
}
@media only screen and (min-width: 414px) {
  .status-count {
    min-width: 2%;
  }
}
.status-type {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
}
.status-type .status-type-small {
  font-size: 12px;
}
.status-title {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 auto;
          flex: 2 1 auto;
}
.status-upload {
  font-size: 10px;
  position: absolute;
  top: 27px;
  left: 0;
}
@media only screen and (min-width: 536px) {
  .status-upload {
    display: inline-block;
    position: initial;
    text-align: right;
    float: right;
  }
}
.status-action {
  color: #627585;
}
@media only screen and (min-width: 536px) {
  .upload-status-row {
    text-align: right;
  }
}
.partial-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.partial-summary .status-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  color: #16263B;
  text-align: left;
}
.partial-summary .status-type .fa-angle-right,
.partial-summary .status-type .fa-angle-down {
  width: 20px;
  font-size: 20px;
  font-weight: bold;
}
.partial-container {
  width: 85%;
  margin: -10px auto 25px;
}
@media (min-width: 519px) {
  .partial-container {
    width: 90%;
  }
}
.partial-container button {
  font-size: 18px;
  color: #8394A3;
}
.partial-respondent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #efefef;
}
.partial-respondent:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.respondent-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.respondent-removal {
  -webkit-box-flex: 3;
      -ms-flex: 3 1 auto;
          flex: 3 1 auto;
  text-align: right;
}
.respondent-removal .ember-view {
  display: inline-block;
}
.project-version {
  text-align: center;
  margin-top: 80px;
}
/*  Respondent Page
   *******************/
.respview-page {
  font-size: 16px;
}
.respview-page,
.survey-page,
footer {
  color: #16263B;
  background-color: #F9F8F4;
}
.comment {
  background-color: #FFF;
  text-align: left;
  padding: .5rem;
  margin-top: 1em;
}
.question-container {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.question-element {
  background-color: #FFF;
  border: 1px solid #efefef;
  border-radius: 5px;
  margin-top: 1rem;
  padding: .5rem;
}
@media only screen and (min-width: 536px) {
  .question-element {
    padding: 1rem;
  }
}
.respview-page .error-label {
  color: #BB0000;
  margin-top: 15px;
}
.respview-page .error-state,
.respview-page .question.ng-invalid {
  border: 1px solid #BB0000;
}
.question,
.comment {
  list-style-position: outside;
}
.answers {
  list-style: none;
}
.answers:not(:first-child) {
  margin-top: 1rem;
}
.answer-wrapper {
  border-collapse: collapse;
  margin-top: 2rem;
}
.question h3 {
  color: #627585;
  margin-top: .333rem;
  font-size: 1rem;
}
/*  Survey End Page
    ********************/
.survey-complete-body {
  text-align: center;
  margin-top: 70px;
}
@media only screen and (min-width: 768px) {
  .survey-complete-body {
    margin-top: 100px;
  }
}
.survey-complete-body h1 {
  margin-bottom: 10px;
}
.survey-complete-body p {
  margin-bottom: 62px;
}
.survey-complete-body button {
  margin-top: 25px;
}
@media only screen and (min-width: 768px) {
  .survey-complete-body button {
    margin-top: 80px;
  }
}
/* ======(Survey Images, pre-defined sizes) ====== */
img.survey_image {
  padding: 2px;
}
.survey_image.survey-image-small {
  max-height: 150px;
  max-width: 150px;
}
.survey_image.survey-image-medium {
  max-height: 300px;
  max-width: 300px;
}
.survey_image.survey-image-large {
  max-height: 600px;
  max-width: 600px;
}
.survey_image.survey-image-xlarge {
  max-height: 900px;
  max-width: 900px;
}
.app-only-container {
  text-align: center;
  padding: 0 5px;
}
.app-only-container .app-store-logo {
  margin: 25px auto 0 auto;
}
.app-only-message {
  margin: 25px 0;
}
.decipher-logo {
  margin-top: 50px;
  height: 100px;
}
.app-store-logo {
  width: 135px;
  height: 40px;
}
.incompatible-container {
  height: 100vh;
  width: 100%;
  text-align: center;
  padding: 20px 25px;
  background: #FAFAFA;
}
@media only screen and (min-width: 768px) {
  .incompatible-container {
    padding: 50px;
  }
}
.incompatible-container p {
  font-size: 0.75em;
  color: #627585;
}
.incompatible-browser-container {
  width: 100%;
  margin: auto;
  padding: 25px 0;
  background: #F7F9FA;
  border: 1px solid #CCC;
  text-align: center;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .incompatible-browser-container {
    width: 45%;
  }
}
.incompatible-browser-container .decipher-logo {
  width: 29%;
  height: auto;
  margin: 0 auto;
  padding-top: 10px;
}
.incompatible-browser-container p:first-child {
  margin: 10px 0 20px;
}
.incompatible-device-container .decipher-logo {
  width: 75%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .incompatible-device-container .decipher-logo {
    width: 40%;
  }
}
.incompatible-device-container .chrome-logo {
  height: 60px;
}
.incompatible-device-container .device-type {
  font-size: 1em;
  color: #16263B;
}
.incompatible-message {
  margin-top: 25px;
}
.incompatible-message h1 {
  margin-bottom: 10px;
  font-size: 1em;
}
.incompatible-logo-container {
  margin: 30px 0 10px;
}
.incompatible-logo-container p:first-child {
  margin-bottom: 20px;
}
.incompatible-logo {
  display: inline-block;
  margin: 0 15px 0 15px;
}
.chrome-logo,
.firefox-logo {
  height: 40px;
}
.version-info {
  font-style: italic;
  color: #627585;
}
.page-404 {
  height: 100vh;
  width: 100%;
  padding: 50px 25px;
  background: #FAFAFA;
}
@media only screen and (min-width: 768px) {
  .page-404 {
    padding: 50px;
  }
}
.page-404 .info {
  width: 100%;
  margin: auto;
  padding: 25px 0;
  background: #F7F9FA;
  border: 1px solid #CCC;
  text-align: center;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .page-404 .info {
    width: 45%;
  }
}
.page-404 .info img {
  width: 32%;
  margin: 0 auto;
}
.page-404 .info p {
  margin: 20px 0 30px;
}
.page-404 .info a {
  color: #1B73B3;
  display: inline-block;
  margin-bottom: 10px;
}
.page-404 .footer {
  width: 100%;
  margin: 50px auto 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .page-404 .footer {
    width: 25%;
  }
}
.page-404 .footer ul {
  padding: 0;
}
.page-404 .footer li {
  display: inline-block;
  list-style-type: none;
  margin-right: 6px;
}
.page-404 .footer li:last-child {
  margin-right: 0;
}
.page-404 .footer a {
  font-size: 11px;
  color: #1B73B3;
}
/*  Header
   ************/
header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  box-shadow: 0 2px 4px 0 rgba(22, 38, 59, 0.08);
  color: #FFF;
  z-index: 10;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
.header-content {
  display: inline-block;
  float: left;
  height: 100%;
}
.header-content.-left {
  width: 45%;
  height: 100%;
  font-weight: 600;
  position: relative;
  color: #16263B;
  white-space: nowrap;
}
.header-content.-center {
  width: 10%;
  text-align: center;
}
.header-content.-center .header-status-icon:empty {
  width: 10%;
  height: 1px;
}
.header-content.-right {
  width: 45%;
  font-weight: 500;
  position: relative;
  color: #16263B;
}
.header-content.-right {
  width: 45%;
  text-align: right;
}
.respview-header .header-content {
  width: 50%;
}
.header-nav-button {
  padding: 0 10px;
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
  height: 30px;
  margin: 10px;
  line-height: 30px;
}
.header-nav-button span {
  vertical-align: middle;
}
.header-nav-button i {
  font-size: 20px;
  font-weight: normal;
  vertical-align: middle;
}
.header-nav-button i + span,
.header-nav-button span + i {
  margin-left: 5px;
}
.menu-button {
  position: relative;
  height: 50px;
  width: 50px;
  cursor: pointer;
  color: #16263B;
  text-align: center;
  margin-right: 0;
}
.menu-button:before {
  display: block;
  font-size: 25px;
  position: absolute;
  height: 18px;
  width: 100%;
  top: 7px;
}
.menu-button .menu-button-text {
  display: block;
  line-height: initial;
  font-size: 8px;
  font-weight: normal;
  position: absolute;
  width: 100%;
  top: calc(25px);
}
.slideout-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 80%;
  line-height: 1.7;
  position: fixed;
  top: 0;
  right: 0;
  background: #F7F9FA;
  z-index: 15;
}
@media only screen and (min-width: 768px) {
  .slideout-menu {
    width: 40%;
  }
}
.slideout-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 5;
  border-radius: 0;
}
.slideout-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 11px 25px;
  background: #FFF;
  border-bottom: 1px solid #DDD;
  color: #16263B;
}
.slideout-menu-footer {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.slideout-menu-footer .child {
  padding: 20px 0;
}
.slideout-menu-footer .child.disabled {
  color: #DDD;
  cursor: not-allowed;
}
.slideout-menu-footer .child.logout {
  padding: 12px 0;
  border-top: 1px solid #BBB;
}
.slideout-menu-footer .child.logout button {
  font-weight: 300;
  letter-spacing: 1px;
}
.slideout-menu-header .user-type {
  text-align: left;
  padding-right: 5px;
  width: 70%;
}
.slideout-menu-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #F7F9FA;
  position: relative;
  min-height: 0;
  height: 70%;
}
.respview-header .slideout-menu-body {
  text-align: center;
}
.slideout-menu-body .languages {
  text-align: left;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  padding-left: 5px;
}
.slideout-menu-body .languages li {
  margin-top: 20px;
  margin-left: 23px;
}
.slideout-menu-body .languages li button {
  color: #1B73B3;
  margin: 0;
}
.slideout-menu-body .sliding-panel {
  height: 100%;
  padding-top: 30px;
  -ms-touch-action: none;
      touch-action: none;
}
.slideout-menu-body .inner-panel {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.slideout-menu-body .panel {
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  transition: 400ms ease-in-out;
}
.slideout-menu-body .left-panel {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.slideout-menu-body .left-panel.main.main-onscreen {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideout-menu-body .right-panel {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  /* 
     * any additional panels added to the sliding-panel component 
     * will need the below css rule duplicated
     * &.<additionalPanel>.<additionalPanel>-onscreen
    */
}
.slideout-menu-body .right-panel.language.language-onscreen {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.slideout-menu-body .panel-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 25px;
  background: #F7F9FA;
  cursor: pointer;
}
.slideout-menu-body .panel-item-wrapper p {
  cursor: pointer;
}
.slideout-menu-body .panel-links {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 20px;
}
.slideout-menu-body .panel-links a {
  display: block;
  font-weight: 300;
}
.slideout-menu-body {
  padding-top: 15px;
}
.slideout-menu-body button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 15px;
  line-height: 1.38;
  font-size: 14px;
  font-weight: 500;
}
.state-label-container {
  display: inline-block;
  margin-right: 5px;
}
.state-label {
  background-color: #fafbcf;
  border-radius: 3px;
  line-height: initial;
  color: #333333;
  padding: 0 .25rem;
}
.respview-saved-status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 9;
      -ms-flex: 9 1 10%;
          flex: 9 1 10%;
  text-align: right;
  white-space: nowrap;
  margin-right: 20px;
  font-size: 14px;
}
.respview-saved-status .loading-spinner-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 15px;
  vertical-align: middle;
}
.respview-saved-status .loading-spinner-container i {
  font-size: 18px;
  color: #21a335;
}
.respview-saved-status .respview-saved-status-text {
  vertical-align: middle;
}
.respview-saved-status #success-message,
.respview-saved-status #online-message,
.respview-saved-status #saved-message {
  color: #21a335;
}
.respview-saved-status #failure-message {
  color: #db002b;
}
.storage-space {
  color: #16263B;
  font-size: 11px;
  font-weight: 500;
}
.online-header header {
  height: 50px;
  /* this value matches originy value in online.js */
}
footer {
  padding: 1rem 0;
  width: 100%;
  text-align: right;
}
.footer_button-wrapper {
  width: 90%;
  margin: 0 auto;
}
.footer_button-wrapper button {
  width: 100px;
}
.footer_button-wrapper .button-transparent {
  color: #16263B;
  padding: 0;
}
.footer_button-wrapper .button-transparent::before {
  font-family: FontAwesome;
  content: "\f100";
  margin-right: 5px;
}
.footer_button-wrapper .btn {
  border-radius: 3px;
  padding: 10px;
}
.button-back {
  float: left;
}
.button-next {
  float: right;
}
.footer_button-wrapper button:first-child {
  margin-top: .6rem;
}
.login-form .languages {
  padding-left: 0;
}
.login-form .languages li {
  display: inline-block;
  margin-right: 7px;
  color: #1B73B3;
}
.login-form .languages li button {
  font-size: .7em;
}
.login-form .languages li button.activeLanguage {
  color: #16263B;
}
.login-form .privacy-policy {
  margin-top: 25px;
  font-size: .7em;
}
/*  Modal
    *********/
.ember-modal-overlay {
  width: 100%;
  height: 100vh;
  left: 0;
  margin: 0 auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.ember-modal-dialog {
  width: auto;
  margin: 20px;
  padding: 28px 38px;
  font-size: 14px;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 600px) {
  .ember-modal-dialog {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 800px) {
  .ember-modal-dialog {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .ember-modal-dialog {
    width: 70%;
  }
}
@media (min-width: 1280px) {
  .ember-modal-dialog {
    width: 50%;
  }
}
@media only screen and (min-width: 1028px) {
  .ember-modal-dialog {
    font-size: 16px;
  }
}
.ember-modal-dialog.ember-modal-dialog-in-place {
  position: relative;
  z-index: 50;
}
.ember-modal-overlay.translucent {
  background-color: rgba(0, 0, 0, 0.77);
}
.modal-header {
  margin-bottom: 22px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.36;
}
.modal-header .modal-header-text {
  display: inline-block;
  margin-right: auto;
  font-weight: 600;
}
.modal-header .btn-cancel {
  float: right;
  line-height: 1.36px;
}
.modal-header .btn-cancel i {
  color: #9EA9B4;
  font-size: 16px;
  line-height: inherit;
  vertical-align: middle;
}
@media only screen and (min-width: 1028px) {
  .modal-header {
    padding: 15px 15px 10px;
  }
}
.modal-body {
  font-size: 14px;
  line-height: 1.57;
  margin-bottom: 22px;
}
.modal-body p {
  margin-bottom: 10px;
}
.modal-body p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1028px) {
  .modal-body {
    padding: 0 15px 20px;
  }
}
.modal-body .subject {
  font-weight: bold;
  font-size: 14px;
}
.modal-body .content {
  font-size: 12px;
}
.modal-body input[type=text] {
  width: 100%;
  margin-top: 1rem;
  padding: 10px 14px;
  outline: thin;
  border: solid 1px #CBD2D6;
  border-radius: 4px;
  background-color: #FFF;
}
.modal-footer {
  text-align: center;
}
.modal-footer button {
  padding: 10px 5px;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 414px) {
  .modal-footer button {
    display: inline-block;
    width: 45%;
  }
}
@media only screen and (min-width: 768px) {
  .modal-footer button {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1028px) {
  .modal-footer button {
    width: 35%;
  }
}
.modal-footer button:first-child {
  margin-bottom: 20px;
}
@media only screen and (min-width: 414px) {
  .modal-footer button:first-child {
    margin-bottom: 0;
    margin-right: 15px;
  }
}
.modal-partial-footer {
  text-align: center;
  padding: 15px 10px;
}
.modal-partial-footer button:nth-child(-n+1) {
  color: #627585;
}
.modal-partial-footer button:nth-child(-n+2) {
  width: 100%;
  margin-bottom: .6rem;
}
@media only screen and (min-width: 500px) {
  .modal-partial-footer button:nth-child(-n+2) {
    width: auto;
    margin-bottom: 0;
    margin-right: .5rem;
  }
}
@media only screen and (min-width: 536px) {
  .modal-partial-footer {
    text-align: right;
  }
}
.loading-screen {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
.loading-screen .loading-header {
  font-size: 1.2rem;
}
.loading-screen .loading-action {
  margin-top: 2rem;
}
.loading-screen .loading-spinner-container {
  margin: 2rem auto 0 auto;
}
.loading-screen h1 {
  font-size: 1rem;
}
.loading-spinner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.loading-spinner-container i {
  margin: auto;
  font-size: 3rem;
  color: #00CA43;
}
.loading-spinner-container svg {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
}
.loading-spinner-container.animate svg {
  -webkit-animation: spinning 1.4s infinite linear;
          animation: spinning 1.4s infinite linear;
}
.form-wrapper {
  margin: 10px auto 0 auto;
}
@media only screen and (min-width: 768px) {
  .form-wrapper {
    max-width: 500px;
  }
}
.login-header {
  text-align: center;
}
.logo-container {
  background: url('../logo.png') no-repeat center;
  background-size: contain;
  width: 100%;
  height: 90px;
  margin: 25px auto 0;
}
.login-tab-header {
  width: 65%;
  margin: auto;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.8px;
}
@media only screen and (min-width: 768px) {
  .login-tab-header {
    width: 100%;
    padding: 0;
    border: 1px solid #BBBBBB;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: none;
  }
}
.login-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  color: #627585;
  font-weight: 900;
}
.login-tab:hover {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .login-tab {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    line-height: 38px;
  }
}
.login-tab.active {
  color: #16263B;
}
.login-tab.active span {
  padding: 5px 0;
}
.login-tab.active:after {
  content: "";
  display: block;
  width: 70%;
  margin: 5px auto 0;
  border-bottom: 2px solid #00CA43;
}
@media only screen and (min-width: 768px) {
  .login-tab.active:after {
    margin: auto;
  }
}
.login-body .error-message,
.login-body .success-message {
  margin-bottom: 10px;
  text-align: center;
}
.login-input {
  display: inline-block;
  width: 100% !important;
  padding: 5px 15px !important;
  color: #454545;
  border: 1px solid #BBB;
}
.login-input:focus {
  border: 1px solid #000;
  outline: thin;
}
.login-icon-overlay-container {
  position: relative;
}
.login-icon-overlay {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-dropdown {
  height: 35px;
}
.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-group label {
  display: inline-block;
  margin-bottom: 5px;
  cursor: default;
}
.form-group input {
  cursor: text;
}
.form-group.password-field a {
  margin-top: 10px;
  color: #1B73B3;
  display: inline-block;
}
.form-control {
  height: 40px;
  padding: 6px 12px;
}
.login-form label {
  font-size: 12px;
  color: #627585;
}
.login-form input[type=text],
.login-form input[type=password] {
  border-radius: 4px;
}
.login-form .btn-action {
  width: 100%;
  margin-top: 25px;
}
.login-form .btn-cancel {
  width: 100%;
}
.login-footer {
  margin-top: 25px;
  text-align: center;
}
.forgot-form-wrapper {
  padding: 20px 35px;
}
.forgot-form-wrapper form {
  margin-top: 35px;
}
.forgot-form-wrapper button {
  width: 100%;
}
.forgot-form-wrapper .btn-cancel a {
  color: #627585;
}
.forgot-form-wrapper h2,
.forgot-form-wrapper p {
  margin-bottom: 10px;
}
.reset-form-wrapper {
  margin: 0 auto 0 auto;
  top: 75px;
  position: relative;
}
.btn {
  padding: 15px 15px;
  width: 225px;
  transition: background 200ms ease-in-out;
}
.btn-flex {
  width: auto;
  min-width: 250px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  padding: 15px 15px;
  margin-bottom: 14px;
  transition: background 200ms ease-in-out;
}
@media only screen and (min-width: 414px) {
  .btn-flex {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.btn-md {
  width: 200px;
  min-height: 50px;
  padding: 5px;
}
.btn-sm {
  padding: 5px 10px;
}
.btn-default {
  background-color: #DDD;
  color: #16263B;
}
.btn-default:hover {
  background: #d8d8d8;
}
.btn-default.btn-small {
  width: auto;
  padding: 5px 10px;
  font-size: 12px;
}
.btn-primary {
  background: #F5496C;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: #f43f64;
}
.modal-footer .btn-primary {
  line-height: 1.43;
  font-weight: 500;
  background: #F5496C;
  color: #FFFFFF;
}
.modal-footer .btn-primary:hover {
  background: #f43f64;
}
.btn-special {
  background: #5AE070;
  border-bottom: 1px solid #45dc5d;
  color: #2E3033;
}
.btn-special:hover {
  background: #51de69;
}
.btn-secondary {
  background: #E8ECEE;
  color: #16263B;
}
.btn-secondary:hover {
  background: #e2e7ea;
}
.modal-footer .btn-secondary {
  line-height: 1.43;
  font-weight: 500;
  background: #E8ECEE;
  color: #16263B;
}
.modal-footer .btn-secondary:hover {
  background: #e2e7ea;
}
.btn-action {
  background-color: #3FE065;
  color: #FFF;
}
.btn-action:hover {
  background: #36df5e;
}
.modal-footer .btn-action {
  line-height: 1.43;
  font-weight: 500;
  background: #3FE065;
  color: #16263B;
}
.modal-footer .btn-action:hover {
  background: #36df5e;
}
.btn-link {
  color: #1B73B3;
  text-align: center;
}
.btn-link:hover {
  color: #1a6daa;
}
.btn-transparent {
  padding: 0;
  color: #1B73B3;
}
.btn-transparent:hover {
  color: #1a6daa;
}
.btn-cancel {
  color: #627585;
}
.btn-cancel:hover {
  color: #596b79;
}
.btn-footer {
  background: #777;
  color: #FFF;
}
.status-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 10px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding: 6px 15px;
}
.status-message i {
  font-size: 12px;
  margin-right: 5px;
}
.status-message span {
  width: 100%;
  text-align: left;
  display: inline-block;
}
.completed .status-message {
  line-height: 17px;
}
.completed .status-message button {
  line-height: 17px;
}
.status-message#success-message,
.status-message#online-message {
  background-color: #CEF5D4;
}
.status-message#success-message i,
.status-message#online-message i {
  color: #21a335;
}
#failure-message,
#offline-message,
#offline-message-2,
#errcode-message {
  background: #FFEAD1;
  width: 100%;
  position: relative;
  text-align: center;
}
#failure-message i,
#offline-message i,
#offline-message-2 i,
#errcode-message i {
  color: #d17200;
}
.exit-page-status {
  display: inline-block;
  float: right;
}
.errorpage {
  width: 95%;
  margin: 1em auto;
  padding: 1rem 1rem 2rem;
  background: #F7F9FA;
  border: 1px solid #BBB;
  border-radius: 5px;
  font-weight: 200;
}
@media only screen and (min-width: 768px) {
  .errorpage {
    width: 85%;
  }
}
.errorpage h1 {
  font-size: 48px;
  font-weight: 200;
  color: #16263B;
  margin-bottom: 20px;
}
.errorpage p {
  margin-left: 1rem;
}
.errorpage #message {
  font-weight: bold;
}
#code {
  margin: 1rem;
  padding: 20px;
  background: #F7F9FA;
  border: 1px solid #efefef;
  border-radius: 5px;
  overflow: auto;
  font-size: 14px;
  font-weight: 200;
  line-height: 22px;
}
.error-message {
  color: #db002b;
}
.error-state {
  border: 1px solid #FFDBE2;
}
.dev {
  position: relative;
}
.dev h2 {
  margin-top: 1.8rem;
}
.dev:before {
  content: 'Hidden Question';
  font-size: 1rem;
  font-weight: 600;
  color: #16263B;
  background-color: #f1f4f6;
  border: 1px solid #BBB;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  top: -40px;
  left: 0;
}
.warning-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
  margin: 7px auto;
  padding: 0 20px;
  min-height: 60px;
  width: 90%;
  border-radius: 2px;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(22, 38, 59, 0.08);
}
.warning-box .icon-wrapper {
  margin-right: 8px;
  padding: 14px 0;
}
.warning-box .icon-wrapper i {
  font-size: 30px;
}
.warning-box .text-wrapper {
  color: #16263B;
  font-size: 30px;
  text-align: left;
  padding: 18px 0 18px 0;
}
.warning-box .text-wrapper h2,
.warning-box .text-wrapper p {
  font-size: 14px;
  line-height: 1.43;
}
.warning-box.low {
  background: #D4E7FA;
}
.warning-box.low .icon-wrapper i {
  color: #428FDB;
}
.warning-box.medium {
  background: #FFEAD1;
}
.warning-box.medium .icon-wrapper i {
  color: #E07A05;
}
.warning-box.high {
  background: #FFDBE2;
}
.warning-box.high .icon-wrapper i {
  color: #F5496C;
}
.survey-progress-screen {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  background: #16263B;
}
.survey-progress-screen p {
  color: #FFF;
}
.survey-progress-screen .survey-loading-progress-bar {
  width: 100%;
}
.progress-wrapper {
  width: 80%;
  margin: 15px auto 0;
  height: 10px;
  background-color: #333;
  border-radius: 1px;
}
.progress-bar {
  height: 10px;
  border-radius: 1px;
  background-color: #F9F8F4;
}
input[type=number] {
  padding: 3px;
}
.noanswer-row input[type=checkbox] + label:before {
  font-family: FontAwesome;
  display: inline-block;
  color: #627585;
}
.noanswer-row input[type=checkbox] + label:before {
  content: "\f096";
  width: 20px;
}
.noanswer-row input[type=checkbox]:checked + label:before {
  content: "\f046";
  color: #FF9117;
}
.row-legend {
  margin-bottom: .5rem;
}
.row-answer-list {
  background-color: #F7F9FA;
  padding: 10px 5px;
  margin-bottom: .5rem;
}
@media only screen and (min-width: 768px) {
  .row-answer-list {
    text-align: left;
    padding: .8rem;
  }
}
.block-row {
  display: block;
  margin-bottom: 5px;
}
input[type=text],
input[type=number],
textarea {
  color: #454545;
  border: 1px solid #BBB;
  padding: 5px;
}
input[type=text]:focus,
input[type=number]:focus,
textarea:focus {
  border: 1px solid #222;
  outline: thin;
}
input[type=text] {
  width: 50%;
}
@media only screen and (min-width: 536px) {
  input[type=text] {
    width: 40%;
  }
}
input[type=textarea] {
  height: 150px;
  padding: .75rem .5rem;
}
input[type=number] {
  width: 85px;
}
@media only screen and (min-width: 414px) {
  input[type=number] {
    width: 100px;
  }
}
textarea {
  width: 100%;
}
.number input,
.float input,
.text input,
.textarea input,
.number span.cdata,
.float span.cdata,
.text span.cdata,
.textarea span.cdata {
  vertical-align: middle;
}
.answers {
  list-style: none;
  padding-left: 0;
}
.answers:not(:first-child) {
  margin-top: 1rem;
}
.question-1d .grid-cell {
  margin: .8rem 0;
}
.empty-cell {
  background: transparent;
  border: none !important;
}
.empty-cell {
  width: 40%;
  text-align: left;
}
.col-legend {
  text-align: left;
  vertical-align: middle;
}
@media only screen and (min-width: 414px) {
  .col-legend {
    text-align: center;
    background: #cbcbcb;
  }
}
.open input[type=text] {
  padding: 5px;
  width: initial;
}
.question-1d input[type=radio],
.question-1d input[type=checkbox] {
  display: none;
}
.question-1d select:disabled,
.question-1d input:disabled + .input-element:before {
  color: #BEBEBE;
}
.question-1d .cell-list {
  display: table;
}
.question-1d .cell {
  display: table-cell;
  vertical-align: middle;
}
.question-1d .radio > .input-element:before {
  font-family: FontAwesome;
  display: inline-block;
  content: "\f1db";
  width: 20px;
  color: #627585;
}
.question-1d .radio input:checked + .input-element:before {
  content: "\f192";
  color: #FF9117;
}
.question-1d .checkbox > .input-element:before {
  font-family: FontAwesome;
  display: inline-block;
  content: "\f096";
  width: 20px;
  color: #627585;
}
.question-1d .checkbox input:checked + .input-element:before {
  content: "\f046";
  color: #FF9117;
}
.question-1d .open {
  margin-top: 5px;
  display: block;
}
@media only screen and (min-width: 768px) {
  .question-1d .open {
    margin-top: 0;
    margin-left: 5px;
    display: table-cell;
  }
}
.question-1d .noanswer-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.question-1d .noanswer-label .input-element {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.question-2d {
  /* All grid-view styling rules go here */
}
.question-2d table,
.question-2d tbody,
.question-2d tr {
  display: block;
}
.question-2d table td,
.question-2d tbody td,
.question-2d tr td,
.question-2d table th,
.question-2d tbody th,
.question-2d tr th {
  display: list-item;
  list-style-type: none;
}
.question-2d input[type=radio],
.question-2d input[type=checkbox] {
  display: none;
}
.question-2d select:disabled,
.question-2d input:disabled + .input-element:before {
  color: #BEBEBE;
}
.question-2d .list-2d-label {
  display: inline-block;
  text-align: left;
}
.question-2d .grid-2d-label {
  display: none;
}
.question-2d .question-2d-inputs {
  position: relative;
  vertical-align: middle;
  margin-bottom: .8rem;
  padding-left: .5rem;
}
.question-2d .question-2d-inputs input + label:before {
  display: table-cell;
}
.question-2d .question-2d-inputs .cell span {
  display: table-cell;
}
.question-2d .question-2d-inputs label.radio .cdata.list-2d-label,
.question-2d .question-2d-inputs label.checkbox .cdata.list-2d-label {
  margin-left: 25px;
}
.question-2d .radio .input-element {
  font-family: FontAwesome;
  display: inline-block;
  position: absolute;
  left: 8px;
  top: 4px;
  color: #627585;
}
.question-2d .radio .input-element:before {
  content: "\f1db";
}
.question-2d .radio input:checked + .input-element:before {
  content: "\f192";
  color: #FF9117;
}
.question-2d .checkbox .input-element {
  font-family: FontAwesome;
  display: inline-block;
  position: absolute;
  width: 25px;
  left: 8px;
  top: 4px;
  color: #627585;
}
.question-2d .checkbox .input-element:before {
  content: "\f096";
  width: 20px;
}
.question-2d .checkbox input:checked + .input-element:before {
  content: "\f046";
  color: #FF9117;
}
.question-2d .noanswers {
  padding: .1rem 0;
}
.question-2d .noanswers .row-answer {
  display: none;
}
.question-2d .noanswers .noanswer-row {
  width: 100%;
  margin-top: .4rem;
  padding-top: .8rem;
  text-align: left;
  border-top: 1px solid #cbcbcb;
}
.question-2d .noanswers .noanswer-row label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.question-2d .noanswers .noanswer-row .input-element {
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.question-2d .noanswers .noanswer-row .cdata {
  padding-left: 22px;
}
.question-2d .grid-mode {
  display: table;
  table-layout: fixed;
  min-width: 660px;
  width: 100%;
}
.question-2d .grid-mode tbody {
  display: table-row-group;
}
.question-2d .grid-mode tbody tr {
  display: table-row;
}
.question-2d .grid-mode tbody tr td,
.question-2d .grid-mode tbody tr th {
  display: table-cell;
  border: 1px solid #777;
}
.question-2d .grid-mode tbody tr td.row-answer,
.question-2d .grid-mode tbody tr th.row-answer {
  min-width: 300px;
}
.question-2d .grid-mode tbody tr td .list-2d-label,
.question-2d .grid-mode tbody tr th .list-2d-label {
  display: none;
}
.question-2d .grid-mode tbody tr td .grid-2d-label,
.question-2d .grid-mode tbody tr th .grid-2d-label {
  display: inline-block;
  width: 100%;
  padding: .3rem;
}
.question-2d .grid-mode tbody tr td .radio .input-element,
.question-2d .grid-mode tbody tr th .radio .input-element,
.question-2d .grid-mode tbody tr td .checkbox .input-element,
.question-2d .grid-mode tbody tr th .checkbox .input-element {
  position: relative;
  left: 0;
  top: 0;
}
.question-2d .grid-mode tbody tr .question-2d-inputs {
  text-align: center;
  margin-bottom: 0;
  padding-left: 0;
}
.question-2d .grid-mode tbody tr .question-2d-inputs label {
  display: block;
}
.question-2d .grid-mode tbody .noanswers .row-answer {
  display: table-cell;
}
.question-2d .grid-mode tbody .noanswers .noanswer-row {
  text-align: center;
  margin: 0;
  padding: 0;
  height: 47px;
  border-top: none;
  border-left: none;
}
.question-2d .grid-mode tbody .noanswers .noanswer-row label {
  display: block;
  font-size: 1rem;
  line-height: 47px;
}
.question-2d .grid-mode tbody .noanswers .noanswer-row label .cdata {
  display: none;
}
.select-wrap {
  position: relative;
  font-family: fontawesome;
  display: inline-block;
  min-width: 125px;
  max-width: 100%;
  margin-bottom: 8px;
}
.select-wrap:after {
  position: absolute;
  content: "\f107";
  height: 1em;
  font-size: 1em;
  line-height: 1;
  right: 7px;
  top: 50%;
  margin-top: -0.5em;
  color: #BBB;
  pointer-events: none;
}
.select-wrap select {
  width: 100%;
  font-size: 1em;
  outline: thin;
  background: #F7F9FA;
  color: #16263B;
  white-space: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  padding: 5px 20px 5px 7px;
  border: 1px solid #BBB;
  cursor: pointer;
}
.question-1d label.select + .select-wrap {
  display: block;
  margin: 8px 0;
}
.question-1d .select {
  margin-bottom: .3rem;
}
.question-2d .cdata.list-2d-label + .select-wrap {
  margin-top: 10px;
}
.select-grid .grid-mode label.select {
  padding: 10px 10px 3px 10px;
}
.select-grid .grid-mode .select-wrap {
  min-width: 100%;
}
.language-select label {
  display: block;
  margin-top: 2rem;
  margin-bottom: .5rem;
}
.language-select .select-wrap {
  min-width: 220px;
}
.language-select .select-wrap:after {
  color: #16263B;
}
.language-select .select-wrap select:hover {
  border: 1px solid #a7a7a7;
}
.projects {
  position: relative;
  max-width: 768px;
  margin: auto;
  top: 50px;
}
.projects-nav-wrapper .header-nav-button.open {
  background-color: #F7F9FA;
}
.projects-nav-options {
  position: fixed;
  display: inline-block;
  float: left;
  margin-top: 40px;
  margin-left: 15px;
  z-index: 10;
  min-width: 150px;
  border-radius: 4px;
  background: #F7F9FA;
  box-shadow: 0 4px 12px 0 rgba(22, 38, 59, 0.28);
}
.projects-nav-options button {
  position: relative;
  padding: 10px 30px;
  display: block;
  width: 100%;
  text-align: left;
}
.projects-nav-options button i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #82EB7F;
}
.projects-nav-options button:first-child {
  border-bottom: 1px solid #BBB;
  border-radius: 0;
}
.offline-status {
  background: url('../offline-icon.svg') no-repeat center;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-top: 11px;
}
.projects-nav {
  text-align: center;
  padding: 20px 0;
  background-color: #333;
  color: #EFEFEF;
  width: 100%;
  clear: both;
}
.projects-nav .projects-nav-dropdown {
  float: left;
  margin-left: 10px;
  cursor: pointer;
}
.projects-refresh-hidden {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 50px;
  background: #F7F9FA;
  padding-top: 9px;
  color: #333;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.projects-list {
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  position: absolute;
  width: 100%;
}
.projects-list-container {
  /* override .outer-container padding */
  padding: 0;
  background: #F7F9FA;
  overflow: auto;
}
.projects-list-item {
  padding: 13px 15px;
  margin: 7px auto;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FFF;
  border-radius: 2px;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(22, 38, 59, 0.08);
  width: 97%;
  text-align: initial;
}
.projects-list-item .projects-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 75%;
          flex: 1 1 75%;
  min-width: 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.projects-list-item .projects-info .projects-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.projects-list-item .projects-info .projects-name .truncated-text {
  width: 83%;
}
.projects-list-item .projects-action {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10%;
          flex: 1 1 10%;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.projects-list-item .projects-name .truncated-text {
  color: #16263B;
  font-size: 18px;
  text-decoration: none;
}
.projects-info .closed-label {
  display: block;
  font-style: italic;
  font-size: 10px;
  color: #BB0000;
  margin-top: 6px;
}
.projects-list-item.survey-closed {
  background: #ececec;
}
.projects-list-item.survey-closed .projects-name .truncated-text,
.projects-list-item.survey-closed .projects-stats {
  color: #777;
}
.projects-list-item.survey-closed .projects-stats {
  font-size: 12px;
}
.projects-list-item .projects-stats span {
  font-size: 12px;
}
.projects-list-item .projects-stats span:not(:last-child) {
  padding-right: 5px;
}
.projects-icon {
  text-align: center;
  display: inline-block;
  font-size: 10px;
  font-weight: 300;
}
.projects-icon i {
  font-size: 16px;
}
.projects-icon i.enter-survey {
  font-size: 25px;
  color: #16263B;
}
.projects-stats {
  color: #627585;
}
.projects-warning {
  font-size: 0.75rem;
}
.new-badge {
  padding: 2px 5px;
  text-align: center;
  margin: 0 5px;
  font-size: 0.7rem;
  background: #E5F2EC;
  color: #1A825F;
  border-radius: 3px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.resume-text {
  font-size: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #BBB;
}
.projects-list-null {
  text-align: center;
  padding: 20px 0;
}
.progress-box-outer,
.progress-text {
  display: inline-block;
  vertical-align: top;
}
.progress-box-outer {
  background-color: transparent;
  width: 100%;
  height: 0.25rem;
  display: inline-block;
}
.progress-box-completed {
  background-color: #444;
  width: 0;
  height: 100%;
  display: block;
}
.sq-audiotestimonial {
  margin: 21px auto;
  text-align: center;
  width: 100%;
}
.sq-audiotestimonial .dq-button-icon {
  background-color: #696a69;
  border-radius: 50%;
  color: #FFF;
  font-size: 75px;
  height: 125px;
  width: 125px;
  margin: auto;
}
.sq-audiotestimonial .dq-button-icon.fa-play:before {
  padding-left: 15px;
}
.sq-audiotestimonial p {
  margin: 20px 0px;
}
.sq-audiotestimonial .dq-video-reset {
  color: #F5496C;
  display: block;
  margin: 20px auto;
}
.sq-audiotestimonial .sq-audiotestimonial-na {
  padding-top: 15px;
}
.sq-imgupload {
  margin: 21px auto;
  text-align: center;
}
.sq-imgupload img.sq-imgupload-preview {
  display: block;
  max-width: 100%;
}
.sq-imgupload .sq-imgupload-icon-btn {
  background: #696a69;
  border-radius: 50%;
  font-size: 65px;
  margin: 15px auto 15px;
  width: 125px;
  height: 125px;
  color: #FFF;
}
.sq-imgupload .sq-imgupload-dismiss {
  color: #16263B;
  background-color: #F7F9FA;
  border-radius: 50%;
  font-size: 3em;
  line-height: 35px;
  margin: 10px;
  opacity: 0.7;
  position: absolute;
  right: 10%;
  width: 35px;
  z-index: 1;
}
.sq-imgupload .sq-imgupload-select {
  display: block;
  width: 170px;
  padding: 10px;
  margin: 15px auto;
}
.sq-imgupload .sq-imgupload-select.sq-imgupload-photo {
  color: #FFF;
  background-color: #5AE070;
}
.sq-imgupload .sq-imgupload-select.sq-imgupload-link {
  background-color: #DDD;
}
.sq-imgupload .sq-imgupload-na {
  padding-top: 15px;
}
.sq-videocapture {
  width: 100%;
  margin: 21px auto;
  text-align: center;
}
.sq-videocapture .sq-videocapture-select {
  margin: 15px auto;
  text-align: center;
}
.sq-videocapture .sq-videocapture-select button {
  padding: 10px;
  margin: 10px auto 5px;
  width: 170px;
}
.sq-videocapture .sq-videocapture-select p {
  font-size: 0.7em;
  margin-bottom: 15px;
}
.sq-videocapture .sq-videocapture-select .sq-videocapture-rec-btn {
  background-color: #5AE070;
  color: #FFF;
}
.sq-videocapture .sq-videocapture-select .sq-videocapture-gallery-btn {
  background-color: #DDD;
}
.sq-videocapture .sq-videocapture-icon-btn {
  background: #696a69;
  border-radius: 50%;
  font-size: 65px;
  margin: 15px auto 15px;
  width: 125px;
  height: 125px;
}
.sq-videocapture .sq-videocapture-icon-btn.fa {
  color: #FFF;
}
.sq-videocapture .sq-videocapture-icon-btn.fa-play:before {
  padding-left: 15px;
}
.sq-videocapture .sq-videocapture-reset {
  color: #BB0000;
  display: block;
  margin: 0 auto 15px;
}
.sq-videocapture .sq-videocapture-na {
  padding-top: 15px;
}
/*********** Button Select (atm1d) ************/
.sq-atm1d-block > .error-label {
  margin: 1rem 0;
}
.sq-atm1d-row {
  list-style: none;
  max-width: 100%;
  max-height: 100%;
}
.sq-atm1d-table {
  display: table;
  width: 100%;
  height: 100%;
}
.sq-atm1d-tr {
  display: table-row;
}
.sq-atm1d-td {
  display: table-cell;
  vertical-align: middle;
}
.sq-atm1d-td img {
  vertical-align: middle;
  pointer-events: none;
}
/* Our grid */
ul.sq-atm1d-tiled,
ul.sq-atm1d-multicol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.sq-atm1d-tiled {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
ul.sq-atm1d-multicol {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sq-atm1d-vertical li.sq-atm1d-row {
  display: list-item;
}
.sq-atm1d-tiled li.sq-atm1d-row,
.sq-atm1d-multicol li.sq-atm1d-row,
.sq-atm1d-horizontal li.sq-atm1d-row {
  display: inline-block;
}
/* A single button (label) */
.sq-atm1d-button {
  cursor: pointer;
  background-color: #696a69;
  border-radius: 4px;
  border: 0 solid transparent;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #FFFFFF;
  list-style: none outside;
  padding: 3px 8px;
}
.sq-atm1d-button .sq-atm1d-openEnd input[type=text] {
  color: #454545;
  font-size: 1rem;
}
@media only screen and (min-width: 1028px) {
  .sq-atm1d-button:hover {
    background-color: #C5D600;
  }
}
input:checked ~ label.sq-atm1d-button {
  background-color: #2BBDB9;
}
.sq-atm1d-vertical .sq-atm1d-button,
.sq-atm1d-tiled .sq-atm1d-button,
.sq-atm1d-multicol .sq-atm1d-button,
.sq-atm1d-horizontal .sq-atm1d-button {
  margin: 3px;
}
/* Button Icons */
.sq-atm1d-tr-top .sq-atm1d-td:before,
.sq-atm1d-tr-bottom .sq-atm1d-td:after {
  font-family: FontAwesome, sans-serif;
  display: inline-block;
  width: 15px;
}
.sq-atm1d-tr-bottom {
  text-align: center;
  height: 15px;
}
.sq-atm1d-td.sq-atm1d-button-icon {
  width: 15px;
}
/**
 * Button Inputs and Icons
 * Vertical always displays the input icon to the left of the content
 * Tiled, Horizontal, and Multicol display the input icon centered underneath the content
 */
/* Hide all form radios and checkboxes */
.sq-atm1d-widget input[type=radio],
.sq-atm1d-widget input[type=checkbox],
.sq-atm1d-show-input-false .sq-atm1d-button-icon,
.sq-atm1d-show-input-false .sq-atm1d-tr-bottom,
.sq-atm1d-vertical .sq-atm1d-tr-bottom,
.sq-atm1d-tiled .sq-atm1d-tr-top .sq-atm1d-button-icon,
.sq-atm1d-multicol .sq-atm1d-tr-top .sq-atm1d-button-icon,
.sq-atm1d-horizontal .sq-atm1d-tr-top .sq-atm1d-button-icon {
  display: none;
}
.sq-atm1d-vertical input[type=radio] ~ .sq-atm1d-button .sq-atm1d-tr-top .sq-atm1d-button-icon:before {
  content: "\f1db";
}
.sq-atm1d-vertical input[type=radio]:checked ~ .sq-atm1d-button .sq-atm1d-tr-top .sq-atm1d-button-icon:before {
  content: "\f192";
}
.sq-atm1d-vertical input[type=checkbox] ~ .sq-atm1d-button .sq-atm1d-tr-top .sq-atm1d-button-icon:before {
  content: "\f096";
}
.sq-atm1d-vertical input[type=checkbox]:checked ~ .sq-atm1d-button .sq-atm1d-tr-top .sq-atm1d-button-icon:before {
  content: "\f046";
}
.sq-atm1d-tiled input[type=radio] ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-multicol input[type=radio] ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-horizontal input[type=radio] ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after {
  content: "\f1db";
}
.sq-atm1d-tiled input[type=radio]:checked ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-multicol input[type=radio]:checked ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-horizontal input[type=radio]:checked ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after {
  content: "\f192";
}
.sq-atm1d-tiled input[type=checkbox] ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-multicol input[type=checkbox] ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-horizontal input[type=checkbox] ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after {
  content: "\f096";
}
.sq-atm1d-tiled input[type=checkbox]:checked ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-multicol input[type=checkbox]:checked ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after,
.sq-atm1d-horizontal input[type=checkbox]:checked ~ .sq-atm1d-button .sq-atm1d-tr-bottom .sq-atm1d-button-icon:after {
  content: "\f046";
}
.sq-atm1d-openEnd {
  display: block;
  margin-top: 5px;
}
.sq-atm1d-openEnd input[type=text] {
  width: 80%;
}
/* Button Content padding and alignment */
.sq-atm1d-content {
  padding: 5px;
}
.sq-atm1d-content.sq-atm1d-content-align-left {
  text-align: left;
}
.sq-atm1d-content.sq-atm1d-content-align-center {
  text-align: center;
}
.sq-atm1d-content.sq-atm1d-content-align-right {
  text-align: right;
}
/* Button alignment */
.sq-atm1d-block .sq-atm1d-buttons {
  display: inline-block;
  width: 100%;
  font-size: 0;
  margin: 0;
  padding: 0;
}
.sq-atm1d-block.sq-atm1d-button-align-left {
  text-align: left;
}
.sq-atm1d-block.sq-atm1d-button-align-center {
  text-align: center;
}
.sq-atm1d-block.sq-atm1d-button-align-right {
  text-align: right;
}
body {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
}
.btn {
  padding: 11px;
}
.btn-action {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.btn-link {
  border: none;
}
.survey-complete-body,
.survey-complete-footer {
  top: 50px;
}
.outer-container {
  top: 50px;
}
.slideout-menu-header {
  font-size: 16px;
  padding: 11px 14px 11px 25px;
  border-bottom: none;
}
.slideout-menu-header .user-type {
  line-height: 30px;
}
.slideout-menu-header button {
  font-size: 14px;
  padding: 5px 8px;
  font-weight: 600;
  line-height: 1.43;
  background-color: #F0F2F3;
}
.slideout-menu-body .languages li button.activeLanguage {
  color: #627585;
}
.storage-space {
  color: #627585;
  font-size: 12px;
  font-weight: normal;
}
.login-tab.active {
  color: #16263B;
}
.login-body {
  padding: 35px;
}
.login-body .form-group.password-field a {
  color: #627585;
  border-bottom: 1px solid;
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .login-body {
    padding: 20px;
    border: 1px solid #BBB;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
}
.login-form .languages {
  padding-left: 0;
}
.login-form .languages li {
  display: inline-block;
  margin-right: 7px;
  color: #CBD2D6;
}
.login-form .languages li button {
  font-size: 12px;
  border-bottom: 1px solid;
  border-radius: 0;
}
.login-form .languages li button.activeLanguage {
  color: #CBD2D6;
  border-bottom: none;
}
.forgot-form-wrapper p {
  color: #627585;
  line-height: 17px;
}
.background-angle-gradient {
  height: 110%;
  width: 200%;
  position: fixed;
  top: 425px;
  right: -300px;
  background: linear-gradient(270deg, #00CA43, #00D4E8);
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
  z-index: -10;
}
@media only screen and (min-width: 768px) {
  .background-angle-gradient {
    top: 86%;
  }
}
.background-angle-blue {
  height: 110%;
  width: 200%;
  position: fixed;
  top: 425px;
  left: -300px;
  background-color: #16263B;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .background-angle-blue {
    top: 86%;
  }
}
.projects-list {
  margin-top: 7px;
}
.projects-list-item {
  min-height: 70px;
  width: 90%;
}
.projects-list-item .projects-name .truncated-text {
  font-size: 14px;
  font-weight: 500;
}
.projects-list-item .projects-stats {
  margin-top: 5px;
}
.projects-list-item .projects-stats span {
  color: #3E5467;
  font-size: 12px;
}
.new-badge {
  font-size: 11px;
  font-weight: 900;
  border-radius: 9px;
  padding: 3px 8px;
}
.projects-icon {
  color: #627585;
  font-size: 8px;
}
.projects-icon i {
  color: #8394A3;
  font-size: 18px;
}
.panel-project-title {
  color: #16263B;
}
.survey-progress-screen .progress-wrapper {
  height: 5px;
  border-radius: 0;
}
.survey-progress-screen .progress-bar {
  height: 5px;
  border-radius: 0;
  background: linear-gradient(to right, #00c753, #00d4e8);
}
.loading-screen .loading-spinner-container {
  height: 50px;
}
header .loading-spinner {
  height: calc(25px);
}
.projects-icon .loading-spinner-container {
  height: 20px;
  margin-bottom: 3px;
}
.status-upload .loading-spinner-container {
  height: 10px;
  width: 10px;
  margin-right: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.status-upload .status-action {
  vertical-align: middle;
}
.partial-upload .loading-spinner-container {
  width: 15px;
}
.respview-header .respview-saved-status .loading-spinner-container {
  margin-right: 5px;
}
/**
 * Intentionally empty.
 * Used when we are not building a panel app, or if we're building a themeless panel app
 */
