/*checkout responsive.css for responsive work*/
/* line 3, vendor/assets/stylesheets/home.scss */
#right-objects .image-and-info .__id-info {
  display: none;
}

/* line 7, vendor/assets/stylesheets/home.scss */
.selectedClass .image-and-info img {
  display: block !important;
}

/* line 11, vendor/assets/stylesheets/home.scss */
tr.hover:hover td {
  background-color: var(--accent);
}

/* line 15, vendor/assets/stylesheets/home.scss */
.tool-total-values {
  border: 1px solid var(--border);
  background-color: var(--muted);
}

/* line 20, vendor/assets/stylesheets/home.scss */
.tool-total-values-info {
  font-size: 16px;
  font-weight: bold;
}

/* line 25, vendor/assets/stylesheets/home.scss */
.tool-total-values-num {
  font-size: 32px;
  font-weight: bolder;
}

/* line 30, vendor/assets/stylesheets/home.scss */
img.yellow {
  filter: brightness(60%) contrast(100%);
}

/* line 34, vendor/assets/stylesheets/home.scss */
.tool-label {
  font-weight: bold;
}

/* line 38, vendor/assets/stylesheets/home.scss */
.hover-data {
  font-style: italic;
  font-weight: normal;
}

/* line 43, vendor/assets/stylesheets/home.scss */
.accordion-button.used, .accordion-button.used:not(.collapsed) {
  background-color: var(--muted);
}

/* line 47, vendor/assets/stylesheets/home.scss */
.accordion-button:not(.collapsed) {
  background-color: var(--background);
}

/* line 52, vendor/assets/stylesheets/home.scss */
.image-placeholder {
  cursor: pointer;
  display: inline-block;
  width: 150px;
  height: 150px;
  border: 1px solid var(--border);
  background-color: var(--muted);
  text-align: center;
  line-height: 150px;
  font-size: 14px;
  color: var(--muted-foreground);
}

/* line 65, vendor/assets/stylesheets/home.scss */
.image-placeholder:hover {
  background-color: var(--accent);
}

/* line 69, vendor/assets/stylesheets/home.scss */
.font-9px {
  font-size: 9px;
}

/* line 73, vendor/assets/stylesheets/home.scss */
.font-10px, .material-blank-image-placeholder {
  font-size: 10px;
}

/* line 77, vendor/assets/stylesheets/home.scss */
.font-12px {
  font-size: 12px;
}

/* line 81, vendor/assets/stylesheets/home.scss */
.font-14px {
  font-size: 14px;
}

/* line 85, vendor/assets/stylesheets/home.scss */
.font-16px {
  font-size: 16px;
}

/* line 89, vendor/assets/stylesheets/home.scss */
.chart-container {
  min-height: 300px;
}

@media screen {
  /* line 94, vendor/assets/stylesheets/home.scss */
  .printable {
    display: none;
  }
}

/* line 99, vendor/assets/stylesheets/home.scss */
.image-container {
  position: relative;
  display: inline-block;
}

/* line 104, vendor/assets/stylesheets/home.scss */
.image-container img {
  display: inline-block;
}

/* line 108, vendor/assets/stylesheets/home.scss */
.image-container a.delete {
  position: absolute;
  top: 1%;
  left: 90%;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* line 117, vendor/assets/stylesheets/home.scss */
.image-container:hover a.delete {
  opacity: 105;
  color: var(--muted-foreground);
}

/*action icon*/
/* line 123, vendor/assets/stylesheets/home.scss */
.action-icon-container {
  position: relative;
  display: inline-block;
}

/* line 128, vendor/assets/stylesheets/home.scss */
.action-icon-container .action-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  overflow: visible;
  background-color: var(--background);
  padding: 5px 0;
  display: inline-block;
}

/* line 141, vendor/assets/stylesheets/home.scss */
.action-icon-container a {
  color: var(--foreground);
}

/* line 145, vendor/assets/stylesheets/home.scss */
.action-icon-container:hover .action-icons {
  opacity: 105;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: 5px;
}

/* line 152, vendor/assets/stylesheets/home.scss */
.action-icons a {
  color: var(--foreground);
  font-size: 16px;
  padding: 0 5px;
  text-decoration: none;
}

/* line 159, vendor/assets/stylesheets/home.scss */
.action-icons a:hover {
  color: var(--foreground);
  background-color: var(--accent);
}

/* Select option using div */
/* Basic Styling for Container */
/* line 168, vendor/assets/stylesheets/home.scss */
.dropdown {
  position: relative;
  display: inline-block;
  width: 140px;
}

/* Displayed selected item */
/* line 175, vendor/assets/stylesheets/home.scss */
.dropdown-selected {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  cursor: pointer;
}

/* Options Container (Initially Hidden) */
/* line 183, vendor/assets/stylesheets/home.scss */
.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240%;
  border: 1px solid var(--border);
  background-color: var(--background);
  z-index: 10;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Individual Options Styling */
/* line 197, vendor/assets/stylesheets/home.scss */
.dropdown-option {
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

/* line 203, vendor/assets/stylesheets/home.scss */
.dropdown-option:hover {
  background-color: var(--accent);
}

/* Active class for open dropdown */
/* line 208, vendor/assets/stylesheets/home.scss */
.dropdown.open .dropdown-options {
  display: block;
}

/* line 212, vendor/assets/stylesheets/home.scss */
.dropdown-option svg, .dropdown-selected svg {
  padding: 0 5px 0 0;
}

/* Select option using div */
/*loader css override*/
/* line 220, vendor/assets/stylesheets/home.scss */
.spinner-border-sm {
  --bs-spinner-width: 1.4rem;
  --bs-spinner-height: 1.4rem;
  --bs-spinner-border-width: 0.2em
;
}

/* line 226, vendor/assets/stylesheets/home.scss */
tr.project-list td:not(.except) {
  cursor: pointer;
}

/*Underline text decoration for index page @ tab */
/* Underline highlight effect */
/* line 232, vendor/assets/stylesheets/home.scss */
.highlight-underline {
  position: relative;
  display: inline-block;
  color: var(--foreground);
  text-decoration: none;
  height: 40px;
  cursor: pointer;
}

/* line 241, vendor/assets/stylesheets/home.scss */
.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: var(--muted);
  /* Default underline color */
  transition: background-color 0.3s ease;
}

/* line 252, vendor/assets/stylesheets/home.scss */
.highlight-underline:hover::after {
  background-color: var(--accent);
  /* Hover underline color */
}

/* Active state underline color */
/* line 257, vendor/assets/stylesheets/home.scss */
.highlight-underline.active::after {
  background-color: var(--accent);
  /* Active underline color */
}

/* line 261, vendor/assets/stylesheets/home.scss */
a.icon {
  color: var(--muted-foreground);
}

/* line 265, vendor/assets/stylesheets/home.scss */
a.icon:hover {
  color: var(--foreground);
}

/* line 269, vendor/assets/stylesheets/home.scss */
a.icon-small {
  font-size: 12px;
}

/* pop with absolute and relative positions */
/* line 275, vendor/assets/stylesheets/home.scss */
span.shared-profile {
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 20px;
  display: inline-block;
}

/* line 282, vendor/assets/stylesheets/home.scss */
span.shared-profile span.pop-up-profile {
  bottom: 100%;
  left: -20%;
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
  cursor: pointer;
  overflow: hidden;
  visibility: visible;
  z-index: 1;
}

/* line 295, vendor/assets/stylesheets/home.scss */
span.shared-profile:hover {
  color: var(--foreground);
}

/* line 299, vendor/assets/stylesheets/home.scss */
span.shared-profile:hover span.pop-up-profile {
  opacity: 10005;
  display: block;
}

/* pop with absolute and relative positions */
/* line 307, vendor/assets/stylesheets/home.scss */
.drop-list-area-parent, .material-search-parent-div, div.well-look_up-relative {
  display: inline-block;
  position: relative;
}

/* line 312, vendor/assets/stylesheets/home.scss */
.drop-list-area, .material-search-result, div.well-look_up-result {
  top: 80px;
  left: 1%;
  display: none;
  transition: opacity 1s ease;
  visibility: visible;
  z-index: 10000;
  position: absolute;
  background: transparent;
  padding: 10px 5px;
}

/* line 337, vendor/assets/stylesheets/home.scss */
.material-search-result {
  width: 450px;
  height: auto;
  top: 100%;
}

/* line 344, vendor/assets/stylesheets/home.scss */
#result-area {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 5px 7px;
  max-height: 400px;
  overflow-y: auto;
}

/* line 353, vendor/assets/stylesheets/home.scss */
p.single-result {
  cursor: pointer;
  border: 1px solid var(--border);
  padding: 5px;
  border-radius: 5px;
}

/* line 360, vendor/assets/stylesheets/home.scss */
.pointer {
  cursor: pointer;
}

/* line 364, vendor/assets/stylesheets/home.scss */
.footer-link {
  text-decoration: none;
  color: var(--primary);
}

/* line 369, vendor/assets/stylesheets/home.scss */
a.danger {
  color: var(--destructive);
}

/* line 373, vendor/assets/stylesheets/home.scss */
a.expand {
  border-radius: 50%;
}

/* line 377, vendor/assets/stylesheets/home.scss */
a.light-link {
  color: var(--muted-foreground);
  font-size: 12px;
  text-decoration: none;
}

/* line 383, vendor/assets/stylesheets/home.scss */
a.light-link:hover {
  color: var(--foreground);
}

/* line 387, vendor/assets/stylesheets/home.scss */
.compact-font-size {
  font-size: 0.8rem;
}

/* line 391, vendor/assets/stylesheets/home.scss */
.grid_warning[role="gridcell"] {
  color: var(--bs-warning-text-emphasis);
  background-color: var(--bs-warning-bg-subtle);
}

/* line 396, vendor/assets/stylesheets/home.scss */
.warning-tooltip {
  --bs-tooltip-bg: var(--bs-warning);
  color: var(--muted-foreground) !important;
  opacity: 1 !important;
}

/*tabulator column setting*/
/* line 404, vendor/assets/stylesheets/home.scss */
.tabulator-setting-container {
  position: relative;
  display: inline-block;
}

/* line 409, vendor/assets/stylesheets/home.scss */
.tabulator-setting-container .tabulator-column-setting, .tabulator-setting-container .tabulator-column-setting-for-equipments {
  position: absolute;
  bottom: 10px;
  right: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  overflow: visible;
  background-color: var(--background);
  padding: 5px 0;
  display: none;
  height: 350px;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* line 429, vendor/assets/stylesheets/home.scss */
.tabulator-column-setting.add-opacity, .add-opacity.tabulator-column-setting-for-equipments {
  opacity: 105;
  z-index: 1001;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: 5px;
  display: inline-block;
}

/* profile setting*/
/* line 444, vendor/assets/stylesheets/home.scss */
.profile-setting-container {
  position: relative;
  display: inline-block;
}

/* line 449, vendor/assets/stylesheets/home.scss */
.profile-setting-container .profile-setting {
  position: absolute;
  top: 50px;
  right: 20px;
  opacity: 100;
  transition: opacity 0.3s ease;
  background-color: var(--background);
  padding: 5px 0;
  display: none;
  z-index: 100000;
  width: 0;
  height: 0;
}

/* line 465, vendor/assets/stylesheets/home.scss */
.profile-setting.add-opacity {
  opacity: 105;
  color: var(--muted-foreground);
  z-index: 100000;
  border: 1px solid var(--border);
  border-radius: 5px;
  cursor: default;
  display: inline-block;
  width: 290px;
  height: 290px;
}

/* line 477, vendor/assets/stylesheets/home.scss */
.a-link {
  color: var(--primary);
}

/* line 481, vendor/assets/stylesheets/home.scss */
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 51;
  opacity: 1;
  cursor: default;
}

/* line 496, vendor/assets/stylesheets/home.scss */
a.gold {
  color: var(--warning);
}

/* line 500, vendor/assets/stylesheets/home.scss */
a.blank {
  color: var(--muted-foreground);
}

/* line 504, vendor/assets/stylesheets/home.scss */
p.page-headline {
  font-size: 20px;
  font-weight: bold;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

/* line 511, vendor/assets/stylesheets/home.scss */
.only-page-headline {
  font-size: 20px;
  font-weight: bold;
  color: var(--muted-foreground);
}

/* line 518, vendor/assets/stylesheets/home.scss */
.only-heading-underline {
  border-bottom: 1px solid var(--border);
}

/* line 522, vendor/assets/stylesheets/home.scss */
p.page-headline-sub {
  font-size: 16px;
  font-weight: bold;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

/* line 529, vendor/assets/stylesheets/home.scss */
#searchFilter {
  background: url(/assets/search-icon-12c567268a24d5bc325b72ef15fdb5ea2a10382f1ba6d5834a613431918d7bc7.png) no-repeat 10px;
  background-size: 20px;
  padding-left: 35px;
}

/* line 535, vendor/assets/stylesheets/home.scss */
.search-icon {
  background: url(/assets/search-icon-12c567268a24d5bc325b72ef15fdb5ea2a10382f1ba6d5834a613431918d7bc7.png) no-repeat 10px;
  background-size: 15px;
  padding-left: 35px;
}

/* line 541, vendor/assets/stylesheets/home.scss */
.d-inline-table {
  display: inline-table;
}

/* override default pagination*/
/* line 547, vendor/assets/stylesheets/home.scss */
.active.page-item > .page-link {
  background-color: var(--accent);
  border-color: var(--border);
  color: var(--accent-foreground);
}

/* line 553, vendor/assets/stylesheets/home.scss */
.page-item > .page-link {
  border-color: var(--border);
  color: var(--foreground);
}

/*custom form fields*/
/* line 559, vendor/assets/stylesheets/home.scss */
.blue-background-class {
  background-color: var(--muted);
}

/* line 563, vendor/assets/stylesheets/home.scss */
.info-text-container {
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.8125em;
  line-height: 1.38462em;
  margin-top: 0.375em;
}

/* line 571, vendor/assets/stylesheets/home.scss */
.info-text-icon {
  position: absolute;
  width: 0.75em;
  margin-top: 1px;
}

/* line 577, vendor/assets/stylesheets/home.scss */
.info-text-content {
  padding-left: 1.5em;
}

/* line 581, vendor/assets/stylesheets/home.scss */
.required-field::after {
  content: "*";
  color: var(--destructive);
  padding-left: 2px;
}

/* line 587, vendor/assets/stylesheets/home.scss */
.optional-required-field::after {
  content: "*";
  color: var(--warning);
  padding-left: 2px;
}

/* line 593, vendor/assets/stylesheets/home.scss */
.hide-advanced_setting_field {
  display: none;
}

/* line 597, vendor/assets/stylesheets/home.scss */
a.project-link {
  text-decoration: none;
}

/* line 601, vendor/assets/stylesheets/home.scss */
a.project-link:hover {
  text-decoration: underline;
}

/* line 605, vendor/assets/stylesheets/home.scss */
.editor_page_tabs_ordering_gear_icon {
  position: fixed;
  right: 40px;
  top: 150px;
  /*transform: translateY(-20%);*/
  font-size: 24px;
  color: var(--muted-foreground);
  /*background-color: #f0f0f0;*/
  background: transparent;
  /*padding: 10px;*/
  border-radius: 50%;
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
  cursor: pointer;
  z-index: 1000;
}

/* line 621, vendor/assets/stylesheets/home.scss */
.editor_page_tabs_ordering_gear_icon:hover {
  color: var(--foreground);
}

/* line 625, vendor/assets/stylesheets/home.scss */
.system_reserved_tab {
  background-color: var(--muted);
}

/* line 629, vendor/assets/stylesheets/home.scss */
.ws-tabs .nav-tabs .nav-link {
  color: var(--foreground);
  cursor: pointer;
}

/* line 634, vendor/assets/stylesheets/home.scss */
.ws-tabs .nav-tabs .nav-link:active {
  color: var(--foreground);
}

/* line 638, vendor/assets/stylesheets/home.scss */
.ws-tabs .nav-tabs .nav-link:hover {
  color: var(--foreground);
}

/* line 642, vendor/assets/stylesheets/home.scss */
.ws-tabs .nav-tabs .nav-link:visited {
  color: var(--foreground);
}

/* line 646, vendor/assets/stylesheets/home.scss */
.ws-tabs .nav-tabs .nav-item.disabled {
  color: var(--muted-foreground);
  cursor: not-allowed !important;
}

/* line 651, vendor/assets/stylesheets/home.scss */
.ws-tabs .nav-tabs .nav-item.disabled .nav-link {
  color: var(--muted-foreground);
  cursor: not-allowed !important;
}

/* line 658, vendor/assets/stylesheets/home.scss */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--muted);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.2s;
}

/* line 670, vendor/assets/stylesheets/home.scss */
.search-bar:focus-within {
  border-color: var(--ring);
  background: var(--background);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* line 676, vendor/assets/stylesheets/home.scss */
.search-input {
  border: none;
  background: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--foreground);
  margin-left: 8px;
}

/* line 686, vendor/assets/stylesheets/home.scss */
.search-input::placeholder {
  color: var(--muted-foreground);
}

/* line 690, vendor/assets/stylesheets/home.scss */
.header-btn {
  background: var(--muted);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Header buttons container for even spacing */
/* line 705, vendor/assets/stylesheets/home.scss */
.header-buttons-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* line 711, vendor/assets/stylesheets/home.scss */
.header-btn:hover {
  background: var(--accent);
  color: var(--foreground);
}

/* line 716, vendor/assets/stylesheets/home.scss */
.header-btn.primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* line 722, vendor/assets/stylesheets/home.scss */
.header-btn.primary:hover {
  background: var(--accent);
}

/* line 726, vendor/assets/stylesheets/home.scss */
.search-bar-row > * {
  padding-right: 3px !important;
  padding-left: 3px !important;
}

/* line 731, vendor/assets/stylesheets/home.scss */
.col-0 {
  display: none;
}

/* line 735, vendor/assets/stylesheets/home.scss */
.md_ft_hidden {
  display: none !important;
}

/* line 742, vendor/assets/stylesheets/home.scss */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* line 749, vendor/assets/stylesheets/home.scss */
input[type=number] {
  -moz-appearance: textfield;
}

/* line 753, vendor/assets/stylesheets/home.scss */
.material-blank-image-placeholder {
  height: 70px;
}

/* line 758, vendor/assets/stylesheets/home.scss */
.if-scroll-search-bar {
  border: 1px solid var(--border);
  padding: 20px 0;
  border-radius: 0.375rem;
  top: -10px;
}

/* line 765, vendor/assets/stylesheets/home.scss */
.cursor-pointer {
  cursor: pointer;
}

/* line 769, vendor/assets/stylesheets/home.scss */
.cursor-grab {
  cursor: grab;
}

/* line 773, vendor/assets/stylesheets/home.scss */
.cursor-grabbing {
  cursor: grabbing;
}

/* line 777, vendor/assets/stylesheets/home.scss */
.cursor-move {
  cursor: move;
}

/* Text wrapping utilities */
/* line 782, vendor/assets/stylesheets/home.scss */
.text-prewrap {
  white-space: pre-wrap;
}

/* line 786, vendor/assets/stylesheets/home.scss */
.text-nowrap {
  white-space: nowrap;
}

/* Width utilities */
/* line 791, vendor/assets/stylesheets/home.scss */
.w-36 {
  width: 36px;
}

/* line 795, vendor/assets/stylesheets/home.scss */
.h-36 {
  height: 36px;
}

/* line 799, vendor/assets/stylesheets/home.scss */
.w-60 {
  width: 60px;
}

/* line 803, vendor/assets/stylesheets/home.scss */
.h-60 {
  height: 60px;
}

/* line 807, vendor/assets/stylesheets/home.scss */
.w-70 {
  width: 70px;
}

/* line 811, vendor/assets/stylesheets/home.scss */
.w-80 {
  width: 80px;
}

/* line 815, vendor/assets/stylesheets/home.scss */
.w-100px {
  width: 100px;
}

/* line 819, vendor/assets/stylesheets/home.scss */
.w-350 {
  width: 350px;
}

/* line 823, vendor/assets/stylesheets/home.scss */
.w-400 {
  width: 400px;
}

/* line 827, vendor/assets/stylesheets/home.scss */
.w-450 {
  max-width: 450px;
}

/* line 831, vendor/assets/stylesheets/home.scss */
.w-40 {
  width: 40px;
}

/* line 835, vendor/assets/stylesheets/home.scss */
.w-50px {
  width: 50px;
}

/* line 839, vendor/assets/stylesheets/home.scss */
.min-w-100 {
  min-width: 100px;
}

/* line 843, vendor/assets/stylesheets/home.scss */
.max-w-90 {
  max-width: 90px;
}

/* Positioning utilities */
/* line 848, vendor/assets/stylesheets/home.scss */
.position-relative {
  position: relative;
}

/* line 852, vendor/assets/stylesheets/home.scss */
.position-absolute {
  position: absolute;
}

/* line 856, vendor/assets/stylesheets/home.scss */
.top-0 {
  top: 0;
}

/* line 860, vendor/assets/stylesheets/home.scss */
.top-1 {
  top: 1px;
}

/* line 864, vendor/assets/stylesheets/home.scss */
.top-1pct {
  top: 1%;
}

/* line 868, vendor/assets/stylesheets/home.scss */
.top-70 {
  top: 70px;
}

/* line 872, vendor/assets/stylesheets/home.scss */
.bottom-0 {
  bottom: 0;
}

/* line 876, vendor/assets/stylesheets/home.scss */
.bottom-1 {
  bottom: 1px;
}

/* line 880, vendor/assets/stylesheets/home.scss */
.bottom-1pct {
  bottom: 1%;
}

/* line 884, vendor/assets/stylesheets/home.scss */
.right-10 {
  right: 10px;
}

/* Dual box list styles */
/* line 889, vendor/assets/stylesheets/home.scss */
.dual-box-search-input {
  width: 100%;
  padding: 0.45rem 0.75rem !important;
  border: 1px solid #EBEDF3;
  color: #3F4254;
  outline: none !important;
  border-radius: 0.42rem;
}

/* line 898, vendor/assets/stylesheets/home.scss */
.dual-box-list-container {
  height: 350px;
  overflow-y: auto;
}

/* line 903, vendor/assets/stylesheets/home.scss */
.dual-box-list-container-tall {
  height: 650px;
  overflow-y: auto;
}

/* line 908, vendor/assets/stylesheets/home.scss */
.dual-box-controls-container {
  height: 505px;
}

/* line 912, vendor/assets/stylesheets/home.scss */
.dual-box-list-item {
  cursor: pointer;
  padding: 0.75rem 0.75rem !important;
}

/* line 917, vendor/assets/stylesheets/home.scss */
.dual-box-column-left {
  padding-left: 20px !important;
}

/* line 921, vendor/assets/stylesheets/home.scss */
.dual-box-column-right {
  padding-right: 20px !important;
}

/* line 925, vendor/assets/stylesheets/home.scss */
.dual-box-column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Header notification badge */
/* line 931, vendor/assets/stylesheets/home.scss */
.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* App logo text style */
/* line 948, vendor/assets/stylesheets/home.scss */
.app-logo-text {
  font-weight: bold;
  font-size: xx-large;
  cursor: pointer;
}

/* Report top page styles */
/* line 955, vendor/assets/stylesheets/home.scss */
.report-top-page-border {
  border-left: 40px solid #ff0000;
  height: 87vh;
}

/* line 960, vendor/assets/stylesheets/home.scss */
.report-title-xl {
  font-size: 26px;
  font-weight: bolder;
}

/* line 965, vendor/assets/stylesheets/home.scss */
.report-title-lg {
  font-size: 22px;
  font-weight: bolder;
}

/* line 970, vendor/assets/stylesheets/home.scss */
.report-title-md {
  font-size: 20px;
  font-weight: bolder;
}

/* line 975, vendor/assets/stylesheets/home.scss */
.report-title-sm {
  font-size: 22px;
}

/* Schematic design border */
/* line 980, vendor/assets/stylesheets/home.scss */
.schematic-design-border {
  border: 1px solid lightslategray;
}

/* line 984, vendor/assets/stylesheets/home.scss */
.schematic-design-header {
  border-bottom: 1px solid #1a1d20;
}

/* line 988, vendor/assets/stylesheets/home.scss */
.schematic-container {
  min-height: 100px;
  height: auto;
  scrollbar-width: thin;
}

/* Schematic ruler styles */
/* line 995, vendor/assets/stylesheets/home.scss */
.ruler-desktop {
  background: var(--background);
  border-right: 1px solid var(--border);
  padding-right: 15px;
  overflow: visible;
  font-size: .675em;
  position: relative;
  direction: rtl;
}

/* line 1005, vendor/assets/stylesheets/home.scss */
.ruler-mobile {
  background: var(--background);
  border-right: 1px solid var(--border);
  padding-right: 5px;
  overflow: visible;
  font-size: .575em;
  position: relative;
}

/* line 1014, vendor/assets/stylesheets/home.scss */
.ruler-value-top {
  top: 1%;
  position: absolute;
}

/* line 1019, vendor/assets/stylesheets/home.scss */
.ruler-value-bottom {
  bottom: 1%;
  position: absolute;
}

/* line 1024, vendor/assets/stylesheets/home.scss */
.ruler-value-top-px {
  top: 1px;
  position: absolute;
}

/* line 1029, vendor/assets/stylesheets/home.scss */
.ruler-value-bottom-px {
  bottom: 1px;
  position: absolute;
}

/* Schematic element styles */
/* line 1035, vendor/assets/stylesheets/home.scss */
.schematic-element-container {
  background: var(--background);
}

/* line 1039, vendor/assets/stylesheets/home.scss */
.schematic-element-image-container {
  margin: 2px auto 0 auto;
}

/* Schematic view ruler position */
/* line 1044, vendor/assets/stylesheets/home.scss */
.ruler-position-container {
  position: relative;
}

/* line 1048, vendor/assets/stylesheets/home.scss */
.ruler-position-top {
  position: absolute;
  top: 1px;
  right: 10px;
}

/* line 1054, vendor/assets/stylesheets/home.scss */
.ruler-position-bottom {
  position: absolute;
  bottom: 1px;
  right: 10px;
}

/* line 1060, vendor/assets/stylesheets/home.scss */
.schematic-view-ruler-cell {
  padding-left: 30px;
  border-left: 1px solid black;
}

/* Print report schematic cell position */
/* line 1066, vendor/assets/stylesheets/home.scss */
.schematic-report-cell {
  position: relative;
  margin-right: 10px;
}

/* Print report section header */
/* line 1072, vendor/assets/stylesheets/home.scss */
.section-header-company-logo {
  height: 30px;
  background-size: auto 30px;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Project index new project badge */
/* line 1080, vendor/assets/stylesheets/home.scss */
.new-project-indicator {
  font-size: 60px;
  position: absolute;
  top: -60px;
  color: var(--primary);
}

/* Project header settings icon position */
/* line 1088, vendor/assets/stylesheets/home.scss */
.project-header-settings {
  position: absolute;
  top: 1px;
  right: 10px;
}

/* Pagination select width */
/* line 1095, vendor/assets/stylesheets/home.scss */
.pagination-select-per-page {
  width: 50px;
}

/* line 1099, vendor/assets/stylesheets/home.scss */
.pagination-goto-input {
  width: 40px;
}

/* Badge small styles */
/* line 1104, vendor/assets/stylesheets/home.scss */
.badge-status-small {
  font-size: x-small;
  margin-bottom: .5rem;
}

/* Materials modal background */
/* line 1110, vendor/assets/stylesheets/home.scss */
.modal-search-bg {
  background-color: var(--background);
}

/* Profile avatar sizes */
/* line 1115, vendor/assets/stylesheets/home.scss */
.profile-avatar-sm {
  width: 36px;
  height: 36px;
}

/* line 1120, vendor/assets/stylesheets/home.scss */
.profile-avatar-md {
  width: 60px;
  height: 60px;
}

/* Shared profile icon size */
/* line 1126, vendor/assets/stylesheets/home.scss */
.shared-profile-icon-lg {
  font-size: 25px;
}

/* Run details action icons */
/* line 1131, vendor/assets/stylesheets/home.scss */
.action-icons-compact {
  width: 80px;
  padding: 5px 10px !important;
}

/* Work strings materials expand link */
/* line 1137, vendor/assets/stylesheets/home.scss */
.second-expand-position {
  bottom: 50px;
  left: 33px;
  z-index: 10000000;
  display: none;
}

/* Support delete link style */
/* line 1145, vendor/assets/stylesheets/home.scss */
.delete-link-sm {
  font-size: 12px;
  color: #dc3545;
}

/* Offline control panel */
/* line 1151, vendor/assets/stylesheets/home.scss */
.offline-control-panel {
  border: 1px solid darkgray;
  padding: 5px 10px;
  position: fixed;
  top: 190px;
  right: 35px;
  cursor: pointer;
  font-size: 18px;
}

/* User list profile placeholder */
/* line 1162, vendor/assets/stylesheets/home.scss */
.profile-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted);
  border-radius: 50%;
}

/* Form label display block */
/* line 1171, vendor/assets/stylesheets/home.scss */
.label-block {
  display: block;
}

/* Company list dropdown position */
/* line 1176, vendor/assets/stylesheets/home.scss */
.company-list-dropdown {
  top: 70px;
}

/* Hidden file input */
/* line 1181, vendor/assets/stylesheets/home.scss */
.input-hidden {
  display: none;
}

/* Profile picture image placeholder */
/* line 1186, vendor/assets/stylesheets/home.scss */
.profile-image-placeholder {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Shared project profile avatar */
/* line 1193, vendor/assets/stylesheets/home.scss */
.shared-profile-avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: -.125em;
}

/* line 1201, vendor/assets/stylesheets/home.scss */
.w-200px {
  width: 200px;
}

/* line 1205, vendor/assets/stylesheets/home.scss */
.modal-dialog-100vh {
  max-height: 100vh !important;
}

/* line 1209, vendor/assets/stylesheets/home.scss */
.modal-body-100vh {
  max-height: 100vh !important;
}

/* line 1213, vendor/assets/stylesheets/home.scss */
.width-100px {
  width: 100px;
}

/* line 1217, vendor/assets/stylesheets/home.scss */
.width-75px {
  width: 75px;
}

/* line 1221, vendor/assets/stylesheets/home.scss */
.width-150px {
  width: 150px;
}

/* line 1225, vendor/assets/stylesheets/home.scss */
.max-height-50vh {
  max-height: 50vh;
}

/* line 1229, vendor/assets/stylesheets/home.scss */
tr.active > td {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
}

/* line 1235, vendor/assets/stylesheets/home.scss */
.modal-body-radius {
  border-radius: var(--bs-modal-inner-border-radius);
}

/* line 1239, vendor/assets/stylesheets/home.scss */
.mt-6 {
  margin-top: 4rem !important;
}
