.live_comments {
    color: var(--bs-body-color);
}
.live_comments__list {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.live_comments__item {
    display: flex;
    column-gap: 15px;
    padding: 5px 10px;
    border: 1px solid var(--color-neutral-100);
    border-radius: 5px;
}
.live_comments__spinner {
    --bs-spinner-border-width: 2px;
}
.live_comments__info {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
    width: 200px;
    min-width: 200px;
}
.live_comments__author {
    line-height: 1.25em;
}
.live_comments__date {
    font-size: .8rem;
    color: var(--color-gray);
}
.live_comments__new_comment {
    position: relative;
}
.live_comments__comment {
    flex-grow: 1;
    outline: none;
    resize: none;
    padding: 5px 30px 5px 10px;
    width: 100%;
    display: block;
    border: 1px solid var(--color-neutral-100);
    border-radius: 5px;
    height: 35px;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
}
.live_comments__send {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 35px;
    width: 30px;
    border: none;
    outline: none;
    padding: 0;
    background: inherit;
    color: var(--color-brand-600);
    transition: opacity .2s, color .2s;
    &[disabled] {
        opacity: .6;
    }
    &:hover:not([disabled]), &:focus:not([disabled]), &:active:not([disabled]) {
        color: var(--color-brand-700);
    }
    &:active:not([disabled]) {
        color: var(--color-brand-800);
    }
}
.live_comment__send_icon {
    display: block;
    width: 20px;
}