/* src/styles.scss */
:root {
  --color--white: #ffffff;
  --color--black: #000000;
  --color-default: #f6f6f6;
}
.tech--d-grid {
  display: grid;
}
@media (min-width: 640px) {
  .tech--sm-d-grid {
    display: grid;
  }
}
@media (min-width: 768px) {
  .tech--md-d-grid {
    display: grid;
  }
}
@media (min-width: 1024px) {
  .tech--lg-d-grid {
    display: grid;
  }
}
@media (min-width: 1200px) {
  .tech--xl-d-grid {
    display: grid;
  }
}
.columns-full {
  grid-template-columns: 100%;
}
.rows-auto {
  grid-template-rows: auto;
}
.rows-content {
  grid-template-rows: min-content;
}
.tech--gap-0 {
  gap: 0 !important;
}
.tech--gap-1 {
  gap: var(--tech-spacing_4) !important;
}
.tech--d-flex {
  display: flex !important;
}
@media (min-width: 640px) {
  .tech--sm-d-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .tech--md-d-flex {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .tech--lg-d-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .tech--xl-d-flex {
    display: flex !important;
  }
}
.flex-start {
  justify-content: flex-start !important;
}
.flex-center {
  justify-content: center !important;
}
.flex-end {
  justify-content: flex-end !important;
}
.flex-between {
  justify-content: space-between !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-col-reverse {
  flex-direction: column-reverse !important;
}
.wrap {
  flex-wrap: wrap !important;
}
.nowrap {
  flex-wrap: nowrap !important;
}
.items-center {
  align-items: center !important;
}
.items-baseline {
  align-items: baseline !important;
}
.items-start {
  align-items: flex-start !important;
}
.items-end {
  align-items: flex-end !important;
}
.tech--w-33 {
  width: 33.33% !important;
}
@media (min-width: 640px) {
  .tech--sm-w-33 {
    width: 33.33% !important;
  }
}
@media (min-width: 768px) {
  .tech--md-w-33 {
    width: 33.33% !important;
  }
}
@media (min-width: 1024px) {
  .tech--lg-w-33 {
    width: 33.33% !important;
  }
}
@media (min-width: 1200px) {
  .tech--xl-w-33 {
    width: 33.33% !important;
  }
}
.tech--w-50 {
  width: 50% !important;
}
@media (min-width: 640px) {
  .tech--sm-w-50 {
    width: 50% !important;
  }
}
@media (min-width: 768px) {
  .tech--md-w-50 {
    width: 50% !important;
  }
}
@media (min-width: 1024px) {
  .tech--lg-w-50 {
    width: 50% !important;
  }
}
@media (min-width: 1200px) {
  .tech--xl-w-50 {
    width: 50% !important;
  }
}
.tech--w-full {
  width: 100% !important;
}
@media (min-width: 640px) {
  .tech--sm-w-full {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .tech--md-w-full {
    width: 100% !important;
  }
}
@media (min-width: 1024px) {
  .tech--lg-w-full {
    width: 100% !important;
  }
}
@media (min-width: 1200px) {
  .tech--xl-w-full {
    width: 100% !important;
  }
}
.tech--h-50 {
  height: 50%;
}
@media (min-width: 640px) {
  .tech--sm-h-50 {
    height: 50%;
  }
}
@media (min-width: 768px) {
  .tech--md-h-50 {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .tech--lg-h-50 {
    height: 50%;
  }
}
@media (min-width: 1200px) {
  .tech--xl-h-50 {
    height: 50%;
  }
}
.tech--h-full {
  height: 100%;
}
@media (min-width: 640px) {
  .tech--sm-h-full {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .tech--md-h-full {
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .tech--lg-h-full {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .tech--xl-h-full {
    height: 100%;
  }
}
.tech--m-1 {
  margin: var(--tech-spacing_2) !important;
}
.tech--mt-1 {
  margin-top: var(--tech-spacing_2) !important;
}
.tech--mr-1 {
  margin-right: var(--tech-spacing_2) !important;
}
.tech--mb-1 {
  margin-bottom: var(--tech-spacing_2) !important;
}
.tech--ml-1 {
  margin-left: var(--tech-spacing_2) !important;
}
.tech--m-0 {
  margin: 0 !important;
}
.tech--mt-0 {
  margin-top: 0 !important;
}
.tech--mr-0 {
  margin-right: 0 !important;
}
.tech--mb-0 {
  margin-bottom: 0 !important;
}
.tech--ml-0 {
  margin-left: 0 !important;
}
.tech--p-1 {
  padding: var(--tech-spacing_2) !important;
}
.tech--pt-1 {
  padding-top: var(--tech-spacing_2) !important;
}
.tech--pr-1 {
  padding-right: var(--tech-spacing_2) !important;
}
.tech--pb-1 {
  padding-bottom: var(--tech-spacing_2) !important;
}
.tech--pl-1 {
  padding-left: var(--tech-spacing_2) !important;
}
.tech--p-0 {
  padding: 0 !important;
}
.tech--pt-0 {
  padding-top: 0 !important;
}
.tech--pr-0 {
  padding-right: 0 !important;
}
.tech--pb-0 {
  padding-bottom: 0 !important;
}
.tech--pl-0 {
  padding-left: 0 !important;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.tech--d-none {
  display: none;
}
.no-shadow {
  box-shadow: none !important;
}
.tech-resize--horizontal {
  resize: horizontal;
}
.tech-resize--vertical {
  resize: vertical;
}
.tech-resize--none {
  resize: none;
}
.italic {
  font-style: italic;
}
.line-through {
  text-decoration: line-through;
}
.clickable {
  cursor: pointer;
}
.text-full-primary-color:hover {
  color: var(--tech-primary-darker);
}
.tech-form__group {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tech-spacing_3);
  margin-bottom: var(--tech-spacing_3);
  align-items: center;
}
.tech-form__group tech-form-field,
.tech-form__group tech-select {
  width: 100%;
}
textarea {
  padding-right: 0 !important;
  padding-left: 0 !important;
  min-height: 60px;
}
tech-form-field span.tech-form__floating-text {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -4px);
  font-size: var(--tech-base-font-size);
  line-height: 16px;
  height: 16px;
  color: var(--tech-text-color);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
tech-form-field input.tech-input.text--ltr,
tech-form-field textarea.text--ltr {
  direction: ltr !important;
  text-align: initial !important;
}
tech-form-field input.tech-input.text--rtl,
tech-form-field textarea.text--rtl {
  direction: rtl !important;
  text-align: initial !important;
}
tech-select-item.not-selectable {
  padding-top: var(--tech-spacing_1);
  padding-bottom: var(--tech-spacing_1);
  color: var(--tech-primary);
}
tech-select-item.not-selectable tech-label {
  font-weight: var(--tech-font-weight-heavy);
}
span.tech-form__hint {
  font-style: italic;
  opacity: 0.8;
}
tech-list-item .tech-list-item-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
tech-selection-list-item {
  padding-left: 0 !important;
}
.list-item__container {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  max-width: 85%;
  padding-left: var(--tech-spacing_1);
  padding-right: var(--tech-spacing_1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--tech-spacing_2);
}
.list-item__icon.list-item__icon--pill {
  display: flex;
  flex-direction: column;
  gap: var(--tech-spacing_1);
  min-width: 60px;
}
.list-item__icon.list-item__icon--pill tech-pill {
  font-size: var(--tech-font-size-2xs) !important;
  font-weight: var(--tech-font-weight-heavy) !important;
}
.list-item__data {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item__data-title {
  display: block;
  color: rgb(var(--tech-colors-gray-400));
  font-size: var(--tech-font-size-xs);
}
.list-item__data-content {
  font-size: var(--tech-font-size-sm);
}
.list-item__data-content tech-pill {
  margin: 0 var(--tech-spacing_2);
  font-weight: var(--tech-font-weight-heavy) !important;
}
.list-item__data-sub-content {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: var(--tech-font-size-sm);
  font-weight: var(--tech-font-weight-heavy);
}
.list-item__background-selected {
  background-color: var(--tech-list--background-hover) !important;
}
table td {
  cursor: pointer;
}
table td.col-left {
  text-align: left !important;
}
table td.col-center {
  text-align: center !important;
}
table td.col-right {
  text-align: right !important;
}
table .table-details .table-details__container-expanded {
  margin-bottom: var(--tech-spacing_3);
}
table .table-details .table-details__container-expanded .table-details__container-expanded__item .tech-list-item-container {
  flex-wrap: wrap;
}
table .table-details .table-details__container-expanded .table-details__container-expanded__item strong {
  margin-right: var(--tech-spacing_1);
}
table .table-details .table-details__container-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--tech-spacing_4);
  margin-bottom: var(--tech-spacing_2);
  gap: var(--tech-spacing_4);
}
table .table-details .table-details__container-buttons button {
  margin: 0 var(--tech-spacing_2);
  width: fit-content;
}
@media (max-width: 640px) {
  table .table-details .table-details__container-buttons button {
    width: 100%;
  }
}
.app-grid {
  width: 100%;
  min-height: 100%;
  display: grid;
  padding: var(--tech-spacing_2) 0;
}
@media screen and (min-width: 640px) {
  .app-grid {
    padding: var(--tech-spacing_4) var(--tech-spacing_2);
  }
}
tech-icon[techSuffix],
tech-icon[techPrefix] {
  box-sizing: content-box;
}
.tech-icon--right {
  margin-left: var(--tech-spacing_1);
}
.tech-icon--left {
  margin-right: var(--tech-spacing_1);
}
.tech-icon--info {
  color: var(--tech-secondary-dark);
}
.tech-icon--primary {
  color: var(--tech-primary-dark);
}
.tech-icon--secondary {
  color: var(--tech-secondary-dark);
}
.tech-icon--success {
  color: var(--tech-success-dark);
}
.tech-icon--warning {
  color: var(--tech-warning-dark);
}
.tech-icon--danger {
  color: var(--tech-danger-dark);
}
.tech-container__header {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}
.tech-container__header__title {
  display: flex;
  align-items: center;
  font-size: var(--tech-font-size-lg);
  font-weight: var(--tech-font-weight-heavy);
  margin-bottom: 0;
}
.tech-container__header__subtitle {
  display: flex;
  align-items: center;
  font-size: var(--tech-font-size-md);
  font-weight: var(--tech-font-weight-heavy);
  margin-bottom: 0;
}
.tech-container__header__actions {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tech-container__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--tech-spacing_8);
  margin-bottom: var(--tech-spacing_4);
  gap: var(--tech-spacing_4);
}
.tech-container__footer button:not([techiconbutton]) {
  width: 100%;
  margin: 0 var(--tech-spacing_2);
}
@media (min-width: 420px) {
  .tech-container__footer button:not([techiconbutton]) {
    min-width: var(--tech-spacing_28);
    width: fit-content;
  }
}
.tech-container__message {
  margin: var(--tech-spacing_1) var(--tech-spacing_2-5) var(--tech-spacing_2-5);
}
@media (min-width: 1024px) {
  .custom-container--right {
    margin-left: var(--tech-spacing_4);
  }
}
@media (min-width: 1024px) {
  .custom-container--left {
    margin-right: var(--tech-spacing_4);
  }
}
.custom-container--height {
  height: calc(100% - 45px);
}
.separator-x {
  width: 100%;
  margin-top: var(--tech-spacing_1-5);
  margin-bottom: var(--tech-spacing_1-5);
  border-top-width: 1px;
  border-color: var(--tech-gray-200);
}
.separator-y {
  height: 100%;
  margin-left: var(--tech-spacing_1-5);
  margin-right: var(--tech-spacing_1-5);
  border-left-width: 1px;
  border-color: var(--tech-gray-200);
}
.tech-container--loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--tech-spacing_4);
}
.tech-container__loader {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 1000;
}
.tech-container__loader tech-loader {
  position: absolute;
  top: 45%;
}
.loading {
  opacity: 0.5;
}
.tech-filters__container {
  padding-left: var(--tech-spacing_0);
  padding-right: var(--tech-spacing_0);
}
.tech-paginator__container {
  width: 100%;
  padding-left: var(--tech-spacing_0);
  padding-right: var(--tech-spacing_0);
}
.tech-table__container {
  height: 100%;
  position: relative;
  padding-bottom: var(--tech-spacing_4);
}
.tech-table__container .tech-table__loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-table__container .tech-table__no-items-found {
  width: 100%;
  height: calc(100% - 36px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--tech-spacing_4);
}
.tech-table__container .tech-table__footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--tech-spacing_4);
  padding: var(--tech-spacing_2);
}
.tech-list__container {
  position: relative;
  padding-left: var(--tech-spacing_1);
  padding-right: var(--tech-spacing_2);
  padding-bottom: var(--tech-spacing_2);
  overflow-y: auto;
}
.tech-list__container.tech-list--height-fixed {
  min-height: 150px;
  margin-top: var(--tech-spacing_2);
  margin-left: calc(var(--tech-spacing_5) * -1);
  margin-right: calc(var(--tech-spacing_5) * -1);
}
.tech-list__container .tech-list__no-items-found {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.tech-global-actions__container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: var(--tech-spacing_1);
  margin-bottom: var(--tech-spacing_1);
}
.tech-summary__content__item {
  width: 100%;
  max-width: 100%;
  padding: 0 var(--tech-spacing_3) var(--tech-spacing_3);
}
.tech-summary__content__text strong {
  display: inline-block;
  width: 100%;
}
.tech-summary__content__list {
  padding-top: var(--tech-spacing_1-5);
}
.tech-summary__content__list .tech-list-item-container {
  gap: var(--tech-spacing_1);
}
.color {
  --size: 15px;
  width: var(--size);
  height: var(--size);
  border-radius: var(--size);
  background-color: var(--tech-secondary-light);
}
.color.secondary {
  background-color: var(--tech-secondary-light);
}
.color.info {
  background-color: var(--tech-info);
}
.color.warning {
  background-color: var(--tech-warning);
}
.color.danger {
  background-color: var(--tech-danger);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--tech-font-family), sans-serif;
  background-color: var(--tech-background-color-dark);
}
iframe {
  border-width: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
}
div.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
lib-tech-modal-wrapper div.wrapper {
  overflow: hidden;
}
lib-tech-modal-wrapper div.wrapper tech-modal-backdrop div.tech-modal-backdrop {
  height: 100%;
}
lib-tech-modal-wrapper div.wrapper tech-modal-backdrop div.tech-modal-backdrop tech-modal {
  overflow: hidden;
}
lib-tech-modal-wrapper div.wrapper tech-modal-backdrop div.tech-modal-backdrop tech-modal div.dialog {
  height: 100%;
  overflow: auto;
}

/* node_modules/.pnpm/@angular+cdk@18.2.14_@angular+common@18.2.14_@angular+core@18.2.14_rxjs@7.8.2_zone.js@0_dab48d9ad4d6603d995b75a8c28c2846/node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: .6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, .32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* node_modules/.pnpm/material-symbols@0.38.0/node_modules/material-symbols/index.css */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("./media/material-symbols-outlined-IBJDU34N.woff2") format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("./media/material-symbols-rounded-OGTUJABK.woff2") format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}
@font-face {
  font-family: "Material Symbols Sharp";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("./media/material-symbols-sharp-2LNG6ASR.woff2") format("woff2");
}
.material-symbols-sharp {
  font-family: "Material Symbols Sharp";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

/* node_modules/.pnpm/@tech+components@4.0.31-beta.0_@angular+cdk@18.2.14_@angular+common@18.2.14_@angular+co_38045e122944aeeac806ee9bc0018002/node_modules/@tech/components/global.css */
:root {
  --tech-colors-slate-50:
    248,
    250,
    252;
  --tech-colors-slate-100:
    241,
    245,
    249;
  --tech-colors-slate-200:
    226,
    232,
    240;
  --tech-colors-slate-300:
    203,
    213,
    225;
  --tech-colors-slate-400:
    148,
    163,
    184;
  --tech-colors-slate-500:
    100,
    116,
    139;
  --tech-colors-slate-600:
    71,
    85,
    105;
  --tech-colors-slate-700:
    51,
    65,
    85;
  --tech-colors-slate-800:
    30,
    41,
    59;
  --tech-colors-slate-900:
    15,
    23,
    42;
  --tech-colors-gray-50:
    249,
    250,
    251;
  --tech-colors-gray-100:
    243,
    244,
    246;
  --tech-colors-gray-200:
    229,
    231,
    235;
  --tech-colors-gray-300:
    209,
    213,
    219;
  --tech-colors-gray-400:
    156,
    163,
    175;
  --tech-colors-gray-500:
    107,
    114,
    128;
  --tech-colors-gray-600:
    75,
    85,
    99;
  --tech-colors-gray-700:
    55,
    65,
    81;
  --tech-colors-gray-800:
    31,
    41,
    55;
  --tech-colors-gray-900:
    17,
    24,
    39;
  --tech-colors-zinc-50:
    250,
    250,
    250;
  --tech-colors-zinc-100:
    244,
    244,
    245;
  --tech-colors-zinc-200:
    228,
    228,
    231;
  --tech-colors-zinc-300:
    212,
    212,
    216;
  --tech-colors-zinc-400:
    161,
    161,
    170;
  --tech-colors-zinc-500:
    113,
    113,
    122;
  --tech-colors-zinc-600:
    82,
    82,
    91;
  --tech-colors-zinc-700:
    63,
    63,
    70;
  --tech-colors-zinc-800:
    39,
    39,
    42;
  --tech-colors-zinc-900:
    24,
    24,
    27;
  --tech-colors-neutral-50:
    250,
    250,
    250;
  --tech-colors-neutral-100:
    245,
    245,
    245;
  --tech-colors-neutral-200:
    229,
    229,
    229;
  --tech-colors-neutral-300:
    212,
    212,
    212;
  --tech-colors-neutral-400:
    163,
    163,
    163;
  --tech-colors-neutral-500:
    115,
    115,
    115;
  --tech-colors-neutral-600:
    82,
    82,
    82;
  --tech-colors-neutral-700:
    64,
    64,
    64;
  --tech-colors-neutral-800:
    38,
    38,
    38;
  --tech-colors-neutral-900:
    23,
    23,
    23;
  --tech-colors-stone-50:
    250,
    250,
    249;
  --tech-colors-stone-100:
    245,
    245,
    244;
  --tech-colors-stone-200:
    231,
    229,
    228;
  --tech-colors-stone-300:
    214,
    211,
    209;
  --tech-colors-stone-400:
    168,
    162,
    158;
  --tech-colors-stone-500:
    120,
    113,
    108;
  --tech-colors-stone-600:
    87,
    83,
    78;
  --tech-colors-stone-700:
    68,
    64,
    60;
  --tech-colors-stone-800:
    41,
    37,
    36;
  --tech-colors-stone-900:
    28,
    25,
    23;
  --tech-colors-red-50:
    254,
    242,
    242;
  --tech-colors-red-100:
    254,
    226,
    226;
  --tech-colors-red-200:
    254,
    202,
    202;
  --tech-colors-red-300:
    252,
    165,
    165;
  --tech-colors-red-400:
    248,
    113,
    113;
  --tech-colors-red-500:
    239,
    68,
    68;
  --tech-colors-red-600:
    220,
    38,
    38;
  --tech-colors-red-700:
    185,
    28,
    28;
  --tech-colors-red-800:
    153,
    27,
    27;
  --tech-colors-red-900:
    127,
    29,
    29;
  --tech-colors-orange-50:
    255,
    247,
    237;
  --tech-colors-orange-100:
    255,
    237,
    213;
  --tech-colors-orange-200:
    254,
    215,
    170;
  --tech-colors-orange-300:
    253,
    186,
    116;
  --tech-colors-orange-400:
    251,
    146,
    60;
  --tech-colors-orange-500:
    249,
    115,
    22;
  --tech-colors-orange-600:
    234,
    88,
    12;
  --tech-colors-orange-700:
    194,
    65,
    12;
  --tech-colors-orange-800:
    154,
    52,
    18;
  --tech-colors-orange-900:
    124,
    45,
    18;
  --tech-colors-amber-50:
    255,
    251,
    235;
  --tech-colors-amber-100:
    254,
    243,
    199;
  --tech-colors-amber-200:
    253,
    230,
    138;
  --tech-colors-amber-300:
    252,
    211,
    77;
  --tech-colors-amber-400:
    251,
    191,
    36;
  --tech-colors-amber-500:
    245,
    158,
    11;
  --tech-colors-amber-600:
    217,
    119,
    6;
  --tech-colors-amber-700:
    180,
    83,
    9;
  --tech-colors-amber-800:
    146,
    64,
    14;
  --tech-colors-amber-900:
    120,
    53,
    15;
  --tech-colors-yellow-50:
    254,
    252,
    232;
  --tech-colors-yellow-100:
    254,
    249,
    195;
  --tech-colors-yellow-200:
    254,
    240,
    138;
  --tech-colors-yellow-300:
    253,
    224,
    71;
  --tech-colors-yellow-400:
    250,
    204,
    21;
  --tech-colors-yellow-500:
    234,
    179,
    8;
  --tech-colors-yellow-600:
    202,
    138,
    4;
  --tech-colors-yellow-700:
    161,
    98,
    7;
  --tech-colors-yellow-800:
    133,
    77,
    14;
  --tech-colors-yellow-900:
    113,
    63,
    18;
  --tech-colors-lime-50:
    247,
    254,
    231;
  --tech-colors-lime-100:
    236,
    252,
    203;
  --tech-colors-lime-200:
    217,
    249,
    157;
  --tech-colors-lime-300:
    190,
    242,
    100;
  --tech-colors-lime-400:
    163,
    230,
    53;
  --tech-colors-lime-500:
    132,
    204,
    22;
  --tech-colors-lime-600:
    101,
    163,
    13;
  --tech-colors-lime-700:
    77,
    124,
    15;
  --tech-colors-lime-800:
    63,
    98,
    18;
  --tech-colors-lime-900:
    54,
    83,
    20;
  --tech-colors-green-50:
    240,
    253,
    244;
  --tech-colors-green-100:
    220,
    252,
    231;
  --tech-colors-green-200:
    187,
    247,
    208;
  --tech-colors-green-300:
    134,
    239,
    172;
  --tech-colors-green-400:
    74,
    222,
    128;
  --tech-colors-green-500:
    34,
    197,
    94;
  --tech-colors-green-600:
    22,
    163,
    74;
  --tech-colors-green-700:
    21,
    128,
    61;
  --tech-colors-green-800:
    22,
    101,
    52;
  --tech-colors-green-900:
    20,
    83,
    45;
  --tech-colors-emerald-50:
    236,
    253,
    245;
  --tech-colors-emerald-100:
    209,
    250,
    229;
  --tech-colors-emerald-200:
    167,
    243,
    208;
  --tech-colors-emerald-300:
    110,
    231,
    183;
  --tech-colors-emerald-400:
    52,
    211,
    153;
  --tech-colors-emerald-500:
    16,
    185,
    129;
  --tech-colors-emerald-600:
    5,
    150,
    105;
  --tech-colors-emerald-700:
    4,
    120,
    87;
  --tech-colors-emerald-800:
    6,
    95,
    70;
  --tech-colors-emerald-900:
    6,
    78,
    59;
  --tech-colors-teal-50:
    240,
    253,
    250;
  --tech-colors-teal-100:
    204,
    251,
    241;
  --tech-colors-teal-200:
    153,
    246,
    228;
  --tech-colors-teal-300:
    94,
    234,
    212;
  --tech-colors-teal-400:
    45,
    212,
    191;
  --tech-colors-teal-500:
    20,
    184,
    166;
  --tech-colors-teal-600:
    13,
    148,
    136;
  --tech-colors-teal-700:
    15,
    118,
    110;
  --tech-colors-teal-800:
    17,
    94,
    89;
  --tech-colors-teal-900:
    19,
    78,
    74;
  --tech-colors-cyan-50:
    236,
    254,
    255;
  --tech-colors-cyan-100:
    207,
    250,
    254;
  --tech-colors-cyan-200:
    165,
    243,
    252;
  --tech-colors-cyan-300:
    103,
    232,
    249;
  --tech-colors-cyan-400:
    34,
    211,
    238;
  --tech-colors-cyan-500:
    6,
    182,
    212;
  --tech-colors-cyan-600:
    8,
    145,
    178;
  --tech-colors-cyan-700:
    14,
    116,
    144;
  --tech-colors-cyan-800:
    21,
    94,
    117;
  --tech-colors-cyan-900:
    22,
    78,
    99;
  --tech-colors-sky-50:
    240,
    249,
    255;
  --tech-colors-sky-100:
    224,
    242,
    254;
  --tech-colors-sky-200:
    186,
    230,
    253;
  --tech-colors-sky-300:
    125,
    211,
    252;
  --tech-colors-sky-400:
    56,
    189,
    248;
  --tech-colors-sky-500:
    14,
    165,
    233;
  --tech-colors-sky-600:
    2,
    132,
    199;
  --tech-colors-sky-700:
    3,
    105,
    161;
  --tech-colors-sky-800:
    7,
    89,
    133;
  --tech-colors-sky-900:
    12,
    74,
    110;
  --tech-colors-blue-50:
    239,
    246,
    255;
  --tech-colors-blue-100:
    219,
    234,
    254;
  --tech-colors-blue-200:
    191,
    219,
    254;
  --tech-colors-blue-300:
    147,
    197,
    253;
  --tech-colors-blue-400:
    96,
    165,
    250;
  --tech-colors-blue-500:
    59,
    130,
    246;
  --tech-colors-blue-600:
    37,
    99,
    235;
  --tech-colors-blue-700:
    29,
    78,
    216;
  --tech-colors-blue-800:
    30,
    64,
    175;
  --tech-colors-blue-900:
    30,
    58,
    138;
  --tech-colors-indigo-50:
    238,
    242,
    255;
  --tech-colors-indigo-100:
    224,
    231,
    255;
  --tech-colors-indigo-200:
    199,
    210,
    254;
  --tech-colors-indigo-300:
    165,
    180,
    252;
  --tech-colors-indigo-400:
    129,
    140,
    248;
  --tech-colors-indigo-500:
    99,
    102,
    241;
  --tech-colors-indigo-600:
    79,
    70,
    229;
  --tech-colors-indigo-700:
    67,
    56,
    202;
  --tech-colors-indigo-800:
    55,
    48,
    163;
  --tech-colors-indigo-900:
    49,
    46,
    129;
  --tech-colors-violet-50:
    245,
    243,
    255;
  --tech-colors-violet-100:
    237,
    233,
    254;
  --tech-colors-violet-200:
    221,
    214,
    254;
  --tech-colors-violet-300:
    196,
    181,
    253;
  --tech-colors-violet-400:
    167,
    139,
    250;
  --tech-colors-violet-500:
    139,
    92,
    246;
  --tech-colors-violet-600:
    124,
    58,
    237;
  --tech-colors-violet-700:
    109,
    40,
    217;
  --tech-colors-violet-800:
    91,
    33,
    182;
  --tech-colors-violet-900:
    76,
    29,
    149;
  --tech-colors-purple-50:
    250,
    245,
    255;
  --tech-colors-purple-100:
    243,
    232,
    255;
  --tech-colors-purple-200:
    233,
    213,
    255;
  --tech-colors-purple-300:
    216,
    180,
    254;
  --tech-colors-purple-400:
    192,
    132,
    252;
  --tech-colors-purple-500:
    168,
    85,
    247;
  --tech-colors-purple-600:
    147,
    51,
    234;
  --tech-colors-purple-700:
    126,
    34,
    206;
  --tech-colors-purple-800:
    107,
    33,
    168;
  --tech-colors-purple-900:
    88,
    28,
    135;
  --tech-colors-fuchsia-50:
    253,
    244,
    255;
  --tech-colors-fuchsia-100:
    250,
    232,
    255;
  --tech-colors-fuchsia-200:
    245,
    208,
    254;
  --tech-colors-fuchsia-300:
    240,
    171,
    252;
  --tech-colors-fuchsia-400:
    232,
    121,
    249;
  --tech-colors-fuchsia-500:
    217,
    70,
    239;
  --tech-colors-fuchsia-600:
    192,
    38,
    211;
  --tech-colors-fuchsia-700:
    162,
    28,
    175;
  --tech-colors-fuchsia-800:
    134,
    25,
    143;
  --tech-colors-fuchsia-900:
    112,
    26,
    117;
  --tech-colors-pink-50:
    253,
    242,
    248;
  --tech-colors-pink-100:
    252,
    231,
    243;
  --tech-colors-pink-200:
    251,
    207,
    232;
  --tech-colors-pink-300:
    249,
    168,
    212;
  --tech-colors-pink-400:
    244,
    114,
    182;
  --tech-colors-pink-500:
    236,
    72,
    153;
  --tech-colors-pink-600:
    219,
    39,
    119;
  --tech-colors-pink-700:
    190,
    24,
    93;
  --tech-colors-pink-800:
    157,
    23,
    77;
  --tech-colors-pink-900:
    131,
    24,
    67;
  --tech-colors-rose-50:
    255,
    241,
    242;
  --tech-colors-rose-100:
    255,
    228,
    230;
  --tech-colors-rose-200:
    254,
    205,
    211;
  --tech-colors-rose-300:
    253,
    164,
    175;
  --tech-colors-rose-400:
    251,
    113,
    133;
  --tech-colors-rose-500:
    244,
    63,
    94;
  --tech-colors-rose-600:
    225,
    29,
    72;
  --tech-colors-rose-700:
    190,
    18,
    60;
  --tech-colors-rose-800:
    159,
    18,
    57;
  --tech-colors-rose-900:
    136,
    19,
    55;
  --tech-colors-white:
    255,
    255,
    255;
  --tech-colors-black:
    0,
    0,
    0;
}
:root {
  --tech-spacing_0: 0px;
  --tech-spacing_px: 1px;
  --tech-spacing_0-5: 0.125rem;
  --tech-spacing_1: 0.25rem;
  --tech-spacing_1-5: 0.375rem;
  --tech-spacing_2: 0.5rem;
  --tech-spacing_2-5: 0.625rem;
  --tech-spacing_3: 0.75rem;
  --tech-spacing_3-5: 0.875rem;
  --tech-spacing_4: 1rem;
  --tech-spacing_5: 1.25rem;
  --tech-spacing_6: 1.5rem;
  --tech-spacing_7: 1.75rem;
  --tech-spacing_8: 2rem;
  --tech-spacing_9: 2.25rem;
  --tech-spacing_10: 2.5rem;
  --tech-spacing_11: 2.75rem;
  --tech-spacing_12: 3rem;
  --tech-spacing_14: 3.5rem;
  --tech-spacing_16: 4rem;
  --tech-spacing_20: 5rem;
  --tech-spacing_24: 6rem;
  --tech-spacing_28: 7rem;
  --tech-spacing_32: 8rem;
  --tech-spacing_36: 9rem;
  --tech-spacing_40: 10rem;
  --tech-spacing_44: 11rem;
  --tech-spacing_48: 12rem;
  --tech-spacing_52: 13rem;
  --tech-spacing_56: 14rem;
  --tech-spacing_60: 15rem;
  --tech-spacing_64: 16rem;
  --tech-spacing_72: 18rem;
  --tech-spacing_80: 20rem;
  --tech-spacing_96: 24rem;
  --tech-base-font-size: 16px;
  --tech-base-line-height: 1.375rem;
  --tech-font-size-3xs: 0.5rem;
  --tech-font-size-2xs: 0.625rem;
  --tech-font-size-xs: 0.75rem;
  --tech-font-size-sm: 0.875rem;
  --tech-font-size-md: 1rem;
  --tech-font-size-lg: 1.125rem;
  --tech-font-size-xl: 1.25rem;
  --tech-font-size-2xl: 1.5rem;
  --tech-font-size-3xl: 1.75rem;
  --tech-font-weight-lighter: 100;
  --tech-font-weight-light: 300;
  --tech-font-weight-normal: 400;
  --tech-font-weight-heavy: 500;
  --tech-font-weight-bold: 700;
  --tech-font-weight-bolder: 900;
  --tech-shadow: 0 3px 6px rgba(0,0,0, .16);
  --tech-shadow-md: 0 3px 12px rgba(0,0,0, .24);
  --tech-transition: .2s ease;
  --tech-border-radius: 3px;
  --tech-border-radius-lg: 6px;
  --tech-border-radius-xl: 12px;
  --tech-border-radius-full: 999px;
  --tech-alpha_01: 0.1;
  --tech-alpha_02: 0.2;
  --tech-alpha_03: 0.3;
  --tech-primary-source: var(--tech-colors-indigo-500);
  --tech-primary-lighter: rgba(var(--tech-primary-source), var(--tech-alpha_01));
  --tech-primary-light: rgba(var(--tech-primary-source), var(--tech-alpha_03));
  --tech-primary: rgb(var(--tech-primary-source));
  --tech-primary-dark: rgb(var(--tech-colors-indigo-600));
  --tech-primary-darker: rgb(var(--tech-colors-indigo-700));
  --tech-secondary-source: var(--tech-colors-slate-500);
  --tech-secondary-lighter: rgba(var(--tech-secondary-source), var(--tech-alpha_01));
  --tech-secondary-light: rgba(var(--tech-secondary-source), var(--tech-alpha_03));
  --tech-secondary: rgb(var(--tech-secondary-source));
  --tech-secondary-dark: rgb(var(--tech-colors-slate-600));
  --tech-secondary-darker: rgb(var(--tech-colors-slate-700));
  --tech-info-source: var(--tech-colors-sky-500);
  --tech-info-lighter: rgba(var(--tech-info-source), var(--tech-alpha_01));
  --tech-info-light: rgba(var(--tech-info-source), var(--tech-alpha_03));
  --tech-info: rgb(var(--tech-info-source));
  --tech-info-dark: rgb(var(--tech-colors-sky-600));
  --tech-info-darker: rgb(var(--tech-colors-sky-700));
  --tech-success-source: var(--tech-colors-emerald-500);
  --tech-success-lighter: rgba(var(--tech-success-source), var(--tech-alpha_01));
  --tech-success-light: rgba(var(--tech-success-source), var(--tech-alpha_03));
  --tech-success: rgb(var(--tech-success-source));
  --tech-success-dark: rgb(var(--tech-colors-emerald-600));
  --tech-success-darker: rgb(var(--tech-colors-emerald-700));
  --tech-warning-source: var(--tech-colors-yellow-500);
  --tech-warning-lighter: rgba(var(--tech-warning-source), var(--tech-alpha_01));
  --tech-warning-light: rgba(var(--tech-warning-source), var(--tech-alpha_03));
  --tech-warning: rgb(var(--tech-warning-source));
  --tech-warning-dark: rgb(var(--tech-colors-yellow-600));
  --tech-warning-darker: rgb(var(--tech-colors-yellow-700));
  --tech-danger-source: var(--tech-colors-red-700);
  --tech-danger-lighter: rgba(var(--tech-danger-source), var(--tech-alpha_01));
  --tech-danger-light: rgba(var(--tech-danger-source), var(--tech-alpha_03));
  --tech-danger: rgb(var(--tech-danger-source));
  --tech-danger-dark: rgb(var(--tech-colors-red-800));
  --tech-danger-darker: rgb(var(--tech-colors-red-900));
  --tech-font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
body {
  --tech-background-color: rgb(var(--tech-colors-white));
  --tech-background-color-dark: rgb(var(--tech-colors-gray-100));
  --tech-divider-color: var(--tech-colors-slate-200);
  --tech-text-color-source: var(--tech-colors-gray-600);
  --tech-text-color: rgb(var(--tech-colors-gray-600));
  --tech-text-color-light: rgb(var(--tech-colors-white));
  --tech-text-color-dark: rgb(var(--tech-colors-gray-700));
  --tech-input-label-color: var(--tech-colors-gray-500);
  --tech-input-label-color-focus: var(--tech-primary);
  --tech-input-label-color-error: var(--tech-danger-dark);
  --tech-input-label-color-disabled: rgba(var(--tech-text-color-source), 0.8);
  --tech-input-border-color: rgba(var(--tech-text-color-source), 0.3);
  --tech-input-border-color-hover: rgba(var(--tech-text-color-source), 0.8);
  --tech-input-border-color-focus: var(--tech-primary);
  --tech-input-border-color-error: var(--tech-danger);
  --tech-input-border-color-disabled: rgba(var(--tech-text-color-source), 0.2);
  --tech-input-background-color-disabled: rgba(var(--tech-text-color-source), 0.05);
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-latin-100-italic-32DK3CB4.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-latin-300-italic-IFBTXO27.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-latin-400-italic-YES7M5PN.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-latin-500-italic-IGVX4MOH.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-latin-700-italic-7WUR6NMJ.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-latin-900-italic-OSHYSX6R.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-latin-100-normal-MYPADSFF.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-latin-300-normal-7RGMLVIR.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-latin-400-normal-5LMCP35M.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-latin-500-normal-TQLNXRGI.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-latin-700-normal-MCIKADEH.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-latin-900-normal-EUFP232Y.woff") format("woff");
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-100-italic-NQRB6NCG.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-100-italic-PPXZNR2I.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-cyrillic-100-italic-VL5BUPNK.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-100-italic-UPBKJ3UX.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-greek-ext-100-italic-EGCS5EHJ.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-100-italic-3V63GYFA.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-greek-100-italic-YAGEVFKH.woff2") format("woff2");
  src: url("./media/roboto-greek-100-italic-XVKLNWGO.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-vietnamese-100-italic-3LE6D7R6.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-100-italic-3T3NZNKY.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-latin-ext-100-italic-5LR74OCX.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-100-italic-OQ5IQHDL.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-latin-100-italic-Q3DFY7YW.woff2") format("woff2");
  src: url("./media/roboto-latin-100-italic-32DK3CB4.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-300-italic-SZWX7XGV.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-300-italic-XOHEMY6P.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-cyrillic-300-italic-ITXKN7GH.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-300-italic-YXBZM7KZ.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-greek-ext-300-italic-OYEVIGMR.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-300-italic-HEWYCJ3H.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-greek-300-italic-SHUELBG3.woff2") format("woff2");
  src: url("./media/roboto-greek-300-italic-XSBNFMEJ.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-vietnamese-300-italic-6Z44FPO6.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-300-italic-MMTWUCYH.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-latin-ext-300-italic-2LIYBCWB.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-300-italic-JQ53LQ7R.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-latin-300-italic-KU25GE6E.woff2") format("woff2");
  src: url("./media/roboto-latin-300-italic-IFBTXO27.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-400-italic-JOQKUMDA.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-400-italic-IVUQHKNJ.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-cyrillic-400-italic-7F7NRRUS.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-400-italic-MZDTTDYQ.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-greek-ext-400-italic-VIBZISUD.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-400-italic-J7CGGVND.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-greek-400-italic-IP6JY25O.woff2") format("woff2");
  src: url("./media/roboto-greek-400-italic-OWV6YT2M.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-vietnamese-400-italic-QC7HW4I3.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-400-italic-XGNRZDMF.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-latin-ext-400-italic-OERHMOEQ.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-400-italic-43LUXLIE.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-latin-400-italic-M52ZBOVE.woff2") format("woff2");
  src: url("./media/roboto-latin-400-italic-YES7M5PN.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-500-italic-SRMTEMP2.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-500-italic-J77MFPSB.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-cyrillic-500-italic-HQ3TFABN.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-500-italic-QDMWNQN5.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-greek-ext-500-italic-63HOQDVZ.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-500-italic-W4NFX36V.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-greek-500-italic-XCSMAVNL.woff2") format("woff2");
  src: url("./media/roboto-greek-500-italic-7I5NQ257.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-vietnamese-500-italic-HKUGMHVW.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-500-italic-LS2Z2GCN.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-latin-ext-500-italic-6V27GKD6.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-500-italic-KUQEZT25.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-latin-500-italic-XVHEPTNR.woff2") format("woff2");
  src: url("./media/roboto-latin-500-italic-IGVX4MOH.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-700-italic-6B6V7JEI.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-700-italic-NVQID6BJ.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-cyrillic-700-italic-5STHOESJ.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-700-italic-PW6V4OQ4.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-greek-ext-700-italic-JLXMIP6X.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-700-italic-P5TLAU7B.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-greek-700-italic-KOUWV44A.woff2") format("woff2");
  src: url("./media/roboto-greek-700-italic-GZA73XVU.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-vietnamese-700-italic-YIVNHYGM.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-700-italic-MC7KOT44.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-latin-ext-700-italic-JHWXJLPN.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-700-italic-LVID57VF.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-latin-700-italic-UTTCRKEP.woff2") format("woff2");
  src: url("./media/roboto-latin-700-italic-7WUR6NMJ.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-900-italic-INNWGXAL.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-900-italic-BB55NFHF.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-cyrillic-900-italic-EJMZIRGH.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-900-italic-RN7HTWZL.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-greek-ext-900-italic-75QX4NAA.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-900-italic-2ZJB3WMT.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-greek-900-italic-ISUTYWLM.woff2") format("woff2");
  src: url("./media/roboto-greek-900-italic-AOWQGJ7N.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-vietnamese-900-italic-KLUKZUI7.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-900-italic-GWXYZAIW.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-latin-ext-900-italic-WGSIHTNY.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-900-italic-RUGVCATP.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-latin-900-italic-N6BNPCJX.woff2") format("woff2");
  src: url("./media/roboto-latin-900-italic-OSHYSX6R.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-100-normal-2E3KT4QG.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-100-normal-YQN7CBBB.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-cyrillic-100-normal-KG3X5QUA.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-100-normal-IINOISR5.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-greek-ext-100-normal-524FAJ42.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-100-normal-X5KAHWOF.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-greek-100-normal-M7PHGJMJ.woff2") format("woff2");
  src: url("./media/roboto-greek-100-normal-GZWWBPEL.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-vietnamese-100-normal-3JBKZISB.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-100-normal-NMO5EKKU.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-latin-ext-100-normal-BV32NKMX.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-100-normal-6QJALIQK.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-latin-100-normal-2J6DYTCI.woff2") format("woff2");
  src: url("./media/roboto-latin-100-normal-MYPADSFF.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-300-normal-P746GPTT.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-300-normal-K5E3EQY7.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-cyrillic-300-normal-5FCNOL5I.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-300-normal-S4G6BCUJ.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-greek-ext-300-normal-AVUUPF2M.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-300-normal-CHJAR3LX.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-greek-300-normal-K5IJE74E.woff2") format("woff2");
  src: url("./media/roboto-greek-300-normal-6UESZQBQ.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-vietnamese-300-normal-267PM5ST.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-300-normal-R4BWGGSL.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-latin-ext-300-normal-PRGC3JWU.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-300-normal-5TNPL65Q.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-latin-300-normal-EMU7QL2I.woff2") format("woff2");
  src: url("./media/roboto-latin-300-normal-7RGMLVIR.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-400-normal-SRSDFWJ5.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-400-normal-IPPFEIF4.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-cyrillic-400-normal-QMHKB7XT.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-400-normal-XM72AQXZ.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-greek-ext-400-normal-267F52QO.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-400-normal-YUVELKNQ.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-greek-400-normal-RHHY76DH.woff2") format("woff2");
  src: url("./media/roboto-greek-400-normal-DLHZXNKM.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-vietnamese-400-normal-U5VVNGXF.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-400-normal-D4YKB5GR.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-latin-ext-400-normal-WBUEMEI4.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-400-normal-4P52IC7Z.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-latin-400-normal-IBDOZG32.woff2") format("woff2");
  src: url("./media/roboto-latin-400-normal-5LMCP35M.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-500-normal-KDRRQZPI.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-500-normal-UG4MQEVN.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-cyrillic-500-normal-WPHFPMQD.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-500-normal-VQFAVH3S.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-greek-ext-500-normal-K5P3BMKI.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-500-normal-F47T3IXD.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-greek-500-normal-YC52MZ65.woff2") format("woff2");
  src: url("./media/roboto-greek-500-normal-ZEONV4M5.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-vietnamese-500-normal-FRKLBJFT.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-500-normal-2CVE2424.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-latin-ext-500-normal-ZFN6VB5B.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-500-normal-4ZDNTXY4.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-latin-500-normal-JDXA5OBJ.woff2") format("woff2");
  src: url("./media/roboto-latin-500-normal-TQLNXRGI.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-700-normal-HQ3H6ROX.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-700-normal-LOTGBS3T.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-cyrillic-700-normal-URHYHHEL.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-700-normal-CS7JWTBR.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-greek-ext-700-normal-OQQIZQNZ.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-700-normal-RJ7PLDDL.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-greek-700-normal-S65XCCJK.woff2") format("woff2");
  src: url("./media/roboto-greek-700-normal-A5UG25O2.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-vietnamese-700-normal-ARKHD6A5.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-700-normal-PUOYPHAJ.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-latin-ext-700-normal-3PP353KY.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-700-normal-Q6KA5KRE.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-latin-700-normal-7J3ESYCT.woff2") format("woff2");
  src: url("./media/roboto-latin-700-normal-MCIKADEH.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-cyrillic-ext-900-normal-BAJEKODS.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-ext-900-normal-5MXMJ2JR.woff") format("woff");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-cyrillic-900-normal-NMQP2F2V.woff2") format("woff2");
  src: url("./media/roboto-cyrillic-900-normal-I4TMESG3.woff") format("woff");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-greek-ext-900-normal-Y7SG7SUA.woff2") format("woff2");
  src: url("./media/roboto-greek-ext-900-normal-IPXKFKZO.woff") format("woff");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-greek-900-normal-Y335MK2C.woff2") format("woff2");
  src: url("./media/roboto-greek-900-normal-3EYRXXPM.woff") format("woff");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-vietnamese-900-normal-QEKSHXQ6.woff2") format("woff2");
  src: url("./media/roboto-vietnamese-900-normal-WJWSM53G.woff") format("woff");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-latin-ext-900-normal-ISKPM7DD.woff2") format("woff2");
  src: url("./media/roboto-latin-ext-900-normal-GCU6ECHH.woff") format("woff");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-latin-900-normal-2C2W7QYB.woff2") format("woff2");
  src: url("./media/roboto-latin-900-normal-EUFP232Y.woff") format("woff");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
.tech-button {
  -webkit-tap-highlight-color: transparent;
  border: none;
  color: var(--tech-text-color-light);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--tech-border-radius);
  padding: 0 var(--tech-spacing_4);
  height: 36px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: var(--tech-font-size-sm);
  text-transform: uppercase;
  font-weight: var(--tech-font-weight-heavy);
  text-align: center;
  font-family: inherit;
  transition: background-color var(--tech-transition), box-shadow var(--tech-transition);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  --tech-button-background: var(--tech-primary);
  --tech-button-background-hover: var(--tech-primary-dark);
  --tech-button-background-active: var(--tech-primary-darker);
  background: var(--tech-button-background);
}
.tech-button:hover {
  box-shadow: var(--tech-shadow);
  background: var(--tech-button-background-hover);
}
.tech-button:active {
  box-shadow: none;
  background: var(--tech-button-background-active);
}
.tech-button.tech-button--color-primary {
  --tech-button-background: var(--tech-primary);
  --tech-button-background-hover: var(--tech-primary-dark);
  --tech-button-background-active: var(--tech-primary-darker);
}
.tech-button.tech-button--color-secondary {
  --tech-button-background: var(--tech-secondary);
  --tech-button-background-hover: var(--tech-secondary-dark);
  --tech-button-background-active: var(--tech-secondary-darker);
}
.tech-button.tech-button--color-info {
  --tech-button-background: var(--tech-info);
  --tech-button-background-hover: var(--tech-info-dark);
  --tech-button-background-active: var(--tech-info-darker);
}
.tech-button.tech-button--color-success {
  --tech-button-background: var(--tech-success);
  --tech-button-background-hover: var(--tech-success-dark);
  --tech-button-background-active: var(--tech-success-darker);
}
.tech-button.tech-button--color-warning {
  --tech-button-background: var(--tech-warning);
  --tech-button-background-hover: var(--tech-warning-dark);
  --tech-button-background-active: var(--tech-warning-darker);
}
.tech-button.tech-button--color-danger {
  --tech-button-background: var(--tech-danger);
  --tech-button-background-hover: var(--tech-danger-dark);
  --tech-button-background-active: var(--tech-danger-darker);
}
.tech-button[disabled] {
  --tech-button-background: rgba(var(--tech-colors-gray-500), .2);
  --tech-button-background-hover: rgba(var(--tech-colors-gray-500), .2);
  --tech-button-background-active: rgba(var(--tech-colors-gray-500), .2);
  box-shadow: none;
  color: rgb(var(--tech-colors-gray-400));
  cursor: not-allowed;
  opacity: 0.5;
}
.tech-button[disabled]:hover {
  box-shadow: none;
}
.tech-button.tech-button--round-full {
  border-radius: var(--tech-border-radius-full);
}
.tech-button.tech-button--round-semi {
  border-radius: var(--tech-border-radius-lg);
}
.tech-button.tech-button--round-normal {
  border-radius: var(--tech-border-radius);
}
.tech-button.tech-button--round-none {
  border-radius: 0;
}
.tech-button tech-icon[techPrefix] {
  padding-right: var(--tech-spacing_2);
}
.tech-button tech-icon[techSuffix] {
  padding-left: var(--tech-spacing_2);
}
.tech-icon-button {
  width: 36px;
  padding: 0;
}
.tech-icon-button tech-icon {
  padding-right: 0;
  padding-left: 0;
}
.tech-flat-button {
  -webkit-tap-highlight-color: transparent;
  border: none;
  color: var(--tech-text-color-light);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--tech-border-radius);
  padding: 0 var(--tech-spacing_4);
  height: 36px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: var(--tech-font-size-sm);
  text-transform: uppercase;
  font-weight: var(--tech-font-weight-heavy);
  text-align: center;
  font-family: inherit;
  transition: background-color var(--tech-transition), box-shadow var(--tech-transition);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  --tech-button-background: var(--tech-primary);
  --tech-button-background-hover: var(--tech-primary-dark);
  --tech-button-background-active: var(--tech-primary-darker);
  background: var(--tech-button-background);
}
.tech-flat-button:hover {
  box-shadow: var(--tech-shadow);
  background: var(--tech-button-background-hover);
}
.tech-flat-button:active {
  box-shadow: none;
  background: var(--tech-button-background-active);
}
.tech-flat-button.tech-button--color-primary {
  --tech-button-background: var(--tech-primary);
  --tech-button-background-hover: var(--tech-primary-dark);
  --tech-button-background-active: var(--tech-primary-darker);
}
.tech-flat-button.tech-button--color-secondary {
  --tech-button-background: var(--tech-secondary);
  --tech-button-background-hover: var(--tech-secondary-dark);
  --tech-button-background-active: var(--tech-secondary-darker);
}
.tech-flat-button.tech-button--color-info {
  --tech-button-background: var(--tech-info);
  --tech-button-background-hover: var(--tech-info-dark);
  --tech-button-background-active: var(--tech-info-darker);
}
.tech-flat-button.tech-button--color-success {
  --tech-button-background: var(--tech-success);
  --tech-button-background-hover: var(--tech-success-dark);
  --tech-button-background-active: var(--tech-success-darker);
}
.tech-flat-button.tech-button--color-warning {
  --tech-button-background: var(--tech-warning);
  --tech-button-background-hover: var(--tech-warning-dark);
  --tech-button-background-active: var(--tech-warning-darker);
}
.tech-flat-button.tech-button--color-danger {
  --tech-button-background: var(--tech-danger);
  --tech-button-background-hover: var(--tech-danger-dark);
  --tech-button-background-active: var(--tech-danger-darker);
}
.tech-flat-button[disabled] {
  --tech-button-background: rgba(var(--tech-colors-gray-500), .2);
  --tech-button-background-hover: rgba(var(--tech-colors-gray-500), .2);
  --tech-button-background-active: rgba(var(--tech-colors-gray-500), .2);
  box-shadow: none;
  color: rgb(var(--tech-colors-gray-400));
  cursor: not-allowed;
  opacity: 0.5;
}
.tech-flat-button[disabled]:hover {
  box-shadow: none;
}
.tech-flat-button.tech-button--round-full {
  border-radius: var(--tech-border-radius-full);
}
.tech-flat-button.tech-button--round-semi {
  border-radius: var(--tech-border-radius-lg);
}
.tech-flat-button.tech-button--round-normal {
  border-radius: var(--tech-border-radius);
}
.tech-flat-button.tech-button--round-none {
  border-radius: 0;
}
.tech-flat-button {
  background: transparent;
}
.tech-flat-button:hover {
  box-shadow: none;
}
.tech-flat-button.tech-button--color-primary {
  color: var(--tech-primary);
  --tech-button-background-hover: var(--tech-primary-lighter);
  --tech-button-background-active: var(--tech-primary-light);
}
.tech-flat-button.tech-button--color-secondary {
  color: var(--tech-secondary);
  --tech-button-background-hover: var(--tech-secondary-lighter);
  --tech-button-background-active: var(--tech-secondary-light);
}
.tech-flat-button.tech-button--color-info {
  color: var(--tech-info);
  --tech-button-background-hover: var(--tech-info-lighter);
  --tech-button-background-active: var(--tech-info-light);
}
.tech-flat-button.tech-button--color-success {
  color: var(--tech-success);
  --tech-button-background-hover: var(--tech-success-lighter);
  --tech-button-background-active: var(--tech-success-light);
}
.tech-flat-button.tech-button--color-warning {
  color: var(--tech-warning);
  --tech-button-background-hover: var(--tech-warning-lighter);
  --tech-button-background-active: var(--tech-warning-light);
}
.tech-flat-button.tech-button--color-danger {
  color: var(--tech-danger);
  --tech-button-background-hover: var(--tech-danger-lighter);
  --tech-button-background-active: var(--tech-danger-light);
}
.tech-flat-button[disabled] {
  color: var(--tech-text-color);
  opacity: 0.3;
}
.tech-flat-button[disabled]:hover {
  background: transparent;
  color: var(--tech-text-color);
}
.tech-flat-button[disabled]:active {
  background: transparent;
  color: var(--tech-text-color);
}
.tech-icon-round-button {
  padding: 0;
  border-radius: var(--tech-border-radius-full) !important;
}
.tech-badges {
}
.tech-badges.tech-badges-small {
  position: relative;
  left: 3px;
  display: inline;
  border-radius: 4px;
  --tech-badges-background: var(--tech-secondary-darker);
  --tech-badges-color: var(--tech-colors-white);
}
.tech-badges.tech-badges-small.tech-badges--color-standard .tech-badge-content {
  background-color: var(--tech-secondary-darker);
}
.tech-badges.tech-badges-small.tech-badges--color-primary .tech-badge-content {
  background-color: var(--tech-primary);
}
.tech-badges.tech-badges-small.tech-badges--color-secondary .tech-badge-content {
  background-color: var(--tech-secondary);
}
.tech-badges.tech-badges-small.tech-badges--color-info .tech-badge-content {
  background-color: var(--tech-info);
}
.tech-badges.tech-badges-small.tech-badges--color-success .tech-badge-content {
  background-color: var(--tech-success);
}
.tech-badges.tech-badges-small.tech-badges--color-warning .tech-badge-content {
  background-color: var(--tech-warning);
}
.tech-badges.tech-badges-small.tech-badges--color-danger .tech-badge-content {
  background-color: var(--tech-danger);
}
.tech-badges.tech-badges-small.tech-badges-top .tech-badge-content {
  top: -12px;
}
.tech-badges.tech-badges-small.tech-badges-bottom .tech-badge-content {
  bottom: -12px;
}
.tech-badges.tech-badges-small.tech-badges-left .tech-badge-content {
  left: -12px;
}
.tech-badges.tech-badges-small.tech-badges-right .tech-badge-content {
  right: -12px;
}
.tech-badges.tech-badges-small.tech-badges-left:not(button) .tech-badge-content {
  left: auto !important;
}
.tech-badges.tech-badges-small.tech-badges-right:not(button) .tech-badge-content {
  right: auto !important;
}
.tech-badges.tech-badges-small.tech-badges-left:is(a) .tech-badge-content {
  left: -12px !important;
}
.tech-badges.tech-badges-small.tech-badges-right:is(a) .tech-badge-content {
  right: -12px !important;
}
.tech-badges.tech-badges-small.tech-badges-right .tech-badge-content {
  right: -12px;
}
.tech-badges.tech-badges-small.tech-badges-overlap.tech-badges-left .tech-badge-content {
  left: -12px;
}
.tech-badges.tech-badges-small.tech-badges-overlap.tech-badges-right .tech-badge-content {
  right: -12px;
}
.tech-badges.tech-badges-small .tech-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--tech-secondary-darker);
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  font-weight: 600;
  font-size: 14px;
  padding: 3px 4px;
  box-sizing: content-box;
}
.tech-badges.tech-badges-small .tech-badge-content {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.tech-badges.tech-badges-medium {
  position: relative;
  left: 3px;
  display: inline;
  border-radius: 4px;
  --tech-badges-background: var(--tech-secondary-darker);
  --tech-badges-color: var(--tech-colors-white);
}
.tech-badges.tech-badges-medium.tech-badges--color-standard .tech-badge-content {
  background-color: var(--tech-secondary-darker);
}
.tech-badges.tech-badges-medium.tech-badges--color-primary .tech-badge-content {
  background-color: var(--tech-primary);
}
.tech-badges.tech-badges-medium.tech-badges--color-secondary .tech-badge-content {
  background-color: var(--tech-secondary);
}
.tech-badges.tech-badges-medium.tech-badges--color-info .tech-badge-content {
  background-color: var(--tech-info);
}
.tech-badges.tech-badges-medium.tech-badges--color-success .tech-badge-content {
  background-color: var(--tech-success);
}
.tech-badges.tech-badges-medium.tech-badges--color-warning .tech-badge-content {
  background-color: var(--tech-warning);
}
.tech-badges.tech-badges-medium.tech-badges--color-danger .tech-badge-content {
  background-color: var(--tech-danger);
}
.tech-badges.tech-badges-medium.tech-badges-top .tech-badge-content {
  top: -15px;
}
.tech-badges.tech-badges-medium.tech-badges-bottom .tech-badge-content {
  bottom: -15px;
}
.tech-badges.tech-badges-medium.tech-badges-left .tech-badge-content {
  left: -15px;
}
.tech-badges.tech-badges-medium.tech-badges-right .tech-badge-content {
  right: -15px;
}
.tech-badges.tech-badges-medium.tech-badges-left:not(button) .tech-badge-content {
  left: auto !important;
}
.tech-badges.tech-badges-medium.tech-badges-right:not(button) .tech-badge-content {
  right: auto !important;
}
.tech-badges.tech-badges-medium.tech-badges-left:is(a) .tech-badge-content {
  left: -15px !important;
}
.tech-badges.tech-badges-medium.tech-badges-right:is(a) .tech-badge-content {
  right: -15px !important;
}
.tech-badges.tech-badges-medium.tech-badges-right .tech-badge-content {
  right: -15px;
}
.tech-badges.tech-badges-medium.tech-badges-overlap.tech-badges-left .tech-badge-content {
  left: -15px;
}
.tech-badges.tech-badges-medium.tech-badges-overlap.tech-badges-right .tech-badge-content {
  right: -15px;
}
.tech-badges.tech-badges-medium .tech-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--tech-secondary-darker);
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  font-weight: 600;
  font-size: 16px;
  padding: 5px 6px;
  box-sizing: content-box;
}
.tech-badges.tech-badges-medium .tech-badge-content {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.tech-badges.tech-badges-large {
  position: relative;
  left: 3px;
  display: inline;
  border-radius: 4px;
  --tech-badges-background: var(--tech-secondary-darker);
  --tech-badges-color: var(--tech-colors-white);
}
.tech-badges.tech-badges-large.tech-badges--color-standard .tech-badge-content {
  background-color: var(--tech-secondary-darker);
}
.tech-badges.tech-badges-large.tech-badges--color-primary .tech-badge-content {
  background-color: var(--tech-primary);
}
.tech-badges.tech-badges-large.tech-badges--color-secondary .tech-badge-content {
  background-color: var(--tech-secondary);
}
.tech-badges.tech-badges-large.tech-badges--color-info .tech-badge-content {
  background-color: var(--tech-info);
}
.tech-badges.tech-badges-large.tech-badges--color-success .tech-badge-content {
  background-color: var(--tech-success);
}
.tech-badges.tech-badges-large.tech-badges--color-warning .tech-badge-content {
  background-color: var(--tech-warning);
}
.tech-badges.tech-badges-large.tech-badges--color-danger .tech-badge-content {
  background-color: var(--tech-danger);
}
.tech-badges.tech-badges-large.tech-badges-top .tech-badge-content {
  top: -18px;
}
.tech-badges.tech-badges-large.tech-badges-bottom .tech-badge-content {
  bottom: -18px;
}
.tech-badges.tech-badges-large.tech-badges-left .tech-badge-content {
  left: -18px;
}
.tech-badges.tech-badges-large.tech-badges-right .tech-badge-content {
  right: -18px;
}
.tech-badges.tech-badges-large.tech-badges-left:not(button) .tech-badge-content {
  left: auto !important;
}
.tech-badges.tech-badges-large.tech-badges-right:not(button) .tech-badge-content {
  right: auto !important;
}
.tech-badges.tech-badges-large.tech-badges-left:is(a) .tech-badge-content {
  left: -18px !important;
}
.tech-badges.tech-badges-large.tech-badges-right:is(a) .tech-badge-content {
  right: -18px !important;
}
.tech-badges.tech-badges-large.tech-badges-right .tech-badge-content {
  right: -18px;
}
.tech-badges.tech-badges-large.tech-badges-overlap.tech-badges-left .tech-badge-content {
  left: -18px;
}
.tech-badges.tech-badges-large.tech-badges-overlap.tech-badges-right .tech-badge-content {
  right: -18px;
}
.tech-badges.tech-badges-large .tech-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--tech-secondary-darker);
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  font-weight: 600;
  font-size: 18px;
  padding: 7px 8px;
  box-sizing: content-box;
}
.tech-badges.tech-badges-large .tech-badge-content {
  width: 36px;
  height: 36px;
  line-height: 36px;
}
.tech-badges-icon {
  left: 30%;
  position: relative;
  display: inline-flex !important;
}
.tech-badges-extended {
  position: relative;
  left: 3px;
  display: inline;
  border-radius: 4px;
  --tech-badges-background: var(--tech-secondary-darker);
  --tech-badges-color: var(--tech-colors-white);
}
.tech-badges-extended.tech-badges--color-standard .tech-badge-content {
  background-color: var(--tech-secondary-darker);
}
.tech-badges-extended.tech-badges--color-primary .tech-badge-content {
  background-color: var(--tech-primary);
}
.tech-badges-extended.tech-badges--color-secondary .tech-badge-content {
  background-color: var(--tech-secondary);
}
.tech-badges-extended.tech-badges--color-info .tech-badge-content {
  background-color: var(--tech-info);
}
.tech-badges-extended.tech-badges--color-success .tech-badge-content {
  background-color: var(--tech-success);
}
.tech-badges-extended.tech-badges--color-warning .tech-badge-content {
  background-color: var(--tech-warning);
}
.tech-badges-extended.tech-badges--color-danger .tech-badge-content {
  background-color: var(--tech-danger);
}
.tech-badges-extended.tech-badges-top .tech-badge-content {
  top: -15px;
}
.tech-badges-extended.tech-badges-bottom .tech-badge-content {
  bottom: -15px;
}
.tech-badges-extended.tech-badges-left .tech-badge-content {
  left: -15px;
}
.tech-badges-extended.tech-badges-right .tech-badge-content {
  right: -15px;
}
.tech-badges-extended.tech-badges-left:not(button) .tech-badge-content {
  left: auto !important;
}
.tech-badges-extended.tech-badges-right:not(button) .tech-badge-content {
  right: auto !important;
}
.tech-badges-extended.tech-badges-left:is(a) .tech-badge-content {
  left: -15px !important;
}
.tech-badges-extended.tech-badges-right:is(a) .tech-badge-content {
  right: -15px !important;
}
.tech-badges-extended.tech-badges-right .tech-badge-content {
  right: -15px;
}
.tech-badges-extended.tech-badges-overlap.tech-badges-left .tech-badge-content {
  left: -15px;
}
.tech-badges-extended.tech-badges-overlap.tech-badges-right .tech-badge-content {
  right: -15px;
}
.tech-badges-extended .tech-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--tech-secondary-darker);
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  font-weight: 600;
  font-size: 16px;
  padding: 5px 6px;
  box-sizing: content-box;
}
.tech-badges-extended .tech-badge-content {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.tech-badges-extended {
  bottom: 50%;
  border-radius: 40%;
}
:root {
  --scrollbar-bg: rgba(var(--tech-colors-gray-300), 0.5);
  --scrollbar-thumb: rgb(var(--tech-colors-gray-600));
  --scrollbar-thumb-hover: rgb(var(--tech-colors-gray-700));
  --scrollbar-thumb-active: rgb(var(--tech-colors-gray-800));
}
.tech-scrollbars {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg);
  scrollbar-width: thin;
  transition: all 300ms linear;
  scrollbar-gutter: stable both-edges;
}
.tech-scrollbars::-webkit-scrollbar {
  background-color: var(--scrollbar-bg);
  width: 8px;
  height: 8px;
}
.tech-scrollbars::-webkit-scrollbar-track {
  background-color: var(--scrollbar-bg);
}
.tech-scrollbars::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
}
.tech-scrollbars::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}
.tech-scrollbars::-webkit-scrollbar-thumb:active {
  background-color: var(--scrollbar-thumb-active);
}
.tech-scrollbars::-webkit-scrollbar-button {
  display: none;
}
html,
body {
  color: rgb(var(--tech-text-color));
  font: var(--tech-font-weight-normal) var(--tech-base-font-size)/var(--tech-base-line-height) var(--tech-font-family);
  letter-spacing: normal;
}
html h1,
body h1 {
  font: var(--tech-font-weight-normal) var(--tech-font-size-2xl)/calc(var(--tech-font-size-md) * 2) var(--tech-font-family);
  letter-spacing: normal;
  margin: 0 0 var(--tech-spacing_4);
}
html h2,
body h2 {
  font: var(--tech-font-weight-heavy) var(--tech-font-size-xl)/calc(var(--tech-font-size-md) * 2) var(--tech-font-family);
  letter-spacing: normal;
  margin: 0 0 var(--tech-spacing_4);
}
html h3,
body h3 {
  font: var(--tech-font-weight-normal) var(--tech-font-size-md)/var(--tech-font-size-3xl) var(--tech-font-family);
  letter-spacing: normal;
  margin: 0 0 var(--tech-spacing_4);
}
html h4,
body h4 {
  font: var(--tech-font-weight-normal) calc(var(--tech-font-size-md) * 0.93)/var(--tech-font-size-2xl) var(--tech-font-family);
  letter-spacing: normal;
  margin: 0 0 var(--tech-spacing_4);
}
html h5,
body h5 {
  font: var(--tech-font-weight-normal) calc(var(--tech-font-size-md) * 0.83)/var(--tech-font-size-xl) var(--tech-font-family);
  margin: 0 0 var(--tech-spacing_3);
}
html h6,
body h6 {
  font: var(--tech-font-weight-normal) calc(var(--tech-font-size-md) * 0.67)/var(--tech-font-size-xl) var(--tech-font-family);
  margin: 0 0 var(--tech-spacing_3);
}
html p,
body p {
  margin: 0 0 var(--tech-spacing_3);
}

/* angular:styles/global:styles */
