.a-logo {}
.a-logo--video {
    background-color: $woodsmoke;
    padding: 36px 0 28px 0;

    @include at-x-large-size {
        padding: 52px 0 40px 0;
    }

    .a-logo__wrapper {
        margin: 0 auto;
        width: 190px;
        height: 50px;

        @include at-x-large-size {
            width: 228px;
            height: 60px;
        }
    }

    svg {
        fill: $white;
    }
}

.a-video {
    background-color: $woodsmoke;
}

.a-video__wrapper {
}

.a-video__player {
}

.a-video__player__wrapper {
}

.a-video__consent .bb-p,
.a-video__consent .bb-a {
    color: #fff;
}

.a-video__sidebar {
    background-color: $shark;
    padding: 0 20px 20px 20px;
}

.a-video__playlist {
    margin: 0 -10px;
}

.a-video__playlist-item {
    & + .a-video__playlist-item {
        margin-top: 20px;

        .c-card {
            border-top: 1px solid $mineshaft;
            padding-top: 20px;
        }
    }

    display: inline-block;
    padding: 0 10px;
    width: 100%;

    .c-card__images {
        &:after {
            border: 2px solid $cornflower-blue;
            bottom: 0;
            box-sizing: border-box;
            content: '';
            height: 100%;
            left: 0;
            opacity: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition-duration: 300ms;
            width: 100%;
        }
    }

    .c-card__image {
        &:after {
            @include font("GOTHAM", 10px, 700, 16px, 0);
            background-color: $cornflower-blue;
            bottom: 0px;
            color: $white;
            content: 'Now Playing';
            left: 0px;
            opacity: 0;
            padding: 4px;
            position: absolute;
            transition-duration: 300ms;
        }
    }

    &.is-active {
        .c-card__images {
            &:after {
                opacity: 1;
            }
        }

        .c-card__image {
            &:after {
                opacity: 1;
            }
        }
    }
}

.a-video__sidebar__wrapper {}

.a-video__sidebar__title {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    @include font("GOTHAM", 12px, null, 12px, 60);
    color: $white;
    margin: 0;
    padding: 24px 0 8px 0;
    text-transform: uppercase;

    @include at-x-large-size {
        @include font-size(10px);
        @include line-height(16px);
    }
}

.a-video__sidebar__list {
    left: 20px;
    overflow-x: hidden;
    padding-bottom: 20px;
    right: 20px;
}

.a-video__content-body {

}

.a-video__ad {
    .ad__block {
        @include at-x-large-size {
            padding: 0;
        }
    }
}