.bg__viewer-column {
    overflow-y: auto;

    > .bg__column-header {
        z-index: 2;
        display: flex;
        justify-content: space-between;

        > .playlist {
            padding-left: 10px;

            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: calc(100% - 80px);

            > strong {
                margin-right: 10px;
                padding-top: 13px;
                display: inline-block;
            }

            > .active {
                cursor: pointer;
                margin: 4px 0;
                border-radius: 2px;
                padding: 9px 30px 9px 10px;
                background-color: rgba(white, 0.3);
                border: 1px solid $clGreyTint;
                background-image: $arrowDownDarkUrl;
                background-repeat: no-repeat;
                background-position: center right 10px;

                &:hover {
                    background-color: white;
                }

                &.down {
                    background-image: $arrowUpDarkUrl;
                }
            }
        }

        > .actions {
            > .btn {
                margin-left: 0;
                background-image: none;                
                padding-left: 15px;
                padding-right: 15px;
                margin-top: 0;
                height: 100%;

                &.prev,
                &.next {
                    padding: 10px 15px;
                    font-size: 0;
                    background-position: center;
                    background-repeat: no-repeat;
                }

                &.prev {
                    background-image: $arrowLeftDarkUrl;
                }

                &.next {
                    background-image: $arrowRightDarkUrl;
                }
            }
        }
    }

    // Main column content
    > .column-content {
        // Media player
        > .player {
            position: relative;
            background-color: $clDark;
            color: white;
            text-align: center;

            > .error {
                padding: 15px 20px;
                border: 1px solid $clRed;
                background-color: mix($clRed, white, 60%);
                color: $clDark;
                text-align: center;
            }

            &.locked > .bg__audio-playout > .bg__flex-player,
            &.locked > .bg__video-playout > .bg__flex-player {
                position: relative;
                &::before,
                &::after {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    left: 0;
                    top: 0;
                    z-index: 1;
                }

                &::before {
                    // striped pattern
                    background: repeating-linear-gradient(
                        45deg,
                        rgba(white, 0.2),
                        rgba(white, 0.2) 20px,
                        rgba(white, 0.4) 20px,
                        rgba(white, 0.4) 40px
                    );
                }

                &::after {
                    // lock icon
                    background-image: $iconLockWhiteUrl;
                    background-repeat: no-repeat;
                    background-position: center center;
                    background-size: 10%;
                }
            }
        }
    }
}
