html body {
  /* For Edge and IE (older versions) */
  /* Optional: Dark theme scrollbars */
}
html body.superbill-page {
  -ms-overflow-style: auto; /* auto, none, or scrollbar */
  /* This CSS creates custom scrollbars that work across browsers */
  /* For Webkit browsers (Chrome, Safari, newer Edge) */
  /* For Firefox */
  /* For all elements inside body that can scroll */
  /* Optional: For Firefox, if you want to customize further */
}
html body.superbill-page::-webkit-scrollbar {
  width: 10px; /* width of the entire scrollbar */
  height: 10px; /* height for horizontal scrollbars */
}
html body.superbill-page::-webkit-scrollbar-track {
  background: #243642; /* color of the tracking area */
  border-radius: 10px;
}
html body.superbill-page::-webkit-scrollbar-thumb {
  background: #387478; /* scrollbar color */
  border-radius: 10px;
}
html body.superbill-page::-webkit-scrollbar-thumb:hover {
  background: #629584; /* scrollbar color on hover */
}
html body.superbill-page * {
  scrollbar-width: thin; /* "auto", "thin", or "none" */
  scrollbar-color: #387478 #243642; /* thumb and track color */
  -ms-overflow-style: auto;
}
@supports (scrollbar-width: thin) {
  html body.superbill-page * {
    scrollbar-width: thin;
    scrollbar-color: #387478 #F1F1F1;
  }
}
html body .sb-scroll {
  scrollbar-width: thin;
  scrollbar-color: #387478 #243642;
}
html body #superbill-page {
  font-size: 16px;
  line-height: 1.4;
  background: #F7F9FA;
  min-height: 100%;
}
html body #superbill-page #superbill-page-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  overflow: hidden;
  height: 100%;
  margin: 0 auto;
}
html body #superbill-page #superbill-sidebar-wrap {
  display: flex;
  align-items: stretch;
  height: 100vh;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #387478;
}
@media (min-width: 992px) {
  html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar {
    width: 140px;
  }
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #superbill-sidebar-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #sb-sidebar-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #sb-sidebar-timer #sb-timer-toggle {
  padding: 0;
  overflow: hidden;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #8F5B13, 0 0 0 5px #FAA026;
  position: relative;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #sb-sidebar-timer #sb-timer-toggle img {
  width: 32px;
  height: 32px;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #sb-sidebar-timer #sb-timer-toggle img.timer-active-underlay {
  opacity: 0;
  width: 0;
  height: 0;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap {
  padding: 10px 10px 0;
  background: rgba(56, 116, 120, 0.5);
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  backdrop-filter: blur(4px);
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit img {
  display: block;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit button {
  font-size: 0;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit #timer-minimize {
  background: rgb(40, 193, 49);
  position: relative;
  top: unset;
  right: unset;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit #timer-minimize .icon-minimize {
  display: none;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit #timer-minimize .icon-maximize {
  display: block;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit .timer-buttons {
  margin: 0;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap #superbill_time_edit #superbill_time_seconds {
  text-align: center;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar .sb-timer-wrap .sidebar-hide {
  display: none;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #superbill-menu {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #superbill-menu li {
  color: #FFF;
  font-size: 0.9rem;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  transition: ease-in-out 0.3s all;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #superbill-menu li:hover {
  text-decoration: none;
  background: rgba(155, 160, 166, 0.1);
  cursor: pointer;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #sb-profile {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #sb-profile:hover {
  cursor: pointer;
}
html body #superbill-page #superbill-sidebar-wrap #superbill-sidebar #sb-profile img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
html body #superbill-page #superbill-main-wrap {
  width: calc(100% - 140px);
}
@media (min-width: 992px) {
  html body #superbill-page #superbill-main-wrap {
    height: 100vh;
  }
}
html body #superbill-page #superbill-main {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 100%;
  min-height: 390px;
  position: relative;
}
html body #superbill-page .sb-header {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #D1D5DB;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  html body #superbill-page .sb-header {
    height: 72px;
  }
}
html body #superbill-page .sb-header .sb-h-title {
  flex: auto;
}
html body #superbill-page .sb-header .sb-h-title h1 {
  font-size: 26px;
  display: flex;
  align-items: center;
  margin: 0;
  gap: 8px;
}
html body #superbill-page .sb-header .sb-h-title h1 #superbill_task_name {
  font-size: 24px;
  padding: 0 8px;
}
html body #superbill-page .sb-header .sb-h-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
html body #superbill-page .sb-header .sb-h-menu a img {
  width: 32px;
  height: 32px;
}
html body #superbill-page .sb-body {
  flex: auto;
  overflow: auto;
}
html body #superbill-page.logged-out #superbill-main-wrap {
  width: 350px;
  margin: 20px auto;
}
html body #superbill-page.logged-out #loginform {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body #superbill-page.logged-out #loginform p {
  margin: 0;
}
html body #superbill-page.logged-out #loginform p.login-remember label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
html body #superbill-page.logged-out #loginform p.login-remember label input {
  width: auto;
  height: auto;
  margin: 0;
  order: unset;
}
html body #superbill-page.logged-out #loginform #wp-submit {
  width: auto;
}
html body #superbill-page {
  @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
  /* BUTTON STYLES */
}
html body #superbill-page {
  color: #18181A;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-style: normal;
  letter-spacing: 0.05em;
  font-optical-sizing: auto;
}
html body #superbill-page .text-bold {
  font-weight: bold;
}
html body #superbill-page .fw-100 {
  font-weight: 100;
}
html body #superbill-page .text-tiny {
  font-size: 0.65rem;
}
html body #superbill-page .text-small {
  font-size: 0.75rem;
}
html body #superbill-page .text-medium {
  font-size: 0.9rem;
}
html body #superbill-page .text-right {
  text-align: right;
}
html body #superbill-page .font-mono {
  font-family: monospace;
}
html body #superbill-page .negative {
  color: #D9534F;
}
html body #superbill-page .positive {
  color: #5CB85C;
}
html body #superbill-page .neutral {
  color: orange;
}
html body #superbill-page h1, html body #superbill-page h2, html body #superbill-page h3, html body #superbill-page h4, html body #superbill-page h5, html body #superbill-page h6 {
  font-weight: 400;
  line-height: 1.125;
  letter-spacing: -0.01em;
}
html body #superbill-page .wrap h2.superbill-h2 {
  font-size: 23px;
  font-weight: 400;
  padding: 0 2rem 0.5rem 0 !important;
  width: auto;
  margin: 1rem 0 0.5rem !important;
}
html body #superbill-page .wrap p:first-of-type {
  margin-top: 0.25rem;
}
html body #superbill-page * {
  box-sizing: border-box;
}
html body #superbill-page img {
  display: block;
}
html body #superbill-page pre {
  font-size: 14px;
}
html body #superbill-page .hidden {
  display: none !important;
}
html body #superbill-page #sb-loading {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
}
html body #superbill-page #sb-loading img {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html body #superbill-page button {
  font-family: "Manrope", sans-serif;
}
html body #superbill-page button.not-button {
  font-size: inherit;
  padding: unset;
  height: unset;
}
html body #superbill-page button.sb-task-view, html body #superbill-page button.sb-client-view {
  color: #387478;
}
html body #superbill-page button,
html body #superbill-page .button {
  font-weight: 500;
  padding: 0 16px;
  background: transparent;
  height: 32px;
  border: none;
  border-radius: 999px;
  box-shadow: none;
  transition: ease-in-out 0.3s all;
}
html body #superbill-page button.button-img,
html body #superbill-page .button.button-img {
  padding: 0 4px;
  width: 22px;
}
html body #superbill-page button.button-img img,
html body #superbill-page .button.button-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
html body #superbill-page button:hover,
html body #superbill-page .button:hover {
  cursor: pointer;
}
html body #superbill-page .button-primary,
html body #superbill-page .button-purple {
  color: #FFF;
  background: #387478;
  border-color: #387478;
}
html body #superbill-page .button-primary:hover, html body #superbill-page .button-primary:focus,
html body #superbill-page .button-purple:hover,
html body #superbill-page .button-purple:focus {
  background: #629584;
  border-color: #629584;
  outline: none;
}
html body #superbill-page .button-primary:focus,
html body #superbill-page .button-purple:focus {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 3px rgba(98, 149, 132, 0.5);
}
html body #superbill-page .button-positive {
  background-color: #5CB85C !important;
}
html body #superbill-page .button-positive:hover, html body #superbill-page .button-positive:focus {
  background-color: #55b555 !important;
  border-color: #5CB85C;
  outline: none;
}
html body #superbill-page .button-positive:focus {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 3px rgba(92, 184, 92, 0.5);
}
html body #superbill-page .button-neutral {
  background-color: orange !important;
}
html body #superbill-page .button-neutral:hover, html body #superbill-page .button-neutral:focus {
  background-color: #f59e00 !important;
  border-color: orange;
  outline: none;
}
html body #superbill-page .button-neutral:focus {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 3px rgba(255, 165, 0, 0.5);
}
html body #superbill-page .button-negative {
  background-color: #D9534F !important;
}
html body #superbill-page .button-negative:hover, html body #superbill-page .button-negative:focus {
  background-color: #d74b47 !important;
  border-color: #D9534F;
  outline: none;
}
html body #superbill-page .button-negative:focus {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 3px rgba(217, 83, 79, 0.5);
}
html body #superbill-page .button-positive,
html body #superbill-page .button-negative {
  color: #FFF !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}
html body #superbill-page .button-positive:hover,
html body #superbill-page .button-negative:hover {
  border-color: rgba(0, 0, 0, 0.5) !important;
}
html body #superbill-page .button-positive.timer,
html body #superbill-page .button-negative.timer {
  text-align: center;
  padding: 0 5px !important;
  min-width: 40px;
}
html body #superbill-page a {
  color: #387478;
  text-decoration: none;
  word-break: break-all;
  transition: ease all 0.5s;
}
html body #superbill-page a:hover {
  color: #629584;
  text-decoration: underline;
}
html body #superbill-page form .form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
html body #superbill-page form .form-row > * {
  flex: 1;
}
html body #superbill-page form .form-row-last {
  margin-top: 8px;
}
html body #superbill-page form .form-field {
  margin-bottom: 4px;
}
html body #superbill-page form .form-field label {
  font-size: 13px;
}
html body #superbill-page form .form-field .input-surround {
  display: flex;
  flex-direction: column;
  position: relative;
}
html body #superbill-page form .form-field .input-surround label {
  color: #9CA3AF;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  -ms-user-select: none; /* IE 10 and IE 11 */
  -webkit-user-select: none; /* Safari */
  user-select: none; /* Standard syntax */
  display: block;
  position: relative;
  order: 1;
  pointer-events: none;
  transition: all 500ms;
  transform: translate(12px, 31px);
  transform-origin: 0 0;
}
html body #superbill-page form .form-field .input-surround input::placeholder,
html body #superbill-page form .form-field .input-surround textarea::placeholder,
html body #superbill-page form .form-field .input-surround select::placeholder {
  color: transparent;
  -ms-user-select: none; /* IE 10 and IE 11 */
  -webkit-user-select: none; /* Safari */
  user-select: none; /* Standard syntax */
  display: none;
}
html body #superbill-page form .form-field .input-surround input:focus, html body #superbill-page form .form-field .input-surround input:not(:placeholder-shown),
html body #superbill-page form .form-field .input-surround textarea:focus,
html body #superbill-page form .form-field .input-surround textarea:not(:placeholder-shown),
html body #superbill-page form .form-field .input-surround select:focus,
html body #superbill-page form .form-field .input-surround select:not(:placeholder-shown) {
  outline: none;
}
html body #superbill-page form .form-field .input-surround input:focus + label, html body #superbill-page form .form-field .input-surround input:not(:placeholder-shown) + label,
html body #superbill-page form .form-field .input-surround textarea:focus + label,
html body #superbill-page form .form-field .input-surround textarea:not(:placeholder-shown) + label,
html body #superbill-page form .form-field .input-surround select:focus + label,
html body #superbill-page form .form-field .input-surround select:not(:placeholder-shown) + label {
  color: #18181A;
  transform: translateY(5px) scale(0.7);
}
html body #superbill-page form .form-field .input-surround textarea {
  line-height: 1.4;
  padding: 8px 10px;
  height: 70px;
}
html body #superbill-page form .form-field .sb-checkbox-wrap {
  font-size: 14px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
html body #superbill-page form .form-field .sb-checkbox-wrap .sb-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
html body #superbill-page form .form-field .sb-checkbox-wrap input {
  display: none;
}
html body #superbill-page form .form-field .sb-checkbox-wrap input:checked + .checkbox-slider .check {
  background: #5CB85C;
  border-color: #357935;
  transform: rotate(360deg);
}
html body #superbill-page form .form-field .sb-checkbox-wrap input:checked + .checkbox-slider .check:before {
  width: 13px;
  transform: rotate(-45deg) translate(-2px, 13px);
}
html body #superbill-page form .form-field .sb-checkbox-wrap input:checked + .checkbox-slider .check:after {
  width: 8px;
  transform: rotate(45deg) translate(12px, 6px);
}
html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider {
  display: flex;
  align-items: center;
  border-radius: 3px;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  transform-origin: 20% center;
  gap: 6px;
}
html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider *:before,
html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider *:after {
  content: "";
  position: absolute;
}
html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider .check {
  display: block;
  background: #D9534F;
  width: 26px;
  height: 26px;
  border-width: 1px;
  border-style: solid;
  border-color: #AA0000 #990000 #990000;
  border-radius: 3px;
  transition: 0.4s ease;
}
html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider .check:before, html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider .check:after {
  background: #FFF;
  height: 3px;
  border-radius: 10px;
  transition: 0.4s ease;
}
html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider .check:before {
  width: 15px;
  transform: rotate(45deg) translate(11px, 4px);
}
html body #superbill-page form .form-field .sb-checkbox-wrap .checkbox-slider .check:after {
  width: 15px;
  transform: rotate(-45deg) translate(-4px, 11px);
}
html body #superbill-page form button {
  display: block;
  border-radius: 6px;
}
html body #superbill-page form button + button {
  margin-top: 8px;
}
html body #superbill-page input,
html body #superbill-page textarea,
html body #superbill-page select {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  vertical-align: text-bottom;
  letter-spacing: -0.01em;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 40px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  margin: 0;
  order: 2;
  transition: ease-in-out all 0.3s;
}
html body #superbill-page input:focus, html body #superbill-page input:hover,
html body #superbill-page textarea:focus,
html body #superbill-page textarea:hover,
html body #superbill-page select:focus,
html body #superbill-page select:hover {
  outline: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
html body #superbill-page input.no-style,
html body #superbill-page textarea.no-style,
html body #superbill-page select.no-style {
  background: transparent;
  border: none;
  box-shadow: none;
}
html body #superbill-page #sb-modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.12);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(2px);
}
html body #superbill-page #sb-modal #sb-modal-inner {
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #243642;
  background: rgba(243, 248, 248, 0.85);
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
}
html body #superbill-page #sb-modal #sb-modal-close {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(253, 70, 70);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  right: 10px;
  z-index: 10;
}
html body #superbill-page #sb-modal #sb-modal-close:hover {
  cursor: pointer;
}
html body #superbill-page #sb-modal #sb-modal-close:hover img {
  opacity: 1;
}
html body #superbill-page #sb-modal #sb-modal-close img {
  opacity: 0;
  width: 18px;
  height: 18px;
  transition: all 0.3s ease-in-out;
}
html body #superbill-page #sb-modal #sb-modal-title {
  color: #E2F1E7;
  font-size: 15px;
  line-height: 32px;
  text-align: center;
  padding: 0 28px;
  background: #243642;
  height: 32px;
  border-radius: 3px 3px 0 0;
}
html body #superbill-page #sb-modal form {
  padding: 10px;
  border-radius: 0 0 6px 6px;
  margin: 0;
}
html body #superbill-page #sb-modal form .button-primary {
  margin-top: 10px;
}
html body #superbill-page .trumbowyg {
  min-height: unset;
  border: 1px solid #D1D5DB;
  border-radius: 3px;
}
html body #superbill-page .trumbowyg:empty {
  display: none;
}
html body #superbill-page .trumbowyg .trumbowyg-button-pane {
  padding: 0;
  border-radius: 3px 3px 0 0;
}
html body #superbill-page .trumbowyg .trumbowyg-button-pane .trumbowyg-button-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(0, 0, 0, 0.0588235294);
  border-bottom: 1px solid hsla(0, 0%, 4%, 0.1);
}
html body #superbill-page .trumbowyg .trumbowyg-button-pane .trumbowyg-button-group:after {
  display: none;
}
html body #superbill-page .trumbowyg .trumbowyg-button-pane .trumbowyg-button-group button {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 2px;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
html body #superbill-page .trumbowyg .trumbowyg-button-pane .trumbowyg-button-group button:hover {
  background: #D6D5D5;
}
html body #superbill-page .trumbowyg .trumbowyg-button-pane .trumbowyg-button-group button.trumbowyg-active-button {
  background: #D6D5D5;
}
html body #superbill-page .trumbowyg .trumbowyg-editor {
  padding: 0 10px;
  align-content: center;
  min-height: 54px;
}
html body #superbill-page .trumbowyg .trumbowyg-editor p {
  margin: 10px 0 !important;
}
html body #superbill-page table {
  display: table;
  border-collapse: collapse;
}
html body #superbill-page table.sb-table-full {
  width: 100%;
}
html body #superbill-page table.sb-table-left th,
html body #superbill-page table.sb-table-left td {
  text-align: left;
}
html body #superbill-page table.sb-table-center th,
html body #superbill-page table.sb-table-center td {
  text-align: center;
}
html body #superbill-page table.sb-table-striped tr:nth-child(even) td {
  background: rgba(56, 116, 120, 0.06);
}
html body #superbill-page table.sb-table-striped tr:nth-child(odd) td {
  background: rgba(250, 160, 38, 0.06);
}
html body #superbill-page table thead,
html body #superbill-page table tbody,
html body #superbill-page table tfoot {
  display: table-row-group;
}
html body #superbill-page table tr {
  display: table-row;
}
html body #superbill-page table th,
html body #superbill-page table td {
  padding: 0 8px;
  display: table-cell;
}
html body #superbill-page table th {
  color: #243642;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding-bottom: 4px;
}
html body #superbill-page table td {
  font-size: 0.9rem;
}
html body #superbill-page .sb-tab-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs.sb-tabs-client {
  padding-bottom: 20px;
  border-bottom: 1px solid #D1D5DB;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs .sb-tab {
  font-size: 16px;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs .sb-tab.selected, html body #superbill-page .sb-tab-wrapper .sb-tabs .sb-tab:hover {
  text-decoration: underline;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs.icon-tabs {
  gap: 4px;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs.icon-tabs .sb-tab {
  padding: 4px;
  border: 3px solid #387478;
  border-radius: 25%;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs.icon-tabs .sb-tab img {
  width: 18px;
  height: 18px;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs.icon-tabs .sb-tab:hover, html body #superbill-page .sb-tab-wrapper .sb-tabs.icon-tabs .sb-tab.selected {
  background: #387478;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs.icon-tabs .sb-tab:hover img, html body #superbill-page .sb-tab-wrapper .sb-tabs.icon-tabs .sb-tab.selected img {
  filter: grayscale(1) brightness(0) invert(1);
}
html body #superbill-page .sb-tab-wrapper .sb-tabs-contents {
  flex: auto;
}
html body #superbill-page .sb-tab-wrapper .sb-tabs-contents .sb-tab-content:not(.selected) {
  display: none;
}
html body #superbill-page #superbill_time_edit img {
  display: none;
  width: 24px;
  height: 24px;
}
html body #superbill-page #superbill_time_edit #timer-minimize {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgb(254, 176, 36);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  right: 34px;
  z-index: 10000;
}
html body #superbill-page #superbill_time_edit #timer-minimize:hover img {
  opacity: 1;
}
html body #superbill-page #superbill_time_edit #timer-minimize img {
  opacity: 0;
  width: 18px;
  height: 18px;
  transition: all 0.3s ease-in-out;
}
html body #superbill-page #superbill_time_edit #timer-minimize .icon-minimize {
  display: block;
}
html body #superbill-page #superbill_time_edit .timer-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  gap: 10px;
}
html body #superbill-page #superbill_time_edit .timer-buttons button {
  flex: 1;
  margin: 0;
}
html body #superbill-page .kanban {
  padding: 20px 0 0;
  display: flex;
  overflow: auto;
  max-width: 100%;
  height: 100%;
  gap: 40px;
}
html body #superbill-page .kanban .kanban-col {
  display: flex;
  flex-direction: column;
  min-width: 240px;
  min-height: 270px;
  border-radius: 6px;
  position: relative;
}
html body #superbill-page .kanban .kanban-col:nth-child(1):hover .kanban-col-head {
  background-color: #f0f0f0;
}
html body #superbill-page .kanban .kanban-col:nth-child(1) .kanban-col-head {
  background-color: #E3E3E3;
}
html body #superbill-page .kanban .kanban-col:nth-child(2):hover .kanban-col-head {
  background-color: #f8e0f0;
}
html body #superbill-page .kanban .kanban-col:nth-child(2) .kanban-col-head {
  background-color: #F4CBE5;
}
html body #superbill-page .kanban .kanban-col:nth-child(3):hover .kanban-col-head {
  background-color: #cdd4f2;
}
html body #superbill-page .kanban .kanban-col:nth-child(3) .kanban-col-head {
  background-color: #B9C2ED;
}
html body #superbill-page .kanban .kanban-col:nth-child(4):hover .kanban-col-head {
  background-color: #dcedf3;
}
html body #superbill-page .kanban .kanban-col:nth-child(4) .kanban-col-head {
  background-color: #C9E4EC;
}
html body #superbill-page .kanban .kanban-col:nth-child(5):hover .kanban-col-head {
  background-color: #e7f8e2;
}
html body #superbill-page .kanban .kanban-col:nth-child(5) .kanban-col-head {
  background-color: #D6F3CE;
}
html body #superbill-page .kanban .kanban-col:nth-child(6):hover .kanban-col-head {
  background-color: #fff3dd;
}
html body #superbill-page .kanban .kanban-col:nth-child(6) .kanban-col-head {
  background-color: #FFEAC3;
}
html body #superbill-page .kanban .kanban-col:nth-child(7):hover .kanban-col-head {
  background-color: #e4f4ff;
}
html body #superbill-page .kanban .kanban-col:nth-child(7) .kanban-col-head {
  background-color: #CAE9FF;
}
html body #superbill-page .kanban .kanban-col:nth-child(8):hover .kanban-col-head {
  background-color: #e1f5ee;
}
html body #superbill-page .kanban .kanban-col:nth-child(8) .kanban-col-head {
  background-color: #CEEFE3;
}
html body #superbill-page .kanban .kanban-col:not(:last-child):after {
  content: "";
  display: block;
  background: #D1D5DB;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(100% + 20px);
  transform: translateX(50%);
}
html body #superbill-page .kanban .kanban-col-head {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  padding: 5px 10px;
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  transition: ease-in-out 0.3s all;
}
html body #superbill-page .kanban .kanban-col-body {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 100%;
  gap: 20px;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task {
  opacity: 0.8;
  color: #FFF;
  word-wrap: break-word;
  background: #243642;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task:hover {
  opacity: 1;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-title,
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-preview,
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-bottom {
  padding: 3px 12px;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-title,
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-preview {
  border-bottom: 2px solid rgba(209, 213, 219, 0.12);
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-preview {
  padding: 12px;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-preview .kanban-task-preview-inner {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-bottom .kanban-task-client {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 2px;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-controls img {
  width: 24px;
  height: 20px;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-controls .sb-task-move-left img,
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-controls .sb-task-move-right img {
  padding: 0 8px;
}
html body #superbill-page .kanban .kanban-col-body .kanban-task .kanban-task-controls .sb-task-move-right img {
  transform: rotate(180deg);
}
html body #superbill-page .sb-filter {
  padding: 12px;
  display: flex;
  flex-direction: column;
  background: #FFF;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
}
html body #superbill-page .sb-filter h3 {
  padding: 0 0 10px;
  border-bottom: 1px solid #D1D5DB;
  margin: 0 0 10px;
}
html body #superbill-page #sb-task-area {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  backdrop-filter: blur(4px);
}
html body #superbill-page #sb-single-task {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}
@media (min-width: 992px) {
  html body #superbill-page #sb-single-task {
    width: 70vw;
    height: 100vh;
    margin-left: auto;
  }
}
html body #superbill-page #sb-single-task h4 {
  margin: 0 0 6px;
}
html body #superbill-page #sb-single-task hr {
  margin-bottom: 25px;
}
html body #superbill-page #sb-single-task .sb-task-description {
  margin: 0 0 25px;
}
html body #superbill-page #sb-single-task .task-comment-wrap {
  margin: 0 0 25px;
}
html body #superbill-page #sb-single-task .task-comment-wrap .sb-tc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
html body #superbill-page #sb-single-task .task-comment-wrap .sb-tc-head .sb-tc-author {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
html body #superbill-page #sb-single-task .task-comment-wrap .sb-tc-head .sb-tc-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
html body #superbill-page #sb-single-task .task-comment-wrap .sb-tc-head .sb-tc-buttons button {
  padding: 0;
  width: auto;
  height: auto;
  margin: 0;
}
html body #superbill-page #sb-single-task .task-comment-wrap .sb-tc-head .sb-tc-buttons button.edit-comment {
  color: #5CB85C;
}
html body #superbill-page #sb-single-task .task-comment-wrap .sb-tc-head .sb-tc-buttons button.delete-comment {
  color: #D9534F;
}
html body #superbill-page #sb-single-task .task-comment-wrap .wysiwgy {
  min-height: 54px;
  order: 3;
}
html body #superbill-page #sb-single-task .comment-bubble {
  padding: 10px;
  border: 1px solid;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2509803922);
}
html body #superbill-page #sb-single-task .comment-bubble p:first-child {
  margin-top: 0;
}
html body #superbill-page #sb-single-task .comment-bubble p:last-child {
  margin-bottom: 0;
}
html body #superbill-page #sb-single-task .wysiwgy-on-load {
  overflow: hidden;
  max-height: 0;
}
html body #superbill-page #sb-single-task .add-attachment {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
html body #superbill-page #sb-single-task .add-attachment button.task-add-attachment.button-img {
  padding: 3px;
  background: #DEE2E3;
  width: 32px;
  height: 32px;
  border: 1px solid #D1D5DB;
  border-radius: 3px;
}
html body #superbill-page #sb-single-task .add-attachment button.task-add-attachment.button-img:hover {
  background: #D6D5D5;
}
html body #superbill-page #sb-single-task .add-attachment .upload-response {
  display: flex;
  gap: 4px;
}
html body #superbill-page #sb-single-task .add-attachment .upload-response:empty {
  display: none;
}
html body #superbill-page #sb-single-task .add-attachment .upload-response .taa-upload {
  overflow: hidden;
  background: #ECF0F1;
  width: 30px;
  height: 30px;
  border: 1px solid #D1D5DB;
  border-radius: 3px;
}
html body #superbill-page #sb-single-task .add-attachment .upload-response .taa-upload img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}
html body #superbill-page #sb-single-task .sb-body {
  padding-bottom: 20px;
  overflow: auto;
}
html body #superbill-page #form-profile {
  max-width: 400px;
}
html body #superbill-page #form-profile .sb-checkbox-wrap {
  margin-top: 10px;
  gap: 20px;
}
html body #superbill-page .sb-body.sb-body-time {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
html body #superbill-page .sb-body.sb-body-client #sb-time-wrap {
  padding: 20px 0;
}
html body #superbill-page #sb-time-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
html body #superbill-page .sb-filter.sb-filter-time {
  width: 300px;
}
html body #superbill-page .sb-filter.sb-filter-time #sb-filter-time {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 6px;
}
html body #superbill-page .sb-body-tasks {
  padding-bottom: 20px;
}
html body #superbill-page .sb-body-tasks .sb-tabs-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
html body #superbill-page .sb-table-task-list select {
  padding-left: 0;
}
