.quizWrapper{
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 40px;
}


.quizTitle{
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #000;
}

.answerItem{
    background: #f5f6fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.answerItemCorrect{
    background: #F0FAF0;
}

.answerItemIncorrect{
    background: #FDF0ED;
}

.answerImageWrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.answerItemImage{
    width: calc(50% - 20px);
    flex-shrink: 0;
    min-height: 250px;
}

.answerItemImage img{
    width: 100%;
    position: relative;
    z-index: 20;
}

.answerItemImageInner{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.answerItemImageBlur{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(20px);
    background-color: #1a202c;
}

.correctAnswers{
    background: #f5f6fa;
    border-radius: 4px;
    padding: 4px 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000;
}
