[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.line {
  fill: none;
  stroke-width: 1.3;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.login-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fff;
}

.login-container .login-container-inner {
  display: flex;
  flex-direction: column;
  width: 300px;
  padding: 20px;
  background-color: #eeeeee;
  border: 1px solid #dddddd;
  border-radius: 3px;
}

.login-container form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.login-container .login-logo {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.login-container .login-logo img {
  max-height: 80px;
}

.login-container .login-inputs {
  display: flex;
  flex-direction: column;
}

.login-container .login-inputs label {
  display: flex;
  position: relative;
  padding-bottom: 6px;
}

.login-container .login-inputs label span {
  position: absolute;
  top: 6px;
  left: 6px;
}

.login-container .login-inputs label span i {
  color: rgba(0, 173, 238, 0.7);
  transition: color 300ms ease;
}

.login-container .login-inputs label input {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 10px 10px 34px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  overflow: hidden;
  transition: all 300ms ease;
}

.login-container .login-inputs label input:focus {
  background-color: #fff;
  border: 1px solid #22c3ff;
}

.login-container .login-inputs label input:focus ~ span i {
  color: #00adee;
}

.login-container .messages {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3px;
}

.login-container .messages .error-msg {
  color: #f00;
  font-size: 0.8rem;
  text-align: center;
}

.login-container .login-remember {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.login-container .login-remember label {
  font-size: 0.8rem;
}

.login-container .login-forgot-password {
  padding-top: 20px;
  text-align: center;
}

.login-container .login-forgot-password a {
  color: #585858;
  font-size: 0.8rem;
}

.login-container .login-forgot-password a:hover {
  color: #3e3e3e;
  text-decoration: underline;
  cursor: pointer;
}

#ecg-controls {
  display: inline-flex;
}

#ecg-controls .smol-btn {
  min-width: 52px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(0deg, #444 0%, #d4d4d4 100%);
  color: #FFFFFF;
  display: flex;
  border-radius: 0px;
  padding: 0 6px;
  font-size: 12px;
}

#ecg-controls .smol-btn:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-left: none;
  border-right: none;
}

#ecg-controls .smol-btn:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: none;
  border-right: none;
}

#ecg-controls .smol-btn:not(:first-child):nth-child(even) {
  border-right: 1px solid #000;
}

#ecg-controls .smol-btn:not(:last-child):nth-child(odd) {
  border-right: 1px solid #000;
}

#ecg-controls .smol-btn i {
  color: #FFFFFF;
}

#ecg-controls .smol-btn:hover {
  background: linear-gradient(0deg, #444 0%, #d4d4d4 100%);
}

#ecg-controls .smol-btn.active {
  background: linear-gradient(0deg, #CCCC00 0%, #FFFFCC 100%);
  color: #3e3e3e;
}

#ecg-controls .smol-btn:active {
  background: linear-gradient(0deg, #cccccc 0%, #d4d4d4 100%);
  color: white;
}

#ecg-controls .smol-btn:disabled {
  background: linear-gradient(0deg, #cccccc 0%, #d4d4d4 100%);
  color: white;
}

button.sort-by {
  padding-right: 18px;
  position: relative;
  margin: 15px 0 0 0;
  display: inline-block;
  background-color: #ccc;
  color: #393939;
  font-size: 0.74rem !important;
}

button.sort-by.asc:before,
button.sort-by.desc:before {
  border-bottom-color: #fff !important;
}

button.sort-by.asc:after,
button.sort-by.desc:after {
  border-top-color: #fff !important;
}

button.sort-by.asc {
  background-color: #348c34 !important;
  color: #fff !important;
}

button.sort-by.desc {
  background-color: #b82e2e !important;
  color: #fff !important;
}

button.sort-by:before,
button.sort-by:after {
  border: 4px solid transparent;
  content: "";
  display: block;
  height: 0;
  right: 5px;
  top: 50%;
  position: absolute;
  width: 0;
}

button.sort-by:before {
  border-bottom-color: #666;
  margin-top: -9px;
}

button.sort-by:after {
  border-top-color: #666;
  margin-top: 1px;
}

/*!
 * Selectr 2.4.13
 * http://mobius.ovh/docs/selectr
 *
 * Released under the MIT license
 */

.selectr-container {
  position: relative;
}

.selectr-container li {
  list-style: none;
}

.selectr-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0 none;
}

.selectr-visible {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 11;
}

.selectr-desktop.multiple .selectr-visible {
  display: none;
}

.selectr-desktop.multiple.native-open .selectr-visible {
  top: 100%;
  min-height: 200px !important;
  height: auto;
  opacity: 1;
  display: block;
}

.selectr-container.multiple.selectr-mobile .selectr-selected {
  z-index: 0;
}

.selectr-selected {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 7px 28px 7px 14px;
  cursor: pointer;
  border: 1px solid #999;
  border-radius: 3px;
  background-color: #fff;
}

.selectr-selected::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  content: "";
  transform: rotate(0deg) translate3d(0px, -50%, 0px);
  border-width: 4px 4px 0 4px;
  border-style: solid;
  border-color: #6c7a86 transparent transparent;
}

.selectr-container.open .selectr-selected::before,
.selectr-container.native-open .selectr-selected::before {
  border-width: 0 4px 4px 4px;
  border-style: solid;
  border-color: transparent transparent #6c7a86;
}

.selectr-label {
  display: none;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.selectr-placeholder {
  color: #6c7a86;
}

.selectr-tags {
  margin: 0;
  padding: 0;
  white-space: normal;
}

.has-selected .selectr-tags {
  margin: 0 0 -2px;
}

.selectr-tag {
  list-style: none;
  position: relative;
  float: left;
  padding: 2px 25px 2px 8px;
  margin: 0 2px 2px 0;
  cursor: default;
  color: #fff;
  border: medium none;
  border-radius: 10px;
  background: #acb7bf none repeat scroll 0 0;
}

.selectr-container.multiple.has-selected .selectr-selected {
  padding: 5px 28px 5px 5px;
}

.selectr-options-container {
  position: absolute;
  z-index: 10000;
  top: calc(100% - 1px);
  left: 0;
  display: none;
  box-sizing: border-box;
  width: 100%;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: transparent #999 #999;
  border-radius: 0 0 3px 3px;
  background-color: #fff;
}

.selectr-container.open .selectr-options-container {
  display: block;
}

.selectr-input-container {
  position: relative;
  display: none;
}

.selectr-clear,
.selectr-input-clear,
.selectr-tag-remove {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  transform: translate3d(0px, -50%, 0px);
  border: medium none;
  background-color: transparent;
  z-index: 11;
}

.selectr-clear,
.selectr-input-clear {
  display: none;
}

.selectr-container.has-selected .selectr-clear,
.selectr-input-container.active .selectr-input-clear {
  display: block;
}

.selectr-selected .selectr-tag-remove {
  right: 2px;
}

.selectr-clear::before,
.selectr-clear::after,
.selectr-input-clear::before,
.selectr-input-clear::after,
.selectr-tag-remove::before,
.selectr-tag-remove::after {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  content: " ";
  background-color: #6c7a86;
}

.selectr-tag-remove::before,
.selectr-tag-remove::after {
  top: 4px;
  width: 3px;
  height: 12px;
  background-color: #fff;
}

.selectr-clear:before,
.selectr-input-clear::before,
.selectr-tag-remove::before {
  transform: rotate(45deg);
}

.selectr-clear:after,
.selectr-input-clear::after,
.selectr-tag-remove::after {
  transform: rotate(-45deg);
}

.selectr-input-container.active,
.selectr-input-container.active .selectr-clear {
  display: block;
}

.selectr-input {
  top: 5px;
  left: 5px;
  box-sizing: border-box;
  width: calc(100% - 30px);
  margin: 10px 15px;
  padding: 7px 30px 7px 9px;
  border: 1px solid #999;
  border-radius: 3px;
}

.selectr-notice {
  display: none;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 16px;
  border-top: 1px solid #999;
  border-radius: 0 0 3px 3px;
  background-color: #fff;
}

.selectr-container.notice .selectr-notice {
  display: block;
}

.selectr-container.notice .selectr-selected {
  border-radius: 3px 3px 0 0;
}

.selectr-options {
  position: relative;
  top: calc(100% + 2px);
  display: none;
  overflow-x: auto;
  overflow-y: scroll;
  max-height: 200px;
  margin: 0;
  padding: 0;
}

.selectr-container.open .selectr-options,
.selectr-container.open .selectr-input-container,
.selectr-container.notice .selectr-options-container {
  display: block;
}

.selectr-option {
  position: relative;
  display: block;
  padding: 5px 20px;
  list-style: outside none none;
  cursor: pointer;
  font-weight: normal;
}

.selectr-options.optgroups > .selectr-option {
  padding-left: 25px;
}

.selectr-optgroup {
  font-weight: bold;
  padding: 0;
}

.selectr-optgroup--label {
  font-weight: bold;
  margin-top: 10px;
  padding: 5px 15px;
}

.selectr-match {
  text-decoration: underline;
}

.selectr-option.selected {
  background-color: #ddd;
}

.selectr-option.active {
  color: #fff;
  background-color: #5897fb;
}

.selectr-option.disabled {
  opacity: 0.4;
}

.selectr-option.excluded {
  display: none;
}

.selectr-container.open .selectr-selected {
  border-color: #999 #999 transparent #999;
  border-radius: 3px 3px 0 0;
}

.selectr-container.open .selectr-selected::after {
  transform: rotate(180deg) translate3d(0px, 50%, 0px);
}

.selectr-disabled {
  opacity: 0.6;
}

.selectr-empty,
.has-selected .selectr-placeholder {
  display: none;
}

.has-selected .selectr-label {
  display: block;
}

/* TAGGABLE */

.taggable .selectr-selected {
  padding: 4px 28px 4px 4px;
}

.taggable .selectr-selected::after {
  display: table;
  content: " ";
  clear: both;
}

.taggable .selectr-label {
  width: auto;
}

.taggable .selectr-tags {
  float: left;
  display: block;
}

.taggable .selectr-placeholder {
  display: none;
}

.input-tag {
  float: left;
  min-width: 90px;
  width: auto;
}

.selectr-tag-input {
  border: medium none;
  padding: 3px 10px;
  width: 100%;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.selectr-input-container.loading::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  content: "";
  transform: translate3d(0px, -50%, 0px);
  transform-origin: 50% 0 0;
  -webkit-animation: 500ms linear 0s normal forwards infinite running spin;
  animation: 500ms linear 0s normal forwards infinite running spin;
  border-width: 3px;
  border-style: solid;
  border-color: #aaa #ddd #ddd;
  border-radius: 50%;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg) translate3d(0px, -50%, 0px);
  }

  100% {
    transform: rotate(360deg) translate3d(0px, -50%, 0px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg) translate3d(0px, -50%, 0px);
  }

  100% {
    transform: rotate(360deg) translate3d(0px, -50%, 0px);
  }
}

.selectr-container.open.inverted .selectr-selected {
  border-color: transparent #999 #999;
  border-radius: 0 0 3px 3px;
}

.selectr-container.inverted .selectr-options-container {
  border-width: 1px 1px 0;
  border-color: #999 #999 transparent;
  border-radius: 3px 3px 0 0;
  background-color: #fff;
}

.selectr-container.inverted .selectr-options-container {
  top: auto;
  bottom: calc(100% - 1px);
}

.selectr-container ::-moz-placeholder {
  color: #6c7a86;
  opacity: 1;
}

.selectr-container :-ms-input-placeholder {
  color: #6c7a86;
  opacity: 1;
}

.selectr-container ::placeholder {
  color: #6c7a86;
  opacity: 1;
}

*,
*::before,
*::after {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

h1 {
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
}

h2 {
  font-family: "Roboto", sans-serif;
  color: #00adee;
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
}

h3 {
  font-family: "Roboto", sans-serif;
  color: #0088bb;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: none;
}

h4 {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
}

p {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #3e3e3e;
  text-decoration: none;
  transition: color 300ms ease;
}

a:hover {
  color: #484848;
  text-decoration: none;
  cursor: pointer;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 6px;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.5rem;
  white-space: nowrap;
  text-transform: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  background-color: #00adee;
  border-radius: 3px;
  border: none;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 300ms ease, background-color 300ms ease;
}

button:hover {
  color: white;
  background-color: #0088bb;
  cursor: pointer;
}

button.active {
  color: white;
  background-color: #0088bb;
  cursor: pointer;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  color: #676767;
  text-shadow: none;
}

button > svg {
  height: 14px;
  margin-right: 3px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

strong {
  font-weight: 500;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 52px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  background: linear-gradient(0deg, #00adee 0%, #00b8fd 100%);
}

header > h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

header .header-patient-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-right: auto;
  padding: 0 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  background-color: #009ad5;
  cursor: pointer;
  transition: background-color 300ms ease;
}

header .header-patient-info .patient-dob {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 100%;
}

header .header-patient-info .patient-dob > span {
  color: #88dfff;
  font-weight: 300;
}

header .header-patient-info:hover {
  background-color: #0088bb;
}

header .header-patient-info-v2 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-right: auto;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

header .header-patient-info-v2 > div,
header .header-patient-info-v2 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 44px;
  margin: 6px 3px 6px 0;
  padding: 0 10px;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  line-height: 100%;
  white-space: nowrap;
  border-radius: 3px;
  background-color: #0088bb;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 300ms ease;
}

header .header-patient-info-v2 a {
  align-items: center;
  background-color: #009ad5;
}

header .header-patient-info-v2 a svg {
  height: 22px;
  max-width: 22px;
  color: #88dfff;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
  transition: color 300ms ease;
}

header .header-patient-info-v2 a:hover {
  background-color: #0088bb;
  cursor: pointer;
}

header .header-patient-info-v2 a:hover svg {
  color: white;
}

header .header-patient-info-v2 .patient-name {
  flex-direction: row;
  align-items: center;
}

header .header-patient-info-v2 .patient-name > span {
  font-size: 0.7rem;
  color: #88dfff;
  font-weight: 300;
  line-height: 100%;
}

header .header-patient-info-v2 .patient-dob,
header .header-patient-info-v2 .patch-id,
header .header-patient-info-v2 .info-small {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 100%;
}

header .header-patient-info-v2 .patient-dob > span,
header .header-patient-info-v2 .patch-id > span,
header .header-patient-info-v2 .info-small > span {
  color: #88dfff;
  font-weight: 300;
}

header .header-search {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 6px 0;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

header .header-search > form {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

header .header-search > form .search-icon {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 0 10px;
  z-index: 1;
}

header .header-search > form .search-icon > svg {
  width: 18px;
  color: rgba(62, 62, 62, 0.5);
}

header .header-search > form input[type=text] {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0 0 0 38px;
  color: #3e3e3e;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  text-shadow: none;
  text-align: left;
  text-rendering: auto;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: text;
}

header .header-search > form input[type=text]::-moz-placeholder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

header .header-search > form input[type=text]:-ms-input-placeholder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

header .header-search > form input[type=text]::placeholder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

header .header-search > form input[type=text]:focus ~ .search-btn > button {
  background-color: #009ad5;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

header .header-search > form input[type=text]:focus ~ .search-btn > button:hover {
  color: white;
  background-color: #0088bb;
}

header .header-search > form input[type=text]:focus ~ .search-btn > button > span svg {
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

header .header-search > form input[type=text]:focus ~ .search-btn:before {
  right: 0;
  left: 0;
  opacity: 1;
}

header .header-search > form input[type=text]:focus ~ .search-btn:hover:before {
  background-color: #0088bb;
}

header .header-search > form input[type=text]:-webkit-autofill,
header .header-search > form input[type=text]:-webkit-autofill:hover,
header .header-search > form input[type=text]:-webkit-autofill:active,
header .header-search > form input[type=text]:-webkit-autofill:focus {
  background-color: transparent !important;
}

header .header-search > form .search-btn {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

header .header-search > form .search-btn > button {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  margin: 0;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0);
  text-align: center;
  line-height: 100%;
  vertical-align: middle;
  background-color: #eeeeee;
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  transition: all 300ms ease;
}

header .header-search > form .search-btn > button:focus {
  outline: none;
}

header .header-search > form .search-btn > button > span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header .header-search > form .search-btn > button > span:first-child {
  height: 28px;
}

header .header-search > form .search-btn > button > span:last-child {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  padding-bottom: 3px;
}

header .header-search > form .search-btn > button > span > svg {
  display: inline-block;
  height: 22px;
  max-width: 28px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0));
}

header .header-search > form .search-btn:before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 100%;
  height: 2px;
  background-color: #009ad5;
  opacity: 0;
  z-index: 3;
  transition: all 300ms ease-in-out;
}

header .header-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  padding: 0 0 0 6px;
  margin: 0 0 0 auto;
}

header .header-nav > form {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  margin: 0;
  padding: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

header .header-nav > a,
header .header-nav > form button,
header .header-nav > button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  margin: 6px 3px 6px 0;
  padding: 0 3px;
  font-family: "Roboto", sans-serif;
  color: #88dfff;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  background-color: #009ad5;
  border: none;
  border-radius: 3px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 300ms ease, background-color 300ms ease;
}

header .header-nav > a:hover,
header .header-nav > form button:hover,
header .header-nav > button:hover {
  color: white;
  background-color: #0088bb;
  border: none;
  cursor: pointer;
}

header .header-nav > a:hover .btn-action-icon,
header .header-nav > form button:hover .btn-action-icon,
header .header-nav > button:hover .btn-action-icon {
  color: #0088bb;
  background-color: white;
  border-color: #0088bb;
}

header .header-nav > a:disabled,
header .header-nav > form button:disabled,
header .header-nav > button:disabled {
  background-color: rgba(0, 154, 213, 0.3);
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.2);
  text-shadow: none;
}

header .header-nav > a:last-child,
header .header-nav > form button:last-child,
header .header-nav > button:last-child {
  margin-right: 6px;
}

header .header-nav > a > span,
header .header-nav > form button > span,
header .header-nav > button > span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 100%;
}

header .header-nav > a > span:first-child,
header .header-nav > a > span.btn-icon,
header .header-nav > form button > span:first-child,
header .header-nav > form button > span.btn-icon,
header .header-nav > button > span:first-child,
header .header-nav > button > span.btn-icon {
  height: 28px;
}

header .header-nav > a > span:last-child,
header .header-nav > a > span.btn-label,
header .header-nav > form button > span:last-child,
header .header-nav > form button > span.btn-label,
header .header-nav > button > span:last-child,
header .header-nav > button > span.btn-label {
  padding-bottom: 3px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
}

header .header-nav > a > span > svg,
header .header-nav > form button > span > svg,
header .header-nav > button > span > svg {
  display: inline-block;
  height: 22px;
  max-width: 28px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

header .header-nav > a .btn-action-icon,
header .header-nav > form button .btn-action-icon,
header .header-nav > button .btn-action-icon {
  position: absolute;
  bottom: 0;
  right: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  padding: 3px;
  color: #009ad5;
  border-radius: 50%;
  border: 1px solid #009ad5;
  background-color: #88dfff;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

header .header-nav > a .btn-action-icon > svg,
header .header-nav > form button .btn-action-icon > svg,
header .header-nav > button .btn-action-icon > svg {
  display: inline-block;
  width: 100%;
  max-width: 12px;
}

header .header-nav ~ .header-settings {
  margin-left: 0;
}

header .header-nav-v2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  padding: 0;
  margin: 0 0 0 6px;
}

header .header-nav-v2 > form {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  margin: 0;
  padding: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

header .header-nav-v2 > a,
header .header-nav-v2 > form button,
header .header-nav-v2 > button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  margin: 6px 3px 6px 0;
  padding: 0 3px;
  font-family: "Roboto", sans-serif;
  color: #88dfff;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  background-color: #009ad5;
  border: none;
  border-radius: 3px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 300ms ease, background-color 300ms ease;
}

header .header-nav-v2 > a:hover,
header .header-nav-v2 > form button:hover,
header .header-nav-v2 > button:hover {
  color: white;
  background-color: #0088bb;
  border: none;
  cursor: pointer;
}

header .header-nav-v2 > a:hover .btn-action,
header .header-nav-v2 > form button:hover .btn-action,
header .header-nav-v2 > button:hover .btn-action {
  color: #0088bb;
  background-color: white;
  border-color: #0088bb;
}

header .header-nav-v2 > a:last-child,
header .header-nav-v2 > form button:last-child,
header .header-nav-v2 > button:last-child {
  margin-right: 6px;
}

header .header-nav-v2 > a > svg,
header .header-nav-v2 > form button > svg,
header .header-nav-v2 > button > svg {
  display: inline-block;
  height: 22px;
  max-width: 28px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

header .header-nav-v2 > a .btn-action,
header .header-nav-v2 > form button .btn-action,
header .header-nav-v2 > button .btn-action {
  position: absolute;
  bottom: 6px;
  right: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  padding: 3px;
  color: #009ad5;
  border-radius: 50%;
  border: 1px solid #009ad5;
  background-color: #88dfff;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

header .header-nav-v2 > a .btn-action > svg,
header .header-nav-v2 > form button .btn-action > svg,
header .header-nav-v2 > button .btn-action > svg {
  display: inline-block;
  width: 100%;
  max-width: 12px;
}

header .header-settings {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  padding: 0 6px;
  margin: 0 0 0 auto;
}

header .header-settings .header-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% - 3px);
  right: 6px;
  box-sizing: border-box;
  background-color: white;
  min-width: 220px;
  max-height: calc(100vh - 52px);
  overflow: auto;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  transition: opacity 50ms ease, visibility 50ms ease;
  z-index: 20;
}

header .header-settings .header-menu.open {
  visibility: visible;
  opacity: 1;
}

header .header-settings .header-menu nav {
  font-size: 0.9em;
}

header .header-settings .header-menu nav .user-info {
  display: flex;
  flex-direction: column;
  background-color: #eeeeee;
  padding: 6px 12px;
}

header .header-settings .header-menu nav .user-info > span:first-child {
  font-size: 0.8em;
  color: #999999;
}

header .header-settings .header-menu nav .network-select {
  margin: 0;
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

header .header-settings .header-menu nav .network-select label {
  font-size: 0.8em;
  color: #999999;
}

header .header-settings .header-menu nav a {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding: 6px 12px;
  color: #3e3e3e;
}

header .header-settings .header-menu nav a > span {
  display: flex;
  align-items: center;
}

header .header-settings .header-menu nav a svg {
  width: 18px;
  margin-right: 12px;
}

header .header-settings .header-menu nav a:hover {
  background-color: #eeeeee;
}

header .header-settings .header-menu nav select {
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 1rem;
  font-weight: 400;
  padding: 3px 6px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  transition: all 300ms ease;
  margin-bottom: 6px;
}

header .header-settings .header-menu nav button {
  width: 100%;
  text-align: center;
}

.header-btn {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  min-width: 44px;
  margin: 6px 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #88dfff;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  background-color: #009ad5;
  border: none;
  border-radius: 3px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 300ms ease, background-color 300ms ease;
}

.header-btn:hover,
.header-btn.open {
  color: white;
  background-color: #0088bb;
  border: none;
  cursor: pointer;
}

.header-btn:hover .btn-action-icon,
.header-btn.open .btn-action-icon {
  color: #0088bb;
  background-color: white;
  border-color: #0088bb;
}

.header-btn:disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
  text-shadow: none;
}

.header-btn > span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  line-height: 100%;
}

.header-btn > span:first-child,
.header-btn > span.btn-icon {
  position: relative;
  padding: 3px 0;
}

.header-btn > span.btn-label {
  margin-top: -3px;
  padding-bottom: 3px;
}

.header-btn > span > svg {
  display: inline-block;
  height: 22px;
  max-width: 28px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

.header-btn .btn-action-icon {
  position: absolute;
  bottom: 0;
  right: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  padding: 3px;
  color: #009ad5;
  border-radius: 50%;
  border: 1px solid #009ad5;
  background-color: #88dfff;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

.header-btn .btn-action-icon > svg {
  display: inline-block;
  width: 100%;
  max-width: 12px;
}

.app-container {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.app-container > div {
  position: relative;
}

.nav-left {
  display: flex;
  flex-grow: 1;
  width: 56px;
  transition: width 300ms ease;
  z-index: 200;
}

.nav-left #nav-left-toggle {
  background-color: rgba(51, 51, 51, 0.7);
}

.nav-left #nav-left-toggle > span:last-child {
  padding: 12px;
  transition: all 300ms ease;
}

.nav-left #nav-left-toggle:hover {
  border-right: 4px solid transparent;
  background-color: #333333;
}

.nav-left.open nav {
  right: -196px;
}

.nav-left.open nav > div > div > span,
.nav-left.open nav > div a > span {
  transition: opacity 600ms ease, transform 300ms ease;
}

.nav-left.open nav > div > div > span:first-child,
.nav-left.open nav > div a > span:first-child {
  opacity: 1;
  transform: translateY(0px);
}

.nav-left.open nav > div > div:first-child > span:last-child {
  transform: rotate(180deg);
}

.nav-left.open #nav-close-area {
  display: block;
}

.nav-left.open #nav-left-toggle {
  background-color: #333333;
}

.nav-left nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 260px;
  background-color: #555555;
  z-index: 10;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: right 300ms ease;
}

.nav-left nav > div {
  display: flex;
  flex-direction: column;
}

.nav-left nav > div > div,
.nav-left nav > div a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background-color 300ms ease, border-right-color 300ms ease, color 300ms ease;
  border-right-width: 4px;
  border-right-style: solid;
  border-right-color: transparent;
  overflow: hidden;
}

.nav-left nav > div > div > span,
.nav-left nav > div a > span {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 56px);
  padding: 10px;
  text-align: right;
  transition: opacity 100ms ease, transform 600ms ease, color 300ms ease;
}

.nav-left nav > div > div > span:first-child,
.nav-left nav > div a > span:first-child {
  opacity: 0;
  transform: translateX(120px);
}

.nav-left nav > div > div > span:last-child,
.nav-left nav > div > div > span.nav-icon,
.nav-left nav > div a > span:last-child,
.nav-left nav > div a > span.nav-icon {
  position: relative;
  justify-content: center;
  width: 48px;
  text-align: center;
}

.nav-left nav > div > div .nav-badge,
.nav-left nav > div a .nav-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  display: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  background-color: #f00;
  border-radius: 50%;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.nav-left nav > div > div:hover,
.nav-left nav > div a:hover {
  text-decoration: none;
  color: white;
  background-color: #009ad5;
  border-right-color: #0088bb;
}

.nav-left nav > div > div:hover > span:last-child,
.nav-left nav > div a:hover > span:last-child {
  color: white;
}

.nav-left nav > div > div.active,
.nav-left nav > div a.active {
  color: white;
  background-color: #00adee;
  border-right-color: #0088bb;
}

.nav-left nav > div > div.active > span:last-child,
.nav-left nav > div a.active > span:last-child {
  color: white;
}

.nav-left nav > div > div svg,
.nav-left nav > div a svg {
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

.nav-left nav > div > div img,
.nav-left nav > div a img {
  height: 28px;
  max-height: 28px;
}

.nav-left nav .nav-bottom {
  background-color: rgba(51, 51, 51, 0.3);
}

.nav-left #nav-close-area {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.nav-left .nav-group-name {
  position: absolute;
  right: 28px;
  bottom: 20px;
  text-align: left;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 300;
  line-height: 0;
  transform-origin: 100% 0;
  transform: rotate(90deg);
  white-space: nowrap;
  z-index: -1;
}

@media screen and (max-height: 590px) {
  .nav-left .nav-group-name {
    display: none;
  }
}

.app-content {
  display: flex;
  flex-grow: 1;
  width: calc(100% - 56px);
  flex-direction: column;
  align-items: stretch;
  align-content: stretch;
  z-index: 100;
}

.content-container {
  position: relative;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  height: 100%;
  flex-grow: 1;
  padding: 0;
}

.content-container > .content-column > .column-content {
  background-color: #eee;
}

.chart-container {
  position: relative;
  background-color: #fff;
}

.chart-container > canvas {
  width: 100%;
  max-height: 400px;
}

#ecg-controls {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3px;
  border-bottom: 1px solid #dddddd;
}

#ecg-controls button {
  margin-left: 3px;
}

#ecg-controls button#startMeasurement > svg:first-child,
#ecg-controls button#flag > svg:first-child {
  display: inline-block;
}

#ecg-controls button#startMeasurement > svg:last-child,
#ecg-controls button#flag > svg:last-child {
  display: none;
}

#ecg-controls button#startMeasurement.active > svg:first-child,
#ecg-controls button#flag.active > svg:first-child {
  display: none;
}

#ecg-controls button#startMeasurement.active > svg:last-child,
#ecg-controls button#flag.active > svg:last-child {
  display: inline-block;
}

#ecg-controls button#zoomIn {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

#ecg-controls button#zoomOut {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.search-container {
  border-bottom: 1px solid #dddddd;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  border-radius: 0;
}

.search-container > form {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.search-container > form .search-icon {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 0 10px;
  z-index: 1;
}

.search-container > form .search-icon > svg {
  width: 18px;
  color: rgba(62, 62, 62, 0.5);
}

.search-container > form input[type=text] {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 10px 0 10px 38px;
  color: #3e3e3e;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  text-shadow: none;
  text-align: left;
  text-rendering: auto;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: text;
}

.search-container > form input[type=text]::-moz-placeholder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.search-container > form input[type=text]:-ms-input-placeholder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.search-container > form input[type=text]::placeholder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.search-container > form input[type=text]:focus ~ .search-btn > button {
  background-color: #00adee;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.search-container > form input[type=text]:focus ~ .search-btn > button:hover {
  color: white;
  background-color: #0088bb;
}

.search-container > form input[type=text]:focus ~ .search-btn:before {
  right: 0;
  left: 0;
  opacity: 1;
}

.search-container > form input[type=text]:focus ~ .search-btn:hover:before {
  background-color: #0088bb;
}

.search-container > form input[type=text]:-webkit-autofill,
.search-container > form input[type=text]:-webkit-autofill:hover,
.search-container > form input[type=text]:-webkit-autofill:active,
.search-container > form input[type=text]:-webkit-autofill:focus {
  background-color: transparent !important;
}

.search-container > form .search-btn {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.search-container > form .search-btn > button {
  display: flex;
  align-items: center;
  align-content: center;
  margin: 0;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0);
  text-align: center;
  line-height: 100%;
  vertical-align: middle;
  background-color: #eeeeee;
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  transition: all 300ms ease;
}

.search-container > form .search-btn > button:focus {
  outline: none;
}

.search-container > form .search-btn:before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 100%;
  height: 2px;
  background-color: #00adee;
  opacity: 0;
  z-index: 3;
  transition: all 300ms ease-in-out;
}

.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  background: linear-gradient(0deg, #eeeeee 0%, #f6f6f6 100%);
  border-top: 1px solid #dddddd;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pagination-container > div {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pagination-container > div > a,
.pagination-container > div > div.dummy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  height: 28px;
  margin-right: 3px;
  padding: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  background-color: #22c3ff;
  overflow: hidden;
  border: none;
  border-radius: 3px;
  transition: all 300ms ease;
}

.pagination-container > div > a svg,
.pagination-container > div > div.dummy svg {
  display: inline-block;
  width: 15px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

.pagination-container > div > a:hover,
.pagination-container > div > div.dummy:hover {
  color: white;
  background-color: #00adee;
}

.pagination-container > div > a.active,
.pagination-container > div > div.dummy.active {
  color: white;
  background-color: #0088bb;
  border: 1px solid #0088bb;
}

.pagination-container > div > a.disabled,
.pagination-container > div > div.dummy.disabled {
  color: rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 173, 238, 0.2);
  border: 1px solid transparent;
}

.pagination-container > div > a.disabled svg,
.pagination-container > div > div.dummy.disabled svg {
  filter: none;
}

.pagination-container > div > div {
  margin-right: 5px;
}

.tabs-container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  background-color: #555;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tabs-container ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.tabs-container ul li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.tabs-container ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 3px;
  margin-left: 3px;
  padding: 3px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-color: #8c8c8c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
  transition: all 300ms ease;
}

.tabs-container ul li a:hover {
  color: white;
  background-color: gray;
}

.tabs-container ul li a.active {
  color: #3e3e3e;
  text-shadow: none;
  background-color: white;
}

.tabs-container ul li a.active span {
  display: inline;
}

.tabs-container ul li a svg {
  height: 16px;
  margin-right: 6px;
}

@media screen and (max-width: 990px) {
  .tabs-container ul li a span {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 880px) {
  .tabs-container ul li a span {
    display: none;
  }
}

.tabs-container ul li:first-child a {
  margin-left: 0;
  border-top-left-radius: 0;
}

#recordings-container {
  background-color: #fff;
}

#recordings-container > div {
  padding: 10px 20px;
  border-bottom: 1px solid #dddddd;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  overflow: hidden;
}

#recordings-container > div p {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #999999;
  font-size: 0.8rem;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#recordings-container > div p > span {
  color: #3e3e3e;
  font-size: 0.9rem;
  font-weight: 400;
}

#recordings-container > div:last-child {
  border-bottom: none;
}

#loading {
  display: none;
  justify-content: center;
  align-items: center;
  color: #999999;
  font-size: 1rem;
  font-weight: 300;
  background-color: #dddddd;
}

#loading svg {
  width: 16px;
  -webkit-animation: rotation360 2s infinite linear;
          animation: rotation360 2s infinite linear;
}

#loading > div {
  margin-left: 6px;
}

@-webkit-keyframes rotation360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes rotation360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

img.recording {
  width: 100%;
  max-width: 100%;
}

.filter-column {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  overflow: hidden;
  min-width: 220px;
}

.filter-column > form {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.filter-column .column-content {
  border-right: 1px solid #dddddd;
  overflow: visible;
  background-color: #fff;
}

.filters-button {
  display: flex;
  justify-content: stretch;
}

.filters-button button {
  width: 100%;
  border-radius: 0;
}

.filters-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filters-container > div {
  border-top: 1px solid #dddddd;
  padding: 6px 3px 3px 3px;
}

.filters-container > div .filter {
  margin-bottom: 2px;
}

.filters-container > div:first-child {
  border-top: none;
  padding-top: 3px;
}

.filters-container > div:last-child .filter:last-child {
  margin-bottom: 0;
}

.filters-container > div input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filters-container > div input[type=checkbox] ~ label .input-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 3px;
  line-height: 20px;
  background-color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.filters-container > div input[type=checkbox] ~ label .input-checkbox > svg {
  display: inline-block;
  width: 14px;
  fill: #fff;
  opacity: 0;
  transition: opacity 200ms ease;
}

.filters-container > div input[type=checkbox]:checked ~ label {
  color: white;
  background-color: #00adee;
}

.filters-container > div input[type=checkbox]:checked ~ label .input-checkbox {
  background-color: #00adee;
}

.filters-container > div input[type=checkbox]:checked ~ label .input-checkbox > svg {
  opacity: 1;
}

.filters-container > div input[type=checkbox]:checked:hover ~ label {
  color: white;
  background-color: #00adee;
}

.filters-container > div input[type=checkbox]:checked:hover ~ label .input-checkbox {
  background-color: #00adee;
}

.filters-container > div label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3px;
  color: #3e3e3e;
  font-size: 0.8rem;
  line-height: 100%;
  white-space: nowrap;
  background-color: #eeeeee;
  border: none;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.filters-container > div label:hover {
  background-color: rgba(34, 195, 255, 0.9);
  color: white;
}

.filters-container > div:nth-child(even) label {
  background-color: #eeeeee;
}

.filters-container > div:nth-child(even) label:hover {
  background-color: rgba(0, 180, 248, 0.9);
}

.date-range {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  padding: 3px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

.date-range input[type=text] {
  width: 100%;
  padding: 3px 6px;
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 0.8rem;
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  transition: all 300ms ease;
}

.date-range input[type=text]:focus {
  background-color: #fff;
  border: 1px solid #00adee;
}

.date-range select {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 3px;
  padding: 3px 6px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  transition: all 300ms ease;
}

.date-range button {
  margin-top: 3px;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.content-column {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  overflow: hidden;
  flex-grow: 1;
}

.content-column.scrollable {
  overflow: auto;
}

.content-row {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  overflow: hidden;
  flex-grow: 1;
  height: 100%;
}

.content-row.scrollable {
  overflow: auto;
}

.col-small {
  width: 330px;
  max-width: 330px;
  min-width: 330px;
  flex-grow: 0;
}

.col-medium {
  width: 660px;
  max-width: 660px;
  min-width: 660px;
  flex-grow: 0;
}

.col-large {
  width: 990px;
  max-width: 990px;
  min-width: 990px;
  flex-grow: 0;
}

.col-max-small {
  max-width: 330px;
}

.col-max-medium {
  max-width: 660px;
}

.col-max-large {
  max-width: 990px;
}

.col-83 {
  width: 83.3333%;
  flex-grow: 0;
}

.col-80 {
  width: 80%;
  flex-grow: 0;
}

.col-75 {
  width: 75%;
  flex-grow: 0;
}

.col-66 {
  width: 66.6666%;
  flex-grow: 0;
}

.col-50 {
  width: 50%;
  flex-grow: 0;
}

.col-33 {
  width: 33.3333%;
  flex-grow: 0;
}

.col-25 {
  width: 25%;
  flex-grow: 0;
}

.col-20 {
  width: 20%;
  flex-grow: 0;
}

.col-16 {
  width: 16.6666%;
  flex-grow: 0;
}

.bg-white {
  background-color: white !important;
}

.bg-black {
  background-color: black !important;
}

.bg-light {
  background-color: #eee !important;
}

.bg-medium {
  background-color: #e1e1e1 !important;
}

.bg-dark {
  background-color: #d5d5d5 !important;
}

.bg-accent {
  background-color: #dff6ff !important;
}

.column-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid #dddddd;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.column-heading h2 {
  display: inline-block;
  margin: 15px 0 0 0;
  padding: 5px 20px;
}

.column-heading h2.filter-heading {
  padding-left: 3px;
}

.column-heading p {
  display: inline-block;
  margin: 15px 0 0 0;
  padding: 5px 20px;
}

.column-heading a {
  color: #00adee;
  text-decoration: none;
}

.column-heading > div {
  display: inline-block;
  margin: 15px 0 0 0;
  padding: 5px 20px;
}

.column-heading > div.btn-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.column-heading > div.btn-container a,
.column-heading > div.btn-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 3px;
  padding: 0 6px;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  white-space: nowrap;
  text-transform: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  background-color: #00adee;
  border-radius: 3px;
  border: none;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 300ms ease, background-color 300ms ease;
}

.column-heading > div.btn-container a.delete,
.column-heading > div.btn-container button.delete {
  background-color: firebrick !important;
}

.column-heading > div.btn-container a:first-child,
.column-heading > div.btn-container button:first-child {
  margin-left: 0;
}

.column-heading > div.btn-container a:hover,
.column-heading > div.btn-container button:hover {
  color: white;
  background-color: #0088bb;
  cursor: pointer;
}

.column-heading > div.btn-container a svg,
.column-heading > div.btn-container button svg {
  height: 14px;
  margin-right: 3px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

.column-heading > div.filters-container {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.column-heading > div.filters-container > form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.column-heading > div.filters-container > form .filter {
  position: relative;
}

.column-heading > div.filters-container > form .filter.trigger-high label {
  background-color: #ff9999;
}

.column-heading > div.filters-container > form .filter.trigger-high label:hover {
  background-color: #f00;
}

.column-heading > div.filters-container > form .filter.trigger-high input[type=checkbox]:checked ~ label {
  background-color: #f00;
}

.column-heading > div.filters-container > form .filter.trigger-high input[type=checkbox]:checked ~ label .input-checkbox {
  background-color: #f00;
}

.column-heading > div.filters-container > form .filter.trigger-medium label {
  background-color: #ffd199;
}

.column-heading > div.filters-container > form .filter.trigger-medium label:hover {
  background-color: #ff8c00;
}

.column-heading > div.filters-container > form .filter.trigger-medium input[type=checkbox]:checked ~ label {
  background-color: #ff8c00;
}

.column-heading > div.filters-container > form .filter.trigger-medium input[type=checkbox]:checked ~ label .input-checkbox {
  background-color: #ff8c00;
}

.column-heading > div.filters-container > form .filter.trigger-low label {
  background-color: #c3c3c3;
}

.column-heading > div.filters-container > form .filter.trigger-low label:hover {
  background-color: #a9a9a9;
}

.column-heading > div.filters-container > form .filter.trigger-low input[type=checkbox]:checked ~ label {
  background-color: #a9a9a9;
}

.column-heading > div.filters-container > form .filter.trigger-low input[type=checkbox]:checked ~ label .input-checkbox {
  background-color: #a9a9a9;
}

.column-heading > div.filters-container > form .filter.filter-normal label {
  background-color: #c3c3c3;
}

.column-heading > div.filters-container > form .filter.filter-normal label:hover {
  background-color: #a9a9a9;
}

.column-heading > div.filters-container > form .filter.filter-normal input[type=checkbox]:checked ~ label {
  background-color: #a9a9a9;
}

.column-heading > div.filters-container > form .filter.filter-normal input[type=checkbox]:checked ~ label .input-checkbox {
  background-color: #a9a9a9;
}

.column-heading > div.filters-container > form .filter.filter-normal input[type=checkbox].applied-filter:checked ~ label {
  color: white;
  background-color: #00adee;
}

.column-heading > div.filters-container > form .filter.filter-normal input[type=checkbox].applied-filter:checked ~ label .input-checkbox {
  background-color: #00adee;
}

.column-heading > div.filters-container > form > div {
  margin-left: 3px;
}

.column-heading > div.filters-container > form > div:first-child {
  margin-left: 0;
}

.column-heading > div.filters-container > form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.column-heading > div.filters-container > form input[type=checkbox] ~ label .input-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-right: 3px;
  line-height: 18px;
  background-color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.column-heading > div.filters-container > form input[type=checkbox] ~ label .input-checkbox > svg {
  display: inline-block;
  width: 12px;
  fill: #fff;
  opacity: 0;
  transition: opacity 200ms ease;
}

.column-heading > div.filters-container > form input[type=checkbox]:checked ~ label {
  color: white;
  background-color: #00adee;
}

.column-heading > div.filters-container > form input[type=checkbox]:checked ~ label .input-checkbox {
  background-color: #00adee;
}

.column-heading > div.filters-container > form input[type=checkbox]:checked ~ label .input-checkbox > svg {
  opacity: 1;
}

.column-heading > div.filters-container > form input[type=checkbox]:checked:hover ~ label {
  color: white;
  background-color: #00adee;
}

.column-heading > div.filters-container > form input[type=checkbox]:checked:hover ~ label .input-checkbox {
  background-color: #00adee;
}

.column-heading > div.filters-container > form label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 100%;
  white-space: nowrap;
  background-color: #eeeeee;
  border: none;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.column-heading > div.filters-container > form label:hover {
  background-color: rgba(34, 195, 255, 0.9);
  color: white;
}

.column-heading > div.filters-container > form label span:last-child {
  margin: 0 6px;
}

.column-content {
  overflow: auto;
  flex-grow: 1;
  min-height: 20%;
}

.column-content.simplebar {
  overflow: visible;
}

.column-content > h2 {
  padding-right: 20px;
  padding-left: 20px;
}

.column-content > h2 + form {
  padding-top: 0;
}

.column-content > h3 {
  padding-right: 20px;
  padding-left: 20px;
}

.column-content > h4 {
  padding-right: 20px;
  padding-left: 20px;
}

.column-content h4 {
  margin-bottom: 3px;
}

.column-content h4 + p {
  margin-top: 0;
}

.column-content > p {
  padding-right: 20px;
  padding-left: 20px;
}

.column-content > form {
  padding: 20px;
}

.column-content form .form-group {
  display: block;
  margin-bottom: 12px;
}

.column-content form .form-group label {
  display: block;
}

.column-content form .form-group input {
  display: block;
}

.column-content form .form-group input[type=checkbox] {
  display: inline-block;
}

.column-content form .form-group input[type=checkbox] + label {
  display: inline-block;
}

.column-content form .form-group.group-row {
  display: flex;
  flex-direction: row;
}

.column-content form .form-group.group-column {
  display: flex;
  flex-direction: column;
}

.column-content form .form-group-required label:nth-child(1):after {
  content: "*";
  color: #f00;
  font-weight: bold;
}

.column-content form .form-group-required input {
  border-bottom-color: #f00 !important;
  border-bottom-width: 1px !important;
}

.column-content form > div {
  margin-bottom: 10px;
}

.column-content form input[type=text],
.column-content form input[type=number],
.column-content form input[type=password],
.column-content form input[type=date],
.column-content form input[type=datetime-local],
.column-content form textarea {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 1rem;
  font-weight: 400;
  padding: 3px 6px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  transition: all 300ms ease;
}

.column-content form input[type=text]:focus,
.column-content form input[type=number]:focus,
.column-content form input[type=password]:focus,
.column-content form input[type=date]:focus,
.column-content form input[type=datetime-local]:focus,
.column-content form textarea:focus {
  background-color: #fff;
  border: 1px solid #00adee;
}

.column-content form select {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  font-size: 1rem;
  font-weight: 400;
  padding: 3px 6px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  transition: all 300ms ease;
}

.column-content form textarea {
  min-width: 250px;
}

.column-content.content-alternate > div {
  padding: 1px 20px;
}

.column-content.content-alternate > div:nth-child(even) {
  background-color: #f7f7f7;
}

.column-list {
  overflow: auto;
  flex-grow: 1;
  min-height: 20%;
  background-color: #eee;
}

.column-list table,
.column-list caption,
.column-list tbody,
.column-list tfoot,
.column-list thead,
.column-list tr,
.column-list th,
.column-list td {
  margin: 0;
  padding: 0;
  border: 0;
}

.column-list table {
  border-spacing: 0;
  width: 100%;
}

.column-list th {
  position: sticky;
  top: 0;
  padding: 5px 6px;
  color: #646464;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 1px 1px 0 #fbfbfb;
  background: #eeeeee;
  background: linear-gradient(0deg, #eeeeee 0%, #f6f6f6 100%);
  border-bottom: 1px solid #dddddd;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.column-list th,
.column-list td {
  vertical-align: top;
  text-align: left;
}

.column-list th:first-child,
.column-list td:first-child {
  padding-left: 20px;
}

.column-list th:last-child,
.column-list td:last-child {
  padding-right: 20px;
}

.column-list td {
  max-width: 500px;
  padding: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #dddddd;
}

.column-list tr:hover td {
  background-color: rgba(238, 238, 238, 0.5);
}

.column-list tr.clickable-row {
  cursor: pointer;
}

.column-list tr.clickable-row:hover td {
  color: white;
  background-color: #00adee;
}

.column-list tr:last-child td {
  border-bottom: 0;
}

.column-list tr:nth-child(even) td {
  background-color: #fbfbfb;
}

.column-list > table {
  background-color: #fff;
}

.button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  min-height: 24px;
  margin: 0;
  padding: 3px;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-transform: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  background-color: #00adee;
  border-radius: 3px;
  border: none;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 300ms ease, background-color 300ms ease;
}

.button-link:hover {
  color: white;
  background-color: #0088bb;
  cursor: pointer;
}

.button-link svg {
  height: 14px;
  margin-right: 3px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

.recording-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid #dddddd;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.recording-heading > div.nav-btn {
  display: flex;
  align-items: center;
}

.recording-heading > div.nav-btn .button-link {
  width: 44px;
  height: 36px;
}

.recording-heading > div.nav-btn .button-link.prev-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.recording-heading > div.nav-btn .button-link.prev-button svg {
  margin-left: 10px;
}

.recording-heading > div.nav-btn .button-link.next-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.recording-heading > div.nav-btn .button-link.next-button svg {
  margin-right: 10px;
}

.recording-steps {
  display: flex;
  justify-content: stretch;
  align-items: center;
}

.recording-steps .step {
  display: flex;
  justify-content: stretch;
  align-items: center;
  padding: 3px 6px;
}

.recording-steps .step .recording-marker {
  padding-right: 6px;
}

.recording-steps .step .recording-marker > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 2px solid #dddddd;
  border-radius: 50%;
}

.recording-steps .step .recording-marker > span > svg {
  visibility: hidden;
  width: 14px;
  color: #fff;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

.recording-steps .step .recording-status {
  width: 154px;
  line-height: 100%;
}

.recording-steps .step .recording-status > h3 {
  margin: 0;
  color: #999999;
  font-size: 0.8rem;
}

.recording-steps .step .recording-status > div {
  font-size: 0.9rem;
  white-space: nowrap;
}

.recording-steps .step .recording-status button {
  width: 100%;
  height: 36px;
  font-size: 1rem;
  text-align: center;
}

.recording-steps .step .recording-status button:disabled {
  background-color: #cccccc;
  color: white;
  text-shadow: none;
}

.recording-steps .step.complete .recording-marker > span {
  background-color: #00adee;
  border-color: #00adee;
}

.recording-steps .step.complete .recording-marker > span > svg {
  visibility: visible;
}

.recording-details-table > thead > tr > th {
  z-index: 20000;
}

.recording-details-table > thead > tr > th:last-child {
  width: 180px;
}

.recording-details-table tr td {
  background-color: transparent;
}

.recording-details-table tr td .recording-beats-table {
  border-radius: 3px;
}

.recording-details-table tr td .recording-beats-table tr:first-child th {
  border-top: 1px solid #dddddd;
  border-top-left-radius: 3px;
}

.recording-details-table tr td .recording-beats-table tr:first-child td {
  border-top: 1px solid #dddddd;
  border-top-right-radius: 3px;
}

.recording-details-table tr td .recording-beats-table tr:last-child th {
  border-bottom: 1px solid #dddddd;
  border-bottom-left-radius: 3px;
}

.recording-details-table tr td .recording-beats-table tr:last-child td {
  border-bottom: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
}

.recording-details-table tr td .recording-beats-table th {
  width: 50px;
  padding: 3px;
  text-align: center;
  line-height: 115%;
  vertical-align: middle;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.recording-details-table tr td .recording-beats-table td {
  padding: 3px 20px;
  line-height: 115%;
  vertical-align: middle;
  background: none;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.recording-details-table tr td .recording-beats-table td:last-child {
  border-bottom: 1px solid #dddddd;
}

.recording-details-table tr:hover td {
  background-color: transparent;
}

.recording-details-table tr:nth-child(even) td {
  background-color: transparent;
}

.recording-events-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 3px;
}

.recording-events-table tr:last-child td {
  border-bottom: 1px solid #dddddd;
}

.recording-events-table th {
  text-align: center;
  border-top: 1px solid #dddddd;
}

.recording-events-table th:first-child {
  border-top-left-radius: 3px;
  border-left: 1px solid #dddddd;
}

.recording-events-table th:last-child {
  border-top-right-radius: 3px;
  border-right: 1px solid #dddddd;
}

.recording-events-table td {
  text-align: center;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.recording-events-table td:first-child {
  border-bottom-left-radius: 3px;
}

.recording-events-table td:last-child {
  border-bottom-right-radius: 3px;
  border-right: 1px solid #dddddd;
}

.recording-reclassifications {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.recording-reclassifications > div {
  margin-bottom: 3px;
  padding: 3px 6px;
  color: white;
  font-size: 0.8rem;
  background-color: #999999;
  border-radius: 3px;
}

.triage-index-table {
  border-spacing: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 0;
}

.triage-index-table > thead > tr th {
  position: sticky;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  padding: 5px 6px;
  color: #646464;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  text-shadow: 1px 1px 0 #fbfbfb;
  vertical-align: top;
  background: #eeeeee;
  background: linear-gradient(0deg, #eeeeee 0%, #f6f6f6 100%);
  border-bottom: 1px solid #dddddd;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}

.triage-index-table > thead > tr th:first-child {
  padding-left: 20px;
}

.triage-index-table > thead > tr th:last-child {
  padding-right: 20px;
}

.triage-index-table > tbody > tr > td {
  max-width: 500px;
  margin: 0;
  padding: 0;
  vertical-align: top;
  border-bottom: 1px solid #dddddd;
  overflow: hidden;
}

.triage-index-table > tbody > tr:last-child > td {
  border-bottom: 0;
}

.triage-index-table > tbody > tr:nth-child(even) {
  background-color: #fbfbfb;
}

.triage-index-table .triage-index-heading {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding: 6px 20px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.triage-index-table .triage-index-heading:hover {
  color: white;
  background-color: #00adee;
}

.triage-index-table .triage-index-heading > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.triage-index-table .triage-index-heading .heading-toggle {
  width: 18px;
  margin-right: 6px;
  text-align: center;
}

.triage-index-table .triage-index-heading .heading-toggle svg {
  height: 20px;
  margin: auto;
  transform: rotate(0deg);
  transition: transform 300ms ease;
}

.triage-index-table .triage-index-heading .header-triggers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.triage-index-table .triage-index-heading .header-triggers > div {
  width: 26px;
  margin-left: 3px;
  padding: 0 3px;
  color: white;
  text-align: center;
  border-radius: 3px;
}

.triage-index-table .triage-index-heading .header-triggers .trigger-high {
  background-color: #f00;
}

.triage-index-table .triage-index-heading .header-triggers .trigger-medium {
  background-color: #ff8c00;
}

.triage-index-table .triage-index-heading .header-triggers .trigger-low {
  background-color: #a9a9a9;
}

.triage-index-table .triage-index-content {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 6px;
  border-top: 1px solid #dddddd;
}

.triage-index-table .triage-cycle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 6px;
  border-radius: 3px;
}

.triage-index-table .triage-cycle .cycle-heading {
  padding: 3px 11px;
  color: #fff;
  text-transform: capitalize;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.triage-index-table .triage-cycle .cycle-content .trigger-recording {
  padding: 20px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.triage-index-table .triage-cycle .cycle-content .trigger-recording:last-child {
  border-bottom: none;
}

.triage-index-table .triage-cycle .cycle-content .trigger-recording > div {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #999999;
  font-size: 0.8rem;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.triage-index-table .triage-cycle .cycle-content .trigger-recording > div > span {
  color: #3e3e3e;
  font-size: 0.9rem;
  font-weight: 400;
}

.triage-index-table .triage-cycle.cycle-high {
  border: 3px solid #f00;
}

.triage-index-table .triage-cycle.cycle-high .cycle-heading {
  background-color: #f00;
}

.triage-index-table .triage-cycle.cycle-high .trigger-recording {
  border-bottom-color: #f00;
}

.triage-index-table .triage-cycle.cycle-medium {
  border: 3px solid #ff8c00;
}

.triage-index-table .triage-cycle.cycle-medium .cycle-heading {
  background-color: #ff8c00;
}

.triage-index-table .triage-cycle.cycle-medium .trigger-recording {
  border-bottom-color: #ff8c00;
}

.triage-index-table .triage-cycle.cycle-low {
  border: 3px solid #a9a9a9;
}

.triage-index-table .triage-cycle.cycle-low .cycle-heading {
  background-color: #a9a9a9;
}

.triage-index-table .triage-cycle.cycle-low .trigger-recording {
  border-bottom-color: #a9a9a9;
}

.triage-index-table td.show .triage-index-heading .heading-toggle svg {
  transform: rotate(90deg);
}

.triage-index-table td.show .triage-index-content {
  display: flex;
}

.triage-index-table td.show .triage-index-content .triage-cycle {
  border-radius: 3px;
  margin-bottom: 6px;
}

.messages-container {
  position: absolute;
  top: -36px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  -webkit-animation: messages 5s ease-in-out 300ms 1 alternate;
          animation: messages 5s ease-in-out 300ms 1 alternate;
}

.messages-container.msg-success {
  color: white;
  background-color: rgba(0, 235, 0, 0.95);
}

.messages-container.msg-warning {
  color: #3e3e3e;
  background-color: rgba(245, 171, 53, 0.95);
}

.messages-container.msg-default {
  color: white;
  background-color: rgba(100, 100, 100, 0.95);
}

.messages-container.msg-error {
  color: white;
  background-color: rgba(235, 0, 0, 0.95);
}

.messages-container svg {
  height: 20px;
  margin-right: 6px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

.report-container {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  margin: 20px;
  border-radius: 3px;
  background-color: #eeeeee;
  overflow: hidden;
}

.report-container h3 {
  color: white;
  background-color: #999999;
  margin: 0;
  padding: 3px 12px;
  font-weight: 400;
}

.report-container p {
  padding: 3px 12px;
}

.report-container > form {
  padding: 12px;
}

.report-container .form-group {
  margin: 0;
}

.report-container .form-group select {
  width: 100%;
}

.report-container .form-control {
  margin: 0;
}

.report-container button {
  margin: 0 auto 0 0;
}

.status {
  background-color: #E4E4E4;
  padding: 5px;
  border-radius: 5px;
  margin-right: 15px;
  transition: background-color 300ms linear;
}

.status.status-ok {
  color: white;
  background-color: rgba(65, 144, 0, 0.95);
}

.status.status-processing {
  color: #3e3e3e;
  background-color: rgba(245, 171, 53, 0.95);
}

.status.status-error {
  color: white;
  background-color: rgba(235, 0, 0, 0.95);
}

.inline-messages-container {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.inline-messages-container.msg-success {
  color: #00eb00;
}

.inline-messages-container.msg-error {
  color: #eb0000;
}

.inline-messages-container svg {
  height: 20px;
  margin-right: 6px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.05));
}

@-webkit-keyframes messages {
  0% {
    top: -36px;
    opacity: 0;
    visibility: hidden;
  }

  15% {
    top: 0;
    opacity: 1;
    visibility: visible;
  }

  85% {
    top: 0;
    opacity: 1;
    visibility: visible;
  }

  100% {
    top: -36px;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes messages {
  0% {
    top: -36px;
    opacity: 0;
    visibility: hidden;
  }

  15% {
    top: 0;
    opacity: 1;
    visibility: visible;
  }

  85% {
    top: 0;
    opacity: 1;
    visibility: visible;
  }

  100% {
    top: -36px;
    opacity: 0;
    visibility: hidden;
  }
}

.clearfix:after {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

