$contextual-nav-height: 64px;

.pdc6-contextual-nav {
    position: absolute;
    z-index: 10;
    top: 100px;
    left: 0;
    right: 0;
    padding: 0 20px;
    height: $contextual-nav-height;
    background-color: rgba( 31, 31, 31, 0.85 );
    text-align: left;

    .isAR & {
        #contextual-nav-to-top {
            right: auto;
            left: 0;
        }

        ul {
            text-align: right;
        }
    }

    #contextual-nav-to-top {
        position: absolute;
        z-index: 10;
        top: 0;
        right: 0;
        width: $contextual-nav-height;
        height: $contextual-nav-height;

        background: {
            image: url( mono_icons.png );
            repeat: no-repeat;
            position: 20px -4099px;
        }

        &:hover {
            background-position: -29px -4099px;
        }
    }

    ul {
        list-style: none;

        li {
            $gutter: 10px;

            display: inline-block;
            @include SSTFontFamily( 'bold', 14 );
            text-transform: uppercase;

            a {
                position: relative;
                z-index: 10;
                display: block;
                padding: 0 $gutter;
                line-height: $contextual-nav-height;
                color: #b0b3b8;

                &:hover {
                    color: #fff;
                }
            }

            &.current-item {
                a {
                    color: #fff;

                    &:after {
                        display: block;
                        content: '';
                        position: absolute;
                        bottom: 15px;
                        left: $gutter;
                        right: $gutter;
                        height: 3px;
                        background-color: #0561ae;
                    }
                }
            }
        }
    }
}