html {
  --background: #f0f0f0;
  --onBackground: #000000;
  --surface: #ffffff;
  --surfaceLayer: #f9f9fa;
  --onSurfaceStrong: #202020;
  --onSurfaceLight: #777b86;
  --onSurfaceVeryLight: #c8ccd3;
  --border: #c8ccd3;
  --success: #299315;
  --onSuccess: #ffffff;
  --error: #ff1744;
  --onError: #ffffff;
  --warning: #e37400;
  --warningLayer: #ed9a42;
  --onWarning: #ffffff;
  --disabled: #777b86;
  --onDisabled: #e6e6e6;
  --unavailable: #f0f0f0;
  --skeleton: #e6e7eb;
  --skeletonGlance: #f5f5f7;
  --skeletonDark: #d5d6db;
  --primary: #874f2b;
  --primaryLight: #f5d5c0;
  --light-green: #2b875f;
  --dark-green: #266f4f;
}
section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.height-105 {
  height: 105vh;
}
section.height-60 {
  height: 60vh;
}
section.height-70 {
  height: 70vh;
}
section.first {
  padding-top: 56px;
}
section.primary-background {
  position: relative;
  overflow: hidden;
  background: radial-gradient(farthest-corner at 0px 0px, #874f2b, #b97c56);
}
section.primary-background .section-content img.top-image {
  margin: -64px 0 -32px;
}
section.primary-background .deco.deco-1 {
  position: absolute;
  left: 80px;
  bottom: 80px;
  transform: rotate(-25deg);
}
section.primary-background .deco.deco-2 {
  position: absolute;
  left: 420px;
  bottom: -80px;
  transform: rotate(15deg);
}
section.primary-background .deco.deco-3 {
  position: absolute;
  right: -40px;
  bottom: 220px;
  transform: rotate(-15deg);
}
section.primary-background .deco.deco-4 {
  position: absolute;
  right: 160px;
  bottom: -40px;
  transform: rotate(10deg);
}
section .section-content {
  width: 1200px;
  /* width: 80vw; */
  max-width: 100%;
  height: 100%;
  padding: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
}
section .section-content .top-container {
  height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
section .section-content .deco.top-deco-1 {
  position: absolute;
  left: -70px;
  bottom: -100px;
  transform: rotate(15deg);
}
section .section-content .deco.top-deco-2 {
  position: absolute;
  right: -70px;
  bottom: -100px;
  transform: rotate(15deg);
}
section .section-content .bottom-container {
  height: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section .section-content.spacing-top {
  padding-top: 96px;
}
section .section-content.spacing-bottom {
  padding-bottom: 96px;
}
section .section-content.split-view {
  flex-direction: row;
}
section .section-content.split-view.inverted {
  flex-direction: row-reverse;
}
section .section-content.split-view > div {
  display: flex;
  flex-direction: column;
  width: 50%;
}
section .section-content.split-view > div img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
section .section-content.split-view > div img.rounded {
  border-radius: 32px;
}
section .section-content.split-view > div img.shadow {
  box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.1);
}
section .section-content.split-view > .spacing-right {
  padding-right: 32px;
}
section .section-content.split-view.inverted > .spacing-right {
  padding-right: 0;
  padding-left: 32px;
}
section .section-content.triple-split-view {
  display: flex;
  justify-content: center;
}
section .section-content.triple-split-view .triple-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section .section-content.triple-split-view .triple-wrapper > div {
  display: flex;
  flex-direction: column;
  width: 30%;
}
section .section-content.triple-split-view .triple-wrapper > div .icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section .section-content h1 {
  font-size: 64px;
  line-height: 76px;
  font-weight: 700;
  color: var(--onSurfaceStrong);
  margin: 0px 0 48px 0;
  max-width: 750px;
}
section .section-content .topsubtitle {
  font-size: 26px;
  line-height: 40px;
  font-weight: 400;
  color: var(--onSurfaceStrong);
  padding: 0 64px;
}
section .section-content .label {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}
section .section-content h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: var(--onSurfaceStrong);
  margin: 0 0 16px 0;
}
section .section-content h2.bigger {
  font-size: 48px;
  line-height: 58px;
}
section .section-content h2.biggest {
  font-size: 64px;
  line-height: 70px;
}
section .section-content h2.color-invert {
  color: var(--surface);
}
section .section-content h2.no-max-width {
  max-width: unset;
}
section .section-content h2.extra-margin-bottom {
  margin-bottom: 40px;
}
section .section-content .subtitle {
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
  color: var(--onSurfaceStrong);
}
section .section-content .subtitle.color-invert {
  color: var(--surfaceLayer);
}
section .section-content .subtitle.limit-width {
  max-width: 700px;
}
section .section-content h3 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  color: var(--onSurfaceStrong);
  margin: 0 0 24px 0;
}

section .section-content video {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid rgba(32, 32, 32, 0.2);
  } 

.text-center {
  text-align: center;
}
section .v-centered {
  justify-content: center;
}
section .h-centered {
  align-items: center;
}
.bottom-virtual-tablet {
  position: absolute;
  bottom: 0;
  border: 24px solid #202020;
  width: 70vw;
  height: 25vh;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin: 0 48px;
  background-color: #202020;
  border-bottom-width: 0;
  overflow: hidden;
}
.bottom-virtual-tablet picture img,
.bottom-virtual-tablet picture source {
  width: 100%;
  height: auto;
}
.bottom-virtual-tablet picture img {
  border-radius: 6px;
}
.bottom-checkmarks {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 80px;
}
.bottom-checkmarks .checkmark {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bottom-checkmarks .checkmark:not(:last-child) {
  margin-right: 40px;
}
.bottom-checkmarks .checkmark svg {
  margin-right: 8px;
}
.bottom-checkmarks .checkmark span {
  color: var(--surface);
  font-size: 20px;
}

.bottom-container > a {
  text-decoration: none;
}
.action-button {
  background-color: var(--light-green);
  text-decoration: none;
  color: var(--surface);
  position: relative;
  border-radius: 8px;
  transform-style: preserve-3d;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 48px;
  padding: 0 16px;
  user-select: none;
  font-size: 18px;
  z-index: 2;
  transition: all 0.16s ease-in-out;
}
.action-button:not(.disabled) {
  cursor: pointer;
}
.action-button::before {
  content: "";
  position: absolute;
  bottom: -4px;
  height: 8px;
  left: 2px;
  right: 2px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: var(--dark-green);
  transform: translateZ(-1px);
  transition: all 0.16s ease-in-out;
}
.action-button:hover:not(.disabled),
.action-button.pressed {
  transform: translateY(2px);
}
.action-button:hover:not(.disabled)::before,
.action-button.pressed::before {
  bottom: -2px;
}

.horizontal-scroll-container {
  position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}

.horizontal-scroll-container div {
  white-space: nowrap;
  animation: hscroll var(--time) linear infinite;
  animation-delay: calc(var(--time)*-1);

  color: #764525;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;
  width: fit-content;
  text-transform: uppercase;

  display: flex;
}

.horizontal-scroll-container div:nth-child(2) {
  animation: hscroll2 var(--time) linear infinite;
  animation-delay: calc(var(--time)/-2);
}

@keyframes hscroll {
  0% {
      transform: translateX(100%);
  }

  100% {
      transform: translateX(-100%);
  }
}

@keyframes hscroll2 {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(-200%);
  }
}


.virtual-tablet {
  border: 24px solid #202020;
  background-color: #202020 !important;
  width: 70vw;
  height: 45vw;
  max-width: 1200px;
  max-height: 770px;
  border-radius: 16px;
  margin: 0 48px;
  background-color: var(--primaryLight);
  position: relative;
  overflow: hidden;
}
.virtual-tablet-shadow {
  position: absolute;
  height: 160px;
  left: -120px;
  right: -120px;
  bottom: -80px;
  background: var(--skeleton);
  border-radius: 50%;
  z-index: -1;
}
.virtual-tablet .mobile-fallback {
  display: none;
}
.virtual-tablet .order-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: #f5d5c0;
}
.virtual-tablet .order-wrapper .new-order {
  width: 400px;
  /* height: 240px; */
  height: 160px;
  background-color: #fff;
  box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  /* padding: 32px; */
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 0;
}
.virtual-tablet .order-wrapper .new-order .order-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 400px;
}
.virtual-tablet .order-wrapper .new-order .order-top .icon-circle {
  min-width: 80px;
  height: 80px;
  background-color: var(--primary);
  margin: 0 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.virtual-tablet .order-wrapper .new-order .order-top .icon-circle span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background-color: var(--error);
  color: var(--onError);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.virtual-tablet .order-wrapper .new-order .order-top > span {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: var(--onSurfaceStrong);
}
.virtual-tablet .order-wrapper .order-overview {
  width: 700px;
  /* height: 500px; */
  height: 460px;
  background-color: var(--surface);
  box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  position: absolute;
  z-index: 2;
  opacity: 0;
}
.virtual-tablet .order-wrapper .order-overview .top {
  display: flex;
  flex-direction: row;
  border-bottom: 1.5px solid var(--border);
  padding: 32px;
}
.virtual-tablet .order-wrapper .order-overview .top .title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 600;
  color: var(--onSurfaceStrong);
  display: block;
  margin-bottom: 32px;
}
.virtual-tablet .order-wrapper .order-overview .top .info-vars {
  display: flex;
  flex-direction: row;
}
.virtual-tablet .order-wrapper .order-overview .top .info-vars .variable-display {
  display: flex;
  flex-direction: column;
  margin-right: 48px;
}
.virtual-tablet .order-wrapper .order-overview .top .info-vars .variable-display .small {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: var(--onSurfaceStrong);
}
.virtual-tablet .order-wrapper .order-overview .top .info-vars .variable-display .bold {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: var(--onSurfaceStrong);
}
.virtual-tablet .order-wrapper .order-overview .top .top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 2;
}
.virtual-tablet .order-wrapper .order-overview .top .top-right .info-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 205px;
  position: absolute;
  top: 40px;
}
.virtual-tablet .order-wrapper .order-overview .top .top-right .info-text span {
  color: var(--success);
  font-size: 18px;
  line-height: 20px;
  margin-left: 8px;
}
.virtual-tablet .order-wrapper .order-overview .top .pu-code-wrapper {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 280px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
}
.virtual-tablet .order-wrapper .order-overview .top .pu-code-wrapper .pu-code-container {
  background-color: var(--skeleton);
  border: 2px solid var(--onSurfaceStrong);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width: 220px;
}
.virtual-tablet .order-wrapper .order-overview .top .pu-code-wrapper .pu-code-container .desc {
  font-size: 20px;
}
.virtual-tablet .order-wrapper .order-overview .top .pu-code-wrapper .pu-code-container .code {
  font-size: 52px;
  line-height: 56px;
  font-weight: 600;
}
.virtual-tablet .order-wrapper .order-overview .product-list {
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.virtual-tablet .order-wrapper .order-overview .product-list .product {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.virtual-tablet .order-wrapper .order-overview .product-list .product:not(:last-child) {
  margin-bottom: 24px;
}
.virtual-tablet .order-wrapper .order-overview .product-list .product img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin-right: 32px;
}
.virtual-tablet .order-wrapper .order-overview .product-list .product .name {
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
}
.virtual-tablet .order-wrapper .order-overview .arrow-container {
  position: absolute;
  right: -136px;
  top: 32px;
  width: 120px;
}
.virtual-tablet .order-wrapper .order-pickup-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 3;
}
.virtual-tablet .order-wrapper .order-pickup-container .order {
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 350px;
  border-radius: 16px;
  background-color: var(--surface);
  box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.virtual-tablet .order-wrapper .order-pickup-container .order:not(:last-child) {
  margin-right: 24px;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header {
  flex-grow: 2;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-status {
  border-top: 1px solid var(--border);
  height: 64px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 16px;
  background-color: var(--warning);
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-status.completed {
  background-color: var(--success);
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-status:not(.completed) .waiting {
  display: block;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-status:not(.completed) .success {
  display: none;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-status.completed .waiting {
  display: none;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-status.completed .success {
  display: block;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-status .timelabel {
  margin-left: 16px;
  color: var(--onSuccess);
  font-size: 20px;
  line-height: 22px;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header {
  display: flex;
  flex-direction: column;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header .order-header-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header .order-header-top .icon-circle {
  height: 64px;
  width: 64px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 16px;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header .order-header-top span {
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  color: var(--onSurfaceStrong);
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header .code-label {
  margin: 12px 20px 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header .order-header-code {
  background-color: var(--skeleton);
  border-radius: 8px;
  margin: 12px 20px 32px 20px;
  height: 100%;
  border: 1.5px solid var(--onSurfaceStrong);
  display: flex;
  justify-content: center;
  align-items: center;
}
.virtual-tablet .order-wrapper .order-pickup-container .order .order-header .order-header-code span {
  font-size: 52px;
  line-height: 56px;
  font-weight: 600;
}
.virtual-tablet .order-wrapper .order-stats {
  display: flex;
  flex-direction: column;
  width: calc(640px + 64px + 32px);
  height: 450px;
  background-color: var(--surface);
  box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  position: absolute;
  z-index: 4;
  opacity: 0;
}
.virtual-tablet .order-wrapper .order-stats .toptitle {
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  color: var(--onSurfaceStrong);
  margin-bottom: 20px;
  display: block;
}
.virtual-tablet .order-wrapper .order-stats .graph-container {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.virtual-tablet .order-wrapper .order-stats .graph-container .graph-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 100%;
}
.virtual-tablet .order-wrapper .order-stats .graph-container .graph-wrapper:first-child {
  margin-right: 32px;
}
/* .virtual-tablet .order-wrapper .order-stats .graph-container .graph-wrapper svg.graph { */
  /* display: block; */
  /* flex-grow: 2; */
  /* width: 100%; */
  /* height: 100%; */
  /* background-color: royalblue; */
/* } */
.virtual-tablet .order-wrapper .order-stats .graph-container .graph-wrapper .graph-text {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  color: var(--onSurfaceStrong);
  margin: 52px 0 0;
}

@media (max-width: 850px) {
  section .section-content {
    width: 100%;
  }
  section.height-105 {
    height: 100vh;
  }
  section.height-60,
  section.height-70 {
    height: auto;
  }
  section:not(.last) {
    margin-bottom: 120px;
  }
  section .deco {
    display: none;
  }
  section.primary-background {
    padding: 56px 0;
  }
  section .section-content.spacing-top {
    padding-top: 16px;
  }
  section .section-content.spacing-bottom {
    padding-bottom: 16px;
  }
  section .section-content h1 {
    font-size: 36px;
    line-height: 44px;
    margin: 24px 0 24px 0;
  }
  section .section-content .label {
    font-size: 16px;
    line-height: 20px;
  }
  section .section-content h2 {
    font-size: 32px;
    line-height: 38px;
  }
  section .section-content h2.bigger {
    font-size: 36px;
    line-height: 40px;
  }
  section .section-content h2.biggest {
    font-size: 36px;
    line-height: 40px;
  }
  section .section-content .topsubtitle {
    font-size: 18px;
    line-height: 24px;
    padding: 0;
  }
  section .section-content .subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  section .section-content h3 {
    font-size: 26px;
    line-height: 30px;
  }
  section .section-content.split-view,
  section .section-content.split-view.inverted {
    flex-direction: column;
  }
  section .section-content.split-view > div {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  section .section-content.split-view > .spacing-right,
  section .section-content.split-view.inverted > .spacing-right {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 32px;
  }
  section .section-content.triple-split-view .triple-wrapper {
    flex-direction: column;
  }
  section .section-content.triple-split-view .triple-wrapper > div {
    width: 100%;
    margin-bottom: 48px;
    align-items: center;
    text-align: center;
  }
  .virtual-tablet {
    position: relative;
    /* width: 70vw;
    height: 45vw; */
    width: 300px;
    height: 205px;
    border-width: 12px;
    margin: 32px 24px 0;
  }
  .virtual-tablet-shadow {
    display: none;
  }
  .virtual-tablet .mobile-fallback {
    display: block;
    width: 100%;
    object-fit: contain;
  }
  .virtual-tablet > *:not(.mobile-fallback) {
    display: none;
  }
  section .section-content .bottom-container {
    height: unset;
    margin-bottom: 64px;
  }
  .bottom-checkmarks {
    flex-direction: column;
    height: unset;
  }
  .bottom-virtual-tablet {
    display: none;
  }
}
