/*Виджет-форма Квиз*/
.quiz-widget {
    position: fixed;
    top: 30%;
    right: -9px;
    z-index: 1000;
    width: 60px;
    height: 230px;
    background: transparent;
    border-radius: 16px 0 0 16px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    overflow: visible;
    display: flex;
    align-items: flex-start;
}
.quiz-widget-label {
    writing-mode: vertical-rl;
    text-align: center;
    font-weight: bold;
    color: #333;
    padding: 16px 0;
    font-size: 18px;
    letter-spacing: 2px;
    background: #ffe066;
    border-radius: 16px 0 0 16px;
    min-width: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    border: 2px solid #fff;
    margin-right: 0;
    transition: background 0.2s;
}
.quiz-widget-content {
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 16px 18px;
    width: 260px;
    background: #fff;
    border-radius: 16px 0 0 16px;
    margin-left: -4px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.quiz-widget:hover .quiz-widget-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.quiz-widget:hover .quiz-widget-label {
    display: none;
}

@media (max-width: 600px) {
    .quiz-widget {
        right: -9px;
    }
    .quiz-widget-label {
        font-size: 14px;
        padding: 8px 0;
        min-width: 32px;
    }
}
/*Конец виджет-формы Квиз*/