﻿.main-layout {
  display: grid;
  grid-template-columns: 240px auto;
  height: 100vh;
  width: 100vw;
}

main {
  max-height: 100vh;
  overflow: hidden;
}

i.material-icons-round {
  background-color: var(--grey-100);
  color: var(--grey-400);
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  border-radius: 32px;
}

.realtime-hub {
  display: none;
}

.admin-button {
  background-color: var(--secondary-500);
}
.admin-button:hover {
  background-color: var(--secondary-700);
}

.bm-close {
  color: var(--grey-700);
}

.sidebar {
  background: var(--grey-900);
  color: white;
  position: relative;
  flex: auto;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  height: 100dvh;
}

.sidebar-content {
  padding: 20px;
  overflow: auto;
}
.sidebar-content .logo {
  width: 150px;
  padding: 16px;
  margin: 0 auto 32px;
}
.sidebar-content .logo img {
  width: 100%;
}
.sidebar-content > ul {
  list-style: none;
}
.sidebar-content > ul li {
  padding: 0 0 0 16px;
}
.sidebar-content > ul li a.nav-link {
  margin-bottom: 6px;
  padding: 4px 8px;
}
.sidebar-content a.nav-link {
  display: block;
  text-decoration: none;
  color: #3A3A40;
  margin: 0;
  margin-bottom: 12px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 19px;
  color: var(--grey-500);
}
.sidebar-content a.nav-link [class^=material-icons] {
  font-size: 14px;
  margin-right: 10px;
  vertical-align: top;
  position: relative;
  top: 2px;
}
.sidebar-content a.nav-link .radio-icon-svg {
  vertical-align: top;
  margin-right: 10px;
}
.sidebar-content a.nav-link:hover, .sidebar-content a.nav-link.active {
  color: var(--grey-100);
  background: var(--grey-800);
  border-radius: 4px;
}

label.better-search {
  position: relative;
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  background: #fff;
  width: 305px;
  grid-column: 1/span 4;
}
label.better-search ::placeholder {
  color: var(--grey-500);
}
label.better-search .search-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 18px;
  top: calc(50% - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
}
label.better-search .material-icons {
  color: var(--grey-300);
  font-size: 14px;
}
label.better-search input[type=search] {
  padding: 8px 46px 8px 16px;
  font-size: 14px;
  font-weight: 100;
  width: 100%;
  border: none;
}
label.better-search.better-search-loading .search-icon {
  animation: rotate 1.5s linear infinite;
}
label.better-search.better-search-loading .search-icon .material-icons {
  color: var(--primary-500);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.close-btn {
  background-color: #ccc;
  color: #333;
}

.confirm-btn {
  background-color: #dc3545;
  color: white;
}

.dashboard-page {
  font-family: "Nunito Sans";
  background: var(--grey-50);
  height: 100dvh;
  overflow: auto;
  padding: 42px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
}
.dashboard-page a.details {
  display: inline-block;
  font-size: 14px;
  text-decoration: underline;
  margin-left: 8px;
}
.dashboard-page > header {
  margin-bottom: 40px;
  color: var(--grey-900);
}
.dashboard-page > header > h4 {
  font-weight: 400;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 8px;
}
.dashboard-page > header > h3 {
  font-weight: 600;
  font-size: 38px;
  line-height: 42px;
}
.dashboard-page .version-footer {
  color: gray;
  bottom: 10px;
  flex: 1;
  padding-top: 8px;
  text-align: center;
  align-content: end;
}
.dashboard-page .dashboard-card-container {
  display: flex;
}
.dashboard-page .dashboard-card {
  position: relative;
  background: white;
  height: 437px;
  width: 368px;
  margin-right: 32px;
  border: 1px solid #D5D8DB;
  border-radius: 8px;
}
.dashboard-page .dashboard-card header {
  padding: 24px;
  border-bottom: 1px solid var(--grey-200);
}
.dashboard-page .dashboard-card header h1 {
  font: 600 21px/24px;
  color: var(--grey-900);
}
.dashboard-page .dashboard-card .content {
  padding: 24px;
}
.dashboard-page .dashboard-card .content .item label {
  font-size: 14px;
  color: var(--grey-400);
  font-weight: 500;
}
.dashboard-page .dashboard-card .content .item p {
  font-size: 21px;
  color: var(--grey-800);
  font-weight: 600;
  margin-bottom: 24px;
}
.dashboard-page .dashboard-card footer {
  position: absolute;
  padding: 0px 24px;
  bottom: 30px;
}
.dashboard-page .btn {
  padding: 8px 20px;
  text-align: center;
  color: white;
  background: var(--primary-500);
  border-radius: 8px;
  border-width: 0;
  cursor: pointer;
  font-size: 12px;
}

.connected-radios {
  position: fixed;
  top: 24px;
  right: 36px;
  text-align: right;
  z-index: 3;
}
.connected-radios > header {
  border-radius: 12px;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid var(--grey-100);
  padding: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-700);
  position: relative;
  z-index: 2;
}
.connected-radios .queued {
  color: var(--grey-300);
}
.connected-radios.connected {
  color: var(--primary-500);
}
.connected-radios.connected svg path {
  fill: var(--primary-500);
}
.connected-radios.expanded > header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.connected-radios .material-icons {
  margin: 5px -1px;
}

.radios-list {
  opacity: 0;
  display: none;
  background: white;
  padding: 0;
  border: 1px solid #EEEFF0;
  position: relative;
  top: -1px;
  z-index: 1;
  width: 350px;
  text-align: left;
  border-radius: 12px;
  border-top-right-radius: 0;
  overflow: hidden;
}
.radios-list > header {
  display: flex;
  padding: 12px;
}
.radios-list > header h6 {
  font: 600 14px/18px "Nunito Sans";
  color: var(--grey-600);
}
.radios-list > header aside {
  font: 400 14px/18px "Nunito Sans";
  color: var(--grey-400);
  margin-left: 6px;
}
.radios-list.show {
  display: block;
  opacity: 1;
}
.radios-list > section {
  overflow-y: scroll;
  max-height: 80vh;
  display: block;
}
.radios-list > section > aside {
  font: 400 14px/18px "Nunito Sans";
  color: var(--grey-600);
  padding: 8px 16px;
  text-align: left;
}

.radio-card {
  padding: 18px;
  margin-bottom: 1px;
  background-color: white;
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-500);
  cursor: pointer;
  user-select: none;
  position: relative;
}
.radio-card .select {
  height: 32px;
  width: 32px;
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--grey-50);
}
.radio-card .select svg path {
  fill: var(--grey-500);
}
.radio-card:hover {
  background-color: rgba(var(--primary-500-10));
}
.radio-card:hover .select, .radio-card.highlight .select {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
}
.radio-card:hover svg path, .radio-card.highlight svg path {
  fill: var(--primary-500);
}
.radio-card.radio-card-connected .select svg path {
  fill: var(--tertiary-500);
}
.radio-card.not-provisioned {
  opacity: 0.6;
}
.radio-card h4 {
  font: 600 14px/16px "Nunito Sans";
  color: var(--grey-900);
  margin-bottom: 4px;
}
.radio-card aside {
  font: 400 10px/13px "Nunito Sans";
  color: var(--grey-400);
}
.radio-card header.msn h4, .radio-card header.msn aside {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.radio-card .status .provisioning-page-only {
  display: none;
}
.radio-card .status label {
  font: 500 10px/12px "Nunito Sans";
  color: var(--grey-500);
  position: relative;
}
.radio-card .status label.warning {
  color: var(--error-500);
}
.radio-card .status label.warning.bold {
  font-weight: bold;
}
.radio-card .status .delete-license {
  position: absolute;
  top: -8px;
  right: 5px;
  font-size: 20px;
  color: var(--secondary-500);
}
.radio-card .status .delete-license:hover {
  color: var(--secondary-700);
  cursor: pointer;
}
.radio-card .remove-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: flex;
  align-items: center;
  color: var(--error-500);
  font-size: 20px;
  line-height: 1;
}
.radio-card .remove-button:hover {
  color: var(--error-700);
  cursor: pointer;
}
.radio-card progress {
  width: calc(100% - 30px);
  height: 4px;
  display: block;
  margin-bottom: 6px;
}
.radio-card progress::-webkit-progress-bar {
  background-color: var(--grey-100);
  border-radius: 10px;
}
.radio-card progress::-webkit-progress-value {
  background-color: var(--primary-500);
  border-radius: 10px;
}

.radios-list .radio-card, .radio-index-selected > .radio-table .radio-card, .radio-index > header .radio-card {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: center;
  grid-gap: 8px;
}
.radios-list .radio-card .status, .radio-index-selected > .radio-table .radio-card .status, .radio-index > header .radio-card .status {
  grid-row: 2;
  grid-column: 2;
}
.radios-list .radio-card .status label, .radio-index-selected > .radio-table .radio-card .status label, .radio-index > header .radio-card .status label {
  margin: 0;
}
.radios-list .radio-card .tags, .radio-index-selected > .radio-table .radio-card .tags, .radio-index > header .radio-card .tags {
  display: none;
}
.radios-list .radio-card .remove-button, .radio-index-selected > .radio-table .radio-card .remove-button, .radio-index > header .radio-card .remove-button {
  position: static;
  transform: none;
  top: auto;
  right: auto;
  grid-column: 3;
  justify-self: end;
  align-self: center;
}

label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}

button {
  margin-top: 10px;
}

.radio-table {
  /*background-color: var(--grey-50);*/
}
.radio-table > header .header, .radio-table .radio-card {
  display: grid;
  grid-template-columns: 32px 1fr 1fr 1fr;
  align-items: center;
  grid-gap: 18px;
}
.radio-table > header .header input[type=checkbox] {
  margin-left: 8px;
}
.radio-table > header {
  padding: 24px 18px 10px;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  font: 600 9px/12px "Nunito Sans";
  color: var(--grey-400);
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--grey-50);
}
.radio-table > header h1 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}

.radio-table > header > section.actions button {
  margin-right: 10px;
}

.radio-index > header .radio-card {
  background-color: transparent;
  align-items: flex-start;
  gap: 24px;
}
.radio-index > header .radio-card .select {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
}
.radio-index > header .radio-card .select svg path {
  fill: var(--primary-500);
}
.radio-index > header .radio-card h4 {
  font: 600 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.radio-index > header .radio-card h4.h4-small {
  font-size: 25px;
}
.radio-index > header .radio-card aside {
  font: 400 16px/18px "Nunito Sans";
}
.radio-index > header .radio-card-connected .select svg path {
  fill: var(--tertiary-500);
}
.radio-index .radio-table > header {
  top: 61px;
  padding: 10px 18px;
}
.radio-index .radio-table > header h1, .radio-index .radio-table > header svg {
  display: none;
}

@media screen and (max-width: 1200px) {
  .radio-index-container.radio-index-selected .radio-index {
    padding-top: 40px;
    background-color: var(--grey-50) !important;
  }
}
.radio-index-container.radio-index-selected > .radio-table, .radio-index-container.radio-index-selected > .license-list {
  border-right: 2px solid var(--grey-300);
}

.radio-index-container > .radio-table {
  height: calc(100vh - 50px);
  overflow-y: auto;
  /*display: grid;*/
  grid-template-columns: auto;
  background-color: var(--grey-50);
}

.radio-index-selected > .radio-table {
  grid-template-columns: 240px auto;
  background-color: white;
}
.radio-index-selected > .radio-table label.better-search {
  max-width: 190px;
}
.radio-index-selected > .radio-table > header h1 {
  font: 400 14px/16px "Nunito Sans";
  grid-column: 2/span 2;
}
.radio-index-selected > .radio-table > header > div {
  display: none;
}
.radio-index-selected > .radio-table .radio-card .status button {
  display: none;
}

.compact .radio-table .radio-card {
  padding: 6px 18px;
  grid-gap: 8px;
  border-bottom: 1px solid var(--grey-100);
}
.compact .radio-table .radio-card .select {
  height: 18px;
}
.compact .radio-table .radio-card header {
  margin-left: 8px;
}
.compact .radio-table .radio-card header h4 {
  margin-bottom: 0px;
}

.compact .radio-index-container.radio-index-selected .radio-card {
  padding-bottom: 0px;
}

aside.no-items {
  padding: 100px 0;
  text-align: center;
  font: 400 14px/18px "Nunito Sans";
  color: var(--grey-700);
  background: white;
}

.radio-info {
  background: white;
  padding: 32px;
}
.radio-info section.radio-tags {
  display: none;
}
.radio-info .impersonate-banner {
  grid-column: 1/span 2;
  margin-bottom: 12px;
  padding: 16px;
  background: var(--grey-100);
  color: var(--grey-900);
  border-radius: 8px;
}
.radio-info .impersonate-banner.warning {
  background: #FFe5b2;
}
.radio-info section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid var(--grey-100);
  position: relative;
}
.radio-info section h2 {
  grid-column: 1/span 1;
}
.radio-info section .header-buttons {
  grid-column: 1/span 1;
}
.radio-info section .license-info {
  margin: 0;
}
.radio-info section button {
  display: flex;
  text-align: center;
  width: auto;
}
.radio-info .perpetual-liscences {
  display: flex;
  justify-content: space-between;
}
.radio-info .perpetual-licenses .actions {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.radio-info .perpetual-licenses .actions button {
  display: flex;
  text-align: center;
  min-width: 200px;
}
.radio-info .perpetual-licenses .actions .delete-button {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.radio-info .perpetual-licenses .actions.admin span {
  font-size: 14px;
  font-weight: 600;
}
.radio-info button.admin {
  background-color: var(--error-700);
}
.radio-info button.admin:hover {
  background-color: var(--error-500);
}
.radio-info section.software {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.radio-info section.software .license-info {
  margin-bottom: 3px;
}
.radio-info section.admin-information h2 {
  color: crimson;
}
.radio-info section.admin-information dt, .radio-info section.admin-information dd {
  display: block;
  margin-bottom: 1em;
  margin-right: 4em;
}
.radio-info h1 {
  font: 600 38px/42px "Nunito Sans";
  color: var(--grey-900);
  margin-bottom: 8px;
}
.radio-info h2 {
  font: 600 16px/18px "Nunito Sans";
  color: var(--grey-700);
  margin-bottom: 16px;
}
.radio-info aside {
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-400);
  margin-bottom: 32px;
}
.radio-info hr {
  height: 1px;
  border-top: 1px solid var(--grey-100);
  margin: 48px 0 24px;
}
.radio-info button {
  width: 100%;
  text-align: center;
}
.radio-info dl {
  display: grid;
  grid-column: 1/span 2;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
  width: 100%;
}
.radio-info dl dt {
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-500);
}
.radio-info dl dd {
  font: 600 14px/16px "Nunito Sans";
  color: var(--grey-500);
}

.reset-radio h3 {
  font-size: 18px;
  margin-top: 24px;
}

.transfer-radios-to-customer {
  min-width: 400px;
}
.transfer-radios-to-customer textarea {
  min-width: 100%;
  max-width: 100%;
}
.transfer-radios-to-customer .radio-card:hover {
  background-color: unset;
}
.transfer-radios-to-customer .radio-card .select {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
}
.transfer-radios-to-customer .radio-card .select svg path {
  fill: var(--primary-500);
}
.transfer-radios-to-customer .bottomButtons {
  display: flex;
  justify-content: space-between;
}
.transfer-radios-to-customer .blazored-typeahead__results {
  max-height: 300px;
}

.transfer-radios-to-customer .form-modal {
  padding-top: 10px;
}

.pending-transfers {
  position: fixed;
  bottom: 0;
  left: 240px;
  right: 0;
  background: #fff;
}
.pending-transfers .header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background-color: white;
  border-top: 2px solid var(--grey-300);
  padding: 16px;
  margin: 0;
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-500);
  z-index: 1001;
}
.pending-transfers .header .expander {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.pending-transfers .header .expander i {
  font-size: 18px;
  color: var(--grey-300);
}
.pending-transfers .header button {
  margin-top: 0;
  padding: 8px 16px;
  text-align: center;
}
.pending-transfers .radio-table {
  max-height: 50vh;
  overflow-y: auto;
}
.pending-transfers .radio-table article {
  background-color: white;
  margin-bottom: 0;
}
.pending-transfers .actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.radio-index-selected .pending-transfers {
  left: 240px;
}

.tags-filter span {
  margin-left: 5px;
  color: #818181;
  display: inline;
}
.tags-filter .btn-group {
  background-color: transparent;
  margin-top: -2px;
  margin-left: -1px;
}
.tags-filter .dropdown-menu {
  min-width: 260px;
}
.tags-filter .dropdown-menu .option i {
  width: 20px;
}
.tags-filter #selectAll i {
  width: 20px !important;
}
.tags-filter .tags-added {
  display: inline;
}
.tags-filter .tags-added .filter-tag {
  border: 1px solid blue;
  background-color: white;
  color: #4f4f4f;
  border-radius: 20px;
  font-size: 12px;
  padding: 3px 7px;
  cursor: default;
  line-height: 36px;
  white-space: nowrap;
}
.tags-filter .tags-added .filter-tag .remove-btn {
  color: blue;
  font-size: 12px;
  position: relative;
  top: 2px;
  left: 3px;
}
.tags-filter .tags-added .add-btn {
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #4f4f4f;
}
.tags-filter .tags-added .add-tag {
  padding: 13px;
  /*.add-btn {
          color: #4f4f4f;
          font-size: 12px;
          position: relative;
      }*/
}

.delete-license-form {
  display: block;
}

p.licenses-deleted {
  text-align: center;
  margin-top: 80px;
  font-size: 32px;
}

.generate-license-form {
  display: block;
}

.radio-index-container {
  display: grid;
  grid-template-columns: auto;
  background-color: var(--grey-50);
}
.radio-index-container.radio-index-selected {
  grid-template-columns: 240px auto;
  background-color: white;
}
.radio-index-container.radio-index-selected .radio-table {
  display: block !important;
}

.radio-index {
  height: calc(100vh - 50px);
  overflow: auto;
}
.radio-index > header {
  background: var(--grey-50);
  padding: 8px 16px;
  position: sticky;
  top: 0;
  z-index: 2;
}
.radio-index > header .selected-radios-header {
  display: flex;
  justify-content: space-between;
}
.radio-index > header .selected-radios-header .transfer-modal-btn {
  text-decoration: underline;
  background-color: transparent;
}
.radio-index > header .actions {
  position: absolute;
  bottom: -50px;
  right: 16px;
}
.radio-index > header .license-type-info {
  border: 0;
  margin: 0;
  grid-gap: 18px;
  width: 70%;
}
.radio-index > header .license-type-info:hover {
  background-color: unset;
}
.radio-index > header .license-type-info header {
  font: 600 38px/42px "Nunito Sans";
  color: var(--grey-500);
}
.radio-index > header .license-type-info i.material-icons-round {
  background-color: var(--primary-50);
  border-color: var(--primary-500);
  color: var(--primary-500);
}

.clear-all {
  cursor: pointer;
  color: var(--visited-500, var(--default-700));
}

.radio-index-container > .license-list .license-type-info {
  border: 0;
  border-bottom: 1px solid var(--grey-50);
  margin: 0;
  border-radius: 0;
}

.license-info {
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}
.license-info header {
  font: 600 14px/16px "Nunito Sans";
  color: var(--grey-500);
}
.license-info aside {
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-400);
  margin-top: 2px;
  margin-bottom: 0;
}
.license-info .status {
  text-align: right;
}
.license-info .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
  color: var(--grey-200);
  font-size: 18px;
}
.license-info i {
  color: var(--grey-200);
  font-size: 18px;
}
.license-info i.material-icons-round {
  background-color: var(--grey-100);
  color: var(--grey-400);
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  border-radius: 32px;
}
.license-info.license-info-perpetual {
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  align-items: center;
  grid-gap: 12px;
  grid-template-columns: 32px auto 32px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.license-info.license-info-perpetual:hover i.material-icons-round {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
  color: var(--primary-500);
}
.license-info.license-info-non-perpetual span {
  display: inline-block;
  margin-right: 8px;
}
.license-info.license-info-non-perpetual .material-symbols-outlined {
  vertical-align: bottom;
  cursor: pointer;
}
.license-info.license-info-non-perpetual .delete-license, .license-info.license-info-non-perpetual .history-license {
  display: none;
}
.license-info.license-info-non-perpetual:hover .delete-license, .license-info.license-info-non-perpetual:hover .history-license {
  display: inline-block;
}
.license-info.license-info-non-perpetual .delete-license:hover {
  color: var(--secondary-500);
}
.license-info.license-info-non-perpetual .history-license:hover {
  color: var(--primary-500);
}
.license-info.license-info-pending {
  opacity: 0.7;
}
.license-info.license-info-invisible {
  opacity: 0.3;
}
.license-info.license-info-pending.license-info-diff header {
  color: green;
}
.license-info.license-info-pending.license-info-diff .material-symbols-outlined {
  color: green;
}
.license-info.license-info-pendingremoval.license-info-diff header {
  color: red;
}
.license-info.license-info-pendingremoval.license-info-diff .material-symbols-outlined {
  color: red;
}
.license-info .swipe {
  position: absolute;
  top: 0;
  right: -60px;
  width: 50px;
  bottom: 0;
  transition: right 0.2s ease-in-out;
  display: flex;
}
.license-info .swipe > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.license-info .swipe .delete {
  background-color: var(--secondary-500);
}
.license-info .swipe .delete:hover {
  background-color: var(--secondary-700);
}
.license-info .swipe .history {
  background-color: var(--primary-500);
}
.license-info .swipe .history:hover {
  background-color: var(--primary-700);
}
.license-info .swipe i, .license-info .swipe .material-symbols-outlined {
  color: white;
}
.license-info:hover .swipe, .license-info.license-info-pendingremoval .swipe {
  right: 18px;
}
.license-info .material-symbols-outlined.warning,
.license-info .warning.material-symbols-outlined {
  color: var(--secondary-400);
}

.compact .license-info.license-info-perpetual {
  padding: 4px 12px !important;
  height: 32px;
}
.compact .license-info.license-info-perpetual i.material-icons-round {
  line-height: 18px;
}
.compact .license-info.license-info-perpetual header, .compact .license-info.license-info-perpetual aside {
  display: inline-block;
}
.compact .license-info.license-info-perpetual aside {
  margin-left: 20px;
}

.compact section.perpetual-licenses {
  display: block;
}
.compact section.perpetual-licenses .license-info-perpetual {
  margin-bottom: 8px;
}

:root {
  --primary-500-10: 0, 144, 217, 0.1;
  --primary-500-25: 0, 144, 217, 0.25;
  --primary-500-50: 0, 144, 217, 0.50;
  --tertiary-500-10: 76, 194, 121, 0.1;
  --tertiary-500-25: 76, 194, 121, 0.25;
  --tertiary-500-50: 76, 194, 121, 0.5;
}

.license-type-info {
  margin: 16px 0;
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  align-items: center;
  grid-gap: 12px;
  grid-template-columns: 32px auto 32px;
  cursor: pointer;
  user-select: none;
}
.license-type-info header {
  font: 600 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.license-type-info aside {
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-400);
  margin-top: 2px;
  margin-bottom: 0;
}
.license-type-info .status {
  text-align: right;
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.license-type-info i {
  color: var(--grey-200);
  font-size: 18px;
}
.license-type-info i.material-icons-round {
  background-color: var(--grey-100);
  border: 1px solid transparent;
  color: var(--grey-400);
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  border-radius: 32px;
}
.license-type-info.license-info-perpetual {
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  align-items: center;
  grid-gap: 12px;
  grid-template-columns: 32px auto 32px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.license-type-info.license-info-perpetual:hover, .license-type-info.license-info-perpetual.license-info-selected {
  border-color: var(--primary-500);
}
.license-type-info.license-info-perpetual:hover i.material-icons-round, .license-type-info.license-info-perpetual.license-info-selected i.material-icons-round {
  background-color: var(--primary-500);
  color: white;
  border-color: var(--primary-500);
}
.license-type-info:hover {
  background-color: rgba(var(--primary-500-10));
}
.license-type-info:hover i.material-icons-round {
  background-color: rgba(var(--primary-500-25));
  border: 1px solid var(--primary-500);
  color: var(--primary-500);
}
.license-type-info:hover header {
  color: var(--primary-500);
}
.license-type-info.license-info-selected {
  background-color: white;
}
.license-type-info.license-info-selected i.material-icons-round {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
  color: var(--primary-500);
}
.license-type-info.license-info-disabled {
  opacity: 0.7;
  pointer-events: none;
}
.license-type-info dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.license-type-info dd {
  text-align: right;
}
.license-type-info dt {
  text-align: left;
}

.transfer-licenses-to-customer .bottomButtons {
  display: flex;
  justify-content: space-between;
}

.transfer-to-radio header {
  margin-bottom: 8px;
  font: 600 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.transfer-to-radio footer {
  margin-top: 24px;
  text-align: right;
  position: sticky;
  bottom: -25px;
  background: white;
  padding-bottom: 0px;
  padding-top: 15px;
}
.transfer-to-radio .bottomButtons {
  display: flex;
  justify-content: space-between;
}
.transfer-to-radio .license-section {
  padding-right: 20px;
}
.transfer-to-radio .licenses-avaliable {
  max-height: 55vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 5px;
}
.transfer-to-radio .radios-added {
  overflow-y: auto;
  min-height: 55vh;
  -webkit-overflow-scrolling: touch;
}
.transfer-to-radio .transfer-layout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.transfer-to-radio .transfer-layout .license-section,
.transfer-to-radio .transfer-layout .radio-section {
  flex: 1 0 0;
  min-width: 220px;
  max-width: 100%;
}

.compact .transfer-to-radio .license-type-info {
  padding: 6px 12px;
  margin: 6px 0;
}
.compact .transfer-to-radio .license-type-info .material-icons-round {
  line-height: 18px;
}
.compact .transfer-to-radio .license-type-info header {
  margin-bottom: 0;
}
.compact .transfer-to-radio .license-type-info .status dl {
  display: flex;
  justify-content: end;
}

.compact .transfer-to-radio .radio-card .status, .compact .transfer-to-radio .radio-card .tags {
  display: none;
}

.alert {
  padding: 6px;
  margin-bottom: 1rem;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  text-align: left;
}
.alert.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.license-list {
  height: calc(100vh - 50px);
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
  PADDING-BOTTOM: 55px;
}
.license-list > header {
  padding: 24px 12px 16px 12px;
  /*margin-bottom: 20px;*/
  display: grid;
  grid-template-columns: 32px auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  position: sticky;
  background-color: var(--grey-50);
  z-index: 1;
  top: 0;
}
.license-list > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.license-list > header .material-icons-round {
  height: 32px;
}
.license-list > header a {
  font: 400 9px/12px "Nunito Sans";
}
.license-list > header .transfer-radios {
  grid-column: 2;
  justify-self: end;
  display: flex;
  gap: 8px;
}
.license-list .license-type-info {
  margin: 16px;
}

.label-admin-checkbox {
  display: inline-flex;
  align-items: center;
  padding-top: 10px;
}
.label-admin-checkbox input {
  margin-right: 5px;
}

.radio-index-selected > .license-list > header {
  background-color: white;
}
.radio-index-selected > .license-list > header h6 {
  font: 400 14px/16px "Nunito Sans";
}
.radio-index-selected > .license-list .admin-button {
  display: none;
}

.timeline {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: white;
  max-width: 400px;
  padding: 0;
  border-left: 1px solid #ccc;
  overflow-y: auto;
}
.timeline h2 {
  font-size: 16px;
}
.timeline h4 {
  padding: 16px 32px;
  margin: 0;
  background-color: #eee;
}
.timeline header {
  position: sticky;
  top: 0;
  background-color: #ccc;
  padding: 32px;
}
.timeline header span {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}
.timeline header span i {
  color: #444;
  background-color: transparent;
  font-size: 24px;
}
.timeline article {
  padding: 16px 32px;
}
.timeline aside {
  font-size: 14px;
  color: #666;
}
.timeline aside span {
  display: block;
}

.orders-list {
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 20px;
}
.orders-list > header {
  padding: 24px 12px 16px 12px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  background-color: var(--grey-50);
  position: sticky;
  top: 0;
  z-index: 1;
}
.orders-list > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.orders-list table thead {
  position: sticky;
  top: 83px;
}

.order-details {
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 20px;
}
.order-details > header {
  padding: 24px 12px 16px 12px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  background-color: var(--grey-50);
  position: sticky;
  top: 0;
  z-index: 1;
}
.order-details > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}

.order-details {
  overflow-y: scroll;
  height: 100%;
}
.order-details > header {
  padding: 24px 12px 16px 12px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  background-color: var(--grey-50);
  position: sticky;
  top: 0;
  z-index: 1;
}
.order-details > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}

.order-table {
  background-color: var(--grey-50);
  padding-bottom: 40px;
}
.order-table > header .header, .order-table .order-card {
  display: grid;
  grid-template-columns: 32px 1fr 1fr 1fr 64px;
  align-items: center;
  grid-gap: 18px;
}
.order-table > header .header input[type=checkbox] {
  margin-left: 8px;
}
.order-table > header {
  padding: 24px 18px 10px;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  font: 600 9px/12px "Nunito Sans";
  color: var(--grey-400);
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--grey-50);
}
.order-table > header h1 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}

.provisioning-index {
  overflow: auto;
  height: 100vh;
}
.provisioning-index > header .order-card {
  background-color: transparent;
  align-items: flex-start;
  gap: 24px;
}
.provisioning-index > header .order-card .select {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
}
.provisioning-index > header .order-card .select svg path {
  fill: var(--primary-500);
}
.provisioning-index > header .order-card h4 {
  font: 600 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.provisioning-index > header .order-card aside {
  font: 400 16px/18px "Nunito Sans";
}
.provisioning-index > header .order-card-connected .select svg path {
  fill: var(--tertiary-500);
}
.provisioning-index .order-table > header {
  top: 61px;
  padding: 10px 18px;
}
.provisioning-index .order-table > header h1, .provisioning-index .order-table > header svg {
  display: none;
}
.provisioning-index input:not([type=checkbox]) {
  font-size: 14px;
  font-weight: 100;
  border-radius: 8px;
  border: var(--grey-100) 1px solid;
}
.provisioning-index .radio-table .radio-card .status .provisioning-page-only {
  display: block !important;
}

.provisioning-index-container {
  display: grid;
  background-color: var(--grey-50);
}
.provisioning-index-container > .order-table {
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 55px;
}
.provisioning-index-container.provisioning-index-selected {
  grid-template-columns: 240px auto;
}
.provisioning-index-container.provisioning-index-selected > .order-table label.better-search {
  max-width: 190px;
}
.provisioning-index-container.provisioning-index-selected > .order-table > header h1 {
  font: 400 14px/16px "Nunito Sans";
  grid-column: 2/span 2;
}
.provisioning-index-container.provisioning-index-selected > .order-table > header > div {
  display: none;
}

.order-card {
  padding: 18px;
  margin-bottom: 1px;
  background-color: white;
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-500);
  cursor: pointer;
}
.order-card .select {
  height: 32px;
  width: 32px;
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--grey-50);
}
.order-card .select i.material-icons {
  font-size: 18px;
}
.order-card:hover {
  background-color: rgba(var(--primary-500-10));
}
.order-card:hover, .order-card.highlight {
  background-color: rgba(var(--primary-500-10));
}
.order-card:hover .select, .order-card.highlight .select {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
}
.order-card:hover .select i.material-icons, .order-card.highlight .select i.material-icons {
  color: var(--primary-500);
}
.order-card:hover header, .order-card.highlight header {
  color: var(--primary-500);
}
.order-card h4 {
  font: 600 14px/16px "Nunito Sans";
  color: var(--grey-900);
  margin-bottom: 4px;
}
.order-card h5 {
  font: 600 12px/14px "Nunito Sans";
  color: var(--grey-900);
  margin-bottom: 0px;
}
.order-card aside {
  font: 400 9px/12px "Nunito Sans";
  color: var(--grey-400);
}
.order-card .status label {
  font: 500 9px/12px "Nunito Sans";
  color: var(--grey-500);
  position: relative;
}
.order-card progress {
  width: calc(100% - 30px);
  height: 4px;
  display: block;
  margin-bottom: 6px;
}
.order-card progress::-webkit-progress-bar {
  background-color: var(--grey-100);
  border-radius: 10px;
}
.order-card progress::-webkit-progress-value {
  background-color: var(--primary-500);
  border-radius: 10px;
}
.order-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.provisioning-index-selected > .order-table .order-card .customer, .provisioning-index-selected > .order-table .order-card .partnumber, .provisioning-index > header .order-card .customer, .provisioning-index > header .order-card .partnumber {
  display: none;
}
.provisioning-index-selected > .order-table .order-card .status, .provisioning-index > header .order-card .status {
  grid-column: 2;
}
.provisioning-index-selected > .order-table .order-card dl, .provisioning-index > header .order-card dl {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 4px;
}

.orders-list .order-card, .provisioning-index-selected > .order-table .order-card, .provisioning-index > header .order-card {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: center;
  grid-gap: 8px;
  /*.status {
      grid-row: 2;
      grid-column: 2;

      label {
          margin: 0;
      }
  }

  .tags {
      display: none;
  }*/
}

.order-info {
  background: white;
}
.order-info section.order-tags {
  display: none;
}
.order-info .radio-table {
  padding: 0;
}
.order-info > section {
  /*display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;*/
  padding: 24px;
  border-bottom: 1px solid var(--grey-100);
  position: relative;
}
.order-info > section h2 {
  grid-column: 1/span 2;
}
.order-info > section .license-info {
  margin: 0;
}
.order-info > section button {
  width: 160px;
}
.order-info section.msn {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 24px;
}
.order-info section.msn label {
  width: unset;
}
.order-info section.msn input {
  width: 100%;
}
.order-info section.msn button {
  margin: 0;
  justify-self: end;
}
.order-info h1 {
  font: 600 38px/42px "Nunito Sans";
  color: var(--grey-900);
  margin-bottom: 8px;
}
.order-info h2 {
  font: 600 16px/18px "Nunito Sans";
  color: var(--grey-700);
  margin-bottom: 16px;
}
.order-info > aside {
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-400);
  margin-bottom: 32px;
}
.order-info hr {
  height: 1px;
  border-top: 1px solid var(--grey-100);
  margin: 48px 0 24px;
}
.order-info button {
  width: 100%;
  text-align: center;
}
.order-info dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}
.order-info dl dt {
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-500);
}
.order-info dl dd {
  font: 600 14px/16px "Nunito Sans";
  color: var(--grey-500);
}
.order-info .radio-table > header {
  display: grid;
  grid-template-columns: 24px 150px 1fr 1fr;
  grid-template-rows: 30px 40px;
  align-items: center;
  padding: 12px 12px 0 12px;
  z-index: 1000;
}
.order-info .radio-table > header h1 {
  font-size: 24px;
  margin-bottom: 0;
}
.order-info .radio-table label.better-search {
  grid-row: 1;
}
.order-info .radio-table .header {
  grid-column: 1/span 4;
  grid-row: 2;
  align-items: flex-end;
}
.order-info .radio-table .actions {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
}
.order-info .radio-card-container {
  display: flex;
  padding-left: 0;
}
.order-info .radio-card-container .radio-card {
  display: flex;
  position: relative;
}
.order-info .radio-card-container .radio-card a {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.order-info .radio-card-container .radio-card h4 {
  margin-top: 8px;
  margin-left: 7px;
}

.customer-list {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
}
.customer-list > header {
  padding: 24px 12px 16px 12px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  position: sticky;
  background-color: var(--grey-50);
  z-index: 1;
  top: 0;
}
.customer-list > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.customer-list > header .material-icons-round {
  height: 32px;
}
.customer-list > header a {
  font: 400 9px/12px "Nunito Sans";
}
.customer-list label.better-search {
  grid-column: 1/span 2;
}
.customer-list .actions {
  grid-column: 3/span 2;
  justify-self: end;
}

:root {
  --primary-500-10: 0, 144, 217, 0.1;
  --primary-500-25: 0, 144, 217, 0.25;
  --primary-500-50: 0, 144, 217, 0.50;
  --tertiary-500-10: 76, 194, 121, 0.1;
  --tertiary-500-25: 76, 194, 121, 0.25;
  --tertiary-500-50: 76, 194, 121, 0.5;
}

.customer-info {
  border: 1px solid var(--grey-100);
  border-radius: 0;
  background: white;
  padding: 12px;
  display: grid;
  align-items: center;
  grid-gap: 12px;
  grid-template-columns: 32px auto 64px;
  cursor: pointer;
}
.customer-info header {
  font: 600 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.customer-info aside {
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-400);
  margin-top: 2px;
  margin-bottom: 0;
}
.customer-info .status {
  text-align: right;
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.customer-info i {
  color: var(--grey-200);
  font-size: 18px;
}
.customer-info i.material-icons-round {
  background-color: var(--grey-100);
  border: 1px solid transparent;
  color: var(--grey-400);
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  border-radius: 32px;
}
.customer-info.license-info-perpetual {
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  align-items: center;
  grid-gap: 12px;
  grid-template-columns: 32px auto 32px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.customer-info.license-info-perpetual:hover, .customer-info.license-info-perpetual.license-info-selected {
  border-color: var(--primary-500);
}
.customer-info.license-info-perpetual:hover i.material-icons-round, .customer-info.license-info-perpetual.license-info-selected i.material-icons-round {
  background-color: var(--primary-500);
  color: white;
  border-color: var(--primary-500);
}
.customer-info:hover {
  background-color: rgba(var(--primary-500-10));
}
.customer-info:hover i.material-icons-round {
  background-color: rgba(var(--primary-500-25));
  border: 1px solid var(--primary-500);
  color: var(--primary-500);
}
.customer-info:hover header {
  color: var(--primary-500);
}
.customer-info.license-info-selected {
  background-color: white;
}
.customer-info.license-info-selected i.material-icons-round {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
  color: var(--primary-500);
}
.customer-info.license-info-disabled {
  opacity: 0.7;
  pointer-events: none;
}
.customer-info dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.customer-info dd {
  text-align: right;
}
.customer-info dt {
  text-align: left;
}

.add-customer-modal {
  min-width: 400px;
  min-height: 350px;
}
.add-customer-modal header {
  margin-bottom: 8px;
  font: 600 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.add-customer-modal footer {
  margin-top: 24px;
  text-align: right;
  position: sticky;
  bottom: -25px;
  background: white;
  padding-bottom: 25px;
  padding-top: 15px;
}
.add-customer-modal input {
  display: block;
  padding-left: 16px;
  width: 100%;
}

.user-card {
  position: relative;
  cursor: pointer;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-card .material-icons-round {
  background-color: white;
  width: 32px;
  height: 32px;
  color: var(--grey-400);
  border: 1px solid var(--grey-100);
}
.user-card .material-icons-round:hover {
  border: 1px solid var(--primary-500);
  color: var(--primary-500);
}
.user-card header {
  font: 600 14px/16px "Nunito Sans";
  color: var(--grey-100);
  margin-right: 20px;
}
.user-card aside {
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-400);
}
.user-card ul {
  display: none;
}
.user-card .arrow-down {
  color: var(--grey-400);
  font-size: 18px;
}

.user-card-container {
  background-color: var(--grey-700);
  padding: 24px 16px 16px;
}
.user-card-container-impersonating {
  background-color: var(--secondary-900);
}
.user-card-container-impersonating .user-card aside {
  color: var(--grey-200);
}
.user-card-container-impersonating .user-floating-menu li:hover {
  background-color: var(--secondary-400);
}

.impersonating-header {
  background-color: var(--secondary-700);
  font-weight: 600;
  padding: 16px;
}

.user-floating-menu {
  list-style: none;
  margin-left: 18px;
  padding: 16px 0;
}
.user-floating-menu li {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 8px;
}
.user-floating-menu li [class^=material-icons] {
  font-size: 14px;
  margin-right: 10px;
  vertical-align: top;
}
.user-floating-menu li:hover {
  cursor: pointer;
  background-color: var(--grey-400);
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.sparc-authentication, .sign-in {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  background-color: var(--grey-50);
}
.sparc-authentication .card, .sign-in .card {
  background-color: white;
  border-radius: 8px;
  padding: 0;
  min-width: 370px;
}
.sparc-authentication .card > header, .sign-in .card > header {
  background-color: var(--grey-900);
  border-radius: 8px 8px 0 0;
  padding: 40px;
  text-align: center;
}
.sparc-authentication .card > header p, .sign-in .card > header p {
  color: var(--grey-300);
  font: 400 16px/18px "Nunito Sans";
  margin-bottom: 12px;
}
.sparc-authentication .version-footer, .sign-in .version-footer {
  color: gray;
  position: absolute;
  padding: 0px 24px;
  bottom: 10px;
}
.sparc-authentication form, .sign-in form {
  padding: 32px;
  text-align: center;
}
.sparc-authentication label, .sign-in label {
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-500);
  display: block;
  text-align: left;
}
.sparc-authentication input, .sign-in input {
  padding: 8px 16px;
  font-size: 14px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--grey-200);
  margin-bottom: 24px;
  margin-top: 4px;
}
.sparc-authentication button, .sign-in button {
  margin-top: 16px;
  min-width: 168px;
}
.sparc-authentication aside, .sign-in aside {
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-500);
}
.sparc-authentication aside a, .sign-in aside a {
  color: var(--primary-500);
}

.sparc-authentication, .sign-up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  background-color: var(--grey-50);
}
.sparc-authentication .card, .sign-up .card {
  background-color: white;
  border-radius: 8px;
  padding: 0;
  min-width: 650px;
}
.sparc-authentication .card > header, .sign-up .card > header {
  background-color: var(--grey-900);
  border-radius: 8px 8px 0 0;
  padding: 40px;
  text-align: center;
}
.sparc-authentication .card > header p, .sign-up .card > header p {
  color: var(--grey-300);
  font: 400 16px/18px "Nunito Sans";
  margin-bottom: 12px;
}
.sparc-authentication .card .sign-up-result, .sign-up .card .sign-up-result {
  margin: 20px 0px 0px 0px;
  text-align: center;
}
.sparc-authentication .version-footer, .sign-up .version-footer {
  color: gray;
  position: absolute;
  padding: 0px 24px;
  bottom: 10px;
}
.sparc-authentication form, .sign-up form {
  padding: 32px;
  text-align: center;
  max-height: 90vh;
  /*overflow: scroll;*/
}
.sparc-authentication .flex-container .form-group, .sign-up .flex-container .form-group {
  width: 45%;
}
.sparc-authentication .flex-container .form-group.left, .sign-up .flex-container .form-group.left {
  float: left;
}
.sparc-authentication .flex-container .form-group.right, .sign-up .flex-container .form-group.right {
  float: right;
}
.sparc-authentication label, .sign-up label {
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-500);
  display: block;
  text-align: left;
}
.sparc-authentication input, .sign-up input {
  padding: 8px 16px;
  font-size: 14px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--grey-200);
  margin-bottom: 24px;
  margin-top: 4px;
}
.sparc-authentication select, .sign-up select {
  padding: 8px 16px;
  font-size: 14px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--grey-200);
  margin-bottom: 24px;
  margin-top: 4px;
}
.sparc-authentication button, .sign-up button {
  margin-top: 16px;
  width: 100%;
}
.sparc-authentication aside, .sign-up aside {
  font: 400 14px/16px "Nunito Sans";
  color: var(--grey-500);
}
.sparc-authentication aside a, .sign-up aside a {
  color: var(--primary-500);
}

.add-user-modal {
  min-width: 400px;
  min-height: 350px;
}
.add-user-modal header {
  margin-bottom: 8px;
  font: 600 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.add-user-modal footer {
  margin-top: 24px;
  text-align: right;
  position: sticky;
  bottom: -25px;
  background: white;
  padding-bottom: 25px;
  padding-top: 15px;
}
.add-user-modal input {
  display: block;
  padding-left: 16px;
  width: 100%;
}

.user-info {
  border: 1px solid var(--grey-100);
  border-radius: 0;
  background: white;
  padding: 12px;
  display: grid;
  align-items: center;
  grid-gap: 12px;
  grid-template-columns: 32px auto 150px;
  cursor: pointer;
}
.user-info header {
  font: 600 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.user-info aside {
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-400);
  margin-top: 2px;
  margin-bottom: 0;
}
.user-info .status {
  text-align: right;
  font: 400 12px/14px "Nunito Sans";
  color: var(--grey-500);
}
.user-info i {
  color: var(--grey-200);
  font-size: 18px;
}
.user-info i.material-icons-round {
  background-color: var(--grey-100);
  border: 1px solid transparent;
  color: var(--grey-400);
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  border-radius: 32px;
}
.user-info.license-info-perpetual {
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  align-items: center;
  grid-gap: 12px;
  grid-template-columns: 32px auto 32px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.user-info.license-info-perpetual:hover, .user-info.license-info-perpetual.license-info-selected {
  border-color: var(--primary-500);
}
.user-info.license-info-perpetual:hover i.material-icons-round, .user-info.license-info-perpetual.license-info-selected i.material-icons-round {
  background-color: var(--primary-500);
  color: white;
  border-color: var(--primary-500);
}
.user-info:hover {
  background-color: rgba(var(--primary-500-10));
}
.user-info:hover i.material-icons-round {
  background-color: rgba(var(--primary-500-25));
  border: 1px solid var(--primary-500);
  color: var(--primary-500);
}
.user-info:hover header {
  color: var(--primary-500);
}
.user-info.license-info-selected {
  background-color: white;
}
.user-info.license-info-selected i.material-icons-round {
  background-color: rgba(var(--primary-500-25));
  border-color: var(--primary-500);
  color: var(--primary-500);
}
.user-info.license-info-disabled {
  opacity: 0.7;
  pointer-events: none;
}
.user-info dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.user-info dd {
  text-align: right;
}
.user-info dt {
  text-align: left;
}

.user-list {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
}
.user-list > header {
  padding: 24px 12px 16px 12px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  position: sticky;
  background-color: var(--grey-50);
  z-index: 1;
  top: 0;
}
.user-list > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.user-list > header .material-icons-round {
  height: 32px;
}
.user-list > header a {
  font: 400 9px/12px "Nunito Sans";
}
.user-list .actions {
  grid-column: 3/span 2;
  grid-row: 2;
  justify-self: end;
}

.customer-list {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
}
.customer-list > header {
  padding: 24px 12px 16px 12px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  position: sticky;
  background-color: var(--grey-50);
  z-index: 1;
  top: 0;
}
.customer-list > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.customer-list > header .material-icons-round {
  height: 32px;
}
.customer-list > header a {
  font: 400 9px/12px "Nunito Sans";
}
.customer-list label.better-search {
  grid-column: 1/span 2;
}
.customer-list .actions {
  grid-column: 3/span 2;
  justify-self: end;
}

.report-container {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
}
.report-container > header {
  padding: 24px 12px 16px 12px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  background-color: var(--grey-50);
  z-index: 1;
  top: 0;
}
.report-container > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.report-container > header .material-icons-round {
  height: 32px;
}
.report-container > header a {
  font: 400 9px/12px "Nunito Sans";
}

.noReports-message {
  padding: 1rem;
  background-color: var(--grey-50);
  color: var(--secondary-500);
  border: 1px solid var(--grey-100);
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.noReports-message {
  padding: 1rem;
  background-color: var(--grey-50);
  color: var(--secondary-500);
  border: 1px solid var(--grey-100);
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.noReports-message {
  padding: 1rem;
  background-color: var(--grey-50);
  color: var(--secondary-500);
  border: 1px solid var(--grey-100);
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.report-grid-container {
  display: grid;
  grid-template-columns: auto;
  overflow-y: auto;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
}
.report-grid-container > header {
  padding: 24px 12px 16px 12px;
  display: grid;
  grid-template-columns: 32px auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  background-color: var(--grey-50);
  z-index: 1;
  top: 0;
}
.report-grid-container > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.report-grid-container > header .material-icons-round {
  height: 32px;
}
.report-grid-container > header a {
  font: 400 9px/12px "Nunito Sans";
}
.report-grid-container > header .filters {
  grid-column: 1/span 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}
.report-grid-container > header .filters ul {
  list-style: none;
  display: inline-block;
}
.report-grid-container > header .filters ul li {
  display: inline-block;
  margin: 4px 8px;
}
.report-grid-container > header .filters label, .report-grid-container > header .filters select {
  width: auto;
}
.report-grid-container > header .filters input[type=radio] {
  display: inline-block;
}
.report-grid-container > header .filters input[type=radio]::before {
  box-shadow: inset 1em 1em #0090d9;
}
.report-grid {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow-x: auto;
  min-height: 80vh;
}
.report-grid .quickgrid[theme=default] {
  min-width: 100%;
}
.report-grid .quickgrid[theme=default] > thead {
  position: sticky;
  top: 0;
  background-color: var(--grey-900);
  outline: 1px solid gray;
  z-index: 1;
}
.report-grid .quickgrid[theme=default] > thead > tr > th {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.report-grid .quickgrid[theme=default] > tbody > tr > td {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  background: white;
  white-space: nowrap;
}
.report-grid svg {
  height: 16px;
}
.report-grid > footer {
  position: fixed;
  bottom: 0;
  left: 240px;
  right: 0;
  padding: 16px;
  background-color: white;
  text-align: right;
  border-top: 1px solid var(--grey-700);
}
.report-grid .loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.releaseNotesPage {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.releaseNotesPage .index {
  padding: 1.5rem;
  word-wrap: break-word;
}
.releaseNotesPage > header {
  padding: 24px 12px 16px 12px;
  display: grid;
  grid-template-columns: 32px auto 100px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  background-color: var(--grey-50);
  z-index: 1;
  top: 0;
}
.releaseNotesPage > header h6 {
  font: 400 38px/42px "Nunito Sans";
  color: var(--grey-700);
}
.releaseNotesPage > header .material-icons-round {
  height: 32px;
}
.releaseNotesPage > header a {
  font: 400 9px/12px "Nunito Sans";
}
.releaseNotesPage .release-card {
  padding: 2rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f1f1f1;
  border-left: 5px solid #0078d4;
  border-radius: 4px;
}
.releaseNotesPage .release-card > h3 {
  padding-bottom: 15px;
}
.releaseNotesPage .release-card > h5 {
  color: var(--grey-700);
}
.releaseNotesPage .release-card .admin-view {
  color: var(--grey-500);
  font-style: italic;
}

/*overrides kodekit*/
.blank-layout input, .blank-layout textarea, .blank-layout select {
  width: 100% !important;
  border: 1px solid #D5D8DB !important;
  border-radius: 8px !important;
  margin-top: 4px !important;
}
.blank-layout a {
  color: #0090D9 !important;
}

.blazored-modal {
  overflow-y: scroll;
  overflow-y: auto;
  max-height: 90vh;
}
.blazored-modal .blazored-modal-header .blazored-modal-title {
  font-size: var(--type-500);
  --font-family: var(--font-family);
}
.blazored-modal .blazored-modal-header .blazored-modal-close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: black;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.action-sheet-open .action-sheet-backdrop {
  pointer-events: auto;
}

.action-sheet-backdrop {
  -webkit-transition: background-color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out;
  position: fixed;
  top: 8000px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1040;
}
.action-sheet-backdrop.active {
  background-color: rgba(0, 0, 0, 0.1);
  top: 0px;
}

.action-sheet-wrapper {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  /*width: 100%;
  max-width: 500px;*/
  /*margin: auto;*/
  background: #fff;
  box-shadow: 0px 4px 163px rgba(41, 52, 64, 0.07), 0px 1.20588px 49.1397px rgba(41, 52, 64, 0.0397246), 0px 0.500862px 20.4101px rgba(41, 52, 64, 0.0253568), 0px 0.181152px 7.38194px rgba(41, 52, 64, 0.0133968);
  /*border-radius: 16px 16px 0px 0px;*/
  z-index: 1050;
}

.action-sheet-wrapper {
  max-height: 62%;
  overflow: auto;
}

.action-sheet-up {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.input {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 100;
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  background: #fff;
}

textarea, input {
  border-radius: 5px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade {
  transition: opacity 0.15s linear;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}

.blazor-error-boundary::after {
  content: "An error has occurred.";
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}

@media (max-width: 767.98px) {
  .hide-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}
.loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #2b2e30;
  background: -moz-linear-gradient(left, #2b2e30 10%, rgba(43, 46, 48, 0) 42%);
  background: -webkit-linear-gradient(left, #2b2e30 10%, rgba(43, 46, 48, 0) 42%);
  background: -o-linear-gradient(left, #2b2e30 10%, rgba(43, 46, 48, 0) 42%);
  background: -ms-linear-gradient(left, #2b2e30 10%, rgba(43, 46, 48, 0) 42%);
  background: linear-gradient(to right, #2b2e30 10%, rgba(43, 46, 48, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #2b2e30;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.loader:after {
  background: #ffffff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.scrollbar-thin::-webkit-scrollbar {
  width: 6px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 20px;
}

.scrollbar-thin::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 20px;
}

.table > thead .material-icons, .table > tbody .material-icons {
  font-size: 13px;
  color: var(--grey-300);
  cursor: pointer;
}
.table > thead {
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  background: var(--grey-50);
}
.table > thead > tr > th:first-child {
  padding-left: 18px;
}
.table > thead > tr > th {
  padding: 9px 9px;
  font-weight: 600;
  font-size: 9px;
  line-height: 12px;
  color: var(--grey-400);
  vertical-align: middle;
}
.table > tbody > tr > td:first-child {
  padding-left: 18px;
}
.table > tbody > tr > td {
  padding: 16px 9px;
  font-size: 14px;
  line-height: 16px;
  color: var(--grey-900);
  vertical-align: middle;
  border-bottom: 1px solid var(--grey-50);
}
.table > tbody > tr > td.more-info {
  width: 1px;
  border-left: 1px solid var(--grey-100);
  padding: 16px 18px;
}

.tr-grey {
  background: var(--grey-50);
}

.table-simple {
  width: 100%;
}
.table-simple > thead > tr > th {
  font-weight: 500;
  font-size: 9px;
  line-height: 12px;
  color: var(--grey-400);
}
.table-simple > tbody > tr > td {
  padding: 4px 0px;
  font-size: 12px;
  line-height: 14px;
  color: var(--grey-500);
}
.table-simple > tbody > tr > td:nth-child(1) {
  color: var(--grey-800);
}

.folder-tree-wrapper .folder-tree {
  list-style: none;
  cursor: pointer;
  padding-left: 6px;
  padding-top: 25px;
}
.folder-tree-wrapper .folder-tree ul {
  position: relative;
  padding-left: 18px;
}
.folder-tree-wrapper .folder-tree ul:before {
  position: absolute;
  content: "";
  left: -10px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: transparent;
}
.folder-tree-wrapper .folder-tree li {
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.4s ease;
  position: relative;
}
.folder-tree-wrapper .folder-tree li .item-container {
  white-space: nowrap;
  overflow: hidden;
}
.folder-tree-wrapper .folder-tree li .item-container i {
  color: #BBC0C5;
  font-size: 18px;
}
.folder-tree-wrapper .folder-tree li .item-container li ul {
  padding-left: 18px;
  padding-top: 8px;
}
.folder-tree-wrapper .folder-tree li .item-container ul {
  position: relative;
}
.folder-tree-wrapper .folder-tree li .item-container ul:before {
  position: absolute;
  content: "";
  left: -10px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: transparent;
}
.folder-tree-wrapper .folder-tree li .item-container li ul li {
  display: block;
  margin-bottom: 8px;
}
.folder-tree-wrapper .folder-tree li ul {
  position: relative;
}
.folder-tree-wrapper .folder-tree li ul:before {
  position: absolute;
  content: "";
  left: -10px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: transparent;
}
.folder-tree-wrapper .folder-tree li ul li {
  display: block;
  margin-bottom: 8px;
}
.folder-tree-wrapper .folder-tree li .item-container:hover {
  background-color: #EEEFF0;
}

.anchor-button {
  background: var(--primary-500);
  border-radius: 8px;
  border-width: 0;
  cursor: pointer;
  width: 143px;
  color: white;
  font-size: 12px;
}
