@font-face {
    font-family: 'SourceCodePro-Black';
    src: url('../fonts/SourceCodePro-Black.ttf') format("truetype");
    font-weight: bolder;
    font-style: normal;
}
@font-face {
    font-family: 'SourceCodePro-Bold';
    src: url('../fonts/SourceCodePro-Bold.ttf') format("truetype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'SourceCodePro-Regular';
    src: url('../fonts/SourceCodePro-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme0: #A7A6A6;
    --theme1: #54A7DB;
    --theme2: #94C260;
    --theme3: #EFAF42;
    --theme4: #285F95;
    --theme5: #285F95;

    --white: #ffffff;
    
    --clr-text: #383A36;
    --clr-accent: #711CF2;
    --clr-alt: #5CC7DC;

    --clr-right: #54AC58;
    --clr-wrong: #D33832;

    --ft-mt-black: 'SourceCodePro-Black', sans-serif;
    --ft-mt-bold: 'SourceCodePro-Bold', sans-serif;
    --ft-mt-regular: 'SourceCodePro-Regular', sans-serif;
}

html, body {
    color: var(--clr-text);
    font-family: var(--ft-mt-regular);
    font-size: 24px;
    background-image: url(../images/background/bg.png);
    background-size: cover;
    background-position: center center;
}

article#slide {
    transform-origin: top;
    background: var(--white);
}

@media only screen 
    and ( orientation: portrait ) {
        body.wide article#slide {
            overflow: visible;
        }
        body.tall article#slide {
            overflow: hidden;
        }
        
/*        html, body {
            background: url(../images/bg_header.webp);
            background-size: 200% 200%;
            background-position: 50%;
        }*/
}
.loading-image {
    /* animation: 1s ease pulsating infinite; */
    width:80px;
}
.rolling-header {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100px;
    background-color: #ffffff;
    color:white;
    background-size: cover;
    background-position: center center;
    padding: 0 calc(50% + 16px);
    z-index: 10000;
}
#rolling-logo-eu {
    float: left;
    height: 40px;
    margin-top: 30px;
}
.rolling-header-title {
    height: 40px;
    margin-top: 27px;
    margin-left: 40px;
}
.rolling-header-bt {
    height: 100%;
    float: right;
    padding: 30px 8px;
    cursor: pointer;
}

.rolling-header-title.hidden {
    opacity: 0;
}

.rolling-header-counter.rollingClockNumbers {
    width: 280px;
    display: block;
    /*margin: 35px auto;*/
    height: min-content;
    color: #711CF2;
    font-weight: bold;
    font-size: 1.65rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all 0.25s ease;
}
.rolling-header-counter.active {
    opacity: 1;
}
.rolling-roleta {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 640px;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 0px 16px rgba(0,0,0,0.25));
}
#rolling-roleta-roda {
    position: absolute;
    transition: transform 0s ease;
    width: 600px;
}
#rolling-roleta-roda.active {
    transition: transform 5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 5s cubic-bezier(.14,1.4,.62,1);
}
#rolling-roleta-centro {
    position: absolute;
    z-index: 1000;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    cursor: pointer;
}
#rolling-roleta-centro.dead {
    pointer-events: none;
}

.rolling-bg {
    background: rgb(92,196,218);
    background-image: url(../images/background/rolling-bg.png);
    /* background: linear-gradient(0deg, rgba(92,196,218,1) 16%, rgba(60,113,214,1) 68%, rgba(27,29,209,1) 100%); */
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

#rolling-theme-alert {
    position: absolute;
    width: 200%;
    top: 100px;
    height: calc(100% - 100px);
    left: -50%;
    padding: 0 50% 15% 50%;
    transition: all 1s ease-out;
    background: var(--white);
    color:  var(--white);
    background: rgba(0,0,0,0.9);
    /*backdrop-filter: blur(16px);*/
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
img.rolling-theme-img {
    border-radius: 50%;
    width: 240px;
}
#rolling-theme-alert.active {
    opacity: 1;
    pointer-events: initial;
}

#rolling-questions {
    position: absolute;
    width: 200%;
    top: 150%;
    height: calc(100% - 170px);
    left: -50%;
    padding: 0;
    transition: all 1s ease-in;
    background-color: #EF9474;
    box-shadow: 0 0 32px var(--clr-text);
}

#rolling-questions,
#rolling-questions .rolling-answer:after{
    color: var(--clr-text);
}

/*used when we want each theme to have a specifi background-color*/
/* #rolling-questions[data-theme="0"] {background-color: var(--theme0)}
#rolling-questions[data-theme="1"] {background-color: var(--theme1)}
#rolling-questions[data-theme="2"] {background-color: var(--theme2)}
#rolling-questions[data-theme="3"] {background-color: var(--theme3)}
#rolling-questions[data-theme="4"] {background-color: var(--theme4)}
#rolling-questions[data-theme="5"] {background-color: var(--theme5)} */

#rolling-questions.active {
    transition: all 1s ease-out;
    top: 180px;
}

#rolling-theme-alert h3 {
    width: 50%;
    text-align: center;
}

.rolling-layout-bt.rolling-alert-go {
    background-color: var(--clr-text);
    background-color: transparent;
    color: var(--white);
    border: 5px solid var(--white);
    padding: 8px;
    border-radius: 8px;
    position: absolute;
    bottom: 100px;
    cursor: pointer;
    text-transform: none;
    font-weight: bold;
}

.rolling-layout-bt.rolling-alert-go:hover {color: black;background-color: var(--white);border: 5px solid var(--white);}

.rolling-layout-bt.-ghost{
    opacity: .3;
    pointer-events: none;
}
/*
#rolling-theme-alert[data-theme="0"] .rolling-alert-go {background-color: var(--theme0);color: var(--white);border: 5px solid var(--theme0);}
#rolling-theme-alert[data-theme="0"] .rolling-alert-go:hover {color: var(--theme0);background-color: var(--white);}

#rolling-theme-alert[data-theme="1"] .rolling-alert-go {background-color: var(--theme1);color: var(--white);border: 5px solid var(--theme1);}
#rolling-theme-alert[data-theme="1"] .rolling-alert-go:hover {color: var(--theme1);background-color: var(--white);}

#rolling-theme-alert[data-theme="2"] .rolling-alert-go {background-color: var(--theme2);color: var(--white);border: 5px solid var(--theme2);}
#rolling-theme-alert[data-theme="2"] .rolling-alert-go:hover {color: var(--theme2);background-color: var(--white);}

#rolling-theme-alert[data-theme="3"] .rolling-alert-go {background-color: var(--theme3);color: var(--white);border: 5px solid var(--theme3);}
#rolling-theme-alert[data-theme="3"] .rolling-alert-go:hover {color: var(--theme3);background-color: var(--white);}

#rolling-theme-alert[data-theme="4"] .rolling-alert-go {background-color: var(--theme4);color: var(--white);border: 5px solid var(--theme4);}
#rolling-theme-alert[data-theme="4"] .rolling-alert-go:hover {color: var(--theme4);background-color: var(--white);}

#rolling-theme-alert[data-theme="5"] .rolling-alert-go {background-color: var(--theme5);color: var(--white);border: 5px solid var(--theme5);}
#rolling-theme-alert[data-theme="5"] .rolling-alert-go:hover {color: var(--theme5);background-color: var(--white);}*/


.rolling-question {
    padding: 0 calc(25% + 16px);
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    font-size: 1rem;
}

.rolling-question-number {
    font-family: var(--ft-mt-black);
    font-size: 3rem;
    font-weight: bold;
    height: 60px;
    max-width: 70px;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.rolling-question-text {
    border-left: 1px solid var(--white);
    padding-left: 20px;
    margin-left: 32px;
}

.rolling-question-text div{
    font-family: var(--ft-mt-bold);
    font-size: 22px;
}

.rolling-answers {
    padding: 0 calc(25% + 16px);
}
.rolling-answer {
    background: rgba(0,0,0,0.05);
    background: var(--white);
    margin-bottom: 10px;
    min-height: 110px;
    display: flex;
    align-items: center;
    padding: 16px 16px 16px 70px;
    cursor: pointer;
    position: relative;
    background-color: var(--white);
    font-size: 1rem;
    line-height: 1.25rem;
}

#rolling-questions .rolling-answer:hover {opacity:.9;}

/*used when each theme has specific color*/
/* #rolling-questions[data-theme="0"] .rolling-answer:hover {color: var(--theme0);}
#rolling-questions[data-theme="1"] .rolling-answer:hover {color: var(--theme1);}
#rolling-questions[data-theme="2"] .rolling-answer:hover {color: var(--theme2);}
#rolling-questions[data-theme="3"] .rolling-answer:hover {color: var(--theme3);}
#rolling-questions[data-theme="4"] .rolling-answer:hover {color: var(--theme4);}
#rolling-questions[data-theme="5"] .rolling-answer:hover {color: var(--theme5);} */

.rolling-answer.solved {
    pointer-events: none;
}

.rolling-answer.solved.right {
    background-color: var(--clr-right);
    color: #ffffff
}
.rolling-answer.solved.selected.wrong {
    background-color: var(--clr-wrong);
    color: #ffffff
}
.rolling-answer.solved.right:after,
.rolling-answer.solved.wrong:after,
#rolling-questions .rolling-answer.right.solved:after,
#rolling-questions .rolling-answer.right.solved.selected:after,
#rolling-questions .rolling-answer.wrong.solved.selected:after {
    color: #ffffff
}

body.llwindow .rolling-answer.right {
    animation: 0.5s ease shake infinite; 
}

.rolling-answer:after {
    content: 'A';
    position: absolute;
    top: 50%;
    left: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    transform: translateY(-50%);
    border-right: 1px solid black;
    padding-right: 14px;   
    padding-top: 6px;
    padding-bottom: 6px;
}
.rolling-answer-0:after {content: 'A';}
.rolling-answer-1:after {content: 'B';}
.rolling-answer-2:after {content: 'C';}
.rolling-answer-3:after {content: 'D';}
.rolling-answer-4:after {content: 'E';}
.rolling-answer-5:after {content: 'F';}
.rolling-answer-6:after {content: 'G';}

/*used when each team has a diferent color*/
/* #rolling-questions[data-theme="0"] .rolling-answer:after {color: var(--theme0);border-right: 1px solid var(--theme0);}
#rolling-questions[data-theme="1"] .rolling-answer:after {color: var(--theme1);border-right: 1px solid var(--theme1);}
#rolling-questions[data-theme="2"] .rolling-answer:after {color: var(--theme2);border-right: 1px solid var(--theme2);}
#rolling-questions[data-theme="3"] .rolling-answer:after {color: var(--theme3);border-right: 1px solid var(--theme3);}
#rolling-questions[data-theme="4"] .rolling-answer:after {color: var(--theme4);border-right: 1px solid var(--theme4);}
#rolling-questions[data-theme="5"] .rolling-answer:after {color: var(--theme5);border-right: 1px solid var(--theme5);} */

#rollingClock {
    position: absolute;
    /* bottom: 9rem; */
    bottom: 2rem;
    left: 50%;
    /*background: red;*/
    width: 175px;
    height: 175px;
    transform: translateX(-50%);
}
#rollingClock.d-none {
    display: none;
}

.rollingClockNumbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

/*.rollingClockNumbers[data-theme="0"] {color: var(--theme0);}
.rollingClockNumbers[data-theme="1"] {color: var(--theme1);}
.rollingClockNumbers[data-theme="2"] {color: var(--theme2);}
.rollingClockNumbers[data-theme="3"] {color: var(--theme3);}
.rollingClockNumbers[data-theme="4"] {color: var(--theme4);}
.rollingClockNumbers[data-theme="5"] {color: var(--theme5);}*/

#rollingClockCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
}

#rolling-timesup,
#rolling-feedback {
    position: absolute;
    width: 200%;
    top: 150%;
    height: calc(100% - 180px);
    left: -50%;
    padding: 0;
    transition: all 1s ease-in;
    background: rgba(0,0,0,0.95);
    color: #ffffff;
}

#rolling-timesup.active {
    top: 180px;
    transition: all 1s ease-out;
}

#rolling-timesup-content,
#rolling-feedback-content{
    display: flex;
    flex-direction: column;
    padding: 0 calc(25% + 32px);
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

#rolling-timesup-content{
    height: 100%;
    justify-content: center;
}

#rolling-feedback {
    top: 150%;
    height: 100%;
    left: -50%;
}
#rolling-feedback.active {
    top: 0%;
    transition: all 1s ease-out;
}
#rolling-feedback-content{
    padding: 0;
    margin: 0 auto;
    margin-top: 130px;
}
#rolling-feedback-content h2{
    margin: 0 auto;
    margin-bottom: 16px;
    font-size: 28px;
}
#rolling-feedback-content p{
    font-size: 18px;
    width: 650px;
    margin: 0 auto;
    margin-bottom: 28px;
}

#rolling-timesup.active.review,
#rolling-feedback.active.review {
    top: 96%;
}

#rolling-timesup-review,
#rolling-feedback-review{
    background: #ffffff;
    background: rgba(0,0,0,0.9);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    box-shadow: 0 0 32px rgb(0,0,0,0.1);
    cursor: pointer;
}
#rolling-timesup-review:hover,
#rolling-feedback-review:hover {
    background: rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.9);
}
#rolling-timesup-review:after,
#rolling-feedback-review:after {
    content: "⏷";
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1.5rem;
    transform: translate(-50%, -59%);
}

#rolling-timesup.active.review #rolling-timesup-review:after,
#rolling-feedback.active.review #rolling-feedback-review:after {
    content: "⏶";
}


img.rolling-feedback-image {
    width: 180px;
    margin-bottom: 10px;
}
#rolling-feedback .rolling-feedback-image {
    width: 80px;
}

.rolling-feedback-image-timeout {
    width: 175px;
    animation: pop-in 0.5s ease both 1 1s, pulse-continuous 1.5s ease forwards infinite 2s;
}

.rolling-feedback-continue,
.rolling-layout-bt.rolling-feedback-continue {
    text-align: center;
    background-color: #ffffff;
    color: var(--clr-accent);
    padding: 12px 0px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: none;
    font-weight: bold;
    width: 12rem;
    margin-top: 10px;
}

.rolling-layout-bt.rolling-feedback-continue:hover,
.rolling-feedback-continue:hover {color: #ffffff;background-color: var(--clr-accent);}

.rolling-points-gain {
    color: #ffffff;
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    animation: 2s rollings-points both 1;
    text-align: center;
    width: 90%;
    /*text-shadow: 0px 0px 16px #1AC38B;*/
    color: #fb5e29;   
    color :#2ecc71;   
    text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
}
.rolling-points-lose {
    color: #d6241a;
    /*color: var(--white);*/
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    animation: 2s rollings-points both 1;
    text-align: center;
    width: 50%;
    /*text-shadow: 0px 0px 16px #F26956;*/
    text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
}

@keyframes rollings-points {
    0%      {transform: translate(-50%, -50%) scale(0);animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);}
    25%      {transform: translate(-50%, -50%) scale(1);}
    75%     {transform: translate(-50%, -50%) scale(1);top: 50%;left: 50%;opacity: 1;animation-timing-function: cubic-bezier(0.36, 0, 0.66, -0.56);}
    100%    {top: 100px;left: 100px;opacity: 0;transform: translate(-50%, -50%) scale(0);}
    
}

.rolling-hud {
    position: absolute;
    top: 100px;
    left: -50%;
    width: 200%;
    height: 81px;
    background-color: transparent;
    padding: 0 calc(50% + 16px);
    /*z-index: 10000;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}

#rolling-score{
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

#rolling-score-star {
    height: 30px;
}
.rolling-score-text {
    color: #ffffff;
    animation: initial;
    font-family: var(--ft-mt-bold);
}
.rolling-score-text.pop-it {
    display: inline-block;
    /*animation: 0.25s ease backwards pop-in 1;*/
    animation: 0.25s ease backwards gold-it 1;
}
@keyframes gold-it {
    0% {color: #ffffff;}
    50%{color: var(--clr-alt);}
    100%{color: #ffffff;}
}

#rolling-lives {
    margin-left: auto;
    margin-right: 30px;
}
.rolling-score-life {
    height: 32px;
    margin: 7px 0px 0px 5px;
}

#rolling-progress {
    max-height: 60px;
    display: flex;
    flex-direction: row;
}

.rolling-progress-icon {
    width: 60px;
    height: 60px;
    background-image: url(../images/temas/progresso.png);
    background-size: 303px;
}


.rolling-progress-icon-0 {background-position-y: -0px; }
.rolling-progress-icon-1 {background-position-y: -60px; }
.rolling-progress-icon-2 {background-position-y: -120px; }
.rolling-progress-icon-3 {background-position-y: -180px; }
.rolling-progress-icon-4 {background-position-y: -240px; }
.rolling-progress-icon-5 {background-position-y: -300px; }
.rolling-progress-icon-6 {background-position-y: -360px; }
.rolling-progress-icon-7 {background-position-y: -420px; }

.rolling-progress-icon[data-progress="0"] {background-position-x: -0px; }
.rolling-progress-icon[data-progress="1"] {background-position-x: -60px; }
.rolling-progress-icon[data-progress="2"] {background-position-x: -120px; }
.rolling-progress-icon[data-progress="3"] {background-position-x: -180px; }
.rolling-progress-icon[data-progress="4"] {background-position-x: -240px; }
.rolling-progress-icon[data-progress="5"] {background-position-x: -300px; }
.rolling-progress-icon[data-progress="6"] {background-position-x: -420px; }
.rolling-progress-icon[data-progress="7"] {background-position-x: -480px; }


#rolling-results {
    position: absolute;
    width: 200%;
    top: 150%;
    height: calc(100% - 100px);
    left: -50%;
    padding: 0 calc(50% + 16px);
    transition: all 1s ease-in;
    /*background: var(--white);*/
    background: rgba(0,0,0,0.9);
    /*color: var(--clr-text);*/
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9;
}
#rolling-results.active {
    top: 100px;
    transition: all 1s ease-out;
}
#rolling-results h2 {
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
}
#rolling-results h3 {
    margin-top: 0;
}
.rolling-results-life {
    width: 48px;
    margin: 0px 5px 20px 5px;
    
}
.rolling-results-image {
    width: 120px;
    margin-bottom: 50px;
    
}
.rolling-results-podium {
    width: 550px;
    margin-top: 20px;
}

.rolling-results-podium-score {
    color: var(--clr-accent);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.rolling-results-podium-score-0 {transform: translateX(205px);}
.rolling-results-podium-score-1 {transform: translateX(65px);}
.rolling-results-podium-score-2 {transform: translateX(-65px);}
.rolling-results-podium-score-3 {transform: translateX(-205px);}


.rolling-intro-buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 180px;
    transition: all 0.5s ease;
}
.rolling-intro-buttons .rolling-layout-bt {
    background-color: var(--clr-accent);
    color: #ffffff;
}
.rolling-intro-buttons .rolling-layout-bt:hover {
    background-color: #ffffff;
    color: var(--clr-accent);
}

.rolling-intro-buttons.inactive {
    opacity: 0;
    pointer-events: none;
}

.rolling-intro-buttons .rolling-layout-bt {
    margin: 5px;
}

.rolling-layout-bt {
    background-color: #ffffff;
    color: #1B1CD3;
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: none;
    margin: 10px auto;
    cursor: pointer;
    font-family: var(--ft-mt-bold);
    width: 8rem;
    text-align: center;
    font-weight: bold;
}

.rolling-layout-bt.reverse {
    color: var(--clr-accent);
    background-color: #ffffff;
    border: 5px solid #ffffff;
}

.rolling-layout-bt:hover {color: #ffffff;background-color: var(--clr-accent);}
.rolling-layout-bt.reverse:hover {background-color: var(--clr-accent);color: #ffffff;}

.rolling-results-end-bt {
    background-color: transparent;
    color: #ffffff;
    width: 10rem;
}
.rolling-results-end-bt:hover {color: #ffffff;background-color: var(--clr-accent);}

.rolling-results-start-bt {
    font-family: var(--ft-mt-bold);
    background-color: var(--clr-accent);
    color: #ffffff;
    padding: 8px;
    border-radius: 8px;
    text-transform: none;
    margin: 10px auto;
    cursor: pointer;
    width: 13rem;
    text-align: center;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
}

/* .rolling-results-start-bt.jumping {
    animation: glowing 1.5s infinite 2s;
}

@keyframes glowing {
    0%{
        filter: brightness(1);
    }
    50%{
        filter: brightness(2);
    }
    100%{
        filter: brightness(1);
    }
} */

/*
.rolling-results-start-bt.jumping {
    animation: pop-in 0.5s ease both 1 0.1s, pulse 1s ease forwards infinite 1s;
    animation: pulse 1s ease forwards infinite 1s;
}

.rolling-results-start-bt:hover {
    background-color: var(--white);
    color: var(--colorB);
    border: 5px solid var(--white);
}
*/

.rolling-results-start-bt:hover {
    background-color: #ffffff;
    color: var(--clr-accent);
}

.rolling-checkbox-label{
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5rem;
    color: var(--clr-text);
}

.rolling-checkbox-label input{
    width: 25px;
    height: 25px;
    margin-right: .25rem;
    cursor: pointer;
}

#rolling-leaderboard {
    position: absolute;
    width: 200%;
    top: 100px;

    height: calc(100% - 100px);
    left: -50%;
    padding: 0 calc(50% + 16px);
    transition: all 0.5s ease-in;
    background: var(--white);
    color: var(--clr-text);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
}
#rolling-leaderboard.active {
    opacity: 1;
    pointer-events: initial;
    transition: all 0.5s ease-out;
}

#leaderboard-temp {
    display: none;
    opacity: 0;
}

#leaderboard-list ul li {
    font-size: 1rem;
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

#leaderboard-list ul li .first-part {
    width: 3rem;
}

#leaderboard-list ul li .second-part {
    margin-left: 3rem;
    text-align: left;
}

.iconLeaderboardPodium {
    width: 170px;
    margin-bottom: 50px;
}

#leaderboard-points {
    text-transform: none;
    font-weight: bold;
    text-align: center;
    font-size: 1.25rem;
}


.rolling-results-life-score {
    background: var(--clr-accent);
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--white);
    padding: 4px 32px;
    display: block;
    width: min-content;
    font-weight: bold;
    margin: 20px auto;
}

#leaderboard-points .leaderboard-red.red-text {
    background: var(--clr-accent);
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--white);
    padding: 4px 32px;
    display: block;
    width: min-content;
    font-weight: bold;
    margin: 20px auto;
}

#leaderboard-position {
    text-transform: none;
    font-weight: bold;
    text-align: center;
    font-size: 1.25rem;
}
#leaderboard-position .leaderboard-red.red-text {
    background: var(--clr-accent);
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--white);
    padding: 4px 32px;
    display: block;
    width: min-content;
    font-weight: bold;
    margin: 20px auto;
}
#leaderboard-list .leaderboard-red.red-text {
    color: var(--clr-accent);
    font-weight: bold;
}

sub {
    font-size: 0.75rem;
}


#rolling-intro {
    position: absolute;
    width: 200%;
    top: 150%;
    height: calc(100% - 100px);
    left: -50%;
    padding: 0 calc(50% + 16px);
    transition: all 0.5s ease-in;
    background: var(--white);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
        /* background-image: url(../images/background/bg.png); */
        background: rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);

}

#rolling-intro.active {
    top: 100px;
    /* transition: all 0.5s ease-out; */
}

.rolling-page {
    position: absolute;
    /* display: none; */
    top: 32px;
    left: calc(25% + 32px);
    width: calc(50% - 64px);
    height: calc(100% - 64px);
    display: flex;
    border-radius: 32px;
    opacity: 0;
    z-index: 1000;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*padding-top: 8rem;*/
    justify-content: flex-start;
    text-align: center;
    /* background: var(--white); */
    overflow: hidden;
    transition: all 0.5s ease;
    /* background-image: url(../images/background/bg.png);*/
}

.rolling-page.active {
    opacity: 1;
    pointer-events: initial;
}
img.intro-logo {
    width: 60%;
    margin: 50px 0;
}
div#rolling-intro h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--clr-text);
}
.intro-image {
    width: 70%;
}
.intro-image-small {
    width: 20%;
}
.intro-icon {
    width: 64px;
}

.intro-icon-big {
    width: 196px;
}
.intro-icon-very-big {
    width: 340px;
}

.intro-icon-list  {
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
    /* justify-content: center; */
}

.intro-icon-list .intro-icon {
    margin-right: 16px;
    margin-left: calc(50% - 64px);
}

.rolling-main-screen-bt {
/*    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;*/
    font-size: 0.85rem;
    color: white;
    background-color: var(--clr-accent);
    border: 5px solid var(--clr-accent);
    text-transform: none;
    width: 9rem;
    padding: 10px;
}
.rolling-main-screen-bt.hover {
    background-color: white;
    color: var(--clr-accent);
    border: 3px solid var(--clr-accent);
}
.rolling-main-screen-bt img {
    width: 64px;
    filter: drop-shadow(0px 0px 2px var(--clr-accent));
}

.rolling-start-messages {
    font-family: var(--ft-mt-bold);
    z-index: -1;
    color: var(--white);
    position: absolute;
    top: 240px;
    font-size: 2rem;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    width: 80%;
}
.rolling-start-messages span {
    font-family: var(--ft-mt-regular);
    font-size: 1rem;
    color: var(--white);
    display: block;
    width: 100%;
    margin-top: 20px;
}
.rolling-start-messages-continue {
    display: none;
}
.rolling-start-messages.down {
    top: initial;
    bottom: 170px;
}
div#rolling-intro h2.big-text {
    margin: 1rem 0;
    font-size: 4rem;
}

#aviso-som {
    width: 400%;
    position: absolute;
    left: -50%;
    background-image: url(../images/aviso-som.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #e53317;
}

div#rolling-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e6e6e6;
    z-index: -1;
    padding: 5px;
}

#rolling-theme-alert h2 {
    text-align: center;
    margin-top: 5rem;
}

.rolling-complicated-score {
    font-size: 2.5rem;
    font-family: var(--ft-mt-bold);
}
.rolling-complicated-score .small {
    font-size: 1rem;
}

.rolling-results-image-lose {
    width: 200px;
    padding-top: 0;
}

.roleta-sample {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 30px 0;
}
.roleta-sample-roda {
    width: 100%;
    /*animation: 20s you-spin-me both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 3s;*/
    position: absolute;
    top: 0;
    left: 0;
}
.roleta-sample-roda-mask-1,
.roleta-sample-roda-mask-2,
.roleta-sample-roda-mask-3,
.roleta-sample-roda-mask-4,
.roleta-sample-roda-mask-5,
.roleta-sample-roda-mask-6 {
    width: 100%;
    /*animation: 20s you-spin-me both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 3s;*/
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: blur(8px);
}
.rolling-page.active > .roleta-sample > .roleta-sample-roda {
    /*width: 100%;*/
    animation: 20s you-spin-me both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
}
.rolling-page.active > .roleta-sample > .roleta-sample-roda-mask-1 {
    animation: 20s you-spin-me-mask-1 both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
}
.rolling-page.active > .roleta-sample > .roleta-sample-roda-mask-2 {
    animation: 20s you-spin-me-mask-2 both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
}
.rolling-page.active > .roleta-sample > .roleta-sample-roda-mask-3 {
    animation: 20s you-spin-me-mask-3 both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
}
.rolling-page.active > .roleta-sample > .roleta-sample-roda-mask-4 {
    animation: 20s you-spin-me-mask-4 both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
}
.rolling-page.active > .roleta-sample > .roleta-sample-roda-mask-5 {
    animation: 20s you-spin-me-mask-5 both 1 cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
}
.rolling-page.active > .roleta-sample > .roleta-sample-roda-mask-6 {
    animation: 20s you-spin-me-mask-6 both 1 cubic-bezier(0.34, 1.56, 0.64, 1)   1s;
}
.roleta-sample-centro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
}

div#rolling-intro h2.titulo {
    font-size: 3rem;
    color: #a7a7a7;
    margin: 20px 0;
    font-family: 'Nontserrat-Regular', sans-serif;
    position: absolute;
    top: 2rem;
}

/*@keyframes you-spin-me {
    0%      {transform: rotate(0deg);}
    10%      {transform: rotate(-60deg);}
    25%      {transform: rotate(-120deg);}
    40%      {transform: rotate(-180deg);}
    55%      {transform: rotate(-240deg);}
    70%      {transform: rotate(-300deg);}
    85%      {transform: rotate(-360deg);}
    100%      {transform: rotate(-360deg);}
}*/
@keyframes you-spin-me {
    0%      {transform: rotate(0deg);}
    5%      {transform: rotate(-72deg);}
    15%      {transform: rotate(-72deg);}
    20%      {transform: rotate(-144deg);}
    30%      {transform: rotate(-144deg);}
    35%      {transform: rotate(-216deg);}
    45%      {transform: rotate(-216deg);}
    50%      {transform: rotate(-288deg);}
    60%      {transform: rotate(-288deg);}
    65%      {transform: rotate(-360deg);}
    75%      {transform: rotate(-360deg);}
    80%      {transform: rotate(-360deg);}
    90%      {transform: rotate(-360deg);}
    100%      {transform: rotate(-360deg);}
}
@keyframes you-spin-me-mask-1 {
    0%      {transform: rotate(0deg);opacity: 0;}
    5%      {transform: rotate(-60deg);opacity: 1;}
    15%      {transform: rotate(-60deg);opacity: 1;}
    20%      {transform: rotate(-120deg);opacity: 0;}
    30%      {transform: rotate(-120deg);}
    35%      {transform: rotate(-180deg);}
    45%      {transform: rotate(-180deg);}
    50%      {transform: rotate(-240deg);}
    60%      {transform: rotate(-240deg);}
    65%      {transform: rotate(-300deg);}
    75%      {transform: rotate(-300deg);}
    80%      {transform: rotate(-360deg);}
    90%      {transform: rotate(-360deg);}
    100%      {transform: rotate(-360deg);}
}
@keyframes you-spin-me-mask-2 {
    0%      {transform: rotate(0deg);}
    5%      {transform: rotate(-60deg);}
    15%      {transform: rotate(-60deg);opacity: 0;}
    20%      {transform: rotate(-120deg);opacity: 1;}
    30%      {transform: rotate(-120deg);opacity: 1;}
    35%      {transform: rotate(-180deg);opacity: 0;}
    45%      {transform: rotate(-180deg);}
    50%      {transform: rotate(-240deg);}
    60%      {transform: rotate(-240deg);}
    65%      {transform: rotate(-300deg);}
    75%      {transform: rotate(-300deg);}
    80%      {transform: rotate(-360deg);}
    90%      {transform: rotate(-360deg);}
    100%      {transform: rotate(-360deg);}
}
@keyframes you-spin-me-mask-3 {
    0%      {transform: rotate(0deg);}
    5%      {transform: rotate(-60deg);}
    15%      {transform: rotate(-60deg);}
    20%      {transform: rotate(-120deg);}
    30%      {transform: rotate(-120deg);opacity: 0;}
    35%      {transform: rotate(-180deg);opacity: 1;}
    45%      {transform: rotate(-180deg);opacity: 1;}
    50%      {transform: rotate(-240deg);opacity: 0;}
    60%      {transform: rotate(-240deg);}
    65%      {transform: rotate(-300deg);}
    75%      {transform: rotate(-300deg);}
    80%      {transform: rotate(-360deg);}
    90%      {transform: rotate(-360deg);}
    100%      {transform: rotate(-360deg);}
}
@keyframes you-spin-me-mask-4 {
    0%      {transform: rotate(0deg);}
    5%      {transform: rotate(-60deg);}
    15%      {transform: rotate(-60deg);}
    20%      {transform: rotate(-120deg);}
    30%      {transform: rotate(-120deg);}
    35%      {transform: rotate(-180deg);}
    45%      {transform: rotate(-180deg);opacity: 0;}
    50%      {transform: rotate(-240deg);opacity: 1;}
    60%      {transform: rotate(-240deg);opacity: 1;}
    65%      {transform: rotate(-300deg);opacity: 0;}
    75%      {transform: rotate(-300deg);}
    80%      {transform: rotate(-360deg);}
    90%      {transform: rotate(-360deg);}
    100%      {transform: rotate(-360deg);}
}
@keyframes you-spin-me-mask-5 {
    0%      {transform: rotate(0deg);}
    5%      {transform: rotate(-60deg);}
    15%      {transform: rotate(-60deg);}
    20%      {transform: rotate(-120deg);}
    30%      {transform: rotate(-120deg);}
    35%      {transform: rotate(-180deg);}
    45%      {transform: rotate(-180deg);}
    50%      {transform: rotate(-240deg);}
    60%      {transform: rotate(-240deg);opacity: 0;}
    65%      {transform: rotate(-300deg);opacity: 1;}
    75%      {transform: rotate(-300deg);opacity: 1;}
    80%      {transform: rotate(-360deg);opacity: 0;}
    90%      {transform: rotate(-360deg);}
    100%      {transform: rotate(-360deg);}
}
@keyframes you-spin-me-mask-6 {
    0%      {transform: rotate(0deg);}
    5%      {transform: rotate(-60deg);}
    15%      {transform: rotate(-60deg);}
    20%      {transform: rotate(-120deg);}
    30%      {transform: rotate(-120deg);}
    35%      {transform: rotate(-180deg);}
    45%      {transform: rotate(-180deg);}
    50%      {transform: rotate(-240deg);}
    60%      {transform: rotate(-240deg);}
    65%      {transform: rotate(-300deg);}
    75%      {transform: rotate(-300deg);opacity: 0;}
    80%      {transform: rotate(-360deg);opacity: 1;}
    90%      {transform: rotate(-360deg);opacity: 1;}
    100%      {transform: rotate(-360deg);opacity: 0;}
}
/*@keyframes you-spin-me-mask {
    0%       {opacity: 0;}
    9%       {opacity: 0;}
    10%      {opacity: 1;}
    15%      {opacity: 0;}
    24%      {opacity: 0;}
    25%      {opacity: 1;}
    30%      {opacity: 0;}
    39%      {opacity: 0;}
    40%      {opacity: 1;}
    45%      {opacity: 0;}
    54%      {opacity: 0;}
    55%      {opacity: 1;}
    60%      {opacity: 0;}
    69%      {opacity: 0;}
    70%      {opacity: 1;}
    75%      {opacity: 0;}
    84%      {opacity: 0;}
    85%      {opacity: 1;}
    90%      {opacity: 0;}
    100%     {opacity: 0;}
}*/

.fade-in-fade-out {
    animation: 3s fade-in-fade-out both ease 1;
}

@keyframes fade-in-fade-out {
    0%  {opacity: 0}
    10%  {opacity: 1}
    90%  {opacity: 1}
    100%  {opacity: 0}
}

.lista-de-titulos {
    position: relative;
    width: 100%;
    margin-top: 30px;
    /*opacity: 0;*/
    font-size: 1.5rem;
}
.lista-de-titulos div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    text-align: center;
    /*animation: 3s fade-in-fade-out both ease 1;*/
}

.rolling-page.active .lista-de-titulos div {

    animation: 3s fade-in-fade-out both ease 1;
}

.rolling-page h3 {
    font-size: 1.5rem;
    margin: 10px 0 20px 0;
    color: #d6241a;
    color: var(--clr-accent);
}
#rolling-intro p {
    width: 100%;
    margin: 0;
    color:#fff;
}
#rolling-intro h1 {
    width: 100%;
    font-family: var(--ft-mt-black);
    font-size: 2rem;
    color: #fff;
}
#rolling-intro h4 {
    width: 100%;
    font-family: var(--ft-mt-black);
    color: #fff;
    margin: 0 0 30px 0;
}
.img-books-instructions{
    margin-top: 40px;
}

.img-books-instructions img{
    width: 50%;
}

.intro-image-pulse {
    width: 256px;
    margin-bottom: 20px;
}

a,
a:visited {
    color: var(--clr-accent);
}
a:hover,
a:active {
    color: var(--clr-accent);
    text-decoration: none;
}
#rolling-feedback-timesup a,
#rolling-feedback-timesup a:visited,
#rolling-feedback-timesup a:hover,
#rolling-feedback-timesup a:active{
    color: var(--theme0);
}

#aviso-som {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100000;
}
#aviso-som-safe {
    width: 640px;
    /*height: 400px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.aviso-som-botao {
    cursor: pointer;
}

.aviso-som-title {
    color: var(--theme2);
    font-size: 1.5rem;
    margin: 20px 0;
    text-align: center;
}

.aviso-som-text {
    color: var(--white);
    font-size: 1.5rem;
    margin: 20px 0;
    text-align: center;
}

@media only screen 
    and ( orientation: portrait ) {
        #aviso-som-safe {
            width: calc(100% - 64px);
        }
}

.rolling-results-small-grade.left {
    color: #fff;
    margin-right: auto;
    margin-left: 5rem;
    margin-top: 1rem;
}
.rolling-results-small-grade.right {
    color: #fff;
    margin-left: auto;
    margin-top: -5.6rem;
    margin-right: 5rem;
    margin-bottom: 0rem;
}


#closing-window {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.95);
}
#closing-window-message {
    position: absolute;
    top: 45%;
    background: #dfdfdf;
    color: #000000;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 1em 3em;
    text-align: center;
    padding: 32px;
}
#closing-window-message p {
    font-size: 20px;
    font-weight: bold;
}
#closing-window-message h3 {
    margin: 48px 0;
    /* margin: 0 0 0 48px; */
    font-weight: bold;
}
p#closing-window-message-question {
    margin: 0 0 48px 0;
}
.exit-button img {
    height: 35px;
    display: inline-block;
    margin-right: 12px;
    margin-bottom: -6px;
}
.exit-button {
    font-size: 32px;
    font-weight: normal;
    width: min-content;
    margin-left: auto;
    margin-right: 32px;
    cursor: pointer;
}
.exit-button img:hover{
    transform: scale(1.15);
}
.exit-button.right {
    margin-left: 32px;
    margin-right: 0;
}
#rolling-instructions.inactive {
    opacity: 0.5;
    pointer-events: none;
}

#aviso-video-intro {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #ffffff;
    /*display: none;*/
}
#video-intro {
    display: none;
}
#video-play {
    display: none;    
}
p:last-child {
    margin-bottom: 0;
}



/*PODIUM*/

#rolling-podium{
    background: rgb(91,198,220);
    background: linear-gradient(180deg, rgb(6,210,223,1) 20%, rgba(252,245,241,1) 100%);
    background-image: url(../images/background/rolling-podium-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 9;
    bottom: 0;
    top: 150%;
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top:1rem;
    padding-bottom: 1rem;
    transition: all 1s ease-out;
}

#rolling-podium .rolling-layout-bt{
    color: var(--clr-accent);
    background-color: #ffffff;
}

#rolling-podium .rolling-layout-bt:hover{
    color: #fff;
    background-color: var(--clr-accent);
}

#rolling-podium #rolling-layout-end-bt:hover{
    color: #fff;
    background-color: var(--clr-accent);
}

#rolling-podium.active{
    top: 100px;
}

.rolling-main-circle{
    width: 200px;
    height: 200px;
    background-color: var(--white);
    border-radius: 100%;
    display: grid;
    place-items: center;
}

.rolling-main-circle-image{
    width: 110px;
}

.rolling-podium{
    display: flex;
    width: 85%;
    height: 340px;
    margin: 1rem 0;
}


.rolling-podium-step{
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.rolling-podium-bar{
    width: 100%;
    border: 4px solid black;
    color:black;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: .2rem;

    font-weight:bold;
    font-size: 1.25rem;

    height: 55%;
}

.rolling-podium-step:not(:first-of-type) .rolling-podium-bar{
    border-left: none;
}

.rolling-podium-step:nth-of-type(2) .rolling-podium-bar{
    height: 45%;
}

.rolling-podium-step:nth-of-type(3) .rolling-podium-bar{
    height: 35%;
}

.rolling-podium-step:last-of-type .rolling-podium-bar{
    height: 25%;
}

.rolling-podium-term{
    margin-top: 1rem;
}

.rolling-podium-icon{
    width: 100px;
}



.rolling-podium-step.-active .rolling-podium-bar{
    background-color: var(--clr-accent);
    color: white;
}

.rolling-podium-step.-active .rolling-podium-term{
    color: var(--clr-accent);
    font-weight: bold;
}

.rolling-podium-step.-active .rolling-podium-icon{
    animation: iconFloat 1.15s ease infinite alternate;
}

@keyframes iconFloat{
    from{transform: translateY(-5px);}
    to{transform: translateY(5px);}
}



/*BEFORE QUESTION SCREEN*/

#rolling-before-question{
    position: absolute;
    z-index: 9;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    bottom: 0;
    top: 150%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding-top:12rem;
    transition: top 1s ease-out;

    width: 200%;
    padding-left: 50%;
    padding-right: 50%;
    left: -50%;
}

#rolling-before-question.active{
    top: 100px;
}

#rolling-before-question p{
    font-family: var(--ft-mt-bold);
    font-size: 32px;
    width: 530px;
}
#rolling-before-question span{
    font-family: var(--ft-mt-bold);
    font-size: 24px!important;
}

#rolling-before-question h3{
    margin-bottom: 0;
}
#rolling-before-question div{
    margin-top: 20px;
}


video#rolling-tutorial-video {
    position: absolute;
    top: 0;
    height: 100%;
    cursor: pointer;
}
div#rolling-sign-here {
    display: none;
    position: relative;
    margin-top: 100px;
}

div#rolling-tutorial-play {
    position: absolute;
    color: #ffffff;
    border: 9px solid var(--clr-accent);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 130px;
    padding-left: 13px;
    top: 500px;
    top: calc(50% - 100px);
    cursor: pointer;
    background: transparent;
    background: var(--clr-accent);
}

div#rolling-tutorial-play:hover {
    border: 9px solid var(--clr-accent);
    background: var(--clr-accent);
    color: #ffffff;
}

#rolling-intro-player {
    position: absolute;
    /*background: red;*/
    width: 100%;
    height: 150px;
    bottom: -15px;
    left: 0;
    z-index: 1000;
    display: none;
}
#rolling-intro-bar {
    position: absolute;
    background: rgba(127,127,127,0.25);
    width: 78%;
    height: 10px;
    left: 15%;
    top: calc(50% - 5px);
    border-radius: 5px;
}
#rolling-intro-progress {
    position: absolute;
    height: 10px;
    min-width: 20px;
    background-color: rgba(127, 127, 127, 0.5);
    border-radius: 5px;
    top: 0;
    left: 0;
    cursor: pointer;
    /*transition: 1s width linear;*/
}

#rolling-intro-position {
    position: absolute;
    height: 10px;
    min-width: 20px;
    background-color: #225077;
    border-radius: 5px;
    top: 0;
    left: 0;
    pointer-events: none;
}
#rolling-intro-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: #225077;
    border-radius: 50%;
    transform: translate(-10px, -10px);
    pointer-events: none;
}
#rolling-intro-close {
    position: absolute;
    width: 70px;
    padding: 10px;
    z-index: 1000;
    right: 10px;
    top: 10px;
    display: none;
    cursor: pointer;
}
.no-click {
    pointer-events: none !important;
}

.rolling-footer{
    position: absolute;
    width: 100%;
    bottom: 45px;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 0;
    /*z-index: 5;*/
}

.rolling-footer-bt {
    font-family: var(--ft-mt-bold);
    background-color: #ffffff;
    color: var(--clr-accent);
    padding: 12px 0px;
    border-radius: 8px;
    text-transform: none;
    margin: 10px auto;
    cursor: pointer;
    width: 12rem;
    text-align: center;
    font-weight: bold;
}
.rolling-footer-bt.jumping {
    animation: pop-in 0.5s ease both 1 0.1s, pulse 1s ease forwards infinite 1s;
    animation: pulse 1s ease forwards infinite 1s;
}

.rolling-footer-bt:hover {
    transform: scale(1.1)
}

.scoresBg{
    background-color: var(--clr-accent);
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 250px;
}

.vControls{
    position: absolute;
    bottom: -3px;
    left: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    scale: 0.4;
    z-index: 1000;
}