/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./styles/scss/console.scss ***!
  \***********************************************************************************************************************************************/
/** Variables */
/** General */
body, html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
}

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

details.show-marker > summary {
  list-style: revert;
}

details.show-marker > summary::-webkit-details-marker {
  display: initial;
}

body {
  background-color: #ECEAEA;
  font-size: 14px;
  color: #333;
  position: relative;
  min-width: 100vw;
  overflow-x: hidden;
}

.console-main {
  width: 1440px;
  margin: auto;
}

/** Console body */
.console {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, auto);
  gap: 24px;
  margin: 0 auto;
  padding: 0 132px 0 132px;
  width: 1176px;
}

h1 {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  line-height: 130%;
}

.grid-column-full {
  grid-column: -1/1;
}

.grid-column-half {
  grid-column: span 6;
}

.grid-column-span-4 {
  grid-column: span 4;
}

.login-app {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  max-width: 445px;
  text-align: center;
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  padding-bottom: 20px;
}
.login-app .error-code {
  display: flex;
  flex-direction: column;
  margin-top: 20vh;
  font-weight: 300;
  font-size: 18px;
}
.login-app .error-code .button {
  width: 180px;
  margin: 28px auto 0 auto;
}
.login-app .error-page {
  display: flex;
  flex-direction: column;
  margin-top: 20vh;
  font-weight: 300;
  font-size: 18px;
}
.login-app .error-page span {
  position: relative;
  min-width: 500px;
  left: 50%;
  transform: translateX(-50%);
}
.login-app .error-page .button {
  width: 162px;
  margin: 28px auto 0 auto;
}
.login-app .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.login-app a {
  color: #007FFF;
  cursor: pointer;
}
.login-app input {
  width: 100%;
  border-radius: 4px;
  border: 1px #bbb solid;
  padding: 11px 10px;
  line-height: 22px;
  font-size: 17px;
  box-sizing: border-box;
  transition: box-shadow 0.2s, border 0.2s;
}
.login-app input:hover {
  border-color: rgba(29, 28, 29, 0.6);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}
.login-app input:focus {
  border: 1px #0063cc solid;
  box-shadow: 0px 0px 0px 4px #bde1f1;
}
.login-app input:read-only {
  pointer-events: none;
}
.login-app input::placeholder {
  color: #616061;
}
.login-app button,
.login-app .button {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px transparent solid;
  border-radius: 4px;
  border: 0;
  padding: 12px 10px;
  line-height: 22px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  background-color: #007FFF;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  gap: 8px;
  transition: background-color 80ms linear, box-shadow 80ms linear, border-color 80ms linear;
}
.login-app button.light,
.login-app .button.light {
  background-color: #fff;
  color: rgb(29, 28, 29);
  border: 1px rgba(29, 28, 29, 0.3) solid;
}
.login-app button.light:hover,
.login-app .button.light:hover {
  background-color: rgb(248, 248, 248);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}
.login-app button.light:active, .login-app button.light:focus,
.login-app .button.light:active,
.login-app .button.light:focus {
  background-color: rgb(248, 248, 248);
  border-color: rgba(29, 28, 29, 0.5019607843);
}
.login-app button.sso,
.login-app .button.sso {
  padding: 10px;
  border: 2px #bbb solid;
}
.login-app button.sso:hover,
.login-app .button.sso:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}
.login-app button:hover,
.login-app .button:hover {
  background-color: #0068D0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}
.login-app button:focus,
.login-app .button:focus {
  box-shadow: 0 0 0 4px rgba(0, 116, 233, 0.2);
}
.login-app button:active,
.login-app .button:active {
  background-color: #005AB4;
}
.login-app button[disabled],
.login-app .button[disabled] {
  opacity: 0.7;
}
.login-app button[data-loading=true],
.login-app .button[data-loading=true] {
  background-color: #DDDDDD !important;
  color: transparent !important;
  border-color: #DDDDDD !important;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
.login-app button[data-loading=true] > *,
.login-app .button[data-loading=true] > * {
  display: none;
}
.login-app button[data-loading=true]:after,
.login-app .button[data-loading=true]:after {
  content: " ";
  background-image: url(/s/spin-grey-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  width: 24px;
  height: 24px;
  position: absolute;
  animation: spin 0.8s infinite linear;
}
.login-app button[data-waiting=true],
.login-app .button[data-waiting=true] {
  background-color: #F2F4F7;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
  color: #D0D5DD;
  border: 1px #D0D5DD solid;
}
.login-app button img,
.login-app .button img {
  max-height: 20px;
}
.login-app input.error {
  border-color: red !important;
}
.login-app input.error:focus {
  box-shadow: 0px 0px 0px 4px #F9C0CE !important;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.console-search-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px);
  pointer-events: auto;
  z-index: 1;
}

.details-text-mini {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.interface-options {
  display: flex;
  background: #F2F4F7;
  border: 1px solid #20033c;
  border-radius: 8px;
  justify-content: space-around;
  padding: 12px 16px;
}
.interface-options div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.interface-options div img {
  width: 112px;
  height: 80px;
  margin: auto 0;
}
.interface-options div.inline {
  flex-direction: row;
}

/** Search */
.console-search {
  position: fixed;
  display: flex;
  width: 688px;
  padding: 4px;
  justify-content: space-between;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  top: 16px;
  border-radius: 1000px;
  background: var(--Gray-25, #FCFCFD);
  z-index: 1;
}
.console-search > img {
  width: 24px;
  height: 24px;
  padding: 8px 6px;
  cursor: pointer;
}
.console-search > img:last-of-type {
  margin-left: 4px;
  cursor: pointer;
}
.console-search > input {
  flex-grow: 1;
  height: 100%;
  outline: none;
  box-shadow: none;
  border: none;
  background: inherit;
  color: var(--Gray-900, #101828);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.console-search > span {
  color: var(--Gray-400, #98A2B3);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
}

.search-results {
  z-index: 1;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 688px;
  margin: 80px auto 0 auto;
  left: 0;
  right: 0;
  padding: 24px 32px;
  gap: 20px;
  border-radius: 24px;
  background: #FFF;
  box-sizing: border-box;
  overflow-y: scroll;
}
.search-results a {
  text-decoration: none;
  color: #475467;
}
.search-results .search-results-link > span {
  display: inline-block;
  height: 10px;
  width: 10px;
  background: url("/drop.svg") no-repeat;
  transform: rotate(-90deg);
}

.search-result-item {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  align-self: stretch;
  gap: 16px;
}
.search-result-item span {
  display: block;
}
.search-result-item span:first-of-type {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.search-result-item span:last-of-type {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.search-result-item .icon {
  width: 48px;
  height: 48px;
  padding: 1.5px;
  border-radius: 8px;
}
.search-result-item .icon span {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 42.75px;
  letter-spacing: -0.48px;
}
.search-result-item .icon span.short {
  font-size: 24px;
}
.search-result-item .icon span.long {
  font-size: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/** Header */
.header {
  position: sticky;
  top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -0.14px;
}
.header.back {
  display: flex;
  align-content: center;
  grid-row-start: 1;
  grid-column: 1/2;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: rgba(222, 218, 226, 0.6);
  padding: 6px;
  z-index: 1;
}
.header.actions {
  display: flex;
  align-items: center;
  background-color: rgba(222, 218, 226, 0.6);
  backdrop-filter: blur(10px);
  grid-row-start: 1;
  grid-column: 5/9;
  place-self: center;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  border-radius: 24px;
  z-index: 1;
}
.header.actions > span, .header.actions > a {
  padding: 6px 24px;
  border-radius: 10000px;
}
.header.actions > span:last-child {
  height: 24px;
  width: 24px;
  padding: 2px 12px;
}
.header.actions > a {
  text-decoration: none;
  color: #000;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.header.actions > a.selected-pill {
  background: #FFF;
  animation: 3s infinite alternate slide-in;
}
.header.actions > a:visited {
  color: inherit;
  text-decoration: none;
}
.header.actions > a:hover {
  text-decoration: none;
}

.more {
  display: flex;
  align-content: center;
  grid-row-start: 1;
  grid-column: 12;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: rgba(222, 218, 226, 0.6);
  padding: 6px;
  margin-left: auto;
  z-index: 1;
}
.more:hover {
  cursor: pointer;
}

.console-jumpto,
.data-item {
  text-align: center;
  border-radius: 16px;
}

/** Jump to section */
.console-jumpto {
  grid-column: span 2;
  height: 228px;
}
.console-jumpto > div {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-style: normal;
  text-align: left;
}
.console-jumpto > div:nth-last-child(2) {
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.console-jumpto > div:last-of-type {
  color: #475467;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/** Pulse section */
.data-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-column: span 4;
  height: 132px;
  border: 1px solid #20033c;
  text-decoration: none;
  padding: 24px 24px 20px 24px;
  justify-content: space-between;
  background-color: #FFF;
}
.data-item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.data-item .top > div:first-of-type {
  color: #101828;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.data-item .top > div:not(:first-of-type) {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.data-item .bottom {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
.data-item .bottom .bottom-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.data-item .bottom .bottom-left .subtitle {
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  width: 176px;
  text-align: left;
}
.data-item .bottom .bottom-left .data-number {
  display: flex;
  width: 176px;
  height: 56px;
  flex-direction: row;
  justify-content: left;
  color: #101828;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.96px;
}
.data-item .bottom .bottom-left .data-number > div {
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  align-content: flex-end;
  padding-left: 5px;
}

.time-period {
  color: #667085;
  text-align: right;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
}

.team-members .information, .activity-item .information {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 288px;
  color: #20033c;
}
.team-members .information .details, .activity-item .information .details {
  display: flex;
  width: 192px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.team-members .information .details .name, .activity-item .information .details .name {
  align-self: stretch;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-align: left;
}
.team-members .information .details .email, .activity-item .information .details .email {
  align-self: stretch;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
}
.team-members .activity-background, .activity-item .activity-background {
  display: flex;
  width: 88px;
  padding: 4px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: #F79009;
}
.team-members .activity-background .last-activity, .activity-item .activity-background .last-activity {
  color: #FFF;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.team-members .activity-background.green, .activity-item .activity-background.green {
  background: #17B26A;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #20033c;
}
.activity-item .extra {
  text-align: right;
}

/** Console body titles */
.console-summary-header {
  text-decoration: none;
  flex-direction: row;
  display: flex;
  align-items: center;
  border-radius: 5px;
  height: 38px;
  color: #20033c;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 38px;
  padding-top: 48px;
  padding-bottom: 8px;
}

.console-summary-subheader {
  flex-direction: row;
  display: flex;
  align-items: center;
  border-radius: 5px;
  height: 16px;
  color: #4c5463;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 26px;
  padding-top: 14px;
}

/** SVGs */
#right-arrow {
  display: block;
  padding-top: 9px;
}

/** Data page */
.data {
  display: flex;
  flex-direction: row;
  grid-row-start: 2;
  grid-column: 5/9;
  align-items: center;
  padding: 4px;
  margin-top: 16px;
  place-self: center;
  border-radius: 6px;
}
.data .header-option {
  display: flex;
  width: 80px;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s ease, border-radius 0.3s ease;
  background-color: rgba(222, 218, 226, 0.6);
  backdrop-filter: blur(10px);
  letter-spacing: -0.14px;
  font-weight: 300;
}
.data .header-option.active {
  border-radius: 4px;
  background: #FFF;
}

.data-summary-info {
  grid-row-start: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}
.data-summary-info .title {
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
}
.data-summary-info .user-data {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.data-summary-info .user-data .users {
  color: #101828;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.72px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-content: flex-end;
}
.data-summary-info .user-data .users > div {
  align-content: flex-end;
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding-left: 4px;
}
.data-summary-info .user-data .export-csv {
  align-self: end;
}
.data-summary-info .user-data .export-csv button {
  padding: 8px 16px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #20033c;
}
.data-summary-info .user-data .export-csv button.general-button {
  background-color: #FF692E;
}
.data-summary-info .user-data .export-csv button.general-button:hover {
  background-color: #d54504;
}
.data-summary-info .user-data .export-csv button.teams-button {
  background-color: #007FFF;
}
.data-summary-info .user-data .export-csv button.teams-button:hover {
  background-color: #0566cd;
}
.data-summary-info .user-data .export-csv button.users-button {
  background-color: #388E3C;
}
.data-summary-info .user-data .export-csv button.users-button:hover {
  background-color: #2d6e2f;
}
.data-summary-info .period {
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.data-chart {
  grid-row-start: 5;
}

.metrics-charts {
  grid-column: -1/1;
  display: flex;
  width: 100%;
  gap: 32px;
}

.metrics-big-charts {
  grid-column: span 6;
  display: flex;
  width: 100%;
  gap: 32px;
}
.metrics-big-charts > div {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px #EAECF0 solid;
  overflow: hidden;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.project-card > h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px #EAECF0 solid;
}

.table-search > input {
  box-sizing: border-box;
  font-size: 25px;
  width: 100%;
  background: rgba(222, 218, 226, 0.6);
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid black;
}

.table-count {
  display: flex;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #667085;
  line-height: 1em;
  font-variant-numeric: tabular-nums;
  grid-column: -1/1;
}

table {
  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  border-spacing: 0;
  border-collapse: separate;
}
table .col-information {
  min-width: 40%;
  text-align: left;
  align-items: center;
  gap: 16px;
  display: flex;
}
table .col-information a, table .col-information span {
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}
table .col-information div {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
table .col-information div > a:first-of-type, table .col-information div span:first-of-type {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
table .col-information div > a:last-of-type, table .col-information div span:last-of-type {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 90%;
}
table .col-title {
  text-align: left;
  min-width: 15%;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
table .col-title a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-title a:visited {
  text-decoration: none;
}
table .col-access {
  text-align: left;
}
table .col-access a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-access a:visited {
  text-decoration: none;
}
table .col-machine {
  text-align: left;
}
table .col-machine a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-machine a:visited {
  text-decoration: none;
}
table .col-build {
  text-align: left;
}
table .col-build a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-build a:visited {
  text-decoration: none;
}
table .col-exit_code {
  text-align: left;
}
table .col-exit_code a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-exit_code a:visited {
  text-decoration: none;
}
table .col-date {
  text-align: right;
}
table .col-date a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-date a:visited {
  text-decoration: none;
}
table .col-email {
  text-align: left;
}
table .col-email a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-email a:visited {
  text-decoration: none;
}
table .col-library_items,
table .col-project_items {
  text-align: right;
}
table .col-library_items a,
table .col-project_items a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-library_items a:visited,
table .col-project_items a:visited {
  text-decoration: none;
}
table .col-expires {
  text-align: right;
}
table .col-expires a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-expires a:visited {
  text-decoration: none;
}
table .col-licenses {
  text-align: right;
}
table .col-licenses a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-licenses a:visited {
  text-decoration: none;
}
table .col-duration {
  text-align: right;
}
table .col-duration a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-duration a:visited {
  text-decoration: none;
}
table .col-joined {
  text-align: right;
  min-width: 18%;
  max-width: 18%;
}
table .col-joined a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-joined a:visited {
  text-decoration: none;
}
table .col-company {
  text-align: left;
}
table .col-company a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-company a:visited {
  text-decoration: none;
}
table .col-users {
  text-align: center;
  min-width: 30%;
}
table .col-users a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-users a:visited {
  text-decoration: none;
}
table .col-kinship_last {
  text-align: left;
  min-width: 18%;
  max-width: 18%;
}
table .col-kinship_last a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-kinship_last a:visited {
  text-decoration: none;
}
table .col-sync_rules {
  text-align: right;
}
table .col-sync_rules a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-sync_rules a:visited {
  text-decoration: none;
}
table .col-last_activity {
  text-align: right;
  min-width: 18%;
  max-width: 18%;
}
table .col-last_activity a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-last_activity a:visited {
  text-decoration: none;
}
table .col-owners {
  text-align: left;
}
table .col-owners a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-owners a:visited {
  text-decoration: none;
}
table .col-owners > div {
  display: flex;
  gap: 5px;
}
table .col-tier {
  text-align: left;
  min-width: 10%;
  max-width: 10%;
}
table .col-tier a {
  color: #475467;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
table .col-tier a:visited {
  text-decoration: none;
}
table th {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  height: 40px;
}
table td {
  padding: 5px 0;
}
table td .table-logo {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  border-radius: 11.5px;
  border: 1px solid #EAECF0;
  line-height: 40px;
  color: #ECEAEA;
  display: flex;
  justify-content: center;
  align-items: center;
}
table td .table-logo.short {
  font-size: 40px;
}
table td .table-logo.long {
  font-size: 30px;
}
table td .table-logo.tiny {
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  line-height: 20px;
  font-size: 15px;
}
table td .information {
  display: flex;
  flex-direction: column;
}
table td .information > span:first-child {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
table td .information > span:last-child {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
table tbody tr {
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
table tbody tr td {
  position: relative;
  z-index: 0;
}
table tbody tr td:first-of-type {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
table tbody tr td:last-of-type {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
table tbody tr td::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: oklch(80% 0 0deg / 0.15);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
table tbody tr:hover td::before {
  opacity: 1;
  left: 0;
  right: 0;
  border-radius: 0;
}
table tbody tr:hover td:first-of-type::before {
  left: -8px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
table tbody tr:hover td:last-of-type::before {
  right: -8px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
table tbody tr:hover td:not(:first-of-type):not(:last-of-type)::before {
  left: 0;
  right: 0;
  border-radius: 0;
}

.go-to-top {
  position: fixed;
  bottom: 20px;
  left: 500px;
  background: #050109;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.go-to-top:hover {
  opacity: 1;
  transform: scale(1.1);
}

.console-tooltip {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #667085;
  gap: 4px;
}
.console-tooltip .title {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
}
.console-tooltip .user-data {
  display: flex;
  align-items: flex-end;
}
.console-tooltip .user-data .data-details {
  color: #101828;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.72px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-content: flex-end;
}
.console-tooltip .user-data .data-details > div {
  align-content: flex-end;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding-left: 4px;
}
.console-tooltip .tooltip-time-period {
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.details-logo {
  margin-top: 46px;
  grid-row-start: 2;
  grid-column: 1/-1;
}

.logo-initials {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #20033c;
  text-align: center;
  image-rendering: smooth;
}
.logo-initials.logo-details {
  width: 104px;
  height: 104px;
  border-radius: 24px;
}
.logo-initials.logo-details > span.short {
  font-size: 53px;
}
.logo-initials.logo-details > span.long {
  font-size: 47px;
}
.logo-initials.logo-jumpto {
  width: 176px;
  height: 176px;
  border: 1px solid #EAECF0;
  border-radius: 15.5px;
  font-size: 80px;
  text-align: center;
}
.logo-initials.logo-jumpto > span.short {
  font-size: 80px;
}
.logo-initials.logo-jumpto > span.long {
  font-size: 70px;
}
.logo-initials.logo-listing {
  width: 80px;
  height: 80px;
  border-radius: 15.5px;
  font-size: 50px;
  border: 1px solid #EAECF0;
}
.logo-initials.logo-listing > span.short {
  font-size: 43px;
}
.logo-initials.logo-listing > span.long {
  font-size: 30px;
}
.logo-initials > img {
  width: 80%;
}
.logo-initials > span {
  display: table-cell;
  vertical-align: middle;
  color: #ECEAEA;
}

.details-active {
  display: flex;
  grid-row-start: 3;
  gap: 8px;
  flex-wrap: wrap;
}
.details-active .role {
  display: flex;
  gap: 10px;
  align-items: center;
}
.details-active .role > span {
  display: contents;
}
.details-active .role .change {
  cursor: pointer;
  color: #007FFF;
  font-size: 12px;
}
.details-active .activation {
  display: flex;
  align-items: center;
  gap: 5px;
}
.details-active > div {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
  padding: 4px 12px;
}
.details-active > div .user-deactivate {
  color: #F03434;
  font-size: 12px;
  cursor: pointer;
}
.details-active > div .user-reactivate {
  color: #17B26A;
  font-size: 12px;
  cursor: pointer;
}
.details-active > div > span {
  width: 8px;
  height: 8px;
  border-radius: 1000px;
  display: inline-block;
}
.details-active > div > span.active-light {
  background: #17B26A;
}
.details-active > div > span.inactive-light {
  background: #F2F4F7;
}
.details-active > div:first-child {
  text-transform: capitalize;
}
.details-active > div.loading {
  animation: flash 1s infinite;
}

.details-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 560px;
  z-index: -1;
  pointer-events: none;
}

.details-basic {
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.details-basic > div:first-child {
  color: #101828;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.details-basic > div:last-child {
  color: #667085;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.details-basic > div:last-child > img {
  margin-left: 5px;
  margin-bottom: -2px;
}
.details-basic > div:last-child > span {
  position: relative;
}

.details-basic-pill {
  grid-column: span 3;
  border-radius: 12px;
  background: #F2F4F7;
  padding: 24px 0 24px 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border: 1px solid #20033c;
}
.details-basic-pill > div:first-child {
  color: #98A2B3;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.details-basic-pill > span {
  color: #0C111D;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.details-basic-pill > span:not(:first-of-type) {
  color: #667085;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.features-pill {
  grid-column: span 4;
  border-radius: 12px;
  border: 1px solid #20033c;
  background: #F2F4F7;
  padding: 16px 14px;
  display: flex;
  justify-content: space-between;
}
.features-pill > span {
  color: #101828;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.features-pill .features-switch {
  display: flex;
  width: 44px;
  padding: 2px;
  align-items: center;
  border-radius: 9999px;
}
.features-pill .features-switch[data-disabled=true] {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}
.features-pill .features-switch[data-checked=true] {
  background: #20033c;
  justify-content: flex-end;
}
.features-pill .features-switch[data-checked=false] {
  background: #C5C9D0;
  justify-content: flex-start;
}
.features-pill .features-switch > div {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
}
.features-pill.long {
  grid-column: span 6;
}

.team-information {
  grid-column: span 4;
}
.team-information > div {
  color: #667085;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.team-information > span {
  color: #182230;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.team-information .allowed-domains {
  display: flex;
  gap: 10px;
}

.trial-item {
  grid-column: span 6;
  text-decoration: none;
}

.change {
  border: none;
  color: #007FFF;
  font-size: 12px;
  cursor: pointer;
  background: none;
}

.account-listing {
  grid-column: span 6;
  text-decoration: none;
}
.account-listing.short {
  grid-column: span 4;
}

.team-members {
  grid-column: span 4;
}

.b-initials-color-gray {
  --main-color: #DEDEDE;
  background: #DEDEDE;
}

.ifm-logo {
  align-self: center;
  margin: 40px auto 14px auto;
}
.ifm-logo > a > img {
  height: 39px;
}

.ifm-title {
  margin: 0;
}

.ifm-subtitle {
  color: #454245;
  font-size: 18px;
  white-space: break-spaces;
  text-align: center;
  margin: 0 -50% 0 -50%;
  font-weight: 300;
}
.ifm-subtitle b,
.ifm-subtitle a {
  font-weight: 500;
}
.ifm-subtitle + * {
  margin-top: 18px;
}

#server-domain {
  color: #377df7;
}

/** Skeleton **/
.skeleton {
  background-color: #e0e0e0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.skeleton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, #f0f0f0 50%, transparent 100%);
  animation: loading 1.2s infinite;
}

@keyframes loading {
  from {
    left: -150px;
  }
  to {
    left: 100%;
  }
}
/** Helper CSS */
#table-separator, .account-separator, #trials-separator, #members-separator {
  height: 1px;
}

#members-separator {
  width: 100%;
  margin: 24px 0 0 0;
}

#trials-separator {
  width: 576px;
}

.account-separator {
  width: 576px;
}
.account-separator.short {
  width: 376px;
}

#small-right-arrow {
  width: 16px;
  height: 24px;
  display: block;
}

#pulse-chart {
  width: 120px;
  height: 74px;
}

#pulse-chart-2 {
  width: 120px;
  height: 74px;
  flex-shrink: 0;
}

#data-chart {
  width: 120px;
  height: 74px;
  flex-shrink: 0;
}

#extra-padding {
  padding-bottom: 40px;
}

.device-card {
  background-color: #F2F4F7;
  border-radius: 18px;
  padding: 22px;
  color: #262626;
  grid-column: span 3;
  border: 1px solid #20033c;
}
.device-card > .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}
.device-card > .head > * {
  margin: 0;
}
.device-card > .head > svg {
  margin-bottom: 6px;
  color: blue;
}
.device-card > .head > span {
  color: #7c7c7d;
}
.device-card > .field {
  display: flex;
  position: relative;
}
.device-card > .field > div {
  display: flex;
  flex-direction: column;
}
.device-card > .field > div > span:last-of-type {
  color: #7c7c7d;
}
.device-card > .field > div > span:first-of-type {
  font-weight: 600;
}
.device-card > .field > img {
  width: 16px;
  height: 16px;
  margin: 4px 8px 0 0;
}
.device-card > .field > img.medium {
  width: 18px;
  height: 18px;
  margin: 4px 6px 0 0;
}
.device-card > .field:not(:last-of-type) {
  margin-bottom: 15px;
}
.device-card > a {
  display: flex;
  margin: 25px 0 0 24px;
}
.device-card .update-tag {
  background-color: #e3e3e4;
  border-radius: 9px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  padding: 1px 12px;
}

.b-member {
  flex: 0 1 340px;
  color: #007FFF;
  font-size: 15px;
  box-sizing: border-box;
  height: 58px;
  line-height: 50px;
  grid-column: span 4;
}
.b-member td {
  padding: 1px 0;
}
.b-member:not:nth-child(-n+3) {
  height: 59px;
  line-height: 52px;
}
.b-member > a {
  display: block;
  height: 60px;
}

.b-member-content {
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
.b-member-content .avatar {
  width: 40px;
}
.b-member-content .description {
  max-width: 237px;
  margin-right: 15px;
}
.b-member-content .description > div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.b-member-content .options-buttons {
  width: 23px;
  padding-right: 10px;
  padding-left: 20px;
}

.b-link {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
.b-link:visited, .b-link:hover, .b-link:focus, .b-link:active {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.b-color-blue {
  color: #0063cc;
}

.b-color-red {
  color: #d0081b;
}

.dropdown-menu {
  z-index: 999;
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(136, 152, 170, 0.1), 0 15px 35px 0 rgba(49, 49, 93, 0.1), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
  background: white;
  overflow-y: auto;
  color: #5a5a5a;
  --border-opacity: 0.1s;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  scrollbar-width: thin;
}
.dropdown-menu > .dropdown-item {
  padding: 7px 20px;
  font-size: 13px;
  cursor: pointer;
}
.dropdown-menu > .dropdown-item:hover {
  background-color: #E6E6E6;
}
.dropdown-menu.dropdown-large {
  width: 150px;
}

.dropdown-search {
  position: sticky;
  color: #2a2a2a;
  padding: 8px 15px;
  min-width: 170px;
  top: 0;
  left: 0;
  background: white;
  z-index: 1;
}
.dropdown-search input {
  font-size: 13px;
  border: 1px solid #c4c4c4;
  border-radius: 6px;
  padding: 6px 26px 6px 10px;
  width: 100%;
  box-sizing: border-box;
}

.full-header span {
  display: block;
}

.copied-tooltip {
  position: absolute;
  width: 60px;
  text-align: center;
  background-color: white;
  box-shadow: 0 0 0 1px rgba(136, 152, 170, 0.1), 0 15px 35px 0 rgba(49, 49, 93, 0.1), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
  font-size: 13px;
  border-radius: 6px;
  color: black;
  padding: 0 5px;
  top: 200px;
}

.table-title {
  text-align: left;
  font-size: 25px;
  font-weight: bold;
  line-height: 37px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-title:first-letter {
  text-transform: uppercase;
}

.table-sort-toggle {
  grid-column: -3/-1;
  margin-left: auto;
  cursor: pointer;
  color: #5A5A5A;
  font-size: 15px;
  font-weight: 600;
}
.table-sort-toggle :last-child {
  display: inline-block;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  background: url("/drop.svg") no-repeat;
}
.table-sort-toggle :last-child.asc {
  transform: rotate(180deg) translateY(-3px);
}

.table-filters {
  display: flex;
  grid-column: span 10;
  gap: 6px;
}
.table-filters .table-filter-toggle {
  cursor: pointer;
  border-radius: 50px;
  background-color: rgba(222, 218, 226, 0.6);
  color: black;
  padding: 4px 10px;
  font-size: 13px;
  line-height: 20px;
  border: 1px solid #20033c;
}
.table-filters .table-filter-toggle.selected {
  background-color: #20033c;
  color: white;
}
.table-filters .table-filter-toggle :last-child {
  display: inline-block;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  background: url("/drop.svg") no-repeat;
}
.table-filters .table-filter-toggle :last-child.close {
  background: url("/filter-close.svg") no-repeat;
}
.table-filters .table-sort-toggle {
  color: #5A5A5A;
  font-size: 15px;
  font-weight: 600;
  float: right;
  margin-left: auto;
}
.table-filters .table-sort-toggle span {
  vertical-align: middle;
}

.copy-details {
  grid-row-start: 2;
  grid-column: 12;
  padding-top: 125px;
  padding-left: 50px;
}

.no-data-message {
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.refresh-data {
  grid-column: -1/1;
  color: #667085;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.refresh-data-button {
  padding: 8px 16px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #20033c;
  background-color: #20033c;
}
.refresh-data-button.general-button {
  background-color: #FF692E;
}
.refresh-data-button.general-button:hover {
  background-color: #d54504;
}
.refresh-data-button.teams-button {
  background-color: #007FFF;
}
.refresh-data-button.teams-button:hover {
  background-color: #0566cd;
}
.refresh-data-button.users-button {
  background-color: #388E3C;
}
.refresh-data-button.users-button:hover {
  background-color: #2d6e2f;
}

.last-updated-text {
  padding-left: 20px;
  margin-right: auto;
  font-size: 13px;
}

.data-table {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
.data-table th {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 0 14px 0;
  height: 40px;
}
.data-table th.title {
  width: auto;
  text-align: left;
}
.data-table th.field {
  width: auto;
  text-align: right;
}
.data-table td.row {
  padding: 12px 0;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}
.data-table td .table-logo {
  width: 80px;
  height: 80px;
  border-radius: 11.5px;
  border: 1px solid #EAECF0;
}
.data-table td .table-logo > span.short {
  font-size: 43px;
}
.data-table td .table-logo > span.long {
  font-size: 34px;
}
.data-table td .information {
  display: flex;
  flex-direction: column;
}
.data-table td .information > span:first-child {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.data-table td .information > span:last-child {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.data-table td.field {
  text-align: right;
}

.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2117647059);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-background .modal-action {
  display: flex;
  background: #fbfbfd;
  justify-content: space-between;
  gap: 10px;
  margin: 0px -56px;
  box-sizing: border-box;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: 1px #e9e9ec solid;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
}
.modal-background .modal-action > div {
  cursor: pointer;
  padding: 18px 25px;
  margin: auto;
}
.modal-background .modal-action > div:last-child {
  font-weight: bold;
}
.modal-background .modal-action > div.b-link_disabled {
  opacity: 0.5;
}
.modal-background .modal-action > div:not(.b-link_disabled):not(.red) {
  color: #007FFF !important;
}
.modal-background .modal-action .vertical-separator {
  cursor: default;
  height: 1.5em;
}
.modal-background .modal-content {
  position: absolute;
  background-color: white;
  border-radius: 10px;
  padding: 16px 56px 0 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 90vh;
}
.modal-background .modal-content .no-action-container {
  padding-bottom: 42px;
  overflow: scroll;
}
.modal-background .modal-content[data-size=small] {
  width: 600px;
}
.modal-background .modal-close {
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  position: absolute;
  align-items: center;
  color: #95989A;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.15s;
}
.modal-background .modal-close:hover {
  cursor: pointer;
  opacity: 1;
}
.modal-background .modal-close > img {
  width: 16px;
  padding: 12px 12px 0px;
}

.user-change-role-menu {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-title {
  margin: 0 auto 0 0;
  font-weight: 600;
  font-size: 24px;
  color: black !important;
  letter-spacing: -0.5px;
  white-space: nowrap;
  max-width: 100%;
}

.modal-input {
  width: 100%;
  border-radius: 4px;
  border: 1px #bbb solid;
  padding: 11px 10px;
  line-height: 22px;
  font-size: 17px;
  height: 48px;
  box-sizing: border-box;
  transition: box-shadow 0.2s, border 0.2s;
  background-color: #fff;
}

.modal-radio-input-group {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}
.modal-radio-input-group > input {
  width: 19px;
  height: 19px;
  background: white !important;
  border-radius: 100%;
  border: 1px grey solid !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  padding: 0;
  margin-right: 10px !important;
}
.modal-radio-input-group > input:checked {
  border: 6px #007FFF solid !important;
}
.modal-radio-input-group > input:disabled {
  opacity: 0.5;
}

.email-chips-container {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  flex-grow: 1;
  overflow: auto;
}
.email-chips-container.textarea {
  border: 1px #cacaca solid;
  padding: 8px;
  border-radius: 10px;
  min-height: 120px;
  max-height: 150px;
}
.email-chips-container.textarea:hover {
  cursor: text;
}
.email-chips-container * {
  font-size: 14px;
}
.email-chips-container > * {
  align-self: center;
}
.email-chips-container input {
  border: 0;
  padding: 6px;
  width: 100%;
  min-width: 365px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.email-chips-container input:focus {
  outline: none;
}
.email-chips-container > :last-child {
  flex-grow: 1;
}

.email-chip {
  display: flex;
  align-items: center;
  background-color: #ddd;
  color: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 20px;
  line-height: 1em;
  border: 1.5px transparent dashed;
  cursor: pointer;
}
.email-chip.danger {
  border-color: red;
}
.email-chip > img {
  margin-left: 6px;
  width: 16px;
  height: 16px;
}
.email-chip *:not(img) {
  -webkit-user-select: text;
  user-select: text;
}

.vertical-separator {
  display: inline-block;
  vertical-align: top;
  width: 1px;
  background-color: #DDDDDD;
}

.b-initials-color0 {
  background: #999999;
  --main-color: #999999;
}

.b-initials-color1 {
  background: #F03434;
  --main-color: #F03434;
}

.b-initials-color2 {
  background: #Fc6821;
  --main-color: #Fc6821;
}

.b-initials-color3 {
  background: #FF8CB9;
  --main-color: #FF8CB9;
}

.b-initials-color4 {
  background: #F62459;
  --main-color: #F62459;
}

.b-initials-color5 {
  background: #663399;
  --main-color: #663399;
}

.b-initials-color6 {
  background: #D04ADC;
  --main-color: #D04ADC;
}

.b-initials-color7 {
  background: #9A12B3;
  --main-color: #9A12B3;
}

.b-initials-color8 {
  background: #19B5FE;
  --main-color: #19B5FE;
}

.b-initials-color9 {
  background: #0078FF;
  --main-color: #0078FF;
}

.b-initials-color10 {
  background: #2ed573;
  --main-color: #2ed573;
}

.b-initials-color11 {
  background: #4ECDC4;
  --main-color: #4ECDC4;
}

.b-initials-color12 {
  background: #2ECC71;
  --main-color: #2ECC71;
}

.b-initials-color13 {
  background: #FFA700;
  --main-color: #FFA700;
}

.b-initials-color14 {
  background: #F2784B;
  --main-color: #F2784B;
}

.b-initials-color15 {
  background: #F7CA18;
  --main-color: #F7CA18;
}

.b-initials-color16 {
  background: #E63E78;
  --main-color: #E63E78;
}

.b-initials-color17 {
  background: #446CB3;
  --main-color: #446CB3;
}

.b-initials-color18 {
  background: #F9BF3B;
  --main-color: #F9BF3B;
}

.b-initials-color19 {
  background: #86E2D5;
  --main-color: #86E2D5;
}

.b-initials-color20 {
  background: #5A5A5A;
  --main-color: #5A5A5A;
}

.new-team {
  width: 445px;
  margin: auto;
  margin-top: 74px;
}
.new-team > * {
  margin-bottom: 10px;
}
.new-team .new-partner-team-select-group {
  position: relative;
  background-color: #fff;
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
  outline: 1px #bbb solid;
  line-height: 22px;
  font-size: 17px;
  box-sizing: border-box;
  transition: box-shadow 0.2s, border 0.2s;
  height: 48px;
  padding: 17px 10px 11px 10px;
}
.new-team .new-partner-team-select-group div > span {
  pointer-events: none;
  position: absolute;
  top: 2px;
  font-size: 12px;
  padding: 0px;
  left: 10px;
  color: #949494;
  text-align: left;
  -webkit-user-select: none;
  user-select: none;
}
.new-team .new-partner-team-select-group div > p {
  font-size: 15px;
  margin: 0;
}
.new-team .new-partner-team-select-group .partner-team-select {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: white;
  left: 0px;
  width: 100%;
  border-radius: 4px;
  margin: 15px 0;
  box-sizing: border-box;
  padding: 10px;
  font-size: 15px;
}
.new-team .new-partner-team-select-group .partner-team-select > input {
  flex: 0 0 auto;
}
.new-team .new-partner-team-select-group .partner-team-select > ul {
  flex: 1 1 auto;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}
.new-team .new-partner-team-select-group .partner-team-select > ul > li {
  margin-top: 5px;
  cursor: pointer;
}
.new-team .new-partner-team-select-group .partner-team-select > ul > li.clear {
  color: #F03434;
}
.new-team .new-team-select-group {
  position: relative;
}
.new-team .new-team-select-group label {
  position: absolute;
  pointer-events: none;
  top: 2px;
  font-size: 12px;
  padding-top: 3px;
  padding-bottom: 1px;
  left: 10px;
  color: #949494;
  text-align: left;
  -webkit-user-select: none;
  user-select: none;
}
.new-team .new-team-select-group > input {
  font-size: 15px;
  padding-top: 17px;
}
.new-team input, .new-team select, .new-team button {
  width: 100%;
  border-radius: 4px;
  border: 1px #bbb solid;
  padding: 11px 10px;
  line-height: 22px;
  font-size: 17px;
  height: 48px;
  box-sizing: border-box;
  transition: box-shadow 0.2s, border 0.2s;
  background-color: #fff;
  cursor: pointer;
}
.new-team input:hover, .new-team select:hover, .new-team button:hover {
  border-color: rgba(29, 28, 29, 0.6);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}
.new-team input:focus, .new-team select:focus, .new-team button:focus {
  border: 1px #0063cc solid;
  box-shadow: 0px 0px 0px 4px #bde1f1;
}
.new-team select {
  font-size: 15px;
  padding-top: 17px;
}
.new-team button {
  display: block;
  border: 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background-color: #007FFF;
}

.notification-container {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 10px;
  width: 400px;
  left: calc(50% - 200px);
  z-index: 9999;
  gap: 5px;
}

.notification {
  display: flex;
  justify-content: space-between;
  color: white;
  background-color: #007FFF;
  border-radius: 4px;
  padding: 11px 10px;
  text-align: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.notification.entering {
  opacity: 0;
}

.console-noise {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: 2000;
  opacity: 0.04;
  pointer-events: none;
  background: url("/paper.jpg");
  background-size: auto;
  background-size: 200px 200px;
}

.table-loading {
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
}

.data-kinship-header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 50px;
  margin-top: 16px;
  font-weight: normal;
}
.data-kinship-header h1 {
  padding: 0;
  margin: 0;
  margin-right: auto;
}
.data-kinship-header summary {
  font-size: 32px;
}
.data-kinship-header p {
  margin: 0;
  font-size: 48px;
}
.data-kinship-header details {
  float: right;
}

.outdated-version-details summary {
  font-size: 21px;
}
.outdated-version-details ul li {
  font-size: 20px;
}
.outdated-version-details ul li a:visited {
  color: blue;
}
.outdated-version-details details {
  padding-left: 40px;
  margin: 14px 0;
}
.outdated-version-details:last-of-type {
  margin-bottom: 20px;
}

.grid-row-auto {
  grid-row-start: auto;
}

.text-danger {
  color: #F03434;
}

.plugin-popup {
  position: absolute;
  color: #182230;
  background-color: white;
  overflow-y: scroll;
}

.capitalise::first-letter {
  text-transform: uppercase;
}

.border-rounded-6 {
  border-radius: 6px;
}

.list-style-none {
  list-style-type: none;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.border-solid-thin {
  border: 1px solid #20033c;
}

.gap-5 {
  gap: 5px;
}

.align-items-center {
  align-items: center;
}

.padding-5 {
  padding: 5px;
}

.margin-none {
  margin: 0;
}

.header-margin-small {
  margin-top: 5px;
  margin-bottom: 5px;
}

.inline {
  display: inline;
}

.width-100 {
  width: 100%;
}

.journal {
  overflow: auto;
  font-size: 12px;
  line-height: 20px;
  font-weight: 450;
}
.journal b {
  font-weight: normal;
  color: grey;
  display: inline-block;
  width: 105px;
  text-align: right;
  vertical-align: top;
}
.journal i {
  font-style: normal;
  display: inline-block;
  width: 935px;
  text-wrap: wrap;
  user-select: text;
}
.journal s {
  color: red;
  text-decoration: none;
}
.journal q {
  color: darkgreen;
}
.journal em {
  background-color: lightsteelblue;
}
.journal a {
  background-color: lemonchiffon;
  color: black;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #20033c;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: auto;
}

.spinner-absolute {
  position: absolute;
  left: 50%;
  margin: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.vertical-middle {
  vertical-align: middle;
}
/*!*********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./styles/scss/error.scss ***!
  \*********************************************************************************************************************************************/
.error-main {
  max-width: 81.25em;
  margin: auto;
  padding: 0 5%;
  min-width: 880px;
  grid-column: -1/1;
}
.error-main .ifm-logo {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.error-main .ifm-logo > img {
  height: 39px;
}
.error-main .login-app {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  max-width: 445px;
  text-align: center;
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  padding-bottom: 20px;
}
.error-main .login-app .error-code {
  display: flex;
  flex-direction: column;
  margin-top: 20vh;
  font-weight: 300;
  font-size: 18px;
}
.error-main .login-app .error-code .button {
  width: 180px;
  margin: 28px auto 0 auto;
}
.error-main .login-app .error-page {
  display: flex;
  flex-direction: column;
  margin-top: 20vh;
  font-weight: 300;
  font-size: 18px;
}
.error-main .login-app .error-page span {
  position: relative;
  min-width: 500px;
  left: 50%;
  transform: translateX(-50%);
}
.error-main .login-app .error-page .button {
  width: 162px;
  margin: 28px auto 0 auto;
}
.error-main .login-app .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.error-main .login-app a {
  color: #007fff;
  cursor: pointer;
}
.error-main .login-app button,
.error-main .login-app .button {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px transparent solid;
  border-radius: 4px;
  border: 0;
  padding: 12px 10px;
  line-height: 22px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  background-color: #007fff;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  gap: 8px;
  transition: background-color 80ms linear, box-shadow 80ms linear, border-color 80ms linear;
}
.error-main .login-app button.light,
.error-main .login-app .button.light {
  background-color: #fff;
  color: rgb(29, 28, 29);
  border: 1px rgba(29, 28, 29, 0.3) solid;
}
.error-main .login-app button.light:hover,
.error-main .login-app .button.light:hover {
  background-color: rgb(248, 248, 248);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}
.error-main .login-app button.light:active, .error-main .login-app button.light:focus,
.error-main .login-app .button.light:active,
.error-main .login-app .button.light:focus {
  background-color: rgb(248, 248, 248);
  border-color: rgba(29, 28, 29, 0.5019607843);
}
.error-main .login-app button.sso,
.error-main .login-app .button.sso {
  padding: 10px;
  border: 2px #bbb solid;
}
.error-main .login-app button.sso:hover,
.error-main .login-app .button.sso:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}
.error-main .login-app button:hover,
.error-main .login-app .button:hover {
  background-color: #0068D0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}
.error-main .login-app button:focus,
.error-main .login-app .button:focus {
  box-shadow: 0 0 0 4px rgba(0, 116, 233, 0.2);
}
.error-main .login-app button:active,
.error-main .login-app .button:active {
  background-color: #005AB4;
}
.error-main .login-app button[disabled],
.error-main .login-app .button[disabled] {
  opacity: 0.7;
}
.error-main .login-app button img,
.error-main .login-app .button img {
  max-height: 20px;
}
.error-main .login-app input.error {
  border-color: red !important;
}
.error-main .login-app input.error:focus {
  box-shadow: 0px 0px 0px 4px #F9C0CE !important;
}
.error-main h1 {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  margin: 0 -200px;
  line-height: 130%;
}

/*# sourceMappingURL=main.b3a18d850e88c5632962.css.map*/