* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
    background-repeat: no-repeat;
}

:root {
    --main_color: #07b1e4;
    --secondary_color: #0077c8;
    --alert_color: #e40707;
    --active_color: #07b1e4;

    --main_color_translucent: #07b0e43a;
    --secondary_color_translucent: #0077c83a;
    --alert_color_translucent: #e407073a;
    --active_color_translucent: #07b0e43a;

    --default-background-color: #dfe2ec;
    --default-text-color: #5b6464;
    --color-light-gradient: rgb(255 255 255 / 90%);

    --color-dark-black: #000;
    --color-red: #fb4439;
    --color-red-gradient: rgb(253 160 155 / 90%);
    --color-lava-red: #e00c19;
    --color-dark-red: #b00b00;
    --color-dark-red-gradient: rgb(218 88 78 / 90%);
    --color-green: #03c5b2;
    --color-green-gradient: rgb(119 229 218 / 90%);
    --color-blue: #8092db;
    --color-blue-endscreen: #576396;
    --color-blue-gradient: rgb(175 187 233 / 90%);
    --color-purple: #ae7ceb;
    --color-purple-gradient: rgb(201 169 239 / 90%);
    --color-grey-gradient: rgba(145, 145, 145, 0.262);
}
p {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
b {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */ 
}
@font-face {
    font-family: "Samsung Sharp Sans";
    font-style: normal;
    font-weight: 500;
    src: local("Samsung Sharp Sans"),
        url("../fonts/samsungsharpsans-medium.ttf") format("truetype");
}
@font-face {
    font-family: "SamsungOne";
    font-style: normal;
    font-weight: 400;
    src: local("SamsungOne"),
        url("/fonts/SamsungOne-400_v1.0") format("truetype");
}

body {
    font-family: Samsung Sharp Sans, Helvetica, sans-serif;
    background-color: rgb(131, 127, 127);
    color: var(--default-text-color);
    margin: 0;
    overflow: hidden;
    touch-action: none;
}

button {
    font-family: Samsung Sharp Sans, Helvetica, sans-serif;
    color: var(--default-text-color);
}

#application-canvas{
    max-width: 100vw;
    max-height: 100vh;
}

.mainbody {
    z-index: 1000;
    position: absolute;
    pointer-events: none;
    font-family: Samsung Sharp Sans, Helvetica, sans-serif;
    margin: 0;
    top: 0;
    left: 0;
}

#damageScreen{
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
}

#damageScreen img{
    width: 100%;
    height: 100%;
}

#endscreenCompanionText{
    line-height: 100%;
}

#blackScreen{
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    background-color: #000;
}

#intro{
    position: fixed;
    z-index: 999;
    margin: auto;
    height: 100%;
    width: 100%;
    background-color: #000;
    /* opacity: 90%; */
}

#introVideo {
    pointer-events: none;
    align-self: center;
    display: block;
    object-fit: contain;
    height: 90%;
    width: 100%;
    margin: auto;
    aspect-ratio: 9 / 16;
    border-radius: 4.7vh;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

#loadingContainer{
    font-family: Samsung Sharp Sans, Helvetica, sans-serif;
}

#mainUI {
    z-index: 500 !important;
    width: 100%;
    height: 100%;
    margin: 0;
}

#shieldBar{
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    height: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.70);
    position: relative;
    top: 10%;
}

#shieldBar div{
    width: 90%;
    height: 100%;
    left: 0;
    border-radius: 20px;
    background: #48F6FF;
    position: absolute;
}

#shieldBar img{
    position: relative;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    /* border-radius: 20px; */
    /* background: #FFF; */
    top: 50%;
    left: 0%;
}

#startVideo{
    color: var(--color-light-gradient);
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#startVideo b{
    animation-name: startVideoPulsing;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes startVideoPulsing {
  from {scale: 100%;}
  to {scale: 110%;}
}

#skipVideo{
    display: flex;
    position: absolute;
    bottom: 2.5%;
    left: 50%;
    transform: translateX(-50%);

    max-width: fit-content;
    text-align: left;
    font-size: min(4.1vw, 1.9vh);
    margin-bottom: 1.6vh;
}

#zoomBar{
    position: absolute;
    right: 12px;
    top: 46%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-50%);
}

#zoomBar button{
    padding: 0;
    width: 52px;
    height: 52px;
    font-size: xx-large;
}

.welcomebody {
    height: 100% !important;
}

.scrollable {
    pointer-events: auto;
    position: absolute;
    overflow-y: auto;
    height: 87.5%;
    width: 100%;
    top: 0px;
    margin-top: 11%;
}

@media (orientation: landscape) {
    .scrollable {
        pointer-events: auto;
        /* position: relative; */
        overflow-y: auto;
        height: 90%;
        width: 100%;
        top: 0px;
    }
}

.infobody {
    height: 100% !important;
    background-color: #fff;
    z-index: 2000 !important;
}

.imprintbody {
    height: 100% !important;
    overflow-y: auto;
    background-color: #fff;
    z-index: 2000 !important;
}

.clickfinger {
    width: 16.6027vh;
    height: 18.4658vh;
    flex-shrink: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50vw;
    top: 50vh;
}

.title {
    text-align: center;
    font-size: 5.55vh;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    width: 70vw;
    margin-top: 5vh;
    margin-bottom: 0px;
}

.subtitle {
    text-align: center;
    font-size: 1.5753vh;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;

    /* 51.7px */
    letter-spacing: 0.1545vh;
    text-transform: uppercase;
}

.infobutton {
    width: 3.6712vh;
    height: 3.6712vh;
    flex-shrink: 0;
    position: absolute;
    right: 5.1507vh;
    margin-top: 1.6vh;
    z-index: 1200;
    pointer-events: auto;
}

.explaintext {
    text-align: center;
    font-size: 1.9vh;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;

    /* 63.45px */
}

.explaintext-extra {
    font-size: 1.9vh;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;

    /* 63.45px */
}

.imprinttext-extra {
    font-size: 1.9vh;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;

    /* 63.45px */
}

.datatext-extra {
    font-size: 1.9vh;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;

    /* 63.45px */
}

.expButton {
    width: 24vh;
    height: 12vh;
    border-radius: 0.5479vh;
    background: #000;
    position: relative;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: auto;
    border: none;
    left: 50%;
    text-align: center;
}

.buttonText {
    font-size: 2vh;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    color: white;
    /* 39.6px */
    text-align: center;
    vertical-align: middle;
}

.bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
}

.videoContainer {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.videoContainer video {
    min-width: 100%;
    min-height: 100%;
}

.welcomebg {
    background-color: black;
    color: white;
    display: block;
}

.gradientBottom {
    height: 21.9178vh;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
}

.gradientTop {
    height: 21.9178vh;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.bgImage {
    position: absolute;
    left: 53%;
    transform: translateX(-50%);
    top: 3vh;
    height: 41.1507vh;
    flex-shrink: 0;
}

.center-indiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-horizontal {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.explaintext-container {
    width: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.explaintext-container-extra {
    width: 80%;
    position: relative;
    margin-top: 12vh;
    left: 50%;
    transform: translateX(-50%);
}

.main-text-body {
    display: block;
    width: 100vw;
    height: 100vh;
    top: 0vh;
    position: fixed;
}

.header {
    width: 100%;
    position: fixed;
    top: 0px;
    height: 6.863vh;
    background: #ffff;
    z-index: 10000;
    border-bottom: 0.2vh solid #e3e4e5;
}

.cta-1 {
    color: #fff;
    text-align: center;
    font-size: 4.0548vh;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.cta-1-container {
    width: 45.7534vh;
    height: 13.1507vh;
    flex-shrink: 0;
    margin-top: 13.9726vh;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.cta-2-container {
    width: 45.7534vh;
    height: 13.1507vh;
    flex-shrink: 0;
    margin-top: 13.9726vh;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.previewImage {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    top: 40vh;
    width: 30vh;
}

.previewImage-img {
    width: 100%;
    height: 100%;
}

.poweredby-img {
    display: none !important;
}

.clickfinger {
    width: 16.6027vh;
    height: 18.4658vh;
    flex-shrink: 0;
    position: absolute;
    right: 3.8356vh;
    bottom: 3.4521vh;
}

.clickfinger-img {
    width: 100%;
    height: 100%;
}

.footermain {
    position: fixed;
    bottom: 0px;
    width: 110%;
    height: auto;
    z-index: 10000;
    border-top: 0.2vh solid #e3e4e5;
    background: #ffff;
    pointer-events: auto;
}

.disclaimer {
    color: #000;
    font-size: 1.1vh;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 70%;
    left: 50%;
    position: relative;
    height: auto;
    transform: translateX(-50%);
}

.privacy {
    color: #000;
    font-size: 1.8vh;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.imprint {
    color: #000;
    font-size: 1.8vh;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 4.3836vh;
}

.dataprivacy {
    color: #000;
    font-size: 1.8vh;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 4.3836vh;
}

/* Disable text selection */
.no-select {
    user-select: none;

    /* Standard */
    -webkit-user-select: none;

    /* Safari */
    -ms-user-select: none;

    /* IE */
    -moz-user-select: none;

    /* Firefox */
}

/* Prevent long press context menu on mobile */
.no-select {
    -webkit-touch-callout: none;

    /* iOS Safari */
}

.footerbuttons {
    display: flex;
    justify-content: start;
    width: 70%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.explainheadline {
    color: #000;
    font-size: 1.9vh;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    text-transform: uppercase;
}

.imprintheadline {
    color: #000;
    font-size: 1.9vh;
    font-style: normal;
    line-height: 135%;
}

.imprintmainheadline {
    color: #000;
    text-align: left;
    font-size: 2.55vh;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    width: 70vw;
    position: relative;
}

.dataheadline {
    color: #000;
    font-size: 1.9vh;
    font-weight: 600;
    line-height: 135%;
}

.datamainheadline {
    color: #000;
    text-align: left;
    font-size: 2.55vh;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    width: 70vw;
    position: relative;
}

.explainmainheadline {
    color: #000;
    text-align: center;
    font-size: 5.55vh;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    width: 70vw;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.centeredHeadline {
    text-align: center;
}

.quest {
    background: linear-gradient(180deg, #afcb37 33%, rgba(175, 203, 0, 0) 100%);
    left: 50%;
    z-index: 10000000;
    height: 50vh;
    position: relative;
    transform: translateX(-50%);
    border-radius: 2vh;
    width: auto;
    margin-left: 1vh;
    margin-right: 1vh;
    min-width: 25vh;
    max-width: 40vh;
}

#gameTopBar {
    z-index: 1;
}

.gameTopBar {
    margin-top: 1%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    pointer-events: auto;
    width: 100%;
    max-width: 512px;
    height: 7.5%;
    text-align: left;
    /* backdrop-filter: blur(4px); */
    /* position: absolute; */
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.gameTopBar p {
    text-align: center;
    vertical-align: middle;
    top: 30%;
    font-size: min(5vw, 2.5vh);
    color: #ffffff;
    margin: 1vh;
    margin-block-start: 0;
    margin-block-end: 0;
}

.topBarItem {
    position: relative;
    margin: 2%;
    flex: 3 1 0;
    height: 100%;
    width: 0;
    left: 5px;
    display: inline-block;
    transition: background-color 1s;
    color: white;
    width: 16.11111111vw;
    border-radius: 100vh;
    border-width: 0px;
    border-style: solid;
    font-size: 0.97222222vw;
    padding: 0.625vw 1.59722222vw 0.69444444vw 1.59722222vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main_color_translucent);
    animation: gradientMove 20s infinite ease-in-out;
}

.topBarItem svg {
    color: var(--main_color);
    fill: var(--main_color);
    stroke: var(--main_color);
    filter: drop-shadow(0px 0px 2px var(--main_color));
    transition: 1s;
}

.topBarItem img {
    height: 100%;
    margin: 1%;
    filter: grayscale(0);
}

.tutorialPopUpItem {
    position: relative;
    width: 45%;
}

.tutorialPopUpItemText {
    position: absolute;
    bottom: 5%;
    margin: 5%;
}
.tutorialPopUpItemText b {
    color: #ffffff;
    font-size: 3vh;
}
.tutorialPopUpItemText p {
    color: #ffffff;
    font-size: 1.25vh;
    margin: 0;
}
.bgGradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(#ff000000, 85%, #000000);
    border-radius: 2vh;
}

.tutorialPopUp {
    margin-top: 1.725vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    align-items: center;
    justify-content: space-around;
    row-gap: 2vh;
}

.tutorialPopUp img {
    max-width: 100%;
    height: auto;
    border-radius: 2vh;
}

#exitButton {
    background-color: #000000;
    border-radius: 16px;
    position: relative;
    margin-left: 2vh;
}

#resetButton {
    background-color: #b90000;
    border-radius: 16px;
    position: relative;
    float: right;
    margin-right: 2vh;
}

button {
    border-style: none;
}

.frame {
    background-color: #000000aa;
    color: white;
    width: 16.11111111vw;
    border-radius: 100vh;
    border-width: 0px;
    border-style: solid;
    font-size: 0.97222222vw;
    line-height: 1.31944444vw;
    padding: 0.625vw 1.59722222vw 0.69444444vw 1.59722222vw;
}

.dot {
    height: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--active_color);
    box-shadow: 0px 0 6px 0px var(--active_color);
    transition: 1s;

    border-radius: 50%;
    display: inline-block;
    position: absolute;
}

#wiggle {
    animation-composition: add;
    animation: rotate-animation 4.75s infinite ease-in-out,
        translate-animation 7s infinite ease-in-out;
}

#joystickContainer {
    position: absolute;
    /* width: 100%;
    height: 100%; */
}

#joystickFrame {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

#joystickFrameGradient {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    opacity: 50%;
}

#joystickCenter {
    position: absolute;
    /* right: 50%;
    bottom: 50%; */
    /* object-fit: contain; */
    pointer-events: none;
}

#joystickCenter img {
    transform: translate(-50%, -50%);
    opacity: 50%;
}

@keyframes translate-animation {
    0% {
        transform: translateY(0.5%);
    }
    50% {
        transform: translateY(-0.5%);
    }
    100% {
        transform: translateY(0.5%);
    }
}
@keyframes rotate-animation {
    0% {
        transform: rotate(1deg);
    }
    50% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(1deg);
    }
}

@keyframes rotating {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@keyframes hover {
    0% {
        transform: translate(-50%, -55%);
    }
    50% {
        transform: translate(-50%, -45%);
    }
    100% {
        transform: translate(-50%, -55%);
    }
}

@keyframes popIn {
    0% {
        transform: rotate(-120deg);
        scale: 0;
    }
    90% {
        scale: 1.05;
    }
    100% {
        transform: rotate(0);
        scale: 1;
    }
}

.popIn {
    animation: popIn 1s ease-in-out;
    animation-fill-mode: both;
}

.hover {
    animation: hover 5s ease-in-out infinite;
}

.rotating {
    animation: rotating 5s linear infinite;
}

#endscreenItems { 
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 40%;
    height: 40%;
    text-align: center;
    scale: 0;
}

#endscreenItems #light { 
    position: absolute;
    width: 125%;
    height: 125%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;    
}

#endscreenItems #phone { 
    position: absolute; width:100%; height:auto; left: 50%; top: 50%; transform: translate(-50%, -50%)
}

#endscreenItems img {
    width: 100%;
    height: auto;
    rotate: 10deg;
}

/* endScreen */
.hr-hidden {
    opacity: 0;
    visibility: hidden;
    clip-path: inset(100%);
    pointer-events: none;
}
.hr-hidden#healthBar{
    display: none;
}
.hr-hidden#scoreBar{
    display: none;
}
.hr-hidden#tutorial{
    display: none;
}
.hr-hidden#tutorialCloseButton{
    display: none;
}
.d-flex {
    display: flex;
}
.ml-auto {
    margin-left: auto;
}
.mt-auto {
    margin-top: auto;
}
.mr-auto {
    margin-right: auto;
}
.mb-auto {
    margin-bottom: auto;
}

.hr-container {
    max-width: 50vh;
    padding: 8px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.hr-status-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hr-video {
    pointer-events: auto;
    align-self: center;
    display: block;
    object-fit: cover;
    width: 100%;
    border-radius: 4.7vh;
    aspect-ratio: 16 / 9;
}

.hr-topbar {
    margin-top: 2.34vh;
    margin-bottom: 0.9vh;
    position: relative;
    height: 6.7vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.companion {
    height: 10vh;
    aspect-ratio: 1;
    background-color: transparent;
    position: relative;
    bottom: -2.0vh;
    margin-left: auto;
    margin-right: auto;
}

.companion__body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.companion__image {
    height: 90%;
    z-index: 1;
    position: absolute;
}

.companion__bg {
    height: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--active_color);
    background-image: linear-gradient(
        90deg,
        var(--color-purple-gradient) 00%,
        var(--color-light-gradient) 30%
    );
    transition: 1s;
    opacity: 0.9;

    border-radius: 50%;
    display: inline-block;
    position: absolute;
}

.endScreen {
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10001 !important;
    background-color: var(--default-background-color);
    overflow: hidden;
}

.endScreen .hr-container {
    overflow: auto;
    height: 0;
    pointer-events: all;
    padding-bottom: 32px;
}

.hr-score-sm {
    font-size: 2.3vh;
    text-align: center;
}
.hr-score-lg {
    font-size: 3.5vh;
    margin-right: 4vh;
}

.helthbar {
    display: flex;
    height: 100%;
    align-items: center;
}

.helthbar--lg {
    gap: 1vh;
    margin-right: 4vh;
}

.helthbar--lg img {
    width: 3.502vh;
    aspect-ratio: 1;
}

.helthbar--sm {
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.helthbar--sm img {
    width: 2.4vh;
    aspect-ratio: 1;
}

button.roundedBox {
    transition: filter 0.2s;
    will-change: filter;
}

button.roundedBox:active {
    filter: brightness(0.8);
}

.roundedBox {
    display: flex;
    pointer-events: auto;
    --rounded-box-gradient-start: var(--color-light-gradient);
    --rounded-box-gradient-end: var(--color-light-gradient);
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 4.7vh;
    background-image: linear-gradient(
        90deg,
        var(--rounded-box-gradient-start) 00%,
        var(--rounded-box-gradient-end) 30%
    );
    box-sizing: border-box;
}
.roundedBox.inverted {
    background-image: linear-gradient(
        270deg,
        var(--rounded-box-gradient-start) 00%,
        var(--rounded-box-gradient-end) 30%
    );
}

.roundedBox__text {
    margin-block-start: 0;
    margin-block-end: 0;
    display: block;
    flex: 1;
}

.roundedBox--sm {
    padding: 0.88vh;
    border-radius: 4.7vh;
    max-width: 14.3vh;
    font-size: 1.26vh;
    gap: 0.8vh;
}

.roundedBox--sm .roundedBox__icon {
    height: 3.082vh;
}

.roundedBox--md {
    padding: 1.077vh;
    max-width: 27.4vh;
    font-size: min(4.1vw, 1.9vh);
}

.roundedBox--md .roundedBox__icon {
    height: 3.435vh;
}

.roundedBox--lg {
    padding: 16px;
    padding: 1.725vh;
    font-size: 16px;
    font-size: min(4.1vw, 1.9vh);
    margin-bottom: 1.725vh;
}

.roundedBox--lg .roundedBox__icon {
    height: 5.8vh;
    margin-right: 1vh;
}

.roundedBox--inline {
    display: inline-flex;
}

.roundedBox--transparent {
    background-color: transparent;
    --rounded-box-gradient-start: transparent;
    --rounded-box-gradient-end: transparent;
}
.roundedBox--gradient-purple {
    --rounded-box-gradient-start: var(--color-purple-gradient);
    --rounded-box-gradient-end: var(--color-light-gradient);
}
.roundedBox--gradient-red {
    --rounded-box-gradient-start: var(--color-red-gradient);
    --rounded-box-gradient-end: var(--color-light-gradient);
}
.roundedBox--gradient-dark-red {
    --rounded-box-gradient-start: var(--color-red-gradient);
    --rounded-box-gradient-end: var(--color-light-gradient);
}
.roundedBox--gradient-blue {
    --rounded-box-gradient-start: var(--color-blue-gradient);
    --rounded-box-gradient-end: var(--color-light-gradient);
}
.roundedBox--gradient-green {
    --rounded-box-gradient-start: var(--color-green-gradient);
    --rounded-box-gradient-end: var(--color-light-gradient);
}
.roundedBox--gradient-grey {
    --rounded-box-gradient-start: var(--color-grey-gradient);
    --rounded-box-gradient-end: var(--color-light-gradient);
}
.roundedBox--gradient-black-blue {
    --rounded-box-gradient-start: var(--color-dark-black);
    --rounded-box-gradient-end: var(--color-blue-endscreen);
}

.roundedBox__icon {
    --rounded-box-icon-background: var(--color-light-gradient);
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--rounded-box-icon-background);
    position: relative;
    align-self: flex-start;
}

.roundedBox__icon--red {
    --rounded-box-icon-background: var(--color-red);
}
.roundedBox__icon--dark-red {
    --rounded-box-icon-background: var(--color-dark-red);
}
.roundedBox__icon--purple {
    --rounded-box-icon-background: var(--color-purple);
}
.roundedBox__icon--green {
    --rounded-box-icon-background: var(--color-green);
}
.roundedBox__icon--blue {
    --rounded-box-icon-background: var(--color-blue);
}

.roundedBox__icon img {
    width: 120%;
    height: 100%;
}

.roundedBox__icon--purple {
    --rounded-box-background: var(--color-purple);
}

.infoBox {
    --info-box-top-radius: 4.7vh;
    --info-box-bottom-radius: 8.3vh;
   
    border-radius: var(--info-box-top-radius) var(--info-box-top-radius)
        var(--info-box-bottom-radius) var(--info-box-bottom-radius);

    margin-top: 1.725vh;
    margin-bottom: 1.725vh;
    /*flex: 1;*/
    flex-direction: column;
    justify-content: space-between;
}

.infoBox-button {
    width: 100%;
    margin-top: 3.7vh;
    border-radius: 9.1vh;
    background-image: linear-gradient(110deg, var(--rounded-box-gradient-start) 50%, var(--rounded-box-gradient-end) 100%);
    height: 14.3vh;
    padding-inline: 4vh;
    overflow: hidden;
    transition: filter 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infoBox-button img {
    object-fit: contain;
    width: 120%;
    height: 100;
}

.infoBox-button:active {
    filter: brightness(0.8);
}

.bgImageEnd {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: white;
    opacity: 0.3;
}

.bgImageEnd img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.adBox {
    /* display: none; */
    height: 13.99vh;
    border-radius: 2.9vh;
    /*background-image: url("https://headraft.com/media/pages/work/ar-game-trails-of-wonder-samsung/08c0b3edf7-1720786157/ar-game-app-trails-of-wonder-samsung-header-800x.jpg");*/
    background-color: lightgray;
    background-position: 0px -7.047px;
    background-size: 100% 177.5%;
    background-repeat: no-repeat;
}

.hr-modal-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    backdrop-filter: blur(14px);
    transition: transform 0.3s;
}

.hr-modal-dialog-open {
    position: fixed;
    width: 4.75vh;
    height: 3.79vh;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 750;
    background-color: rgba(255, 255, 255, 0.77);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 1.3vh;
    --open-button-bottom-raduis: 2.3vh;
    border-bottom-left-radius: var(--open-button-bottom-raduis);
    border-bottom-right-radius: var(--open-button-bottom-raduis);
    transition: filter 0.3s;
    pointer-events: all;
}

.hr-modal-dialog-open:hover,
.hr-modal-dialog-open:active {
    filter: brightness(0.8);
}

.hr-modal-dialog-open::after,
.hr-modal-dialog-open::before {
    display: block;
    content: "";
    height: 0.26vh;
    width: 1.8vh;
    background-image: linear-gradient(#c29fff, #5966ff);
    margin-top: 0.4vh;
}

.hr-modal-dialog__close {
    position: absolute;
    top: 0.8vh;
    right: 0.8vh;
    z-index: 10;
}

.hr-modal-dialog__content {
    padding-top: 6.2vh;
    height: 100%;
    position: relative;
    color: var(--color-dark-black);
    pointer-events: all;
}

.hr-modal-dialog__content .hr-container {
    padding-left: 3.8vh;
    padding-right: 3.8vh;
    padding-bottom: 7vh;
    height: 0;
}

.hr-modal-dialog__content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 13vh;
    background-image: linear-gradient(
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
}
.hr-modal-dialog__content--solid:before {
    height: 90vh;
    background-image: linear-gradient(
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.hr-modal-dialog__menu {
    margin-left: auto;
    margin-right: auto;
    width: 56%;
}

.hr-modal-dialog__menu button {
    text-align: left;
    font-size: min(4.1vw, 1.9vh);
    margin-bottom: 1.6vh;
}

.hr-modal-dialog__menu > * {
    min-width: 100%;
}

.hr-modal-dialog__title {
    font-size: 3.6vh;
    margin-top: 1.4vh;
    margin-bottom: 0.2vh;
}
.hr-modal-dialog__text {
    font-size: 12px;
}

.hr-modal-dialog__text {
    /* scrollbar-width: thin; */
    /* scrollbar-color: #888 #f1f1f1; */
    font-family: SamsungOne, Helvetica, sans-serif;
    overflow: auto;
    padding-right: 24px;
    margin-right: -16px;
}

.scroller {
    --scrollbar-color-thumb: #fff;
    --scrollbar-color-track: #5b6464;
    --scrollbar-width: thin;
    --scrollbar-width-legacy: 0.5rem;
}

@supports (scrollbar-width: auto) {
    .scroller {
        scrollbar-color: var(--scrollbar-color-thumb)
            var(--scrollbar-color-track);
        scrollbar-width: var(--scrollbar-width);
    }
}

@supports selector(::-webkit-scrollbar) {
    .scroller::-webkit-scrollbar-thumb {
        background: var(--scrollbar-color-thumb);
    }
    .scroller::-webkit-scrollbar-track {
        background: var(--scrollbar-color-track);
    }
    .scroller::-webkit-scrollbar {
        max-width: var(--scrollbar-width-legacy);
        max-height: var(--scrollbar-width-legacy);
    }
}

.markerHint {
    width: 33.9572vh;
    height: 33.8235vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.markerHint img {
    width: 100%;
    height: auto;
    position: absolute;
}

@keyframes bounce-soft {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px); /* Reduced from -30px */
  }
  70% {
    transform: translateY(-7px); /* Reduced from -15px */
  }
  90% {
    transform: translateY(-4px); /* Reduced from -4px */
  }
}

.animate__bounce-soft {
  animation: bounce-soft 1s;
}

@keyframes pulse {
    0% {
     transform: scale(1, 1);
    }

    33% {
     transform: scale(1.07, 1.07);
    }

    66% {
    transform: scale(1, 1);
    }

    100% {
     transform: scale(1, 1);
    }
}

.endscreenPuls {
    animation: pulse 2s ease-in-out infinite;
}