/*!***********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/header.scss ***!
  \***********************************************************************/
.Header {
  position: fixed;
  z-index: 100;

  width: 100%;

  background-color: #fff;
  box-shadow: 0 -20px 20px 20px rgba(0,0,0,.08);

  font-family: 'Calibri', sans-serif;
  color: #3C485A;
}

.Header--visible {
  top: 0;
  transition: top 0.6s ease-out;
}

.Header--hidden {
  top: -100%;
  transition: top 0.6s ease-in;
}

.Header-top {
  background-color: #F7F8F9;
}

.Header-topInner {
  min-height: 45px;
  max-width: 1480px;

  box-sizing: border-box;
  padding: 0 40px;
  margin: auto;
}

@media (max-width: $width-small) {
  .Header-topInner {
    padding: 0 24px;
  }
}

@media (max-width: $width-small) {
  .Header-topInner > div {
    display: none;
  }
}

.AlorSelect.Header-city {
  height: 26px;
}

.AlorSelect.Header-city .AlorSelect-selectedSpanInner {
  color: #3C485A;
}

.AlorSelect.Header-city .AlorSelect-selectedSpanInner:hover,
.AlorSelect.Header-city .AlorSelect-selectedSpanInner:focus {
  color: #3B6DEC;
}

@media (max-width: 1040px) {
  .Header-menuItem--news {
    display: none;
  }
}

@media (max-width: 930px) {
  .Header-menuItem--company {
    display: none;
  }
}

@media (max-width: 560px) {
  .Header-menuItem--right {
    display: none;
  }
}

.Header-list {
  align-items: center;
  gap: 20px;
}

.Header-link--top {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #3C485A;
}

.Header-bottomInner {
  min-height: 85px;
  max-width: 1480px;

  box-sizing: border-box;
  padding: 0 40px;
  margin: auto;
}

@media (max-width: $width-small) {
  .Header-bottomInner {
    min-height: 55px;
  
    padding: 0 24px;
  }
}

.Header-logoLink {
  display: flex;
  gap: 10px;
}

.Header-logoLink:hover {
  border: none;
  margin-bottom: 0;
}

.Header-logoElem {
  width: 240px;
  height: 60px;
  display: block;
  flex-shrink: 0;

  background-image: url(/33cf9e22475ed102ef1a.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: $width-small) {
  .Header-logoElem {
    width: 215px;
    height: 45px;
  }
}

.Header-logoText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.Header-logoTitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  color: #172d4f;
  text-transform: uppercase;
}

.Header-logoSubTitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
  color: #3c485a;
}

@media (max-width: $width-small) {
  .Header-logoText {
    display: none;
  }
}

.Header-navigation {
  gap: 65px;
}

@media (max-width: 900px) {
  .Header-navigation {
    gap: 35px;
  }
}

@media (max-width: $width-small) {
  .Header-navigation > nav {
    display: none;
  }
}

.Header-button--link {
  font-size: 1rem;
}

@media (max-width: $width-small) {
  .Header-button--link {
    display: none;
  }
}

.Header-button--menuMobile {
  display: none;
}

@media (max-width: $width-small) {
  .Header-button--menuMobile {
    display: block;
  }
}

.Header-button--sitemap,
.Header-button--menuMobile {
  width: 26px;
  height: 26px;

  border: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;

  cursor: pointer;
}

.Header-button--sitemap-open,
.Header-button--menuMobile-open {
  background-image: url(/ec3e195ff02bdbae350f.svg);
}

.Header-button--sitemap-close,
.Header-button--menuMobile-close {
  background-image: url(/59a80f3baad7802b9932.svg);
}

.HeaderBlock .HeaderInfo-list {
  align-items: center;
}

.HeaderInfo-button {
  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  border: none;
  outline: none;
  cursor: pointer;
}

.HeaderInfo-button--other {
  height: 19px;
  width: auto;

  gap: 8px;
  background-color: transparent;
  padding: 0;

  color: var(--header-info-icon-setting-color);
}

.HeaderInfo-button--logout {
  color: var(--color-light-secondary-red);
}

.HeaderInfo-buttonIcon {
  width: inherit;
  height: inherit;
  --stroke-color: currentColor;
}

/* App shell header redesign */
.Header {
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  overflow: visible;
  border: 1px solid rgba(17, 19, 21, .08);
  border-radius: 28px;
  background: rgba(251, 251, 250, .8);
  box-shadow: 0 18px 60px rgba(17, 19, 21, .08);
  color: #111315;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.Header--visible {
  top: 16px;
  transition: top .45s ease, opacity .45s ease;
}

.Header--hidden {
  top: -120px;
  opacity: 0;
  transition: top .45s ease, opacity .45s ease;
}

.Header-top {
  display: none;
}

.Header-bottom {
  width: 100%;
}

.Header-bottomInner {
  min-height: 70px;
  max-width: none;
  padding: 10px 12px 10px 18px;
}

.Header-logoElem {
  width: 156px;
  height: 42px;
}

.Header-navigation {
  flex: 1;
  gap: 22px;
}

.HeaderInfo-button--other {
  min-height: 36px;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(17, 19, 21, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: rgba(17, 19, 21, .72);
  font-size: 13px;
}

.HeaderInfo-button--logout {
  color: #c7362e;
}

.HeaderInfo-button:hover {
  background: #fff;
}

@media (max-width: 768px) {
  .Header {
    top: 10px;
    width: min(calc(100% - 20px), 1180px);
    border-radius: 22px;
  }

  .Header--visible {
    top: 10px;
  }

  .Header-bottomInner {
    min-height: 58px;
    padding: 8px 14px;
  }

  .Header-logoElem {
    width: 128px;
    height: 34px;
  }
}

/*!*********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/main.scss ***!
  \*********************************************************************/
#body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.Main {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding-top: 130px;
}

@media (max-width: $width-small) {
  .Main {
    padding-top: 100px;
  }
}

.Main--landing {
  padding-top: 0;
  background: #fbfbfa;
}

.Landing {
  --landing-bg: #fbfbfa;
  --landing-ink: #111315;
  --landing-muted: rgba(17, 19, 21, .64);
  --landing-soft: #f0f1ef;
  --landing-line: rgba(17, 19, 21, .1);
  --landing-green: #1e7d55;
  --landing-blue: #174c8f;

  min-height: 100vh;
  overflow: hidden;
  background: var(--landing-bg);
  color: var(--landing-ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.Landing *,
.Landing *::before,
.Landing *::after {
  box-sizing: border-box;
}

.Landing a {
  color: inherit;
  text-decoration: none;
}

.LandingHeader {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), 1420px);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(17, 19, 21, .08);
  border-radius: 999px;
  background: rgba(251, 251, 250, .78);
  box-shadow: 0 18px 60px rgba(17, 19, 21, .08);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
  animation: landing-header-in .7s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingHeader-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0;
}

.LandingHeader-logo img {
  width: 158px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.LandingHeader-logo strong {
  font-weight: 450;
  color: var(--landing-muted);
}

.LandingHeader-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.LandingHeader-burger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 19, 21, .1);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .16s ease;
}

.LandingHeader-burger:hover {
  background: rgba(17, 19, 21, .06);
}

.LandingHeader-burger svg {
  width: 18px;
  height: 18px;
  stroke: var(--landing-ink);
  stroke-width: 2;
  stroke-linecap: round;
}

.LandingHeader-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(17, 19, 21, .72);
  font-size: 14px;
  line-height: 1;
  transition: background-color .16s ease, color .16s ease;
}

.LandingHeader-nav a:hover {
  background: rgba(17, 19, 21, .06);
  color: var(--landing-ink);
}

.LandingHeader-actions,
.LandingHero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.LandingButton {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 520;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.LandingButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(17, 19, 21, .12);
}

.LandingButton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .28), transparent 80%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.LandingButton:hover::after {
  transform: translateX(120%);
}

.LandingButton--dark {
  background: #08090a;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.LandingButton--dark:visited,
.LandingButton--dark:hover,
.LandingButton--dark:focus {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.LandingButton--dark::after {
  mix-blend-mode: screen;
}

.LandingButton--ghost {
  background: transparent;
  border-color: rgba(17, 19, 21, .1);
}

.LandingButton--light {
  background: #fff;
  border-color: rgba(17, 19, 21, .1);
  color: var(--landing-ink);
}

.LandingButton--large {
  min-height: 48px;
  padding-inline: 24px;
}

.LandingHero {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 32px), 1500px);
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .86fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  margin: 0 auto;
  padding: 130px 0 72px;
}

.LandingHero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 96px -70px 12px;
  background-image:
    url("data:image/svg+xml,%3Csvg width=%27220%27 height=%27150%27 viewBox=%270 0 220 150%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 stroke=%27%23111315%27 stroke-linecap=%27round%27 opacity=%27.07%27%3E%3Cpath d=%27M24 62v42M18 79h12v18H18z%27/%3E%3Cpath d=%27M64 28v78M58 44h12v36H58z%27/%3E%3Cpath d=%27M104 72v46M98 84h12v20H98z%27/%3E%3Cpath d=%27M144 36v64M138 52h12v30h-12z%27/%3E%3Cpath d=%27M184 54v58M178 68h12v22h-12z%27/%3E%3C/g%3E%3Cg stroke=%27%23111315%27 opacity=%27.035%27%3E%3Cpath d=%27M0 30h220M0 80h220M0 130h220M40 0v150M110 0v150M180 0v150%27/%3E%3C/g%3E%3C/svg%3E");
  background-position: center top;
  background-size: 220px 150px;
  mask-image:
    radial-gradient(circle at 38% 38%, rgba(0, 0, 0, .95), transparent 58%),
    linear-gradient(to bottom, transparent, #000 16%, #000 72%, transparent);
  opacity: .75;
  pointer-events: none;
}

.LandingHero-copy,
.LandingTerminal {
  position: relative;
  z-index: 1;
}

.Landing-eyebrow {
  margin: 0 0 18px;
  color: var(--landing-green);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.LandingHero h1,
.LandingSection-heading h2,
.LandingFinal h2 {
  margin: 0;
  color: var(--landing-ink);
  font-weight: 520;
  letter-spacing: 0;
}

.LandingHero h1 {
  max-width: 980px;
  font-size: clamp(58px, 8vw, 128px);
  line-height: .88;
  animation: landing-title-in .9s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingHero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--landing-muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.24;
  animation: landing-fade-up .9s .12s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingHero-actions {
  margin-top: 34px;
  animation: landing-fade-up .9s .2s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingHero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.LandingHero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--landing-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: rgba(17, 19, 21, .72);
  font-size: 13px;
  animation: landing-chip-in .6s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingHero-proof span:nth-child(2) {
  animation-delay: .08s;
}

.LandingHero-proof span:nth-child(3) {
  animation-delay: .16s;
}

.LandingHero-proof span:nth-child(4) {
  animation-delay: .24s;
}

.LandingTerminal {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 18%, rgba(32, 125, 85, .28), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(23, 76, 143, .26), transparent 28%),
    #07090c;
  box-shadow: 0 40px 120px rgba(17, 19, 21, .26), 0 10px 36px rgba(17, 19, 21, .12);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
}

.LandingTerminal:hover {
  box-shadow: 0 46px 140px rgba(17, 19, 21, .3), 0 16px 48px rgba(17, 19, 21, .16);
  transform: translateY(-4px) rotateX(.8deg) rotateY(-.8deg);
}

.LandingTerminal::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, .08), transparent, rgba(30, 125, 85, .16), transparent);
  animation: landing-terminal-glow 12s linear infinite;
  pointer-events: none;
}

.LandingTerminal::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width=%27180%27 height=%27130%27 viewBox=%270 0 180 130%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 stroke=%27%23ffffff%27 stroke-linecap=%27round%27 opacity=%27.075%27%3E%3Cpath d=%27M28 34v52M22 48h12v22H22z%27/%3E%3Cpath d=%27M68 18v78M62 36h12v34H62z%27/%3E%3Cpath d=%27M108 54v54M102 66h12v24h-12z%27/%3E%3Cpath d=%27M148 28v62M142 44h12v26h-12z%27/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 180px 130px, 42px 42px, 42px 42px;
  background-position: 18px 24px, 0 0, 0 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 84%);
  pointer-events: none;
}

.LandingTerminal-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .72);
}

.LandingTerminal-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 22px 0;
}

.LandingTerminal-tab {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .62);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.LandingTerminal-tab:hover,
.LandingTerminal-tab--active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  transform: translateY(-1px);
}

.LandingTerminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.LandingTerminal-top span:nth-child(1) {
  background: #ff5f57;
}

.LandingTerminal-top span:nth-child(2) {
  background: #ffbd2e;
}

.LandingTerminal-top span:nth-child(3) {
  background: #28c840;
}

.LandingTerminal-top strong {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 520;
}

.LandingTerminal pre,
.LandingCode {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 34px;
  color: #eff7ef;
  font-size: clamp(13px, 1.22vw, 17px);
  line-height: 1.65;
  white-space: pre-wrap;
  animation: landing-code-swap .38s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingCode {
  display: grid;
  gap: 0;
}

.LandingCode-line {
  min-height: 1.65em;
  display: block;
}

.LandingCode-token--plain {
  color: #d8e1dd;
}

.LandingCode-token--keyword {
  color: #8bd5ff;
}

.LandingCode-token--property {
  color: #b4f1c9;
}

.LandingCode-token--string {
  color: #ffd28a;
}

.LandingCode-token--number {
  color: #e3b4ff;
}

.LandingCode-token--success {
  color: #69dc9e;
}

.LandingMarketPanel {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  width: min(220px, calc(100% - 48px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: rgba(7, 9, 12, .62);
  color: #fff;
  backdrop-filter: blur(16px);
}

.LandingMarketRow {
  display: grid;
  grid-template-columns: 52px max-content max-content;
  column-gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
}

.LandingMarketRow:first-child {
  border-top: 0;
}

.LandingMarketRow span {
  color: rgba(255, 255, 255, .56);
}

.LandingMarketRow strong {
  font-size: 14px;
  font-weight: 560;
  transition: color .25s ease;
}

.LandingMarketRow em {
  justify-self: start;
  font-style: normal;
}

.LandingMarketRow-up {
  color: #69dc9e;
}

.LandingMarketRow-down {
  color: #ff9f91;
}

.LandingPromptCard {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(20px);
  animation: landing-float 5.4s ease-in-out infinite;
}

.LandingPromptCard span {
  color: rgba(17, 19, 21, .56);
  font-size: 13px;
}

.LandingPromptCard strong {
  display: block;
  margin-top: 8px;
  color: var(--landing-ink);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.LandingPromptCard p {
  margin: 12px 0 0;
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.45;
}

.LandingMarquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px) 0 0 / 88px 100%,
    #090a0b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.LandingMarquee::before,
.LandingMarquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(140px, 14vw);
  pointer-events: none;
}

.LandingMarquee::before {
  left: 0;
  background: linear-gradient(90deg, #090a0b 12%, rgba(9, 10, 11, 0));
}

.LandingMarquee::after {
  right: 0;
  background: linear-gradient(270deg, #090a0b 12%, rgba(9, 10, 11, 0));
}

.LandingMarquee-label {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 3;
  transform: translateY(-50%);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.LandingMarquee-track {
  width: max-content;
  display: flex;
  gap: 0;
  padding: 14px 0 14px 172px;
  animation: landing-marquee 42s linear infinite;
  will-change: transform;
}

.LandingMarquee:hover .LandingMarquee-track {
  animation-play-state: paused;
}

.LandingMarquee-track a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: max-content;
  padding: 7px 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .16s ease, color .16s ease;
}

.LandingMarquee-track a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48d597;
  box-shadow: 0 0 18px rgba(72, 213, 151, .78);
}

.LandingMarquee-track a:hover,
.LandingMarquee-track a:focus-visible {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  outline: none;
}

.LandingMarquee-track em {
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
}

@keyframes landing-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.LandingSection {
  width: min(calc(100% - 32px), 1420px);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 150px) 0;
}

.LandingSection-heading {
  max-width: 880px;
}

.LandingSection-heading h2,
.LandingFinal h2 {
  font-size: clamp(42px, 6vw, 92px);
  line-height: .94;
}

.LandingSection-heading p:not(.Landing-eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--landing-muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.35;
}

.LandingTrust-grid,
.LandingRoles-grid,
.LandingPricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.LandingTrust-grid article,
.LandingRoles-grid article,
.LandingPricing-grid article,
.LandingBento-card {
  border: 1px solid var(--landing-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  animation: landing-fade-up .7s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingTrust-grid article,
.LandingRoles-grid article,
.LandingPricing-grid article {
  position: relative;
  overflow: hidden;
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.LandingTrust-grid article::after,
.LandingRoles-grid article::after,
.LandingPricing-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px 22px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(17, 19, 21, .28);
  transition: transform .2s ease;
}

.LandingTrust-grid article:hover,
.LandingRoles-grid article:hover,
.LandingPricing-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 19, 21, .16);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 70px rgba(17, 19, 21, .08);
}

.LandingTrust-grid article:hover::after,
.LandingRoles-grid article:hover::after,
.LandingPricing-grid article:hover::after {
  transform: scaleX(1);
}

.LandingTrust-grid article,
.LandingRoles-grid article,
.LandingPricing-grid article {
  min-height: 260px;
  padding: 28px;
}

.LandingTrust-grid span,
.LandingBento-card span,
.LandingPricing-grid span {
  color: rgba(17, 19, 21, .46);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.LandingTrust-grid h3,
.LandingRoles-grid h3,
.LandingBento-card h3 {
  margin: 52px 0 0;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 520;
  line-height: 1;
}

.LandingTrust-grid p,
.LandingRoles-grid p,
.LandingBento-card p,
.LandingPricing-grid p {
  margin: 16px 0 0;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.5;
}

.LandingTrust-grid article:nth-child(2),
.LandingRoles-grid article:nth-child(2),
.LandingPricing-grid article:nth-child(2),
.LandingBento-card:nth-child(2) {
  animation-delay: .08s;
}

.LandingTrust-grid article:nth-child(3),
.LandingRoles-grid article:nth-child(3),
.LandingPricing-grid article:nth-child(3),
.LandingBento-card:nth-child(3) {
  animation-delay: .16s;
}

.LandingBento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
  margin-top: 46px;
}

.LandingBento-card {
  position: relative;
  min-height: 300px;
  grid-column: span 4;
  padding: 28px;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}

.LandingBento-card span,
.LandingBento-card h3,
.LandingBento-card p,
.LandingBento-card ol {
  position: relative;
  z-index: 1;
}

.LandingBento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 70px rgba(17, 19, 21, .08);
}

.LandingBento-card--large {
  grid-column: span 8;
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(30, 125, 85, .16), rgba(255, 255, 255, .7) 42%),
    #fff;
}

.LandingBento-card--large::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(30, 125, 85, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 125, 85, .16), transparent 62%);
  animation: landing-orbit 8s ease-in-out infinite;
}

.LandingBento-card strong {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 0;
  pointer-events: none;
  color: rgba(17, 19, 21, .12);
  font-size: clamp(54px, 8vw, 120px);
  font-weight: 650;
  line-height: .8;
}

.LandingBento-card--dark {
  grid-column: span 4;
  background: #08090a;
  color: #fff;
}

.LandingBento-card--dark span,
.LandingBento-card--dark p {
  color: rgba(255, 255, 255, .58);
}

.LandingBento-card--dark h3 {
  color: #fff;
}

.LandingBento-card ol {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.LandingBento-card li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .82);
  animation: landing-list-pulse 2.8s ease-in-out infinite;
}

.LandingBento-card li:nth-child(2) {
  animation-delay: .25s;
}

.LandingBento-card li:nth-child(3) {
  animation-delay: .5s;
}

.LandingBento-card li:nth-child(4) {
  animation-delay: .75s;
}

.LandingRoles {
  border-top: 1px solid var(--landing-line);
}

.LandingPricing {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1420px) / 2));
  background: #fff;
}

.LandingPricing-grid article {
  background: #fbfbfa;
}

.LandingPricing-grid strong {
  display: block;
  margin-top: 38px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 520;
  line-height: 1;
}

.LandingFinal {
  width: min(calc(100% - 32px), 1420px);
  margin: 0 auto;
  padding: clamp(84px, 11vw, 160px) 0;
  text-align: center;
}

.LandingFinal .Landing-eyebrow,
.LandingFinal .LandingHero-actions {
  justify-content: center;
}

.LandingFinal h2 {
  max-width: 1040px;
  margin: 0 auto;
}

.LandingFooter {
  width: 100%;
  margin: 0;
  padding: 44px max(16px, calc((100vw - 1420px) / 2)) 24px;
  border-top: 1px solid var(--landing-line);
  background: #fbfbfa;
  color: var(--landing-ink);
}

.LandingFooter-main {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(300px, .75fr) minmax(300px, 1fr);
  grid-template-areas:
    "brand phone meta"
    "brand legal meta";
  gap: 16px;
}

.LandingFooter-brand,
.LandingFooter-contactCard,
.LandingFooter-meta,
.LandingFooter-menu {
  border: 1px solid var(--landing-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
}

.LandingFooter-brand {
  grid-area: brand;
  display: grid;
  align-content: space-between;
  gap: 32px;
  min-height: 310px;
  padding: 24px;
}

.LandingFooter-logo {
  color: var(--landing-ink);
  font-size: 20px;
  font-weight: 700;
}

.LandingFooter-brand p {
  max-width: 300px;
  margin: 12px 0 0;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.45;
}

.LandingFooter-contactCard {
  grid-area: phone;
  padding: 24px;
}

.LandingFooter-phoneGroup {
  display: grid;
  gap: 6px;
}

.LandingFooter-phoneGroup a {
  width: fit-content;
  color: var(--landing-ink);
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 520;
  line-height: 1.02;
  text-decoration: none;
}

.LandingFooter-phoneGroup span {
  color: var(--landing-muted);
  font-size: 14px;
  font-weight: 600;
}

.LandingFooter-meta {
  grid-area: meta;
  display: grid;
  gap: 0;
  padding: 8px 24px;
}

.LandingFooter-contactRow {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 760px;
  padding: 18px 0;
  border-top: 1px solid var(--landing-line);
}

.LandingFooter-contactRow:first-child {
  border-top: 0;
}

.LandingFooter-contactRow > span {
  color: rgba(17, 19, 21, .46);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.LandingFooter-contactRow p,
.LandingFooter-contactRow a {
  margin: 0;
  color: var(--landing-ink);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.38;
  text-decoration: none;
}

.LandingFooter-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.LandingFooter-menu {
  grid-area: legal;
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 20px 24px;
}

.LandingFooter-socials a,
.LandingFooter-menu a {
  width: fit-content;
  border-bottom: 1px solid rgba(17, 19, 21, .14);
  color: var(--landing-ink);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color .16s ease, opacity .16s ease;
}

.LandingFooter-socials a:hover,
.LandingFooter-menu a:hover {
  border-color: rgba(17, 19, 21, .48);
  opacity: .78;
}

.LandingFooter-bottom {
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--landing-line);
  color: var(--landing-muted);
  font-size: 14px;
  font-weight: 600;
}

.LandingReveal {
  animation: landing-fade-up .8s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingReveal--delay {
  animation-delay: .18s;
}

@keyframes landing-header-in {
  from {
    opacity: 0;
    transform: translate(-50%, -16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes landing-title-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes landing-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-chip-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes landing-code-swap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-terminal-glow {
  to {
    transform: rotate(1turn);
  }
}

@keyframes landing-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes landing-orbit {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-18px, -12px) scale(1.08);
  }
}

@keyframes landing-list-pulse {
  0%, 100% {
    color: rgba(255, 255, 255, .72);
  }
  50% {
    color: rgba(255, 255, 255, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .Landing *,
  .Landing *::before,
  .Landing *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .LandingMarquee-track {
    animation-play-state: paused;
  }

  .LandingButton,
  .LandingBento-card {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .LandingHeader-nav {
    display: none;
  }

  .LandingHeader-burger {
    display: inline-flex;
  }

  .LandingHero {
    grid-template-columns: 1fr;
  }

  .LandingTerminal {
    min-height: 540px;
  }

  .LandingTrust-grid,
  .LandingRoles-grid,
  .LandingPricing-grid {
    grid-template-columns: 1fr;
  }

  .LandingBento-card,
  .LandingBento-card--large,
  .LandingBento-card--dark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .LandingHeader {
    top: 10px;
    width: min(calc(100% - 20px), 1420px);
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 8px 10px 8px 14px;
    border-radius: 999px;
  }

  .LandingHeader-logo img {
    width: 116px;
    height: 30px;
  }

  .LandingHeader-logo {
    min-width: 0;
    gap: 8px;
  }

  .LandingHeader-logo strong {
    display: none;
  }

  .LandingHeader-actions {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .LandingHeader-actions .LandingButton--ghost {
    display: none;
  }

  .LandingHeader-actions .LandingButton--dark {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .LandingHeader-burger {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .LandingHero {
    width: min(calc(100% - 24px), 1500px);
    min-height: auto;
    gap: 34px;
    padding-top: 104px;
    padding-bottom: 46px;
  }

  .LandingHero h1 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: .9;
  }

  .LandingHero-lead {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.28;
  }

  .LandingHero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .LandingHero-actions .LandingButton {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .LandingHero-proof {
    gap: 8px;
    margin-top: 22px;
  }

  .LandingHero-proof span {
    min-height: 32px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .LandingTerminal {
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    transform: none;
  }

  .LandingTerminal:hover {
    transform: none;
  }

  .LandingTerminal-top {
    padding: 16px 18px;
  }

  .LandingTerminal-tabs {
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    padding: 14px 18px 0;
    scrollbar-width: none;
  }

  .LandingTerminal-tabs::-webkit-scrollbar {
    display: none;
  }

  .LandingTerminal-tab {
    flex: 0 0 auto;
    min-height: 32px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .LandingTerminal pre,
  .LandingCode {
    padding: 22px 18px 10px;
    font-size: 12px;
    line-height: 1.55;
    overflow-x: auto;
  }

  .LandingPromptCard {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 16px 16px;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
    animation: none;
    order: 5;
  }

  .LandingPromptCard strong {
    font-size: 28px;
    white-space: normal;
  }

  .LandingPromptCard p {
    font-size: 13px;
  }

  .LandingMarketPanel {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 8px 16px 12px;
    padding: 12px;
    border-radius: 18px;
    order: 4;
  }

  .LandingMarketRow {
    grid-template-columns: 48px max-content max-content;
    column-gap: 8px;
    padding: 8px 0;
  }

  .LandingSection,
  .LandingFinal,
  .LandingFooter {
    width: min(calc(100% - 24px), 1420px);
  }

  .LandingTrust-grid article,
  .LandingRoles-grid article,
  .LandingPricing-grid article,
  .LandingBento-card {
    border-radius: 22px;
    padding: 22px;
  }

  .LandingFooter {
    width: 100%;
    padding-inline: 12px;
  }

  .LandingFooter-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "phone"
      "meta"
      "legal";
    gap: 32px;
  }

  .LandingFooter-contactRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .LandingFooter-socials,
  .LandingFooter-menu {
    gap: 14px 20px;
  }
}

.LandingMobileNav {
  display: none;
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(251, 251, 250, .96);
  backdrop-filter: blur(18px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: landing-fade-up .3s cubic-bezier(.2, .8, .2, 1) both;
}

.LandingMobileNav--open {
  display: flex;
}

.LandingMobileNav a {
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 480;
  color: var(--landing-ink);
  transition: background-color .16s ease;
}

.LandingMobileNav a:hover {
  background: rgba(17, 19, 21, .06);
}

.LandingMobileNav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 19, 21, .1);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.LandingMobileNav-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--landing-ink);
  stroke-width: 2;
  stroke-linecap: round;
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/headerMenu.scss ***!
  \***************************************************************************/
.AlorHeaderMenu {
  display: flex;
  justify-content: flex-end;
  gap: 30px;

  margin: auto;

  color: #444;
}

@media (min-width: 769px) and (max-width: 900px) {
  .AlorHeaderMenu {
    gap: 20px;
  }

  .ButtonsMenu {
    display: none;
  }
}

.AlorHeaderMenu-item {
  position: relative;

  display: flex;
}

.AlorHeaderMenu > li {
  height: 40px;
}

.AlorHeaderMenu-item::before,
.AlorHeaderMenuSub-item::before {
  content: none;
}

.AlorHeaderMenu-link {
  position: relative;

  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 1rem;
  color: inherit;
  text-decoration: none;
}

.AlorHeaderMenu-link:hover,
.AlorHeaderMenu-link--current,
.Header-link:hover,
.Header-link--current {
  color: #3B6DEC;
  text-decoration: none;

  border: none;
  padding: 0;
  margin: 0;
}

.AlorHeaderMenu-link--hasSub::after,
.AlorHeaderMenu-link--moreHasSub::after {
  display: block;
  width: 10px;
  height: 7px;

  background-image: url(/a7f759242018b148c50b.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  margin-top: 0;

  transition: all 0.25s linear;
  content: "";
}

.AlorHeaderMenu-item:hover:not(.AlorHeaderMenu-item--more:hover) > .AlorHeaderMenu-link--hasSub::after,
.AlorHeaderMenu-item--show > .AlorHeaderMenu-link--hasSub::after,
.AlorHeaderMenuSub-item--show > .AlorHeaderMenu-link--hasSub::after {
  transform: rotateZ(180deg);
}

.AlorHeaderMenuSub {
  position: absolute;
  top: 40px;
  left: 50%;

  width: 220px;
  max-height: 0;

  display: none;

  box-sizing: border-box;
  overflow: hidden;
  background: var(--color-light-primary-white-100);
  border-radius: 5px;
  box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.08);

  transform: translateX(-50%);
}

.AlorHeaderMenuSub--active {
  display: block;
}

.AlorHeaderMenu-item:hover:not(.AlorHeaderMenu-item--more:hover) .AlorHeaderMenuSub,
.AlorHeaderMenu-item--show .AlorHeaderMenuSub,
.HeaderMoreMenuSub--show {
  max-height: 999px;

  transition: max-height 1.5s ease;
}

.AlorHeaderMenuSub-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;

  list-style: none;
  padding: 20px;
  margin: 0;
}

.AlorHeaderMenuSub-link {
  font-size: 1rem;
  color: inherit;
  text-decoration: none;
}

.AlorHeaderMenuSub-link:hover, .AlorHeaderMenuSub-link--current {
  color: var(--link-text-hover-color);
}

.HeaderMoreMenuSub {
  height: auto;
  max-height: 0;

  margin-left: 20px;
  overflow: hidden;

  transition: max-height 0.5s ease;
}

.HeaderMoreMenuSub--show {
  max-height: 999px;
}

.HeaderMoreMenuSub-inner .AlorHeaderMenu-item {
  height: auto;
}

/* App shell navigation redesign */
.AlorHeaderMenu {
  align-items: center;
  gap: 4px;
  color: rgba(17, 19, 21, .68);
}

.AlorHeaderMenu > li {
  height: auto;
}

.AlorHeaderMenu-link,
.AlorHeaderMenuSub-link {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: inherit;
  font-size: 14px;
  line-height: 1;
  transition: background-color .16s ease, color .16s ease;
}

.AlorHeaderMenu-link:hover,
.AlorHeaderMenu-link--current,
.Header-link:hover,
.Header-link--current {
  padding: 0 13px;
  border: 0;
  margin: 0;
  background: rgba(17, 19, 21, .06);
  color: #111315;
}

.AlorHeaderMenuSub {
  top: 44px;
  border: 1px solid rgba(17, 19, 21, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 60px rgba(17, 19, 21, .12);
  backdrop-filter: blur(18px);
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/mobileMenu.scss ***!
  \***************************************************************************/
.MobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  background: #fff;
  z-index: 1001;
}

.MobileMenu--show {
  display: flex;
  flex-direction: column;
}

.MobileMenu-top {
  display: flex;
  width: 100%;
  min-height: 45px;
  padding: 0 22px;
  box-sizing: border-box;
  justify-content: flex-end;
  align-items: center;
}

.MobileMenu-close {
  margin-top: 79px;
  margin-right: 2px;
}

.MobileMenu-body {
  position: relative;

  height: 100%;

  display: flex;
  flex-direction: column;

  overflow-y: auto;
}

.MobileMenu-nav {
  width: 100%;
  flex: 1;
  display: flex;

  margin-top: 20px;
}

.MobileMenu-nav > .List {
  width: 100%;
}

.MobileMenu-item {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 49px;
  box-sizing: border-box;
  overflow: hidden;
  
  border-bottom: 1px solid #f5f5f5;

  transition: max-height 0.5s ease;
}

.MobileMenu-item--selected {
  display: block;
  height: auto;
  max-height: 500px;
}

.MobileMenu-link {
  display: inline-block;
  width: 100%;
  height: 49px;
  padding: 12px 24px;
  box-sizing: border-box;

  text-align: left;
  text-decoration: none;
  color: inherit;

  background: none;
  border: none;

  cursor: pointer;
}

.MobileMenu-bottom {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 13px 24px 24px;
  box-sizing: border-box;
}

.MobileMenu-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.MobileMenu-phoneNumber {
  font-family: "Calibri", sans-serif;
  font-size: 1.75rem;
  line-height: 2.75rem;
}

.MobileMenu-phoneHelp {
  position: relative;
  top: -6px;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #9e9e9e;
}

.MobileMenu-buttons {
  margin-top: 10px;
}

.MobileMenuButtonDemo {
  margin-right: 8px;
}

.MobileMenuSub--scroll {
  overflow-y: auto;
}

/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/css/style.scss ***!
  \*****************************************************************************************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-light-secondary-red: #d93025;
  --button-gray-primary-text-disabled-color: #8a8f98;
  --button-gray-primary-bg-disabled-color: #eceff3;
}

.swagger-ui .Main {
  min-height: auto;
}

.parameters-container .table-container {
  height: auto; /* fix intersection .table-container rule from alorbrokesite lib */
}

.av-block-ui-message-container {
  left: 50%;
}

.m20 {
  margin-bottom: 20px;
}

.m40 {
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .m40 {
    margin-bottom: 16px;
  }
}
.LoginForm-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.Header-menu--apidevs {
  max-width: 820px;
}

.Header-menu--fewItems .HeaderMenu {
  justify-content: flex-end;
}

.Header-menu--fewItems .HeaderMenu-item {
  margin-left: 25px;
}

div.swagger-container {
  padding-top: 30px;
}

div.swagger-container .main {
  padding-top: 30px;
}

div.swagger-container div.info {
  margin-top: 5px;
}

.Login-form {
  width: min(650px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: auto;
}

.Login-alert {
  width: min(650px, 100%);
  margin: auto;
}

@media (min-width: 567px) {
  .Login-form > .Login-formSubmit,
  .Login-form > .Field-error {
    grid-column: 1/3;
  }
}
.Login-form--tokens {
  margin: 0;
  margin-bottom: 40px;
}

.Login-form--profile {
  width: min(500px, 100%);
  grid-template-columns: 1fr;
}

.Login-form--profile > .AlorButton,
.Login-form--profile > .Field-error {
  grid-column: auto;
}

.Login-text {
  width: min(650px, 100%);
  margin: auto;
}

.AlorTooltip-content--border.AlorTooltip-password--success {
  color: #388E3C;
}

.AlorTooltip-content--border.AlorTooltip-password--error {
  color: var(--color-light-secondary-red);
}

.Flex--errors {
  gap: 8px 14px;
}

.Form-group--withoutLabel > * {
  margin-top: 42px;
}

@media (max-width: 768px) {
  .Form-group--withoutLabel > * {
    margin-top: 20.63px;
  }
}
@media (max-width: 576px) {
  .Form-group--withoutLabel > * {
    margin-top: 5px;
  }
}
.AlorTableContainer {
  height: auto;
  margin-block: 30px;
}

.AlorButton--small {
  padding-inline: 10px;
}

.MyApps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 25px;
}

@media (max-width: 567px) {
  .MyApps {
    grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  }
}
.MyApps .Box-description,
.MyApps-addForm .Box-description,
.MyApps-boxTitle,
.MyApps-boxTitle > * {
  width: 100%;
}

.MyApps-addForm .Box {
  height: auto;
}

.MyApps-boxTitle > * {
  display: flex;
  justify-content: space-between;
}

.MyApps-boxTitle > * > .Flex {
  display: inline-flex;
}

.MyApps .AlorSvgIcon {
  display: inline-block;
  --stroke-color: currentColor;
}

@media (hover: hover) {
  .MyApps .AlorSvgIcon:hover {
    opacity: 0.6;
  }
}
div[role=button] {
  cursor: pointer;
}

.MyApps-boxTitle div[role=button] {
  margin-top: 5px;
}

.MyApps .DataRowList-title {
  white-space: nowrap;
}

.Box > form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}

@media (max-width: 768px) {
  .Header-topInner,
  .Header-bottomInner {
    padding-inline: 24px;
  }
}
.Footer-inner {
  padding-bottom: 30px;
}

@media (min-width: 1461px) {
  .Footer-inner {
    padding: 60px 0 30px;
  }
}
@media (max-width: 768px) {
  .Footer-inner {
    padding-bottom: 24px;
  }
}
.Footer-socials {
  flex-wrap: wrap;
  gap: 10px 24px;
}

.Footer-navContainer {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 768px) {
  .Footer-navContainer {
    justify-content: flex-start;
  }
}
.Footer-menu {
  width: auto;
  margin-top: 0;
}
.Footer-menu .Footer-menuItem {
  width: auto;
}
@media (max-width: 768px) {
  .Footer-menu .Footer-menuItem {
    display: block;
  }
}

.Button--footer {
  margin-right: 0;
}

.NotFound-code {
  width: 100%;
  display: inline-block;
  font-weight: 700;
  font-size: 250px;
  line-height: 1.2;
  color: #D6DCE4;
  text-align: center;
}

.Container--single {
  flex: 1;
}

.Container--gray .AlrAlert {
  --alert-bg-color: #fff;
}

.AlrAlert--maxWidth-800 {
  max-width: 800px;
}

.AlrAlert--maxWidth-900 {
  max-width: 900px;
}

.Container--gray .AlorButton--blue.AlorButton--disabled:disabled:hover {
  color: var(--button-gray-primary-text-disabled-color);
  background-color: var(--button-gray-primary-bg-disabled-color);
  border-color: var(--button-gray-primary-bg-disabled-color);
}

/* App redesign: local design system replacing the removed ui-kit. */
html {
  min-height: 100%;
  background: #fbfbfa;
}

body {
  margin: 0;
  background: #fbfbfa;
  color: #111315;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: #174c8f;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #111315;
}

.Main:not(.Main--landing) {
  min-height: calc(100vh - 360px);
  padding: 132px 16px 72px;
  background: radial-gradient(circle at 10% 0%, rgba(30, 125, 85, 0.08), transparent 34%), radial-gradient(circle at 92% 6%, rgba(23, 76, 143, 0.08), transparent 30%), #fbfbfa;
}

.Main--status {
  min-height: auto;
  padding-bottom: 44px;
}

.Container {
  width: min(100%, 1180px);
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0 auto;
  animation: app-fade-up 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.Container--gray,
.Container--single {
  background: transparent;
}

.Container-inner {
  width: 100%;
  min-height: 520px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 90px rgba(17, 19, 21, 0.08);
  backdrop-filter: blur(20px);
}

.Container-title {
  max-width: 820px;
  margin: 0 auto 34px;
  color: #111315;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: 0;
}

.Container-title--center {
  text-align: center;
}

.LocalHeader {
  margin: 32px 0 16px;
  color: #111315;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 520;
  line-height: 1;
}

.List {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.List--horizontal {
  display: flex;
}

.List--margin {
  display: grid;
  gap: 10px;
  margin-block: 18px;
}

.Flex {
  min-width: 0;
}

.Login-form {
  width: min(760px, 100%);
  padding: 28px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.Login-form--profile {
  width: min(560px, 100%);
}

.Login-text {
  width: min(760px, 100%);
  margin: 20px auto 0;
  color: rgba(17, 19, 21, 0.64);
  font-size: 15px;
}

.Login-text p {
  margin: 0;
}

.Form-group {
  display: grid;
  gap: 9px;
  color: #111315;
}

.Form-label {
  color: rgba(17, 19, 21, 0.68);
  font-size: 13px;
  font-weight: 620;
}

.Field {
  display: grid;
  gap: 8px;
}

.InputControl {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 14px;
  background: #fbfbfa;
  color: #111315;
  outline: none;
  transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.InputControl::placeholder {
  color: rgba(17, 19, 21, 0.42);
}

.InputControl:focus {
  border-color: rgba(30, 125, 85, 0.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 125, 85, 0.1);
}

.CheckboxControl {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: rgba(17, 19, 21, 0.74);
  font-size: 14px;
  line-height: 1.35;
}

.CheckboxControl input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #111315;
}

.Form-group--withoutLabel > * {
  margin-top: 0;
}

.Field-error {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c7362e;
  font-size: 13px;
  font-weight: 560;
}

.Field-success {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e7d55;
  font-size: 13px;
}

.AlorButton,
.Header-button--link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #08090a;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.AlorButton:hover,
.Header-button--link:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(17, 19, 21, 0.14);
}

.AlorButton--secondary,
.Header-button--link.AlorButton--secondary {
  border-color: rgba(17, 19, 21, 0.1);
  background: #fff;
  color: #111315;
}

.AlorButton--secondary:hover,
.Header-button--link.AlorButton--secondary:hover {
  color: #111315;
}

.AlorButton--small {
  min-height: 34px;
  padding-inline: 12px;
  font-size: 12px;
}

.AlorButton--medium {
  min-height: 44px;
}

.AlorButton--disabled,
.AlorButton:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.AlrAlert {
  padding: 18px 20px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 20px;
  background: #f7f8f6;
  color: rgba(17, 19, 21, 0.78);
  line-height: 1.5;
}

.AlrAlert p {
  margin: 8px 0 0;
}

.AlrAlert--danger {
  border-color: rgba(199, 54, 46, 0.18);
  background: #fff6f5;
}

.AlrAlert--info {
  border-color: rgba(30, 125, 85, 0.16);
  background: #f3fbf7;
}

.Box {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 50px rgba(17, 19, 21, 0.05);
}

.Box-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: #111315;
  font-size: 22px;
  font-weight: 560;
  line-height: 1.15;
}

.Box-description {
  color: rgba(17, 19, 21, 0.7);
}

.Box-buttons,
.Box-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.DataRowList {
  display: grid;
  gap: 0;
  margin: 0;
}

.DataRowList-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 19, 21, 0.08);
}

.DataRowList-row:first-child {
  border-top: 0;
}

.DataRowList-title {
  color: rgba(17, 19, 21, 0.48);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  white-space: normal;
}

.DataRowList dd {
  min-width: 0;
  margin: 0;
  color: #111315;
  word-break: break-word;
}

.PlainTable {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 18px;
  background: #fff;
}

.PlainTable th,
.PlainTable td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(17, 19, 21, 0.08);
  text-align: left;
  vertical-align: top;
}

.PlainTable th {
  color: rgba(17, 19, 21, 0.48);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.PlainTable td {
  color: rgba(17, 19, 21, 0.76);
}

.Preloader {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: rgba(17, 19, 21, 0.56);
}

.Preloader::before {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(17, 19, 21, 0.1);
  border-top-color: #111315;
  border-radius: 50%;
  margin-right: 10px;
  animation: app-spin 0.9s linear infinite;
  content: "";
}

.Footer {
  background: #fbfbfa;
  color: #111315;
}

.Footer-inner {
  width: min(100% - 32px, 1420px);
  display: block;
  margin: 0 auto;
  padding: 44px 0 24px;
  border-top: 1px solid rgba(17, 19, 21, 0.08);
  color: #111315;
}

.Footer--status .Footer-inner {
  width: min(100% - 32px, 1280px);
}

.Footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(300px, 0.75fr) minmax(300px, 1fr);
  grid-template-areas: "brand phone meta" "brand legal meta";
  gap: 16px;
}

.Footer-brand,
.Footer-contactCard,
.Footer-meta,
.Footer-menu {
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.Footer-brand {
  grid-area: brand;
  display: grid;
  align-content: space-between;
  gap: 32px;
  min-height: 310px;
  padding: 24px;
}

.Footer-logo {
  color: #111315;
  font-size: 20px;
  font-weight: 700;
}

.Footer-brand p {
  max-width: 300px;
  margin: 12px 0 0;
  color: rgba(17, 19, 21, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.Footer-contactCard {
  grid-area: phone;
  padding: 24px;
}

.Footer-phoneGroup {
  display: grid;
  gap: 6px;
}

.Footer-phoneGroup a {
  width: fit-content;
  color: #111315;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 520;
  line-height: 1.02;
  text-decoration: none;
}

.Footer-phoneGroup span {
  color: rgba(17, 19, 21, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.Footer-meta {
  grid-area: meta;
  display: grid;
  gap: 0;
  padding: 8px 24px;
}

.Footer-contactRow {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 760px;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 19, 21, 0.08);
}

.Footer-contactRow:first-child {
  border-top: 0;
}

.Footer-contactLabel {
  color: rgba(17, 19, 21, 0.46);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.Footer-contactRow p,
.Footer-contactRow a {
  margin: 0;
  color: #111315;
  font-size: 16px;
  font-weight: 560;
  line-height: 1.38;
  text-decoration: none;
}

.Footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.Footer-menu {
  grid-area: legal;
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 20px 24px;
}

.Footer-socials a,
.Footer-menuItem {
  width: fit-content;
  border-bottom: 1px solid rgba(17, 19, 21, 0.14);
  color: #111315;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.16s ease, opacity 0.16s ease;
}

.Footer-socials a:hover,
.Footer-menuItem:hover {
  border-color: rgba(17, 19, 21, 0.48);
  color: #111315;
  opacity: 0.78;
}

.Footer-bottom {
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 19, 21, 0.1);
  color: rgba(17, 19, 21, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.NotFound-code {
  color: rgba(17, 19, 21, 0.1);
  font-weight: 650;
}

.StatusPage {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  padding: 28px 0 36px;
  color: #111315;
}

.StatusPage-hero {
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 32px;
  background: radial-gradient(circle at 82% 12%, rgba(30, 125, 85, 0.12), transparent 30%), linear-gradient(90deg, rgba(17, 19, 21, 0.035) 1px, transparent 1px) 0 0/72px 72px, #fff;
  box-shadow: 0 24px 80px rgba(17, 19, 21, 0.07);
}

.StatusPage-eyebrow {
  margin: 0 0 18px;
  color: #1e7d55;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.StatusPage-heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: end;
}

.StatusPage h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 520;
  line-height: 0.94;
  letter-spacing: 0;
}

.StatusPage h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 560;
  line-height: 1;
}

.StatusPage-hero p:not(.StatusPage-eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(17, 19, 21, 0.64);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.4;
}

.StatusPage-summary {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 24px;
  background: rgba(251, 251, 250, 0.78);
}

.StatusPage-pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1e7d55;
  box-shadow: 0 0 0 0 rgba(30, 125, 85, 0.28);
  animation: status-pulse 1.9s ease-out infinite;
}

.StatusPage-summary strong {
  font-size: 22px;
  font-weight: 650;
}

.StatusPage-summary em,
.StatusCard-side em {
  color: rgba(17, 19, 21, 0.48);
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}

.StatusPage-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 28px;
  background: #fff;
}

.StatusCard {
  min-width: 0;
  display: grid;
  gap: 16px;
  min-height: 330px;
  padding: 24px;
  border: 0;
  border-right: 1px solid rgba(17, 19, 21, 0.08);
  border-bottom: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 0;
  background: #fff;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.StatusCard:nth-child(2n) {
  border-right: 0;
}

.StatusCard:nth-last-child(-n+2) {
  border-bottom: 0;
}

.StatusCard:hover {
  transform: none;
  background: #fbfbfa;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 21, 0.08);
}

.StatusCard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.StatusCard-top > div {
  min-width: 0;
}

.StatusCard-exchange {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(17, 19, 21, 0.46);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.StatusCard p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(17, 19, 21, 0.62);
  font-size: 16px;
  line-height: 1.45;
}

.StatusCard-bottom a {
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(17, 19, 21, 0.18);
  color: #111315;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.StatusCard-bottom {
  display: grid;
  grid-template-columns: minmax(70px, auto) minmax(72px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.StatusCard-bottom > span {
  color: rgba(17, 19, 21, 0.58);
  font-size: 15px;
  font-weight: 560;
}

.StatusCard-bottom > strong {
  color: rgba(17, 19, 21, 0.72);
  font-size: 15px;
  font-weight: 650;
}

.StatusBadge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 999px;
  background: #f4f5f3;
  color: rgba(17, 19, 21, 0.74);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.StatusBadge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.StatusBadge--ok {
  color: #1e7d55;
}

.StatusBadge--warning {
  color: #9a6a00;
}

.StatusBadge--maintenance {
  color: #174c8f;
}

.StatusPage-history {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 28px;
  background: #fff;
}

.StatusMiniBars {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(90, minmax(3px, 1fr));
  gap: 3px;
  margin-top: 8px;
}

.StatusMiniBars-day,
.StatusLegend i {
  display: block;
  border-radius: 2px;
  background: rgba(30, 125, 85, 0.42);
}

.StatusMiniBars-day {
  height: 38px;
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.StatusMiniBars-day:hover {
  transform: scaleY(1.12);
}

.StatusMiniBars-day--degraded {
  background: #c68c1d;
}

.StatusMiniBars-day--maintenance {
  background: #174c8f;
}

.StatusCard-meta {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: rgba(17, 19, 21, 0.54);
  font-size: 14px;
  font-weight: 520;
}

.StatusCard-meta span,
.StatusCard-meta strong {
  min-width: 0;
}

.StatusCard-meta i {
  height: 1px;
  background: rgba(17, 19, 21, 0.18);
}

.StatusCard-meta strong {
  color: rgba(17, 19, 21, 0.64);
  font-size: 14px;
  font-weight: 560;
  white-space: nowrap;
}

.StatusLegend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
  color: rgba(17, 19, 21, 0.58);
  font-size: 13px;
  font-weight: 650;
}

.StatusLegend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.StatusLegend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@keyframes status-pulse {
  to {
    box-shadow: 0 0 0 12px rgba(30, 125, 85, 0);
  }
}
@media (max-width: 760px) {
  .StatusPage {
    width: min(100% - 20px, 1280px);
    padding-top: 8px;
  }
  .StatusPage-hero,
  .StatusPage-history {
    border-radius: 24px;
    padding: 24px;
  }
  .StatusPage-heroGrid,
  .StatusPage-services {
    grid-template-columns: 1fr;
  }
  .StatusCard {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.08);
    padding: 20px;
  }
  .StatusCard:last-child {
    border-bottom: 0;
  }
  .StatusCard-top,
  .StatusCard-bottom {
    align-items: flex-start;
  }
  .StatusCard-bottom {
    grid-template-columns: 1fr;
  }
  .StatusMiniBars {
    grid-template-columns: repeat(45, minmax(3px, 1fr));
  }
  .StatusMiniBars-day {
    height: 24px;
  }
  .StatusCard-meta {
    grid-template-columns: auto 1fr auto;
  }
  .StatusCard-meta i:nth-of-type(2),
  .StatusCard-meta span:last-child {
    display: none;
  }
  .StatusCard-meta i:nth-of-type(2),
  .StatusCard-meta span:last-child {
    display: none;
  }
}
.AlorSvgIcon {
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 17px;
  line-height: 1;
}

@keyframes app-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes app-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .Main:not(.Main--landing) {
    padding: 98px 12px 48px;
  }
  .Container-inner {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }
  .Login-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .Login-form > .Login-formSubmit,
  .Login-form > .Field-error {
    grid-column: auto;
  }
  .DataRowList-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .PlainTable {
    min-width: 680px;
  }
  .AlorTableContainer {
    overflow-x: auto;
  }
  .Footer-inner {
    width: min(100% - 24px, 1420px);
    padding: 40px 0 24px;
  }
  .Footer-main {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "phone" "meta" "legal";
    gap: 32px;
  }
  .Footer-contactRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .Footer-socials,
  .Footer-menu {
    gap: 14px 20px;
  }
}
