html {
  font-size: 14px;
  height: 100%;
}

body {
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol");
  background-color: var(--surface-b);
  color: var(--text-color);
  font-size: 14px;
  padding: 0;
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.layout-scroll-block {
  overflow: hidden;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.p-toast.p-toast-topright {
  z-index: 10000;
  top: 90px;
  right: 28px;
}

.layout-wrapper .layout-topbar {
  background-color: var(--surface-a);
  color: var(--text-color);
  height: 50px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 997;
  padding-left: 350px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-wrapper .layout-topbar .action-icon {
  color: var(--text-secondary-color);
  text-decoration: none;
}
.layout-wrapper .layout-topbar .action-icon.menu-icon {
  margin-left: 2rem;
  display: none;
  width: 2.5rem !important;
  height: 2.5rem;
}
.layout-wrapper .layout-topbar .action-icon.menu-icon i {
  font-size: 1.5rem;
}
.layout-wrapper .layout-topbar .action-icon.home-icon {
  margin-left: 2rem;
}
.layout-wrapper .layout-topbar .action-icon.home-icon i {
  font-size: 1rem;
}
.layout-wrapper .layout-topbar .action-icon:hover {
  background: var(--surface-c);
}
.layout-wrapper .layout-topbar .route-link {
  color: var(--text-secondary-color);
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
  margin: 0 2rem 0 auto;
}
.layout-wrapper .layout-topbar .route-link:hover {
  background: var(--surface-c);
}
.layout-wrapper .layout-editor {
  position: fixed;
  width: 350px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: var(--surface-a);
  color: var(--text-color);
  border-right: 1px solid var(--surface-d);
  transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
}
.layout-wrapper .layout-editor .layout-editor-top {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-wrapper .layout-editor .layout-editor-top .logo {
  width: 150px;
}
.layout-wrapper .layout-editor p {
  font-size: 0.875rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  background-color: var(--surface-b);
  border: 2px dashed var(--surface-d);
  color: var(--text-color-secondary);
}
.layout-wrapper .layout-editor p a {
  color: #2196F3;
}
.layout-wrapper .layout-editor p a:hover {
  text-decoration: underline;
}
.layout-wrapper .layout-editor .editor-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.layout-wrapper .layout-editor .editor-field label {
  font-size: 0.857rem;
}
.layout-wrapper .layout-editor .editor-field input {
  text-align: right;
  appearance: none;
  border: 0 none;
  background-color: var(--surface-d);
  border-radius: 4px;
  font-size: 1rem;
}
.layout-wrapper .layout-editor .editor-field input[type=text] {
  padding: 0.5rem;
  color: var(--text-color);
}
.layout-wrapper .layout-editor .editor-field input[type=color] {
  padding: 0.1rem;
}
.layout-wrapper .layout-editor .layout-editor-panel {
  overflow: auto;
  height: 100%;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.layout-wrapper .layout-editor .config-scale {
  display: flex;
  align-items: center;
  margin: 1rem 0 2rem 0;
}
.layout-wrapper .layout-editor .config-scale .p-button {
  margin-right: 0.5rem;
}
.layout-wrapper .layout-editor .config-scale i {
  margin-right: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-color-secondary);
}
.layout-wrapper .layout-editor .config-scale i.scale-active {
  font-size: 1.25rem;
  color: #2196F3;
}
.layout-wrapper .layout-content {
  margin-left: 350px;
  padding: 6rem 2rem 2rem 2rem;
  background-color: var(--surface-b);
}
.layout-wrapper .layout-footer {
  width: 100%;
  background: var(--surface-a);
  padding: 1rem;
  padding-left: 374px;
  border-top: 1px solid var(--surface-d);
  color: var(--text-secondary-color);
}
.layout-wrapper .action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem !important;
  height: 2rem;
  border: 0 none;
  border-radius: 50%;
  transition: background-color 0.15s;
  cursor: pointer;
}
.layout-wrapper .action-icon.action-restart {
  background-color: #2194f3;
  color: #ffffff;
}
.layout-wrapper .action-icon.action-restart:hover {
  background-color: #0d87ec;
}
.layout-wrapper .action-icon.action-download {
  background-color: #f37f21;
  color: #ffffff;
}
.layout-wrapper.layout-editor-code .layout-topbar {
  padding-left: 2rem;
}
.layout-wrapper.layout-editor-code .layout-content {
  margin-left: 0;
}
.layout-wrapper.layout-editor-code .layout-footer {
  padding-left: 2rem;
}

.card {
  background: var(--surface-e);
  color: var(--text-color);
  padding: 2rem;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  margin-bottom: 1rem;
}
.card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i:not([class~=pi]) {
  background-color: var(--surface-b);
  color: #2196f3;
  font-family: Monaco, courier, monospace;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 4px;
  letter-spacing: 0.5px;
  border-radius: 3px;
  font-weight: 600;
  margin: 0 2px;
}

pre[class*=language-]:before, pre[class*=language-]:after {
  display: none !important;
}
pre[class*=language-] code {
  border-left: 10px solid var(--surface-d) !important;
  box-shadow: none !important;
  background: var(--surface-b) !important;
  margin: 1em 0;
  color: var(--text-color);
  font-size: 14px;
}
pre[class*=language-] code .token.tag, pre[class*=language-] code .token.keyword {
  color: #2196F3 !important;
}
pre[class*=language-] code .token.attr-name, pre[class*=language-] code .token.attr-string {
  color: #2196F3 !important;
}
pre[class*=language-] code .token.attr-value {
  color: #4CAF50 !important;
}
pre[class*=language-] code .token.punctuation {
  color: var(--text-color);
}
pre[class*=language-] code .token.operator, pre[class*=language-] code .token.string, pre[class*=language-] code .token.url {
  background: transparent;
}

.fade-enter-active, .fade-exit-active {
  transition: opacity 0.3s;
}

.fade-enter, .fade-exit-active {
  opacity: 0;
}

@media screen and (max-width: 991px) {
  .layout-wrapper .layout-topbar {
    padding-left: 0;
    justify-content: flex-start;
  }
  .layout-wrapper .layout-topbar .action-icon.menu-icon {
    display: flex;
  }
  .layout-wrapper .layout-topbar .action-icon.home-icon {
    margin-left: 0.5rem;
  }
  .layout-wrapper .layout-topbar .route-link {
    margin-left: auto;
  }
  .layout-wrapper .layout-editor {
    transform: translateX(-100%);
  }
  .layout-wrapper .layout-editor.layout-editor-active {
    transform: translateX(0);
  }
  .layout-wrapper .layout-content {
    margin-left: 0;
  }
  .layout-wrapper .layout-mask {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .layout-wrapper .layout-mask.layout-mask-active {
    z-index: 998;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.5s;
  }
  .layout-wrapper .layout-footer {
    padding-left: 1rem;
  }
}
.layout-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  background-image: linear-gradient(-225deg, #ac32e4 0%, #7918f2 48%, #4801ff 100%);
}
.layout-intro .intro-title {
  font-weight: 300;
  animation: fadeInDown 1s;
}
.layout-intro .intro-title i {
  font-size: 1.75rem;
}

.theme-options {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
  row-gap: 1rem;
  justify-content: center;
}

.theme-option {
  padding: 2rem;
}
.theme-option .theme-option-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  border: 0 none;
  transition: transform 0.3s;
  outline: 0 none;
}
.theme-option .theme-option-button:hover {
  transform: scale(1.1);
}
.theme-option .theme-option-button:focus {
  outline: 0 none;
}
.theme-option .theme-option-button img {
  width: 50px;
  outline: 0 none;
}
.theme-option.theme-option {
  animation: fadeInUp 1s;
}
.theme-option.theme-option.theme-option-leave {
  animation: fadeOut 1s forwards;
}

.p-tooltip.intro {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}
.p-tooltip.intro .p-tooltip-text {
  background: #212121;
  color: #ffffff;
  padding: 0.5rem;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
.p-tooltip.intro.p-tooltip-bottom .p-tooltip-arrow {
  border-bottom-color: transparent;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.home {
  /* Responsive */
}
.home .image-text {
  vertical-align: middle;
}
.home .customer-badge {
  border-radius: 2px;
  padding: 0.25em 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.home .customer-badge.status-qualified {
  background-color: #C8E6C9;
  color: #256029;
}
.home .customer-badge.status-unqualified {
  background-color: #FFCDD2;
  color: #C63737;
}
.home .customer-badge.status-negotiation {
  background-color: #FEEDAF;
  color: #8A5340;
}
.home .customer-badge.status-new {
  background-color: #B3E5FC;
  color: #23547B;
}
.home .customer-badge.status-renewal {
  background-color: #ECCFFF;
  color: #694382;
}
.home .customer-badge.status-proposal {
  background-color: #FFD8B2;
  color: #805B36;
}
.home .p-datatable-customers .p-datatable-tbody > tr > td .p-column-title {
  display: none;
}
@media screen and (max-width: 960px) {
  .home .p-datatable.p-datatable-customers .p-datatable-thead > tr > th,
.home .p-datatable.p-datatable-customers .p-datatable-tfoot > tr > td {
    display: none !important;
  }
  .home .p-datatable.p-datatable-customers .p-datatable-tbody > tr {
    border-bottom: 1px solid var(--layer-2);
  }
  .home .p-datatable.p-datatable-customers .p-datatable-tbody > tr > td {
    text-align: left;
    display: block;
    border: 0 none !important;
    width: 100% !important;
    float: left;
    clear: left;
    border: 0 none;
  }
  .home .p-datatable.p-datatable-customers .p-datatable-tbody > tr > td .p-column-title {
    padding: 0.4rem;
    min-width: 30%;
    display: inline-block;
    margin: -0.4rem 1rem -0.4rem -0.4rem;
    font-weight: bold;
  }
  .home .p-datatable.p-datatable-customers .p-datatable-tbody > tr > td .p-progressbar {
    margin-top: 0.5rem;
  }
}
.home .p-paginator .p-paginator-current {
  margin-left: auto;
}
.home .p-progressbar {
  height: 4px;
}

.documentation li {
  line-height: 1.5;
}
.documentation a {
  color: #2196F3;
}
.documentation a:hover {
  text-decoration: underline;
}
