.cb06-conv {
    display: grid;
    gap: 15px;
    padding-top: 8px;
}

.cb06-conv__progress {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(100, 116, 139, .18);
}

.cb06-conv__progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    transition: width .25s ease;
}

.cb06-conv__counter {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.cb06-conv__question {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    color: inherit;
}

.cb06-conv__help {
    margin: -7px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
}

.cb06-conv__choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 290px;
    overflow-y: auto;
    padding-right: 3px;
}

.cb06-conv__choice {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(100, 116, 139, .23);
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    color: inherit;
    font: inherit;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition:
        border-color .18s ease,
        background .18s ease,
        transform .18s ease;
}

.cb06-conv__choice:hover,
.cb06-conv__choice:focus-visible,
.cb06-conv__choice.is-selected {
    border-color: #2563eb;
    background: rgba(37, 99, 235, .11);
    transform: translateY(-1px);
}

.cb06-conv__field {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(100, 116, 139, .28);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: inherit;
    font: inherit;
}

textarea.cb06-conv__field {
    min-height: 110px;
    resize: vertical;
}

.cb06-conv__actions {
    display: flex;
    gap: 9px;
    justify-content: space-between;
}

.cb06-conv__button {
    min-height: 44px;
    padding: 10px 15px;
    border: 0;
    border-radius: 11px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cb06-conv__button--back {
    background: rgba(100, 116, 139, .14);
    color: inherit;
}

.cb06-conv__button--next {
    margin-left: auto;
    background: #2563eb;
    color: #fff;
}

.cb06-conv__summary {
    max-height: 235px;
    overflow-y: auto;
    padding: 12px;
    border-radius: 12px;
    background: rgba(100, 116, 139, .08);
    font-size: 13px;
    line-height: 1.55;
}

.cb06-conv__consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.45;
}

.cb06-conv__success {
    padding: 18px;
    border-radius: 15px;
    background: rgba(16, 185, 129, .12);
}

.cb06-conv__error {
    margin: 0;
    color: #dc2626;
    font-size: 13px;
}

@media (max-width: 520px) {
    .cb06-conv__choices {
        grid-template-columns: minmax(0, 1fr);
        max-height: 250px;
    }

    .cb06-conv__choice {
        min-height: 43px;
    }
}
