.div-block {
    width: 100%;
        display: flex;
    align-items: center;
}
.quizz-intro {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity .4s ease, transform .4s cubic-bezier(.76, 0, .24, 1);
    cursor: pointer;
}

.quizz-intro.is-leaving {
    opacity: 0;
    transform: translateY(-15px) scale(.98);
}

.quizz-app {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .45s ease, transform .45s cubic-bezier(.76, 0, .24, 1);
    width: 100%;
}

.quizz-app.is-visible {
    opacity: 1;
    transform: translateY(0);
    position: absolute;
}

.bird-quizz {
    width: 100%;
}

.quizz-progress {
    margin-bottom: 30px;
}

.quizz-progress-top {
    margin-bottom: 10px;
}

.quizz-progress-track {
    width: 100%;
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, .25);
}

.quizz-progress-bar {
    height: 100%;
    background: #fff;
    transition: width .5s cubic-bezier(.76, 0, .24, 1);
}

.quizz-loading-text{
    text-align: center;
}

.quizz-question {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .3s ease, transform .3s cubic-bezier(.76, 0, .24, 1);
}

.quizz-question.is-active {
    opacity: 1;
    transform: translateX(0);
}

.quizz-question.is-leaving {
    opacity: 0;
    transform: translateX(-30px);
}

.question-quizz {
    font-size: clamp(24px, 3vw, 45px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.quizz-multiple-info {
    margin-bottom: 20px;
    opacity: .7;
}

.quizz-answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quizz-answer {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
    font-size: 22px;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: .01em;
}

.quizz-answer:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateX(5px);
}

.quizz-answer.is-selected {
    background: #fff;
    color: #000;
}

.quizz-answer-check {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.quizz-answer.is-selected .quizz-answer-check {
    background: currentColor;
    box-shadow: inset 0 0 0 4px #fff;
}

.quizz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.quizz-prev,
.quizz-next,
.quizz-show-results,
.quizz-restart {
    cursor: pointer;
}

.quizz-restart.button-line {
    background-color: transparent !important;
    color: #fff;;
}

.wrapper-buttons-results{
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.quizz-next:disabled {
    opacity: .35;
    pointer-events: none;
}

.quizz-result {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    border: 1px solid;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.quizz-result-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.quizz-profile {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid #fff;
    border-radius: 100px;
    background-color: #fff;
    color: #192E4C;
}

.quizz-result-text {
    max-width: 600px;
}
