body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}
.video-container {
    position: relative;
}
.video {
    background-color: rgba(0, 0, 0, .8);
}
.barrage-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: transparent;
    overflow: hidden;
}
.barrage-container .barrage-item {
    position: absolute;
    white-space: nowrap;
    color: #2e2d22 ;
    /* transition: left 1s linear; */
}
.barrage-container .barrage-item.yellow {
    color: rgb(255, 217, 0);
}
.barrage-container .barrage-item.red {
    color: red;
}
.barrage-container .barrage-item.green {
    color: limegreen;
}

.comment-container .input-group .custom-select {
    flex-grow: .25;
}

@media (max-width: 768px) {
    .barrage-container {
        /* font-size: 12px; */
    }
    .comment-container .input-group>.custom-select,
    .comment-container .input-group>.form-control,
    .comment-container .input-group>.input-group-append,
    .comment-container .input-group>.input-group-append>button {
        flex-grow: 1;
        width: 100%;
    }
}