.rdp {
  --rdp-cell-size: 40px; /* Size of the day cells. */
  --rdp-caption-font-size: 18px; /* Font size for the caption labels. */
  --rdp-accent-color: #0000ff; /* Accent color for the background of selected days. */
  --rdp-background-color: #e7edff; /* Background color for the hovered/focused elements. */
  --rdp-accent-color-dark: #3003e1; /* Accent color for the background of selected days (to use in dark-mode). */
  --rdp-background-color-dark: #180270; /* Background color for the hovered/focused elements (to use in dark-mode). */
  --rdp-outline: 2px solid var(--rdp-accent-color); /* Outline border for focused elements */
  --rdp-outline-selected: 3px solid var(--rdp-accent-color); /* Outline border for focused _and_ selected elements */
  --rdp-selected-color: #fff; /* Color of selected day text */

  margin: 1em;
}

/* Hide elements for devices that are not screen readers */
.rdp-vhidden {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: absolute !important;
  top: 0;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  border: 0 !important;
}

/* Buttons */
.rdp-button_reset {
  appearance: none;
  position: relative;
  margin: 0;
  padding: 0;
  cursor: default;
  color: inherit;
  background: none;
  font: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
}

.rdp-button_reset:focus-visible {
  /* Make sure to reset outline only when :focus-visible is supported */
  outline: none;
}

.rdp-button {
  border: 2px solid transparent;
}

.rdp-button[disabled]:not(.rdp-day_selected) {
  opacity: 0.25;
}

.rdp-button:not([disabled]) {
  cursor: pointer;
}

.rdp-button:focus-visible:not([disabled]) {
  color: inherit;
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
}

.rdp-button:hover:not([disabled]):not(.rdp-day_selected) {
  background-color: var(--rdp-background-color);
}

.rdp-months {
  display: flex;
}

.rdp-month {
  margin: 0 1em;
}

.rdp-month:first-child {
  margin-left: 0;
}

.rdp-month:last-child {
  margin-right: 0;
}

.rdp-table {
  margin: 0;
  max-width: calc(var(--rdp-cell-size) * 7);
  border-collapse: collapse;
}

.rdp-with_weeknumber .rdp-table {
  max-width: calc(var(--rdp-cell-size) * 8);
  border-collapse: collapse;
}

.rdp-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  text-align: left;
}

.rdp-multiple_months .rdp-caption {
  position: relative;
  display: block;
  text-align: center;
}

.rdp-caption_dropdowns {
  position: relative;
  display: inline-flex;
}

.rdp-caption_label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 0.25em;
  white-space: nowrap;
  color: currentColor;
  border: 0;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: var(--rdp-caption-font-size);
  font-weight: bold;
}

.rdp-nav {
  white-space: nowrap;
}

.rdp-multiple_months .rdp-caption_start .rdp-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.rdp-multiple_months .rdp-caption_end .rdp-nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.rdp-nav_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--rdp-cell-size);
  height: var(--rdp-cell-size);
  padding: 0.25em;
  border-radius: 100%;
}

/* ---------- */
/* Dropdowns  */
/* ---------- */

.rdp-dropdown_year,
.rdp-dropdown_month {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.rdp-dropdown {
  appearance: none;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  opacity: 0;
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.rdp-dropdown[disabled] {
  opacity: unset;
  color: unset;
}

.rdp-dropdown:focus-visible:not([disabled]) + .rdp-caption_label {
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
  border-radius: 6px;
}

.rdp-dropdown_icon {
  margin: 0 0 0 5px;
}

.rdp-head {
  border: 0;
}

.rdp-head_row,
.rdp-row {
  height: 100%;
}

.rdp-head_cell {
  vertical-align: middle;
  font-size: 0.75em;
  font-weight: 700;
  text-align: center;
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
  text-transform: uppercase;
}

.rdp-tbody {
  border: 0;
}

.rdp-tfoot {
  margin: 0.5em;
}

.rdp-cell {
  width: var(--rdp-cell-size);
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
  text-align: center;
}

.rdp-weeknumber {
  font-size: 0.75em;
}

.rdp-weeknumber,
.rdp-day {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--rdp-cell-size);
  max-width: var(--rdp-cell-size);
  height: var(--rdp-cell-size);
  margin: 0;
  border: 2px solid transparent;
  border-radius: 100%;
}

.rdp-day_today:not(.rdp-day_outside) {
  font-weight: bold;
}

.rdp-day_selected,
.rdp-day_selected:focus-visible,
.rdp-day_selected:hover {
  color: var(--rdp-selected-color);
  opacity: 1;
  background-color: var(--rdp-accent-color);
}

.rdp-day_outside {
  opacity: 0.5;
}

.rdp-day_selected:focus-visible {
  /* Since the background is the same use again the outline */
  outline: var(--rdp-outline);
  outline-offset: 2px;
  z-index: 1;
}

.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rdp-day_range_end.rdp-day_range_start {
  border-radius: 100%;
}

.rdp-day_range_middle {
  border-radius: 0;
}
:root {
  /* Globals */
  --font-family: 'Open Sans', -apple-system, 'Ubuntu', sans-serif;

  --h1-weight: 600;
  --h1-size: 24px;
  --h1-line-height: 33px;

  --h2-weight: 600;
  --h2-size: 20px;
  --h2-line-height: 27px;

  --h3-weight: 600;
  --h3-size: 16px;
  --h3-line-height: 22px;

  --body-weight: 400;
  --body-size: 16px;
  --body-line-height: 22px;

  --link-weight: 400;
  --link-size: 16px;
  --link-line-height: 22px;

  --tab-weight: 400;
  --tab-size: 16px;
  --tab-line-height: 22px;
  --tab-letter-spacing: 1.25px;

  --caption1-weight: 600;
  --caption1-size: 14px;
  --caption1-line-height: 19px;

  --caption2-weight: 400;
  --caption2-size: 14px;
  --caption2-line-height: 19px;

  --caption3-weight: 600;
  --caption3-size: 12px;
  --caption3-line-height: 15px;
  --caption3-letter-spacing: 0.5px;

  --caption-join-status-weight: 500;
  --caption-join-status-size: 12px;
  --caption2-join-status-size: 11px;
  --caption3-join-status-size: 13px;
  --caption-join-status-line-height: 16px;
  --caption-join-status-letter-spacing: 0.5px;

  --font-size-xxs: 9px;
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-md: 13px;
  --font-size-lg: 14px;
  --font-size-xl: 16px;
  --font-size-xxl: 20px;

  /* Palettes */
  --secondary-50: #E7E7E7;
  --secondary-100: #C2C2C2;
  --secondary-200: #999999;
  --secondary-300: #707070;
  --secondary-400: #525252;
  --secondary-500: #333333;
  --secondary-600: #2E2E2E;
  --secondary-700: #272727;
  --secondary-800: #202020;
  --secondary-900: #141414;
  --secondary-A100: #9CBCFE;
  --secondary-A200: #578CFC;
  --secondary-A300: #3370FC;
  --secondary-A400: #1748FA;

  --grey-2: #F9F9F9;
  --grey-6: rgba(255, 255, 255, 0.2);
  --grey-8: rgba(0, 0, 0, 0.2);
  --grey-9: #898989;
  --grey-11: rgba(0, 0, 0, 0.8);
  --grey-12: #151515;
  --grey-13: #000;

  --primary-50: #E7EFFF;
  --primary-100: #C4D7FE;
  --primary-200: #9CBCFE;
  --primary-300: #74A1FD;
  --primary-400: #578CFC;
  --primary-500: #0050fc;
  --primary-600: #3370FC;
  --primary-700: #2C65FB;
  --primary-800:#245BFB;
  --primary-900: #1748FA;
  --primary-A100: #FFFFFF;
  --primary-A200: #F7F9FF;
  --primary-A300: #C4CFFF;
  --primary-A400: #ABBAFF;

  --blue-1: #FAFAFB;
  --blue-2: #F4F6F9;
  --blue-3: #CCD0D9;
  --blue-5: #99A9C6;
  --blue-6: #97A0B3;
  --blue-7: #6C7A92;
  --blue-8: rgba(57, 120, 252, 0.2);

  --green: #00C248;
  --yellow: #FFBE30;
  --red: #FF4B4B;

  --red-4: #FC5E39;
  --red-6: #EF3248;

  --green-4: #00CC4C;

  --Divider-Color: #E2F1FB;
  --Divider-Color2: #DEEDF0;
  --bg-color-tabs: #F0F2F8;
  --bg-color-join-status: #EEFDED;
  --bg-color-waiting-status: #FDF7ED;

  /* Components */
  --Main-elements: var(--primary-500);
  --Secondary-elements: var(--secondary-500);
  --Tertiary-elements: var(--primary-A100);
  --Alternative-elements: var(--secondary-200);
  --Divider: var(--Divider-Color);
  --Inactive: var(--secondary-100);
  --Hover: var(--primary-A200);
  --Primary-font: var(--secondary-500);
  --Secondary-font: var(--secondary-300);
  --Tertiary-font: var(--primary-A100);
  --Low: var(--green);
  --Medium: var(--yellow);
  --High: var(--red);
  --Main-background: var(--primary-A200);
  --Secondary-background: var(--secondary-100);
  --Interface-background: var(--primary-A100);
  --Chat-background: var(--primary-A200);
  --Incoming-background: var(--primary-A100);
  --Outgoing-background: var(--primary-100);
  --Success: var(--green);
  --Information: var(var(--yellow));
  --Warning: var(--red);
  --ChatMessageRobotIcon-fill: var(--grey-13);
}

html, body {
  height: 100%;
  min-width: 330px;
  width: 100%;
}

body {
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

#app-root {
  background-color: var(--Main-background);
  min-height: 100%;
  text-align: center;
  width: 100%;
  overflow-y: auto;
}

#modal-root {
  position: relative;
}

.hidden {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.error-form {
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
  margin-top: 2px;
  color: var(--red-4);
  text-align: center;
  white-space: normal;
}

button {
  cursor: pointer;
  font-family: var(--font-family);
}

input:disabled, button:disabled {
  cursor: not-allowed;
}

button:disabled label {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .m-hidden {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .d-hidden {
    display: none;
  }
}

.form-field {
  text-align: start;
  width: 100%;
}

.form-field.inline {
  display: grid;
}

.form-field .form-field-error,
.form-field .form-field-label {
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
}

.form-field .form-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.form-field .form-field-label-required {
  color: var(--Warning);
}

.form-field.inline .form-field-label {
  margin-bottom: 0;
  margin-right: 15px;
}

.form-field .form-field-label-text {
  cursor: pointer;
}

.form-field.inline .field-container,
.form-field.inline .form-field-error {
  grid-column-start: 2;
}

.form-field .form-field-error {
  margin-top: 2px;
  color: var(--red-4);
  text-align: center;
}

.form-field-row {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}

.form-field:not(:first-child),
.form-field-row:not(:first-child) {
  margin-top: 12px;
}

.form-field-col {
  margin-left: 5px;
  margin-right: 5px;
}

.form-field.form-field-col:not(:first-child) {
  margin-top: 0;
}

.form-field-tooltip {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.form-field-tooltip svg {
  cursor: pointer;
  height: 24px;
  width: 24px;
  fill: var(--blue-7);
}

.form-field-tooltip-body {
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
  visibility: hidden;
  position: absolute;
  width: 250px;
  color: var(--Tertiary-font);
  background-color: var(--grey-11);
  transition: opacity 0.25s linear;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  box-sizing: border-box;
}

.form-field-tooltip-body::after {
  content: "";
  position: absolute;
  border-width: 5px;
  border-style: solid;
}

.form-field-tooltip-body.tooltip-bottom-end {
  top: calc(135% + 5px);
  right: -5px;
}

.form-field-tooltip-body.tooltip-bottom-end::after {
  bottom: 100%;
  right: 7px;
  border-color: transparent transparent var(--grey-11) transparent;
}

.form-field-tooltip-body ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  text-align: start;
}

.form-field-tooltip-body ul li:not(:first-child) {
  margin-top: 2px;
}

.form-field-tooltip:hover .form-field-tooltip-body {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .form-field.inline .form-field-label {
    margin-right: 5px;
  }

  .form-field-row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .form-field-col {
    margin: 0 0 12px;
  }
}

.modal {
  align-items: center;
  background-color: var(--grey-11);
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.25s linear;
  width: 100%;
  z-index: -1;
}

.modal.active {
  opacity: 1;
  z-index: 9;
}

.modal .icon-close {
  cursor: pointer;
  position: absolute;
  height: 24px;
  width: 24px;
  top: 15px;
  right: 15px;
}

.modal .form {
  background-color: var(--Interface-background);
  border-radius: 6px;
  color: var(--grey-13);
  font-size: var(--body-size);
  letter-spacing: 0;
  line-height: var(--body-line-height);
  transform: scale(0);
  transition: transform 0.25s ease-in-out;
  width: 400px;
}

.modal.active .form {
  transform: scale(1);
}

.modal .form .title {
  border-bottom: 1px solid var(--Divider-Color);
  box-sizing: border-box;
  font-weight: 600;
  padding: 18px;
}

.modal .form .body {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 22px;
}

.modal .form .label {
  color: var(--Secondary-elements);
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
}

.modal .form .row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.modal .form .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .offline .modal.active {
    top: 41px;
  }

  .modal .form {
    width: 330px;
  }

  .modal .form .row {
    flex-wrap: wrap;
  }
}

.sidebar-wrapper .sidebar-content {
  position: fixed;
  top: 0;
  z-index: 5;
  height: 100%;
  width: 280px;
  background-color: var(--Interface-background);
  transition: all 0.25s ease-in-out;
}

.sidebar-wrapper .sidebar-left {
  left: -100%;
}

.sidebar-wrapper.open .sidebar-left {
  left: 0;
}

.sidebar-wrapper .sidebar-right {
  right: -100%;
}

.sidebar-wrapper.open .sidebar-right {
  right: 0;
}

.sidebar-wrapper .sidebar-background {
  background-color: var(--grey-11);
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.25s linear;
}

.sidebar-wrapper.open .sidebar-background {
  opacity: 1;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .offline .sidebar-wrapper .sidebar-content {
    top: 41px;
  }
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-toggle {
  display: flex;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 4px;
  outline: none;
  align-items: center;
  color: var(--Secondary-elements);
  width: 100%;
}

.dropdown .dropdown-menu {
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 35px;
  width: 183px;
  margin: 0;
  padding: 10px 0;
  border-radius: 5px;
  background-color: var(--Interface-background);
  box-shadow: 0 10px 26px 0 var(--grey-8);
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  text-align: start;
  list-style-type: none;
}

.dropdown .dropdown-menu.open {
  transform: scale(1);
}

.dropdown .dropdown-item {
  cursor: pointer;
}

.dropdown .dropdown-item.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.dropdown .dropdown-item-text {
  display: block;
  padding: 8px 16px;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  color: var(--Secondary-elements);
  text-decoration: none;
}

.dropdown .dropdown-item-divider {
  cursor: default;
  pointer-events: none;
  border-top: 1px solid var(--Divider-Color);
  margin: 8px 0;
}

.dropdown .dropdown-item.active {
  background-color: var(--grey-2);
  box-shadow: inset 3px 0 0 0 var(--Main-elements);
}

.dropdown .dropdown-item:hover {
  background-color: var(--grey-2);
}


.header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 12px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: var(--Main-background);
}

.header .header-nav {
  display: flex;
  align-items: center;
}

.header .logo {
  display: flex;
  align-items: center;
  margin: 0 auto 0 18px;
}

.header .logo .icon {
  height: 30px;
  width: 135px;
  margin: 10px auto 10px 18px;
}

.header .logo a {
  line-height: 0;
}

.header .header-nav .icon {
  fill: var(--Secondary-elements);
  height: 24px;
  width: 24px;
  vertical-align: middle;
  flex-shrink: 0;
}

.header .logo .version {
  color: var(--blue-7);
  font-size: var(--font-size-xs);
  letter-spacing: 0;
  line-height: 14px;
  margin-left: 6px;
}

.header .btn {
  height: 28px;
  width: 28px;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}

.header .share {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--Secondary-elements);
  font-size: var(--body-size);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
  padding: 4px 10px;
  text-align: center;
}

.header .btn {
  height: 28px;
  width: 28px;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}

.header .share .icon,
.header .dropdown-create .icon {
  height: 24px;
  vertical-align: middle;
  width: 24px;
}

.header .share .text {
  margin-left: 5px;
}

.header .header-dropdown .dropdown-label {
  font-weight: 600;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  margin: 0 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header .icon.icon-lang {
  height: 24px;
  width: 24px;
}

.header .header-dropdown .icon.icon-dropdown {
  height: 24px;
  width: 24px;
}

.header .header-nav-right > *:not(:first-child) {
  margin-left: 10px;
}

.header .dropdown-nav {
  max-width: 180px;
}

.header .dropdown-nav .icon.icon-user {
  height: 24px;
  width: 24px;
  padding: 5px;
}

.header-menu {
  list-style-type: none;
  padding: 0;
}

.header-menu .menu-item {
  cursor: pointer;
}

.header-menu .menu-item-text {
  display: block;
  padding: 8px 16px;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  color: var(--secondary-900);
  text-decoration: none;
}

.header-menu .menu-item-divider {
  cursor: default;
  pointer-events: none;
  border-top: 1px solid var(--Divider-Color);
  margin: 8px 0;
}

.t-display {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 15px 12px;
    align-items: flex-start;
  }

  .header .header-nav {
    flex: 1 1 50px;
  }

  .header .header-nav-right {
    justify-content: flex-end;
  }

  .header:not(.header-auth) {
    margin-bottom: 15px;
  }

  .header .dropdown-create,
  .header .share,
  .header .logout {
    display: none;
  }

  .header .logo {
    flex-direction: column;
    margin: 0;
  }

  .header .logo .version {
    margin: 18px 0 0;
  }

  .header.header-auth .logo .version {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1660px) {
  .header-call .dropdown-create,
  .header-call .dropdown-lang,
  .header-call .dropdown-nav,
  .header-call .share,
  .header-call .logout {
    display: none;
  }

  .header-call .dropdown-nav.t-display {
    display: inline-block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .header-call {
    padding: 10px 12px;
    align-items: flex-start;
  }

  .header-call .header-nav {
    flex: 1 1 50px;
  }

  .header-call .header-nav-right {
    justify-content: flex-end;
  }

  .header-call:not(.header-auth) {
    margin-bottom: 15px;
  }

  .header-call .btn.clients {
    display: inline-block;
  }

  .header-call .logo {
    flex-direction: column;
    margin: 0;
  }

  .header-call .logo .version {
    margin: 18px 0 0;
  }

  .header-call.header-auth .logo .version {
    display: none;
  }
}

/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.field {
  border-radius: 4px;
  border: 1px solid var(--Divider-Color);
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  transition: box-shadow 0.2s ease-in-out;
}

textarea.field,
input.field,
.field input {
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input.field::-webkit-credentials-auto-fill-button,
.field input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
}

input.field[type='password']::-ms-reveal,
input.field[type='password']::-ms-clear,
.field input[type='password']::-ms-reveal,
.field input[type='password']::-ms-clear {
  display: none;
}

textarea.field {
  min-height: 45px;
  resize: vertical;
  line-height: 1.38;
  height: 100%;
}

.field input {
  width: 100%;
  border: none;
  padding: 0;
}

textarea.field::placeholder,
input.field::placeholder,
.field input::placeholder {
  color: var(--blue-7);
}

textarea.field:read-only,
input.field:read-only,
.field input:read-only {
  color: var(--Inactive);
}

textarea.field:focus,
textarea.field:active,
input.field:focus,
input.field:active,
.radio-field > input:focus + span::before,
.checkbox-field > input:focus + span::before,
.field.PhoneInput--focus,
.field.select-field--focus,
.field.date-field--focus,
.field.time-field--focus {
  box-shadow: 0 4px 11px 4px var(--primary-100);
}

.flex-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.textarea-wrapper {
  position: relative;
  line-height: 0;
}

.textarea-wrapper .textarea-length {
  position: absolute;
  bottom: 10px;
  right: 12px;
  line-height: 1;
  color: var(--Secondary-elements);
  opacity: 0.5;
}

/* Radio */
.radio-field {
  font-size: var(--caption2-size);
  line-height: 0;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.radio-field > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.radio-field > span {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.radio-field > span::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid var(--blue-5);
  border-radius: 50%;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.radio-field > input:checked + span::before {
  border: 5px solid var(--Main-elements);
  background-color: var(--Incoming-background);
}

/* Checkbox */
.checkbox-field {
  cursor: pointer;
  font-size: var(--caption2-size);
  line-height: 0;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.checkbox-field > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox-field > span {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.checkbox-field .icon-checkmark {
  position: absolute;
  width: 24px;
  height: 24px;
  left: -3px;
  fill: var(--Main-elements);
}

.checkbox-field .icon-check {
  position: absolute;
  width: 24px;
  height: 24px;
  left: -3px;
  fill: var(--Main-elements);
}

.checkbox-field.disabled .icon-check{
  fill: var(--Inactive);
}

.checkbox-field > span::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid var(--blue-5);
  border-radius: 4px;
  margin-right: 10px;
}

.checkbox-field > input:checked + span::before {
  border-color: var(--Alternative-elements);
  background-color: var(--Incoming-background);
}

/* Switch */
.switch-field {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.switch-field .switch-label {
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  margin-left: 8px;
}

.switch-field .switch-input {
  display: none;
}

.switch-field .switch-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40px;
  height: 20px;
  background: var(--Inactive);
  border-radius: 12px;
  transition: background-color .2s;
}

.switch-field .switch-button-indicator {
  position: absolute;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  transition: 0.2s;
  background: var(--Tertiary-elements);
}

.switch-field:active .switch-button-indicator {
  width: 16px;
}

.switch-field .switch-input:checked + .switch-button {
  background: var(--Main-elements);
}

.switch-field .switch-input:disabled + .switch-button {
  background: var(--Inactive);
}

.switch-field .switch-input:checked + .switch-button .switch-button-indicator {
  left: calc(100% - 4px);
  transform: translateX(-100%);
}

/* Select */
.field.select-field {
  position: relative;
  background-color: inherit;
}

.field.select-field .flex-field-input.hiden {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.field.select-field .icon {
  cursor: pointer;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  fill: var(--secondary-900);
  transition: transform 0.2s linear;
}

.field.select-field .select-field-list {
  z-index: 2;
  position: absolute;
  top: 53px;
  left: 0;
  max-height: 228px;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border-radius: 5px;
  background-color: var(--Interface-background);
  box-shadow: 0 10px 26px 0 var(--grey-8);
  text-align: start;
  overflow: auto;
}

.field.select-field .select-field-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 10px;
  color: inherit;
}

.field.select-field.select-field--disabled {
  color: var(--secondary-100);
}

.field.select-field.select-field--disabled  .icon{
    fill: var(--secondary-100);
}

.field.select-field .select-option {
  list-style-type: none;
  padding: 10px 16px;
  cursor: pointer;
  color: inherit;
}

.field.select-field .select-option-checkmark {
  display: flex;
  flex-direction: row;
  padding: 8px 16px 8px;
  gap: 8px;
  align-items: center;
  height: 38px;
  cursor: pointer;
  color: inherit;

  font-size: var(--font-size-xl);
  line-height: var(--body-line-height);
  font-weight: var(--caption2-weight);
  color: var(--secondary-500);
}

.field.select-field .select-option-checkmark  .icon-checkmark {
  width: 16px;
  height: 16px;
  fill: var(--Main-elements);
}

.field.select-field .select-option-title {
  list-style-type: none;
  padding: 10px 16px 10px;
  font-size: var(--font-size-xl);
  line-height: var(--caption2-line-height);
  font-weight: var(--caption1-weight);
  color: var(--Secondary-font);
}

.field.select-field .select-option[aria-selected='true'] {
  background-color: var(--grey-2);
  box-shadow: inset 3px 0 0 0 var(--Main-elements);
}

.field.select-field .select-option:hover {
  background-color: var(--grey-2);
  box-shadow: inset 3px 0 0 0 var(--Main-elements);
}

.field.select-field.select-field--opened .icon {
  transform: rotate(180deg);
}

.field.select-field.select-field--disabled {
  border: 1px solid var(--secondary-100);
}

/* DateInput */
.field.date-field {
  background-color: var(--Interface-background);
}

.field .DayPickerInput {
  width: 100%;
}

.field.date-field label {
  line-height: 0;
}

.field.date-field .icon {
  cursor: pointer;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  fill: var(--Secondary-elements);
}

.field.show-overlay .icon, .field.date-field--focus .icon {
  fill: var(--DateFieldCalendarIcon-fill--focus)
}

.field.date-input {
  position: relative;
}

.field .DayPickerInput-Overlay {
  position: absolute;
  z-index: 1;
  left: -1px;
  border-radius: 5px;
  background-color: var(--Interface-background);
  box-shadow: 0 10px 26px 0 var(--grey-8);
}

.field.top .DayPickerInput-Overlay {
  bottom: 52px;
}

.field.bottom .DayPickerInput-Overlay {
  top: 52px;
}

.field .rdp {
  padding: 30px;
  margin: 0;
}

.field .nav-icon {
  height: 24px;
  width: 24px;
  vertical-align: middle;
}

.field .nav-icon-prev {
  transform: rotate(180deg);
}

.field .rdp-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.field .rdp-nav .rdp-caption_label {
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  padding: 0;
  border: none;
  font-weight: var(--body-weight);
}

.field .rdp-nav_button:disabled {
  visibility: hidden;
}

.field .DayPicker-Nav-btn.hide {
  visibility: hidden;
}

.field .rdp-head_cell,
.field .rdp-day {
  font-size: var(--caption2-size);
  line-height: 1;
  color: var(--Secondary-elements);
  font-weight: normal;
  width: inherit;
  height: inherit;
}

.field .rdp-head_cell {
  text-transform: none;
}

.field .rdp-cell,
.field .rdp-head_cell {
  width: 26px;
  height: 26px;
  padding: 3px 9px;
}

.field .rdp-button[aria-disabled='true'], .field .rdp-day_outside {
  color: var(--blue-7);
  opacity: unset;
}

.field .rdp-day_today {
  color: var(--Secondary-elements);
  font-weight: 700;
}

.field .rdp-day.is-weekly,
.field .rdp-day_selected:not([aria-disabled='true']),
.field .rdp-day_selected:focus:not([aria-disabled='true']),
.field .rdp-day_selected:active:not([aria-disabled='true']),
.field .rdp-day_selected:hover:not([aria-disabled='true']) {
  background-color: var(--Main-elements);
  color: var(--Tertiary-font);
}

.field .rdp-day:hover:not([aria-disabled='true']):not([aria-selected='true']) {
  background-color: var(--blue-8);
}

.field .rdp-day:focus, .field .rdp-nav_button {
  border: none;
  background-color: unset;
}

.field .rdp-nav_button {
  width: initial;
  height: initial;
  padding: 0;
}

/* TimeField */
.field.time-field {
  display: inline-flex;
  padding: 0;
  background-color: var(--TimeFieldInput-backgroundColor);
}

.field.time-field .time-input {
  margin: 11px 12px;
  color: var(--Secondary-elements);
}

.field.time-field .time-field-controls {
  line-height: 0;
  border-left: 1px solid var(--Divider-Color);
  display: flex;
  flex-direction: column;
}

.field.time-field .time-field-controls .tfc-btn {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  line-height: 0;
  height: 22px;
  width: 22px;
}

.field.time-field .time-field-controls .tfc-btn:first-child {
  border-bottom: 1px solid var(--Divider-Color);
}

.field.time-field .time-field-controls .icon {
  width: 22px;
  height: 22px;
  fill: var(--Secondary-elements);
}

.field.time-field .time-field-controls .tfc-btn:first-child .icon {
  transform: rotate(180deg);
}

/* PhoneInput */
.field.PhoneInput {
  background-color: transparent;
}

.field .PhoneInputCountry {
  margin-right: 15px;
}

.field .PhoneInputCountryIcon {
  width: 20px;
  height: unset;
  box-shadow: none;
  background-color: unset;
}

.field .PhoneInputCountryIcon img {
  border: 1px solid var(--Divider-Color);
  box-sizing: border-box;
}

.field .PhoneInputCountrySelectArrow {
  margin-left: 10px;
  transform: rotate(45deg) translateY(-2px);
  border-color: none;
}

.field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.field-wrapper .icon {
  position: absolute;
  height: 24px;
  width: 24px;
  cursor: pointer;
  right: 8px;
}

.field-wrapper .icon-copy {
  position: absolute;
  height: 22px;
  width: 22px;
  cursor: pointer;
  right: 8px;
  fill: var(--Inactive);
}

.field-wrapper .icon path {
  fill: var(--blue-5);
}

@media screen and (max-width: 768px) {
  .field .DayPickerInput-Overlay {
    width: 273px;
    max-width: 330px;
    display: flex;
    justify-content: center;
  }

  .field .rdp {
    padding: 20px 10px;
  }

  .field .rdp-cell,
  .field .rdp-head_cell {
    padding: 3px 5px;
  }
}

.spinner {
  background: none;
  border-radius: 50%;
  display: inline-block;
  height: 16px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 16px;
}

.spinner > div {
  animation: fade 1s linear infinite;
  border-radius: 50px;
  box-shadow: 0 0 3px var(--grey-8);
  height: 28%;
  left: 49%;
  opacity: 0;
  position: absolute;
  top: 38%;
  width: 6%;
}

.spinner.default > div {
  background-color: var(--secondary-900);
}

.spinner.primary > div {
  background-color: var(--Main-elements);
}

.spinner.secondary > div {
  background-color: var(--Incoming-background);
}

@keyframes fade {
  from { opacity: 1; }
  to { opacity: 0.25; }
}

.spinner .bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}

.spinner .bar2 {
  transform: rotate(30deg) translate(0, -130%);
  animation-delay: -0.9167s;
}

.spinner .bar3 {
  transform: rotate(60deg) translate(0, -130%);
  animation-delay: -0.833s;
}
.spinner .bar4 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.7497s;
}
.spinner .bar5 {
  transform: rotate(120deg) translate(0, -130%);
  animation-delay: -0.667s;
}
.spinner .bar6 {
  transform: rotate(150deg) translate(0, -130%);
  animation-delay: -0.5837s;
}
.spinner .bar7 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.5s;
}
.spinner .bar8 {
  transform: rotate(210deg) translate(0, -130%);
  animation-delay: -0.4167s;
}
.spinner .bar9 {
  transform: rotate(240deg) translate(0, -130%);
  animation-delay: -0.333s;
}
.spinner .bar10 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.2497s;
}
.spinner .bar11 {
  transform: rotate(300deg) translate(0, -130%);
  animation-delay: -0.167s;
}
.spinner .bar12 {
  transform: rotate(330deg) translate(0, -130%);
  animation-delay: -0.0833s;
}

.button {
  box-sizing: border-box;
  border-radius: 4px;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  padding: 11px 25px;
  margin: 0;
  text-align: center;
  border: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.button:focus {
  outline: none;
  box-shadow: 0 4px 11px 4px var(--primary-100);
}

.button.button-sm {
  min-width: 133px;
}

.button.button-md {
  min-width: 160px;
}

.button.button-lg {
  padding-left: 10px;
  padding-right: 10px;
}

.button.button-xl {
  padding-left: 85px;
  padding-right: 85px;
}

.button.button-default {
  border: 1px solid var(--secondary-900);
  background-color: var(--Interface-background);
  color: var(--Secondary-elements);
}

.button.button-primary {
  background-color: var(--Main-elements);
  color: var(--Tertiary-font);
}

.button.button-disabled {
  background-color: var(--blue-5);
  color: var(--Tertiary-font);
}

.button.button-full {
  width: 100%;
}

.button.button-cancel {
  border: 1px solid var(--Warning);
  background-color: var(--Interface-background);
  color: var(--Warning);
}

@media screen and (max-width: 768px) {
  .button.m-button-sm {
    min-width: 133px;
  }

  .button.m-button-auto {
    min-width: auto;
    width: 100%;
  }
}

.login-screen {
  flex: 1;
  width: 100%;
}
.login-screen .login-form {
  background-color: var(--Interface-background);
  border-radius: 5px;
  margin: 60px auto 0;
  padding: 60px 73px;
  width: 490px;
  box-sizing: border-box;
  color: var(--Secondary-elements);
  box-shadow: 0 1px 4px 0 var(--grey-8);
  transition: all 0.2s ease-in;
}

.login-screen .title {
  margin: 0 0 40px;
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
}

.login-screen .btn-group {
  margin-top: 40px;
}

.login-screen .login-form .field {
  border: 1px solid var(--Alternative-elements);
}

@media screen and (max-width: 768px) {
  .login-screen .login-form {
    padding: 30px 15px;
    width: calc(100% - 20px);
    margin-top: 0;
  }

  .login-screen .title {
    margin-bottom: 20px;
  }
}

.camera-modal .form .body {
  padding: 0;
}

.camera-modal .form .footer {
  padding: 0 27px 40px;
}

.camera-modal .list-devices {
  padding: 10px 0;
  margin: 0;
  width: 100%;
}

.camera-modal .list-devices-item {
  list-style-type: none;
  padding: 10px 16px;
  cursor: pointer;
}

.camera-modal .list-devices-item.active {
  background-color: var(--grey-2);
  box-shadow: inset 3px 0 0 0 var(--Main-elements);
}

.camera-modal .list-devices-item:hover {
  background-color: var(--grey-2);
  box-shadow: inset 3px 0 0 0 var(--Main-elements);
}

.controls {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 20px;
  padding-top: 10px;
}

.controls.minimalistic {
  padding-bottom: 10px;
}

.controls .control-btn {
  background-color: var(--secondary-400);
  border-radius: 5px;
  border: none;
  color: var(--Tertiary-font);
  font-size: var(--font-size-xs);
  height: 44px;
  line-height: 13px;
  margin: 0 10px;
  padding: 0;
  width: 44px;
}

.controls.minimalistic .control-btn {
  height: 38px;
  width: 38px;
  margin: 0 6px;
}

.controls .control-btn:disabled {
  opacity: 0.6;
}

.controls .control-btn.active {
  background-color: var(--Incoming-background);
}

.controls .control-btn.disable,
.control-btn.active-record {
  background-color: var(--Warning);
}

.controls .control-btn .icon {
  height: 24px;
  vertical-align: middle;
  width: 24px;
}

.controls .control-btn .icon path,
.icon-device path {
  fill: var(--Tertiary-elements);
}

.controls.minimalistic .control-btn .icon {
  height: 16px;
  width: 16px;
}

.controls .control-btn.active .icon path {
  fill: var(--Secondary-elements);
}

.controls .control-btn .record {
  background-color: var(--Warning);
  border-radius: 50%;
  height: 16px;
  margin: 0 auto;
  vertical-align: middle;
  width: 16px;
}

.controls.minimalistic .control-btn .record {
  height: 14px;
  width: 14px;
}

.controls .control-btn.active .record {
  border-radius: 0%;
}

.controls .control-btn.end-call {
  background-color: var(--Warning);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  padding: 0 1.2em;
  width: auto;
}

.controls .control-btn.end-call .icon {
  fill: var(--Tertiary-elements);
}

@media screen and (max-width: 768px) {
  .controls {
    padding-top: 15px;
  }
}

.call-screen-container,
.call-screen-container.minimalistic {
  display: flex;
  flex-direction: column;
  flex: 0;
  height: 100%;
  overflow: hidden;
  transition: flex 0.2s linear;
  max-height: 100vh;
}

.on-call .call-screen-container {
  flex: 1;
}

.call-screen {
  align-items: center;
  background-color: var(--Secondary-elements);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.call-screen .videos {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.call-screen .videos .video-container {
  display: flex;
  flex: 1;
  max-height: 50%;
  width: 100%;
}

.call-screen .videos .video-container .overlay {
  background: linear-gradient(180deg, var(--Secondary-elements) 0%, transparent 100%);
  box-sizing: border-box;
  color: var(--Tertiary-font);
  font-size: var(--caption2-size);
  left: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  text-align: start;
  top: 0;
}

.call-screen .videos .video-container .overlay p {
  margin: 0 0 5px 0;
}

.call-screen .videos .video-container video {
  max-height: 100%;
  width: 100%;
}

.call-screen .videos #local {
  display: flex;
  flex: 1;
  max-height: 50%;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .call-screen-container {
    flex: 1;
  }

  .call-screen .videos .video-container {
    max-height: 100%;
  }

  .call-screen .videos video#local {
    box-shadow: 0 9px 20px 0 var(--secondary-800);
    bottom: 0;
    flex: 0;
    max-height: 25%;
    max-width: 25%;
    min-height: 15%;
    position: absolute;
    right: 0;
    background-color: var(--secondary-900);
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
  }

  .call-screen .videos video#local.hide {
    opacity: 0;
  }
}

.select-container {
  box-sizing: border-box;
  color: var(--Secondary-elements);
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  margin-top: 10px;
  outline: none;
  position: relative;
  text-align: start;
  border: 1px solid var(--Divider-Color);
  border-radius: 4px;
  transition: box-shadow 0.2s ease-in-out;
}

.select-container .select__control {
  border: none;
  border-radius: 4px;
  padding: 0.7em 1.2em;
  cursor: pointer;
}

.select-container .select__control:hover {
  border-color: var(--Divider-Color);
}

.select-container.menu-is-open, .select-container .select__control--menu-is-open {
  border-radius: 4px 4px 0 0;
}

.select-container.menu-is-open,
.select-container.is-focused {
  box-shadow: 0 4px 11px 4px var(--Outgoing-background);
}

.select-container .select__control--menu-is-open,
.select-container .select__control--is-focused {
  box-shadow: none;
}

.select-container .select__value-container {
  padding: 0;
}

.select-container .select__placeholder {
  color: var(--blue-7);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  overflow: hidden;
}

.select-container .select__input-container {
  margin: 0;
  padding: 0;
}

.select-container .select__indicator {
  padding: 0;
}

.select-container .select__loading-indicator {
  display: none;
}

.select-container .icon {
  height: 24px;
  width: 24px;
}

.select-container .arrow {
  transition: transform 0.2s linear;
  vertical-align: middle;
}

.select-container .select__control--menu-is-open .arrow {
  transform: rotate(180deg);
}

.select-container .select__indicator-separator {
  display: none;
}

.select-container .select__menu {
  margin: 1px 0 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 3px 18px 0 var(--grey-8);
  min-height: 50px;
  background-color: var(--Interface-background);
  overflow: hidden;
}

.select-container .select__menu-list {
  padding: 0;
  max-height: 180px;
}

.select-container .select__option {
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid transparent;
  overflow: hidden;
}

.select-container .select__option, .select-container .select__menu-notice {
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  padding: 0.7em 2.2em 0.7em 1.2em;
}

.select-container .select__option--is-selected {
  background-color: inherit;
}

.select-container .select__option--is-focused,
.select-container .select__option:active {
  background-color: var(--grey-2);
}

.select-container .check {
  height: 10px;
  position: absolute;
  right: 16px;
  fill: var(--Main-elements);
  width: 20px;
}

.select-container .spinner {
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: -24px;
  transition: all 0.2s ease;
  z-index: 1;
}

.select-container .spinner.active {
  top: 8px;
}

.modal.assign.active .form {
  width: 415px;
  height: 270px;
}

.avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar .avatar-icon {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  fill: var(--blue-3);
}

.section-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.section-list > .spinner {
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: -16px;
  transition: all 0.2s ease;
  z-index: 1;
}

.section-list > .spinner.active {
  top: 8px;
}

.section-list .list-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.image-loader {
  align-items: center;
  display: flex;
  height: 300px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 300px;
  border-radius: 8px 8px 0 8px;
}

.image-loader img {
  max-height: 100%;
  max-width: 100%;
}

.image-loader .placeholder {
  align-items: center;
  background-color: var(--Incoming-background);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.my.image-loader .placeholder {
  align-items: center;
  background-color: var(--Outgoing-background);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.image-loader .placeholder .image {
  fill: var(--Alternative-elements);
  height: 44px;
  width: 44px;
}

.my.image-loader .placeholder .image {
  fill: var(--Main-elements);
  height: 44px;
  width: 44px;
}

.messages-container {
  box-sizing: border-box;
  width: 100%;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--Main-background);
}

.messages-container .spinner.active {
  top: 36px;
}

.messages-container .section {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.messages-container .date {
  background-color: var(--blue-5);
  border-radius: 11px;
  box-sizing: border-box;
  color: var(--Tertiary-font);
  font-size: var(--caption3-size);
  margin: 10px 0 0;
  opacity: 0.75;
  padding: 4px 18px;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  z-index: 1;
}

.messages-container .message {
  align-items: flex-start;
  align-self: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 0 10px 10px;
  max-width: 95%;
}

.messages-container .my.message {
  align-items: flex-end;
  align-self: flex-end;
  padding: 5px 10px 10px 0;
}

.messages-container .message .info {
  align-items: center;
  box-sizing: border-box;
  color: var(--Secondary-font);
  display: flex;
  flex-direction: row;
  font-size: var(--caption1-size);
  font-weight: var(--caption1-weight);
  line-height: var(--caption1-line-height);
  justify-content: center;
  letter-spacing: 0;
  padding: 0 14px 4px 14px;
  text-align: start;
  width: 100%;
}

.messages-container .message.with-ai-translate:not(.my) {
  padding-bottom: 20px;
}

.messages-container .message:not(.my) .info.with-ai-answer {
  padding-right: 50px;
}

.messages-container .message .info .sender {
  flex: 1;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.messages-container .message .info .sent-at {
  margin-left: 10px;
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
}

.messages-container .message .body {
  background-color: var(--Incoming-background);
  border-radius: 22px 22px 22px 0;
  color: var(--Primary-font);
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
  letter-spacing: 0;
  box-sizing: border-box;
  padding: 8px 16px 8px 16px;
  text-align: start;
  white-space: pre-wrap;
  word-break: break-word;
  min-width: 150px;
}

.messages-container .message .message-body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.messages-container .message .body + .body,
.messages-container .message .message-body + .message-body,
.messages-container .message .body + .message-body,
.messages-container .message .message-body + .body {
  margin-top: 5px;
}

.messages-container .message.with-ai-translate .body + .body,
.messages-container .message.with-ai-translate .message-body + .message-body,
.messages-container .message.with-ai-translate .body + .message-body,
.messages-container .message.with-ai-translate .message-body + .body {
  margin-top: 27px;
}

.messages-container .message.my.with-ai-translate .body + .body,
.messages-container .message.my.with-ai-translate .message-body + .message-body,
.messages-container .message.my.with-ai-translate .body + .message-body,
.messages-container .message.my.with-ai-translate .message-body + .body {
  margin-top: 5px;
}

.messages-container .message .body > a:any-link {
  text-decoration: underline;
  color: inherit;
}

.messages-container .my.message .body {
  background-color: var(--Outgoing-background);
  border-radius: 22px 22px 0 22px;
  color: var(--Primary-font);
}

.messages-container .message a {
  text-decoration: none;
}

.messages-container .message .body.file {
  text-align: center;
}

.messages-container .message .body.image-file,
.messages-container .message .body.video-file,
.messages-container .message .body.audio-file {
  background-color: initial;
  padding: 0;
}

.messages-container .message .body.image-file img,
.messages-container .message .body.video-file video {
  width: 100%;
}

.messages-container .message img.body,
.messages-container .message audio.body,
.messages-container .message video.body {
  max-height: 300px;
  max-width: 100%;
  padding: 0;
}

.messages-container .message .body .icon.download {
  display: inline-block;
  height: 100px;
  width: 70px;
  fill: var(--secondary-900);
}

.messages-container .my.message .body .icon.download {
  fill: var(--Tertiary-elements);
}

.messages-container .message .message-body {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.messages-container .message-body .ai-quick-answer {
  background: transparent;
  border: none;
  line-height: 0;
  padding: 0;
}

.messages-container .message-body .ai-quick-answer svg {
  width: 24px;
  height: 24px;
  fill: var(--ChatMessageRobotIcon-fill);
}

.messages-container .translate-container {
  position: absolute;
  top: calc(100% + 3px);
  right: 50px;
  display: inline-flex;
  justify-content: end;
}

.messages-container .translate-btn {
  position: absolute;
  top: calc(100% + 3px);
  right: 50px;
  display: inline-flex;
  justify-content: end;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--blue-7);
  font-size: var(--caption3-size);
  line-height: 15px;
}

.messages-container .translate-container .translate-langs {
  position: absolute;
  width: 140px;
  top: 18px;
  right: 0;
  padding: 10px 0;
  text-align: start;
  border-radius: 5px;
  background-color: var(--Interface-background);
  box-shadow: 0 10px 26px 0 var(--grey-8);
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  z-index: 100;
}

.messages-container .translate-container .translate-langs.top {
  top: unset;
  bottom: 0;
}

.messages-container .translate-container .translate-langs.open {
  transform: scale(1);
}

.messages-container .translate-container .translate-langs-label {
  color: var(--blue-7);
  font-size: var(--caption1-size);
  font-weight: var(--caption1-weight);
  line-height: var(--caption1-line-height);
  padding: 0 8px 8px 16px;
}

.messages-container .translate-container .translate-langs-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.messages-container .translate-container .translate-langs-item {
  cursor: pointer;
  padding: 8px 16px;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  color: var(--Secondary-elements);
}

.messages-container .translate-container .translate-langs-item:hover {
  background-color: var(--grey-2);
}

.tabs {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: var(--Interface-background);
}

.tabs-disabled::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}

.tabs .tabs-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.tabs .tabs-container .tab {
  background-color: var(--Interface-background);
  border: none;
  box-shadow: inset 0 -1px 0 0 var(--Divider);
  color: var(--blue-7);
  flex: 1;
  font-size: var(--tab-size);
  letter-spacing: 0;
  line-height: var(--tab-line-height);
  outline: none;
  padding: 15px;
  text-align: center;
  height: 100%;
  margin: 0;
}

.tabs .tabs-container .tab:hover {
  background-color: var(--grey-2);
}

.tabs:not(.tabs-disabled) .tabs-container .tab.active {
  background-color: var(--Incoming-background);
  box-shadow: inset 0 -2px 0 0 var(--Main-elements);
  color: var(--Main-elements);
  font-weight: 600;
}

.tabs .tabs-container .tab.active:hover {
  background-color: var(--blue-2);
}

.tabs .tabs-container .tab:disabled {
  opacity: 0.6;
}

.tabs .tab-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.tabs .tab-content .tab-content-item {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.tabs .tab-content .tab-content-item.active {
  display: flex;
}

@media screen and (max-width: 768px) {
  .tabs .tabs-container .tab:hover,
  .tabs .tabs-container .tab.active:hover {
    background-color: inherit;
  }
}

.section-item {
  align-items: flex-start;
  border-bottom: 1px solid var(--Divider);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
}

.section-item .title {
  cursor: pointer;
  align-items: center;
  background-color: var(--Interface-background);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 0 0 10px;
  width: 100%;
}

.section-item .title.disabled {
  cursor: default;
}

.section-item .icon-container {
  display: flex;
}

.section-item .icon {
  fill: var(--secondary-900);
}

.section-item .title .icon.arrow {
  height: 24px;
  transition: transform 0.2s ease-in;
  width: 24px;
}

.section-item .body {
  background-color: var(--Interface-background);
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: var(--caption2-size);
  height: 0;
  line-height: var(--caption2-line-height);
  outline: none;
  overflow: auto;
  padding: 0 12px;
  resize: none;
  transition: all 0.2s ease-in;
  width: 100%;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.section-item.active .icon.arrow {
  transform: rotate(90deg);
}

.section-item.active .body {
  height: 245px;
  padding: 0 0 0 10px;
}

.tree-node-main {
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
  cursor: pointer;
  display: flex;
  flex-flow: row;
  align-items: center;
}

.tree-node-main .icon {
  fill: var(--secondary-900);
}

.tree-node-main.active .icon.arrow2 {
  transform: rotate(90deg);
}

.tree-node-main .icon.arrow2 {
  height: 16px;
  width: 16px;
}


.tree-node {
  margin-left: 20px;
}

.tree-node-title {
  font-size: var(--caption1-size);
  font-weight: var(--caption1-weight);
  line-height: var(--caption1-line-height);
  text-align: left;

}

.tree-node-description {
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
  text-align: left;
}

.icd-10-card {
  display: flex;
  flex-flow: column;
  padding-bottom: 20px;
}

.icd-10-card-title {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  color: var(--secondary-500);
}

.icd-10-card-description {
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
  color: var(--secondary-500);
}

.cpt-card-details {
  padding-top: 10px;
}

.cpt-card-details .toggle {
  color: var(--Main-elements);
  padding-left: 5px;
  font-size: var(--caption3-size);
  font-weight: var(--caption3-weight);
  line-height: var(--caption3-line-height);
  letter-spacing: var(--caption3-letter-spacing);
  cursor: pointer;
}

.cpt-card-details .content{
  padding-left: 20px;
}

.cpt-container {
  padding: 10px;
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
}

.cpt-container .cpt-container-table {
  padding: 10px 0 0 0;
}

.cpt-container .cpt-container-table .table-title {
  font-size: var(--caption1-size);
  font-weight: var(--caption1-weight);
  line-height: var(--caption1-line-height);
}

.cpt-container .cpt-container-table .em-row {
  display: flex;
  padding: 5px 0 5px 0 ;
}

.cpt-container .em-row .title {
  padding-left: 10px;
  font-size: var(--caption1-size);
  font-weight: var(--caption1-weight);
  line-height: var(--caption1-line-height);
  justify-content: left;
  width: fit-content;
}

.cpt-container .em-row .value {
  padding-left: 5px;
  padding-top: 7px;
}

.cpt-container .em-row .info {
  display: flex;
  flex-flow: column;
  padding-left: 10px;
}

.cpt-container .em-row .content {
  display: flex;
  flex-flow: row;
  text-align: left;
  justify-content: left;
}

.cpt-container .cpt-container-table .em-row-divider {
  border-bottom: 1px solid var(--Divider);
}

.cpt-container .cpt-container-table .em-column {
}

.cpt-container .cpt-container-table .em-column-left {
  text-align: left;
  width: 255px;
}

.em-column-right {
  text-align: left;
}



.billing-code-icd-10 {
  padding: 10px;
  overflow-y: auto;
  height: 200px;
}

.billing-code-cpt {
  padding-bottom: 20px;
  overflow-y: auto;
  height: 200px;
}

.icd-10-card-empty {
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

.cpt-card-empty {
  text-align: center;
  padding: 20px 10px 10px 0;
  font-weight: 600;
}

.injury-attachment {
  text-decoration: none;
  color: inherit;
}

.injury-attachment .attachment-body {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.injury-attachment .attachment-body .icon {
  width: 24px;
  height: 24px;
  fill: #2D91D8;
  padding: 6px;
}

.injury-attachment .loader.image-file {
  background-color: initial;
  padding: 0;
  height: 220px;
  width: unset;
  border-radius: 5px
}

.injury-attachment .attachment-body {
  width: 160px;
  height: 220px;
  align-items: center;
  justify-content: center;
  border-radius: 5px
}

.injury-attachment .attachment-body .file {
  display: flex;
  flex-flow: column;
  padding: 0;
  height: 220px;
  width: 100%;
  background-color: #BAE2FF;
  align-items: center;
  justify-content: center;
  border-radius: 5px
}

.injury-attachment .attachment-body .file .ext {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  color: #2D91D8;
}

.skeleton {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--grey-8);
  opacity: 0.4;
}

.skeleton.text {
  border-radius: 4px;
}

.skeleton.circular {
  border-radius: 50%;
}

.skeleton.rectangular {
  border-radius: 0;
}

.skeleton:empty:before {
  content: "\00a0";
}

.skeleton.pulse {
  animation: skeleton-pulse 1.5s ease-in-out 0.5s infinite;
}

@keyframes skeleton-pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.4;
  }
}

.visit-notes-value {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0 10px 10px 0;
  gap: 5px;
  color: var(--secondary-500);
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
}
.visit-notes-empty {
  text-align: center;
  padding: 10px 10px 10px 0;
  font-weight: 600;
}

.appointment-details-modal .container {
  background-color: var(--Interface-background);
  border-radius: 6px;
  color: var(--secondary-900);
  font-size: var(--body-size);
  letter-spacing: 0;
  line-height: var(--body-line-height);
  width: 520px;
  max-height: 750px;
  height: 100%;
  overflow: hidden;
}

.appointment-details-modal.appointment-ended .container {
  width: 800px;
}

.appointment-details-modal .back {
  background-color: transparent;
  border: none;
  display: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.appointment-details-modal .item {
  box-sizing: border-box;
  display: inline-block;
  padding: 6px;
  width: 50%;
}

.appointment-details-modal .item .value {
  text-transform: capitalize;
}

.appointment-details-modal .item .label {
  color: var(--blue-7);
  font-size: var(--font-size-md);
  margin-right: 12px;
}

.appointment-details-modal .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.appointment-details-modal .header-nav {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.appointment-details-modal .container .tab-wrapper {
  height: calc(100% - 101px);
}

.appointment-details-modal .container .tabs {
  height: 100%;
}

.appointment-details-modal .container .header-card {
  display: flex;
  padding: 12px 20px;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid var(--Divider-Color);
}

.appointment-details-modal .container .sections-wrapper {
  display: flex;
  height: calc(100% - 101px);
}

.appointment-details-modal .container .sections-wrapper .col:first-child {
  border-right: 1px solid var(--Divider-Color);
}

.appointment-details-modal .container .sections-wrapper .col .messages-container {
  height: 100%;
}

.appointment-details-modal .container .header-card .title {
  color: var(--secondary-900);
  line-height: var(--h3-line-height);
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  text-align: start;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.appointment-details-modal .container .header-card .header-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.appointment-details-modal .header-card .date-divider {
  margin: 0 15px;
}

.appointment-details-modal .header-card .date-divider::after {
  content: '';
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--secondary-900);
}

.appointment-details-modal .container .header-card .user-info {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.appointment-details-modal .container .header-card .user-info .user-name {
  color: var(--secondary-900);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.appointment-details-modal .container .header-card .user-info .avatar {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.appointment-details-modal .container .title {
  color: var(--Secondary-font);
  font-size: var(--font-size-sm);
  line-height: var(--caption3-line-height);
  letter-spacing: var(--caption3-letter-spacing);
  font-weight: var(--h3-weight);
}

.appointment-details-modal .container .col {
  width: 50%;
}

.appointment-details-modal .record-list {
  margin: 0;
  padding: 0;
}

.appointment-details-modal .record-item {
  list-style: none;
  margin: 9px 0;
}

.appointment-details-modal .record-item div {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--Main-elements);
  cursor: pointer;
}

.appointment-details-modal .icon.file-video {
  height: 19px;
  width: 19px;
  margin-right: 5px;
  fill: var(--Main-elements);
}

.appointment-details-modal .user-details {
  width: 100%;
}

.appointment-details-modal .save,
.appointment-details-modal .cancel {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
}

.appointment-details-modal .icon {
  height: 24px;
  width: 24px;
}

.appointment-details-modal .save:disabled {
  opacity: 0.35;
}

.appointment-details-modal .notes .field {
  background-color: unset;
  border: none;
  resize: none;
  box-shadow: none;
  padding: 0;
}
.appointment-details-modal .injury-list {
  margin: 0;
  padding: 0;
}


.appointment-details-modal .injury-item {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0px 10px 0px 0px;
  gap: 5px;
}

.appointment-details-modal .injury-item-name {
  color: var(--secondary-300);
  font-size: var(--font-size-lg);
  line-height: var(--caption2-line-height);
  align-items: center;
  text-decoration: none;
}

.appointment-details-modal .injury-item-value {
  color: var(--secondary-500);
  font-size: var(--font-size-xl);
  line-height: var(--h3-line-height);
  align-items: center;
  text-decoration: none;
}

.appointment-details-modal .visit-notes {
  margin: 0;
  padding: 0;
}
.appointment-info .billing-codes .body .body {
  padding: 0;
}

.appointment-details-modal .billing-codes {
  margin: 0;
  padding: 0;
}

.appointment-details-modal .visit-notes-item {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0 10px 10px 0;
  gap: 5px;
}

.appointment-details-modal .visit-notes-item-name {
  color: var(--secondary-500);
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
  align-items: center;
  text-decoration: none;
}

.appointment-details-modal .visit-notes-item-value {
  color: var(--secondary-500);
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
  align-items: center;
  text-decoration: none;
}

.appointment-details-modal .record-item {
  list-style: none;
  margin: 9px 0;
}

.appointment-details-modal .injury-images {
  margin: 0;
  gap: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.appointment-details-modal .injury-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  transition: transform 0.2s;
}

.appointment-details-modal .attachment-body {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.appointment-details-modal .attachment-link {
  text-decoration: none;
  color: inherit;
}

.appointment-details-modal .attachment-link a:link, a:visited {
  color: inherit;
  text-decoration: none;
}

.appointment-details-modal .attachment-body .icon {
  width: 24px;
  height: 24px;
  fill: #2D91D8;
  padding: 6px;
}
.appointment-details-modal .loader.image-file{
  background-color: initial;
  padding: 0;
  height: 220px;
  width: unset;
  border-radius: 5px
}

.appointment-details-modal .attachment-body {
  width: 160px;
  height: 220px;
  align-items: center;
  justify-content: center;
  border-radius: 5px
}

.appointment-details-modal .attachment-body .file{
  display: flex;
  flex-flow: column;
  padding: 0;
  height: 220px;
  width: 100%;
  background-color: #BAE2FF;
  align-items: center;
  justify-content: center;
  border-radius: 5px
}

.appointment-details-modal .attachment-body .file .ext{
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  color: #2D91D8;
}

.appointment-details-modal .visit-notes {
  margin: 0;
  padding: 0;
  .edit-visit-notes-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: var(--Main-elements);
    font-size: var(--caption2-size);
    font-weight: var(--caption2-weight);
    line-height: var(--caption2-line-height);
  }
  .edit-visit-notes-btn.disable {
    color: var(--Inactive);
  }
}

@media screen and (max-width: 768px) {
  .offline .appointment-details-modal .container .tabs {
    height: calc(100% - 41px);
  }

  .appointment-details-modal .container,
  .appointment-details-modal.appointment-ended .container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: none;
  }

  .appointment-details-modal .container .header-card .title {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    font-weight: bold;
  }

  .appointment-details-modal .header-card .date-divider {
    margin: 0 10px;
  }

  .appointment-details-modal .header-card .date-divider::after {
    height: 3px;
    width: 3px;
  }

  .appointment-details-modal .container .tab-wrapper {
    height: calc(100% - 113px);
  }

  .appointment-details-modal .container .header-card {
    padding: 17px 13px;
  }

  .appointment-details-modal .back {
    display: inline-block;
  }

  .appointment-details-modal .icon-close {
    display: none;
  }
}

.notification {
  align-items: center;
  background-color: var(--Interface-background);
  border-radius: 6px;
  box-shadow: 0 0 6px 0 var(--secondary-800);
  box-sizing: border-box;
  color: var(--secondary-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.6em 2em;
  position: fixed;
  text-align: center;
  transition: all 0.25s ease-in-out;
  z-index: -1;
}

.notification.error {
  background-color: var(--red);
  color: var(--Tertiary-font);
  font-weight: bold;
}

.notification.success {
  background-color: var(--Main-elements);
  color: var(--Tertiary-font);
  font-weight: bold;
}

.notification.cancel {
  background-color: var(--grey-11);
  color: var(--Tertiary-font);
  border-radius: 0;
  max-width: 750px;
  width: 100%;
  padding: 14px 58px 14px 24px;
}

.notification .icon-close {
  cursor: pointer;
  position: absolute;
  height: 24px;
  width: 24px;
  right: 16px;
  fill: var(--Tertiary-font);
  opacity: 0.8;
}

.notification.top-left {
  left: 25px;
  top: 25px;
  transform: scale(0);
}

.notification.top-center {
  left: 50%;
  top: 25px;
  transform: translate(-50%, 0) scale(0);
}

.notification.top-right {
  right: 25px;
  top: 25px;
  transform: scale(0);
}

.notification.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.notification.bottom-right {
  right: 25px;
  bottom: 25px;
  transform: scale(0);
}

.notification.bottom-center {
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 0) scale(0);
}

.notification.bottom-left {
  left: 25px;
  bottom: 25px;
  transform: scale(0);
}

.notification.active {
  z-index: 10;
}

.notification.top-left.active {
  transform: scale(1);
}

.notification.top-center.active {
  transform: translate(-50%, 0) scale(1);
}

.notification.top-right.active {
  transform: scale(1);
}

.notification.center.active {
  transform: translate(-50%, -50%) scale(1);
}

.notification.bottom-right.active {
  transform: scale(1);
}

.notification.bottom-center.active {
  transform: translate(-50%, 0) scale(1);
}

.notification.bottom-left.active {
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .notification.cancel {
    max-width: 80%;
  }
}

.modal.time-not-available .form .body {
  padding: 29px 62px 40px;
}

.modal.time-not-available .label {
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  color: var(--Secondary-elements);
  text-align: center;
}

.modal.time-not-available .label:not(:last-child) {
  margin-bottom: 22px;
}

.modal.approve-new-appointment .label,
.modal.approve-new-appointment .user-name,
.modal.approve-new-appointment .date {
  font-size: var(--body-size);
  line-height: var(--body-line-height);
}

.modal.approve-new-appointment .label {
  color: var(--Secondary-elements);
}

.modal.approve-new-appointment .date {
  color: var(--Secondary-elements);
}

.modal.approve-new-appointment .user-name {
  color: var(--secondary-900);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.modal.approve-new-appointment .user {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.appointment-card {
  margin-top: 12px;
  justify-content: space-between;
  cursor: pointer;
  display: flex;
  color: var(--secondary-900);
}

.appointment-card .info {
  align-items: self-start;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.appointment-card .info .title {
  margin: 0;
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  text-align: start;
  display: flex;
  align-items: center;
}
.appointment-card .info .title + .description {
  margin-top: 12px;
}

.appointment-card .info .date-divider {
  margin: 0 15px;
}

.appointment-card .info .date-divider::after {
  content: '';
  display: block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: var(--secondary-900);
}

.appointment-card .info .user-info {
  display: flex;
  align-items: center;
  width: 100%;
}

.appointment-card .user-info .avatar {
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 0;
}

.appointment-card .user-info .user-name {
  color: var(--secondary-900);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  line-height: var(--body-line-height);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.appointment-card .info .description {
  color: var(--secondary-900);
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
  text-align: start;
  margin: 0;
  position: relative;
  max-height: 57px;
  white-space: pre-wrap;
}

.appointment-card .info .description::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--grey-2) 100%);
}

.appointment-card .icon {
  width: 24px;
  height: 24px;
  padding: 3px 0 15px 0;
  align-self: flex-start;
  fill: var(--secondary-900);
}

.appointment-card .icon-top {
  align-self: flex-start;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .appointment-card .icon {
    align-self: flex-start;
    margin-top: 4px;
  }

  .appointment-card .info .description {
    max-height: 76px;
  }
}

.list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.list .spinner {
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: -16px;
  transition: all 0.2s ease;
}

.list .spinner.active {
  top: 8px;
}

.list .list-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.appointment-register {
  display: flex;
  flex-direction: column;
  background-color: var(--Interface-background);
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 var(--grey-8);
  color: var(--Secondary-elements);
  max-width: 800px;
  max-height: calc(100vh - 80px);
  width: 100%;
  text-align: left;
}

.appointment-register .register-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--Divider-Color);
}

.appointment-register .register-card {
  margin: 30px 25px;
}

.appointment-register .back {
  background-color: transparent;
  border: none;
  display: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.appointment-register .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.appointment-register .register-header .title {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}

.appointment-register .date-filter {
  margin-top: 25px;
}

.appointment-register .date-filter-field {
  display: inline-flex;
  align-items: center;
}

.appointment-register .date-filter-field:first-child {
  margin-right: 40px;
}

.appointment-register .date-filter-input {
  max-width: 150px;
}

.appointment-register .register-loader {
  text-align: center;
  padding: 10px 0;
  line-height: 0;
}

.appointment-register .register-empty {
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .offline .appointment-register {
    top: 41px;
  }

  .appointment-register {
    position: absolute;
    max-height: 100%;
    top: 0;
    z-index: 3;
  }

  .appointment-register .register-header {
    padding: 17px 13px;
  }

  .appointment-register .register-header-nav {
    display: flex;
    align-items: center;
  }

  .appointment-register .register-header .title {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
  }

  .appointment-register .date-filter {
    margin-top: 20px;
  }

  .appointment-register .date-filter-field:first-child {
    margin-right: 10px;
  }

  .appointment-register .date-filter-input {
    font-size: var(--caption2-size);
    line-height: var(--caption2-line-height);
    max-width: 111px;
    padding: 10px 5px;
  }

  .appointment-register .date-filter-field:last-child .DayPickerInput-Overlay {
    left: auto;
    right: 0;
  }

  .appointment-register .date-filter-label {
    margin-right: 5px;
  }

  .appointment-register .back {
    display: inline-block;
  }

  .appointment-register .register-card {
    margin: 20px 12px;
  }
}

.modal.create-provider .form {
  display: flex;
  flex-direction: column;
  max-height: 85%;
  width: 500px;
}

.modal.create-provider .form .title {
  display: flex;
  width: 100%;
}

.modal.create-provider .form .body {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

@media screen and (max-width: 768px) {
  .modal.create-provider .form {
    width: 330px;
  }

  .modal.create-provider .form-field-radio-group {
    padding: 0;
  }
}

.modal {
  align-items: center;
  background-color: var(--grey-11);
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.25s linear;
  width: 100%;
  z-index: -1;
}

.modal.active {
  opacity: 1;
  z-index: 9;
}

.modal .icon-close {
  cursor: pointer;
  position: absolute;
  height: 24px;
  width: 24px;
  top: 15px;
  right: 15px;
}

.modal .form {
  background-color: var(--Interface-background);
  border-radius: 6px;
  color: var(--grey-13);
  font-size: var(--body-size);
  letter-spacing: 0;
  line-height: var(--body-line-height);
  transform: scale(0);
  transition: transform 0.25s ease-in-out;
  width: 400px;
}

.modal.active .form {
  transform: scale(1);
}

.modal .form .title {
  border-bottom: 1px solid var(--Divider-Color);
  box-sizing: border-box;
  font-weight: 600;
  padding: 18px;
}

.modal.active .form .body {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 22px;
}

.modal .form .label {
  color: var(--Secondary-elements);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-weight);
}

.modal .form .row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.modal.active .form .body .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .offline .modal.active {
    top: 41px;
  }

  .modal .form {
    width: 330px;
  }

  .modal .form .row {
    flex-wrap: wrap;
  }
}

.modal.share-link .form {
  max-height: 85%;
  display: flex;
  flex-direction: column;
}

.modal.share-link .form .body {
  padding: 16px 22px;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}

.modal.share-link .form .body form {
  align-items: inherit;
  display: flex;
  flex-direction: inherit;
  justify-content: inherit;
  width: 100%;
}

.modal.share-link .form .body .or-text {
  max-width: 230px;
  padding: 0 10px;
  text-align: center;
  background-color: var(--Interface-background);
}

.modal.share-link .form .body .row {
  position: relative;
  justify-content: center;
  margin: 60px 0 30px;
}

.modal.share-link .form .body .row::after {
  content: '';
  position: absolute;
  display: block;
  background-color: var(--blue-3);
  height: 1px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.modal.share-link .form .body .icon {
  height: 24px;
  margin-right: 6px;
  vertical-align: middle;
  width: 24px;
  fill: unset;
}

.modal.share-link .form .body .copied {
  color: var(--blue-7);
  font-size: var(--caption2-size);
  letter-spacing: 0;
  line-height: var(--caption2-line-height);
  opacity: 0;
  text-align: center;
  transition: opacity 0.2s linear;
}

.modal.share-link .form .body .copied.active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .modal.share-link .form .body .row {
    margin-top: 30px;
  }
}

.modal.guest-user .form {
  max-height: 85%;
  display: flex;
  flex-direction: column;
}

.modal.guest-user .form .body {
  padding: 16px 22px;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal.guest-user .form .body form {
  align-items: inherit;
  display: flex;
  flex-direction: inherit;
  justify-content: inherit;
  width: 100%;
}
.modal.guest-user .btn-group {
  margin-top: 30px;
}

.modal.guest-user .form-field-radio-group {
  padding: 12px 0;
  line-height: 0;
}

.modal.guest-user .mr-10 {
  margin-right: 10px;
}

.modal.guest-user .form .body .or-text {
  max-width: 230px;
  padding: 0 10px;
  text-align: center;
  background-color: var(--Interface-background);
}

.modal.guest-user .form .body .row {
  position: relative;
  justify-content: center;
  margin: 60px 0 30px;
}

.modal.guest-user .form .body .row::after {
  content: '';
  position: absolute;
  display: block;
  background-color: var(--blue-3);
  height: 1px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.modal.guest-user .form .body .icon {
  height: 24px;
  margin-right: 6px;
  vertical-align: middle;
  width: 24px;
}

@media screen and (max-width: 768px) {
  .modal.guest-user .form .body .row {
    margin-top: 30px;
  }
}

.record-modal .container {
  background-color: var(--Incoming-background);
  border-radius: 6px;
  color: var(--secondary-900);
  font-size: var(--font-size-xl);
  letter-spacing: 0;
  line-height: 22px;
  width: 100%;
  max-width: 1140px;
  max-height: 800px;
  height: 100%;
  overflow: hidden;
  display: flex;
}

.record-modal .container.active-ai {
  background-color: transparent;
  flex-direction: column;
  max-height: 888px;
}

.record-modal .record-col-video {
  background-color: var(--grey-12);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.record-modal .record-col-video video {
  width: 100%;
  height: 100%;
}

.record-modal .record-col-info {
  max-width: 400px;
  width: 100%;
}

.record-modal .back {
  background-color: transparent;
  border: none;
  display: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.record-modal .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.record-modal .header-nav {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.record-modal .header-card {
  display: none;
  padding: 12px 20px;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid var(--Divider-Color);
}

.record-modal .cross-mark,
.record-col-info {
  width: 100%;
  height: 100%;
  background-color: var(--Incoming-background);
}

.record-modal .container.active-ai .header-card {
  display: block;
  padding: 0;
}

.record-modal .record-tabs {
  height: 100%;
}

.record-modal .record-info-text {
  padding: 12px;
  overflow-y: auto;
}

.record-modal .record-actions-title {
  color: var(--blue-7);
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
}

.record-modal .record-actions-info {
  white-space: pre-wrap;
}

.record-modal .record-info-text:not(:first-child) {
  border-top: 1px solid var(--Divider-Color);
}

.record-modal .record-transcript:not(:last-child) {
  margin-bottom: 20px;
}

.record-modal .record-transcript-time {
  color: var(--blue-7);
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
}

.record-modal .video-unavailable {
  text-align: center;
  color: var(--grey-9);
}

.record-modal .video-unavailable .icon {
  width: 40px;
  height: 40px;
  fill: var(--grey-9);
}

.record-modal .video-unavailable .message {
  font-size: 16px;
  margin: 20px;
}

.record-modal .video-unavailable .description {
  font-size: 13px;
  margin: 20px;
}

.record-modal .icon-cross-mark,
.record-icon-cross-mark {
  cursor: pointer;
  height: 24px;
  width: 24px;
  padding: 9px 13px;
  float: right;
}

.record-modal .icon-cross-mark path,
.record-icon-cross-mark path {
  stroke: var(--grey-13);
}

@media screen and (max-width: 768px) {
  .record-modal {
    padding: 0;
  }

  .record-modal .container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: none;
    flex-direction: column;
  }

  .record-modal .container.active-ai {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: none;
    flex-direction: column;
    background-color: var(--Incoming-background);
  }

  .record-modal .header-card {
    display: flex;
    padding: 17px 13px;
  }

  .record-modal .container.active-ai .header-card {
    display: flex;
    padding: 17px 13px;
  }

  .record-modal .back {
    display: inline-block;
  }

  .record-modal .icon-close {
    display: none;
  }

  .record-modal .record-col-info {
    max-width: unset;
    height: calc(100% - 63px - 300px);
  }

  .record-modal .record-col-video {
    height: 300px;
  }

  .record-modal .icon-cross-mark,
  .record-icon-cross-mark {
    display: none;
  }
}

.upload-record-indicator {
  box-sizing: border-box;
  height: 0;
  width: 100%;
  transition: height 0.2s linear;
}

.upload-record-indicator.active {
  height: 10px;
}

.upload-record-indicator progress {
  border-radius: 2px;
  height: 20px;
  width: 100%;
}

.upload-record-indicator progress {
  display: block;
  height: 10px;
}

.upload-record-indicator progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 2px;
}

.upload-record-indicator progress[value]::-webkit-progress-bar {
  background-color: transparent;
  border-radius: 2px;
  box-shadow: 0 2px 5px var(--grey-8) inset;
  overflow: hidden;
}

.upload-record-indicator progress[value]::-webkit-progress-value {
  border-radius: 2px;
  background-color: var(--Main-elements);
  background-image: linear-gradient(
    45deg,
    var(--grey-6) 25%,
    transparent 25%,
    transparent 50%,
    var(--grey-6) 50%,
    var(--grey-6) 75%,
    transparent 75%,
    transparent
  );
  background-size: 3rem 3rem;
  -webkit-animation: animate-stripes 2s linear infinite;
  animation: animate-stripes 2s linear infinite;
}

.upload-record-indicator progress[value]::-moz-progress-bar {
  border-radius: 2px;
  box-shadow: 0 2px 5px var(--grey-8) inset;
  background-color: var(--Main-elements);
  background-image: linear-gradient(
    45deg,
    var(--grey-6) 25%,
    transparent 25%,
    transparent 50%,
    var(--grey-6) 50%,
    var(--grey-6) 75%,
    transparent 75%,
    transparent
  );
  background-size: 3rem 3rem;
  -moz-animation: animate-stripes 2s linear infinite;
  animation: animate-stripes 2s linear infinite;
}

@-webkit-keyframes animate-stripes {
  0% { background-position: 0 0, 0 0, 0 0 }
  100% { background-position: -100px 0, 0 0, 0 0 }
}

@-moz-keyframes animate-stripes {
  0% { background-position: 0 0, 0 0, 0 0 }
  100% { background-position: -100px 0, 0 0, 0 0 }
}

@keyframes animate-stripes {
  0% { background-position: 0 0, 0 0, 0 0 }
  100% { background-position: -100px 0, 0 0, 0 0 }
}

.edit-notes {
  right: unset;
  left: unset;
}

.edit-notes.active {
  z-index: 10;
}

.edit-notes .form {
  width: 623px;
}

.edit-notes .form .body {
  align-items: flex-start;
}

.edit-notes .field {
  width: 100%;
  resize: none;
}

.edit-notes .form-field-label {
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
  color: var(--Secondary-elements);
}

.edit-notes .back {
  background-color: transparent;
  border: none;
  display: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.edit-notes .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.edit-notes-body {
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .edit-notes {
    opacity: 1;
    right: -100%;
    transition: right 0.25s ease-in-out;
    z-index: 10;
  }

  .edit-notes.active {
    right: 0;
  }

  .edit-notes .icon-close {
    display: none;
  }

  .edit-notes .form {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: var(--blue-1);
    transform: scale(1);
    transition: none;
    overflow: auto;
  }

  .edit-notes .form .body {
    padding: 0;
  }

  .edit-notes .form-field {
    display: flex;
    justify-content: center;
  }

  .edit-notes .form-field-input {
    width: 100%;
  }

  .edit-notes .edit-notes-header {
    display: flex;
    align-items: center;
    background-color: var(--Interface-background);
    box-shadow: 0 1px 4px 0 var(--grey-8);
    padding: 17px 13px;
    width: 100%;
    box-sizing: border-box;
  }

  .edit-notes-body {
    padding: 0 15px;
  }

  .edit-notes .form-field-label {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
  }

  .edit-notes .form-field-input {
    margin-top: 15px;
    width: 100%;
  }

  .edit-notes .back {
    display: inline-block;
  }
}

.input-container {
  align-items: flex-end;
  background-color: inherit;
  box-shadow: 0 -1px 6px 0 var(--Divider-Color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-height: 40%;
  width: 100%;
  z-index: 1;
}

.input-container .icon {
  height: 24px;
  width: 24px;
}

.input-container button {
  background-color: transparent;
  border: none;
  height: 45px;
  padding: 10px;
  width: 45px;
}

.input-container .attachment {
  padding: 0;
}

.input-container .attachment label {
  padding: 11px 12px;
}

.input-container .attachment .icon {
  vertical-align: middle;
}

.input-container .textbox-field {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  background-color: var(--Interface-background);
  height: 100%;
}

.input-container .textbox-input {
  box-sizing: border-box;
  color: var(--secondary-900);
  flex: 1;
  font-family: inherit;
  font-size: var(--body-size);
  height: 100%;
  line-height: var(--body-line-height);
  padding: 12px;
  text-align: start;
  overflow-y: auto;
  word-break: break-word;
  white-space: pre-wrap;
}

.input-container .textbox-input * {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
}

.input-container .textbox-input.disabled {
  cursor: not-allowed;
}

.input-container .textbox-placeholder {
  position: absolute;
  pointer-events: none;
  color: var(--blue-7);
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.input-container .icon path {
  fill: var(--Main-elements);
}

.input-container .attachment label {
  cursor: inherit;
  font-size: var(--font-size-xxl);
  line-height: 20px;
}

.input-container .textbox-input.with-ai {
  padding-right: 45px;
}

.input-container .textbox-field .rephrase-container {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.input-container .textbox-field .rephrase-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--ChatMessageRobotIcon-fill);
}

.input-container .textbox-field .rephrase-tones {
  position: absolute;
  width: 240px;
  bottom: 46px;
  right: 0;
  margin: 0;
  padding: 10px 0;
  border-radius: 5px;
  background-color: var(--Interface-background);
  box-shadow: 0 10px 26px 0 var(--grey-8);
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  text-align: start;
  list-style-type: none;
}

.input-container .textbox-field .rephrase-tones.open {
  transform: scale(1);
}

.input-container .textbox-field .rephrase-tones.adaptive {
  overflow-y: auto;
  height: 250px;
}

.input-container .textbox-field .rephrase-tones-item {
  cursor: pointer;
  padding: 8px 16px;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  color: var(--Secondary-elements);
}

.input-container .textbox-field .rephrase-tones-item:hover {
  background-color: var(--grey-2);
}

@media screen and (max-width: 768px) {
  .input-container {
    max-height: 75px;
  }
}

.chat-widget {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 1000;
  text-align: end;
}

.chat-widget .cw-dialog {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 var(--grey-8);
  background-color: var(--Interface-background);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 350px;
  height: 500px;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
}

.chat-widget .cw-dialog.opened {
  transform: scale(1);
}

.chat-widget .cwd-header {
  align-items: center;
  box-shadow: 0 0 6px 0 var(--secondary-800);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  height: 62px;
  justify-content: flex-start;
  padding: 0 12px;
  z-index: 1;
}

.chat-widget .cwd-header .back {
  background-color: transparent;
  border: none;
  height: 28px;
  width: 28px;
  padding: 4px;
}

.chat-widget .cwd-header .back .icon-close {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.chat-widget .cwd-header .dialog-info {
  display: flex;
  flex-direction: column;
  text-align: start;
  width: 100%;
  overflow: hidden;
  color: inherit;
}

.chat-widget .cwd-header .dialog-info .dialog-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.chat-widget .cwd-header .dialog-info .call-time {
  color: var(--blue-7);
  font-size: var(--caption2-size);
}

.chat-widget .cwd-main {
  align-items: center;
  background-color: var(--blue-2);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  overflow: hidden;
}

.chat-widget .cw-assistant {
  background-color: var(--Main-elements);
  border: none;
  height: 50px;
  width: 50px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 var(--grey-8);
}

.chat-widget .cw-assistant svg {
  fill: var(--primary-A100);
}

@media screen and (max-width: 768px) {
  .chat-widget {
    bottom: 58px;
  }
}

.avatar-upload {
  display: flex;
  align-items: center;
}

.avatar-upload label {
  display: inline-block;
}

.avatar-upload input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.avatar-upload .avatar-upload-photo {
  width: 76px;
  height: 76px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--Divider-Color);
  background-color: var(--Interface-background);
  cursor: pointer;
}

.avatar-upload .avatar-upload-plus {
  position: relative;
}

.avatar-upload .avatar-upload-plus::before,
.avatar-upload .avatar-upload-plus::after {
  content: "";
  position: absolute;
  background-color: var(--Secondary-elements);
}

.avatar-upload .avatar-upload-plus::before {
  width: 2px;
  height: 18px;
}

.avatar-upload .avatar-upload-plus::after {
  width: 18px;
  height: 2px;
}

.avatar-upload input:focus + .avatar-upload-photo {
  box-shadow: 0 4px 11px 4px var(--primary-100);
}

.avatar-upload .avatar-upload-btn {
  margin: 0 15px;
}

.profile-screen {
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.profile-screen-form {
  align-self: flex-start;
  background-color: var(--Interface-background);
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 var(--grey-8);
  box-sizing: border-box;
  color: var(--grey-13);
  display: inline-block;
  padding: 20px 25px 50px;
  transition: all 0.2s ease-in;
  width: 100%;
}

.profile-screen-header {
  display: flex;
  align-items: center;
}

.profile-screen .title {
  text-align: start;
  margin: 0 0 16px;
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}

.profile-screen .back {
  background-color: transparent;
  border: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.profile-screen .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.profile-screen .mr-20 {
  margin-right: 20px;
}

.profile-screen .mt-40 {
  margin-top: 40px;
}

.profile-screen .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .offline .profile-screen {
    top: 41px;
    height: calc(100% - 41px);
  }

  .profile-screen {
    position: fixed;
    top: 0;
    z-index: 100;
    height: 100%;
    overflow: auto;
  }

  .profile-screen-form {
    padding: 0;
    border-radius: 0;
  }

  .profile-screen-header {
    background-color: var(--Interface-background);
    box-shadow: 0 1px 4px 0 var(--grey-8);
    padding: 17px 13px;
  }

  .profile-screen .header-title {
    margin: 0;
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    font-weight: var(--body-weight);
  }

  .profile-screen-body {
    padding: 20px 15px;
  }
}

.appointments-container {
  align-items: center;
  background-color: var(--Interface-background);
  border-radius: 5px 0 0 5px;
  border-right: 1px solid var(--Divider);
  box-shadow: 0 1px 4px 0 var(--grey-8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 1px 0 12px 20px;
  overflow: hidden;
  width: 320px;
}

.appointments-container .tabs .tabs-container .tab {
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
  padding: 15px 1px 15px 1px;
  font-weight: var(--caption2-weight);
}

.appointments-container .tabs .tabs-container .tab.active {
  font-size: var(--caption1-size);
  line-height: var(--caption1-line-height);
  font-weight: var(--caption1-weight);
  padding: 15px 1px 15px 1px;
}

.appointments-container main {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.appointments-container main .loader {
  margin: 1em;
}

.appointments-empty {
  color: var(--blue-7);
  white-space: pre-line;
  margin-top: 20px;
}

.appointments-container .appointment-search {
  display: flex;
  background-color: var(--Interface-background);
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--Divider-Color);
  box-sizing: border-box;
  height: 45px;
  margin: 12px;
  padding-right: 10px;
}

.appointments-container .appointment-search input {
  width: 100%;
  border: none;
  outline: none;
  font-size: var(--font-size-xl);
  line-height: 22px;
}

.appointments-container .appointment-search input::placeholder {
  color: var(--secondary-100);
}

.appointments-container .appointment-search .icon {
  fill: var(--blue-3);
  margin: 10px;
  height: 24px;
  width: 24px;
}

.appointments-container .appointment {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-height: 64px;
  min-height: 63px;
  transition: all 0.1s linear;
  width: 100%;
}

.appointments-container .appointment.selected {
  background-color: var(--Main-elements);
}

.appointments-container .appointment:active {
  background-color: var(--grey-2);
  box-shadow: inset 4px 0 0 0 var(--Main-elements);
}

.appointments-container .appointment:hover {
  background-color: var(--grey-2);
  box-shadow: inset 4px 0 0 0 var(--Main-elements);
}

.appointments-container .appointment.selected:active {
  background-color: var(--Main-elements);
  box-shadow: inset 4px 0 0 0 var(--grey-2);
}

.appointments-container .appointment.selected:hover {
  background-color: var(--Main-elements);
  box-shadow: inset 4px 0 0 0 var(--grey-2);
}

.appointments-container .appointment .body {
  align-items: center;
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 10px 0 12px;
  width: 100%;
}

.appointments-container .appointment .index {
  background-color: var(--Interface-background);
  border-radius: 50%;
  color: var(--blue-7);
  font-size: var(--font-size-xxs);
  font-weight: bold;
  height: 17px;
  letter-spacing: 0;
  line-height: 16px;
  margin: 0 10px;
  text-align: center;
  width: 17px;
}

.appointments-container .appointment .index.priority-low {
  background-color: var(--Low);
  color: var(--Tertiary-font);
}

.appointments-container .appointment .index.priority-med {
  background-color: var(--yellow);
  color: var(--Tertiary-font);
}

.appointments-container .appointment .index.priority-high {
  background-color: var(--red);
  color: var(--Tertiary-font);
}

.appointments-container .appointment .contact {
  align-items: flex-start;
  color: var(--secondary-900);
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: var(--body-size);
  justify-content: center;
  line-height: var(--body-line-height);
  overflow: hidden;
}

.appointments-container .appointment .contact .name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.appointments-container .appointment .contact .name .icon {
  fill: var(--blue-3);
  height: 15px;
  width: 15px;
  margin-left: -5px;
}

.appointments-container .appointment.selected .contact .name .icon {
     fill: var(--grey-2);
     height: 15px;
     width: 15px;
     margin-left: -5px;
}

.appointments-container .appointment .waiting-time {
  color: var(--blue-7);
  line-height: 19px;
  font-size: var(--font-size-md);
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
}

.appointments-container .appointment .date-divider {
  margin: 0 5px;
}

.appointments-container .appointment .date-divider::after {
  content: '';
  display: block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: var(--blue-7);
}

.appointments-container .appointment.selected .contact,
.appointments-container .appointment.selected .contact .waiting-time {
  color: var(--Tertiary-font);
}

.appointments-container .appointment.selected .date-divider::after {
  background-color: var(--Tertiary-elements);
}

.appointments-container .appointment .remove {
  background-color: transparent;
  border: none;
  height: 100%;
  margin: 0;
  outline: none;
  padding: 12px 18px 12px 14px;
}

.appointments-container .appointment .icon {
  fill: var(--secondary-900);
  height: 24px;
  width: 24px;
}

.appointments-container .appointment.selected .icon {
  fill: var(--Tertiary-elements);
}

.appointments-container .appointment .remove:disabled .icon {
  opacity: 0.35;
}

.appointments-container .appointment .chat-unread,
.appointments-container .appointment .on-call,
.appointments-container .appointment .ai-assign {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 4px;
  position: relative;
}

.appointments-container .appointment .chat-unread::after {
  background-color: var(--red-4);
  border-radius: 50%;
  border: 1px solid var(--blue-1);
  content: '';
  height: 8px;
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
}

.appointments-container .appointment .on-call::after {
  color: var(--secondary-900);
  content: '\2022\2022\2022';
  font-size: var(--caption3-line-height);
  height: 8px;
  left: 11px;
  position: absolute;
  top: 2px;
}

.appointments-container .appointment.selected .on-call::after {
  color: var(--Tertiary-font);
}

.appointments-container .appointment .chat-unread .icon {
  height: 20px;
  vertical-align: middle;
  width: 20px;
}

.appointments-container .appointment .ai-assign .icon {
  height: 24px;
  vertical-align: middle;
  width: 24px;
}

.appointments-container .appointment .assign {
  background-color: transparent;
  border: none;
  height: 100%;
  margin: 0;
  outline: none;
}

.appointments-container .appointment .assign .icon {
  height: 20px;
  width: 20px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .appointments-container {
    border-radius: 0;
    border: none;
    height: 100%;
    left: -100%;
    margin: 0;
    position: absolute;
    top: 0;
    transition: left 0.25s ease-in-out;
    width: 280px;
    z-index: 3;
  }

  .offline .appointments-container.open {
    top: 41px;
    height: calc(100% - 41px);
  }

  .appointments-container.open {
    left: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main-screen.on-call .appointments-container {
    border-radius: 0;
    border: none;
    height: 100%;
    left: -100%;
    margin: 0;
    position: absolute;
    top: 0;
    transition: left 0.25s ease-in-out;
    width: 280px;
    z-index: 3;
  }

  .main-screen.on-call .appointments-container.open {
    left: 0;
  }
}

.more-button {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--Main-elements);
  display: flex;
  flex-direction: row;
  font-size: var(--body-size);
  height: 28px;
  justify-content: center;
  outline: none;
  position: relative;
}

.more-button:disabled {
  color: var(--blue-7);
}

.more-button:disabled .icon {
  fill: var(--blue-7);
}

.more-button .icon {
  fill: var(--Main-elements);
  height: 32px;
  margin-right: 6px;
  width: 32px;
}

.more-button .menu-list {
  background-color: var(--Interface-background);
  border-radius: 5px;
  box-shadow: 0 10px 26px 0 var(--grey-8);
  color: var(--grey-13);
  font-size: var(--body-size);
  letter-spacing: 0;
  line-height: var(--body-line-height);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  z-index: 2;
}

.more-button .menu-list.active {
  transform: scale(1);
}

.more-button .menu-list .menu-option {
  box-sizing: border-box;
  padding: 14px 21px;
  text-align: start;
  white-space: nowrap;
}

.more-button .menu-list .menu-option:hover {
  background-color: var(--grey-2);
}

.more-button .menu-list .divider {
  border-top: 1px solid var(--Divider-Color);
}

.chat-header {
  align-items: center;
  border-bottom: 1px solid var(--Divider);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--grey-13);
}

.chat-header .muted {
  color: var(--blue-7);
  flex: 1;
  font-size: var(--font-size-md);
  line-height: 15px;
}

.chat-header .section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
  width: 100%;
}

.chat-header .section.assignee-info {
  border: none;
}

.chat-header .assignee-info .priority-and-name,
.chat-header .assignee-info .assignee {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 100%;
}

.chat-header .assignee-info .priority-and-name {
  align-items: center;
  flex-direction: row;
  padding: 12px;
}

.chat-header .assignee-info .priority-and-name .name {
  color: var(--grey-13);
  flex: 1;
  font-size: var(--h2-size);
  font-weight: bold;
  line-height: var(--h2-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-header .assignee-info .priority-and-name .priority-label {
  color: var(--blue-7);
  font-size: var(--font-size-md);
  line-height: 15px;
  white-space: nowrap;
  margin-left: 12px;
}

.chat-header .assignee-info .priority-and-name .priority-buttons {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 8px;
}

.chat-header .assignee-info .priority-and-name .priority {
  border-radius: 50%;
  border: none;
  height: 16px;
  margin: 0 4px;
  outline: none;
  padding: 0;
  width: 16px;
}

.chat-header .assignee-info .priority-and-name .priority:disabled {
  opacity: 0.6;
}

.chat-header .assignee-info .priority-and-name .priority.low {
  background-color: var(--Low);
}

.chat-header .assignee-info .priority-and-name .priority.med {
  background-color: var(--Medium);
}

.chat-header .assignee-info .priority-and-name .priority.high {
  background-color: var(--High);
}

.chat-header .assignee-info .priority-and-name .priority .icon {
  height: 16px;
  fill: var(--Incoming-background);
  width: 10px;
  stroke: var(--Incoming-background);
  stroke-width: 2px;
}

.chat-header .assignee-info .priority-and-name .call {
  background: transparent;
  border: none;
  margin-left: 12px;
  padding: 4px 5px;
}

.chat-header .assignee-info .priority-and-name .call .icon {
  height: 24px;
  width: 24px;
}

.chat-header .assignee-info .priority-and-name .call:disabled .icon {
  opacity: 0.35;
}

.chat-header .assignee-info .priority-and-name .call .icon path {
  fill: var(--Main-elements);
}

.chat-header .assignee-info .priority-and-name .call:disabled .icon path {
  fill: var(--grey-13);
}

.chat-header .assignee-info .assignee {
  flex-direction: column;
  padding: 6px 12px 12px;
}

.chat-header .assignee-info .assignee .label {
  padding: 0 0 5px 0;
}

.chat-header .assignee-info .assignee .assignee-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.chat-header .assignee-info .assignee .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {

  .chat-header .back {
    display: initial;
    margin-right: 12px;
  }

  .chat-header .assignee-info .priority-and-name .priority-label {
    display: none;
  }

}

.appointment-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
}

.appointment-info .title {
  color: var(--Secondary-font);
  font-size: var(--font-size-sm);
  line-height: var(--caption3-line-height);
  letter-spacing: var(--caption3-letter-spacing);
  font-weight: var(--h3-weight);
  height: 32px;
}

.appointment-info .body {
  color: var(--secondary-900);
}

.appointment-info .user-info .body .item {
  box-sizing: border-box;
  display: inline-block;
  padding: 6px;
  width: 50%;
}

.appointment-info .user-info .body .item .value {
  text-transform: capitalize;
}

.appointment-info .user-info .body .item .label {
  color: var(--blue-7);
  font-size: var(--font-size-md);
  margin-right: 12px;
}

.appointment-info .save, .edit-visit-notes-btn,
.appointment-info .cancel {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
}

.appointment-info .edit-visit-notes-btn {
  color: var(--Main-elements);
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
}

.appointment-info .edit-visit-notes-btn.disable {
  color: var(--Inactive);
}

.appointment-info .icon {
  height: 16px;
  width: 16px;
}

.appointment-info .save:disabled {
  opacity: 0.35;
}

.appointment-info .notes .field {
  background-color: unset;
  border: none;
  resize: none;
  box-shadow: none;
  padding: 0;
}

.appointment-info .record-list {
  margin: 0;
  padding: 0;
}

.appointment-info .injury-list {
  margin: 0;
  padding: 0;
}

.appointment-info .billing-codes {
  margin: 0;
}
.appointment-info .billing-codes .body {
  overflow: hidden;
  padding: 0;
}

.appointment-info .visit-notes {
  margin: 0;
  padding: 0;
}

.appointment-info .injury-images {
  margin: 0;
  gap: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.appointment-info .injury-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  transition: transform 0.2s;
}

.appointment-info .record-item {
  list-style: none;
  margin: 9px 0;
}

.appointment-info .record-item div {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--Main-elements);
  cursor: pointer;
}

.appointment-info .icon.file-video {
  height: 19px;
  width: 19px;
  margin-right: 5px;
  fill: var(--Main-elements);
}


.appointment-info .injury-item {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0px 10px 0px 0px;
  gap: 5px;
}

.appointment-info .injury-item-name {
  color: var(--secondary-300);
  font-size: var(--font-size-lg);
  line-height: var(--caption2-line-height);
  align-items: center;
  text-decoration: none;
}

.appointment-info .injury-item-value {
  color: var(--secondary-500);
  font-size: var(--font-size-xl);
  line-height: var(--h3-line-height);
  align-items: center;
  text-decoration: none;
}

.appointment-info .visit-notes-value {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0 10px 10px 0;
  gap: 5px;
  color: var(--secondary-500);
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
}

@media screen and (max-width: 768px) {
  .appointment-info .user-info .body .item {
    width: 100%;
  }
}

.shared-messages-container {
  position: relative;
}

.shared-messages-container .list-content {
  padding-bottom: 50px;
}

.shared-messages-container .shared-messages-footer {
  position: absolute;
  margin-bottom: 15px;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.shared-messages-container .update-btn {
  cursor: pointer;
  border: none;
  background-color: var(--Main-elements);
  border-radius: 11px;
  box-sizing: border-box;
  color: var(--Tertiary-font);
  font-size: var(--caption3-size);
  padding: 4px 18px;
  width: 78px;
}

.shared-messages-container .update-btn:disabled {
  cursor: not-allowed;
}

.upload-indicator-wrapper {
  position: relative;
  width: 100%;
}

.upload-indicator-wrapper .upload-indicator {
  height: unset;
  padding: 5px;
  transition: z-index 0.2s ease-in-out;
  position: absolute;
  bottom: 0;
  background-color: var(--blue-2);
  box-shadow: 0 -1px 6px 0 var(--Divider-Color);
  z-index: -1;
}

.upload-indicator-wrapper .upload-indicator.active {
  z-index: 1;
}

.upload-indicator {
  box-sizing: border-box;
  height: 0;
  width: 100%;
  overflow: hidden;
  transition: height 0.2s linear;
}

.upload-indicator.record.active {
  height: 10px;
}

.upload-indicator progress {
  border-radius: 2px;
  height: 20px;
  width: 100%;
}

.upload-indicator.record progress {
  display: block;
  height: 10px;
}

.upload-indicator progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 2px;
}

.upload-indicator progress[value]::-webkit-progress-bar {
  background-color: transparent;
  border-radius: 2px;
  box-shadow: 0 2px 5px var(--grey-8) inset;
  overflow: hidden;
}

.upload-indicator progress[value]::-webkit-progress-value {
  border-radius: 2px;
  background-color: var(--Main-elements);
  background-image: linear-gradient(
    45deg, var(--grey-6) 25%,
    transparent 25%, transparent 50%,
    var(--grey-6) 50%,
    var(--grey-6) 75%,
    transparent 75%,
    transparent
  );
  background-size: 3rem 3rem;
  -webkit-animation: animate-stripes 2s linear infinite;
  animation: animate-stripes 2s linear infinite;
}

.upload-indicator progress[value]::-moz-progress-bar {
  border-radius: 2px;
  box-shadow: 0 2px 5px var(--grey-8) inset;
  background-color: var(--Main-elements);
  background-image: linear-gradient(
    45deg, var(--grey-6) 25%,
    transparent 25%, transparent 50%,
    var(--grey-6) 50%,
    var(--grey-6) 75%,
    transparent 75%,
    transparent
  );
  background-size: 3rem 3rem;
  -moz-animation: animate-stripes 2s linear infinite;
  animation: animate-stripes 2s linear infinite;
}

.upload-indicator .cancel {
  background-color: var(--Main-elements);
  border-radius: 4px;
  border: 2px solid var(--Main-elements);
  color: var(--Tertiary-font);
  font-size: var(--caption1-size);
  font-weight: var(--caption1-weight);
  letter-spacing: 0;
  line-height: 20px;
  line-height: var(--caption1-line-height);
  margin: 5px 0 0;
  min-width: 160px;
  padding: 0.25em 2em;
  text-align: center;
  text-transform: uppercase;
}

.upload-indicator .icon {
  fill: var(--Tertiary-elements);
  height: 24px;
  width: 24px;
}

.upload-indicator .cancel .icon {
  margin-right: 10px;
  vertical-align: middle;
}

@-webkit-keyframes animate-stripes {
  0% { background-position: 0 0, 0 0, 0 0 }
  100% { background-position: -100px 0, 0 0, 0 0 }
}

@-moz-keyframes animate-stripes {
  0% { background-position: 0 0, 0 0, 0 0 }
  100% { background-position: -100px 0, 0 0, 0 0 }
}

@keyframes animate-stripes {
  0% { background-position: 0 0, 0 0, 0 0 }
  100% { background-position: -100px 0, 0 0, 0 0 }
}

.chat-history-tab {
  padding-left: 12px;
  height: 100%;
  width: auto;
  background-color: var(--Interface-background);
}

.chat-history-tab .list-content {
  padding-bottom: 10px;
}

.chat-history-tab .appointment-card {
  padding-right: 12px;
}

.chat-history-tab .chat-history-empty {
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

.chat-container {
  background-color: var(--Interface-background);
  border-radius: 0 5px 5px 0;
  box-shadow: 0 1px 4px 0 var(--Divider-Color);
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 1px 12px 12px 0;
  max-width: 520px;
  overflow: hidden;
}

.chat-container main {
  background-color: var(--blue-2);
  display: flex;
  flex: 1;
  overflow: hidden;
}

.chat-container .input-container--disabled {
  text-align: start;
  padding: 10px 16px;
  color: var(--secondary-200);
}

.chat-container .chat-action-container {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: var(--Main-background);
}

@media screen and (max-width: 768px) {
  .chat-container {
    max-width: unset;
    border-radius: 0;
    margin: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main-screen.on-call .chat-container {
    max-width: unset;
    border-radius: 0;
    margin: 0;
  }
}

.appointments-screen {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.list-organizer .list-item {
  display: flex;
  margin: 7px 0;
}

.list-organizer .list-item-controls {
  display: flex;
  align-items: center;
}

.list-organizer .list-item-controls {
  margin: 0 8px;
}

.list-organizer .list-item-controls .btn {
  border: none;
  outline: none;
  background: none;
  line-height: 0;
  padding: 2px;
  margin: 0 5px;
}

.list-organizer .list-item-controls .btn .icon {
  height: 24px;
  width: 24px;
}

.list-organizer .list-item-controls .btn-delete .icon {
  fill: var(--Secondary-elements);
}

.list-organizer .list-item-controls .btn-add .icon {
  fill: var(--Main-elements);
}

.work-schedule-screen {
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  text-align: start;
}

.work-schedule-screen-form {
  background-color: var(--Interface-background);
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 var(--grey-8);
  box-sizing: border-box;
  color: var(--Secondary-elements);
  display: inline-block;
  padding: 20px 25px 50px;
  transition: all 0.2s ease-in;
  width: 100%;
}

.work-schedule-screen-header {
  display: flex;
  align-items: center;
}

.work-schedule-screen .title {
  margin: 0 0 20px;
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}

.work-schedule-screen .subtitle {
  margin: 0 0 15px;
  font-size: var(--body-size);
  font-weight: bold;
  line-height: var(--body-line-height);
}

.work-schedule-screen .back {
  background-color: transparent;
  border: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.work-schedule-screen .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.work-schedule-screen .mt-30 {
  margin-top: 30px;
}

.work-schedule-screen .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.work-schedule-screen .business-hours-row {
  box-sizing: border-box;
  text-align: start;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--Divider-Color);
}

.work-schedule-screen .business-hours-row:last-child {
  border-bottom: 1px solid var(--Divider-Color);
}

.work-schedule-screen .business-hours-day {
  line-height: 0;
  height: 58px;
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.work-schedule-screen .day-checkbox {
  font-size: var(--body-size);
}

.work-schedule-screen .inline-field {
  display: flex;
  align-items: center;
}

.work-schedule-screen .inline-field:first-child {
  margin-right: 15px;
}

.work-schedule-screen .label-field {
  cursor: pointer;
  text-transform: lowercase;
  margin-right: 10px;
}

.work-schedule-screen .work-time-field {
  width: 100px;
  height: 44px;
}

.work-schedule-screen .business-hours-item {
  justify-content: flex-end;
  align-items: flex-start;
}

.work-schedule-screen .business-hours-controls-item,
.work-schedule-screen .public-holidays-controls-item {
  height: 44px;
}

.work-schedule-screen .appointment-duration-section,
.work-schedule-screen .timezone-section,
.work-schedule-screen .public-holidays-section {
  margin-top: 30px;
}

.work-schedule-screen .public-holidays-item {
  border-top: 1px solid var(--Divider-Color);
  padding: 7px 0;
}

.work-schedule-screen .public-holidays-item:last-child {
  border-bottom: 1px solid var(--Divider-Color);
}

.work-schedule-screen .public-holidays-fields {
  width: 100%;
  display: flex;
  gap: 10px;
}

.work-schedule-screen .appointment-duration-field {
  margin-right: 10px;
}

.work-schedule-screen .appointment-duration-field {
  display: flex;
  align-items: center;
  gap: 15px;
}

.work-schedule-screen .field-wrapper {
  width: 100%;
  gap: 10px;
}

.work-schedule-screen .duration-field {
  width: 110px;
}

.work-schedule-screen .label-duration {
  cursor: pointer;
}

.work-schedule-screen .container-duration {
  position: relative;
}

.work-schedule-screen .container-duration .error-form {
  position: absolute;
  width: 100%;
}

.work-schedule-screen .hours-fields-wrapper {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .offline .work-schedule-screen {
    top: 41px;
    height: calc(100% - 41px);
  }

  .work-schedule-screen {
    position: fixed;
    top: 0;
    z-index: 100;
    height: 100%;
    max-width: unset;
    overflow: auto;
  }

  .work-schedule-screen-form {
    padding: 0;
  }

  .work-schedule-screen-header {
    background-color: var(--Interface-background);
    box-shadow: 0 1px 4px 0 var(--grey-8);
    padding: 17px 13px;
  }

  .work-schedule-screen .header-title {
    margin: 0;
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    font-weight: var(--body-weight);
  }

  .work-schedule-screen-body {
    padding: 20px 15px;
  }

  .work-schedule-screen .business-hours-row {
    flex-direction: column;
  }

  .work-schedule-screen .inline-field:first-child {
    margin-right: 10px;
  }

  .work-schedule-screen .label-field {
    text-transform: lowercase;
    margin-right: 5px;
  }

  .work-schedule-screen .work-time-field {
    width: 92px;
  }

  .work-schedule-screen .public-holidays-item {
    align-items: baseline;
  }

  .work-schedule-screen .public-holidays-fields {
    flex-direction: column;
    gap: 7px;
  }

  .work-schedule-screen .appointment-duration-field {
    flex-direction: column;
    align-items: flex-start;
  }
}

.calendar {
  border-radius: 0;
  border: none;
  padding: 0;
  width: auto;
}

.calendar.field {
  background-color: transparent;
}

.calendar.field .icon {
  fill: var(--secondary-400);
}

.calendar.show-overlay .icon {
  fill: var(--Main-elements)
}

.calendar .DayPickerInput-Overlay {
  left: 0;
}

.calendar.bottom .DayPickerInput-Overlay {
  top: 0;
}

.calendar.top .DayPickerInput-Overlay {
  top: unset;
  bottom: 25px;
}

.weekly-schedule {
  text-align: center;
}

.weekly-schedule .ws-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.weekly-schedule .ws-calendar {
  position: absolute;
  left: 0;
}

.weekly-schedule .ws-btn-update {
  border: none;
  padding: 0;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  background: none;
  position: absolute;
  right: 0;
  color: var(--Main-elements);
  display: flex;
  align-items: center;
}

.weekly-schedule .ws-btn-update:disabled .ws-btn-update-label {
  color: var(--blue-7);
}

.weekly-schedule .ws-btn-update:disabled .ws-icon-update {
  fill: var(--blue-7);
}

.weekly-schedule .ws-btn-update-label {
  margin-left: 5px;
}

.weekly-schedule .ws-icon-update {
  width: 23px;
  height: 23px;
  fill: var(--Main-elements);
}

.weekly-schedule .ws-days {
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.weekly-schedule .ws-day-item {
  width: calc(100% / 7);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  padding: 10px;
}

.weekly-schedule .ws-day-week {
  color: var(--blue-7);
  font-size: var(--caption2-size);
  line-height: var(--caption2-line-height);
}

.weekly-schedule .ws-day-number {
  font-size: var(--body-size);
  font-weight: bold;
  line-height: var(--body-line-height);
}

.weekly-schedule .ws-week-name {
  font-size: var(--body-size);
  font-weight: bold;
  line-height: var(--body-line-height);
  width: 310px;
  margin: 0 5px;
  text-align: center;
}

.weekly-schedule .ws-nav-btn {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0 5px;
  fill: var(--grey-13);
}

.weekly-schedule .ws-nav-btn.hide {
  visibility: hidden;
}

.weekly-schedule .ws-icon {
  height: 24px;
  width: 24px;
  vertical-align: middle;
}

.weekly-schedule .ws-icon-prev {
  transform: rotate(180deg);
}

.weekly-schedule .weekly-schedule-body {
  display: flex;
  gap: 5px;
}

.weekly-schedule .ws-event-list {
  width: calc(100% / 7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.weekly-schedule .ws-event-item {
  display: flex;
  justify-content: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  color: var(--Interface-background);
  background-color: var(--green);
}

.weekly-schedule .ws-event-item.selected {
  background-color: var(--Interface-background);
  border: 1px solid var(--grey-13);
  color: var(--grey-13);
  padding: 7px 11px;
}

.weekly-schedule .ws-event-item.disabled,
.offline .weekly-schedule .ws-event-item:not(.disabled) {
  cursor: not-allowed;
}

.weekly-schedule .ws-event-item.disabled {
  background-color: var(--blue-6);
}

.offline .weekly-schedule .ws-event-item:not(.disabled) {
  opacity: 0.6;
}

.weekly-schedule .ws-event-input {
  display: none;
}

.weekly-schedule .ws-event-time {
  font-size: var(--font-size-md);
  font-weight: bold;
  line-height: 18px;
}

.weekly-schedule .ws-event-divider {
  padding: 0 2px;
}

.weekly-schedule .schedule-empty {
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

.daily-schedule {
  text-align: center;
}

.daily-schedule .ds-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.daily-schedule .ds-calendar {
  position: absolute;
  left: 0;
}

.daily-schedule .ds-btn-update {
  border: none;
  padding: 0;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  background: none;
  position: absolute;
  right: 0;
  color: var(--Main-elements);
  display: flex;
  align-items: center;
}

.daily-schedule .ds-btn-update:disabled .ds-icon-update {
  fill: var(--DailyScheduleBtnUpdateIcon-fill--disabled);
}

.daily-schedule .ds-btn-update-label {
  margin-left: 5px;
}

.daily-schedule .ds-icon-update {
  fill: var(--Main-elements);
}

.daily-schedule .ds-date-name {
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  width: 250px;
  margin: 0 5px;
  text-align: center;
}

.daily-schedule .ds-nav-btn {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0 5px;
  fill: var(--secondary-900);
}

.daily-schedule .ds-nav-btn.hide {
  visibility: hidden;
}

.daily-schedule .ds-icon {
  height: 24px;
  width: 24px;
  vertical-align: middle;
}

.daily-schedule .ds-icon-prev {
  transform: rotate(180deg);
}

.daily-schedule .ds-event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.daily-schedule .ds-event-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--Tertiary-font);
  background-color: var(--Success);
  width: calc((100% / 4) - 8px);
}

.daily-schedule .ds-event-item.selected {
  background-color: var(--Incoming-background);
  border: 1px solid var(--secondary-900);
  color: var(--secondary-900);
  padding: 7px 11px;
}

.daily-schedule .ds-event-item.disabled,
.offline .daily-schedule .ds-event-item:not(.disabled) {
  cursor: not-allowed;
}

.daily-schedule .ds-event-item.disabled {
  background-color: var(--blue-6);
}

.offline .daily-schedule .ds-event-item:not(.disabled) {
  opacity: 0.6;
}

.daily-schedule .ds-event-input {
  display: none;
}

.daily-schedule .ds-event-time {
  font-size: var(--body-size);
  line-height: var(--body-line-height);
}

.daily-schedule .ds-event-divider {
  padding: 0 2px;
}

.daily-schedule .schedule-empty {
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .daily-schedule .ds-date-name {
    width: 175px;
  }

  .daily-schedule .ds-event-list {
    gap: 5px;
  }

  .daily-schedule .ds-event-item {
    padding: 6px 13px;
    width: calc((100% / 4) - 4px);
  }

  .daily-schedule .ds-event-time {
    font-size: var(--caption3-line-height);
    line-height: var(--caption3-line-height);
    text-align: center;
  }

  .daily-schedule .ds-event-divider {
    display: none;
  }

  .daily-schedule .ds-event-start,
  .daily-schedule .ds-event-end {
    display: block;
  }

  .daily-schedule .ds-btn-update-label {
    display: none;
  }
}

.create-appointment-screen {
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
  margin-bottom: 30px;
  text-align: start;
}

.create-appointment-screen .create-appointment-form {
  background-color: var(--Interface-background);
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 var(--grey-8);
  box-sizing: border-box;
  color: var(--Secondary-elements);
  display: inline-block;
  padding: 20px 25px 50px;
  transition: all 0.2s ease-in;
  width: 100%;
}

.create-appointment-screen .title {
  margin: 0 0 20px;
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}

.create-appointment-screen .back {
  background-color: transparent;
  border: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.create-appointment-screen .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.create-appointment-screen .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.create-appointment-screen .create-appointment-wrapper {
  display: flex;
}

.create-appointment-screen .create-appointment-info {
  max-width: 600px;
  width: 40%;
}

.create-appointment-screen .client-info {
  margin-top: 30px;
}

.create-appointment-screen .client-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.create-appointment-screen .avatar {
  width: 60px;
  height: 60px;
}

.create-appointment-screen .user-name {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.create-appointment-screen .user-birthdate {
  font-size: var(--caption2-size);
  font-weight: var(--caption2-weight);
  line-height: var(--caption2-line-height);
  color: var(--Secondary-font)
}

.create-appointment-screen .user-info {
  display: flex;
  flex-flow: column;
}

.create-appointment-screen .client-info-body {
  margin-top: 10px;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
}

.create-appointment-screen .client-info-body .list-item {
  box-sizing: border-box;
  display: inline-block;
  padding: 6px 6px 6px 0;
  width: 50%;
}

.create-appointment-screen .client-info-body .list-item .label {
  color: var(--blue-7);
  margin-right: 12px;
}

.create-appointment-screen .client-info-body .list-item .value {
  text-transform: capitalize;
}

.create-appointment-screen .create-appointment-schedule {
  width: calc(60% - 24px);
  margin-top: 10px;
  margin-left: 24px;
}

@media screen and (max-width: 1330px) {
  .create-appointment-screen .create-appointment-schedule .ws-btn-update-label,
  .create-appointment-screen .create-appointment-schedule .ws-event-divider {
    display: none;
  }

  .create-appointment-screen .create-appointment-schedule .ws-event-start,
  .create-appointment-screen .create-appointment-schedule .ws-event-end {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .create-appointment-screen .client-info-body .list-item {
    width: auto;
  }
}

@media screen and (max-width: 375px) {
  .create-appointment-screen .client-info-body .list-item {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .offline .create-appointment-screen {
    top: 41px;
    height: calc(100% - 41px);
  }

  .create-appointment-screen {
    position: fixed;
    top: 0;
    z-index: 5;
    height: 100%;
    max-width: unset;
    overflow: auto;
    padding: 0;
  }

  .create-appointment-header {
    display: flex;
    align-items: center;
    background-color: var(--Interface-background);
    box-shadow: 0 1px 4px 0 var(--grey-8);
    color: inherit;
    padding: 17px 13px;
  }

  .create-appointment-screen .header-title {
    margin: 0;
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    font-weight: var(--body-weight);
  }

  .create-appointment-screen .create-appointment-form {
    border-radius: 0;
    padding: 20px 15px 50px;
  }

  .create-appointment-screen .create-appointment-wrapper {
    flex-direction: column;
  }

  .create-appointment-screen .create-appointment-info,
  .create-appointment-screen .create-appointment-schedule {
    width: 100%;
    max-width: unset;
    margin-left: 0;
  }
}

.edit-visit-notes {
  right: unset;
  left: unset;
}

.edit-visit-notes.active {
  z-index: 10;
}

.edit-visit-notes .form {
  width: 715px;
  height: auto;
  max-height: 85vh;
  overflow: auto;
  border-radius: 10px;
  background-color: var(--blue-1);
}

.edit-visit-notes .form .body {
  align-items: flex-start;
  padding: 24px 20px;
}

.edit-visit-notes .form-field-input {
  width: 100%;
  margin-top: 20px;
}

.edit-visit-notes .form::-webkit-scrollbar {
  width: 4px;
}

.edit-visit-notes .form::-webkit-scrollbar-track {
  background: var(--blue-2);
  border-radius: 10px;
}

.edit-visit-notes .form::-webkit-scrollbar-thumb {
  background: var(--secondary-300);
  border-radius: 10px;
}

.edit-visit-notes .form::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-500);
}

.edit-visit-notes .back {
  background-color: transparent;
  border: none;
  display: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.edit-visit-notes .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.edit-visit-notes-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background-color: transparent;
  box-shadow: none;
  border-bottom: none;
  width: 100%;
  box-sizing: border-box;
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  color: var(--secondary-500);
  text-align: center;
  position: relative;
}

.edit-visit-notes-header .icon-close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  cursor: pointer;
}

.edit-visit-notes-body {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 24px 36px 24px;
}

.edit-visit-notes .form-field-label {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  color: var(--secondary-500);
}

@media screen and (max-width: 768px) {
  .edit-visit-notes {
    opacity: 1;
    right: -100%;
    transition: right 0.25s ease-in-out;
    z-index: 10;
  }

  .edit-visit-notes.active {
    right: 0;
  }

  .edit-visit-notes .form {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    background-color: var(--blue-1);
    overflow: auto;
  }

  .edit-visit-notes .form .body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .edit-visit-notes .form-field {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .edit-visit-notes .form-field-input {
    width: 100%;
    min-height: 120px;
  }

  .edit-visit-notes-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background-color: transparent;
    box-shadow: none;
    border-bottom: none;
    width: 100%;
    box-sizing: border-box;
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    line-height: var(--h3-line-height);
    color: var(--secondary-500);
    text-align: center;
    position: relative;
  }

  .edit-visit-notes-header .icon-close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .edit-visit-notes .form-field-label {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    line-height: var(--h3-line-height);
    color: var(--secondary-500);
    text-align: center;
  }

  .edit-visit-notes .form::-webkit-scrollbar {
    width: 4px;
  }

  .edit-visit-notes .form::-webkit-scrollbar-track {
    background: var(--blue-2);
    border-radius: 10px;
  }

  .edit-visit-notes .form::-webkit-scrollbar-thumb {
    background: var(--secondary-300);
    border-radius: 10px;
  }

  .edit-visit-notes .form::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-500);
  }
}

.human-handover-screen {
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.human-handover-screen-form {
  align-self: flex-start;
  background-color: var(--Interface-background);
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 var(--grey-8);
  box-sizing: border-box;
  color: var(--grey-13);
  display: inline-block;
  padding: 20px 25px 50px;
  transition: all 0.2s ease-in;
  width: 100%;
}

.human-handover-screen-header {
  display: flex;
  align-items: center;
}

.human-handover-screen .title {
  text-align: start;
  margin: 0 0 16px;
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}

.human-handover-screen .subtitle {
  text-align: start;
  margin: 0 0 8px;
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
}

.human-handover-screen .back {
  background-color: transparent;
  border: none;
  height: 28px;
  padding: 4px;
  width: 28px;
  margin-right: 15px;
}

.human-handover-screen .back .icon {
  height: 20px;
  width: 20px;
  fill: var(--secondary-900);
}

.human-handover-screen .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.human-handover-screen .user-list-with-filter {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 500px;
  border-radius: 4px;
  border: 1px solid var(--Divider-Color);
  box-sizing: border-box;
}

.human-handover-screen .filter-user-name {
  display: flex;
  background-color: var(--Interface-background);
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--Divider-Color);
  box-sizing: border-box;
  height: 44px;
  min-width: 60%
}

.human-handover-screen .filter-user-name input {
  border: none;
  outline: none;
  font-size: var(--font-size-xl);
  line-height: 22px;
}

.human-handover-screen .filter-user-name input::placeholder {
  color: var(--Inactive);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  line-height: var(--body-line-height);
}

.human-handover-screen .filter-user-name .icon {
  fill: var(--blue-3);
  margin: 10px;
  height: 24px;
  width: 24px;
}

.human-handover-screen .form-field-radio-group {
  display: flex;
  flex-direction: column;
  font-weight: var(--caption2-weight);
  font-size: var(--font-size-xl);
  line-height: var(--body-line-height);
  margin-bottom: 20px;
  margin-top: 20px;
}

.human-handover-screen .form-field-radio-group .stretch-container {
  display: inline-block;
}

.human-handover-screen .form-field-radio-group .mr-10 {
  margin-left: 4px;
  height: 32px;
}

.human-handover-screen .form-field .form-field-label .form-field-tooltip svg {
  width: 19px;
  height: 19px;
  fill: var(--Alternative-elements);
}


  .instruction-select {
    border: 1px solid var(--primary-50);
    border-radius: 4px;
  }

  .instruction-select .instruction-select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: var(--Divider-Color);
    padding: 10px 10px 10px 20px;
  }

  .instruction-select .instruction-select-header .instruction-select-caption {
    font-weight: var(--caption1-weight);
    font-size: var(--caption1-size);
    line-height: var(--caption1-line-height);
    color: var(--secondary-500);
  }

  .instruction-select .instruction-select-header .instruction-select-icon {
    width: 16px;
    height: 16px;
    fill: var(--secondary-200);

    transition: transform 0.5s ease;
    cursor: pointer;
  }

  .instruction-select .instruction-select-header .instruction-select-icon.open {
    transform: rotate(90deg);
  }

  .instruction-select .instruction-select-dropdown-list {
    padding: 20px;
    background-color: var(--primary-A200);
  }

  .instruction-select .instruction-wrap {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-out;
  }

  .instruction-select .instruction-wrap.open {
    max-height: 235px;
    padding: 20px;
    background-color: var(--Main-background);

    font-size: var(--caption2-size);
    font-weight: var(--caption2-weight);
    line-height: var(--caption2-line-height);
    opacity: 1;
    transition: opacity 0.5s ease-in,
    max-height 0.5s ease-out;
  }

  .instruction-select .instruction-header,
  .instruction-select .instruction-list > li::marker,
  .instruction-select .instruction-list span {
    font-weight: 700;
    font-size: var(--caption2-size);
    line-height: var(--caption2-line-height);
  }

  .instruction-select ol {
    padding: 0;
    margin: 0;
    list-style-position: inside;
    text-align: left;
  }

  .instruction-select .instruction-list ul {
    padding-left: 0;
    margin-left: 3px;
    list-style-type: disc;
  }


  @media screen and (max-width: 768px) {
    .offline .human-handover-screen {
      top: 41px;
      height: calc(100% - 41px);
    }

    .human-handover-screen {
      position: fixed;
      top: 0;
      z-index: 100;
      height: 100%;
      overflow: auto;
    }

    .human-handover-screen-form {
      padding: 0;
      border-radius: 0;
    }

    .human-handover-screen-header {
      background-color: var(--Interface-background);
      box-shadow: 0 1px 4px 0 var(--grey-8);
      padding: 17px 13px;
    }

    .human-handover-screen .header-title {
      margin: 0;
      font-size: var(--body-size);
      line-height: var(--body-line-height);
      font-weight: var(--body-weight);
    }

    .human-handover-screen-body {
      padding: 20px 15px;
    }

    .human-handover-screen .human-handover-screen-readonly {
      text-overflow: ellipsis;
    }

    .instruction-select .instruction-wrap.open {
      max-height: 400px;
    }
}

.agents {
  display: contents;
  color: var(--Secondary-elements);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
}

.agents.disabled {
  color: var(--Inactive);
  pointer-events: none;
}

  .user-list {
    flex: 1;
    box-sizing: border-box;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    height: 100%;
    max-height: 500px;
    overflow-y: auto;
  }

  .user-list-loader {
    display: flex;
    align-items: center;
  }

  .user-list-item {
    display: flex;
    justify-content: space-between;
    height: 52px;
  }

  .user-list-item-info {
    display: flex;
    align-items: center;
  }

  .user-list-item__avatar {
    width: 26px;
    height: 26px;
  }

  .user-list-item__name {
    cursor: pointer;
    margin-left: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
  }

  .user-list-with-filter .filter-box {
    display: flex;
    flex-flow: row;
    margin: 10px 10px 0 10px;
    gap: 10px;
  }

  .user-list-with-filter .filter-box .search-user-name {
    width: 100%;
  }

  .user-list-with-filter .filter-box .search-user-name .icon {
    fill: var(--blue-3);
    margin: 10px;
    height: 24px;
    width: 24px;
  }

  .type-filter {
    display: flex;
    background-color: var(--Interface-background);
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--Divider-Color);
    box-sizing: border-box;
    height: 44px;
    width: 39%;
  }

  .type-filter .flex-field {
    width: 100%;
  }




.modal.assign-to .form {
  width: 400px;
  height: 309px;
}

.modal.assign-to.active .form .assign-me-body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.modal.assign-to.active .form .assign-me-body .content {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  height: 150px;

}

.modal.assign-to .form .label {
  font-size: var(--font-size-xl);
  line-height: var( --tab-line-height);
  margin-bottom: 12px;
  margin-right: 50px;
  margin-left: 50px;
  text-align: center;
}

.modal.assign-to.active .form .assign-me-body .btn-group {
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding-top: 20px;
}
.modal.assign-to .form .btn-group .btn{
  padding: 0 0 0 0;
  height: 44px;
  width: 175px;
}


.main-screen-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main-screen {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.main-screen .column {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  width: 100%;
  justify-content: flex-start;
}

.main-screen .loading-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.backdrop {
  background-color: var(--grey-11);
  bottom: 0;
  cursor: pointer;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  z-index: -1;
}

.main-screen.on-call + .backdrop.active {
  opacity: 1;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .offline .main-screen-wrapper {
    margin-top: 41px;
  }

  .backdrop.active {
    opacity: 1;
    z-index: 2;
  }

  .main-screen .screen-wrapper {
    min-height: unset;
  }
}

.waiting-network-container {
  background-color: var(--grey-11);
  box-shadow: 0 0 6px 0 var(--secondary-800);
  box-sizing: border-box;
  color: var(--Tertiary-font);
  position: fixed;
  text-align: center;
  transition: all 0.25s ease-in-out;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.waiting-network-container, .waiting-network {
  border-radius: 6px;
}

.waiting-network {
  padding: 0.6em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waiting-network-container .spinner {
  margin: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
  .waiting-network-container {
    background-color: #FFF;
    width: 100%;
    transform: none;
    top: 0;
    left: 0;
  }

  .waiting-network {
    background-color: var(--grey-11);
  }

  .waiting-network-container, .waiting-network {
    border-radius: 0;
  }
}

.language-modal .form .body {
  padding: 0;
}

.language-modal .form .footer {
  padding: 0 27px 40px;
}

.language-modal .list-lang {
  padding: 10px 0;
  margin: 0;
  width: 100%;
}

.language-modal .list-lang-item {
  list-style-type: none;
  padding: 10px 16px;
  cursor: pointer;
}

.language-modal .list-lang-item.active {
  background-color: var(--grey-2);
  box-shadow: inset 3px 0 0 0 var(--Main-elements);
}

.language-modal .list-lang-item:hover {
  background-color: var(--grey-2);
  box-shadow: inset 3px 0 0 0 var(--Main-elements);
}

