/** 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 > .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.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 */
@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 > 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/Caveat-Regular-f40a95e938c821baa870bd8a1bd39843.ttf);
  font-weight: normal;
  font-style: cursive;
}
@font-face {
  font-family: 'Cedarville Cursive';
  src: url(/assets/Cedarville-Cursive-36d6aa3592161355b1dfacaed0b04f55.ttf);
  font-weight: normal;
  font-style: cursive;
}
@font-face {
  font-family: 'La Belle Aurore';
  src: url(/assets/LaBelleAurore-cfae0d515c561870afc733ab91b70104.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-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 > * {
  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 > li,
.ql-container .ql-editor ul > li {
  list-style-type: none;
}
.ql-container .ql-editor ul > 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'] > li *,
.ql-container .ql-editor ul[data-checked='false'] > li * {
  pointer-events: all;
}
.ql-container .ql-editor ul[data-checked='true'] > li::before,
.ql-container .ql-editor ul[data-checked='false'] > li::before {
  color: #81818e;
  cursor: pointer;
  pointer-events: all;
}
.ql-container .ql-editor ul[data-checked='true'] > li::before {
  content: '\2611';
}
.ql-container .ql-editor ul[data-checked='false'] > 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;
}

