@import 'fonts.css';
.clear {
  clear: both;
  display: block;
  width: 100% !important;
  float: none !important;
}
.block {
  width: 100%;
  height: 100%;
  display: block;
}
.spacer {
  clear: both;
  display: block;
  width: 100% !important;
  float: none !important;
  height: 50px;
}
.spacer.half {
  height: 50px/2;
}
.spacer.third {
  height: 50px/3;
}
.spacer.quart {
  height: 50px/4;
}
.spacer.double {
  height: 100px;
}
.spacer.trip {
  height: 150px;
}
.spacer.quad {
  height: 200px;
}
.divide_2 > * {
  width: 50%;
  float: left;
}
.divide_3 > * {
  width: 100%/3;
  float: left;
}
.divide_4 > * {
  width: 100%/4;
  float: left;
}
.divide_5 > * {
  width: 100%/5;
  float: left;
}
.divide_6 > * {
  width: 100%/6;
  float: left;
}
.vertical-divider {
  height: 100%;
  display: inline-block;
  background-color: #52676c;
  width: 1px;
}
.align,
.align-bottom {
  position: absolute;
}
.align-bottom {
  bottom: 0;
}
.align-center {
  text-align: center;
}
.align-left {
  float: left;
  margin-right: 50px/2;
}
.align-right {
  float: right;
  margin-left: 50px/2;
}
.pos-center {
  margin: 0 auto;
}
.blank {
  height: 1px;
  display: block;
  width: 50px/4;
  display: inline-block;
}
.blank.double {
  width: 50px/2;
}
.blank.quad {
  width: 50px;
}
html {
  min-height: 100%;
}
body {
  background: #01859e url('../images/psyrvey-bg-static.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  font-family: 'ch_book';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.06em;
  transition: all 500ms ease;
  min-height: 100vh;
  padding-top: 60px;
}
body.theme-light {
  background: #fff;
  color: #01859e;
}
body.theme-light .main-content a {
  color: #01859e;
}
body.theme-light .main-content a:hover {
  color: #01859e;
  text-decoration: underline;
}
body.print-patient-data #header_print {
  display: none !important;
}
body .bg_animation_container {
  display: none;
}
body.inside-session {
  padding-top: 0;
}
body.inside-session .main-content {
  height: 100vh;
}
body.inside-session #footer {
  display: none;
}
.container,
.container-fluid {
  position: relative;
  z-index: 5;
}
.theme-light {
  background-color: #fff;
}
.theme-dark {
  background-color: rgba(82, 103, 108, 0.8);
}
@keyframes bg_animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bg_animation_container {
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bg_animation {
  background: transparent url('../images/psyrvey-bg-static.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.5;
  height: 200%;
  width: 200%;
  display: block;
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  z-index: 2;
}
.animation_bg_1 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  animation-name: bg_animation;
  animation-duration: 4500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.animation_bg_2 {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  animation-name: bg_animation;
  animation-duration: 7000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-family: 'ch_semibold';
  font-weight: normal;
}
a,
a:visited {
  color: #fff;
}
a:hover,
a:visited:hover {
  color: #fff;
}
#header_print {
  display: none;
}
#header_print .logo {
  float: left;
  padding-top: 10px;
}
#header_print .logo img {
  height: 40px;
  width: auto;
  margin-top: -5px;
}
#header {
  height: 50px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 400;
}
#header .logo {
  float: left;
  padding-top: 10px;
}
#header .logo a {
  font-weight: bold;
  line-height: 28px;
  font-size: 30px;
  font-family: 'Tahoma';
}
#header .logo a:hover {
  text-decoration: none;
}
#header .logo img {
  height: 40px;
  width: auto;
  margin-top: -5px;
}
#header .page-title {
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-family: 'ch_semibold';
}
#header .header-user-content {
  position: absolute;
  right: 100px;
  line-height: 50px;
  color: #fff;
}
#header .header-user-content .icon-container {
  display: inline-block;
  display: none;
  bottom: 13px;
  position: absolute;
  left: -38px;
  font-size: 25px;
}
#header .menu-toggle {
  float: right;
  color: #fff;
  height: 50px;
  width: 50px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#header .menu-toggle .icon-container {
  font-size: 30px;
}
#header .menu-toggle .icon-container > span {
  line-height: 50px;
}
#header .menu-toggle:hover {
  cursor: pointer;
}
#header .menu-toggle.open {
  color: #fff;
}
#header .navigation {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 600;
  list-style-type: none;
  padding: 0;
  background-color: rgba(51, 51, 51, 0.8);
  display: none;
}
#header .navigation.open {
  display: block;
}
#header .navigation > li > a {
  display: block;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 300ms;
}
#header .navigation > li > a:hover {
  background-color: #3e3e3e;
  text-decoration: none;
}
.main-content {
  padding-bottom: 50px;
  position: relative;
}
.small-container {
  max-width: 300px;
  margin: 0 auto;
}
.small-container .image-container {
  width: 60%;
  margin: 0 auto;
}
.small-container .image-container img {
  width: 100%;
  height: auto;
}
.wrap {
  background-color: rgba(255, 255, 255, 0.97);
  padding: 25px 50px;
  color: #52676c;
}
body.login .main-content {
  max-width: 300px;
  padding-top: 10%;
}
body.login .main-content .auth-header-logo {
  width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 42px;
  font-family: 'Tahoma';
  font-weight: bold;
}
body.login .main-content form input[type="password"],
body.login .main-content form input[type="text"] {
  text-align: center;
  font-size: 140%;
  letter-spacing: 0.2em;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}
body.new-session .main-content {
  max-width: 300px;
  padding-top: 10%;
}
body.new-session .main-content .form-date input {
  text-align: center;
}
.container table {
  width: 100%;
}
.container table thead {
  font-family: 'ch_semibold';
}
.container table tr {
  line-height: 50px;
  border-bottom: 1px solid #51b9cb;
}
.vcards {
  padding-left: 3mm;
}
.vcards ul {
  width: 190mm;
  list-style: none;
  position: absolute;
  z-index: 100;
  padding: 0;
}
.vcards li {
  overflow: hidden;
  float: left;
  width: 85mm;
  height: 56mm;
  padding: 3mm;
  position: relative;
}
.vcards li:nth-child(odd) {
  margin-right: 14mm;
}
.vcards li .vcard-logo {
  width: 150px;
  margin-left: -15px;
}
.vcards .icon-container {
  float: left;
  font-size: 20px;
  line-height: 40px;
  margin-right: 10px;
  margin-left: 5px;
}
.vcards .vcard-user,
.vcards .vcard-pass {
  font-size: 17px;
  line-height: 40px;
}
.vcards .vcard-user {
  border-bottom: 1px solid #01859e;
  display: inline-block;
  width: 40mm;
  margin-top: 5px;
}
.vcards .vcard-qr {
  float: left;
  margin-right: 2mm;
  padding-top: 8px;
  height: 22mm;
  width: 22mm;
}
.vcards .vcard-qr img {
  height: 100%;
  width: auto;
}
.vcards .vcard-descr {
  margin-top: 10px;
  font-size: 10px;
}
form input {
  color: #52676c;
}
.theme-light form input {
  color: #52676c;
}
form > ul {
  list-style: none;
  padding-left: 0;
}
form .form-group.form-username,
form .form-group.form-number,
form .form-group.underlined {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
form .form-group.form-number {
  text-align: center;
}
form .form-group.form-number input {
  box-shadow: 0 0 0px 1px #fff;
  width: 70px;
  line-height: 40px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
form .form-group.form-date input {
  font-size: 120% !important;
}
form .form-group .icon-container {
  position: absolute;
  color: #fff;
  font-size: 30px;
  line-height: 40px;
}
form .form-group .icon-container > span {
  line-height: 40px;
}
form input[type="password"],
form input[type="text"],
form input[type="email"],
form input[type="url"],
form input[type="number"],
form textarea,
form select {
  background-color: transparent;
  border: none;
  box-shadow: none;
  letter-spacing: 0.06em !important;
  padding: 10px/2 10px;
  width: 100%;
}
form input[type="password"]:focus,
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="url"]:focus,
form input[type="number"]:focus,
form textarea:focus,
form select:focus {
  glow: none;
  outline: none;
}
form input[type="password"] {
  background-color: rgba(255, 255, 255, 0.2);
}
form select {
  background-color: #fff;
  color: #52676c;
  border: 1px solid #52676c;
  margin-bottom: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
form select:hover {
  cursor: pointer;
}
form .text_length_counter {
  float: right;
  color: gray;
  font-size: 12px;
}
form .text_length_counter.too_long {
  font-size: 14px;
  font-weight: bold;
  color: red;
}
form .form-checkbox {
  position: relative;
  text-align: left;
}
form .form-checkbox input[type="checkbox"] {
  margin-right: 10px;
  position: absolute;
}
form .form-checkbox input[type="checkbox"] + label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-left: 50px / 2;
}
form .form-checkbox input[type="checkbox"] + label a {
  text-decoration: underline;
}
form input.simple-submit {
  border: none;
  padding: 0;
  background-color: transparent;
  border: 0;
  font-family: 'ch_semibold';
}
form input.simple-submit:hover {
  text-decoration: underline;
}
form.change_patient_details {
  display: inline-block;
  margin: 0;
}
form.change_patient_details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
form.change_patient_details li {
  float: left;
  margin-left: 10px;
}
form.change_patient_details label {
  color: #fff;
  margin-bottom: 0;
}
form.change_patient_details input {
  width: auto;
  padding: 0;
}
form.basisdoku {
  margin-top: 30px;
}
form.basisdoku ul {
  list-style: none;
}
form.basisdoku li {
  margin-bottom: 10px;
}
form.basisdoku li input,
form.basisdoku li select,
form.basisdoku li textarea {
  background-color: #c7e8ee;
  color: #52676c;
  min-width: 355px;
  width: auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
form.basisdoku li input:focus,
form.basisdoku li select:focus,
form.basisdoku li textarea:focus {
  box-shadow: 0 0 2px #565656;
}
form.basisdoku li textarea {
  resize: none;
}
form.basisdoku li label {
  width: 250px;
  vertical-align: top;
  padding-top: 5px;
  padding-right: 20px;
}
form.basisdoku li .helptext {
  margin-left: 255px;
  display: block;
}
.button {
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 50px;
  border: none;
  box-shadow: none;
  background-color: #51b9cb;
  color: #fff !important;
  display: inline-block;
  padding: 0 10px;
  transition: all 500ms ease;
  position: relative;
}
.button-large {
  font-size: 22px;
  width: 100%;
  display: block;
}
.button-large:hover {
  background-color: #38a8bb;
}
.button-large:active,
.button-large:focus {
  outline: none;
  glow: none;
  animation: blink;
  animation-duration: 500ms;
}
.button-large.button-disabled {
  opacity: 0.5;
}
.button-large.button-disabled:hover {
  background-color: #51b9cb !important;
}
.button.contentary {
  background-color: transparent;
  border: 1px dashed #52676c;
  padding: 10px 0;
  color: #fff;
  border-color: #fff;
}
.theme-light .button.contentary {
  border-color: #52676c;
}
.button.contentary:hover {
  color: #fff;
  border: 1px solid #52676c;
}
.theme-light .button.contentary {
  color: #52676c !important;
}
.theme-light .button.contentary:hover {
  color: #01859e !important;
}
.button-small {
  font-size: 16px;
  line-height: 40px;
}
.button.transparent,
.button.transparent:hover {
  background-color: transparent;
}
.button .icon-container {
  font-size: 30px;
  display: inline-block;
  line-height: 50px;
}
.button.left > .icon-container {
  float: left;
}
.button.right > .icon-container {
  float: right;
}
.button-submit {
  color: #fff !important;
}
.contentary-help {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px dashed #52676c;
  border-color: #fff;
  font-size: 80%;
  padding: 8px;
  width: 75%;
  margin: -1px auto 0 auto;
}
.theme-light .contentary-help {
  border-color: #52676c;
}
.datepicker-dropdown {
  padding: 8px;
}
.datepicker-dropdown:before,
.datepicker-dropdown:after {
  left: 50% !important;
  margin-left: -3px;
}
.datepicker-dropdown thead,
.datepicker-dropdown .month,
.datepicker-dropdown .year {
  color: #52676c;
}
.datepicker-dropdown .day {
  color: #52676c;
  padding: 7px;
}
.datepicker-dropdown .day.active {
  background-image: none;
  background-color: #01859e !important;
}
.datepicker-dropdown .day.active:hover {
  background-color: #015a6b !important;
  background-image: none;
}
.datepicker-dropdown .day.today {
  background-image: none;
  background-color: transparent;
  color: #000;
  font-family: 'ch_semibold';
}
.datepicker-dropdown .day.today:hover {
  background-color: #01859e !important;
  background-image: none;
}
.datepicker-dropdown .day.disabled {
  color: rgba(1, 133, 158, 0.6);
}
.datepicker-dropdown .day.disabled:hover {
  color: rgba(1, 133, 158, 0.6);
}
.primary_not_selector {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 10px -5px;
}
.primary_not_selector .notification_selector {
  margin: 0 5px;
}
.notification_selector {
  background-color: #fff;
  flex-grow: 1;
  display: block;
  border: 2px solid #b8c3c5;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
  transition: all 300ms;
}
.notification_selector label {
  cursor: pointer;
  margin-bottom: 0;
}
.notification_selector input {
  display: none;
}
.notification_selector:hover {
  background-color: #bfecfb;
}
.notification_selector.active {
  border: 2px solid #01859e;
  background-color: #ecfcff;
  box-shadow: 0 0 3px #01859e;
}
small.notification_selector {
  font-size: 13px;
  border-color: #e0e0e0;
  padding: 6px 12px;
}
p.legal {
  padding: 15px;
  background-color: #eee;
  border-radius: 4px;
  margin-bottom: 10px;
}
p.legal.notice {
  background-color: #01859e;
  color: #fff;
}
#onboarding .wrap {
  border: 4px solid #fff;
}
#onboarding .wrap h3 {
  margin-bottom: 20px;
}
#onboarding .wrap.valid {
  border-color: #3fc790;
  pointer-events: none;
  background-color: #e7ffe7;
  opacity: 0.7;
}
#onboarding .wrap.valid > * {
  display: none;
}
#onboarding .wrap.valid > h3 {
  display: block;
}
#onboarding .wrap.error {
  border-color: #c73f3f;
}
#onboarding .wrap.inactive {
  opacity: 0.7;
  pointer-events: none;
}
#onboarding .wrap.inactive > * {
  display: none;
}
#onboarding .wrap.inactive > h3 {
  display: block;
}
#onboarding input[type="submit"] {
  float: right;
  position: relative;
  transition: all 300ms;
}
#onboarding input[type="submit"]:after,
#onboarding input[type="submit"]:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  height: 4px;
  width: 4px;
  margin-top: -2px;
  background-color: #fff;
}
#onboarding input[type="submit"]:before {
  left: -4px;
}
#onboarding input[type="submit"]:after {
  right: -4px;
}
#onboarding input[type="submit"].disabled {
  opacity: 0.7;
  pointer-events: none;
}
#onboarding input[type="text"],
#onboarding input[type="number"],
#onboarding input[type="email"],
#onboarding input[type="tel"],
#onboarding input[type="password"] {
  border: 1px solid #01859e;
  margin-bottom: 20px;
  line-height: 40px;
  font-size: 22px;
}
#onboarding .iti {
  display: block;
}
#onboarding .iti input[type="tel"] {
  margin-bottom: 20px !important;
  display: block;
  padding-top: 10px/2;
  padding-bottom: 10px/2;
  width: 100%;
}
#onboarding #email_valid-msg {
  float: right;
  margin-top: -56px;
  position: relative;
  margin-right: 20px;
  color: #3fc790;
}
#onboarding .scroll_container {
  border: 1px solid #51b9cb;
  max-height: 50vh;
  overflow: auto;
  padding: 10px;
  margin-bottom: 20px;
}
#onboarding hr {
  border-top-color: #51b9cb;
}
.question-subtext {
  font-size: 80%;
}
.question_form {
  margin-top: 30px;
}
@keyframes blink {
  50% {
    background-color: #bbeafa;
  }
  100% {
    background-color: #a8e4f8;
  }
}
.answer-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #a8e4f8;
  border-right: 1px solid #a8e4f8;
  background-color: #d9f5ff;
  margin-bottom: 50px;
}
.answer-list > li {
  border-bottom: 1px solid #a8e4f8;
  border-left: 1px solid #a8dce5;
  display: block;
  margin-bottom: 0;
  text-align: center;
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.answer-list > li label {
  display: block;
  padding: 15px 0;
  margin: 0;
  color: #01859e;
  cursor: pointer;
}
.answer-list > li input {
  display: none;
}
.answer-list > li:hover {
  background-color: #a8e4f894;
}
.answer-list > li.selected {
  background-color: #004f6ac2;
}
.answer-list > li.selected label {
  color: #fff;
}
.answer-list.likert {
  position: relative;
  display: flex;
  justify-content: stretch;
}
.answer-list.likert > li {
  flex-grow: 1;
}
.answer-list.likert:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(to top left, #a8dce500, #a8dce591 50%, #eee0 51%, #eee0 75%);
  pointer-events: none;
}
.answer-list.likert.downwards:after {
  background: linear-gradient(to top right, #a8dce500, #a8dce591 50%, #eee0 51%, #eee0 75%);
}
.answer-text-list {
  margin-left: 20px;
  font-size: 14px;
}
.answer-text-list li {
  padding-block: 5px;
}
.answer-time {
  display: flex;
  align-items: center;
  justify-content: center;
}
.answer-scale {
  margin: 0 10px;
}
.answer-scale .scale-input {
  flex-grow: 1;
}
.answer-scale .scale-labels {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}
.answer-scale .scale-label.last {
  text-align: right;
}
.question_text {
  border: 1px solid #01859e !important;
  resize: none;
  min-height: 140px;
}
input[type="range"] {
  margin-top: 20px;
  margin-bottom: 20px;
}
.question-footer {
  margin-top: 40px;
}
.question-footer .skip-question {
  display: block;
  margin-top: 10px;
}
.self-trigger-container {
  margin-top: 20px;
}
.self-trigger-container a.button {
  padding-inline: 40px;
}
.patients-list-item,
.patients-list-header {
  border-bottom: 1px solid #fff;
  margin: 0;
  border-color: #fff;
}
.theme-light .patients-list-item,
.theme-light .patients-list-header {
  border-color: #52676c;
}
.patients-list-header {
  line-height: 70px;
}
.patients-list-item .patient-name {
  margin: 18px 0px;
}
.patients-list-item .patient-name .triggered {
  float: left;
  display: block;
  width: 30px;
  height: 70px;
  position: relative;
  cursor: pointer;
}
.patients-list-item .patient-name .triggered .icon {
  color: #c3253f;
  width: 26px;
  height: 26px;
  margin-top: 21px;
  margin-left: -6px;
  border: 2px solid #c3253f;
  padding-left: 9px;
  font-family: 'ch_semibold';
  line-height: 24px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
}
.patients-list-item .patient-name .triggered .hoverlay {
  display: none;
  padding: 10px;
  background-color: #fbecee;
  border: 1px solid #c3253f;
  width: 490px;
  position: absolute;
  top: 2px;
  left: 30px;
  z-index: 9999;
  text-shadow: 0 1px 1px #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.patients-list-item .patient-name .triggered .hoverlay p {
  margin: 0;
}
.patients-list-item .patient-name .triggered:hover .hoverlay {
  display: block;
}
.patients-list-item .patient-name > a {
  display: block;
  line-height: 70px;
  text-decoration: underline;
}
.patients-list-item .patient-name > a:hover {
  color: #52676c !important;
}
.patients-list-item .patient-gender {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.patients-list-item .patient-gender .icon-container {
  right: 0;
  top: 0;
  font-size: 25px;
  display: none;
}
.patients-list-item .patient-gender.gender-M .male {
  display: block;
}
.patients-list-item .patient-gender.gender-F .female {
  display: block;
}
.patients-list-item .patient-gender.gender-O .other {
  display: block;
}
.patients-list-item .user-name {
  border: 1px solid #fff;
  border-color: #fff;
  display: inline-block;
  line-height: 38px;
  padding: 0 8px;
  margin-right: 10px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.theme-light .patients-list-item .user-name {
  border-color: #52676c;
}
.patients-list-item .patient-progress {
  margin: 18px 0px;
  line-height: 33px;
  opacity: 0.5;
  border-color: #fff;
}
.theme-light .patients-list-item .patient-progress {
  border-color: #52676c;
}
.patients-list-item .patient-progress .progress-bar {
  background-color: #d9f5ff;
  height: 33px;
  margin-right: 20px;
  display: flex;
}
.patients-list-item .patient-progress .progress-bar > span {
  flex-grow: 1;
  display: block;
  height: 100%;
  border-right: 1px solid #a7c2c7;
  position: relative;
  transition: all 300ms;
}
.patients-list-item .patient-progress .progress-bar > span:last-child {
  border-right: none;
}
.patients-list-item .patient-progress .progress-bar > span.not_finished {
  background-color: #e85e61;
}
.patients-list-item .patient-progress .progress-bar > span.closed {
  background: linear-gradient(180deg, #3dd81c, #34bf16);
  border-color: #fff;
}
.patients-list-item .patient-progress .progress-bar > span.future {
  background-color: #ccc;
}
.patients-list-item .patient-progress .progress-bar > span.triggered {
  background-color: red;
}
.patients-list-item .patient-progress .progress-bar > span.missed {
  background-color: #f1cc90;
}
.patients-list-item .patient-progress .progress-bar > span .hoverlay {
  font-size: 12px;
  text-align: left;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.85);
  color: black;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 10;
}
.patients-list-item .patient-progress .progress-bar > span:hover {
  border-bottom: 2px solid #2b464c;
  box-shadow: 0 3px 10px inset rgba(255, 255, 255, 0.4);
}
.patients-list-item .patient-progress .progress-bar > span:hover .hoverlay {
  display: block;
}
.patients-list-item .patient-progress .session-number {
  width: 40px;
  display: inline-block;
}
.patients-list-item .patient-progress .session-date {
  display: inline-block;
  position: relative;
}
.patients-list-item .patient-progress .session-date input {
  position: absolute;
  top: 0;
  opacity: 0;
}
.patients-list-item .patient-progress .session-date .session-date-holder {
  display: none;
}
.patients-list-item.patient-active .patient-progress {
  opacity: 1;
}
.patients-list-item.patient-active .session-date-holder {
  display: block !important;
}
.patients-list-item .patient-new {
  line-height: 70px;
}
.patients-list-item .patient-new > a {
  display: block;
  width: 100%;
  position: relative;
}
.patients-list-item .patient-new > a > strong {
  position: absolute;
  left: 0;
}
.patients-list-item .patient-new .icon-container {
  margin-right: -15px;
}
.patients-list-item .patient-next {
  margin-right: -1rem;
}
.patients-list-item .patient-next > a {
  line-height: 70px;
  display: block;
}
.patients-list-item .patient-next > span {
  display: inline-block;
  padding-top: 12px;
}
.patients-list-item .patient-next .icon-container {
  padding-top: 0;
}
.patients-list-item .icon-container {
  display: block;
  position: absolute;
  font-size: 50px;
  right: -20px;
  top: 10px;
  opacity: 0.5;
}
.patients-list-item:hover .icon-container {
  opacity: 1;
}
.patients-list-item.patient-details-list-item {
  border: none;
}
.patients-list-item.patient-details-list-item .patient-progress {
  border: none;
}
.patients-list-item.patient-details-list-item.first-list-item {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}
.patient_details {
  padding-top: 15px;
  padding-bottom: 5px;
  color: #fff;
}
.patient_details form {
  width: 100%;
  padding: 0 15px;
}
.patient_details form > ul {
  line-height: 30px;
}
.patient_details .user-username {
  float: left;
  line-height: 30px;
}
.patient_details #id_birthday {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 100px;
}
.patient_details #id_gender {
  width: 150px;
  background-color: transparent;
  margin-top: -5px;
  color: #fff;
  float: right;
}
.therapist-profile form ul {
  list-style: none;
  padding: 0;
}
.therapist-profile form > ul > li {
  clear: both;
  width: 100%;
  display: block;
  position: relative;
  padding: 5px 5px 5px 150px;
}
.therapist-profile form > ul > li.error {
  background-color: #fbecee;
  border: 1px solid #eb96a4;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.therapist-profile form > ul > li.outbound {
  padding-left: 0;
}
.therapist-profile form .required label {
  font-family: 'ch_semibold';
}
.therapist-profile form .required label:after {
  content: '•';
  color: #51b9cb;
  position: absolute;
  margin-top: -5px;
}
.therapist-profile form label {
  width: 150px;
  position: absolute;
  left: 5px;
  padding-top: 5px;
}
.therapist-profile form input[type="text"],
.therapist-profile form input[type="email"],
.therapist-profile form input[type="url"],
.therapist-profile form select {
  background-color: #c7e8ee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.therapist-profile form .field-gender,
.therapist-profile form .field-title {
  float: left;
  clear: none;
  width: 300px;
  margin-right: 30px;
}
.therapist-profile form .field-title label {
  padding-left: 60px;
}
.therapist-profile form .field-terms_accepted label {
  width: 490px;
  margin-left: 170px;
  margin-top: -3px;
}
.therapist-profile form .field-terms_accepted label a {
  text-decoration: underline;
}
.therapist-profile form .field-lastname,
.therapist-profile form .field-country {
  margin-bottom: 50px/3;
}
.therapist-profile form .field-submit {
  margin-top: 50px/3;
}
.note {
  padding: 10px;
  display: block;
}
.note-error {
  background-color: rgba(195, 37, 63, 0.7);
  color: #fff;
}
.errorlist {
  list-style: none;
}
.alert-error {
  background-color: #fbecee;
  border: 1px solid #eb96a4;
}
.progress-bar {
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 50px;
  background-color: #d9f5ff;
}
.progress-bar .progress-done {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  transition: all 500ms ease;
  background-color: #75e289;
}
.progress-bar .progress-done:hover {
  cursor: pointer;
}
.progress-bar .progress-done:hover .progress-status {
  display: inline-block;
}
.progress-bar .progress-status {
  background-color: #57c2ca;
  border: 1px solid #57c2ca;
  color: #fff;
  display: none;
  padding: 5px 15px;
  position: absolute;
  top: 20px;
  right: -29px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.progress-bar .progress-status:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(87, 194, 202, 0);
  border-bottom-color: #57c2ca;
  border-width: 10px;
  margin-left: -10px;
}
#footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: rgba(82, 103, 108, 0.48);
}
#footer a {
  color: #fff;
  line-height: 50px;
  display: block;
  padding: 0 20px;
}
.modal {
  color: #52676c;
}
@media print {
  #header,
  a:after,
  .alert {
    display: none !important;
  }
  #header_print {
    display: block !important;
  }
  .print-blue,
  .print-blue:before,
  .print-blue:after {
    color: #01859e !important;
  }
}
