:root {
  --browser-context: vh(16);
}

/*********************************** Reset Styles */
/**************************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  min-height: 100vh;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

/**************************************************/
/*********************************** Reset Styles */
/*///////////////////////////////////*/
/****** ViewPort Transform Functions */
/****** ViewPort Transform Functions */
/*///////////////////////////////////*/
/*/////////////////////////////////////////////////*/
/****************************************** Colors */
.c\:blue {
  color: #006DFF;
}

.c\:green {
  color: #CCF420;
}

.c\:green-light {
  color: #CCF31E;
}

.c\:green-trans {
  color: rgba(204, 243, 30, 0.25);
}

.c\:black {
  color: #000000;
}

.c\:white {
  color: #FFFFFF;
}

/****************************************** Colors */
/*/////////////////////////////////////////////////*/
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

@keyframes rotateAround {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes bounceUpDown {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-80%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes bounceUpDownSm {
  0% {
    transform: translateY(50%);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(50%);
  }
}
/*/////////////////////////////////////////////////*/
/******************************************** Body */
body {
  min-width: 20rem;
  font-family: "TT Travels Text", Arial, sans-serif;
  font-size: var(--browser-context);
}
@media (min-aspect-ratio: 1/1) and (orientation: landscape) {
  body {
    --browser-context: 1vh;
  }
}
@media (min-aspect-ratio: 4/3) and (orientation: landscape) {
  body {
    --browser-context: 1.2vh;
  }
}
@media (min-aspect-ratio: 16/9) and (orientation: landscape) {
  body {
    --browser-context: 1.35vh;
  }
}
@media (max-aspect-ratio: 1/1) and (orientation: portrait) {
  body {
    --browser-context: 1vh;
  }
}
@media (max-aspect-ratio: 2/3) and (orientation: portrait) {
  body {
    --browser-context: 0.9vh;
  }
}
@media (max-aspect-ratio: 9/16) and (orientation: portrait) {
  body {
    --browser-context: 0.8vh;
  }
}

/******************************************** Body */
/*/////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////*/
/******************************************** Link */
a {
  color: #FFFFFF;
  transition: color 0.25s ease;
  text-decoration: underline;
}
a:hover {
  color: white;
  text-decoration: none;
}
a:active {
  color: rgb(242.25, 242.25, 242.25);
}

/******************************************** Link */
/*/////////////////////////////////////////////////*/
/*********************************** Core Section */
/**************************************************/
.landing {
  overflow: hidden;
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100vh;
}
.landing > * {
  height: 100%;
}

/**************************************************/
/*********************************** Core Section */
.fs\:16 {
  font-family: "TT Travels Text", Arial, sans-serif;
  font-size: 2.9375em;
  font-weight: 500;
  line-height: 1.1276595745em;
  letter-spacing: 0;
}

.fs\:18 {
  font-family: "TT Travels Text", Arial, sans-serif;
  font-size: 3.3125em;
  font-weight: 500;
  line-height: 1.1320754717em;
  letter-spacing: 0;
}

.fs\:20 {
  font-family: "TT Travels Text", Arial, sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: 0;
}

.fs\:24 {
  font-family: "TT Travels Text", Arial, sans-serif;
  font-size: 4.375em;
  font-weight: 500;
  line-height: 1.1428571429em;
  letter-spacing: 0;
}

/*********************************** Font Size 16 */
/**************************************************/
/**************************************************/
/*********************************** Font Size 16 */
/*********************************** Font Size 18 */
/**************************************************/
/**************************************************/
/*********************************** Font Size 18 */
/*********************************** Font Size 20 */
/**************************************************/
/**************************************************/
/*********************************** Font Size 20 */
/*********************************** Font Size 24 */
/**************************************************/
/**************************************************/
/*********************************** Font Size 24 */
.fw\:3 {
  font-weight: 300;
}

.fw\:4 {
  font-weight: 400;
}

.fw\:5 {
  font-weight: 500;
}

.fw\:6 {
  font-weight: 600;
}

.fw\:7 {
  font-weight: 700;
}

.fw\:8 {
  font-weight: 800;
}

.fw\:9 {
  font-weight: 900;
}

.t\:upper {
  text-transform: uppercase;
}

.t\:lower {
  text-transform: lowercase;
}

/********************************** Welcome Block */
/**************************************************/
.welcome {
  position: relative;
  display: block;
}
.welcome:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url("/images/landing/top_sellers_25/welcome_bg.png");
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.welcome__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 9.0625em 4.0625em 0em;
}
.welcome__logo {
  display: block;
}
.welcome__fig {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 31.25em;
  width: 100%;
}
.welcome__img {
  width: 100%;
}
.welcome__title {
  display: block;
  padding: 5em 0em 0em;
}
.welcome__desc {
  display: block;
  padding: 1.25em 0em 0em;
}
.welcome__btn {
  display: block;
  padding: 4.375em 0em 0em;
}
.welcome__info {
  display: block;
  padding: 3.875em 0em 0em;
  margin: 0;
}
.welcome__list {
  display: block;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.welcome__item {
  display: inline-block;
}

/**************************************************/
/********************************** Welcome Block */
@media (orientation: landscape) {
  .welcome {
    --ts-w-gap: 20px;
    display: flex;
    align-items: center;
  }
  .welcome:before {
    rotate: 180deg;
  }
  .welcome__inner {
    flex-wrap: wrap;
    flex-direction: row;
    padding: 1.25em 4.0625em;
    gap: 0 var(--ts-w-gap);
  }
  .welcome__logo {
    flex: 0 0 100%;
  }
  .welcome__about {
    flex: 0 0 60%;
  }
  .welcome__title {
    padding: 2.5em 0em 0em;
  }
}

/*********************************** Camera Block */
/**************************************************/
.camera {
  display: block;
  padding: 0.9375em 0.9375em 2.5em;
  background-image: url("/images/landing/top_sellers_25/camera_bg.png");
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.camera__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0em 0em 6.25em;
  height: 100%;
}
.camera__screen {
  position: relative;
}
.camera__video {
  overflow: hidden;
  display: block;
  width: 100%;
  border-radius: 30px;
}
.camera__video--front {
  transform: scaleX(-1);
}
.camera__canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.camera__controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}
@media (orientation: landscape) {
  .camera {
    padding: 0.9375rem;
  }
  .camera__inner {
    padding: 0;
    justify-content: center;
  }
  .camera__screen {
    height: calc(100vh - 1.875em);
  }
  .camera__video {
    width: auto;
    height: 100%;
  }
  .camera__controls {
    top: 50%;
    right: 0;
    left: auto;
    bottom: auto;
    translate: 0 -50%;
    flex-direction: column;
    gap: 100px;
  }
}

/**************************************************/
/*********************************** Camera Block */
.camera-screen {
  position: relative;
}

canvas {
  width: 100%;
  height: 100%;
}

/*********************************** Result Block */
/**************************************************/
.result {
  display: block;
  padding: 0.9375rem;
  background-image: url("/images/landing/top_sellers_25/result_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.result__inner {
  display: flex;
  flex-direction: column;
  gap: 4.375em;
  height: 100%;
}
.result__canvas {
  width: 100% !important;
  height: auto !important;
}
.result__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.125em;
}
@media (orientation: landscape) {
  .result__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
  }
  .result__canvas {
    width: auto !important;
    height: 100% !important;
  }
}

/**************************************************/
/*********************************** Result Block */
.btn {
  --ts25-btn-bg-color: #CCF420;
  --ts25-btn-bg-color_hover: "";
  --ts25-btn-bg-color_active: "";
  --ts25-btn-border-color: "";
  --ts25-btn-border-color_hover: "";
  --ts25-btn-border-color_active: "";
  --ts25-btn-text-color: #000000;
  --ts25-btn-text-color_hover: "";
  --ts25-btn-text-color_active: "";
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.4em;
  font-family: "TT Travels Text", Arial, sans-serif;
  font-size: 3.125em;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0;
  outline: none;
  border: none;
  border-radius: 1.4em;
  box-shadow: 0 0 5px 3px rgba(255, 255, 255, 0.5);
  background-color: var(--ts25-btn-bg-color);
  color: var(--ts25-btn-text-color);
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
  color: var(--ts25-btn-text-color);
}
.btn:focus, .btn:active {
  text-decoration: none;
}

/***************************************** Button */
/**************************************************/
.btn.--icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  padding: 2.1875em;
  border-radius: 50%;
}
.btn.--icon .btn__icon {
  position: absolute;
  scale: 0.6;
}
.btn.--icon .btn__icon svg {
  width: 100%;
  height: 100%;
}

/**************************************************/
/***************************************** Button */
