/* line 1, app/assets/stylesheets/customs.scss */
.desktop-container {
  display: grid;
  height: 100vh;
  width: 100vw;
  justify-content: stretch;
  grid-template-columns: 20vw auto;
  grid-template-areas: "sidebar" "content-wrapper";
}

/* line 10, app/assets/stylesheets/customs.scss */
.components-container {
  display: flex;
  flex-direction: column;
  height: 80vh;
  padding: 0em 1em 0em 1em;
  margin-top: 1em;
}

/* line 18, app/assets/stylesheets/customs.scss */
.desktop-sidebar {
  grid-area: "sidebar";
  position: sticky;
}

/* line 23, app/assets/stylesheets/customs.scss */
.desktop-content-wrapper {
  grid-area: "content-wrapper";
  display: grid;
  grid-row: 15vh 80vh 5vh;
  grid-template-areas: "navbar" "content" "footer";
}

/* line 30, app/assets/stylesheets/customs.scss */
.desktop-navbar {
  grid-area: "navbar";
}

/* line 34, app/assets/stylesheets/customs.scss */
.desktop-content {
  grid-area: "content";
  overflow-y: scroll;
}

/* line 39, app/assets/stylesheets/customs.scss */
.desktop-footer {
  grid-area: "footer";
}

/* line 43, app/assets/stylesheets/customs.scss */
.dot {
  height: 25px;
  width: 25px;
  background-color: powderblue;
  border-radius: 50%;
  display: inline-block;
}

/* line 51, app/assets/stylesheets/customs.scss */
.red-dot {
  height: 25px;
  width: 25px;
  background-color: #ff5252;
  border-radius: 50%;
  display: inline-block;
}

/* line 59, app/assets/stylesheets/customs.scss */
.green-dot {
  height: 25px;
  width: 25px;
  background-color: #1eff00;
  border-radius: 50%;
  display: inline-block;
}

/* line 67, app/assets/stylesheets/customs.scss */
.yellow-dot {
  height: 25px;
  width: 25px;
  background-color: #ffff00;
  border-radius: 50%;
  display: inline-block;
}

/* line 75, app/assets/stylesheets/customs.scss */
.footer {
  background-color: rgba(128, 128, 128, 0.9);
  margin-left: 260px;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 85, app/assets/stylesheets/customs.scss */
#footer-content {
  width: calc(100% - 260px);
}

/* line 89, app/assets/stylesheets/customs.scss */
#footer-nav {
  margin-left: 1rem;
}

@media (max-width: 1300px) {
  /* line 94, app/assets/stylesheets/customs.scss */
  .footer {
    margin-left: 0;
  }
  /* line 98, app/assets/stylesheets/customs.scss */
  #footer-content {
    width: 100%;
  }
  /* line 102, app/assets/stylesheets/customs.scss */
  #footer-nav {
    margin-left: 0;
  }
}

/* line 107, app/assets/stylesheets/customs.scss */
.avatar-image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  /* margin: auto; */
  margin: 0em 0em 0em 0em;
}

/* line 116, app/assets/stylesheets/customs.scss */
.navbar-toggle-btn {
  background-color: Transparent;
  /* background-repeat:no-repeat; */
  border: none;
  cursor: pointer;
  /* overflow: hidden; */
  outline: none;
}

/* line 125, app/assets/stylesheets/customs.scss */
.primary {
  color: #7FA4E7;
}

/* in machine_instances -> machine_parts, clicking the icon in the button doesn't open the modal. this fixes that issue. */
/* line 130, app/assets/stylesheets/customs.scss */
#machine_parts_link i {
  pointer-events: none;
}

/* to space out 'edit' and 'delete' */
/* line 135, app/assets/stylesheets/customs.scss */
.material-symbols-outlined {
  margin-left: 3px;
  margin-right: 3px;
}

/* remove skinny arrows from datatable (parts index) */
/* line 141, app/assets/stylesheets/customs.scss */
table.dataTable thead .sorting:before {
  content: '';
}

/* line 145, app/assets/stylesheets/customs.scss */
table.dataTable thead .sorting:after {
  content: '';
}

/* Conversations: the old 3-column desktop UI was replaced by the HD-740 v2
   layout (styles live in app/frontend/stylesheets/desktop/desktop-resources.scss).
   The legacy .conversation-* layout rules were removed as dead code. */
/* line 152, app/assets/stylesheets/customs.scss */
.chat {
  --rad: 20px;
  --rad-sm: 3px;
  font: 16px/1.5 sans-serif;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-top: 1em;
}

/* line 162, app/assets/stylesheets/customs.scss */
.msg {
  position: relative;
  max-width: 75%;
  padding: 7px 15px;
  margin-bottom: 1.5em;
}

/* line 169, app/assets/stylesheets/customs.scss */
.msg.sent {
  border-radius: var(--rad) var(--rad-sm) var(--rad-sm) var(--rad);
  background: #7FA4E7;
  color: #fff;
  /* moves it to the right */
  margin-left: auto;
}

/* line 177, app/assets/stylesheets/customs.scss */
.msg.rcvd {
  border-radius: var(--rad-sm) var(--rad) var(--rad) var(--rad-sm);
  background: #f1f1f1;
  color: #555;
  /* moves it to the left */
  margin-right: auto;
}

/* Improve radius for messages group */
/* line 187, app/assets/stylesheets/customs.scss */
.msg.sent:first-child,
.msg.rcvd + .msg.sent {
  border-top-right-radius: var(--rad);
}

/* line 192, app/assets/stylesheets/customs.scss */
.msg.rcvd:first-child,
.msg.sent + .msg.rcvd {
  border-top-left-radius: var(--rad);
}

/* time */
/* line 200, app/assets/stylesheets/customs.scss */
.msg::before {
  content: attr(data-time);
  font-size: 0.8rem;
  position: absolute;
  bottom: 100%;
  color: #888;
  white-space: nowrap;
  /* Hidden by default */
  display: none;
}

/* line 211, app/assets/stylesheets/customs.scss */
.msg.sent::before {
  right: 15px;
}

/* line 215, app/assets/stylesheets/customs.scss */
.msg.rcvd::before {
  left: 15px;
}

/* Show time only for first message in group */
/* line 222, app/assets/stylesheets/customs.scss */
.msg::before,
.msg.sent + .msg.rcvd::before,
.msg.rcvd + .msg.sent::before {
  /* Show only for first message in group */
  display: block;
}

/* line 229, app/assets/stylesheets/customs.scss */
.document_sub_container {
  padding-top: 1em;
}

/* forms */
/* line 234, app/assets/stylesheets/customs.scss */
.form-container {
  margin-left: 3em;
  margin-bottom: 1em;
}

/* line 239, app/assets/stylesheets/customs.scss */
.font-medium {
  font-size: 1rem;
}

/* line 243, app/assets/stylesheets/customs.scss */
.search-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 5px;
  margin-bottom: 1em;
  padding-left: 1em;
  grid-template-areas: "search-button" "search-text-field";
}

/* line 255, app/assets/stylesheets/customs.scss */
.search-text-field {
  grid-area: "search-text-field";
}

/* line 259, app/assets/stylesheets/customs.scss */
.search-button {
  grid-area: "search-button";
}

/* line 263, app/assets/stylesheets/customs.scss */
.attrs-component {
  padding-left: 1em;
}

/* line 267, app/assets/stylesheets/customs.scss */
.job-keys-form {
  padding: 1em;
}

/* line 271, app/assets/stylesheets/customs.scss */
.rfq-form-field {
  margin-bottom: 1rem;
}

/* line 275, app/assets/stylesheets/customs.scss */
.rfq-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  position: static;
  transform: none;
}

/* line 283, app/assets/stylesheets/customs.scss */
#rfqModal .modal-footer {
  justify-content: center;
}

/* line 287, app/assets/stylesheets/customs.scss */
#rfqModal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(to right, #5897fb, #868e96);
  color: white;
}

/* line 296, app/assets/stylesheets/customs.scss */
#rfqModal .modal-header .modal-title {
  margin-bottom: 0;
}

/* line 300, app/assets/stylesheets/customs.scss */
#rfqModal .modal-header .close {
  color: white;
  opacity: 0.75;
}

/* line 305, app/assets/stylesheets/customs.scss */
#rfqModal .modal-header .close:hover {
  opacity: 1;
}

/* line 309, app/assets/stylesheets/customs.scss */
.btn-rfq-outline {
  background-color: transparent !important;
  border: 1px solid #0d6efd !important;
  color: #0d6efd !important;
}

/* line 315, app/assets/stylesheets/customs.scss */
.btn-rfq-outline:hover,
.btn-rfq-outline:focus,
.btn-rfq-outline:active {
  background-color: transparent !important;
  border: 1px solid #0d6efd !important;
  color: #0d6efd !important;
  box-shadow: none !important;
}

/* line 326, app/assets/stylesheets/customs.scss */
.alert.alert-info .msg,
.alert.alert-info .msg i,
.alert.alert-info .msg a,
.alert.alert-info .close,
.alert.alert-success .msg,
.alert.alert-success .msg i,
.alert.alert-success .msg a,
.alert.alert-success .close {
  color: #fff !important;
}

/* line 334, app/assets/stylesheets/customs.scss */
trix-editor {
  height: 300px;
  overflow-y: auto;
}

/* Dashboard changes */
/* line 340, app/assets/stylesheets/customs.scss */
.dashboard-container-2 {
  display: flex;
  padding: 0;
  flex-direction: column;
}

/* line 346, app/assets/stylesheets/customs.scss */
.dashboard-row-2 {
  display: flex;
  padding: 0;
  flex-direction: row;
  column-gap: 16px;
}

/* line 352, app/assets/stylesheets/customs.scss */
.btn.d-inline-flex {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

/* line 358, app/assets/stylesheets/customs.scss */
.td-actions {
  white-space: nowrap;
  min-width: 100px;
}

/* line 363, app/assets/stylesheets/customs.scss */
table.table td,
table.dataTable td {
  font-family: Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #212529 !important;
}

/* line 371, app/assets/stylesheets/customs.scss */
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  font-family: Roboto, Helvetica, Arial, sans-serif !important;
  color: #212529 !important;
}

/*# sourceMappingURL=customs.css-bf4a1c327111ee84c057ab7f984b9bf21dc5db2df772de43810806e8432cb1df.map */
