.question__wrapper {
    width: auto;
}

.question {
    flex: 0 0 auto;
}

.quiz__countdown {
    display: none;
}

.quiz__nextwrapper[disabled='disabled'] .quiz__nextbutton {
    background-color: #eee;
    color: #ddd;
    /* pointer-events: none; */
}

.question--active .quiz__button:nth-child(1) {
    transition-delay: 5s;
}
.question--active .quiz__button:nth-child(2) {
    transition-delay: 5.1s;
}
.question--active .quiz__button:nth-child(3) {
    transition-delay: 5.2s;
}

.quiz__buttonwrapper {
    position: relative;
}

.question--active .spinner {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1.5em;
    margin-left: -1.5em;
    z-index: -1;
}

.question--active .spinner::before,
.question--active .spinner::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #ddd;
    animation: prixClipFix 2s linear infinite;
}
.question--active .spinner::after {
    border-color: #e40337;
    animation: prixClipFix 2s linear infinite,
        rotate 0.5s linear infinite reverse;
    inset: 6px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }
    50% {
        clip-path: polygon(
            50% 50%,
            0 0,
            100% 0,
            100% 100%,
            100% 100%,
            100% 100%
        );
    }
    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    }
}

.right--display:before {
    background-color: green;
}

.startbox__hero img,
.endbox__hero img {
    max-width: 80%;
    display: block;
    height: auto;
}

.startbox__herotitle,
.endbox__bigtext {
    font-size: 3rem;
    border-top: 3px solid;
    padding-top: 1rem;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-transform: normal;
}

.rankingbox .rankingbox__hero .rankingbox__herotitle {
    font-size: 2em;
    line-height: 1.2;
    border-top: 2px solid;
    padding-top: 3vh;
    margin-top: 4vh;
}

.rankingbox__heroimage {
    width: 62%;
}

.quiz__questiontext,
.quiz__buttontext,
.startbox__herotextlist {
    text-wrap: balance;
}

.startbox__herotextlist li {
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.4em;
    position: relative;
    /* text-align: center; */
}

.startbox__herotextlist li:before {
    display: block;
    content: '';
    border-bottom: 0.2em solid #e40337;
    border-left: 0.2em solid #e40337;
    border-right:0.2em solid transparent;
    width: 0.75em;
    height: 0.38em;
    transform: rotate(-50deg);
    margin-top: 0em;
    margin-left: 0.15em;
}

.startbox__herotextlist li:after {
    display: block;
    content: '';
    width: 1em;
    height: 1em;
    background-color: #dde6ed;
    position: absolute;
    left: 0;
    top: 0.1em;
    z-index: -1;
    border-radius: 50%;
}

/* .startbox__herotextlist li + li:before {
    content: '';
    display: block;
    width: 1rem;
    border-top: 1px solid #ccc;
    margin: auto;
    padding-top: 1rem;
} */
