@charset "UTF-8";

/* src/app/style/animation.scss */
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* src/app/style/button.scss */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin: 0;
  appearance: none;
  background: var(--bg-noise);
  border: none;
  border-radius: 5px;
  box-shadow: var(--shadow-btn);
  font-size: 14px;
  color: var(--color-content);
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
@media (width < 1000px) {
  .btn {
    padding: 0 15px;
  }
}
@media (width >= 1000px) {
  .btn {
    padding: 0 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover span {
    transform: translateY(2px);
  }
}
.btn::after {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-family: "fa-light";
}
.btn span {
  pointer-events: none;
  display: inline-flex;
  gap: 5px;
  transition: 0.3s;
  will-change: transform;
}
.btn span::before {
  font-family: "fa-light";
}
.btn.danger {
  color: var(--color-alert);
}
.btn.busy {
  pointer-events: none;
}
.btn.busy span {
  opacity: 0;
}
.btn.busy::after {
  display: flex;
  content: "\f3f4";
  animation: rotation 1s linear 0s infinite;
}
.btn.done {
  pointer-events: none;
}
.btn.done span {
  opacity: 0;
}
.btn.done::after {
  display: flex;
  content: "\f00c";
}
.btn.pressed {
  background: var(--color-content);
  color: var(--color-invert);
}
.btn.disabled {
  pointer-events: none;
  color: var(--color-neutral);
}
.btn.enter span::before {
  content: "\e4b2";
}
.btn.code span::before {
  content: "\f3ed";
}
.btn.password span::before {
  content: "\f084";
}
.btn.create span::before {
  content: "+";
}
.btn.delete span::before {
  content: "\f00d";
}
.btn.archive span::before {
  content: "\f187";
}
.btn.filter span::before {
  content: "\f0b0";
}
.btn.reload span::before {
  content: "\f2f9";
}
.btn.save span::before {
  content: "\f0c7";
}
.btn.reset span::before {
  content: "\f0e2";
}
.btn.binary span::before {
  content: "\e33b";
}
.btn.apply span::before {
  content: "\f00c";
}
.btn.activate span::before {
  content: "\f336";
}
.rbtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  appearance: none;
  background: none;
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow-rbtn);
  color: var(--color-content);
  font-size: 18px;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .rbtn:hover > * {
    transform: translateY(2px);
  }
}
.rbtn::after {
  display: none;
  font-family: "fa-light";
}
.rbtn span {
  transition: 0.3s;
  will-change: transform;
  pointer-events: none;
}
.rbtn span::before {
  font-family: "fa-light";
}
.rbtn.disabled {
  pointer-events: none;
  color: var(--color-neutral);
}
.rbtn.disabled.danger {
  color: var(--color-neutral);
}
.rbtn.busy {
  pointer-events: none;
}
.rbtn.busy span {
  display: none;
}
.rbtn.busy::after {
  display: inline-block;
  content: "\f3f4";
  animation: rotation 1s linear 0s infinite;
}
.rbtn.done {
  pointer-events: none;
}
.rbtn.done span {
  display: none;
}
.rbtn.done::after {
  display: inline-block;
  content: "\f00c";
}
.rbtn.menu span::before {
  content: "\f0c9";
}
.rbtn.migration span::before {
  content: "\f1c0";
}
.rbtn.options span::before {
  content: "\f7d9";
}
.rbtn.exit span::before {
  content: "\e4b1";
}
.rbtn.reload span::before {
  content: "\f2f9";
}
.rbtn.edit span::before {
  content: "\f044";
}
.rbtn.delete span::before {
  content: "\f00d";
}
.rbtn.archive span::before {
  content: "\f187";
}
.rbtn.close span::before {
  content: "\f00d";
}
.rbtn.left span::before {
  content: "\f053";
}
.rbtn.right span::before {
  content: "\f054";
}
.rbtn.down span::before {
  content: "\f078";
}
.rbtn.up span::before {
  content: "\f077";
}
.rbtn.view span::before {
  content: "\f06e";
}
.rbtn.download span::before {
  content: "\f019";
}
.rbtn.upload span::before {
  content: "\f093";
}
.rbtn.link span::before {
  content: "\f0c1";
}
.rbtn.google span::before {
  content: "\f1a0";
  font-family: "fa-brands";
}
.rbtn.credits span::before {
  content: "\f651";
}
.rbtn.bold span::before {
  content: "\f032";
  font-family: "fa-solid";
}
.rbtn.italic span::before {
  content: "\f033";
}
.rbtn.h1 span::before {
  content: "\f313";
}
.rbtn.h2 span::before {
  content: "\f314";
}
.rbtn.h3 span::before {
  content: "\f315";
}
.rbtn.justify-left span::before {
  content: "\f036";
}
.rbtn.justify-right span::before {
  content: "\f038";
}
.rbtn.justify-center span::before {
  content: "\f037";
}
.rbtn.justify-full span::before {
  content: "\f039";
}
.rbtn.unordered-list span::before {
  content: "\f03a";
}
.rbtn.ordered-list span::before {
  content: "\f0cb";
}
.rbtn.mail span::before {
  content: "\f0e0";
}
.rbtn.img span::before {
  content: "\f03e";
}
.rbtn.copy span::before {
  content: "\f0c5";
}
.rbtn.create span::before {
  content: "+";
}
.rbtn.anchor span::before {
  content: "\f13d";
}
.rbtn.bot span::before {
  content: "\f544";
}
.rbtn.migration span::before {
  content: "\f1c0";
}
.rbtn.send span::before {
  content: "\e20a";
}
.rbtn.danger {
  color: var(--color-alert);
}
@media (hover: hover) and (pointer: fine) {
  .rbtn.danger:hover {
    border-color: var(--color-alert);
  }
}
.rbtn.invert {
  color: var(--color-invert);
}
@media (hover: hover) and (pointer: fine) {
  .rbtn.invert:hover {
    border-color: var(--color-invert);
  }
}
.rbtn.dashable {
  box-shadow: none;
}
.rbtn.compact {
  width: 30px;
  min-width: 30px;
  height: 30px;
  font-size: 16px;
}
.rbtn.tiny {
  width: 24px;
  min-width: 24px;
  height: 24px;
  font-size: 14px;
}
.ibtn {
  display: inline-block;
  appearance: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: var(--color-content);
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .ibtn:hover {
    transform: translateY(2px);
  }
}
.ibtn span {
  pointer-events: none;
}
.ibtn span::before {
  font-family: "fa-light";
}
.ibtn.show span::before {
  content: "\f06e";
}
.ibtn.hide span::before {
  content: "\f070";
}
.ibtn.delete span::before {
  content: "\f00d";
}
.ibtn.upload span::before {
  content: "\f093";
}
.ibtn.compact {
  font-size: 16px;
}
.ibtn.tiny {
  font-size: 14px;
}
.ibtn.invert {
  color: var(--color-invert);
}

/* src/app/style/entity.scss */
.entity .e-dash {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.entity .e-dash .ed-btn {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  border-radius: 20px;
  border: 1px transparent solid;
  transition: 0.3s;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.entity .e-dash .ed-btn.active {
  background-color: var(--color-content);
  color: var(--color-invert);
  pointer-events: none;
}
.entity .e-dash .ed-btn.error {
  border-color: var(--color-alert);
}
@media (hover: hover) and (pointer: fine) {
  .entity .e-dash .ed-btn:hover span {
    transform: translateY(2px);
  }
}
.entity .e-dash .ed-btn span {
  display: flex;
  white-space: nowrap;
  gap: 10px;
  transition: 0.3s;
}
.entity .e-dash .ed-btn span::before {
  font-family: "fa-light";
}
.entity .e-dash .ed-btn.params span::before {
  content: "\f1c0";
}
.entity .e-dash .ed-btn.contacts span::before {
  content: "\f2bb";
}
.entity .e-dash .ed-btn.seo span::before {
  content: "\f002";
}
.entity .e-dash .ed-btn.words span::before {
  content: "A";
}
.entity .e-dash .ed-btn.images span::before {
  content: "\f03e";
}
.entity .e-dash .ed-btn.videos span::before {
  content: "\f03d";
}
.entity .e-dash .ed-btn.passport span::before {
  content: "\f5ab";
}
.entity .e-dash .ed-btn.location span::before {
  content: "\f3c5";
}
.entity .e-dash .ed-btn.employment span::before {
  content: "\f3b3";
}
.entity .e-dash .ed-btn.robots span::before {
  content: "\f544";
}
.entity .e-dash .ed-btn.payment span::before {
  content: "\f09d";
}
.entity .e-dash .ed-btn.personality span::before {
  content: "\f630";
}
.entity .e-dash .ed-btn.appearance span::before {
  content: "\f53f";
}
.entity .e-dash .ed-btn.sleep span::before {
  content: "\e38d";
}
.entity .e-dash .ed-btn.hardware span::before {
  content: "\f8b2";
}
.entity .e-dash .ed-btn.awards span::before {
  content: "\f559";
}
.entity .e-dash .ed-btn.prices span::before {
  content: "\f2e8";
}
.entity .e-dash .ed-btn.products span::before {
  content: "\f49e";
}
.entity .e-dash .ed-btn.delivery span::before {
  content: "\f0d1";
}
.entity .e-dash .ed-btn.settings span::before {
  content: "\f1de";
}
.entity .e-dash .ed-btn.stages span::before {
  content: "\f550";
}
.entity .e-dash .ed-btn.status span::before {
  content: "\f456";
}
.entity .e-dash .ed-btn.notifications span::before {
  content: "\f0f3";
}
.entity .e-dash .ed-btn.geo span::before {
  content: "\f57d";
}
.entity .e-dash .ed-btn.reqs span::before {
  content: "\f78a";
}
.entity .e-dash .ed-btn.edu span::before {
  content: "\f19d";
}
.entity .e-dash .ed-btn.tg span::before {
  content: "\f2c6";
  font-family: "fa-brands";
}
.entity .e-dash .ed-btn.doc span::before {
  content: "\f15c";
}
.entity .e-tab {
  font-weight: bold;
  margin-bottom: 15px;
}

/* src/app/style/font.scss */
@font-face {
  font-family: "fa-light";
  src: url(/static/font/fa/fa-light.woff2);
  font-display: swap;
}
@font-face {
  font-family: "fa-solid";
  src: url(/static/font/fa/fa-solid.woff2);
  font-display: swap;
}
@font-face {
  font-family: "fa-brands";
  src: url(/static/font/fa/fa-brands.woff2);
  font-display: swap;
}

/* src/app/style/form.scss */
.gf .gf-head {
  text-transform: uppercase;
}
@media (width < 1000px) {
  .gf .gf-head {
    font-size: 20px;
  }
}
@media (width >= 1000px) {
  .gf .gf-head {
    font-size: 30px;
  }
}
.gf .gf-subhead {
  font-weight: bold;
}
.gf .gf-desc {
  line-height: 150%;
}
@media (width < 1000px) {
  .gf .gf-desc {
    font-size: 14px;
  }
}
@media (width >= 1000px) {
  .gf .gf-desc {
    font-size: 16px;
  }
}
.gf .gf-row {
  margin-bottom: 15px;
}
.gf .gf-row:last-child {
  margin-bottom: 0;
}
.gf .gf-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  margin-bottom: 3px;
}
.gf .gf-title .required::after {
  margin-inline-start: 5px;
  color: var(--color-alert);
  content: "*";
}
.gf .gf-input {
  margin-bottom: 3px;
}
.gf .gf-input:last-child {
  margin-bottom: 0;
}
.gf .gf-input.compact {
  max-width: var(--width-compact);
}
.gf .gf-input.flex-end {
  display: flex;
  justify-content: flex-end;
}
.gf .gf-input input[type=text],
.gf .gf-input input[type=number],
.gf .gf-input input[type=email],
.gf .gf-input input[type=password],
.gf .gf-input input[type=range],
.gf .gf-input select {
  width: 100%;
}
.gf .gf-input input[type=text].compact,
.gf .gf-input input[type=number].compact,
.gf .gf-input input[type=email].compact,
.gf .gf-input input[type=password].compact,
.gf .gf-input input[type=range].compact,
.gf .gf-input select.compact {
  width: 150px;
}
.gf .gf-input textarea {
  width: 100%;
  height: 100px;
  resize: none;
}
.gf .gf-input textarea.bigheight {
  height: 400px;
}
.gf .gf-error {
  margin-bottom: 3px;
  font-size: 10px;
  color: var(--color-alert);
}
.gf .gf-error:last-child {
  margin-bottom: 0;
}
.gf .gf-2cols {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

/* src/app/style/general.scss */
a {
  cursor: pointer;
}
p {
  margin: 0 0 15px 0;
}
img {
  vertical-align: top;
}
@media (width < 1000px) {
  .head {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (width >= 1000px) {
  .head {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.head h1 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-transform: uppercase;
}
@media (width < 1000px) {
  .head h1 {
    font-size: 20px;
  }
}
@media (width >= 1000px) {
  .head h1 {
    font-size: 30px;
  }
}
.head h2 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
@media (width < 1000px) {
  .head h2 {
    font-size: 14px;
  }
}
@media (width >= 1000px) {
  .head h2 {
    font-size: 16px;
  }
}
input[type=text],
input[type=number],
input[type=email],
input[type=password] {
  height: 40px;
  padding: 0 10px;
  border: none;
  border-radius: 5px;
  background-color: var(--color-invert);
  box-shadow: var(--shadow-input);
  color: var(--color-content);
  font-size: 16px;
}
input[type=text]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=password]:disabled {
  background-color: var(--color-neutral);
  pointer-events: none;
  opacity: 1;
}
input[type=text].error,
input[type=number].error,
input[type=email].error,
input[type=password].error {
  border: 1px var(--color-alert) solid;
}
input[type=text].compact,
input[type=number].compact,
input[type=email].compact,
input[type=password].compact {
  width: 100px !important;
}
input[type=text].medium,
input[type=number].medium,
input[type=email].medium,
input[type=password].medium {
  width: 150px !important;
}
::placeholder {
  color: var(--color-neutral);
}
textarea {
  display: block;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: var(--color-invert);
  box-shadow: var(--shadow-input);
  color: var(--color-content);
  font-size: 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
textarea::-webkit-scrollbar {
  display: none;
}
textarea::-webkit-scrollbar {
  display: none;
}
textarea:disabled {
  background-color: var(--color-neutral);
  pointer-events: none;
  opacity: 1;
}
textarea.error {
  border: 1px var(--color-alert) solid;
}
.inputs {
  display: flex;
  gap: 5px;
  overflow: hidden;
}
.inputs.biggap {
  gap: 10px;
}
.inputs .wide {
  flex: 1;
  overflow: hidden;
}
@media (width < 1000px) {
  .content {
    padding: 15px 0;
  }
}
@media (width >= 1000px) {
  .content {
    padding: 20px 0;
  }
}
.content.compact {
  max-width: var(--width-compact);
  margin: 0 auto;
}
.loading span {
  display: inline-flex;
  gap: 15px;
  align-items: center;
}
.loading span::before {
  display: inline-block;
  font-family: "fa-light";
  content: "\f3f4";
  animation: rotation 1s linear 0s infinite, appear 1s ease 1;
}
.warning {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.warning .w-mark {
  transform: translateY(2px);
}
.warning .w-mark::before {
  font-family: "fa-light";
  content: "\f05a";
  color: var(--color-alert);
}
.warning .w-content {
  line-height: 150%;
}
.block {
  border-radius: 5px;
  background: var(--bg-noise);
  box-shadow: var(--shadow-blk);
  transition: 0.3s;
}
@media (width < 1000px) {
  .block {
    padding: 15px;
  }
}
@media (width >= 1000px) {
  .block {
    padding: 30px;
  }
}
.block.busy {
  opacity: 0.5;
  pointer-events: none;
}

/* src/app/style/graph.scss */
.graph-columns .gc-params {
  display: flex;
  margin-bottom: 15px;
}
.graph-columns .gc-params .gc-param {
  display: flex;
  align-items: center;
  gap: 10px;
}
.graph-columns .gc-main {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (width < 1000px) {
  .graph-columns .gc-main {
    height: 200px;
  }
}
@media (width >= 1000px) {
  .graph-columns .gc-main {
    height: 300px;
  }
}
.graph-columns .gc-main .gc-max {
  margin-bottom: 3px;
  text-align: right;
  font-size: 12px;
}
.graph-columns .gc-main .gc-columns {
  flex: 1;
  display: flex;
  border-bottom: 1px var(--color-content) solid;
  border-top: 1px var(--color-content) dashed;
}
.graph-columns .gc-main .gc-columns .gcc-item {
  position: relative;
  width: 8.3333333333%;
  height: 100%;
}
.graph-columns .gc-main .gc-columns .gcc-item .gcc-title {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  font-size: 10px;
}
.graph-columns .gc-main .gc-columns .gcc-item .gcc-column {
  position: absolute;
  bottom: 0;
  transition-duration: 0.3s;
  will-change: height;
}
@media (width < 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column {
    width: 5px;
  }
}
@media (width >= 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column {
    width: 10px;
  }
}
.graph-columns .gc-main .gc-columns .gcc-item .gcc-column .gccc-fill {
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow-input);
  transition-duration: 0.3s;
}
.graph-columns .gc-main .gc-columns .gcc-item .gcc-column .gccc-fill:hover {
  opacity: 0.8;
}
.graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col1 {
  left: 0;
}
@media (width < 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col2 {
    left: 5px;
  }
}
@media (width >= 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col2 {
    left: 10px;
  }
}
@media (width < 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col3 {
    left: 10px;
  }
}
@media (width >= 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col3 {
    left: 20px;
  }
}
@media (width < 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col4 {
    left: 15px;
  }
}
@media (width >= 1000px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col4 {
    left: 30px;
  }
}
.graph-columns .gc-legend {
  display: flex;
  flex-wrap: wrap;
}
.graph-columns .gc-legend .gcl-item {
  display: flex;
  align-items: center;
  margin: 0 10px 5px 0;
}
.graph-columns .gc-legend .gcl-item .gcl-mark {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-inline-end: 5px;
  box-shadow: var(--shadow-input);
}
.graph-columns .gc-legend .gcl-item .gcl-title {
  font-size: 12px;
}
.graph-round {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.graph-round svg {
  width: 100%;
  height: 100%;
  transform: scale(0) rotate(180deg);
  transition-duration: 0.5s;
}
.graph-round svg.active {
  transform: none;
}
.graph-round svg path {
  transition: opacity 0.3s;
}
.graph-round svg path:hover {
  opacity: 0.7;
}
.graph-round svg circle.bg {
  fill: var(--color-neutral);
}
.graph-round svg circle.total {
  fill: var(--color-invert);
}
.graph-round .gr-info {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: var(--bg-noise);
  box-shadow: var(--shadow-rbtn);
}
.graph-round .gr-info .gr-title {
  text-align: center;
}
@media (width < 1000px) {
  .graph-round .gr-info .gr-title {
    font-size: 14px;
  }
}
@media (width >= 1000px) {
  .graph-round .gr-info .gr-title {
    font-size: 16px;
  }
}
.graph-round .gr-info .gr-value {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
@media (width < 1000px) {
  .graph-round .gr-info .gr-value {
    display: none;
  }
}
@media (width >= 1000px) {
  .graph-round .gr-info .gr-value {
    display: block;
  }
}
.graph-legendable {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (width < 1000px) {
  .graph-legendable {
    gap: 15px;
  }
}
@media (width >= 1000px) {
  .graph-legendable {
    gap: 30px;
  }
}
@media (width < 1000px) {
  .graph-legendable .gl-main {
    width: 100%;
  }
}
@media (1000px <= width < 1600px) {
  .graph-legendable .gl-main {
    width: 180px;
  }
}
@media (width >= 1600px) {
  .graph-legendable .gl-main {
    width: 300px;
  }
}
@media (width < 1000px) {
  .graph-legendable .gl-legend {
    width: 100%;
  }
}
@media (1000px <= width < 1600px) {
  .graph-legendable .gl-legend {
    width: calc(100% - 180px - 30px);
  }
}
@media (width >= 1600px) {
  .graph-legendable .gl-legend {
    width: calc(100% - 300px - 30px);
  }
}
.graph-legendable .gl-legend .gll-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  transition-duration: 0.3s;
  opacity: 0;
}
.graph-legendable .gl-legend .gll-item.active {
  opacity: 1;
}
.graph-legendable .gl-legend .gll-item .gll-mark {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-inline-end: 5px;
}
.graph-legendable .gl-legend .gll-item .gll-title {
  font-size: 14px;
}

/* src/app/style/helper.scss */
.hidden {
  display: none;
}
.nowrap {
  white-space: nowrap;
}
.wordwrap {
  overflow-wrap: break-word;
  word-break: break-all;
}

/* src/app/style/layout.scss */
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-anchor: none;
  overscroll-behavior: none;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: var(--color-content);
}
html body * {
  box-sizing: border-box;
  outline: none;
  overflow-anchor: none;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  text-shadow: var(--shadow-txt);
}
html body #preload {
  height: 100%;
  padding: 10px;
  background-color: #222;
  color: #eee;
  font-family: monospace;
}
html body .app {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-shadow: var(--shadow-txt);
  transition: opacity 0.3s;
}
@media (width < 1000px) {
  html body .app {
    background: var(--bg);
  }
}
@media (width >= 1000px) {
  html body .app {
    background: url(/static/image/admin/morphic_bg.png) no-repeat left bottom/100% auto, var(--bg);
  }
}
html body .app.busy {
  opacity: 0.8;
}
html body .app .app-viewport {
  max-width: var(--width);
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
}
html body .app .app-viewport .app-blocks {
  display: flex;
  height: 100%;
  top: 0;
  transition: 0.3s;
  will-change: transform;
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks {
    transform: translateX(-300px);
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks {
    transform: none;
  }
}
html body .app .app-viewport .app-blocks.leftbar-active {
  transform: none;
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks.rightbar-active-compact {
    transform: translateX(-640px);
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks.rightbar-active-compact {
    transform: translateX(-500px);
  }
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks.rightbar-active-wide {
    transform: translateX(-640px);
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks.rightbar-active-wide {
    transform: translateX(-800px);
  }
}
html body .app .app-viewport .app-blocks .app-left {
  width: 300px;
  min-width: 300px;
  height: 100%;
}
html body .app .app-viewport .app-blocks .app-right {
  height: 100%;
  width: 0;
  min-width: 0;
  transition-delay: 0.3s;
}
html body .app .app-viewport .app-blocks .app-right.compact {
  transition-delay: 0s;
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks .app-right.compact {
    width: 340px;
    min-width: 340px;
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks .app-right.compact {
    width: 500px;
    min-width: 500px;
  }
}
html body .app .app-viewport .app-blocks .app-right.wide {
  transition-delay: 0s;
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks .app-right.wide {
    width: 340px;
    min-width: 340px;
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks .app-right.wide {
    width: 800px;
    min-width: 800px;
  }
}
html body .app .app-viewport .app-blocks .app-center {
  position: relative;
  height: 100%;
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks .app-center {
    width: 100%;
    min-width: 100%;
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks .app-center {
    width: calc(100% - 300px);
    min-width: calc(100% - 300px);
  }
}
html body .app .app-viewport .app-blocks .app-center.full {
  width: 100%;
  min-width: 100%;
}
html body .app .app-viewport .app-blocks .app-center .app-center-ovl {
  position: absolute;
  z-index: var(--z-plinth);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: 0.3s;
  cursor: default;
}
html body .app .app-viewport .app-blocks .app-center .app-center-ovl.active {
  pointer-events: all;
  background-color: var(--color-ovl);
}
html body .app .app-viewport .app-blocks .app-center .app-center-blocks {
  width: 100%;
  height: 200vh;
  transform: translateY(-100vh);
  transition: 0.3s;
  will-change: transform;
}
html body .app .app-viewport .app-blocks .app-center .app-center-blocks.topbar-active {
  transform: none;
}
html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-top {
  position: relative;
  height: calc(100vh + 75px);
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-top {
    padding: 0 15px 15px 15px;
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-top {
    padding: 0 30px 15px 30px;
  }
}
html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-win {
  height: calc(100vh - 75px);
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 1%,
      black 3%);
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 1%,
      black 3%);
  overflow-y: auto;
}
@media (width < 1000px) {
  html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-win {
    padding: 0 15px;
  }
}
@media (width >= 1000px) {
  html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-win {
    padding: 0 30px;
  }
}
html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-win {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html body .app .app-viewport .app-blocks .app-center .app-center-blocks .app-win::-webkit-scrollbar {
  display: none;
}

/* src/app/style/list.scss */
.list .l-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.list .l-head .lh-side {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (width < 640px) {
  .list .l-head .lh-side {
    width: 100%;
  }
}
@media (width >= 640px) {
  .list .l-head .lh-side {
    width: auto;
  }
}
@media (width < 640px) {
  .list .l-head .lh-side .btn {
    width: 100%;
  }
}
@media (width >= 640px) {
  .list .l-head .lh-side .btn {
    width: auto;
  }
}
@media (width < 640px) {
  .list .l-head .lh-side .lh-sorting {
    width: 100%;
  }
}
@media (width >= 640px) {
  .list .l-head .lh-side .lh-sorting {
    width: 200px;
  }
}
.list .l-main .l-helper {
  margin-bottom: 15px;
}
.list .l-main .l-data {
  transition: 0.3s;
  will-change: opacity;
}
.list .l-main .l-data.busy {
  opacity: 0.5;
  pointer-events: none;
}
@media (width < 1000px) {
  .list .l-main .l-data .l-desktop {
    display: none;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-desktop {
    display: block;
  }
}
@media (width < 1000px) {
  .list .l-main .l-data .l-mobile {
    display: block;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-mobile {
    display: none;
  }
}
.list .l-main .l-data .l-all {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.list .l-main .l-data .l-table {
  padding: 15px;
  border-radius: 5px;
  background: var(--bg-noise);
  box-shadow: var(--shadow-blk);
  overflow: auto;
}
.list .l-main .l-data .l-table.compact {
  padding: 10px;
}
.list .l-main .l-data .l-table table {
  width: 100%;
}
.list .l-main .l-data .l-table table thead th {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: start;
  padding: 10px;
  -webkit-user-select: none;
  user-select: none;
}
.list .l-main .l-data .l-table table thead th.compact {
  width: 0;
}
.list .l-main .l-data .l-table table thead th.middle {
  width: 200px;
}
.list .l-main .l-data .l-table table thead th label {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  transition: 0.3s;
  white-space: nowrap;
}
.list .l-main .l-data .l-table table thead th label.sortable {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .list .l-main .l-data .l-table table thead th label.sortable:hover {
    transform: translateY(2px);
  }
}
.list .l-main .l-data .l-table table thead th label.sortable::after {
  font-family: "fa-solid";
  content: "\f0dc";
}
.list .l-main .l-data .l-table table thead th label.sortable.asc::after {
  content: "\f0de";
}
.list .l-main .l-data .l-table table thead th label.sortable.desc::after {
  content: "\f0dd";
}
.list .l-main .l-data .l-table table tbody tr {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .list .l-main .l-data .l-table table tbody tr:hover {
    background-color: var(--color-ovl);
  }
}
.list .l-main .l-data .l-table table tbody td {
  padding: 10px;
  vertical-align: top;
}
.list .l-main .l-data .l-table table tbody td input[type=text],
.list .l-main .l-data .l-table table tbody td input[type=number] {
  width: 100%;
}
.list .l-main .l-data .l-table table tbody td textarea {
  width: 100%;
  height: 60px;
  resize: vertical;
}
.list .l-main .l-data .l-table table tbody td .l-tdalign {
  min-height: 40px;
  display: flex;
  align-items: center;
}
.list .l-main .l-data .l-table table tbody td .l-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  height: 40px;
}
.list .l-main .l-data .l-table table tbody td .l-error {
  font-size: 12px;
  color: var(--color-alert);
  margin-top: 3px;
}
.list .l-main .l-data .l-table table tbody td .l-img {
  height: 40px;
  width: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.list .l-main .l-data .l-table table tbody td .l-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list .l-main .l-data .l-grid {
  display: grid;
}
@media (width < 640px) {
  .list .l-main .l-data .l-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }
}
@media (640px <= width < 1000px) {
  .list .l-main .l-data .l-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-grid {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
  }
}
@media (width < 640px) {
  .list .l-main .l-data .l-grid.compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }
}
@media (640px <= width < 1000px) {
  .list .l-main .l-data .l-grid.compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}
.list .l-main .l-data .l-grid .lg-item {
  border-radius: 5px;
  background: var(--bg-noise);
  box-shadow: var(--shadow-blk);
}
@media (width < 1000px) {
  .list .l-main .l-data .l-grid .lg-item {
    padding: 15px 0;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-grid .lg-item {
    padding: 20px 0;
  }
}
.list .l-main .l-data .l-grid .lg-item.danger {
  filter: invert(1);
}
.list .l-main .l-data .l-grid .lg-item .lg-dash {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (width < 1000px) {
  .list .l-main .l-data .l-grid .lg-item .lg-dash {
    padding: 0 15px;
    margin-bottom: 15px;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-grid .lg-item .lg-dash {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
.list .l-main .l-data .l-grid .lg-item .lg-dash .lgd-side {
  display: flex;
  gap: 5px;
}
@media (width < 1000px) {
  .list .l-main .l-data .l-grid .lg-item .lg-params {
    padding: 0 15px;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-grid .lg-item .lg-params {
    padding: 0 20px;
  }
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row {
  margin-bottom: 15px;
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row:last-child {
  margin-bottom: 0;
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-title {
  margin-bottom: 3px;
  font-size: 12px;
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: var(--color-txt2);
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-input .select {
  width: 100%;
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-input input[type=text],
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-input input[type=number],
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-input input[type=email],
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-input input[type=password] {
  width: 100%;
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-error {
  margin-top: 3px;
  font-size: 12px;
  color: var(--color-alert);
}
.list .l-main .l-data .l-grid .lg-item .lg-img {
  aspect-ratio: 4/3;
}
@media (width < 1000px) {
  .list .l-main .l-data .l-grid .lg-item .lg-img {
    margin-bottom: 15px;
  }
}
@media (width >= 1000px) {
  .list .l-main .l-data .l-grid .lg-item .lg-img {
    margin-bottom: 20px;
  }
}
.list .l-main .l-data .l-grid .lg-item .lg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list .l-main .l-data .l-grid .lg-item .lg-img iframe {
  width: 100%;
  height: 100%;
}
.list .l-main .l-pagination {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.list .l-main .l-pagination.top {
  margin-bottom: 15px;
}
.list .l-main .l-pagination.bottom {
  margin-top: 15px;
}
.listbuilder .lb-table {
  width: 100%;
  overflow-x: auto;
}

/* src/app/style/panel.scss */
.panel-ovl {
  position: fixed;
  z-index: var(--z-panel);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-ovl);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.panel-ovl.active {
  pointer-events: inherit;
  opacity: 1;
}
.panel-container {
  position: fixed;
  z-index: calc(var(--z-panel) + 1);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
}
@media (width < 1000px) {
  .panel-container {
    padding: 15px;
  }
}
@media (width >= 1000px) {
  .panel-container {
    padding: 30px;
  }
}
.panel-container.active {
  transform: none;
}
.panel-container .panel {
  max-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background: var(--bg-noise);
  box-shadow: var(--shadow-blk);
}
@media (width < 1000px) {
  .panel-container .panel {
    width: 100%;
  }
}
@media (width >= 1000px) {
  .panel-container .panel {
    width: var(--w);
  }
}
.panel-container .panel .p-head {
  height: 60px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.panel-container .panel .p-head .p-title {
  display: flex;
  gap: 10px;
  overflow: hidden;
}
@media (width < 1000px) {
  .panel-container .panel .p-head .p-title {
    font-size: 16px;
  }
}
@media (width >= 1000px) {
  .panel-container .panel .p-head .p-title {
    font-size: 18px;
  }
}
.panel-container .panel .p-head .p-title .p-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.panel-container .panel .p-head .p-title .p-icon::before {
  font-family: "fa-light";
}
.panel-container .panel .p-head .p-title .p-icon.view::before {
  content: "\f06e";
}
.panel-container .panel .p-head .p-title .p-icon.editor::before {
  content: "\f37e";
}
.panel-container .panel .p-foot {
  height: 70px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
}
.panel-container .panel .p-foot.compact {
  height: 30px;
}
.panel-container .panel .p-foot .pf-side {
  display: flex;
  gap: 15px;
}
.panel-container .panel .p-main {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

/* src/app/style/sidebar.scss */
.sidebar {
  height: 100%;
  overflow: hidden;
}
.sidebar .s-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  height: 60px;
  width: 100%;
  overflow: hidden;
  padding: 0 15px;
}
.sidebar .s-head .sh-title {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.sidebar .s-head .sh-title .sh-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (width < 1000px) {
  .sidebar .s-head .sh-title .sh-name {
    font-size: 16px;
  }
}
@media (width >= 1000px) {
  .sidebar .s-head .sh-title .sh-name {
    font-size: 18px;
  }
}
.sidebar .s-head .sh-title .sh-icon::before {
  font-family: "fa-light";
}
.sidebar .s-head .sh-title .sh-icon.edit::before {
  content: "\f044";
}
.sidebar .s-head .sh-title .sh-icon.filter::before {
  content: "\f0b0";
}
.sidebar .s-head .sh-title .sh-icon.options::before {
  content: "\f7d9";
}
.sidebar .s-head .sh-title .sh-icon.migration::before {
  content: "\f1c0";
}
.sidebar .s-head .sh-title .sh-icon.bot::before {
  content: "\f544";
}
.sidebar .s-foot {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  height: 70px;
  padding: 0 15px;
}
.sidebar .s-foot::before {
  position: absolute;
  display: block;
  left: 0;
  top: -2px;
  height: 0;
  width: 100%;
  border-top: 1px var(--color-invert) solid;
  border-bottom: 1px var(--color-neutral) solid;
  content: "";
}
.sidebar .s-foot .sf-side {
  display: flex;
  gap: 15px;
}
.sidebar .s-main {
  height: calc(100% - 60px - 70px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 15px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sidebar .s-main::-webkit-scrollbar {
  display: none;
}

/* src/app/style/var.scss */
html {
  --width: 1800px;
  --width-compact: 500px;
  --bg:
    linear-gradient(
      225deg,rgba(255, 255, 255, 1) 0%,
      rgba(170, 178, 189, 1) 100%);
  --bg-noise: #fff url(/static/image/admin/morphic_noise.svg);
  --color-content: #1a1f16;
  --color-invert: #fff;
  --color-neutral: #ccc;
  --color-shadow: rgba(13, 39, 80, 0.3);
  --color-alert: #b00;
  --color-ovl: rgba(255,255,255,0.7);
  --shadow-blk: -5px 5px 10px var(--color-shadow), 2px -2px 2px #fff;
  --shadow-blk-invert: 5px 5px 10px var(--color-shadow), -2px -2px 2px #fff;
  --shadow-txt: 1px 1px 1px var(--color-shadow);
  --shadow-rbtn: 3px -3px 4px #fff inset, -2px 2px 5px var(--color-shadow) inset;
  --shadow-btn: -5px 5px 10px var(--color-shadow);
  --shadow-input: -2px 2px 2px var(--color-shadow) inset;
  --z-plinth: 10;
  --z-panel: 20;
  --z-popup: 30;
  --z-error: 90;
  --z-roof: 100;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
