﻿

.pn-ProductNav_Wrapper {
    margin-bottom: 10px;
    height: 60px;
    position: relative;
    box-sizing: border-box;
    background-color: white;
}

    .pn-ProductNav_Wrapper > nav,
    .pn-ProductNav_Wrapper > nav > div {
        height: 100%;
    }

.pn-ProductNav {
    /* Make this scrollable when needed */
    overflow-x: scroll;
    /* For WebKit implementations, provide inertia scrolling */
    /* for mobile scroll*/
    -webkit-overflow-scrolling: touch;
    /* We don't want vertical scrolling */
    overflow-y: hidden;
    /* We don't want internal inline elements to wrap */
    white-space: nowrap;
    /* If JS present, let's hide the default scrollbar */
    /* positioning context for advancers */
    position: relative;
    font-size: 0;
}

.js .pn-ProductNav {
    /* Make an auto-hiding scroller for the 3 people using a IE */
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* Remove the default scrollbar for WebKit implementations */
}

::-webkit-scrollbar {
    display: none;
}

.pn-ProductNav_Contents {
    float: left;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    position: relative;
    width: max-content;
}

.pn-ProductNav_Contents-no-transition {
    transition: none;
}

.pn-ProductNav_Link {
    text-decoration: none;
    color: #888;
    font-size: 14px;
    display: inline-block;
    align-items: center;
    height: 60px;
    max-width: 150px;
    border: 1px solid transparent;
    padding: 10px 11px;
    white-space: normal;
    text-align: center;
    vertical-align: middle;
}

    .pn-ProductNav_Link + .pn-ProductNav_Link {
        border-left-color: #eee;
    }

    .pn-ProductNav_Link[aria-selected="true"] {
        color: #111;
    }

.pn-Advancer {
    /* Reset the button */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    padding: 0;
    border: 0;
    /* Now style it as needed */
    position: absolute;
    top: 0;
    bottom: 0;
    box-shadow: 0 2px 5px 0 rgba(24, 24, 35, 0.08);
    /* Set the buttons invisible by default */
    opacity: 0;
    transition: opacity .3s;
    height: 60px;
    width: 60px;
    vertical-align: middle;
    text-align: center;
}

    .pn-Advancer:focus {
        outline: 0;
    }

    .pn-Advancer:hover {
        cursor: pointer;
    }

.pn-Advancer_Left {
    left: 0;
}

[data-overflowing="both"] ~ .pn-Advancer_Left, [data-overflowing="left"] ~ .pn-Advancer_Left {
    opacity: 1;
}

.pn-Advancer_Right {
    right: 0;
}

[data-overflowing="both"] ~ .pn-Advancer_Right, [data-overflowing="right"] ~ .pn-Advancer_Right {
    opacity: 1;
}

.pn-Advancer_Icon {
    width: 20px;
    height: 44px;
    fill: #bbb;
}

.pn-ProductNav_Indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100px;
    background-color: transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: background-color .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out, background-color .2s ease-in-out;
    transition: transform .2s ease-in-out, background-color .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
