/* GLOBAL STYLES */
* {
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
    .privacy-policy {
        hyphens: auto;
    }
}

[data-email] {
    position: relative;
    min-height: 100vh;
    background-color: black;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
}

.heading-style {
    text-align: center;
    margin-bottom: 50px;
}

/* PREVENT STICKY BUTTONS ON TOUCH DEVICES */
@media (pointer: coarse) {
    [data-color-link-primary]:hover,
    [data-color-link-secondary]:hover,
    [data-menu]:hover,
    [data-color-social-primary]:hover,
    [data-color-social-secondary]:hover {
        opacity: 1 !important;
    }

    [data-button]:hover:not([disabled]) {
        opacity: 1 !important;
    }
}

:root {
    --font-black: #000;
    --font-white: #fff;
    --bg-overlay: rgb(0 0 0 / 70%);
    --orange: #ffa200;
    --white: #fff;
    --padding-x-s: 0 10px;
    --padding-x-l: 0 25px;
    --padding-x-xl: 0 35px;
    --margin-b-s: 0 0 15px;
    --margin-b-l: 0 0 25px;
    --margin-b-xl: 0 0 35px;
}

a {
    text-decoration: none;
}

ul.social li a {
    text-decoration: none;
}

.swipe-wrap .answers-container>a {
    display: block;
    padding: 10px;
    flex: 0 0 calc(50% - 7px);
    font-weight: bold;
}

#social a:hover {
    text-decoration: none;
}

body {
    font-size: 18px;
}

img {
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1 {
    margin-bottom: 30px;
}

p:not(.footer) {
    margin-bottom: 20px;
}

/* =============== INTRODUCTION PAGE =============== */

/* ===================== GENERAL LAYOUT ===================== */
.page-wrap {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo-container,
.image-container,
.content-container,
.button-container,
.footer-container {
    width: 100%;
    height: auto;
}

.footer-container {
    margin-top: auto;
}

.image-container,
.content-container,
.button-container {
    margin: var(--margin-b-s);
}

.logo {
    width: 150px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin: 10px;
}

.content-container,
.footer-container {
    padding: var(--padding-x-s);
}

.footer {
    margin-top: 30px;
    margin-bottom: 15px;
}

.image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-container>img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.button-container>button {
    min-width: 200px;
    max-width: 250px;
    height: auto;
    padding: 10px 20px;
}

@media screen and (min-width: 410px) {
    .image-container,
    .content-container,
    .button-container {
        margin: var(--margin-b-l);
    }

    .content-container,
    .footer-container {
        padding: var(--padding-x-l);
    }

    .logo {
        margin: 25px;
        width: 170px;
    }

    .button-container>button {
        max-width: 300px;
    }
}

@media screen and (min-width: 1024px) {
    .page-wrap {
        display: grid;
        grid-template-columns: 45% 55%;
        grid-template-rows: repeat(3, auto);
    }

    .logo-container {
        grid-area: 1 / 1 / 2 / 2;
    }

    .content-container {
        grid-area: 2 / 1 / 3 / 2;
        flex-direction: column;
        justify-content: center;
    }

    .footer-container {
        grid-area: 3 / 1 / 4 / 2;
    }

    .image-container {
        grid-area: 1 / 2 / 4 / 3;
        margin: 0;
    }

    .image-container>img {
        object-fit: cover;
        max-height: 100vh;
    }

    .footer-container,
    .content-container {
        display: flex;
    }

    .footer {
        margin-top: auto;
    }
}

@media screen and (min-width: 1360px) {
    .content-container,
    .footer-container {
        padding: var(--padding-x-xl);
    }

    .logo {
        margin: 35px;
    }
}

/* =========================== MEMORY-GAME ============================= */
.checkbox-container>div {
    flex: 0 0 100%;
}

.input-container>div {
    flex: 0 0 100%;
    min-height: 60px;
}

#game-view,
#memory-game,
#game-view>div {
    width: 100%;
    min-height: 100vh;
}

.page-wrap.memory-wrap {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
}

[dir="rtl"] .logo-container {
    display: flex;
    justify-content: flex-start;
}

#memory-game .logo-container {
    grid-area: 1 / 1 / 2 / 2;
}

.swipe-text>h3 {
    margin-bottom: 20px;
}

[dir="rtl"] #time-wrap,
[dir="rtl"] #picture-element,
[dir="rtl"] #question-element,
[dir="rtl"] #question-element-swipe,
[dir="rtl"] .survey__question-counter>h3 {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

#memory-game #time-wrap {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
    margin: 16px 10px 0 0;
}

#card-container {
    width: 290px;
    height: 590px;
    grid-area: 2 / 1 / 3 / 3;
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    margin: 0 auto;
}

#card-container>.game-item {
    width: 140px;
    height: 140px;
    aspect-ratio: 1 / 1 ;
    flex-shrink: 0;
    flex-grow: 0;
}

.game-item>img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}

#memory-game .footer-container {
    grid-area: 3 / 1 / 4 / 3;
}

@media screen and (min-width: 410px) {
    #memory-game #time-wrap {
        margin: 35px 25px 0 0;
    }
}

@media screen and (min-width: 600px) {
    #card-container {
        width: 330px;
        height: 670px;
    }

    #card-container>.game-item {
        width: 160px;
        height: 160px;
    }
}

@media screen and (min-width: 768px) {
    #card-container {
        width: 410px;
        height: 830px;
    }

    #card-container>.game-item {
        width: 200px;
        height: 200px;
    }
}

@media screen and (min-width: 1024px) {
    .page-wrap.memory-wrap {
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(3, auto);
    }

    #memory-game .logo-container {
        grid-area: 1 / 1 / 2 / 3;
    }

    #memory-game #time-wrap {
        min-width: 140px;
        grid-area: 2 / 1 / 3 / 2;
        place-self: center center;
        margin: 0;
    }

    #card-container {
        width: 830px;
        height: 410px;
        grid-area: 2 / 2 / 3 / 3;
        place-self: center center;
    }

    #card-container>.game-item {
        width: 200px;
        height: 200px;
    }

    #memory-game .footer-container {
        grid-area: 3 / 1 / 4 / 3;
    }
}

@media screen and (min-width: 1280px) {
    #card-container {
        width: 1030px;
        height: 510px;
    }

    #card-container>.game-item {
        width: 250px;
        height: 250px;
    }
}

@media screen and (min-width: 1360px) {
    #card-container {
        width: 1150px;
        height: 570px;
    }

    #card-container>.game-item {
        width: 280px;
        height: 280px;
    }
}

@media screen and (min-width: 1600px) {
    #card-container {
        width: 1390px;
        height: 690px;
    }

    #card-container>.game-item {
        width: 340px;
        height: 340px;
    }

    #memory-game .footer {
        margin-top: 30px;
    }
}

/* ======================== END OF MEMORY-GAME ========================= */

/* ======================== GUESS THE PICTURE ========================= */
.game-image-wrap {
    position: relative;
    height: fit-content;
    place-self: center center;
}

.game-image-wrap>img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    margin: auto;
}

.gtp-tile-wrap {
    display: flex;
    flex-flow: row wrap;
    gap: 0;
}

.game-wrap .content-container {
    display: flex;
    flex-flow: row wrap;
}

.game-wrap .content-container>h3 {
    margin-bottom: 30px;
}

#guess-the-picture .content-container>h3 {
    flex: 0 0 50%;
}

.game-wrap .answers-container {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-click.answer {
    padding: 10px;
}

[dir="rtl"] #picture-element {
    justify-content: flex-end;
}

#guess-the-picture #picture-element {
    text-align: end;
    margin-left: auto;
}

@media screen and (min-width: 1024px) {
    .game-image-wrap {
        max-height: 100vh;
    }

    .game-wrap .content-container {
        max-width: 720px;
    }
}

/* ==================== END OF GUESS THE PICTURE ===================== */

/* ==================== QUIZ & PERSONALITY TEST ====================== */

[dir="rtl"] #terms,
[dir="rtl"] #privacy,
[dir="rtl"] .legend,
[dir="rtl"] .content-container {
    direction: rtl;
    text-align: right;
}

#quiz .content-container {
    flex-flow: unset;
    flex-direction: column;
}

.click-wrap,
.swipe-wrap,
.click-wrap .answers-container,
.swipe-wrap .answers-container {
    width: 100%;
    display: flex;
    gap: 14px;
}

.click-wrap,
.click-wrap .answers-container {
    flex-direction: column;
}

.swipe-wrap .answers-container{
    flex-flow: row nowrap;
    text-align: center;
    margin-top: 30px;
    padding: 0 10px;
}

.swipe-text {
    text-align: center;
}

.arrows-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10001;
}

.arrows {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.arrow-bg {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    display: flex;
}

.arrow-bg svg {
    width: 95%;
    height: 100%;
    fill: #000;
}

.left>svg {
    margin-right: auto;
}

.right>svg {
    margin-left: auto;
}

#quiz .image-container {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 600px) {
    .arrow-bg {
        width: 50px;
        height: 50px;
    }

    .swipe-wrap .answers-container {
        padding: 0 20px;
    }
}

@media screen and (min-width: 1024px) {
    div[data-mode-swipe]>.answers-container {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1600px) {
    .arrows-wrap {
        width: 95%;
        margin: 0 auto;
    }
}

/* ============== END OF QUIZ AND PERSONALITY TEST ================== */

/* ====================== SPIN THE WHEEL ============================ */
.po-none {
    pointer-events: none;
}

.spin-the-wheel {
    width: 100%;
    height: auto;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.text-section,
.wheel-section {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
}

.text-section {
    width: 95%;
}

#spin-the-wheel .legend {
    width: fit-content;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

#spin-the-wheel .legend-element {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}

/* ----- Question counter ------ */
h3>span,
h3>span>span {
    color: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    font-family: inherit;
}

#spin-the-wheel .legend-element span {
    line-height: 1.4;
    min-height: 1rem;
    margin: auto 0 auto 20px;
}

#spin-the-wheel .sector {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    flex-shrink: 0;
}

#spin-the-wheel .sector > img {
    max-width: 100%;
    width: 50px;
    height: 50px;
}

.spin-the-wheel .button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.spin-the-wheel button {
    padding: 10px 20px;
    max-width: 300px;
}

.ticker-layer,
.center-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.wheel-ticker {
    width: 44px;
    height: 44px;
    margin: auto -23px auto auto;
    object-fit: contain;
}

.wheel-center {
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
}

.canvas-container {
    width: 260px;
    height: 260px;
    border: 10px solid #ffa200;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spin-the-wheel canvas {
    cursor: pointer;
    width: 230px;
    height: 230px;
    transform: rotate(90deg);
    border-radius: 50%;
}

@media screen and (min-width: 410px) {
    .canvas-container {
        width: 380px;
        height: 380px;
    }

    #spin-the-wheel canvas {
        width: 350px;
        height: 350px;
    }

    .wheel-ticker {
        width: 59px;
        height: 59px;
    }

    .wheel-center {
        width: 50px;
        height: 50px;
    }
}

@media screen and (min-width: 768px) {
    .spin-the-wheel {
        margin: auto;
    }
}

@media screen and (min-width: 1024px) {
    .spin-the-wheel {
        flex-flow: row wrap;
        gap: 0;
        margin: auto 0;
        grid-area: 2 / 1 / 3 / 3;
    }

    .text-section,
    .wheel-section {
        flex: 0 0 50%;
    }

    .canvas-container {
        width: 480px;
        height: 480px;
    }

    #spin-the-wheel canvas {
        width: 450px;
        height: 450px;
    }
}

@media screen and (min-width: 1280px) {
    .canvas-container {
        width: 500px;
        height: 500px;
    }

    #spin-the-wheel canvas {
        width: 470px;
        height: 470px;
    }
}

@media screen and (min-width: 1600px) {
    .canvas-container {
        width: 600px;
        height: 600px;
    }

    #spin-the-wheel canvas {
        width: 570px;
        height: 570px;
    }

    .wheel-center {
        width: 65px;
        height: 65px;
    }
}

/* =========================== REGISTER ============================= */
.form {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.input-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
}

/* kill the arrow in select input field */
select {
    appearance: none;
}

div[input-group]>input,
div[input-group]>select {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
}

.checkbox-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.prize-text-container {
    margin-bottom: 20px;
}

.prize-text-container h2,
.prize-text-container p {
    margin-bottom: 10px;
}

/* ----------- CHECKBOX STYLING -------------- */
.checkbox-container>.custom-checkbox {
    margin-bottom: 20px;
    padding-left: 40px;
}

.custom-control-label::before,
.custom-control-label::after {
    width: 20px;
    height: 20px;
    top: calc(50% - 12px);
    left: -40px;
}

.checkbox-container .custom-control-label::before {
    border: 3px solid;
    border-radius: 0;
    background-color: transparent;
}

[dir="rtl"] .custom-control-label::before,
[dir="rtl"] .custom-control-label::after {
    right: -2rem;
}

/* ---- radio buttons for single choice answers ---- */
.single-answer .custom-checkbox .custom-control-label::before,
.single-answer .custom-checkbox .custom-control-label::after {
    border-radius: 50% !important;
}

.multiple-answer .custom-checkbox .custom-control-label::before,
.multiple-answer .custom-checkbox .custom-control-label::after {
    border-radius: 0 !important;
}

#register .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: transparent;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: none;
    transform: scale(0.4);
}

/* ================== OUTCOME ======================= */

/* ------ CTA BUTTONS ------ */
.cta-buttons {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 15px;
    margin: 10px auto;
}

.cta {
    display: none;
    min-width: 200px;
    min-height: 45px;
    padding: 10px 20px;
}

/* ------ SOCIAL ICONS ------ */
ul.social {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 30px;
    gap: 8px;
}

ul.social li {
    margin: 8px 0;
    display: inline-block;
}

ul.social li a i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}

ul.social li a i:hover {
    transform: translateY(-5px);
    opacity: 0.9;
    transition: all 1s ease;
}

.social>:first-child {
    margin-left: 0;
}

/* ======================== SURVEY ======================== */
#survey .content-container {
    display: flex;
    flex-direction: column;
}

.survey__question-counter {
    margin-bottom: 10px;
}

/* ======================== SCALE ELEMENT ======================== */
.scale-container {
    width: 100%;
}

.scale {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    margin: 0;
}

.scale__line {
    height: 88%;
    margin: auto 0;
    background: #fff;
    position: absolute;
    left: 21px;
    top: 0;
    bottom: 0;
}

.scale__sector {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    z-index: 1;
    margin: 10px;
}

.scale__sector__button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.scale__sector__text {
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
    margin-left: 10px;
    text-align: start;
}

.scale__marker::after {
    content: "";
    background-color: #000;
    transition: all .1s ease-out;
    border-radius: 50%;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    transform: scale(0.6);
}

@media screen and (max-width: 1279px) {
    .scale {
        min-height: 210px;
    }

    span[data-scale-line] {
        width: 3px !important;
    }

    .scale-container>.scale>.scale__sector {
        width: 100% !important;
    }

    .scale_last_visible {
        align-items: flex-end;
    }

    .survey__text-section,
    .survey__picture-section {
        width: 100% !important;
    }
}

@media screen and (min-width: 1024px) {
    .survey__text-section {
        width: 100% !important;
    }

    .scale {
        width: 100%;
    }

    #survey .game-wrap .content-container {
        max-width: 1024px;
    }
}

@media screen and (min-width: 1280px) {
    .scale-container {
        width: 100%;
        margin: 30px auto;
        min-width: 500px;
        max-width: 1000px;
    }

    .scale {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        margin-top: 15px;
    }

    .scale__line {
        top: 2px;
        width: 88%;
        height: 3px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .scale__sector {
        height: auto;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .scale__sector__button {
        margin: -10px 0 0;
    }

    .scale__sector__text {
        width: 100%;
        text-overflow: ellipsis;
        word-wrap: break-word;
        margin: 10px 0;
        padding: 0 5px;
        text-align: center;
        line-height: 1em;
    }
}

/* ----- kill outline on focus ------ */
textarea:focus-visible {
    outline: none;
}

.single-answer ::before,
.multiple-answer ::before{
    outline: none;
    box-shadow: none !important;
}

button:focus,
button:focus-visible {
    outline: none !important;
}

[dir="rtl"] .custom-control-label,
[dir="rtl"] .footer {
    text-align: right;
}

/* ---- DISABLE BOOTSTRAP GREY TEXT WHEN ANSWER IS DISABLED ---- */
.survey__text-section .custom-control-input:disabled~.custom-control-label {
    color: unset;
}

@media screen and (max-width: 1279px) {
    .scale-container>.scale>.scale__sector {
        width: 100% !important;
    }

    .survey__text-section,
    .survey__picture-section {
        width: 100% !important;
    }
}

/* ----- single and multiple answers ------ */
#survey .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #fff;
}

#survey .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    transform: scale(0.6);
}

.single-answer,
.multiple-answer {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 15px;
}

.survey__answers-container {
    width: fit-content;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media screen and (min-width: 768px) {
    .single-answer,
    .multiple-answer {
        flex-flow: row nowrap;
        gap: 0;
    }

    .first>div {
        width: 100%;
    }

    .second>div {
        margin-left: 50px;
    }
}

/* ----- navigation ------ */
.survey__navigation {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.survey__navigation>button {
    width: unset;
    margin: 0;
    min-width: 200px;
    padding: 10px 20px;
}

.survey__navigation>#previous-btn {
    order: 4;
}

@media screen and (min-width: 600px) {
    .survey__navigation {
        flex-direction: row;
    }

    .survey__navigation>#previous-btn {
        order: 1;
    }

    .survey__navigation>#next-btn,
    .survey__navigation>#skip-btn,
    .survey__navigation>#submit-btn {
        order: 2;
    }
}

@media screen and (min-width: 1024px) {
    #survey .page-wrap {
        grid-template-columns: 50% 50%;
    }
}

@media screen and (min-width: 1280px) {
    #survey .page-wrap {
        grid-template-columns: 45% 55%;
    }
}

/* free text answer */
.text-answer {
    width: 100%;
    height: auto;
}

.text-answer textarea {
    width: 100%;
    max-width: 600px;
    height: 200px;
    padding: 10px 20px;
}

@media screen and (min-width: 768px) {
    .text-answer textarea {
        height: 300px;
    }
}

/*  ===== LIMIT REACHED PAGE ===== */
#limit-reached {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#limit-reached>div {
    flex: 0 0 100%;
}

.limit-container {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: auto;
    padding: 20px 10px;
    text-align: center;
}

.limit-container h2 {
    margin: 0;
}

@media screen and (min-width: 410px) {
    .limit-container {
        padding: 30px 20px;
    }
}

#limit-reached .content-container {
    margin: auto;
}

/* ================================ RTL SUPPORT ================================ */
[dir="rtl"] .custom-control.custom-checkbox {
    text-align: right;
    padding: 0 2.5rem 0 0 !important;
}

[dir="rtl"] #question-element-swipe {
    justify-content: center;
}

[dir="rtl"] [data-mode-swipe] {
    direction: ltr;
}

[dir="rtl"] .swipe-text {
    direction: rtl;
}

[dir="rtl"] #spin-the-wheel .legend-element span {
    margin: auto 20px auto 0;
}

[dir="rtl"] #memory-game #time-wrap {
    margin: 30px 20px 0;
}

@media screen and (min-width: 410px) {
    [dir="rtl"] #memory-game #time-wrap {
        margin: 35px 0 0 25px;
    }
}

@media screen and (min-width: 768px) {
    [dir="rtl"] .second>div {
        margin-left: unset;
        margin-right: 50px;
    }
}

@media screen and (max-width: 1280px) {
    [dir="rtl"] .scale__line {
        left: unset;
        right: 21px;
    }

    [dir="rtl"] .scale__sector__text {
        text-align: right;
        margin-left: unset;
        margin-right: 10px;
    }
}

@media screen and (min-width: 1024px) {
    [dir="rtl"] .spin-the-wheel {
        flex-flow: row-reverse wrap;
    }

    [dir="rtl"] #memory-game #time-wrap {
        margin: 0;
    }
}