:root {
    /*Theme*/
    --color-theme: #ee224c;
    /*Booking*/
    --color-booking-new: #005CA1;
    --color-booking-booked: #7ED957;
    --color-booking-in-progress: #195900;
    --color-booking-completed: #009F02;
    --color-booking-declined: lightcoral;
    --color-booking-canceled: #FF5757;
    --color-booking-update: #fdff76;
    --color-booking-to-approve: #2f5069;
    --color-booking-not-approved: #ff5100;
    --color-booking-requested: #EBCE0D;
    --color-booking-canceled-pay: darkred;
    --color-booking-unfulfilled: #9D45EB;
    --color-booking-attention: #C836BE;
    --color-booking-modified: #4A97FF;
    --color-booking-pending: yellow;
    --color-booking-resolved: #00b100;
    --color-booking-lateCancelled: #FF2F2F;


    /*Invoice*/
    --color-invoice-no-show: #F68C18;
    --color-invoice-under-review: #ed7f4d;
    --color-invoice-new: #2F5C99;
    --color-invoice-overlap: #4a004d;
    --color-invoice-int-review: #EBCE0D;
    --color-invoice-int-protest: #a12929;
    --color-invoice-void: #dd3f3f;
    --color-invoice-int-accepted: #00b100;
    --color-invoice-self-insured: #00e9f1;
    --color-invoice-submitted-to-lni: #009999;
    --color-invoice-lni-approved: #0084d1;
    --color-invoice-under-lni-review: #a84e99;
    --color-invoice-transferred: #14a800;
    --color-invoice-paid: #195900;

    /*switch colors*/
    --color-status_checkbox-yes: #29893F;
    --color-status_checkbox-no: #FF4C4E;
    --color-status_checkbox-rejected: #FF8E33;

    /*documents status colors*/
    --color-documents-expired: #FF5757;
    --color-documents-validated: #009F02;
    --color-documents-pending: #EBCE0D;
    --color-documents-incomplete: #FF8E33;

    /*buttons status colors*/
    --color-buttons-icons-header: #eeeeee;
    --color-buttons-icons-header-background: #EE224C;
    --color-buttons-icons-rows: #EE224C;

}

#loader-wrapper {
  display: inline;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 1001;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #e9e9e9;
  z-index: 1000;
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%);
  /* IE 9 */
  transform: translateX(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%);
  /* IE 9 */
  transform: translateX(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.3s ease-out;
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%);
  /* IE 9 */
  transform: translateY(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.3s 1s ease-out;
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.picture_edit {
  position: absolute;
  top: 90%;
  left: 90%;
  transform: translate(-50%, -50%);
  font-size: 2em;
}
.webixappstart {
  opacity: 0;
}
.webixapp {
  transition: opacity 500ms;
  opacity: 1;
}
/*data loading status*/
.status_good,
.status_error,
.status_saving {
  color: #eee;
}
.status_error {
  color: #FFCDCD;
}
.status_area {
  background: transparent;
}
.status_area .webix_icon {
  width: 16px;
}
.templateTitle {
  font-size: 15px;
  font-weight: bold;
  color: var(--bs-font-sans-serif);
  text-align: center;
}
/* Notifications */
.notifications {
  padding: 3px 0 0 0;
  line-height: 26px !important;
}
.notificationIcon {
  padding: 1px 5px 1px 1px;
}
.notificationTitle {
  font-size: large;
  vertical-align: top;
}
.notificationAction {
  text-align: center;
}
.notificationBody {
  text-align: justify-all;
}
.notificationReaded {
  display: inline-block;
  float: left;
  text-align: left;
  font-size: 13px;
  color: #0d6df2;
  text-decoration: underline;
}
.notificationDate {
  display: inline-block;
  float: right;
  text-align: right;
  font-size: 10px;
}
/*login form*/
.invalid_login .webix_header > div {
  background: #FC3636;
  transition: background 1s;
}
.invalid_login {
  animation: formshake 0.5s linear;
  -webkit-animation: formshake 0.5s linear;
}
@-webkit-keyframes formshake {
  8%,
  41% {
    -webkit-transform: translateX(-10px);
  }
  25%,
  58% {
    -webkit-transform: translateX(10px);
  }
  75% {
    -webkit-transform: translateX(-5px);
  }
  92% {
    -webkit-transform: translateX(5px);
  }
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes formshake {
  8%,
  41% {
    -webkit-transform: translateX(-10px);
  }
  25%,
  58% {
    -webkit-transform: translateX(10px);
  }
  75% {
    -webkit-transform: translateX(-5px);
  }
  92% {
    -webkit-transform: translateX(5px);
  }
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
}
/*siberia theme*/
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.float-right {
  float: right;
}
.appMLL {
  background: #e9e9e9;
}
.webix_layout_clean {
  background: #F4F5F9;
}
.companyLogo {
  padding: 5px 0 0 5px;
}
.loginLogo {
  height: 20px;
  width: 18px;
  vertical-align: middle;
}
.companyName {
  padding: 5px 0;
  line-height: 42px;
  vertical-align: top;
}
.notification {
  line-height: 42px;
  vertical-align: top;
}
.app-left-panel .header_person {
  line-height: 30px;
}
.userProfile {
  height: 100%;
  width: 100%;
  cursor: pointer;
  color: #737373;
  background-color: #F4F5F9;
}
.userPhoto {
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle;
}
.logoIcon {
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.userName {
  vertical-align: top;
  padding-left: 5px;
  font-size: 1.1em;
}
.userProfile .arrow {
  float: right;
  padding: 8px 3px 0 0;
}
/* webix overweight */
.webix_menu {
  background: #e9e9e9;
}
/*left side menu*/
.app-left-panel,
.app-left-panel .webix_view {
  background: #e9e9e9;
  color: #ddd;
}
/* unradius borders */
.app-left-panel .webix_menu,
.app-left-panel .header_person {
  background: #F0F0F0;
  border-radius: 10px;
}
.app-left-panel .webix_sidebar {
  background: #f0f0f0;
}
.webix_sidebar.webix_sidebar_expanded .webix_tree_item.webix_sidebar_selected:hover {
  background-color: #C6D2DC;
}
.app-left-panel .webix_sidebar_expanded .webix_tree_item.webix_selected,
.app-left-panel .webix_sidebar_expanded .webix_tree_item.webix_selected span {
  color: #737373;
  background: #C6D2DC;
}
.app-left-panel .webix_sidebar_expanded .webix_tree_item.webix_selected:hover,
.app-left-panel .webix_sidebar_expanded .webix_tree_item.webix_selected:hover span,
.app-left-panel .webix_sidebar_expanded .webix_tree_item:hover,
.app-left-panel .webix_sidebar_expanded .webix_tree_item:hover span {
  color: #737373;
  background-color: #C6D2DC;
}
.app-left-panel .webix_header .webix_template {
  /*background-color: var(--color-theme);*/
  border-bottom: 1px solid white;
  padding-left: 0px;
}
.app-left-panel .webix_header {
  border-left-width: 0 !important;
}
.app-left-panel .webix_sidebar .webix_tree_branch_1 > .webix_tree_item {
  padding-left: 5px;
}
.app-left-panel .webix_sidebar .webix_tree_branch_2 > .webix_tree_item {
  padding-left: 20px;
}
.webix_sidebar .webix_tree_branch_1 .webix_tree_item {
  padding-left: 0;
}
/*right side panel*/
.app-right-panel {
  border-top-left-radius: 4px;
}
.app-right-panel .webix_layout_wide {
  background: #fff;
}
.app_button {
  padding: 0;
  text-align: center;
}
.app_button .webix_el_box .webix_button {
  background: var(--color-theme) !important;
}
.app_button .webix_el_box {
  border-bottom: 1px solid white !important;
}
.app_button .webix_el_box .webix_icon_btn {
  color: white !important;
}
.app_button .webix_disabled_box .webix_img_btn {
  background: var(--color-theme) !important;
  border-width: 0;
}
.webix_view .webix_pager_item {
  color: #737373;
}
.webix_view .webix_pager_item_selected:hover {
  background: #cdd4dd;
  color: #737373;
}
.webix_view .webix_pager_item_selected {
  background: #D5DCE5;
  color: #737373;
}
.buttonsActiveComponent {
  display: inline-block;
  padding-left: 5px;
  vertical-align: top;
  line-height: 30px !important;
}
.buttonsActiveComponent .webix_el_box {
  padding: 0;
}
.checkboxActiveComponent {
  display: inline-block;
  vertical-align: top;
  height: 39px;
  padding: 15px 5px 0;
}
.webixbutton.addNewButton,
.webixbutton.refreshButton,
.webixbutton.importButton,
.webixbutton.editColumns,
.webixbutton.toExcelButton {
  margin: 3px;
  padding: 5px;
  color: var(--color-buttons-icons-header);
  background-color: var(--color-buttons-icons-header-background);
}
.webixbutton.editRecord,
.webixbutton.deleteRecord,
.webixbutton.viewRecord,
.webixbutton.copyRecord,
.webixbutton.switchStatusRecord,
.webixbutton.workOrder,
.webixbutton.customActions,
.webixbutton.voucher,
.webixbutton.showVideo,
.webixbutton.IntNoShow,
.webixbutton.LEPNoShow,
.webixbutton.goResolveIssue {
  text-align: center;
  margin: 3px;
  padding: 5px;
  color: var(--color-buttons-icons-rows);
}
.webixbutton.link {
  font-size: 1em;
  font-style: normal;
}
.webix_image_field {
  border-radius: 25%;
}
.webix_hidden {
  display: none;
}
.select_one {
  float: right;
  line-height: 28px;
}
.webix_map_content.leaflet-container {
  z-index: 10 !important;
}
.rowsColored .webix_cell:nth-child(2n) {
  background-color: #eeeeee;
}
.rowsColored .webix_cell.webix_row_select {
  color: #292929 !important;
  background: #eba7a0 !important;
}
.intCard {
  width: 3.5in;
  height: 2in;
  padding: 5px;
  border: 1px dashed grey;
}
.intCardFrame {
  width: 3.27in;
  height: 1.77in;
  border: 1px solid black;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
}
.intCardImg {
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.intCardName {
  font-size: large;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.intCardLanguages {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.intCardSpace {
  margin: 0 50px;
}
.intCardCompany {
  font-size: larger;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.intCardLogo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.status_checkbox {
  padding: 4px 6px;
  border-radius: 12px;
}
.status_checkbox.Yes {
  background-color: var(--color-status_checkbox-yes);
  color: #fafafa;
}
.emptyDataMessage {
  display: grid;
  height: 100%;
  place-items: center;
  font-size: 1.5em;
  color: #c42f2f;
}
.document.Rjt,
.status_checkbox.Rjt {
  background-color: var(--color-status_checkbox-rejected);
  color: #fafafa;
}
.document.No,
.status_checkbox.No {
  background-color: var(--color-status_checkbox-no);
  color: #fafafa;
}
.booking_status {
  padding: 4px 6px;
  border-radius: 12px;
}
.booking_status.Modality {
  background-color: #545454;
  color: #fafafa;
}
.booking_status.New {
  background-color: var(--color-booking-new);
  color: #fafafa;
}
.booking_status.update {
  background-color: var(--color-booking-update);
  color: #292929;
}
.booking_status.ToApprove {
  background-color: var(--color-booking-to-approve);
  color: #fafafa;
}
.booking_status.NotApproved {
  background-color: var(--color-booking-not-approved);
  color: #fafafa;
}
.booking_status.Requested,
.booking_status.Updated {
  background-color: var(--color-booking-requested);
  color: #fafafa;
}
.booking_status.Booked,
.booking_status.Accepted {
  background-color: var(--color-booking-booked);
  color: #fafafa;
}
.booking_status.InProgress {
  background-color: var(--color-booking-in-progress);
  color: #fafafa;
}
.booking_status.Completed,
.booking_status.Voucher {
  background-color: var(--color-booking-completed);
  color: #fafafa;
}
.booking_status.Declined {
  background-color: var(--color-booking-declined);
  color: #fafafa;
}
.booking_status.Canceled,
.booking_status.LateCancellation,
.booking_status.Rejected,
.booking_status.AdminCanceled,
.booking_status.Prv-NotCanceled {
  background-color: var(--color-booking-canceled);
  color: #fafafa;
}
.booking_status.CanceledPay {
  background-color: var(--color-booking-canceled-pay);
  color: #fafafa;
}
.booking_status.Unfulfilled {
  background-color: var(--color-booking-canceled-pay);
  color: #fafafa;
}
.booking_status.Attention {
  background-color: var(--color-booking-attention);
  color: #fafafa;
}
.invoice_status.IntNoShow,
.invoice_status.LEPNoShow,
.invoice_status.Scheduled,
.invoice_status.PaymentSubmitted,
.invoice_status.Unpaid,
.booking_status.CheckIn,
.booking_status.CheckOut,
.booking_status.PatNoShow,
.booking_status.LEPNoShow,
.booking_status.IntNoShow {
  background-color: var(--color-invoice-no-show);
  color: #fafafa;
}
.booking_status.UnderRequesterReview,
.invoice_status.UnderRequesterReview,
.booking_status.UnderInvestigation,
.invoice_status.UnderInvestigation,
.invoice_status.Review {
  background-color: var(--color-invoice-under-review);
  color: #fafafa;
}
.booking_status.Modified {
  background-color: var(--color-booking-modified);
  color: #fafafa;
}
.booking_status.Pending {
  background-color: var(--color-booking-modified);
  color: #fafafa;
}
.booking_status.Resolved {
  background-color: var(--color-booking-resolved);
  color: #fafafa;
}
.invoice_status {
  padding: 4px 6px;
  border-radius: 12px;
}
.invoice_status.New {
  background-color: var(--color-invoice-new);
  color: #fafafa;
}
.invoice_status.Overdrawn,
.invoice_status.Overlap {
  background-color: var(--color-invoice-overlap);
  color: #fafafa;
}
.invoice_status.Int-Review,
.invoice_status.Pending,
.invoice_status.InProcess,
.status_checkbox.Error {
  background-color: var(--color-invoice-int-review);
  color: #fafafa;
}
.invoice_status.Int-Protest {
  background-color: var(--color-invoice-int-protest);
  color: #fafafa;
}
.invoice_status.Void,
.invoice_status.Prv-Canceled,
.invoice_status.Prv-NotCanceled,
.invoice_status.DblBooking,
.invoice_status.PaymentError,
.invoice_status.Error,
.invoice_status.WrongClaim {
  background-color: var(--color-invoice-void);
  color: #fafafa;
}
.invoice_status.Int-Accepted,
.invoice_status.Approved,
.invoice_status.Consolidated {
  background-color: var(--color-invoice-int-accepted);
  color: #fafafa;
}
.invoice_status.SelfInsured {
  background-color: var(--color-invoice-self-insured);
  color: #fafafa;
}
.invoice_status.SubmittedToLnI,
.invoice_status.SelfInsuredSubmitted,
.invoice_status.SubmittedToPatient,
.invoice_status.SubmittedToProvider,
.invoice_status.SubmitToProvider,
.invoice_status.SubmitToPatient,
.invoice_status.SI-Billed,
.invoice_status.Provider-Billed,
.invoice_status.Patient-Billed,
.invoice_status.Billing,
.invoice_status.LnIResubmit {
  background-color: var(--color-invoice-submitted-to-lni);
  color: #fafafa;
}
.invoice_status.LnIApproved,
.invoice_status.Completed {
  background-color: var(--color-invoice-lni-approved);
  color: #fafafa;
}
.invoice_status.UnderLnIReview,
.invoice_status.LnIRejected,
.invoice_status.IW-Review,
.invoice_status.Uploaded,
.invoice_status.LnIReversal,
.invoice_status.LnIToFix,
.invoice_status.IW-Review,
.invoice_status.PartialPaid {
  background-color: var(--color-invoice-under-lni-review);
  color: #fafafa;
}
.invoice_status.Transferred {
  background-color: var(--color-invoice-transferred);
}
.invoice_status.Paid {
  background-color: var(--color-invoice-paid);
  color: #fafafa;
}
.selectedInterpreter {
  background-color: #56005c;
  color: #fafafa;
}
.interpreterCheckedIn {
  color: green;
  font-weight: bold;
}
.interpreterCheckedOut {
  background-color: burlywood;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 4px;
}
.fieldSpaceTop {
  padding-bottom: 10px;
  height: auto !important;
}
.clientCustomFields {
  height: auto !important;
}
.clientCustomFields .webix_layout_line {
  height: auto !important;
}
.webix_view_pdf_upload {
  float: right;
}
.pdf_icon {
  margin: 8px 14px 0 0;
  width: 14px;
  height: 12px;
}
.interpreter_busy {
  background-color: #f9c922;
}
.interpreter_overtime {
  background-color: #f96622;
}
.resendButton,
.deleteRequestButton,
.checkInButton,
.checkOutButton {
  font-size: 12px;
}
.webixbutton.resendButton,
.webixbutton.deleteRequestButton,
.webixbutton.checkInButton,
.webixbutton.checkOutButton {
  padding: 3px 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #bfbfbf;
  border-radius: 5px;
}
.webixbutton.viewAllButton,
.webixbutton.exportButton {
  padding: 3px 3px;
}
p.title {
  font-size: 40px;
  text-align: center;
}
.dhx_cal_select_menu.dhx_cal_event_selected {
  display: none;
}
.grecaptcha-badge-hidden {
  visibility: hidden;
}
.grecaptcha-badge-top {
  z-index: 99999;
}
.client-phone {
  background-color: #0d6df2;
}
.interprpreter-phone {
  background-color: green;
}
.listTitle {
  font-size: 24px;
  padding-top: 4px;
  text-align: center;
}
.document {
  padding: 4px 6px;
  border-radius: 12px;
  font-weight: bold;
}
.document.New {
  background-color: #005CA1;
  color: #fafafa;
}
.document.Pending {
  background-color: var(--color-documents-pending);
  color: #fafafa;
}
.document.Validated,
.document.ExmValidated {
  background-color: var(--color-documents-validated);
  color: #fafafa;
}
.document.Incomplete,
.document.First,
.document.Second,
.document.ExmRequest {
  background-color: var(--color-documents-incomplete);
  color: #fafafa;
}
.document.Suspended,
.document.Invalid,
.document.Rejected,
.document.Expired {
  background-color: var(--color-documents-expired);
  color: #fafafa;
}
div.list-chat > div > div.webix_selected {
  background-color: #a7ff89;
}
div.list-chat .webix_list_item {
  height: auto !important;
}
.listChatSupport {
  width: 100%;
}
.listChatSupport div.row-chat {
  display: inline-flex;
  width: 100%;
}
.listChatSupport div.row-chat > div {
  width: 33%;
}
div.button_toggle_pressed > div.webix_pressed > button {
  color: #d5d5d5;
  background-color: var(--color-theme) !important;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.5);
}
div.webix_selected.oldChat {
  background-color: yellow !important;
}
.email-chat-support input {
  color: #0888B1;
  cursor: pointer;
}
.row-list-chat .title {
  font-weight: bold;
  padding-right: 5px;
  display: inline-block;
}
.row-list-chat .field {
  padding-right: 40px;
  display: inline-block;
}
.top-login {
  background: #e9e9e9;
  border: 1px solid #e9e9e9;
}
.data-notification {
  height: auto !important;
  display: inline-block;
  /*bottom: 0px;
    position: absolute;
    max-height: 200px;
    overflow-y: auto;*/
}
.layout-notification {
  margin-bottom: 10px;
  background: #e9e9e9;
  border: 1px solid #e9e9e9;
  position: relative;
  display: block;
}
.data-notification > div.webix_view {
  height: auto !important;
  border: 0px solid #664d03;
  border-left: 1px solid #fff3cd !important;
}
.data-notification > div.webix_view > div.webix_template {
  padding: 20px;
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.top-notification {
  height: 40px !important;
}
.top-notification > div {
  color: #664d03 !important;
  background-color: #fff3cd !important;
  border-color: #ffecb5 !important;
}
.top-notification > div.webix_template {
  padding: 0px 0px !important;
}
#close-notification {
  float: right;
  display: flex;
  background: #fff3cd;
  width: 100%;
}
#close-notification button {
  height: 25px;
  width: 25px;
  border-radius: 45px;
  font-size: 35px;
  line-height: 23px;
  font-size: 18px;
  color: #664d03;
  float: right;
  background: #fff3cd;
}
#close-notification > div.title,
div.close {
  /*display:inline;    */
}
#close-notification > div.title {
  margin-top: 8px;
  font-size: 1.17em;
  font-weight: bold;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.content-notification {
  overflow-y: auto;
}
.dhx_cal_event_clear.dhx_cal_event_line_start.dhx_cal_event_line_end {
  padding: 5px;
}
.app_type_ime {
  color: #990000;
}
.case_error {
  background-color: #fbff0044 !important;
}
.webix_el_mySearch {
  font-size: 14px;
}
.webix_el_mySearch .webix_el_box {
  position: relative;
}
.webix_el_mySearch .webix_el_box {
  color: #475466;
  position: relative;
}
.webix_el_mySearch input {
  border-radius: 2px;
}
.webix_el_mySearch .webix_inp_static {
  color: #475466;
  padding-right: 24px;
  background: #ffffff;
  border-color: #ccd7e6;
  -webkit-appearance: none;
}
.webix_el_mySearch input {
  font-size: 14px;
  height: 100%;
  padding: 0px 12px;
  border: 1px solid #dadee0;
  color: #475466;
  background: #ffffff;
  border-color: #ccd7e6;
  -webkit-appearance: none;
  border-radius: 0;
}
.webix_el_mySearch span.webix_input_icon {
  width: 24px;
  padding-left: 4px;
}
.webix_el_mySearch .webix_input_icon {
  right: 2px;
  background: transparent;
  z-index: 1;
  position: absolute;
}
.webix_el_myText input {
  border-radius: 2px;
}
.webix_el_myText input {
  font-size: 14px;
  height: 100%;
  padding: 0px 12px;
  border: 1px solid #dadee0;
  color: #475466;
  background: #ffffff;
  border-color: #ccd7e6;
  -webkit-appearance: none;
  border-radius: 0;
}
.dataCommunications > div.webix_ss_body > div div.webix_dtable_subrow {
  text-align: left;
}
.webix_ck_body {
  overflow-y: scroll;
}
.webix_ck_body > .ck-editor__editable {
  min-height: 400px;
}
.webix_ck_body {
  border-left: 1px solid #dadee0;
  border-right: 1px solid #dadee0;
}
.menu-templates .webix_scroll_cont a.webix_list_item {
  float: right;
  background-color: #fff;
  color: #475466;
}
a[webix_l_id='template_email_editor'],
a[webix_l_id='overwrite_email_editor'],
a[webix_l_id='delete_email_editor'] {
  color: #808080;
}
a[webix_l_id='template_email_editor']:hover,
a[webix_l_id='overwrite_email_editor']:hover,
a[webix_l_id='delete_email_editor'] {
  background-color: #ffffff !important;
  cursor: default !important;
}
a[webix_l_id='template_description_email_editor'],
a[webix_l_id='overwrite_description_email_editor'],
a[webix_l_id='delete_description_email_editor'] {
  color: #d3d3d3;
  margin-left: 30px;
}
a[webix_l_id*='template_id_'],
a[webix_l_id*='overwrite_id_'],
a[webix_l_id*='delete_id_'] {
  padding-left: 40px;
}
a[webix_l_id='template_description_email_editor']:hover,
a[webix_l_id='overwrite_description_email_editor']:hover,
a[webix_l_id='delete_description_email_editor']:hover {
  background-color: #ffffff !important;
  cursor: default !important;
}
a[webix_l_id='overwrite_save_email_editor'],
a[webix_l_id='save_draft_email_editor'],
a[webix_l_id='delete_template_email_editor'] {
  border-top: 1px solid #475466 !important;
}
.webix_slider_title {
  text-align: left;
  margin-left: 10px;
}
.colon_template {
  text-align: center;
  user-select: none;
}
.colon_template .webix_template {
  padding: 4px 0px;
}
.colon {
  font-size: 30px;
  line-height: 28px;
}
.day_part.webix_el_label .webix_el_box {
  text-align: center;
  color: #aaa;
  cursor: pointer;
  user-select: none;
}
.webix_slider_title {
  text-align: left;
  margin-left: 10px;
}
.colon_template {
  text-align: center;
  user-select: none;
}
.colon_template .webix_template {
  padding: 4px 0px;
}
.colon {
  font-size: 30px;
  line-height: 28px;
}
.day_part.webix_el_label .webix_el_box {
  text-align: center;
  color: #aaa;
  cursor: pointer;
  user-select: none;
}
.button_icon_voucher {
  width: 30px !important;
}
.button_icon_voucher > div {
  width: 30px !important;
}
.button_icon_voucher > div > button {
  width: 30px !important;
}
.layout-timesliders {
  text-align: center;
}
.text_center > div > input {
  text-align: center !important;
}
.switch_slider_date > div.webix_el_box > div.webix_switch_box {
  background-color: #ffe9bb;
  color: #ffffff;
}
.alarm-qa {
  background-color: #fff2d6 !important;
  color: #030303;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.switch_slider_date_custom > div.webix_el_box > div.webix_switch_box {
  color: #ffffff;
  background-color: var(--color-theme);
}
.switch_slider_date_custom > div.webix_el_box > div.webix_switch_box.webix_switch_on {
  color: var(--color-theme);
  background-color: #ffffff;
}
.heightAuto {
  height: 100% !important;
}
.webix_view.webix_window.webix_popup.webix_menu {
  /*
    overflow-y: scroll;
    height: -moz-available !important;
    height: -webkit-fill-available !important;
    /* Mozilla-based browsers will ignore this. */
  height: fill-available !important;
}
.webix_el_box.webix_disabled_box {
  color: #94a1b3;
}
.message-email-ckeditor,
.message-email-ckeditor div.webix_ck_body {
  min-height: 400px;
}
.multiComboEmail .webix_el_box {
  height: 30px !important;
}
.checkInOutToken .webix_popup_text {
  font-size: x-large;
}
.multiComboEmailLayout li.webix_multicombo_value {
  margin-bottom: 3px;
  min-height: 30px;
  line-height: unset;
  padding: 0 12px 0 12px;
}
.multiComboEmailLayout li.webix_multicombo_value img {
  margin-top: 2px;
  margin-right: 5px;
}
.multiComboEmailLayout li.webix_multicombo_value span.webix_multicombo_text {
  display: inline-flex;
  padding-top: 0px;
  margin-top: 4px;
}
.multiComboEmailLayout span.webix_multicombo_delete:after {
  line-height: 34px;
}
.multiComboEmailLayout .detail {
  /*width: 100%;*/
  height: auto;
  padding: 1%;
  display: flex;
}
.multiComboEmailLayout .detail .image {
  /*
    margin-left: 2%;
    float: left;
    height: 40px;
    width: 40px;*/
  padding-top: 3px;
}
.multiComboEmailLayout .detail .description {
  padding-top: 3px;
  margin-left: 5px;
}
.errorMessage {
  color: #ca0000;
}
.warningMessage {
  color: #fd8700;
}
.myUploader {
  border: 1px solid #dadee0;
  display: contents;
}
.myUploader .overall {
  height: 100%;
  line-height: 26px;
}
.myUploader div.webix_scroll_cont {
  margin-left: 20px;
}
.myUploader div.webix_list_item {
  margin-right: 20px;
}
.myUploader .name {
  height: 100%;
  float: left;
  overflow: hidden;
}
.myUploader .size {
  padding: 0 10px;
  width: 100px;
  text-align: right;
  float: right;
}
.myUploader .remove_file {
  float: right;
  width: 15px;
  padding-left: 10px;
}
.myUploader .status {
  float: right;
  position: relative;
  margin-top: 4px;
  width: 80px;
  height: 16px;
  line-height: 16px;
  border: 1px solid #A4BED4;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.myUploader .progress {
  height: 100%;
  position: absolute;
  background-color: #b8e6ff;
}
.myUploader .message {
  z-index: 1;
  width: 100%;
  text-align: center;
  position: absolute;
}
.myUploader .message.error {
  color: #e83b3b;
}
.list-attachments {
  display: inline-flex;
  list-style-type: none;
}
.list-attachments a {
  text-decoration: none;
  color: #475466;
}
.list-attachments li {
  margin-right: 30px;
}
.list-attachments i {
  font-size: 20px;
}
div.attachments {
  font-size: 16px;
  font-weight: bold;
}
.popSubmenuTemplate {
  height: 100vh !important;
  overflow-y: scroll;
}
.bottomTextRed {
  font-size: 10px;
  color: blue;
}
.popup-signature {
  border-width: 1px 1px !important;
}
.backgroundRed {
  background-color: #ff0000;
}
.backgroundGreen {
  background-color: #00ff00;
}
.backgroundYellow {
  background-color: #ffff00;
}
.cropped_text .webix_dataview_item {
  text-overflow: ellipsis;
}
.lds-dual-ring {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 12px;
  height: 12px;
  margin: 8px 2px;
  border-radius: 50%;
  border: 2px solid #475466;
  border-color: #475466 transparent #475466 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tilesQuickAccess {
  color: #fde5eb;
  background-color: #ee224c;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tilesQuickAccess:hover {
  background-color: #c22142;
}
.new-voucher {
  border-left: 1px solid #dadee0;
  border-right: 1px solid #dadee0;
  border-bottom: 1px solid #dadee0;
  border-top: 0px;
  border-width: 1px !important;
}
.height-auto {
  height: auto !important;
}
.contractSelection {
  border-width: 1px 1px !important;
}
.webix_timeboard .webix_el_box input {
  padding: 0px 10px;
}

