@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, a, p, span, label, input, button {
  color: #1E293B;
}

h1 {
  margin-bottom: 2rem;
}

th { cursor: n-resize; user-select: none; }

.help {
  font-size: 1rem;
  position: relative;
  cursor: pointer;
}
.help::after {
  content: attr(aria-label);
  font-family: "Public Sans", sans-serif;
  position: absolute;
  bottom: 100%;
  right: 1.5rem;
  background-color: #58585A;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
  max-width: 32rem;
  white-space: wrap;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  font-size: 1rem;
}
.help:hover::after {
  opacity: 1;
  visibility: visible;
}

input[type=submit], a, button {
  cursor: pointer;
}

html {
  width: 100%;
  height: 100%;
}
html body {
  width: 100%;
  height: 100%;
}
html body .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .modal-overlay .modal {
  padding: 1.5rem;
  background-color: #FFFFFF;
  border-radius: 0.375rem;
  width: 28rem;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
html body .modal-overlay .modal p {
  margin-bottom: 1rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
html body .modal-overlay .modal button {
  width: calc(50% - 0.75rem);
  margin-right: 0.75rem;
  background-color: #B09C69;
  color: #fff;
  border: none;
  transition: all 0.15s;
  height: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  transition: all 0.15s;
}
html body .modal-overlay .modal button.cancel {
  background-color: #BABABC;
}
html body #attachments_files > div, html body #datasheet_files > div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
html body #attachments_files span, html body #datasheet_files span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("//icon.ontbrand.com/regular/000/trash.svg") no-repeat center;
  background-size: 16px;
  opacity: 0.5;
  margin-right: 0.5rem;
  transition: all 0.15s;
}
html body #attachments_files span:hover, html body #datasheet_files span:hover {
  opacity: 1;
  cursor: pointer;
}
html body #attachments_files a, html body #datasheet_files a {
  display: inline-block;
}
html body.temp_auth main {
  position: relative;
  padding: 2.5rem;
  background-color: #F8FAFC;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
html body.temp_auth main form {
  position: relative;
  width: 32rem;
  background-color: #FFFFFF;
  padding: 2.5rem;
}
html body.temp_auth main form label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 14px;
  color: #1E293B;
  font-weight: 500;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
html body.temp_auth main form label .required::before {
  content: "* ";
  color: red;
}
html body.temp_auth main form input, html body.temp_auth main form select {
  height: 2.5rem;
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
}
html body.temp_auth main form input[type=submit] {
  background-color: #B09C69;
  color: #fff;
  border: none;
  margin: 2.5rem 0;
  transition: all 0.15s;
}
html body.temp_auth main form input[type=submit]:hover {
  background-color: #97834f;
}
html body.temp_auth main form h1 {
  margin: 2.5rem 0 1rem 0;
  font-weight: 600;
  color: #B09C69;
}
html body.temp_auth main form p {
  margin: 0 0 2.5rem 0;
  color: #94A3B8;
}
html body.temp_auth main form .logo img {
  width: 50%;
}
html body.temp_auth main form a {
  opacity: 0.75;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}
html body.temp_form main .content .logo, html body.temp_menu main .content .logo {
  width: 100%;
  position: relative;
}
html body.temp_form main .content .logo img, html body.temp_menu main .content .logo img {
  width: 100%;
}
html body.temp_form main .content .logo .company-logo, html body.temp_menu main .content .logo .company-logo {
  width: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
html body.temp_form main .content .logo .company-logo img, html body.temp_menu main .content .logo .company-logo img {
  height: 75%;
  width: unset;
}
html body.temp_form :disabled {
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.05);
}
html body.temp_form main {
  position: relative;
  padding: 2.5rem;
  background-color: #F8FAFC;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
html body.temp_form main .content {
  width: 64rem;
  background-color: #FFFFFF;
}
html body.temp_form main .content .inputs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2.5rem 2.5rem 8rem 2.5rem;
  position: relative;
}
html body.temp_form main .content .inputs .left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(50% - 1.25rem);
}
html body.temp_form main .content .inputs .right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(50% - 1.25rem);
}
html body.temp_form main .content .inputs .right #files .file {
  display: flex;
  align-items: center;
}
html body.temp_form main .content .inputs .right #files .file span {
  margin-right: 0.5rem;
  padding: 0.5rem;
  border-radius: 50%;
  color: #1E293B;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
html body.temp_form main .content .inputs .right #files .file span:hover {
  cursor: pointer;
}
html body.temp_form main .content .inputs.confirmation .return, html body.temp_form main .content .inputs.confirmation .finish {
  height: 4rem;
  border: none;
  margin: 0 0 2.5rem 0;
  width: calc(50% - 1.25rem) !important;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 0.375rem;
}
html body.temp_form main .content .inputs.confirmation .return {
  background-color: #BABABC;
  transition: all 0.15s;
}
html body.temp_form main .content .inputs.confirmation .return:hover {
  background-color: #58585A;
  color: #fff;
}
html body.temp_form main .content .inputs.confirmation .finish {
  background-color: #B09C69;
  transition: all 0.15s;
}
html body.temp_form main .content .inputs.confirmation .finish:hover {
  background-color: #97834f;
}
html body.temp_form main .content .inputs .ending {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: calc(100% - 5rem);
}
html body.temp_form main .content .inputs .ending input, html body.temp_form main .content .inputs .ending a {
  height: 4rem;
  border: none;
  margin: 0 0 2.5rem 0;
  width: calc(50% - 1.25rem) !important;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 0.375rem;
}
html body.temp_form main .content .inputs .ending input.cancel, html body.temp_form main .content .inputs .ending a.cancel {
  background-color: #BABABC;
  transition: all 0.15s;
}
html body.temp_form main .content .inputs .ending input.cancel:hover, html body.temp_form main .content .inputs .ending a.cancel:hover {
  background-color: #58585A;
  color: #fff;
}
html body.temp_form main .content .inputs .ending input.complete, html body.temp_form main .content .inputs .ending a.complete {
  background-color: #B09C69;
  cursor: pointer;
  transition: all 0.15s;
}
html body.temp_form main .content .inputs .ending input.complete:hover, html body.temp_form main .content .inputs .ending a.complete:hover {
  background-color: #97834f;
}
html body.temp_form main .content h1 {
  margin: 2.5rem 2.5rem 1rem 2.5rem;
  font-weight: 600;
  color: #B09C69;
}
html body.temp_form main .content p {
  margin: 0 2.5rem 0 2.5rem;
  color: #94A3B8;
}
html body.temp_form main .content .add {
  margin-bottom: 1rem;
  width: 100%;
}
html body.temp_form main .content .add a {
  color: #B09C69;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 0.5rem;
}
html body.temp_form main .content .add a span {
  margin-right: 0.5rem;
}
html body.temp_form main .content .inputs label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 14px;
  color: #1E293B;
  font-weight: 500;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
html body.temp_form main .content .inputs label .required::before {
  content: "* ";
  color: red;
}
html body.temp_form main .content .inputs .notice {
  font-size: 14px;
  margin-bottom: 0.5rem;
  font-style: italic;
}
html body.temp_form main .content .inputs input, html body.temp_form main .content .inputs select, html body.temp_form main .content .inputs textarea {
  height: 2.5rem;
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
}
html body.temp_form main .content .inputs textarea {
  resize: vertical;
  height: 12rem;
}
html body.temp_form main .content .inputs .text-area {
  height: 12rem;
  resize: vertical;
}
html body.temp_menu main {
  position: relative;
  padding: 2.5rem;
  background-color: #F8FAFC;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
html body.temp_menu main .content {
  width: 64rem;
  background-color: #FFFFFF;
}
html body.temp_menu main .content a.btn {
  display: block;
  width: 100%;
  height: 4rem;
  color: #1E293B;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s;
}
html body.temp_menu main .content a.btn:hover {
  background-color: #B09C69;
  color: #FFFFFF;
}
html body.temp_menu main .content a.btn:last-child {
  margin-bottom: 0;
  margin-right: 0 !important;
}
html body.temp_menu main .content .top {
  display: flex;
  justify-content: space-between;
}
html body.temp_menu main .content .top .left h1 {
  margin: 2.5rem 2.5rem 0 2.5rem;
  font-weight: 600;
  font-size: 1.5rem;
}
html body.temp_menu main .content .top .left h1 strong {
  color: #B09C69;
}
html body.temp_menu main .content .top .left h2 {
  margin: 0 0 0 2.5rem;
  font-weight: 400;
  font-size: 1rem;
}
html body.temp_menu main .content .top .left h2 strong {
  color: #B09C69;
}
html body.temp_menu main .content .top .right {
  margin: 2.5rem 2.5rem 0 2.5rem;
  display: flex;
}
html body.temp_menu main .content .top .right a {
  width: 12rem;
  margin-bottom: 0;
}
html body.temp_menu main .content .top .right a:first-child {
  margin-right: 2.5rem;
}
html body.temp_menu main .content .options {
  margin: 2.5rem;
  display: flex;
  justify-content: space-between;
}
html body.temp_menu main .content .options .left {
  width: calc(50% - 1.25rem);
}
html body.temp_menu main .content .options .right {
  width: calc(50% - 1.25rem);
}
html body.temp_dashboard main {
  width: 100%;
  height: 100%;
  background: #F1F5F9;
}
html body.temp_dashboard main .top {
  background-color: #FFFFFF;
}
html body.temp_dashboard main .top .bar {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95rem;
  margin: 0 auto;
}
html body.temp_dashboard main .top .bar .logo {
  height: 4.5rem;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #94A3B8;
}
html body.temp_dashboard main .top .bar .logo img {
  height: 80%;
  margin-right: 2.5rem;
}
html body.temp_dashboard main .top .bar .options a {
  margin-right: 2.5rem;
  text-decoration: none;
  color: #94A3B8;
  padding: 0.5rem;
  font-weight: 600;
}
html body.temp_dashboard main .top .bar .options a:last-child {
  margin-right: 0;
}
html body.temp_dashboard main .top .bar .options a:hover {
  color: #B09C69;
}
html body.temp_dashboard main .top .menu {
  height: 3rem;
  width: 95rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
html body.temp_dashboard main .top .menu a {
  margin-right: 2.5rem;
  text-decoration: none;
  color: #94A3B8;
  padding: 0.5rem;
  font-weight: 600;
}
html body.temp_dashboard main .top .menu a:last-child {
  margin-right: 0;
}
html body.temp_dashboard main .top .menu a:hover {
  color: #B09C69;
}
html body.temp_dashboard main .content {
  height: calc(100% - 14.5rem);
  width: calc(100% - 7rem);
  margin: 3.5rem;
  padding: 1.5rem;
  background-color: #FFFFFF;
  overflow-y: auto;
}
html body.temp_dashboard main .content .data-row .margin-remove {
  padding: 0.25rem 0.5rem !important;
}
html body.temp_dashboard main .content .data-row a.plus {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("//icon.ontbrand.com/regular/000/plus-square.svg") no-repeat center;
  background-size: 16px;
  opacity: 0.5;
}
html body.temp_dashboard main .content .data-row a.plus.open {
  background-image: url("//icon.ontbrand.com/regular/000/minus-square.svg");
}
html body.temp_dashboard main .content .data-row a.plus:hover {
  opacity: 1;
}
html body.temp_dashboard main .content .bar {
  display: flex;
  justify-content: space-between;
}
html body.temp_dashboard main .content .bar .options {
  display: flex;
  align-items: center;
}
html body.temp_dashboard main .content .bar .options select#company_filter, html body.temp_dashboard main .content .bar .options select#company_filter_archive {
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  margin-right: 1.5rem;
  transition: all 0.15s;
}
html body.temp_dashboard main .content .bar .options a {
  text-decoration: none;
  color: #94A3B8;
  margin-bottom: 0;
}
html body.temp_dashboard main .content .bar .options a:last-child {
  margin-right: 2.5rem;
}
html body.temp_dashboard main .content .bar .options a:hover {
  color: #B09C69;
}
html body.temp_dashboard main .content .bar .options a.button {
  margin-right: 0;
  transition: all 0.15s;
  height: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  margin-bottom: 0;
  background-color: #B09C69;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 2.5rem;
  font-size: 14px;
}
html body.temp_dashboard main .content .bar .options a.button:last-child {
  margin-left: 2.5rem;
}
html body.temp_dashboard main .content .bar .options a.button:hover {
  background-color: #97834f;
}
html body.temp_dashboard main .content .bar .options input {
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  margin-left: 1.5rem;
  margin-bottom: 0;
  transition: all 0.15s;
}
html body.temp_dashboard main .content .bar .options input[type=submit] {
  background-color: #B09C69;
  padding: 0 2rem;
}
html body.temp_dashboard main .content .bar .options input[type=submit]:hover {
  background-color: #97834f;
}
html body.temp_dashboard main .content table {
  width: 100%;
  border-collapse: collapse;
}
html body.temp_dashboard main .content table thead tr {
  background-color: #58585A;
}
html body.temp_dashboard main .content table thead tr th {
  padding: 0.5rem 0.5rem;
  text-align: left;
  font-weight: 600;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(100, 116, 139, 0.1019607843);
  font-size: 14px;
  white-space: nowrap;
}
html body.temp_dashboard main .content table thead tr th.extend {
  width: 100%;
}
html body.temp_dashboard main .content table thead tr th.max-1 {
  width: 6.75rem;
}
html body.temp_dashboard main .content table thead tr th.max-2 {
  width: 11rem;
}
html body.temp_dashboard main .content table tbody tr.data-row:nth-of-type(4n+1), html body.temp_dashboard main .content table tbody tr.data-row:nth-of-type(4n+2) {
  background-color: #F1F5F9;
}
html body.temp_dashboard main .content table tbody tr .cpn-input {
  transition: all 0.1s;
}
html body.temp_dashboard main .content table tbody tr td {
  padding: 1rem 0.5rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  white-space: nowrap;
}
html body.temp_dashboard main .content table tbody tr td.actions-list {
  padding: 0;
}
html body.temp_dashboard main .content table tbody tr td.actions-list a, html body.temp_dashboard main .content table tbody tr td.actions-list > button {
  background-color: transparent;
  border: none;
  padding: 0.25rem;
  font-size: 1.25rem;
  border-radius: 1rem;
  transition: all 0.15s;
}
html body.temp_dashboard main .content table tbody tr td.actions-list a:hover, html body.temp_dashboard main .content table tbody tr td.actions-list > button:hover {
  cursor: pointer;
}
html body.temp_dashboard main .content table tbody tr td.select {
  width: 8rem;
  white-space: unset;
}
html body.temp_dashboard main .content table tbody tr td.select select {
  padding: 0.5rem 0.5rem;
  width: 7rem;
}
html body.temp_dashboard main .content table tbody tr td.select.pending {
  background-color: #00b0f0;
}
html body.temp_dashboard main .content table tbody tr td.select.cancel {
  background-color: yellow;
}
html body.temp_dashboard main .content table tbody tr td.select.fault {
  background-color: #ee9512;
}
html body.temp_dashboard main .content table tbody tr td.select.ready {
  background-color: #00b050;
}
html body.temp_dashboard main .content table tbody tr td.select.on_hold {
  background-color: #c9c9c9;
}
html body.temp_dashboard main .content table tbody tr td.select.draft {
  background-color: #00b050;
}
html body.temp_dashboard main .content table tbody tr td.select.correct {
  background-color: #00b050;
}
html body.temp_dashboard main .content table tbody tr td.select.error {
  background-color: red;
}
html body.temp_dashboard main .content table tbody tr td button.enlist-accept, html body.temp_dashboard main .content table tbody tr td button.enlist-deny {
  transition: all 0.15s;
  height: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background-color: #B09C69;
  color: #FFFFFF;
  display: inline-block;
}
html body.temp_dashboard main .content table tbody tr td button.enlist-accept:hover, html body.temp_dashboard main .content table tbody tr td button.enlist-deny:hover {
  background-color: #97834f;
}
html body.temp_dashboard main .content table tbody tr td .inside {
  padding: 1rem;
}
html body.temp_dashboard main .content table tbody tr td .inside ol, html body.temp_dashboard main .content table tbody tr td .inside ul {
  list-style-type: disc;
  list-style-position: inside;
}
html body.temp_dashboard main .content table tbody tr td .inside ol li, html body.temp_dashboard main .content table tbody tr td .inside ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
html body.temp_dashboard main .content table tbody tr td .inside ol li .remove-company-conn, html body.temp_dashboard main .content table tbody tr td .inside ul li .remove-company-conn {
  display: inline-block;
  margin-left: 0.5rem;
  opacity: 0.5;
  transition: all 0.05s;
  color: #ff0000;
  background: url("//icon.ontbrand.com/regular/ff0000/backspace.svg") no-repeat center;
  background-size: 16px;
  width: 16px;
  height: 16px;
}
html body.temp_dashboard main .content table tbody tr td .inside ol li .remove-company-conn:hover, html body.temp_dashboard main .content table tbody tr td .inside ul li .remove-company-conn:hover {
  opacity: 1;
  cursor: pointer;
}
html body.temp_dashboard main .content table tbody tr td .inside form .cols {
  display: flex;
}
html body.temp_dashboard main .content table tbody tr td .inside form .cols .col {
  width: 24rem;
  margin-right: 2.5rem;
}
html body.temp_dashboard main .content table tbody tr td .inside form input, html body.temp_dashboard main .content table tbody tr td .inside form select {
  height: 2.5rem;
  width: 24rem;
  display: block;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
}
html body.temp_dashboard main .content table tbody tr td .inside form label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 14px;
  color: #1E293B;
  font-weight: 500;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}

.button-style {
  margin-right: 0;
  transition: all 0.15s;
  height: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(100, 116, 139, 0.1019607843);
  margin-bottom: 0;
  background-color: #B09C69;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 2.5rem;
  font-size: 14px;
}

.button-temp {
  background-color: #B09C69;
  color: #FFFFFF;
  border: none;
  transition: all 0.1s;
  height: 2.5rem;
}
.button-temp:hover {
  background-color: #97834f;
}

.button-gray {
  background-color: #58585A;
}
.button-gray:hover {
  background-color: lighter(#58585A, 100);
}

.button-full {
  width: 100%;
}

.button-half {
  width: 12rem;
}

.button-set {
  width: 24rem;
}

.error {
  color: rgba(255, 0, 0, 0.5) !important;
}

.confirm span {
  color: rgba(255, 0, 0, 0.5) !important;
}/*# sourceMappingURL=styling.css.map */