/* 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 */
/* line 150, app/assets/stylesheets/customs.scss */
.conversation-container {
  display: flex;
  /* grid-template-columns: 20% auto auto; */
  column-gap: .5em;
  margin-left: -1em;
  min-width: 60%;
  max-height: 60em;
}

/* line 159, app/assets/stylesheets/customs.scss */
.conversation-group-column {
  width: 15em;
  max-height: 50em;
  overflow-y: auto;
}

/* line 165, app/assets/stylesheets/customs.scss */
.conversation-group-name {
  padding: 0em 0em 1em 0em;
}

/* line 169, app/assets/stylesheets/customs.scss */
.conversation-topic-column {
  max-width: 20em;
  border-left: solid #e0e0e0;
  padding: 0em 0em 0em .5em;
  min-height: 50em;
  max-height: 50em;
  overflow-y: auto;
}

/* line 178, app/assets/stylesheets/customs.scss */
.conversation-messages-column {
  display: flex;
  flex-direction: column;
  border-left: solid #e0e0e0;
  padding: 5px 5px 0px 10px;
  justify-content: flex-end;
  max-height: 50em;
  max-width: 60%;
  width: 60%;
}

/* line 189, app/assets/stylesheets/customs.scss */
.conversation-group-tab {
  display: grid;
  grid-template-columns: auto auto;
  margin-bottom: 2em;
  max-width: 13em;
  column-gap: 1em;
  padding: 5px 0px 0px 5px;
}

/* TODO: is this the right color to use? */
/* line 199, app/assets/stylesheets/customs.scss */
.conversation-group-tab:hover {
  cursor: pointer;
  background: #f2f3ff;
}

/* line 204, app/assets/stylesheets/customs.scss */
.conversation-group-tab-selected {
  display: grid;
  grid-template-columns: auto auto;
  margin-bottom: 2em;
  max-width: 13em;
  column-gap: 1em;
  background: #f2f3ff;
  padding: 5px 0px 0px 5px;
}

/* line 214, app/assets/stylesheets/customs.scss */
.conversation-group-item-a {
  padding: 5px 0px 0px 5px;
}

/* line 218, app/assets/stylesheets/customs.scss */
.conversation-group-item-b {
  padding: 5px 0px 0px 5px;
}

/* line 222, app/assets/stylesheets/customs.scss */
.conversation-preview {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  margin-bottom: 1em;
}

/* line 229, app/assets/stylesheets/customs.scss */
.conversation-preview:hover {
  cursor: pointer;
  background: #f2f3ff;
}

/* line 234, app/assets/stylesheets/customs.scss */
.conversation-preview-selected {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  margin-bottom: 1em;
  background: #f2f3ff;
}

/* line 249, app/assets/stylesheets/customs.scss */
.conversation-messages-container {
  margin: 0;
  box-sizing: border-box;
}

/* line 254, 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 264, app/assets/stylesheets/customs.scss */
.msg {
  position: relative;
  max-width: 75%;
  padding: 7px 15px;
  margin-bottom: 1.5em;
}

/* line 271, 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 279, 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 289, app/assets/stylesheets/customs.scss */
.msg.sent:first-child,
.msg.rcvd + .msg.sent {
  border-top-right-radius: var(--rad);
}

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

/* time */
/* line 302, 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 313, app/assets/stylesheets/customs.scss */
.msg.sent::before {
  right: 15px;
}

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

/* Show time only for first message in group */
/* line 324, 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 335, app/assets/stylesheets/customs.scss */
.document_sub_container {
  padding-top: 1em;
}

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

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

/* line 349, 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 361, app/assets/stylesheets/customs.scss */
.search-text-field {
  grid-area: "search-text-field";
}

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

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

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

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

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

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

/* line 393, 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 402, app/assets/stylesheets/customs.scss */
#rfqModal .modal-header .modal-title {
  margin-bottom: 0;
}

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

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

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

/* line 421, 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 429, app/assets/stylesheets/customs.scss */
trix-editor {
  height: 300px;
  overflow-y: auto;
}

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

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

/*# sourceMappingURL=customs.css-9db3aa0b5ada1a76f79e119c14e1c946348f83e1c9c189a777761a1da8562371.map */
