<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** List group overrides */
/** Badge overrides */
.toggle {
  position: relative;
  display: inline-block;
  height: 23px;
  width: 42px;
  font-size: 12px;
  line-height: 1.5;
  color: #555555;
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
  background: 0;
}
.toggle:focus &gt; .toggle-content {
  outline: -webkit-focus-ring-color auto 5px;
}
.toggle:focus,
.toggle .toggle-content:focus {
  outline: none;
}
.toggle .toggle-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.toggle .toggle-bg {
  left: 0;
  top: 4px;
  width: 40px;
  height: 14px;
  border-radius: 20px;
  position: absolute;
  display: inline-block;
  -webkit-transition: all ease 500ms;
  -o-transition: all ease 500ms;
  transition: all ease 500ms;
  -webkit-box-shadow: inset 0 0 3px rgba(106, 106, 106, 0.35);
  box-shadow: inset 0 0 3px rgba(106, 106, 106, 0.35);
}
.toggle .toggle-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 13px;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  -webkit-transition: all ease 500ms;
  -o-transition: all ease 500ms;
  transition: all ease 500ms;
}
.toggle .toggle-btn .toggle-on,
.toggle .toggle-btn .toggle-off {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 20px;
  text-align: center;
  -webkit-transition: opacity ease 500ms;
  -o-transition: opacity ease 500ms;
  transition: opacity ease 500ms;
}
.toggle .toggle-btn .toggle-on {
  opacity: 0;
  filter: alpha(opacity=0);
}
.toggle .toggle-btn span.toggle-on &gt; svg,
.toggle .toggle-btn span.toggle-off &gt; svg {
  vertical-align: middle;
}
.toggle .toggle-btn.on {
  left: 20px;
}
.toggle .toggle-btn.on .toggle-on {
  opacity: 100;
  filter: alpha(opacity=10000);
}
.toggle .toggle-btn.on .toggle-off {
  opacity: 0;
  filter: alpha(opacity=0);
}
.toggle .toggle-btn.is-loading {
  left: 50%;
  transform: translatex(-50%);
}
.toggle.disabled,
.toggle.disabled [class^='icon-'],
.toggle.disabled [class*=' icon-'] {
  cursor: not-allowed;
}
.toggle:hover:not(.disabled) {
  color: #333333;
}
.toggle:hover:not(.disabled) .toggle-btn {
  background-color: #eeeeee;
}
.toggle.disabled {
  color: #9e9ea6;
}
.toggle.toggle-lg {
  width: 52px;
  min-width: 50px;
  height: 30px;
  font-size: 14px;
}
.toggle.toggle-lg .toggle-bg {
  top: 4px;
  left: 3px;
  width: 45px;
  height: 20px;
}
.toggle.toggle-lg .toggle-btn {
  width: 26px;
  height: 26px;
}
.toggle.toggle-lg .toggle-btn .toggle-on,
.toggle.toggle-lg .toggle-btn .toggle-off {
  line-height: 25px;
}
.toggle.toggle-lg .toggle-btn.on {
  left: 25px;
}
.toggle.toggle-lg .toggle-btn.is-loading {
  left: 12px;
}
.toggle-on-disable-icon .toggle-on {
  display: none !important;
}
.toggle-on-disabled {
  opacity: 0.7;
}
.toggle-on-disabled .toggle-bg {
  background: #00c1ca;
}

/** List group overrides */
/** Badge overrides */
.styled-checkbox {
  background: #ffffff;
  min-width: 18px;
  height: 18px;
  width: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  pointer-events: none;
}
.has-error .styled-checkbox,
.styled-checkbox.has-error {
  border-color: #b92c22;
}
input:disabled + .styled-checkbox,
input[aria-disabled="true"] + .styled-checkbox {
  background: #eeeeee;
  cursor: not-allowed;
}
label.read-only input:disabled + .styled-checkbox,
label.read-only input[aria-disabled="true"] + .styled-checkbox {
  background: #ffffff;
  border-color: #ccc;
  cursor: initial;
}
.styled-checkbox svg polyline {
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  stroke-opacity: 0;
  fill: none;
  stroke-linecap: round;
  stroke: #555555;
  stroke-width: 4px;
  transition: stroke-opacity 150ms linear;
}
label.read-only input:disabled + .styled-checkbox.checked.checked,
label.read-only input:disabled + .styled-checkbox.indeterminate.checked,
label.read-only input[aria-disabled="true"] + .styled-checkbox.checked.checked,
label.read-only input[aria-disabled="true"] + .styled-checkbox.indeterminate.checked {
  background: #555555;
  border-color: #555555;
}
input:disabled + .styled-checkbox.checked,
input:disabled + .styled-checkbox.indeterminate,
input[aria-disabled="true"] + .styled-checkbox.checked,
input[aria-disabled="true"] + .styled-checkbox.indeterminate {
  background: #9e9ea6;
  border-color: #9e9ea6;
}
.styled-checkbox.checked {
  background: #00c1ca;
  border-color: #00c1ca;
}
.styled-checkbox.checked svg polyline {
  stroke: #ffffff;
  stroke-dashoffset: 50;
  stroke-opacity: 1;
  transition: stroke-dashoffset 150ms linear;
}
.styled-checkbox.indeterminate {
  background: #dddddd;
  border-color: #dddddd;
}
.styled-checkbox.indeterminate svg polyline {
  stroke: #ffffff;
  stroke-opacity: 1;
  transition: stroke-dashoffset 150ms linear;
}

/** List group overrides */
/** Badge overrides */
@keyframes radio {
  0%,
  17.5% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.styled-radio {
  position: relative;
  min-width: 18px;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  border: 1px solid #ccc;
  pointer-events: none;
  background-color: #fff;
}
.has-error .styled-radio {
  border-color: #b92c22;
}
.styled-radio.checked {
  animation: radio 300ms cubic-bezier(0.17, 0.89, 0.37, 1.44);
  will-change: transform;
  border: 0;
  background: #00c1ca;
}
.styled-radio.checked:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 9px;
  background-color: #fff;
}
input:disabled + .styled-radio.checked {
  background: #DDD;
}

/** List group overrides */
/** Badge overrides */
.action-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 9999;
}
@media (min-width: 768px) {
  .action-menu {
    padding: 50px;
  }
}
.action-menu &gt; .action-menu-content {
  margin: 0 auto;
  max-width: 500px;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.23);
}
.action-menu &gt; .action-menu-content:active {
  box-shadow: none;
}

/** List group overrides */
/** Badge overrides */
.fs-overlay-bg-action-sheet {
  height: 130vh;
  width: 150vw;
  bottom: -60px;
  top: initial;
  left: -100px;
  position: absolute;
  overflow: auto;
  overscroll-behavior-y: contain;
  background: linear-gradient(rgba(0, 193, 202, 0.2), transparent), linear-gradient(to top left, rgba(141, 164, 165, 0.109), transparent);
  background-blend-mode: screen;
}
.action-sheet-cancel {
  width: 100%;
  height: 70px;
  position: relative;
  font-size: 18px;
  padding-top: 5px;
  padding-bottom: 10px;
  bottom: 0;
  box-shadow: 0 1px 9px 2px rgba(0, 0, 0, 0.16);
}
.action-sheet-cancel.scrolled-to-bottom {
  box-shadow: none;
}
.action-sheet-divider {
  height: 1px;
  background-color: #e6e6e6e9;
  margin: 15px 0 10px 0;
}
.action-sheet-header {
  padding: 0 15px;
  font-size: 16px;
  color: #696977;
}
.action-sheet-title {
  font-size: 20px;
  font-family: 'ProximaNovaLtLight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 100px 15px 20px 15px;
}
.action-sheet-title-image {
  margin-right: 10px;
}
.action-sheet-ul {
  margin-bottom: 0;
  font-size: 16px;
  z-index: 1041;
  position: fixed;
  overflow-y: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #696977;
  transform: translateY(400px);
  outline: none;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: transform 180ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: transform 180ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0, 0, 0.2, 1);
}
.action-sheet-ul.in {
  transform: translateY(0);
}
.action-sheet-ul .action-sheet-scroll-container {
  overflow: auto;
  padding: 10px;
  overscroll-behavior-y: contain;
  max-height: calc(100vh - 60px);
}
.action-sheet-ul .action-sheet-content {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.action-sheet-list-group-item {
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  padding: 15px 24px;
  margin: 5px 0;
}
@media (min-width: 768px) {
  .action-sheet-list-group-item {
    padding: 10px 24px;
  }
}
.action-sheet-list-group-item.action-sheet-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
@media (min-width: 768px) {
  .action-sheet-list-group-item.action-sheet-button {
    padding: 10px 24px;
  }
}
.action-sheet-list-group-item.action-sheet-button:hover,
.action-sheet-list-group-item.action-sheet-button:focus {
  color: #555555;
}
.action-sheet-list-group-item.action-sheet-button.disabled {
  color: #81818e;
}
.action-sheet-list-group-item.action-sheet-button .icon {
  width: 20px;
}
.action-sheet-list-group-item.action-sheet-button-divider {
  height: 1px;
  background-color: #e6e6e6e9;
}
.action-sheet-list-group-item.action-sheet-button.info {
  background-color: initial;
  box-shadow: none;
}
.action-sheet-list-group-item.action-sheet-button + .action-sheet-header {
  margin-top: 15px;
}
.action-sheet-list-group-item.action-sheet-button .select-box {
  width: 125px;
}
.action-sheet-list-group-item.clickable:not(.disabled) {
  cursor: pointer;
}
.action-sheet-list-group-item.clickable:not(.disabled):hover {
  border-radius: 5px;
  background-color: #F8F8F8;
  border: 1px solid #e6e6e6;
  padding-left: 7px;
  padding-right: 7px;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -1px;
}
.action-sheet-list-group-item.clickable:not(.disabled):active {
  background-color: #f3f3f3;
}
.action-sheet-list-group-item.clickable:not(.disabled):last-child {
  padding-bottom: 7px;
}
.action-sheet-list-group-item.clickable:not(.disabled):last-child:hover {
  margin-bottom: -1px;
}
.action-sheet-list-group-item.clickable:not(.disabled):first-child {
  padding-top: 7px;
}
.action-sheet-list-group {
  padding: 15px 17px;
  background-color: #ffffff;
  margin: 8px 0px 12px 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .action-sheet-list-group {
    padding: 7px 17px;
  }
}
.action-sheet-list-group .action-sheet-list-group-item {
  border-bottom: 1px solid #e6e6e6;
  margin: 0 2px;
  padding: 15px 5px;
  box-shadow: none;
  border-radius: 0;
}
@media (min-width: 768px) {
  .action-sheet-list-group .action-sheet-list-group-item {
    padding: 10px 5px;
  }
}
.action-sheet-list-group .action-sheet-list-group-item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}
.action-sheet-list-group .action-sheet-list-group-item:first-child {
  padding-top: 4px;
}
.show-more-indicator {
  position: absolute;
  bottom: 90px;
  padding: 4px 20px;
  border-radius: 15px;
  color: #ffffff;
  width: 80px;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(80, 80, 80, 0.6);
}

/** List group overrides */
/** Badge overrides */
.fs-overlay-bg {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1041;
  top: 0;
  left: 0;
  opacity: 1;
  overflow-x: auto;
  overflow: hidden;
  font-size: 16px;
  color: #555555;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.fs-overlay-top-layer {
  z-index: 1051;
}
.fs-overlay-bar {
  z-index: 1041;
  left: 0;
  width: 100%;
  padding: 5px 15px;
  position: fixed;
}
.fs-overlay-bar .ellipsis {
  line-height: 1.32857143;
}
.fs-overlay-bar.filled {
  background-color: #ffffff;
  -webkit-box-shadow: -2px 2px 5px;
  box-shadow: -2px 2px 5px;
}
.fs-overlay-bar .button {
  cursor: pointer;
  padding: 14px 10px 12px 10px;
  border-radius: 4px;
}
.fs-overlay-bar .button i {
  font-size: 18px;
}
.fs-overlay-bar .button:not(:first-of-type) {
  margin-left: 15px;
}
.fs-overlay-bar.top {
  top: 0;
}
.fs-overlay-bar.bottom {
  bottom: 0;
}
.card-title {
  font-size: 13px;
  font-family: 'ProximaNovaRgBold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.fs-overlay-progress {
  z-index: 1041;
  position: relative;
}
.fs-overlay-main {
  height: calc(100% - 116px);
  width: 100%;
  display: flex;
  z-index: 1041;
  position: absolute;
  overflow: auto;
  margin-top: 15px;
  top: 44px;
  -webkit-overflow-scrolling: touch;
}
.fs-overlay-main:focus {
  outline: none;
}
.fs-overlay-main p {
  padding: 30px 20px;
}
.fs-overlay-main .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fs-overlay-main img {
  width: 100%;
}
@media (min-width: 480px) {
  .fs-overlay-main img {
    max-height: 70vh;
    max-width: 100%;
    image-orientation: from-image;
    border-radius: 4px;
    width: initial;
  }
}
.fs-overlay-slider-bg {
  bottom: 0;
  z-index: 1041;
  position: fixed;
  padding: 10px;
  min-height: 100px;
  width: 100%;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: rgba(255, 255, 255, 0.93);
  -webkit-box-shadow: 0px 0px 3px rgba(175, 175, 175, 0.9);
  box-shadow: 0px 0px 3px rgba(175, 175, 175, 0.9);
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .fs-overlay-slider-bg:hover {
    padding-bottom: 25px;
  }
  .fs-overlay-slider-bg.in:hover {
    padding-bottom: 10px;
  }
}
.fs-overlay-slider {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.fs-overlay-slider i {
  font-size: 18px;
}
.fs-overlay-slider .content {
  overflow: auto;
  padding-bottom: 10px;
}

/** List group overrides */
/** Badge overrides */
.modal-backdrop {
  position: fixed;
}
.modal-dialog {
  z-index: 1040;
}
.modal-header {
  padding: 10px 20px;
}
.modal-header.btn-toolbar {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-header h2 {
  font-size: 24px;
}
@media (min-width: 768px) {
  .modal-header h2 {
    font-size: 30px;
  }
}
.modal-body.modal-iframe {
  height: 100%;
  max-height: none;
  padding: 15px;
}
body.has-modal .loadable {
  overflow: hidden;
}
body.has-modal &gt; .container-fluid,
body.has-modal &gt; .navbar,
body.has-modal &gt; aside.slide-menu {
  opacity: 0;
}
body.has-modal &gt; #portal-root .fs-overlay-main,
body.has-modal &gt; #portal-root .fs-overlay-slider-bg,
body.has-modal &gt; #portal-root .fs-overlay-bar {
  -webkit-filter: blur(15px);
  filter: blur(15px);
}
body.has-modal .pane-scroll,
body.has-modal .calendar.calendar-week .days-scroll-container {
  overflow-y: hidden;
}
body.has-modal .new_preferences.intake_forms &gt; header,
body.has-modal main,
body.has-modal footer {
  -webkit-filter: blur(20px);
  filter: blur(20px);
  -webkit-transition: filter 200ms ease;
  -o-transition: filter 200ms ease;
  transition: filter 200ms ease;
}
.modal-inverse .modal-content,
.modal-inverse .modal__content {
  background-color: #00c1ca;
  color: #ffffff;
}
.modal-inverse a {
  color: #ffffff;
}
.modal-inverse h1,
.modal-inverse h2,
.modal-inverse h4 {
  color: #ffffff;
}
.modal-inverse .btn-white {
  color: #00c1ca;
  background-color: #ffffff;
  border-color: #ffffff;
}
.modal-inverse .btn-white:hover,
.modal-inverse .btn-white:focus,
.modal-inverse .btn-white.focus,
.modal-inverse .btn-white:active,
.modal-inverse .btn-white.active,
.open &gt; .dropdown-toggle.modal-inverse .btn-white {
  color: #00c1ca;
  background-color: #e6e6e6;
  border-color: #e0e0e0;
}
.modal-inverse .btn-white:active,
.modal-inverse .btn-white.active,
.open &gt; .dropdown-toggle.modal-inverse .btn-white {
  background-image: none;
}
.modal-inverse .btn-white.disabled,
.modal-inverse .btn-white[disabled],
fieldset[disabled] .modal-inverse .btn-white,
.modal-inverse .btn-white.disabled:hover,
.modal-inverse .btn-white[disabled]:hover,
fieldset[disabled] .modal-inverse .btn-white:hover,
.modal-inverse .btn-white.disabled:focus,
.modal-inverse .btn-white[disabled]:focus,
fieldset[disabled] .modal-inverse .btn-white:focus,
.modal-inverse .btn-white.disabled.focus,
.modal-inverse .btn-white[disabled].focus,
fieldset[disabled] .modal-inverse .btn-white.focus,
.modal-inverse .btn-white.disabled:active,
.modal-inverse .btn-white[disabled]:active,
fieldset[disabled] .modal-inverse .btn-white:active,
.modal-inverse .btn-white.disabled.active,
.modal-inverse .btn-white[disabled].active,
fieldset[disabled] .modal-inverse .btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
}
.modal-inverse .btn-white .badge {
  color: #ffffff;
  background-color: #00c1ca;
}
.modal-grey .modal-content,
.modal-grey .modal__content {
  background-color: #ededed;
}
.modal__content__min-height-300 .modal__content {
  min-height: 300px;
}
.modal-more-padding .modal-header,
.modal-more-padding .modal-body,
.modal-more-padding .modal-footer {
  padding: 30px;
}
.sortable_helper {
  z-index: 10000;
}
.modal-title {
  line-height: initial;
}
.modal-overlay__backdrop {
  position: fixed;
  z-index: 1040;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.5;
}
.modal-overlay__dialog-container {
  z-index: 1040;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.modal__content {
  position: relative;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.23);
  padding: 20px;
  outline: 0;
}
.modal__header {
  padding: 5px 5px 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal__body {
  padding: 15px 5px;
}
.modal__footer {
  border-top: 1px solid #e5e5e5;
  padding: 20px 25px 0;
  margin: 0 -20px;
  text-align: right;
}
.modal__footer .btn + .btn {
  margin-left: 5px;
}
.modal.vertical_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

/** List group overrides */
/** Badge overrides */
@keyframes bubble {
  0%,
  30% {
    transform: scale(0.98);
  }
}
.input-button {
  display: inline-flex;
  border-radius: 4px;
  margin-left: -6px;
  border: 1px solid transparent;
  padding: 7px 14px 5px 8px;
  transition: all 400ms;
  color: #696977;
}
.input-button.disabled {
  color: #81818e;
}
.input-button:hover:not(.disabled):not(.read-only) {
  background: #b6e2e61c;
  border: 1px solid #b6e6e6;
}
.input-button:active:not(.disabled):not(.read-only) {
  background: #b6e6e645;
}
.input-button:focus-within:not(.read-only) {
  background: #b6e2e61c;
  border: 1px solid #b6e6e6;
}
.input-button:focus-within:not(.disabled).read-only {
  background: #eeeeee;
  border: 1px solid #9e9ea6;
}
.input-button .has-selection {
  color: #333333;
}
.flex-right.flush label.input-button {
  padding-right: 0;
}
label.input-button {
  margin-bottom: -1px;
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/** List group overrides */
/** Badge overrides */
a {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
input,
textarea,
[contenteditable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.text-selectable,
.text-selectable * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  cursor: auto;
}
.text-selectable a,
.text-selectable * a,
.text-selectable a *,
.text-selectable * a *,
.text-selectable .btn,
.text-selectable * .btn,
.text-selectable .btn *,
.text-selectable * .btn * {
  cursor: pointer;
}
.draggable-v {
  cursor: ns-resize;
}
.archived {
  opacity: 80;
  filter: alpha(opacity=8000);
  color: #555555;
}
.archived a {
  color: #555555;
}
.disabled-link {
  pointer-events: none;
  cursor: not-allowed;
}
.hide-old {
  display: none;
}
.absolute-right {
  position: absolute;
  right: 0;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.inline {
  display: inline;
}
.block {
  display: block;
}
.hover-container .hover {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity ease 500ms;
  -o-transition: opacity ease 500ms;
  transition: opacity ease 500ms;
}
.hover:hover,
.hover-container .hover:hover,
.hover-container:hover .hover,
.hover-container:focus .hover,
html.touchevents .hover-container .hover.show-touch {
  opacity: 1;
  pointer-events: auto;
}
.empty-view {
  color: #777777;
  text-align: center;
}
.empty-view &gt; a.disabled {
  color: #777777;
}
div.empty-view {
  padding: 10px;
}
tr.empty-view td {
  padding-top: 20px;
}
.resize-vertical {
  resize: vertical;
}
.height-width-100 {
  height: 100%;
  width: 100%;
}
.height-100 {
  height: 100%;
}
.margin-auto {
  margin: auto;
}
blockquote {
  margin-bottom: 0;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: auto;
}
.transparency.twenty-percent {
  opacity: 0.2;
}
.highlight {
  background-color: #fff2ac;
}
.nbsp:empty::before {
  content: '\200b';
  /* unicode zero width space character */
}
.page-header {
  margin-top: 18px;
  margin-bottom: 12px;
  border-bottom: none;
  padding-bottom: 0;
  min-height: 38px;
}
.page-header h1 small {
  font-size: 18px;
  line-height: 1.42857143;
}
.border-none {
  border: none;
}
.border-top-none {
  border-top: none;
}
legend {
  font-size: 14px;
  color: #333333;
  border: 0;
}
.has-error legend {
  color: #b92c22;
}
.pre-line {
  white-space: pre-line;
}

@font-face {
  font-family: 'Caveat';
  src: url(/assets/b31160701af11a37.ttf);
  font-weight: normal;
  font-style: cursive;
}
@font-face {
  font-family: 'Cedarville Cursive';
  src: url(/assets/593fed80942efce5.ttf);
  font-weight: normal;
  font-style: cursive;
}
@font-face {
  font-family: 'La Belle Aurore';
  src: url(/assets/5ec639c06c1800dc.ttf);
  font-weight: normal;
  font-style: cursive;
}

/** List group overrides */
/** Badge overrides */
.ql-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  position: relative;
  border: 1px solid #cccccc;
  margin-bottom: 15px;
}
.ql-wrapper.active {
  border-color: #00c1ca;
  box-shadow: 0 0 8px #b6e6e6;
}
.ql-wrapper.read-only {
  border: none;
}
.ql-wrapper.read-only .ql-editor {
  padding: 0;
  transition: none;
}
.ql-wrapper.read-only .ql-editor:focus-visible {
  outline: solid 2px #7e7e7e;
  outline-offset: 2px;
  border-radius: 2px;
}
.ql-wrapper.error {
  border-color: #de4848;
  margin-bottom: 10px;
}
.ql-wrapper.error.active {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ee9e9e;
}
.ql-wrapper.ql-no-wrap .ql-editor {
  white-space: nowrap;
  overflow-x: scroll;
  padding: 6px 0px;
  margin: 0px 12px;
}
.ql-wrapper.ql-no-wrap .ql-editor::-webkit-scrollbar {
  display: none;
}
.ql-wrapper.is-jane-team .ql-billing-code span {
  padding: 0px 5px;
  user-select: all;
  color: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 14px;
  background-color: #696977;
  font-family: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ql-wrapper:not(.read-only) .ql-billing-code span {
  padding: 0px 5px;
  user-select: all;
  color: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 14px;
  background-color: #696977;
  font-family: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
}
.ql-wrapper:not(.read-only) .ql-diagnosis-code span {
  padding: 0px 5px;
  user-select: all;
  color: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 14px;
  background-color: #9e9ea6;
  font-family: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ql-wrapper:not(.read-only) .ql-patient span {
  background-color: #dddddd;
  border-radius: 4px;
  padding: 0px 5px;
  user-select: all;
}
.ql-wrapper.wrapper-transparent {
  background-color: transparent;
}
.ql-container {
  font-family: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0px;
  height: 100%;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
}
.ql-container .ql-clipboard {
  position: fixed;
  opacity: 0;
  left: 50%;
  top: 50%;
}
.ql-container .ql-editor {
  outline: none;
  text-align: left;
  line-height: 20px;
  overflow: visible;
  padding: 6px 12px;
  white-space: pre-wrap;
  word-wrap: break-word;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: text;
}
.ql-container .ql-editor * {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
.ql-container .ql-editor &gt; * {
  cursor: text;
}
.ql-container .ql-editor p,
.ql-container .ql-editor ol,
.ql-container .ql-editor ul,
.ql-container .ql-editor h1,
.ql-container .ql-editor h2 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-container .ql-editor h1 {
  font-size: 2em;
}
.ql-container .ql-editor h2 {
  font-size: 1.5em;
}
.ql-container .ql-editor a {
  color: #00c1ca;
  text-decoration: underline;
}
.ql-container .ql-editor a * {
  cursor: pointer;
}
.ql-container .ql-editor strong {
  font-family: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.ql-container .ql-editor ol &gt; li,
.ql-container .ql-editor ul &gt; li {
  list-style-type: none;
}
.ql-container .ql-editor ul &gt; li::before {
  content: '\2022';
}
.ql-container .ql-editor ul[data-checked='true'],
.ql-container .ql-editor ul[data-checked='false'] {
  pointer-events: none;
}
.ql-container .ql-editor ul[data-checked='true'] &gt; li *,
.ql-container .ql-editor ul[data-checked='false'] &gt; li * {
  pointer-events: all;
}
.ql-container .ql-editor ul[data-checked='true'] &gt; li::before,
.ql-container .ql-editor ul[data-checked='false'] &gt; li::before {
  color: #81818e;
  cursor: pointer;
  pointer-events: all;
}
.ql-container .ql-editor ul[data-checked='true'] &gt; li::before {
  content: '\2611';
}
.ql-container .ql-editor ul[data-checked='false'] &gt; li::before {
  content: '\2610';
}
.ql-container .ql-editor li::before {
  width: 1.2em;
  white-space: nowrap;
  display: inline-block;
}
.ql-container .ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-container .ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-container .ql-editor ol li:not(.ql-direction-rtl),
.ql-container .ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-container .ql-editor ol li.ql-direction-rtl,
.ql-container .ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-container .ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-container .ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-container .ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-container .ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-container .ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-container .ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-container .ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-container .ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-container .ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-container .ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-container .ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-container .ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-container .ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-container .ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-container .ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-container .ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-container .ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-container .ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-container .ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-container .ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-container .ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-container .ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-container .ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-container .ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-container .ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-container .ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-container .ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-container .ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-container .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-container .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-container .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-container .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-container .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-container .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-container .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-container .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-container .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-container .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-container .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-container .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-container .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-container .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-container .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-container .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-container .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-container .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-container .ql-editor li.ql-indent-9:not(.ql-direction-rtl) .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-container .ql-editor.ql-blank::before {
  left: 15px;
  right: 15px;
  font-style: italic;
  position: absolute;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
}
.ql-error {
  margin-bottom: 15px;
  color: #b92c22;
}
.ql-hidden {
  display: none;
}
.ql-out-bottom,
.ql-out-top {
  visibility: hidden;
}
.ql-toolbar {
  animation: bounce-out 0.2s ease;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #cccccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.23);
  display: flex;
  width: 416px;
  opacity: 0;
  padding: 3px;
  position: absolute;
  z-index: -5;
}
.ql-toolbar.ql-billing-toolbar {
  width: auto;
}
.ql-toolbar .btn {
  flex-grow: 1;
  text-transform: none;
}
.ql-toolbar .tooltip-link {
  flex-grow: 2;
  overflow-x: hidden;
  text-align: start;
  text-overflow: ellipsis;
}
.ql-toolbar .btn.format-btn {
  margin-right: 3px;
  transition: background-color 0.2s ease;
}
.ql-toolbar .btn.format-btn svg {
  pointer-events: none;
}
.ql-toolbar .btn.format-btn:hover {
  background-color: #dddddd;
}
.ql-toolbar .btn.format-btn:focus,
.ql-toolbar .btn.format-btn:active,
.ql-toolbar .btn.format-btn.active {
  box-shadow: none;
  background-color: #b6e6e6;
}
.ql-toolbar.active {
  animation: bounce-in 0.2s ease;
  opacity: 1;
  z-index: 5;
}
.ql-toolbar form {
  flex-grow: 3;
}
.ql-toolbar .form-group {
  margin: 0px;
}
.ql-toolbar--static {
  animation: none;
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  justify-content: space-between;
  border: 0px;
}
.ql-toolbar--static.active {
  animation: none;
}
.ql-toolbar--static .btn {
  flex-grow: 0;
}
.ql-suggestions {
  opacity: 0;
  padding: 6px;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  width: 300px;
  max-height: 284px;
  position: absolute;
  border-radius: 4px;
  flex-direction: column;
  justify-items: flex-start;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.23);
  border: 1px solid #cccccc;
  z-index: -5;
}
.ql-suggestions.active {
  opacity: 1;
  z-index: 1050;
  animation: bounce-in 0.2s ease;
}
.ql-suggestions .btn {
  overflow-x: clip;
  text-align: left;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
  text-transform: none;
}
.ql-suggestions .btn .ql-phrase-suggestion {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ql-suggestions .btn.active {
  box-shadow: none;
  background-color: #b6e6e6;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0);
  }
  80% {
    opacity: 1;
    transform: scale(1.1) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}
@keyframes bounce-out {
  0% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0) translate3d(0, 0, 0);
    display: none;
  }
}
.ql-symbols-toolbar-wrapper {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.ql-symbols-toolbar-wrapper.active {
  overflow: visible;
  max-height: 1000px;
  transition: max-height 0.2s ease-in;
}
.ql-symbols-toolbar-wrapper .ql-symbols-toolbar {
  background-color: #f5f5f5;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  font-family: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-top: 15px;
  opacity: 0;
  padding: 6px;
  transition: opacity 0.2s ease-in;
  width: 100%;
}
.ql-symbols-toolbar-wrapper .ql-symbols-toolbar.active {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.ql-symbols-toolbar-wrapper .ql-symbols-toolbar button {
  border: none;
  min-width: 40px;
  background-color: #f5f5f5;
  transition: background-color 0.2s ease;
}
.ql-symbols-toolbar-wrapper .ql-symbols-toolbar button:hover,
.ql-symbols-toolbar-wrapper .ql-symbols-toolbar button:focus {
  background-color: #ffffff;
}
.ql-charting-symbols-toolbar-wrapper {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.ql-charting-symbols-toolbar-wrapper.active {
  overflow: visible;
  max-height: 1000px;
  transition: max-height 0.2s ease-in;
}
.ql-charting-symbols-toolbar-wrapper .ql-charting-symbols-toolbar {
  background-color: #f5f5f5;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  font-family: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease-out;
  width: 100%;
  visibility: hidden;
}
.ql-charting-symbols-toolbar-wrapper .ql-charting-symbols-toolbar.active {
  visibility: visible;
  max-height: 1000px;
  padding: 6px;
  opacity: 1;
  transition: max-height 0.2s ease-in;
}
.ql-charting-symbols-toolbar-wrapper .ql-charting-symbols-toolbar.active:focus-within {
  outline: -webkit-focus-ring-color auto 5px;
}
.ql-charting-symbols-toolbar-wrapper .ql-charting-symbols-toolbar .symbols-toolbar-button {
  border: none;
  min-width: 40px;
  background-color: #f5f5f5;
  transition: background-color 0.2s ease;
}
.ql-charting-symbols-toolbar-wrapper .ql-charting-symbols-toolbar .symbols-toolbar-button:hover,
.ql-charting-symbols-toolbar-wrapper .ql-charting-symbols-toolbar .symbols-toolbar-button:focus {
  background-color: #ffffff;
}
.ql-charting-symbols-toolbar-wrapper .ql-charting-symbols-toolbar .symbols-toolbar-button:focus {
  outline: -webkit-focus-ring-color auto 5px;
}

.react-tabs__tab-list {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  margin-top: 0;
}

.react-tabs__tab {
  padding: 11px 12px;
  margin-right: 2px;
  line-height: 1.42857143;
  cursor: default;
  color: #00c1ca;
  transition: all 0.3s ease-out;
}

.react-tabs__tab:hover {
  background-color: #eee;
}

.react-tabs__tab:focus:after {
  content: none;
}

.react-tabs__tab--selected {
  color: #555;
  border-radius: 4px 4px 0 0;
  border-color: #ddd;
}

.react-tabs__tab--selected:hover {
  background-color: #fff;
}

.pills .react-tabs__tab-list {
  border-bottom: none;
}

.pills .react-tabs__tab {
  white-space: nowrap;
  overflow: visible;
  float: none;
  padding: 5px 10px;
  border-radius: 4px;
  border: none;
}

.pills .react-tabs__tab--selected {
  color: #fff;
  background-color: #00c1ca;
  border: none;
}

</pre></body></html>