body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  font-family: Figtree;
}

.d-none {
  display: none !important;
}

#app {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: min(100vh, 1080px);
  min-width: min(100vw, 1920px);
}

#app .wrap {
  position: relative;
  max-width: 1920px;
  max-height: 1080px;
  margin: 0 auto;
}

#app .button {
  display: flex;
  min-width: 56px;
  padding: 16px 32px;
  align-items: center;
  gap: 12px;
  border: 2px solid #177ABE;
  border-radius: 28px;
  background: #177ABE;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

#app .button:hover {
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  border-color: rgba(255, 255, 255, 0.32);
}

#app .button:not(:hover) {
  transition-timing-function: ease-in;
  transition-duration: 0.4s;
}

#app .button img {
  width: unset;
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {
  #app .button {
    padding: 12px 24px;
    gap: 8px;
  }
}

#app .control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 16px;
  background-color: rgba(23, 122, 190, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

#app .control:hover {
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  border-color: #177ABE;
}

#app .control:not(:hover) {
  transition-timing-function: ease-in;
  transition-duration: 0.4s;
}

#app .control.pressed {
  border: 2px solid rgba(23, 122, 190, 0.16);
  border-color: #177ABE;
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {
  #app .control {
    padding: 12px;
  }
}

#app .ordering {
  display: flex;
  align-items: center;
  gap: 16px;
}

#app .ordering .pagination {
  color: #FFFFFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#app .switch {
  display: flex;
  width: 56px;
  height: 24px;
  padding: 4px;
  align-items: center;
  gap: 4px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 122, 190, 0.08);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: 0.2s ease-in;
  position: relative;
}

#app .switch:hover {
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  border-color: #177ABE;
}

#app .switch:not(:hover) {
  transition-timing-function: ease-in;
  transition-duration: 0.4s;
}

#app .switch svg {
  position: absolute;
  left: 4px;
  transition: 0.5s ease-in;
}

#app .switch.clicked {
  background: #177ABE;
}

#app .switch.clicked svg {
  left: 37px;
}

#app .switch.clicked svg path {
  fill-opacity: 1;
}

#app .zoom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 122, 190, 0.08);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

#app .zoom .in,
#app .zoom .out {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 28px;
}

#app .zoom .in.disabled,
#app .zoom .out.disabled {
  cursor: auto;
}

#app .zoom .in:hover,
#app .zoom .out:hover {
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  background: rgba(23, 122, 190, 0.16);
}

#app .zoom .in:not(:hover),
#app .zoom .out:not(:hover) {
  transition-timing-function: ease-in;
  transition-duration: 0.4s;
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {

  #app .zoom .in,
  #app .zoom .out {
    padding: 12px;
  }
}

#app .zoom:hover {
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  border-color: #177ABE;
}

#app .zoom:not(:hover) {
  transition-timing-function: ease-in;
  transition-duration: 0.4s;
}

#app .anime {
  transition-delay: 0.3s;
  transition-timing-function: ease-out;
  transition-duration: 0.8s;
  transition-property: transform, opacity;
  transform: translateY(16px);
  opacity: 0;
}

#app .anime.active {
  transform: translateY(0);
  opacity: 1;
}

#app .scale {
  transform: scale(1);
  transition: transform 1s ease-in;
}

#app img,
#app video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: opacity;
  filter: brightness(0.85);
}

#app .rotate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  background-color: rgba(0, 0, 0, 0.56);
  z-index: 13;
  color: #FFFFFF;
  font-size: 26.667px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

#app .rotate .text {
  max-width: 350px;
}

#app .overlay {
  background: radial-gradient(46.81% 59.63% at 50% 50%, rgba(15, 44, 74, 0) 53.65%, rgba(15, 44, 74, 0.5) 100%), #D9D9D9;
  stroke-width: 1px;
  stroke: var(--brand-midnight-blue-l-2, #177ABE);
  mix-blend-mode: multiply;
  position: absolute;
  width: 100%;
  height: 100%;
}

#app .bar {
  position: absolute;
  right: 0;
  left: 0;
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

@media screen and (min-width: 801px) and (min-height: 661px) and (max-height: 821px) {
  #app .bar {
    padding: 16px 56px;
  }
}

@media screen and (min-width: 801px) and (min-height: 750px) and (max-height: 821px) {
  #app .bar {
    padding: 24px 56px;
  }
}

#app .bar.top {
  z-index: 4;
  top: 0;
}

#app .bar.top .home {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

#app .bar.bottom {
  z-index: 3;
  bottom: 0;
}

#app .bar.bottom.right {
  justify-content: end;
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {
  #app .bar {
    padding: 16px 28px;
  }

  #app .bar.top .home {
    gap: 12px;
    font-size: 15px;
    line-height: 20px;
  }
}

#app .diagramTrans {
  opacity: 1;
  transition: opacity 1s ease-in;
}

#app .diagramTrans.vanish {
  opacity: 0;
}

#app .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.5s ease-in-out;
}

#app .container.middle .box {
  align-items: center;
  gap: 56px;
}

#app .container.middle .box .text {
  max-width: 650px;
  text-align: center;
}

#app .container.start {
  left: 56px;
  transform: translateY(-50%);
}

#app .container.start .box .text {
  max-width: 450px;
}

#app .container.start .box .subText {
  margin-top: 24px;
}

#app .container.start .box .button {
  margin-top: 48px;
}

#app .container .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

#app .container .box .text {
  font-size: 56px;
  font-style: normal;
  font-weight: 800;
  line-height: 56px;
}

#app .container .box .subText {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {
  #app .container.middle .box {
    gap: 28px;
  }

  #app .container.start {
    left: 28px;
  }

  #app .container.start .box {
    max-width: 230px;
  }

  #app .container.start .box .subText {
    margin-top: 16px;
  }

  #app .container.start .box .button {
    margin-top: 24px;
  }

  #app .container .box .text {
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
  }

  #app .container .box .subText {
    font-size: 15px;
    line-height: 20px;
  }
}

#app .diagram {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

#app .diagram .shadow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%) scale(1);
  -o-object-fit: unset;
  object-fit: unset;
}

#app .diagram .story {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in, left 1s ease-in, top 1s ease-in;
}

#app .diagram .story .hover {
  cursor: pointer;
}

#app .diagram .float {
  opacity: 0;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}

#app .diagram .float:not(:hover) {
  transition-timing-function: ease-in;
  transition-duration: 0.4s;
}

#app .diagram .float.pick {
  opacity: 1;
}

#app .diagram .float.noTransition {
  transition: none;
}

#app .diagram #start {
  z-index: 2;
}

#app .diagram #start #a {
  display: none;
}

#app .diagram .start,
#app .diagram .promotions,
#app .diagram .inventory,
#app .diagram .planning,
#app .diagram .operations {
  z-index: 2;
}

#app .diagram .start #b,
#app .diagram .promotions #b,
#app .diagram .inventory #b,
#app .diagram .planning #b,
#app .diagram .operations #b {
  display: none;
}

#app .diagram .chain {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 427px;
  padding: 28px 0 56px 0;
  color: #FFFFFF;
  z-index: 3;
}

#app .diagram .chain .text {
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

#app .diagram .chain .bullets {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#app .diagram .chain .content {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 16px;
  padding: 24px 0px;
  align-self: stretch;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

#app .diagram .chain .content .data {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
}

#app .diagram .chain .content .data .input {
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

#app .diagram .chain .content .data .desc {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

#app .diagram .chain .ordering {
  margin-top: 48px;
}

#app .diagram .chain.right {
  right: 56px;
}

#app .diagram .chain.left {
  left: 56px;
}

#app .diagram.show {
  opacity: 1;
}

#app .diagram.choose .shadow {
  transform: translateY(-50%) scale(2) !important;
  transition: transform 1s ease-in, left 1s ease-in, top 1s ease-in;
}

#app .diagram.choose .scale {
  transform: translateY(-50%) scale(2) !important;
}

#app .diagram.choose #startPF {
  transform: translateY(-50%) scale(2) translateX(0.6%) !important;
}

#app .diagram.choose .mid {
  z-index: 1;
}

@media screen and (max-width: 800px),
screen and (max-height: 700px) {
  #app .diagram .chain {
    max-width: 350px;
    padding: 16px 0;
  }

  #app .diagram .chain .text {
    font-size: 26.667px;
    line-height: 32px;
  }

  #app .diagram .chain .mid {
    display: flex;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }

  #app .diagram .chain .bullets {
    margin-top: 24px;
    row-gap: 16px;
    font-size: 12px;
    line-height: 16px;
  }

  #app .diagram .chain .content {
    margin-top: 24px;
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0px;
  }

  #app .diagram .chain .content .data {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  #app .diagram .chain .content .data .input {
    font-size: 16.667px;
    line-height: 20px;
  }

  #app .diagram .chain .ordering {
    margin-top: 24px;
  }

  #app .diagram .chain.right {
    right: 28px;
  }

  #app .diagram .chain.right .ordering {
    justify-content: end;
  }

  #app .diagram .chain.left {
    left: 28px;
  }
}

#app .tag {
  position: absolute;
  top: 0 !important;
  right: 56px;
  bottom: 0;
  left: 56px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease-in;
}

#app .tag img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center 35%;
  object-position: center 35%;
  transition: width 0.5s ease-in;
}

#app .tag.enabled {
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {
  #app .tag {
    right: 28px;
    left: 28px !important;
  }

  #app .tag img {
    -o-object-position: center 45%;
    object-position: center 45%;
  }
}

#app .statistics {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 152px 0px 56px 0px;
  width: 84px;
  flex-shrink: 0;
  border-radius: 0px 32px 32px 0px;
  background: rgba(15, 44, 74, 0.32);
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  z-index: 2;
  transition: all 0.5s ease-in;
}

#app .statistics .side {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translate(25%, -50%) rotate(90deg);
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}

#app .statistics .side div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

#app .statistics .side div svg {
  width: unset;
  transform: rotate(-90deg);
}

#app .statistics .side:hover {
  color: #87BEEB;
}

#app .statistics .side:hover svg path {
  stroke: #87BEEB;
}

#app .statistics .data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
  height: 100%;
  opacity: 0;
}

#app .statistics .data .upper {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  color: #FFFFFF;
  pointer-events: none;
}

#app .statistics .data .upper .left {
  width: 282px;
}

@media screen and (min-width: 801px) and (min-height: 661px) and (max-height: 821px) {
  #app .statistics .data .upper .left {
    width: 300px;
  }
}

#app .statistics .data .upper .left .text {
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

#app .statistics .data .upper .left .subText {
  margin-top: 24px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#app .statistics .data .upper .left .subText p {
  margin: 10px 0 0;
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {
  #app .statistics .data .upper .left .subText p {
    margin: 5px 0 0;
  }
}

#app .statistics .data .upper .left .subText p:first-child {
  margin: 0;
}

#app .statistics .data .upper .right {
  min-width: 234px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
}

@media screen and (min-width: 801px) and (min-height: 661px) and (max-height: 821px) {
  #app .statistics .data .upper .right {
    padding: 12px 24px;
    gap: 10px;
  }
}

@media screen and (min-width: 801px) and (min-height: 750px) and (max-height: 821px) {
  #app .statistics .data .upper .right {
    padding: 24px;
    gap: 16px;
  }
}

#app .statistics .data .upper .right .percentage {
  font-size: 33.333px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

#app .statistics .data .upper .right .description {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

#app .statistics .data .lower {
  display: flex;
  align-items: center;
  gap: 24px;
}

#app .statistics.expanded {
  padding: 152px 88px 56px 56px;
  width: 20%;
  z-index: 3;
}

@media screen and (min-width: 801px) and (min-height: 661px) and (max-height: 821px) {
  #app .statistics.expanded {
    padding: 90px 88px 56px 56px;
  }
}

@media screen and (min-width: 801px) and (min-height: 750px) and (max-height: 821px) {
  #app .statistics.expanded {
    padding: 110px 88px 56px 56px;
  }
}

#app .statistics.expanded .data {
  transition: opacity 1s ease-in;
}

#app .statistics.percent {
  width: 37%;
  max-width: 720px;
}

#app .statistics.percent .data .right {
  opacity: 1;
  transition: opacity 1.5s ease-in;
}

@media screen and (max-width: 1600px) {
  #app .statistics.expanded {
    width: 27%;
    min-width: 300px;
  }

  #app .statistics.percent {
    width: 55%;
    min-width: 620px;
  }
}

@media screen and (min-width: 801px) and (min-height: 661px) and (max-height: 821px) {
  #app .statistics.expanded {
    min-width: 300px;
  }

  #app .statistics.percent {
    min-width: 660px;
  }
}

@media screen and (max-width: 800px),
screen and (max-height: 660px) {
  #app .statistics {
    padding: 28px 16px;
    width: 20px;
    max-width: 100%;
  }

  #app .statistics .side {
    right: 10px;
    font-size: 15px;
    line-height: 20px;
  }

  #app .statistics .side div {
    gap: 8px;
  }

  #app .statistics .data {
    justify-content: unset;
  }

  #app .statistics .data .upper {
    gap: 12px;
  }

  #app .statistics .data .upper .left .text {
    font-size: 16.667px;
    line-height: 20px;
  }

  #app .statistics .data .upper .left .subText {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
  }

  #app .statistics .data .upper .right {
    max-width: 242px;
    padding: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  #app .statistics .data .upper .right .row {
    width: calc(50% - 8px);
  }

  #app .statistics .data .upper .right .row .percentage {
    font-size: 26.667px;
    line-height: 32px;
  }

  #app .statistics .data .lower {
    gap: 16px;
  }

  #app .statistics.expanded {
    padding: 75px 76px 28px 28px;
    width: 30%;
  }

  #app .statistics.percent {
    width: calc(100% - 105px);
    max-width: unset;
    min-width: unset;
  }

  #app .statistics.percent .data .right {
    opacity: 1;
  }
}

#app .bottom .label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FFFFFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#app .promotions .container .subText,
#app .operations .container .subText {
  max-width: 400px;
}

#app .inventory .container .subText {
  max-width: 430px;
}

/*# sourceMappingURL=style.css.map */