html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--primary-font);
  display: flex;
  flex-direction: column;
  padding: 0;
}

@media print {
  html {
    display: block;
    overflow: auto;
    height: auto;
  }
  html body {
    display: block;
    height: auto;
  }
  html body > header {
    display: none !important;
  }
}

@media print {
  html {
    display: block;
    overflow: auto;
    height: auto;
  }
  html body {
    display: block;
    height: auto;
  }
  html body > header {
    display: none !important;
  }
}

*::-webkit-scrollbar {
  background: #ffffff;
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-thumb {
  background: var(--scrollbar-fill);
  width: 8px;
  max-width: 8px;
  border-radius: 21px;
  height: 8px;
  max-height: 8px;
}

.custom-tooltip {
  background-color: #FFFFFF !important;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  padding: 20px !important;
}

.login-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.login-wrap .bg {
  position: absolute;
  height: 150%;
  width: 150%;
  background: url("/images/login_bg.svg") repeat 100px;
  -webkit-animation: animatedBackground 150s linear infinite;
  -moz-animation: animatedBackground 150s linear infinite;
  animation: animatedBackground 150s linear infinite;
}
@keyframes animatedBackground {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: 50% -50%;
  }
}
@-webkit-keyframes animatedBackground {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: 50% -50%;
  }
}
.login-wrap > .login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--light-font);
  box-shadow: var(--shadow);
  padding: 70px;
  border-radius: 6px;
}
.login-wrap > .login .title {
  display: flex;
  align-items: center;
  gap: 20px;
}
.login-wrap > .login .title .app {
  font-size: 50px;
  position: relative;
}
.login-wrap > .login .title .app .pepper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
}
.login-wrap > .login .title .separator {
  background: var(--primary);
  width: 2px;
  height: 48px;
}
.login-wrap > .login .title .powered {
  opacity: 0.53;
}
.login-wrap > .login form {
  margin-top: 60px;
}
.login-wrap > .login form label,
.login-wrap > .login form input {
  border: 0;
  display: block;
  width: 100%;
}
.login-wrap > .login form input {
  border: solid 1px #A6A6A6;
}
.login-wrap > .login form .password-wrap {
  position: relative;
}
.login-wrap > .login form .password-wrap button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.login-wrap > .login form .password-wrap button .material-icons {
  font-size: 20px;
  width: 20px;
}
.login-wrap > .login .forgot-password,
.login-wrap > .login .remember-checkbox {
  text-align: right;
  margin-top: 20px;
}
.login-wrap > .login .forgot-password a,
.login-wrap > .login .remember-checkbox a {
  color: var(--primary-font);
}
.login-wrap > .login button.primary {
  margin-top: 60px;
  width: 100%;
}

hr {
  border-top-color: var(--primary);
  width: 100%;
  margin-bottom: 10px;
}

.body-content {
  width: 100%;
  margin: 0;
  padding: 0;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.body-content.old {
  padding: 20px;
  overflow-y: scroll;
}

.view-header {
  flex: 0 0 60px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
}
.view-header .right {
  margin-left: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.view-header .back-button {
  height: 100% !important;
  border-radius: 0 !important;
}
.view-header .separator {
  width: 1px;
  height: 80%;
  background: var(--primary);
}

.view-title {
  font-size: 30px;
  font-weight: 800;
  padding: 30px 32px 0 32px;
  display: flex;
  align-items: center;
}
.view-title.sub {
  font-size: 24px;
  padding-top: 10px;
}
.view-title .right {
  margin-left: auto;
}

.view-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.view-content.padding {
  overflow: auto;
  padding: 40px 32px;
}
.view-content.padding.no-bottom {
  padding-bottom: 0;
}
.view-content.no-scroll {
  overflow: hidden;
}
.view-content .detail-header {
  display: flex;
  align-items: center;
  padding: 0 30px;
  background: var(--light-bg);
  box-shadow: var(--shadow);
  height: 160px;
  border-radius: 6px 6px 0px 0px;
  gap: 20px;
  overflow-x: scroll;
  flex: 0 0 auto;
}
.view-content .detail-header.transparent {
  background: none;
  box-shadow: none;
  overflow: hidden;
}
.view-content .detail-header .edit .material-icons {
  color: var(--primary-font);
}
.view-content .detail-header .detail {
  padding: 0 30px;
  position: relative;
  margin-left: 20px;
}
.view-content .detail-header .detail .list-title {
  white-space: nowrap;
}
.view-content .detail-header .detail .list-body {
  display: flex;
  justify-content: space-between;
}
.view-content .detail-header .detail + .detail:after {
  content: " ";
  position: absolute;
  left: 0;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background: var(--primary);
}
.view-content .detail-header .actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.view-content .detail-header .actions .dashboard .material-icons-outlined {
  color: var(--secondary);
  font-size: 40px;
}
.view-content .detail-header .actions .download .material-icons-outlined {
  color: var(--primary);
  font-size: 40px;
}
.view-content .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(530px, 1fr));
  gap: 30px;
  padding: 30px;
  overflow: auto;
}
.view-content .grid .view-title {
  grid-column: span 3;
  height: 30px;
}
.view-content .grid hr {
  height: 1px;
  grid-column: span 3;
}
.view-content > hr {
  margin-left: 32px;
  width: auto;
  margin-right: 32px;
}
.view-content .title-wrap {
  display: flex;
  align-items: center;
  padding: 8px 32px 0 32px;
}
.view-content .title-wrap > div:last-child {
  margin-left: auto;
}

.list-detail {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  align-items: stretch;
  flex: 1 1;
  gap: 20px;
  padding: 20px 32px;
  overflow: hidden;
}
.list-detail.even-split {
  grid-template-columns: 1fr 1fr;
}
.list-detail.first-wider {
  grid-template-columns: 3fr 1.5fr;
}
.list-detail .list {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border-radius: 6px;
}
.list-detail .list > .header {
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  padding: 0 38px;
  text-transform: uppercase;
}
.list-detail .list > .items {
  flex: 1 1;
  overflow: auto;
  overflow-x: hidden;
  display: block;
}
.list-detail .list table {
  width: 100%;
}
.list-detail .list table th {
  font-size: 14px;
  font-weight: 700;
  height: 60px;
  white-space: nowrap;
}
.list-detail .list table td {
  height: 78px;
}
.list-detail .list table th,
.list-detail .list table td {
  padding: 0 20px;
}
.list-detail .list table tbody {
  font-weight: 600;
}
.list-detail .list table tbody tr {
  background: var(--light-bg);
}
.list-detail .list table tbody tr.excluded {
  opacity: 0.5;
}
.list-detail .list table tbody tr:hover {
  background: var(--primary-highlight);
}
.list-detail .detail {
  flex: 1 1;
  border-radius: 6px;
  background: var(--light-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.list-detail .detail > .header {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 44px 55px 0 55px;
}
.list-detail .detail > .header .actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.list-detail .detail > .header .comments {
  align-self: flex-start;
  margin-left: 40px;
}
.list-detail .detail > .content {
  flex: 1 1;
  overflow: auto;
  overflow-x: hidden;
  padding: 0 55px 44px 55px;
}
.list-detail .detail > .content .extra-details {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 30px 0;
}
.list-detail .detail > .content .extra-details .list-title {
  white-space: nowrap;
}
.list-detail .detail > .content .extra-details .separator {
  align-self: stretch;
  width: 1px;
  background: var(--primary);
}
.list-detail .detail > .content .edit-values {
  display: flex;
  align-items: center;
  gap: 20px;
}
.list-detail .detail > .content textarea {
  width: 100%;
  resize: none;
}

.side-panel-wrapper {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 460px;
  box-shadow: var(--shadow-alt);
  background: var(--bg);
  transform: translate(110%);
  transition: all 330ms ease-out;
}
.side-panel-wrapper.open {
  transform: translateX(0);
}
.side-panel-wrapper.scroll .content {
  overflow-x: hidden;
  overflow-y: auto;
}

.side-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.side-panel > .header {
  flex: 0 0 100px;
  background: var(--header-bg);
  color: var(--light-font);
  display: flex;
  align-items: center;
  padding: 0 16px 0 26px;
}
.side-panel > .header .button {
  margin-left: auto;
}
.side-panel > .content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
.side-panel > .content form {
  padding: 20px 60px;
}
.side-panel > .content form label {
  display: block;
}
.side-panel > .content form input,
.side-panel > .content form select,
.side-panel > .content form .multi-select {
  width: 100%;
  margin-bottom: 30px;
}
.side-panel > .content form button {
  width: 100%;
}
.side-panel > .content form .sub-body {
  margin-bottom: 10px;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=password],
input[type=date],
input[type=number],
select {
  height: 40px;
  border: solid 1px var(--primary-font);
  border-radius: 3px;
  background: var(--bg);
  padding: 0 8px;
}
input[type=email]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  box-shadow: 0px 0px 10px 1px var(--primary);
}
input[type=email].login,
input[type=text].login,
input[type=tel].login,
input[type=password].login,
input[type=date].login,
input[type=number].login,
select.login {
  background: #ffffff;
  height: 40px;
}

textarea {
  border: solid 1px var(--primary-font);
  border-radius: 3px;
  background: var(--light-bg);
  padding: 10px;
}
textarea:focus {
  outline: none;
  box-shadow: 0px 0px 10px 1px var(--primary);
}

select {
  background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  -webkit-appearance: auto;
  -moz-appearance: listbox;
  appearance: auto;
}

label.file-input {
  height: 140px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: solid 3px var(--primary);
  border-radius: 7px;
  background: var(--primary-light-bg);
  width: 100%;
  max-width: 340px;
  position: relative;
}
label.file-input span {
  font-size: 12px;
  font-weight: 400;
}
label.file-input .material-icons {
  color: var(--primary);
  font-size: 60px;
}
label.file-input input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
}

.search-input {
  position: relative;
}
.search-input.alt input {
  background: var(--bg);
}
.search-input input {
  border: none;
  background: var(--light-bg);
}
.search-input input {
  padding-left: 36px;
  width: 100%;
}
.search-input .material-icons {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.chip {
  height: 26px;
  border-radius: 18px;
  color: var(--light-font);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  border: solid 1px transparent;
  border: solid 1px #000000;
  color: #000000;
  background: none;
}
.chip.selected {
  color: var(--light-font);
  border-color: transparent;
}
.chip.selected.comments {
  background: var(--select-chip);
}
.chip.selected.approved {
  background: var(--primary);
}
.chip.selected.data-review {
  background: var(--scrollbar-fill);
}
.chip.selected.submitted {
  background: var(--alt-status);
}
.chip.selected.hr-department {
  background: #2C61A5;
}
.chip.selected.job-family {
  background: var(--secondary);
  color: var(--light-font);
}
.chip.selected.survey {
  background: var(--survey-chip);
  color: var(--light-font);
}
.chip.selected.organization {
  background: var(--survey-chip);
  color: var(--light-font);
}
.chip.selected.select {
  background: var(--select-chip);
  color: var(--light-font);
}
.chip.selected.state {
  background: var(--state-chip);
}
.chip.selected.business-unit {
  background: var(--business-unit-chip);
}
.chip.selected.pay-plan {
  background: var(--pay-plan-chip);
}
.chip.selected.pre-configured {
  background: var(--pre-configured-chip);
}
.chip.selected.department {
  background: var(--department-chip);
}
.chip.selected.assigned-to {
  background: var(--assigned-to-chip);
}
.chip.selected.sorting .material-icons,
.chip.selected.sorting .material-icons-outlined {
  color: var(--primary) !important;
  font-size: 22px !important;
}
.chip.selected.sorting .material-icons.main-chip-content,
.chip.selected.sorting .material-icons-outlined.main-chip-content {
  font-size: 22px !important;
}
.chip.selected .material-icons,
.chip.selected .material-icons-outlined {
  color: var(--light-font) !important;
}
.chip .material-icons,
.chip .material-icons-outlined,
.chip .material-symbols-outlined {
  font-size: 16px !important;
}

.dashboard-card {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  border-radius: 6px;
  overflow: hidden;
}
.dashboard-card > .header {
  flex: 0 0 60px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-card > .content {
  background: var(--list-bg);
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.dashboard-feature-card {
  background: var(--header-bg);
  color: var(--light-font);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.pay-plans-view {
  display: flex;
  gap: 40px;
  padding: 0px 32px 30px 32px;
  align-items: stretch;
  flex: 1 1;
  overflow: hidden;
}
.pay-plans-view .proposed,
.pay-plans-view .legacy {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pay-plans-view .proposed .sub-head,
.pay-plans-view .legacy .sub-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 70px;
}
.pay-plans-view .proposed .list,
.pay-plans-view .legacy .list {
  flex: 1 1;
  overflow: auto;
  background: var(--light-bg);
}
.pay-plans-view .proposed {
  flex: 3 3;
}
.pay-plans-view .legacy {
  flex: 2 2;
}

.tabs-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  width: 100%;
}
.tabs-wrapper .tabs {
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
.tabs-wrapper .tabs:after {
  position: absolute;
  content: " ";
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary);
  box-shadow: 0px 5px 14px rgba(14, 21, 42, 0.2);
}
.tabs-wrapper .tabs > button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  height: 54px;
  font-size: 12px;
  font-weight: 600;
  padding: 0 40px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.tabs-wrapper .tabs > button.active {
  background: var(--primary);
  color: var(--light-font);
  font-size: 14px;
  font-weight: 700;
}
.tabs-wrapper .tabs-content {
  flex: 1 1;
}

.table-wrap {
  flex: 1 1;
  overflow: auto;
}
.table-wrap .table {
  display: grid;
  position: relative;
  margin-bottom: 0;
}
.table-wrap .table .head {
  white-space: nowrap;
  height: 60px;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1;
}
.table-wrap .table > div {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.table-wrap .table > div.job-details {
  flex-direction: column;
  align-items: flex-start;
}
.table-wrap .table .button.icon {
  color: var(--primary);
}
.table-wrap .table .button.icon .material-icons {
  font-size: 28px;
}
.table-wrap table {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
}
.table-wrap table thead th {
  padding: 0 20px;
  background: var(--primary);
  color: var(--light-font);
  height: 84px;
  position: sticky;
  top: 0;
}
.table-wrap table tbody tr td {
  height: 65px;
  padding: 0 20px;
}
.table-wrap table tbody tr td.link {
  color: var(--secondary);
  cursor: pointer;
}
.table-wrap table tbody tr:nth-child(odd) {
  background: var(--light-bg);
}

input[type=checkbox] {
  margin: 0;
  border: solid 1px var(--primary-font);
  border-radius: 2px;
  height: 18px;
  width: 18px;
}

label {
  margin-bottom: 0;
}

.reports-view {
  padding: 30px 30px 0 30px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
  overflow: hidden;
}
.reports-view .search-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reports-view .search-controls .search-input {
  width: 266px;
}
.reports-view .reports-list-wrapper {
  flex: 1 1;
  position: relative;
  margin-top: 10px;
}
.reports-view .reports-list-wrapper .reports-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  white-space: nowrap;
  background: var(--light-bg);
}
.reports-view .reports-list-wrapper .reports-list table tr {
  height: 64px;
}
.reports-view .reports-list-wrapper .reports-list table tr:hover {
  background: var(--primary-highlight);
}
.reports-view .reports-list-wrapper .reports-list table tr td {
  padding: 0 20px;
}
.reports-view .reports-list-wrapper .reports-list > div {
  height: 64px;
  display: flex;
  align-items: center;
  cursor: default;
}
.reports-view .reports-list-wrapper .reports-list .favorite {
  padding-left: 10px;
}
.reports-view .reports-list-wrapper .reports-list .favorite .material-icons {
  color: var(--new-status-indicator);
}

#matchesSelectionPanel .side-panel > .content {
  overflow: hidden;
  overflow-y: scroll;
}

.dotmenu-container {
  display: table;
}
.dotmenu-container div {
  display: table-cell;
  padding: 0 5px;
}
.dotmenu-container div .trigger {
  vertical-align: middle;
}
.dotmenu-container div .trigger button {
  margin-top: 5px;
  margin-left: 20px;
}

.markup-container table {
  margin-bottom: 10px;
}
.markup-container table th, .markup-container table td {
  border: 1px solid #d0d7de;
  padding: 5px 10px;
}
.markup-container table thead tr {
  background-color: var(--light-bg);
}
.markup-container table tbody tr:nth-child(odd) {
  background-color: var(--light-bg);
}
.markup-container table tbody tr:nth-child(even) {
  background-color: var(--primary-highlight);
}

.login-form-title {
  font-family: "Inter", sans-serif;
  text-align: center;
  margin-bottom: 15px;
}

/*# sourceMappingURL=global.css.map */
