/* 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 */
.roundbtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 20px;
  background: none;
  appearance: none;
  border: none;
  cursor: pointer;
  color: var(--color-txt1);
  transition: 0.3s;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.roundbtn span {
  pointer-events: none;
}
.roundbtn span::before {
  font-family: "fa-light";
  display: inline-block;
}
.roundbtn.menu span::before {
  content: "\f0c9";
}
.roundbtn.options span::before {
  content: "\f7d9";
}
.roundbtn.logout span::before {
  content: "\e4b1";
}
.roundbtn.edit span::before {
  content: "\f044";
}
.roundbtn.delete span::before {
  content: "\f00d";
}
.roundbtn.archive span::before {
  content: "\f187";
}
.roundbtn.close span::before {
  content: "\f00d";
}
.roundbtn.left span::before {
  content: "\f053";
}
.roundbtn.right span::before {
  content: "\f054";
}
.roundbtn.down span::before {
  content: "\f078";
}
.roundbtn.up span::before {
  content: "\f077";
}
.roundbtn.view span::before {
  content: "\f06e";
}
.roundbtn.reload span::before {
  content: "\f2f9";
}
.roundbtn.download span::before {
  content: "\f019";
}
.roundbtn.link span::before {
  content: "\f0c1";
}
.roundbtn.google span::before {
  content: "\f1a0";
  font-family: "fa-brands";
}
.roundbtn.credits span::before {
  content: "\f651";
}
.roundbtn.bold span::before {
  content: "\f032";
  font-family: "fa-solid";
}
.roundbtn.italic span::before {
  content: "\f033";
}
.roundbtn.h1 span::before {
  content: "\f313";
}
.roundbtn.h2 span::before {
  content: "\f314";
}
.roundbtn.justify-left span::before {
  content: "\f036";
}
.roundbtn.justify-right span::before {
  content: "\f038";
}
.roundbtn.justify-center span::before {
  content: "\f037";
}
.roundbtn.justify-full span::before {
  content: "\f039";
}
.roundbtn.unordered-list span::before {
  content: "\f03a";
}
.roundbtn.ordered-list span::before {
  content: "\f0cb";
}
.roundbtn.mail span::before {
  content: "\f0e0";
}
.roundbtn.img span::before {
  content: "\f03e";
}
.roundbtn.copy span::before {
  content: "\f0c5";
}
.roundbtn.create span::before {
  content: "+";
}
.roundbtn.anchor span::before {
  content: "\f13d";
}
@media (hover: hover) and (pointer: fine) {
  .roundbtn:hover {
    background: var(--color-dark);
    color: var(--color-txt2);
  }
}
.roundbtn.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.roundbtn.pressed {
  background: var(--color-dark);
  color: var(--color-txt2);
}
.roundbtn.busy span::before {
  font-family: "fa-light" !important;
  content: "\f3f4" !important;
  animation: rotation 1s linear 0s infinite;
}
.roundbtn.done span::before {
  font-family: "fa-light" !important;
  content: "\f00c" !important;
}
.roundbtn.alert::after {
  display: block;
  position: absolute;
  z-index: 2;
  right: 3px;
  top: 3px;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background-color: var(--color-alert);
  content: "";
}
.roundbtn.compact {
  width: 30px;
  min-width: 30px;
  height: 30px;
  font-size: 16px;
}
.roundbtn.tiny {
  width: 24px;
  min-width: 24px;
  height: 24px;
  font-size: 14px;
}
.roundbtn.danger span::before {
  color: var(--color-alert);
}
@media (hover: hover) and (pointer: fine) {
  .roundbtn.danger:hover {
    background: var(--color-alertd);
  }
}
@media (hover: hover) and (pointer: fine) {
  .roundbtn.light:hover {
    background: var(--color-accent1);
  }
}
.btn {
  appearance: none;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 15px;
  border-radius: 5px;
  background: var(--color-accent2);
  cursor: pointer;
  transition: 0.3s;
  border: none;
  color: var(--color-txt1);
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}
.btn .btn-txt {
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}
.btn .btn-icon {
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}
.btn .btn-icon::before {
  font-family: "fa-light";
}
.btn .btn-icon.login::before {
  content: "\e4b2";
}
.btn .btn-icon.code::before {
  content: "\f3ed";
}
.btn .btn-icon.password::before {
  content: "\f084";
}
.btn .btn-icon.create::before {
  content: "+";
}
.btn .btn-icon.delete::before {
  content: "\f00d";
}
.btn .btn-icon.archive::before {
  content: "\f187";
}
.btn .btn-icon.filter::before {
  content: "\f0b0";
}
.btn .btn-icon.reload::before {
  content: "\f2f9";
}
.btn .btn-icon.apply::before {
  content: "\f00c";
}
.btn .btn-icon.reset::before {
  content: "\f00d";
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: var(--color-accent3);
    color: var(--color-txt1);
  }
}
.btn.busy {
  pointer-events: none;
}
.btn.busy .btn-txt,
.btn.busy .btn-icon {
  opacity: 0;
}
.btn.busy::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  font-family: "fa-light";
  content: "\f3f4";
  animation: rotation 1s linear 0s infinite;
}
.btn.done {
  pointer-events: none;
  background-color: var(--color-ok);
}
.btn.done .btn-txt,
.btn.done .btn-icon {
  opacity: 0;
}
.btn.done::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  font-family: "fa-light";
  content: "\f00c";
}
.btn.pressed {
  background-color: var(--color-ok);
}
.btn.disabled {
  pointer-events: none;
  background-color: var(--color-grey) !important;
}
.btn.danger {
  background: var(--color-alert);
}
@media (hover: hover) and (pointer: fine) {
  .btn.danger:hover {
    background: var(--color-alerth);
  }
}

/* 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;
  cursor: pointer;
  transition: 0.3s;
  -webkit-user-select: none;
  user-select: none;
}
.entity .e-dash .ed-btn.active {
  background-color: var(--color-dark);
}
.entity .e-dash .ed-btn.error {
  border-color: var(--color-alert);
}
@media (hover: hover) and (pointer: fine) {
  .entity .e-dash .ed-btn:hover {
    background-color: var(--color-dark);
    color: var(--color-txt2);
  }
}
.entity .e-dash .ed-btn span {
  display: flex;
  white-space: nowrap;
  gap: 10px;
}
.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-tab {
  font-weight: bold;
  margin-bottom: 15px;
}

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

/* src/app/style/form.scss */
.gf.compact {
  max-width: 500px;
}
.gf .gf-head {
  font-size: 24px;
  color: var(--color-txt2);
}
.gf .gf-desc {
  font-size: 14px;
  line-height: 150%;
}
.gf .gf-row {
  margin-bottom: 15px;
}
.gf .gf-row:last-child {
  margin-bottom: 0;
}
.gf .gf-title {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 3px;
}
.gf .gf-title .required::after {
  content: "*";
  margin-inline-start: 5px;
  color: var(--color-alert);
}
.gf .gf-title .action {
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 1px var(--color-txt1) dashed;
  color: var(--color-txt1);
  -webkit-user-select: none;
  user-select: none;
}
@media (hover: hover) and (pointer: fine) {
  .gf .gf-title .action:hover {
    color: var(--color-txt2);
    border-color: var(--color-txt2);
  }
}
.gf .gf-error {
  font-size: 12px;
  color: var(--color-alert);
  margin-top: 3px;
}
.gf .gf-input.compact {
  max-width: 500px;
}
.gf .gf-input input[type=text],
.gf .gf-input input[type=number],
.gf .gf-input input[type=email],
.gf .gf-input input[type=password] {
  width: 100%;
}
.gf .gf-input textarea {
  width: 100%;
}
.gf .gf-2cols {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.gf .gf-2cols .col-max {
  width: 100%;
}
.gf .gf-widebtn .btn {
  width: 100%;
}

/* src/app/style/general.scss */
a {
  cursor: pointer;
  transition: 0.3s;
  text-decoration: underline;
  color: var(--color-txt1);
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--color-txt2);
  }
}
p {
  margin: 0 0 15px 0;
}
img {
  vertical-align: top;
}
input[type=text],
input[type=number],
input[type=email],
input[type=password] {
  height: 40px;
  padding: 0 10px;
  border-radius: 5px;
  background: var(--color-dark);
  color: var(--color-txt1);
  font-size: 16px;
  border: 1px var(--color-dark) solid;
  transition: 0.3s;
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder {
  color: var(--color-grey);
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus {
  color: var(--color-txt2);
}
input[type=text]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=password]:disabled {
  background-color: var(--color-grey);
  border-color: var(--color-grey);
}
input[type=text].error,
input[type=number].error,
input[type=email].error,
input[type=password].error {
  border-color: var(--color-alert);
}
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;
}
textarea {
  height: 150px;
  padding: 10px;
  border-radius: 5px;
  background: var(--color-dark);
  color: var(--color-txt1);
  font-size: 16px;
  border: 1px var(--color-dark) solid;
  transition: border 0.3s;
  resize: vertical;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
textarea::-webkit-scrollbar {
  display: none;
}
textarea::placeholder {
  color: var(--color-grey);
}
textarea:focus {
  color: var(--color-txt2);
}
textarea:disabled {
  background-color: var(--color-grey);
  border-color: var(--color-grey);
}
textarea.error {
  border-color: var(--color-alert);
}
textarea.bigheight {
  height: 400px;
}
.inputs {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}
.inputs.biggap {
  gap: 10px;
}
.inputs .wide {
  flex: 1;
  overflow: hidden;
}
.head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}
.head h1 {
  margin: 0;
  padding: 0;
  color: var(--color-txt2);
  font-weight: normal;
}
@media (width < 1200px) {
  .head h1 {
    font-size: 20px;
  }
}
@media (width >= 1200px) {
  .head h1 {
    font-size: 30px;
  }
}
.head h2 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
@media (width < 1200px) {
  .head h2 {
    font-size: 14px;
  }
}
@media (width >= 1200px) {
  .head h2 {
    font-size: 16px;
  }
}
h3 {
  margin: 0 0 15px 0;
  padding: 0;
  color: var(--color-txt2);
  font-weight: normal;
}
@media (width < 1200px) {
  h3 {
    font-size: 16px;
  }
}
@media (width >= 1200px) {
  h3 {
    font-size: 20px;
  }
}
hr {
  border: none;
  border-bottom: 1px var(--color-txt1) solid;
}
.block {
  border-radius: 5px;
  background-color: var(--color-block);
}
@media (width < 1200px) {
  .block {
    padding: 15px;
  }
}
@media (width >= 1200px) {
  .block {
    padding: 30px;
  }
}
.loading span::before {
  display: inline-block;
  font-family: "fa-light";
  content: "\f3f4";
  animation: rotation 1s linear 0s infinite, appear 1s ease 1;
  font-size: 20px;
}
.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%;
}

/* 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 < 1200px) {
  .graph-columns .gc-main {
    height: 200px;
  }
}
@media (width >= 1200px) {
  .graph-columns .gc-main {
    height: 300px;
  }
}
.graph-columns .gc-main .gc-max {
  text-align: right;
  font-size: 12px;
  margin-bottom: 3px;
}
.graph-columns .gc-main .gc-columns {
  flex: 1;
  border-bottom: 1px var(--color-txt1) solid;
  border-top: 1px var(--color-hilite) dashed;
  display: flex;
}
.graph-columns .gc-main .gc-columns .gcc-item {
  width: 8.3333333333%;
  height: 100%;
  position: relative;
}
.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;
}
@media (width < 1200px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column {
    width: 5px;
  }
}
@media (width >= 1200px) {
  .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%;
  border-radius: 3px 3px 0 0;
}
.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 < 1200px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col2 {
    left: 5px;
  }
}
@media (width >= 1200px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col2 {
    left: 10px;
  }
}
@media (width < 1200px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col3 {
    left: 10px;
  }
}
@media (width >= 1200px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col3 {
    left: 20px;
  }
}
@media (width < 1200px) {
  .graph-columns .gc-main .gc-columns .gcc-item .gcc-column.col4 {
    left: 15px;
  }
}
@media (width >= 1200px) {
  .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 {
  margin: 0 10px 5px 0;
  display: flex;
  align-items: center;
}
.graph-columns .gc-legend .gcl-item .gcl-mark {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-inline-end: 5px;
}
.graph-columns .gc-legend .gcl-item .gcl-title {
  font-size: 12px;
}
.graph-round {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (width < 1200px) {
  .graph-round {
    gap: 15px;
  }
}
@media (width >= 1200px) {
  .graph-round {
    gap: 30px;
  }
}
@media (width < 1200px) {
  .graph-round .gr-main {
    width: 100%;
  }
}
@media (1200px <= width < 1600px) {
  .graph-round .gr-main {
    width: 180px;
  }
}
@media (width >= 1600px) {
  .graph-round .gr-main {
    width: 300px;
  }
}
.graph-round .gr-main .gr-content {
  position: relative;
  aspect-ratio: 1/1;
}
.graph-round .gr-main .gr-content svg {
  width: 100%;
  height: 100%;
  transform: scale(0) rotate(180deg);
  transition-duration: 0.5s;
}
.graph-round .gr-main .gr-content svg.active {
  transform: none;
}
.graph-round .gr-main .gr-content svg path:hover {
  opacity: 0.7;
}
.graph-round .gr-main .gr-content svg circle.bg {
  fill: var(--color-grey);
}
.graph-round .gr-main .gr-content svg circle.total {
  fill: var(--color-dark);
}
.graph-round .gr-main .gr-content .gr-total {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.graph-round .gr-main .gr-content .gr-total .grt-title {
  text-align: center;
}
.graph-round .gr-main .gr-content .gr-total .grt-value {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
@media (width < 1200px) {
  .graph-round .gr-legend {
    width: 100%;
  }
}
@media (1200px <= width < 1600px) {
  .graph-round .gr-legend {
    width: calc(100% - 180px - 30px);
  }
}
@media (width >= 1600px) {
  .graph-round .gr-legend {
    width: calc(100% - 300px - 30px);
  }
}
.graph-round .gr-legend .grl-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  transition-duration: 0.3s;
  opacity: 0;
}
.graph-round .gr-legend .grl-item.active {
  opacity: 1;
}
.graph-round .gr-legend .grl-item .grl-mark {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-inline-end: 5px;
}
.graph-round .gr-legend .grl-item .grl-title {
  font-size: 14px;
}
.graph-area .ga-params {
  display: flex;
  margin-bottom: 15px;
}
.graph-area .ga-params .ga-param {
  display: flex;
  align-items: center;
  gap: 10px;
}
.graph-area .ga-main {
  display: flex;
  flex-direction: column;
}
@media (width < 1200px) {
  .graph-area .ga-main {
    height: 200px;
  }
}
@media (width >= 1200px) {
  .graph-area .ga-main {
    height: 300px;
  }
}
.graph-area .ga-main .ga-max {
  text-align: right;
  font-size: 12px;
  margin-bottom: 3px;
}
.graph-area .ga-main .ga-graph {
  flex: 1;
  overflow: hidden;
  border-bottom: 1px var(--color-txt1) solid;
  border-top: 1px var(--color-hilite) dashed;
}
.graph-area .ga-main .ga-graph svg {
  width: 100%;
  height: 100%;
}
.graph-area .ga-main .ga-graph svg polyline.line {
  fill: none;
  stroke-width: 3;
}
.graph-area .ga-main .ga-graph svg polyline.area {
  stroke-width: 0;
  opacity: 0;
  transition: 0s;
}
.graph-area .ga-main .ga-graph svg polyline.area.active {
  opacity: 1;
  transition: 0.3s;
}
.graph-area .ga-main .ga-x {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-top: 3px;
}
.graph-area .ga-main .ga-x .gax-item {
  width: 1px;
  display: flex;
  justify-content: center;
}
.graph-rows .gr-row {
  margin-bottom: 10px;
}
.graph-rows .gr-row .gr-title {
  font-size: 14px;
  margin-bottom: 3px;
}
.graph-rows .gr-row .gr-scale {
  height: 15px;
  background-color: var(--color-hilite);
  border-radius: 3px;
  overflow: hidden;
}
.graph-rows .gr-row .gr-scale .gr-value {
  height: 100%;
  background-color: var(--color-accent3);
  border-radius: 3px;
  transition: 0.3s;
}

/* src/app/style/helper.scss */
.hidden {
  display: none;
}
.nowrap {
  white-space: nowrap;
}
.wordwrap {
  overflow-wrap: break-word;
  word-break: break-all;
}
.alert {
  color: var(--color-alert);
}
@media (width >= 1200px) {
  .bscroll-v::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .bscroll-v::-webkit-scrollbar:vertical {
    width: 8px;
  }
  .bscroll-v::-webkit-scrollbar-thumb {
    background-color: var(--color-txt1);
  }
  .bscroll-v::-webkit-scrollbar-track {
    background-color: var(--color-accent1);
  }
}
@media (width >= 1200px) {
  .bscroll-h::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .bscroll-h::-webkit-scrollbar:horizontal {
    height: 8px;
  }
  .bscroll-h::-webkit-scrollbar-thumb {
    background-color: var(--color-txt1);
  }
  .bscroll-h::-webkit-scrollbar-track {
    background-color: var(--color-accent1);
  }
}
@media (width < 1200px) {
  .until1200-b {
    display: block !important;
  }
}
@media (width >= 1200px) {
  .until1200-b {
    display: none !important;
  }
}
@media (width < 1200px) {
  .from1200-b {
    display: none !important;
  }
}
@media (width >= 1200px) {
  .from1200-b {
    display: block !important;
  }
}

/* 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;
}
@media (width < 1200px) {
  html body {
    font-size: 14px;
  }
}
@media (width >= 1200px) {
  html body {
    font-size: 16px;
  }
}
html body * {
  box-sizing: border-box;
  outline: none;
  overflow-anchor: none;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}
html body .wrap {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--background) fixed;
  color: var(--color-txt1);
  transition: 0.3s;
}
html body .wrap.busy {
  opacity: 0.5;
  pointer-events: none;
}
html body .wrap aside {
  height: 100%;
}
@media (width < 1200px) {
  html body .wrap aside {
    width: 0;
  }
}
@media (width >= 1200px) {
  html body .wrap aside {
    width: 300px;
  }
}
html body .wrap main {
  flex: 1;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media (width < 1200px) {
  html body .wrap main .content {
    padding: 15px;
  }
}
@media (width >= 1200px) {
  html body .wrap main .content {
    padding: 30px;
  }
}
html body .snow {
  position: fixed;
  bottom: -90px;
  right: -90px;
  opacity: 0.03;
  pointer-events: none;
}
@media (width < 1200px) {
  html body .snow {
    display: none;
  }
}
@media (width >= 1200px) {
  html body .snow {
    display: block;
  }
}
html body .snow img {
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgb(0, 0, 0));
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgb(0, 0, 0));
  width: 600px;
  transform: rotate(-10deg);
}
html body .splash {
  position: fixed;
  z-index: 400;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image:
    radial-gradient(
      farthest-side ellipse at 10% 0,
      #333867 20%,
      #17193b);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
html body .splash.active {
  opacity: 1;
  pointer-events: inherit;
}
html body .splash img {
  width: 150px;
}

/* 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;
}
.list .l-main .l-data.busy {
  opacity: 0.7;
  pointer-events: none;
}
.list .l-main .l-data .l-table {
  padding: 15px;
  background-color: var(--color-block);
  border-radius: 5px;
  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 {
    color: var(--color-txt2);
  }
}
.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-hilite);
  }
}
.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 .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: 5px;
}
.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 < 1200px) {
  .list .l-main .l-data .l-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}
@media (width >= 1200px) {
  .list .l-main .l-data .l-grid {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
  }
}
.list .l-main .l-data .l-grid .lg-item {
  background-color: var(--color-block);
  border-radius: 5px;
}
@media (width < 1200px) {
  .list .l-main .l-data .l-grid .lg-item {
    padding: 15px 0;
  }
}
@media (width >= 1200px) {
  .list .l-main .l-data .l-grid .lg-item {
    padding: 20px 0;
  }
}
.list .l-main .l-data .l-grid .lg-item .lg-dash {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (width < 1200px) {
  .list .l-main .l-data .l-grid .lg-item .lg-dash {
    padding: 0 15px;
    margin-bottom: 15px;
  }
}
@media (width >= 1200px) {
  .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 < 1200px) {
  .list .l-main .l-data .l-grid .lg-item .lg-params {
    padding: 0 15px;
  }
}
@media (width >= 1200px) {
  .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;
}
@media (width < 1200px) {
  .list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-title {
    font-size: 12px;
  }
}
@media (width >= 1200px) {
  .list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-title {
    font-size: 14px;
  }
}
.list .l-main .l-data .l-grid .lg-item .lg-params .lg-row .lg-value {
  font-size: 16px;
  color: var(--color-txt2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.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 {
  font-size: 12px;
  color: var(--color-alert);
  margin-top: 3px;
}
.list .l-main .l-data .l-grid .lg-item .lg-img {
  aspect-ratio: 4/3;
}
@media (width < 1200px) {
  .list .l-main .l-data .l-grid .lg-item .lg-img {
    margin-bottom: 15px;
  }
}
@media (width >= 1200px) {
  .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-pagination.top {
  margin-bottom: 15px;
}
.list .l-main .l-pagination.bottom {
  margin-top: 15px;
}
.list .l-main .l-pagination {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.listbuilder .lb-table {
  width: 100%;
  overflow-x: auto;
}

/* src/app/style/panel-side.scss */
.panelside-ovl {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-ovl1);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.panelside-ovl.layer2 {
  z-index: 102;
}
.panelside-ovl.active {
  pointer-events: inherit;
  opacity: 1;
}
.panelside {
  position: fixed;
  z-index: 101;
  right: 0;
  top: 0;
  height: 100%;
  background-image: var(--background);
  transition: 0.3s;
  transform: translateX(100%);
}
.panelside.layer2 {
  z-index: 103;
}
.panelside.active {
  transform: none !important;
  box-shadow: var(--shadow-dark-l);
}
.panelside .p-head {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.panelside .p-head .p-title {
  display: flex;
  gap: 10px;
  overflow: hidden;
}
@media (width < 1200px) {
  .panelside .p-head .p-title {
    font-size: 16px;
  }
}
@media (width >= 1200px) {
  .panelside .p-head .p-title {
    font-size: 18px;
  }
}
.panelside .p-head .p-title .p-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.panelside .p-head .p-title .p-icon::before {
  font-family: "fa-light";
}
.panelside .p-head .p-title .p-icon.filter::before {
  content: "\f0b0";
}
.panelside .p-head .p-title .p-icon.edit::before {
  content: "\f044";
}
.panelside .p-head .p-title .p-icon.options::before {
  content: "\f7d9";
}
.panelside .p-head .p-title .p-icon.credits::before {
  content: "\f651";
}
.panelside .p-foot {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
  border-top: 1px var(--color-hilite) solid;
  background-color: var(--color-hilite);
}
.panelside .p-foot .pf-side {
  display: flex;
  gap: 15px;
}
.panelside .p-main {
  height: calc(100% - 60px - 70px);
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 15px;
}
.panelside .p-main.wo-foot {
  height: calc(100% - 60px);
}
.panelside.w300c {
  width: 300px;
}
@media (width < 640px) {
  .panelside.w500 {
    width: 100%;
  }
}
@media (width >= 640px) {
  .panelside.w500 {
    width: 500px;
  }
}
@media (width < 640px) {
  .panelside.w500c {
    width: 320px;
  }
}
@media (width >= 640px) {
  .panelside.w500c {
    width: 500px;
  }
}
@media (width < 640px) {
  .panelside.w600 {
    width: 100%;
  }
}
@media (width >= 640px) {
  .panelside.w600 {
    width: 600px;
  }
}
@media (width < 1200px) {
  .panelside.w800 {
    width: 100%;
  }
}
@media (width >= 1200px) {
  .panelside.w800 {
    width: 800px;
  }
}
@media (width < 1200px) {
  .panelside.w1000 {
    width: 100%;
  }
}
@media (width >= 1200px) {
  .panelside.w1000 {
    width: 1000px;
  }
}

/* src/app/style/panel-win.scss */
.panelwin-ovl {
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-ovl1);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
@media (width < 1200px) {
  .panelwin-ovl {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
@media (width >= 1200px) {
  .panelwin-ovl {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}
.panelwin-ovl.active {
  pointer-events: inherit;
  opacity: 1;
}
.panelwin-container {
  position: fixed;
  z-index: 201;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s;
  display: flex;
  transform: translateX(100%);
}
@media (width < 1200px) {
  .panelwin-container {
    padding: 15px;
  }
}
@media (width >= 1200px) {
  .panelwin-container {
    padding: 30px;
  }
}
.panelwin-container.active {
  transform: none;
}
.panelwin-container .panelwin {
  margin: auto;
  background-image: var(--background);
  border-radius: 5px;
  box-shadow: var(--shadow-dark-rb);
  overflow: hidden;
}
.panelwin-container .panelwin .p-head {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.panelwin-container .panelwin .p-head .p-title {
  display: flex;
  gap: 10px;
  overflow: hidden;
}
@media (width < 1200px) {
  .panelwin-container .panelwin .p-head .p-title {
    font-size: 16px;
  }
}
@media (width >= 1200px) {
  .panelwin-container .panelwin .p-head .p-title {
    font-size: 18px;
  }
}
.panelwin-container .panelwin .p-head .p-title .p-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.panelwin-container .panelwin .p-head .p-title .p-icon::before {
  font-family: "fa-light";
}
.panelwin-container .panelwin .p-head .p-title .p-icon.view::before {
  content: "\f06e";
}
.panelwin-container .panelwin .p-head .p-title .p-icon.editor::before {
  content: "\f37e";
}
.panelwin-container .panelwin .p-foot {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
  border-top: 1px var(--color-hilite) solid;
  background-color: var(--color-hilite);
}
.panelwin-container .panelwin .p-foot .pf-side {
  display: flex;
  gap: 15px;
}
.panelwin-container .panelwin .p-main {
  overflow-x: hidden;
  overflow-y: auto;
}
@media (width < 640px) {
  .panelwin-container .panelwin.w600 {
    width: 100%;
  }
}
@media (width >= 640px) {
  .panelwin-container .panelwin.w600 {
    width: 600px;
  }
}
@media (width < 1200px) {
  .panelwin-container .panelwin.w800 {
    width: 100%;
  }
}
@media (width >= 1200px) {
  .panelwin-container .panelwin.w800 {
    width: 800px;
  }
}

/* src/app/style/var.scss */
html {
  --color-txt1: rgba(244,244,245,0.8);
  --color-txt2: #ffffff;
  --color-dark: #040620;
  --color-accent1: rgb(40, 43, 75);
  --color-accent2: rgb(71, 77, 132);
  --color-accent3: rgb(91, 99, 168);
  --color-block: rgba(0,0,0,0.24);
  --color-alert: #DB2A34;
  --color-alerth: #f13841;
  --color-alertd: #2d0c0e;
  --color-ok: #2D8515;
  --color-grey: #666;
  --color-hilite: rgba(255, 255, 255, 0.1);
  --color-ovl1: rgba(255, 255, 255, 0.3);
  --color-ovl2: rgba(0, 0, 0, 0.7);
  --background:
    radial-gradient(
      farthest-side ellipse at 10% 0,
      #333867 20%,
      #17193b);
  --shadow-dark-r: 5px 0 10px black;
  --shadow-dark-l: -5px 0 10px black;
  --shadow-dark-rb: 5px 5px 10px black;
  --shadow-light: 0 0 10px rgba(255,255,255,0.7);
}

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