.bg__playlist {
    .bg__playlist-item-num-matches {
        color: crimson;
    }

    .bg__playlist-items {
        .bg__playlist-item {
            background-color: white;
            border-bottom: 1px solid #ccc;

            transition: background-color $transition;

            .bg__segment {
                padding: 7px 10px 7px 5px;
                cursor: pointer;
                color: black;
                border-left: 5px solid transparent;

                &:hover {
                    background-color: mix(white, $clPrimary, 90%);
                }

                &.main {
                    color: $clDark;
                }

                &.active {
                    border-left: 5px solid $clPrimary;
                    background-color: mix(white, $clPrimary, 80%);
                    &:hover {
                        background-color: mix(white, $clPrimary, 80%);
                    }
                }

                .bg__segment-title {
                    cursor: pointer;
                }

                .bg__segment-duration {
                    background-color: $clPrimary;
                    border-radius: 4px;
                    color: #fff;
                    display: inline-block;
                    font-size: 1rem;
                    padding: 1px 6px;
                }
            }
        }
    }

    .bg__playlist-items-raw {
        margin-top: 2px;
        padding: 10px;
        label {
            font-weight: bold;
        }
        .bg__playlist-item-raw {
            color: #888;
            padding: 5px;
        }
    }
}
