:root {
  --body-margin-top: 120px;
  --basic-border-radius: 0.05rem;
  --border-radius-basic: 7px;
  --border-radius-large: 15px;
  --border-radius-small: 4px;
  --table-border-radius: 0;
  --top-panel-height: 120px;
  --main-menu-width: 190px;
  --main-menu-height: 45px;
  --main-menu-item-padding: 0.85rem 1rem;
  --footer-height: 18.5px;
  --input-padding: 6px;
  --input-height: 25px;
  --input-height-line-height: 24px;
  --form-input-padding: 6px;
  --form-input-height: 30px;
  --input-radio-height: 12px;
  --input-border-radius: 3px;
  --form-entryForm-padding: 35px 35px 40px 35px;
  --div-entryForm-margin-top: 0px;
  --spacing: 10px;
  --table-spacing: 0 var(--spacing);
  --table-box-shadow: unset;
  --table-paginator-padding-top: 0px;
  --table-paginator-width-button: 40px;
  --table-paginator-input-padding: 10px;
  --table-thead-td-padding: 10px;
  --table-input-padding: 4px;
  --table-thead-td-margin-bottom: 15px;
  --table-tbody-td-padding: 6px;
  --table-tbody-td-height: 32px;
  --table-tbody-tr-shadow: 0 0 4px;
}
:root .internal-size {
  --top-panel-height: 75px;
  --all-top-components-height: 75px;
}
:root {
  --menu-show-hide-transition: 0.5s ease-out, opacity 0.5s ease-out, visibility 0s 0.5s, height 0s 0.5s;
}
/*
HTML Template
     <div class="hamburger-button">
          <div class="line"></div>
          <div class="line"></div>
          <div class="line"></div>
     </div>
*/
.hamburger-button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 18px;
  cursor: pointer;
}
.hamburger-button .line {
  width: 20px;
  height: 2px;
  background-color: var(--gray-text-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-button .line:first-child {
  transform-origin: top left;
}
.hamburger-button .line:last-child {
  transform-origin: bottom left;
}
.hamburger-button.active .line:first-child {
  transform: rotate(45deg) translate(0px, -5px);
}
.hamburger-button.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger-button.active .line:last-child {
  transform: rotate(-45deg) translate(4px, 0px);
}
.hamburger-button:hover .line {
  height: 2.5px;
}
button,
input[type="button"],
input[type="submit"],
input[type="file"]::file-selector-button {
  color: var(--button-text-color);
  background: var(--button-background);
  border-color: var(--button-border-color);
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--basic-border-radius);
  transition: color 0.15s ease-in-out, background 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
button:hover:not(.transparent),
input[type="button"]:hover:not(.transparent),
input[type="submit"]:hover:not(.transparent),
input[type="file"]::file-selector-button:hover:not(.transparent) {
  background: var(--button-hover-background) !important;
  border-color: var(--button-hover-border-color) !important;
  box-shadow: var(--button-hover-box-shadow-border);
}
button.no-background,
input[type="button"].no-background,
input[type="submit"].no-background,
input[type="file"]::file-selector-button.no-background {
  background: transparent;
  color: var(--button-background-transparent-color);
}
button.no-background:hover,
input[type="button"].no-background:hover,
input[type="submit"].no-background:hover,
input[type="file"]::file-selector-button.no-background:hover {
  background: transparent !important;
  color: var(--button-background-transparent-color);
}
button.formSubmitDuplicate,
button.formSubmitUpdate {
  color: white;
}
button.transparent {
  background: var(--button-background-transparent-background);
  color: var(--button-background-transparent-color);
  border: 0 !important;
}
button.transparent:hover {
  background: var(--button-background-transparent-background);
  color: var(--button-text-transparent-color-hover);
}
button:disabled,
button[disabled] {
  border: 1px solid var(--button-disabled-border-color);
  background-color: var(--button-disabled-background) !important;
  color: var(--button-disabled-text-color);
}
.dropdown {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.dropdown:not(.active) .dropdown-content {
  display: none;
}
.dropdown.active > button:not(.transparent),
.dropdown.hovered > button:not(.transparent) {
  background: var(--button-hover-background);
  color: var(--button-hover-color);
}
.dropdown.active > button.transparent,
.dropdown.hovered > button.transparent {
  background: var(--button-background-transparent-background);
  color: var(--button-text-transparent-color-hover);
}
.dropdown.active .dropdown-content,
.dropdown.hovered .dropdown-content {
  display: block;
}
.dropdown .dropdown-content {
  position: absolute;
  z-index: 1;
  top: 100%;
  background-color: var(--background-color);
  min-width: 160px;
  box-shadow: 0 1px 12px 3px rgba(33, 33, 33, 0.75);
  padding: 12px 16px;
  overflow: auto;
  max-height: 200px;
  overflow-y: auto;
}
.dropdown .dropdown-content.no-padding {
  padding: 0;
}
.dropdown .dropdown-content .dropdown-item {
  display: block;
  width: 100%;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.15s ease-in-out;
  cursor: pointer;
  text-align: left;
  min-width: 5rem !important;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 12px 12px 0.5rem;
}
.dropdown .dropdown-content .dropdown-item i {
  margin-right: 3px;
}
.dropdown .dropdown-content .dropdown-item:hover {
  color: var(--primary-color);
  background-color: var(--dropdown-item-background-hover);
}
.dropdown-content {
  left: 0;
  right: auto;
}
.dropdown-content:before {
  content: '';
  position: absolute;
  left: 0;
  top: -8px;
  border: 8px solid transparent;
  border-bottom-color: var(--border-color);
}
@media (min-width: 768px) {
  .dropdown-content {
    left: auto;
    right: 0;
  }
  .dropdown-content:before {
    left: auto;
    right: 0;
  }
}
.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection__clear {
  margin-left: 5px;
  color: #b8473e;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  background-color: var(--select2-bg) !important;
  border: 1px solid var(--select2-border) !important;
  border-radius: 4px;
  color: var(--select2-text) !important;
}
.select2-container .select2-selection__rendered {
  color: var(--select2-text) !important;
}
.select2-container.select2-container--disabled .select2-selection {
  background-color: var(--select2-disabled) !important;
}
.select2-container .select2-dropdown {
  background-color: var(--select2-bg);
  border: 1px solid var(--select2-border);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.select2-container .select2-search--dropdown .select2-search__field {
  background-color: var(--select2-search-bg) !important;
  border: 1px solid var(--select2-border) !important;
  color: var(--select2-text);
  padding: 6px;
}
.select2-container .select2-results__option {
  padding: 8px 12px;
  color: var(--select2-text);
  text-align: left;
}
.select2-container .select2-results__option--highlighted[aria-selected],
.select2-container .select2-results__option[aria-selected=true] {
  background-color: var(--select2-hover-bg) !important;
  color: #ffffff;
}
.select2-container .select2-results__option[aria-selected=true] {
  background-color: var(--select2-selected-bg);
  color: #ffffff;
}
.select2-container .select2-results__option[aria-disabled=true] {
  color: var(--select2-disabled);
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: var(--select2-choice-bg);
  border: 1px solid var(--select2-choice-border);
  border-radius: 3px;
  color: var(--select2-text);
  padding: 2px 6px;
  margin: 4px 4px 4px 0;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove {
  color: var(--select2-remove-color);
  margin-right: 4px;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #ffffff;
}
.select2-container .select2-selection__placeholder {
  color: var(--select2-placeholder);
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: var(--select2-placeholder) transparent transparent transparent;
}
.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--select2-placeholder) transparent;
}
.select2-container.select2-container--focus .select2-selection--single,
.select2-container.select2-container--focus .select2-selection--multiple {
  border-color: var(--select2-focus-border);
  outline: none;
}
.select2-container .select2-results__message {
  color: var(--select2-placeholder);
}
.select2-container .select2-loading {
  opacity: 0.5;
  pointer-events: none;
}
.select2-container .select2-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.message-alert {
  background: rgba(255, 255, 255, 0.05);
  color: var(--message-text);
  padding: 1rem;
  border-left: 4px solid;
  border-radius: var(--basic-border-radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: system-ui, sans-serif;
}
.message-alert:empty {
  display: none;
}
.message-alert::before {
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 10px;
}
.message-alert.error {
  border-color: var(--message-error);
  background: rgba(255, 82, 82, 0.1);
}
.message-alert.error::before {
  content: "×";
  color: var(--message-error);
}
.message-alert.warning {
  border-color: var(--message-warning);
  background: rgba(255, 183, 77, 0.1);
}
.message-alert.warning::before {
  content: "!";
}
.message-alert.info {
  border-color: var(--message-info);
  background: rgba(79, 195, 247, 0.1);
}
.message-alert.info::before {
  content: "i";
  color: #45abda;
}
.message-alert.success {
  border-color: var(--message-success);
  background: rgba(129, 199, 132, 0.1);
}
.message-alert.success::before {
  content: "✓";
}
:root {
  --popup-title-text: #2EDDF6;
  --popup-title-text-hover: #E8F0F1;
  --popup-header-text: #E8F0F1;
  --popup-basic-text: #E8F0F1;
  --popup-border-color: #32404F;
  --popup-background-color: #252F3A;
}
.swal2-popup {
  border-radius: 4px;
  border: 4px solid var(--popup-border-color);
  background: var(--popup-background-color) !important;
  padding-bottom: 0;
}
.swal2-popup .swal2-title {
  background-color: #32404F;
  min-height: 80px;
  color: var(--popup-title-text) !important;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: left;
  padding: 25px 30px;
}
.swal2-popup .swal2-close {
  color: var(--popup-title-text) !important;
  font-size: 60px;
  font-weight: 100;
  padding: 0;
  left: 20px;
  position: relative;
}
.swal2-popup .swal2-close:hover {
  transform: scale(1.4);
  color: var(--popup-title-text-hover) !important;
}
.swal2-popup .swal2-icon {
  margin: 40px auto;
}
.swal2-popup .swal2-loader {
  margin: 20px auto;
}
.swal2-popup .swal2-html-container {
  padding: 40px 40px 40px 50px;
  margin: 0;
  background-color: var(--popup-background-color);
}
.swal2-popup .swal2-html-container h1,
.swal2-popup .swal2-html-container h2,
.swal2-popup .swal2-html-container h3,
.swal2-popup .swal2-html-container h4,
.swal2-popup .swal2-html-container h5,
.swal2-popup .swal2-html-container h6 {
  color: var(--popup-header-text);
  font-family: "Open Sans";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.swal2-popup .swal2-input-label {
  padding: 0 50px 0 40px;
}
.swal2-popup .swal2-actions {
  width: 100%;
  background-color: var(--popup-background-color);
  padding: 0 0 12px 0;
  margin: 0;
}
.swal2-popup .swal2-actions > button.swal2-confirm {
  background-color: #2EDDF6 !important;
  color: #2D3946 !important;
}
.swal2-popup .swal2-actions > button.swal2-confirm:hover {
  background-color: #E8F0F1 !important;
}
.swal2-popup .swal2-actions > button.swal2-deny {
  background-color: #E34999;
  color: #FFF;
}
.swal2-popup .swal2-actions > button.swal2-deny:hover {
  background-color: #E8F0F1;
  color: #2D3946;
}
.swal2-popup .swal2-actions > button.swal2-deny:focus {
  border-color: #E34999;
}
.swal2-popup .swal2-actions > button.swal2-cancel {
  background-color: #1D4E68;
  color: #E8F0F1;
}
.swal2-popup .swal2-actions > button.swal2-cancel:hover {
  background-color: #E8F0F1;
  color: #2D3946;
}
.swal2-popup .swal2-footer {
  margin: 0;
}
.swal2-popup #swal2-textarea {
  margin-bottom: 20px;
}
.icon-input-wrapper {
  box-shadow: 0 4px 16px #32383f1a;
  border-radius: 0.75rem;
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.icon-input-wrapper .icon {
  line-height: 1.5;
  word-wrap: break-word;
  box-sizing: border-box;
  display: flex;
  border-bottom-left-radius: 0.75rem;
  border-top-left-radius: 0.75rem;
  background-color: var(--icon-input-background);
  color: var(--icon-input-color);
  border: 1px solid var(--icon-input-border-color);
  padding: 0 10px;
  align-content: center;
  flex-wrap: wrap;
}
.icon-input-wrapper input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 34.4px !important;
}
.alert {
  margin-top: 20px;
  font-size: 0.8rem;
  padding: 10px 18px;
}
.alert.warning {
  background-color: var(--alert-warning-message-background);
  border: 1px solid var(--alert-warning-message-border-color);
  color: var(--alert-warning-message-color);
}
.closable-alert {
  position: relative;
  width: auto;
  height: auto;
  padding: 10px;
  margin: 10px;
  line-height: 1.8;
  border-radius: 5px;
  color: white;
}
.closable-alert:empty {
  display: none;
}
.closable-alert.info {
  background-color: #141A30;
  border: 1px solid #141d3e;
}
.closable-alert.success {
  background-color: #1AC99B;
  border: 1px solid #00ffb9;
}
.closable-alert.notice {
  background-color: #0A75ED;
  border: 1px solid #007bff;
}
.closable-alert.warning {
  background-color: #F3A600;
  border: 1px solid #d1a651;
}
.closable-alert.error {
  background-color: #E41948;
  border: 1px solid #e80e40;
}
.swal2-container .swal2-confirm {
  background: var(--button-background) !important;
}
.swal2-container .swal2-confirm:hover {
  background: var(--button-darker-background-hover) !important;
}
.swal2-container {
  z-index: 1000;
}
.swal2-container .swal2-loader {
  border-color: var(--swal-popup-loader-color) rgba(0, 0, 0, 0) var(--swal-popup-loader-color) rgba(0, 0, 0, 0);
}
.swal2-container .swal2-popup {
  background: var(--swal-popup-background);
  color: var(--swal-popup-text-color);
}
.swal2-container .swal2-close {
  border: 0;
  box-shadow: none !important;
}
.swal2-container .swal2-close:hover {
  border: 0;
  color: var(--button-background);
  border: none;
}
.swal2-container .swal2-validation-message {
  background: none;
  color: #DDDDDD;
}
.swal2-container .swal2-textarea {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--swal-input-background);
  color: var(--swal-input-color);
}
.swal2-container .swal2-textarea::placeholder {
  color: var(--swal-input-placeholder-color);
}
/* Set the dark theme for the autocomplete dropdown */
.ui-autocomplete {
  background-color: var(--input-background-color);
  /* Dark background */
  color: var(--input-color);
  /* White text color */
  border: 0;
  max-height: 200px;
  /* Limit the height of the dropdown */
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  /* Ensure it appears above other elements */
  font-family: Arial, sans-serif;
  /* Optional font */
  font-size: 14px;
  /* Font size */
  /* Style individual list items */
}
.ui-autocomplete li {
  cursor: pointer;
  /* Pointer cursor for better UX */
  border-bottom: 1px solid var(--input-border-color);
  /* Dividing line between items */
  font-size: 1.1rem;
  /* Highlight the text matching the query */
}
.ui-autocomplete li span {
  color: var(--secondary-color);
  /* Bright blue for highlighted text */
  font-weight: bold;
  /* Make the highlighted portion bold */
  background-color: transparent;
  /* Keep background transparent for spans */
}
.ui-autocomplete .ui-state-active {
  background: var(--swal-popup-background) !important;
  /* Slightly lighter dark gray for hover */
  color: var(--input-color) !important;
  border: 0 !important;
}
.paginator-wrapper {
  display: flex;
}
.paginator-wrapper .paginator {
  color: var(--paginator-text-color);
  background: var(--paginator-background);
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  margin: 5px auto;
  font-weight: 500;
  font-size: 0.9rem;
  border: var(--paginator-border);
}
.paginator-wrapper .paginator > a {
  text-decoration: none;
  color: var(--button-text-color);
  background: var(--button-background);
  height: calc(var(--form-input-height) - 2px);
  padding: var(--form-input-padding);
  border-radius: var(--border-radius-basic);
  margin: 0 3px;
  width: var(--table-paginator-width-button);
  text-align: center;
  display: inline-block;
  position: relative;
  top: 2px;
  transition: color 0.15s ease-in-out, background 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.paginator-wrapper .paginator > a:hover {
  color: var(--button-hover-color);
  background: var(--button-hover-background);
  box-shadow: var(--button-hover-box-shadow-border);
}
.paginator-wrapper .paginator > a:first-child,
.paginator-wrapper .paginator > a:nth-child(2) {
  margin-left: 0;
}
.paginator-wrapper .paginator .tooltip-info {
  font-size: 14px;
  display: none;
}
.paginator-wrapper .paginator .disabledlink {
  opacity: 0.3;
  cursor: auto;
}
.paginator-wrapper .paginator .page {
  display: none;
}
.paginator-wrapper .paginator .ofpage {
  margin-right: 20px;
}
.paginator-wrapper .paginator input,
.paginator-wrapper .paginator select {
  width: 42px;
  padding: var(--form-input-padding);
  height: var(--form-input-height);
  min-width: 82px;
  background: var(--input-background-color);
  color: var(--text-color);
  border-color: var(--border-color);
  border-radius: 6px;
}
.table-holder > .paginator-wrapper {
  display: flex;
  position: sticky;
  max-width: calc(100vw) !important;
  justify-content: unset;
  left: 230px;
  background: var(--body-background-color);
  width: calc(100% + 80px);
  margin: 0 0 0 -20px;
  z-index: 10;
  padding: var(--table-paginator-padding-top) 0 0 20px;
  box-shadow: 30px 0 0 var(--background-color);
}
body .loaderText-loading {
  font-size: 0;
  background-color: black !important;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .loaderText-loading img {
  display: none;
}
body .loaderText-loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border: 4px solid var(--text-color);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}
body .loaderText-loading:after {
  content: "Loading...";
  display: block;
  position: fixed;
  top: calc(50% + 50px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-color);
  font-size: 1.5rem;
}
body table {
  margin: auto;
  border-radius: var(--border-radius-basic);
}
body table tbody td button:has(.n-btn) {
  font-size: 1.4rem;
  max-height: none;
  border-radius: 9px;
  padding: 2px 7px;
}
body table tbody td button:has(.edit-button) {
  background: #E7F0F1;
  color: #1C4E68;
}
body table tbody td button:has(.delete-button) {
  background: #E34A99;
  color: #E7F0F1;
}
body table tbody td button:has(.icon-check-circle) {
  background: #54e34a;
  color: #0b2939;
}
body table tbody td button:has(.icon-pen-square) {
  background: #e3bf4a;
  color: #0b2939;
}
body table .column-right {
  text-align: right;
}
body table.engine-grid {
  font-weight: 400;
  border-top-width: 0;
  border-spacing: var(--table-spacing);
  font-size: 14px;
}
body table.engine-grid tr.error-row {
  background-color: #ff000017;
  box-shadow: inset 19px 0 0px -15px red;
}
body table.engine-grid.theme-size-compact {
  border-top-width: 0;
  border-spacing: 0;
}
body table.engine-grid.theme-size-compact tr th,
body table.engine-grid.theme-size-compact tr td {
  padding: 13px !important;
  font-size: 14px;
  min-width: 50px;
}
body table.engine-grid.theme-size-compact > thead tr th {
  border-bottom: 1px solid var(--table-border-color);
}
body table.engine-grid.theme-size-compact > tbody tr {
  box-shadow: none !important;
}
body table.engine-grid.theme-size-compact > tbody tr td {
  border-bottom: 1px solid var(--table-border-color);
  border-radius: 0 !important;
}
body table.engine-grid.theme-size-compact.small-padding tr th,
body table.engine-grid.theme-size-compact.small-padding td {
  padding: 9px !important;
}
body table.engine-grid .advancedFilter {
  position: relative;
}
body table.engine-grid .advancedFilter > span {
  position: absolute;
  top: 6px;
  left: 10px;
}
body table.engine-grid .advancedFilter > input {
  padding-left: 40px;
}
body table.engine-grid .advanced-filter-input + br,
body table.engine-grid .advancedFilter + br {
  display: none;
}
body table.engine-grid .advanced-filter-input + br + .advanced-filter-input,
body table.engine-grid .advanced-filter-input + br + .advancedFilter,
body table.engine-grid .advancedFilter + br + .advanced-filter-input,
body table.engine-grid .advancedFilter + br + .advancedFilter {
  margin-top: 5px;
}
body table.engine-grid.responsiveTable {
  width: 100%;
  table-layout: fixed;
  max-width: inherit;
}
body table.engine-grid.no-fullscreen {
  min-width: unset !important;
}
body table.engine-grid.no-fullscreen > thead tr:not(.gridCellRow) th {
  top: unset;
}
body table.engine-grid.loading {
  opacity: 0.5;
  position: relative;
}
body table.engine-grid.loading * {
  pointer-events: none;
}
body table.engine-grid.loading:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1ce";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  font-size: 60px;
  position: absolute;
  top: 10px;
  left: calc(50% - 30px);
  z-index: 2;
}
body table.engine-grid td.rightBorder,
body table.engine-grid th.rightBorder {
  border-right: var(--table-border-color);
}
body table.engine-grid td.expandedRow {
  max-width: fit-content !important;
}
body table.engine-grid th {
  max-width: 80px;
}
body table.engine-grid .gridAjaxEditMessage span {
  display: none;
}
body table.engine-grid.engine-grid-max-width > tbody td,
body table.engine-grid.engine-grid-max-width > thead th {
  max-width: 130px;
}
body table.engine-grid > tbody td,
body table.engine-grid > thead th,
body table.engine-grid > tfoot td {
  padding: var(--table-tbody-td-padding);
  vertical-align: top;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body table.engine-grid > tbody td button:not(.classic-button),
body table.engine-grid > thead th button:not(.classic-button),
body table.engine-grid > tfoot td button:not(.classic-button) {
  letter-spacing: 0;
}
body table.engine-grid > tbody td button:not(.classic-button):hover,
body table.engine-grid > thead th button:not(.classic-button):hover,
body table.engine-grid > tfoot td button:not(.classic-button):hover {
  color: var(--href-hover-color);
}
body table.engine-grid > tbody td button:not(.classic-button).button-disabled,
body table.engine-grid > thead th button:not(.classic-button).button-disabled,
body table.engine-grid > tfoot td button:not(.classic-button).button-disabled {
  filter: contrast(0.3);
  cursor: unset;
}
body table.engine-grid > tbody td.gridNumber,
body table.engine-grid > thead th.gridNumber,
body table.engine-grid > tfoot td.gridNumber {
  text-align: right;
}
body table.engine-grid > tbody td.gridNumber input,
body table.engine-grid > thead th.gridNumber input,
body table.engine-grid > tfoot td.gridNumber input {
  text-align: right;
}
body table.engine-grid > tbody td.gridCellButtons,
body table.engine-grid > thead th.gridCellButtons,
body table.engine-grid > tfoot td.gridCellButtons {
  white-space: nowrap;
  outline: none;
  max-width: none;
  padding: 0 5px;
  text-align: left !important;
}
body table.engine-grid > tbody td .gridActionButton:not(.classic-button):hover,
body table.engine-grid > thead th .gridActionButton:not(.classic-button):hover,
body table.engine-grid > tfoot td .gridActionButton:not(.classic-button):hover {
  color: var(--href-hover-color);
}
body table.engine-grid > tbody td .gridActionButton .icon,
body table.engine-grid > thead th .gridActionButton .icon,
body table.engine-grid > tfoot td .gridActionButton .icon {
  margin-top: 1px;
  vertical-align: top;
  font-size: 16px;
}
body table.engine-grid > tbody td .gridActionButton:active .icon,
body table.engine-grid > thead th .gridActionButton:active .icon,
body table.engine-grid > tfoot td .gridActionButton:active .icon {
  margin-top: 3px;
  margin-bottom: -2px;
}
body table.engine-grid > thead > tr > th {
  padding-top: 15px;
}
body table.engine-grid > thead tr:not(.gridCellRow) th,
body table.engine-grid > tfoot tr:not(.gridCellRow) th {
  position: sticky;
  z-index: 2;
  padding: var(--table-thead-td-padding);
  font-size: 13px;
  color: var(--table-header-color);
}
body table.engine-grid > thead tr:not(.gridCellRow) th:first-child,
body table.engine-grid > tfoot tr:not(.gridCellRow) th:first-child {
  z-index: 3;
}
body table.engine-grid > thead tr:not(.gridCellRow) th.centered,
body table.engine-grid > tfoot tr:not(.gridCellRow) th.centered {
  text-align: center;
}
body table.engine-grid > thead tr:not(.gridCellRow) th.gridNumber,
body table.engine-grid > tfoot tr:not(.gridCellRow) th.gridNumber {
  text-align: left;
}
body table.engine-grid > thead tr:not(.gridCellRow) th.focused,
body table.engine-grid > tfoot tr:not(.gridCellRow) th.focused {
  z-index: 4;
}
body table.engine-grid > thead tr.gridCellRow th.gridCellSummary,
body table.engine-grid > tfoot tr.gridCellRow th.gridCellSummary {
  z-index: 1;
}
body table.engine-grid > thead tr th,
body table.engine-grid > tfoot tr th {
  position: relative;
  text-align: left;
  padding: var(--table-thead-td-padding);
  vertical-align: bottom;
  font-weight: normal;
  top: 0;
  background-color: var(--table-header-background);
  border: 0;
  border-right: 1px solid var(--table-border-color);
  min-width: 110px;
}
body table.engine-grid > thead tr th.gridHeaderCellLast,
body table.engine-grid > tfoot tr th.gridHeaderCellLast {
  text-align: center;
  vertical-align: bottom;
}
body table.engine-grid > thead tr th.gridHeaderCellLast .header-title,
body table.engine-grid > tfoot tr th.gridHeaderCellLast .header-title {
  display: none;
}
body table.engine-grid > thead tr th.sortcol .header-title-text,
body table.engine-grid > tfoot tr th.sortcol .header-title-text {
  max-width: calc(100% - 15px);
}
body table.engine-grid > thead tr th .chzn-container,
body table.engine-grid > tfoot tr th .chzn-container {
  width: 100% !important;
  background: var(--table-input-background-color) !important;
  border-radius: var(--basic-border-radius);
}
body table.engine-grid > thead tr th .chzn-container > a,
body table.engine-grid > tfoot tr th .chzn-container > a {
  background: var(--table-input-background-color) !important;
  border: 0;
}
body table.engine-grid > thead tr th .chzn-container .chzn-drop,
body table.engine-grid > tfoot tr th .chzn-container .chzn-drop {
  max-width: fit-content;
  margin: 0 -20px 0 0;
  background: var(--table-input-background-color) !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-choices,
body table.engine-grid > tfoot tr th .chzn-container .chzn-choices {
  background: var(--table-input-background-color) !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-choices li,
body table.engine-grid > tfoot tr th .chzn-container .chzn-choices li {
  width: 100% !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-results,
body table.engine-grid > tfoot tr th .chzn-container .chzn-results {
  max-height: 70vh !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-single-plus,
body table.engine-grid > tfoot tr th .chzn-container .chzn-single-plus {
  height: 21px;
}
body table.engine-grid > thead tr th .chzn-container .chzn-single-plus,
body table.engine-grid > tfoot tr th .chzn-container .chzn-single-plus,
body table.engine-grid > thead tr th .chzn-container .chzn-default,
body table.engine-grid > tfoot tr th .chzn-container .chzn-default {
  background: var(--table-input-background-color) !important;
  border-color: var(--table-border-color);
}
body table.engine-grid > thead tr th input,
body table.engine-grid > tfoot tr th input,
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select) {
  min-width: 50px;
  width: calc(100% - .20rem) !important;
  background-color: var(--table-input-background-color);
  color: var(--table-input-color);
  border: 0 solid var(--body-background-color);
  border-radius: 7px;
  padding: var(--table-input-padding);
  display: block;
}
body table.engine-grid > thead tr th input:nth-child(2),
body table.engine-grid > tfoot tr th input:nth-child(2),
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(2),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(2),
body table.engine-grid > thead tr th div.react-select:nth-child(2),
body table.engine-grid > tfoot tr th div.react-select:nth-child(2),
body table.engine-grid > thead tr th input:nth-child(4),
body table.engine-grid > tfoot tr th input:nth-child(4),
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(4),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(4),
body table.engine-grid > thead tr th div.react-select:nth-child(4),
body table.engine-grid > tfoot tr th div.react-select:nth-child(4),
body table.engine-grid > thead tr th input:nth-of-type(2),
body table.engine-grid > tfoot tr th input:nth-of-type(2),
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-of-type(2),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-of-type(2),
body table.engine-grid > thead tr th div.react-select:nth-of-type(2),
body table.engine-grid > tfoot tr th div.react-select:nth-of-type(2) {
  margin-top: 5px;
}
body table.engine-grid > thead tr th input[type=checkbox],
body table.engine-grid > tfoot tr th input[type=checkbox] {
  display: inline-block;
  min-width: 10px;
  width: auto !important;
}
body table.engine-grid > thead tr th input[type=checkbox]:hover,
body table.engine-grid > tfoot tr th input[type=checkbox]:hover {
  cursor: pointer;
}
body table.engine-grid > thead tr th .header-title,
body table.engine-grid > tfoot tr th .header-title {
  margin-bottom: var(--table-thead-td-margin-bottom);
}
body table.engine-grid > thead tr th .header-title .header-title-text,
body table.engine-grid > tfoot tr th .header-title .header-title-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1rem;
}
body table.engine-grid > thead tr th .header-title .react-datepicker-wrapper,
body table.engine-grid > tfoot tr th .header-title .react-datepicker-wrapper {
  display: block;
}
body table.engine-grid > thead tr th .header-title .header-sort-button,
body table.engine-grid > tfoot tr th .header-title .header-sort-button {
  width: 15px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  padding: 0 2px;
  color: var(--table-sort-button-color);
  display: none;
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button.header-sort-button-high,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button.header-sort-button-high {
  position: absolute;
  right: 7px;
  top: 5px;
  display: inline-block;
}
body table.engine-grid > thead tr th .header-title .header-sort-button:hover,
body table.engine-grid > tfoot tr th .header-title .header-sort-button:hover {
  color: var(--link-color);
  cursor: pointer;
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-az:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-az:before {
  content: "\f077";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-za:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-za:before {
  content: "\f078";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-asc:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-asc:before {
  content: "\f077";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-desc:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-desc:before {
  content: "\f078";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-high,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-high {
  color: var(--link-color);
}
body table.engine-grid > thead tr th:hover .header-title .header-sort-button,
body table.engine-grid > tfoot tr th:hover .header-title .header-sort-button {
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 5px;
}
body table.engine-grid > thead > tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius-basic);
}
body table.engine-grid > thead > tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius-basic);
}
body table.engine-grid > tfoot > tr:first-child th:first-child {
  border-bottom-left-radius: var(--border-radius-basic);
}
body table.engine-grid > tfoot > tr:first-child th:last-child {
  border-bottom-right-radius: var(--border-radius-basic);
}
body table.engine-grid.scrolling thead tr:last-child th:after {
  background: none;
  position: absolute;
  top: 100%;
  bottom: -2px;
  left: 0;
  width: 100%;
  content: ' ';
  height: 4px;
}
body table.engine-grid > tbody tr[ondblclick*="("] {
  cursor: pointer;
}
body table.engine-grid > tbody tr {
  position: relative;
  border-radius: var(--border-radius-basic);
  background: var(--table-background);
}
body table.engine-grid > tbody tr:nth-child(even) {
  background: #2C3946;
}
body table.engine-grid > tbody tr > td:first-child {
  padding-left: 15px;
}
body table.engine-grid > tbody tr:hover:not(.empty-row),
body table.engine-grid > tbody tr:hover:nth-child(odd):not(.empty-row) {
  background: var(--table-hover-background);
}
body table.engine-grid > tbody tr:hover:not(.empty-row) > td:first-child:not(.no-rows):before,
body table.engine-grid > tbody tr:hover:nth-child(odd):not(.empty-row) > td:first-child:not(.no-rows):before {
  content: "";
  background: var(--table-row-highliter-color);
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: var(--border-radius-basic);
  border-bottom-left-radius: var(--border-radius-basic);
}
body table.engine-grid > tbody tr.evented {
  cursor: pointer;
}
body table.engine-grid > tbody tr a:not(.href-button) {
  text-decoration: none;
  color: var(--href-color);
}
body table.engine-grid > tbody tr a:not(.href-button):hover {
  color: var(--href-hover-color);
}
body table.engine-grid > tbody tr a:not(.href-button):active {
  color: var(--href-hover-color);
}
body table.engine-grid > tbody tr td {
  overflow: hidden;
  vertical-align: middle;
  height: var(--table-tbody-td-height);
  line-height: 1em;
  color: var(--text-color-table);
  border: 0;
}
body table.engine-grid > tbody tr td input {
  background: var(--body-background-color);
}
body table.engine-grid > tbody tr td input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 40px !important;
  height: 20px !important;
  background-color: var(--toggle-non-active-color);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
  padding: 0;
}
body table.engine-grid > tbody tr td input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background-color: var(--toggle-circle-color);
  transition: 0.3s;
  filter: drop-shadow(2px 4px 6px black);
}
body table.engine-grid > tbody tr td input[type="checkbox"]:checked {
  background-color: var(--toggle-active-color);
}
body table.engine-grid > tbody tr td input[type="checkbox"]:checked:hover {
  background-color: var(--toggle-active-hover-color);
}
body table.engine-grid > tbody tr td input[type="checkbox"]:checked:before {
  left: calc(100% - 17px);
}
body table.engine-grid > tbody tr td input[type="checkbox"]:focus {
  box-shadow: 0 0 1px black;
}
body table.engine-grid > tbody tr td input[type="checkbox"]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
body table.engine-grid > tbody tr td input[type="checkbox"][readonly] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.4;
}
body table.engine-grid > tbody tr td button {
  margin-bottom: 0;
}
body table.engine-grid > tbody tr td:first-child {
  border-top-left-radius: var(--table-border-radius);
  border-bottom-left-radius: var(--table-border-radius);
}
body table.engine-grid > tbody tr td:last-child {
  border-top-right-radius: var(--table-border-radius);
  border-bottom-right-radius: var(--table-border-radius);
  border-right: 0 !important;
}
body table.engine-grid > tbody tr td.sortcol,
body table.engine-grid > tbody tr td.isFilteredCell,
body table.engine-grid > tbody tr td.hoveredCell {
  max-width: none !important;
}
body table.engine-grid > tbody tr td.overflowed {
  cursor: copy;
}
body table.engine-grid > tbody tr td.gridCellSummary {
  background-color: var(--table-summary-cell-background);
  border: 0;
  border-top: 1px solid var(--table-summary-cell-border-color);
}
body table.engine-grid > fthfoot {
  visibility: visible !important;
}
body table.engine-grid.engine-grid-no-width > tbody td,
body table.engine-grid.engine-grid-no-width > thead th {
  max-width: none;
}
body.theme-size-compact table.engine-grid {
  border-top-width: 0;
  border-spacing: 0;
}
body.theme-size-compact table.engine-grid tr th,
body.theme-size-compact table.engine-grid tr td {
  font-size: 14px;
  min-width: 50px;
}
body.theme-size-compact table.engine-grid > thead tr th {
  border-bottom: 1px solid var(--table-border-color);
}
body.theme-size-compact table.engine-grid > tbody tr {
  box-shadow: none !important;
}
body.theme-size-compact table.engine-grid > tbody tr td {
  border-bottom: 1px solid var(--table-border-color);
}
body.theme-size-compact table.engine-grid {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.theme-size-compact table.engine-grid > thead tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius-basic);
  box-shadow: unset;
}
body.theme-size-compact table.engine-grid > thead tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius-basic);
  box-shadow: unset;
}
.entryTable {
  background: var(--form-background-color) !important;
  border: 0;
}
.entryTable .chzn-single,
.entryTable .chzn-container-multi,
.entryTable .chzn-choices {
  min-height: 26px;
}
.entryTable .chzn-choices {
  height: 100% !important;
}
.entryTable .groupName {
  text-transform: uppercase;
}
.entryTable input,
.entryTable select,
.entryTable textarea {
  padding-left: 5px;
}
.entryTable hr {
  border-color: var(--form-group-devider-color);
}
.entryTable .editTable {
  table-layout: fixed;
  width: 100%;
}
.entryTable .editTable th {
  position: relative;
  text-align: left;
  padding: var(--table-thead-td-padding);
  vertical-align: bottom;
  font-weight: normal;
  top: 0;
  background: var(--table-header-background) !important;
  color: var(--text-color) !important;
  text-shadow: none;
  border: 0;
  border-right: 1px solid var(--table-border-color);
  min-width: 110px;
}
.entryForm {
  margin-bottom: 40px;
  width: 100%;
  max-width: 1120px;
  margin-top: var(--div-entryForm-margin-top);
}
.entryForm h3 {
  margin: 0 0 15px 5px;
  font-weight: 600;
  font-size: 22px;
}
.entryForm form {
  width: 100%;
  max-width: 1120px;
  padding: var(--form-entryForm-padding);
  background: var(--form-background-color) !important;
  font-size: 14px;
}
.entryForm form textarea {
  width: 100% !important;
  font-family: var(--default-font-family);
}
.entryForm form textarea[readonly] {
  background: var(--input-read-only-background);
  color: var(--input-read-only-color);
}
.entryForm form .chzn-container {
  width: 100% !important;
}
.entryForm form .formInputContainer {
  width: 100% !important;
}
.entryForm table {
  width: 100%;
  background-color: transparent !important;
  text-align: left !important;
  border: 0;
}
.entryForm table tr td {
  padding: 5px;
}
.entryForm table tr td.entryTableCaption {
  font-weight: 500;
  padding-top: 7px;
}
.entryForm table tr td:not(#Edit-passwordSHA1) input:not([type="file"]):not(#attachmentName43):not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
}
.entryForm table tr td#Edit-passwordSHA1 input {
  min-width: 0;
}
.entryForm table tr td input[type="checkbox"].formInputCheckbox {
  min-width: 13px;
  margin: 0;
}
.entryForm table tr td input {
  height: var(--input-height);
  min-width: 82px;
  background: var(--input-background-color);
  color: var(--input-color);
  border-radius: var(--input-border-radius);
  border: 1px solid var(--input-border-color);
}
.entryForm table tr td input:disabled,
.entryForm table tr td input[readonly] {
  background: var(--input-disabled-background);
  color: var(--input-disabled-color);
  border-color: var(--input-disabled-border-color);
}
.entryForm table tr td input.hasDatepicker {
  background: var(--input-background-color) !important;
  color: var(--input-color);
}
.entryForm table tr td input[type="file"] {
  width: fit-content !important;
  height: fit-content;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.entryForm table tr td input[type="file"]:hover::file-selector-button {
  background: var(--button-hover-background);
}
.entryForm table tr td input[type="file"]::file-selector-button {
  padding-top: 1.5px;
  padding-bottom: 1.5px;
  font-size: 0.75rem;
  cursor: pointer;
}
.entryForm table tr td input[type='checkbox'] {
  min-width: 24px;
  width: 24px;
  height: var(--input-radio-height);
}
.entryForm table tr td input[readonly] {
  background: var(--input-read-only-background);
  color: var(--input-read-only-color);
}
.entryForm table tr td input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 40px !important;
  height: 20px !important;
  background-color: var(--toggle-non-active-color);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
  padding: 0;
}
.entryForm table tr td input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background-color: var(--toggle-circle-color);
  transition: 0.3s;
  filter: drop-shadow(2px 4px 6px black);
}
.entryForm table tr td input[type="checkbox"]:checked {
  background-color: var(--toggle-active-color);
}
.entryForm table tr td input[type="checkbox"]:checked:hover {
  background-color: var(--toggle-active-hover-color);
}
.entryForm table tr td input[type="checkbox"]:checked:before {
  left: calc(100% - 17px);
}
.entryForm table tr td input[type="checkbox"]:focus {
  box-shadow: 0 0 1px black;
}
.entryForm table tr td input[type="checkbox"]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.entryForm table tr td input[type="checkbox"][readonly] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.4;
}
.entryForm table tr td textarea {
  background: var(--input-background-color);
  color: var(--input-color);
  border-radius: var(--input-border-radius);
  padding: var(--form-input-padding);
  border-color: var(--input-border-color);
}
.entryForm .form-button-bottom {
  display: flex !important;
  justify-content: end;
}
/*.chzn-container{
  .chzn-drop{
    background: var(--input-background-color);
    border-color: var(--input-border-color);

    .chzn-clearAll{
      background: var(--input-background-color);
      border-color: var(--input-border-color);
    }

    li.highlighted{
      background: var(--input-selected-background-color) !important;
    }
  }
}*/
.chzn-container-multi .chzn-drop .result-selected {
  background: var(--choice-item-selected-background) !important;
}
.chzn-container .chzn-results li.no-results {
  background: var(--input-selected-background-color) !important;
}
.chzn-container > a {
  background: var(--input-background-color);
  color: var(--input-color);
  border-radius: var(--input-border-radius);
}
.chzn-container > a:disabled,
.chzn-container > a[readonly] {
  background: var(--input-disabled-background);
  color: var(--input-disabled-color);
}
.chzn-container > a.hasDatepicker {
  background: var(--input-background-color) !important;
  color: var(--input-color);
}
.chzn-container .chzn-choices {
  background: var(--input-background-color);
  border-color: var(--input-border-color);
}
.chzn-container .chzn-choices .search-choice {
  background: var(--choice-item-background) !important;
  color: var(--choice-item-text-color) !important;
  box-shadow: var(--choice-item-box-shadow) !important;
  border: 1px solid var(--choice-item-border-color) !important;
}
.chzn-container .chzn-search input {
  background: var(--input-background-color);
  color: var(--input-color);
}
.chzn-container .chzn-drop {
  margin: 0 -20px 0 0;
  background: var(--input-background-color);
  border-color: var(--input-border-color);
  box-shadow: -1px 2px 5px 1px var(--input-box-shaddow-color);
}
.chzn-container .chzn-drop .chzn-clearAll {
  background: var(--input-background-color);
  border-color: var(--input-border-color);
}
.chzn-container .chzn-drop .chzn-clearAll:hover {
  color: var(--primary-color) !important;
}
.chzn-container .chzn-results {
  max-height: 70vh !important;
}
.chzn-container .chzn-results li.highlighted {
  background: var(--input-selected-background-color) !important;
}
.chzn-container .chzn-single {
  background: var(--input-background-color);
  border-color: var(--input-border-color);
  box-shadow: none !important;
  color: var(--input-color);
}
.chzn-container .chzn-single-plus {
  height: 21px;
}
.chzn-container .chzn-single-plus,
.chzn-container .chzn-default {
  background: var(--table-input-background-color) !important;
  border-color: var(--table-border-color);
  box-shadow: none !important;
}
