#topbar > nav {
    margin: 0px 16px;
    height: 100%;
}

#topbar > nav > ul {
    display: flex;
    justify-content: right;
    height: 100%;
}

#topbar > nav > ul > li {
    display: inline-block;
    margin-right: 16px;
    margin-top: 10px;
    height: 100%;
    position: relative; 
}

#topbar > nav > ul > li > a {
    height: 100%;
    font-size: 1.3em;
    padding: 10px 12px;
    color: #222;
}

/* ============= winter sale % off ============*/
#top-bar-icons .top-bar-cta {
    text-decoration: none;
    padding: 10px;
    position: absolute; left: 24px; top: 0px; 
    color: #222;
    font-size: .9em;
    height: 100%;
}

#top-bar-icons .top-bar-cta:hover {
    background-color: transparent;
    color: #222;
}

.top-bar-cta > span {
    text-decoration: underline;
}

/* data tool tip */
.arrow-on-tooltip {
    display: none;
    font-size: 3em;
    position: absolute; bottom: 4px; left: -15px;
    color: #000;
}

#top-bar-icons > li > a:hover {
    color: #FFF;
    background-color: #333;
}

/* display arrow when hover over the list item */
#topbar > nav > #top-bar-icons > li:hover > span {
    display: block;
    transition: transform ease-in-out 200ms;
}

a[data-tool-tip] {
    position: relative;
}

a[data-tool-tip]::after {
    content: attr(data-tool-tip);
    display: block;
    position: absolute; bottom: 0px; right: 0px;
    background-color: #000;
    padding: .6em;
    white-space: nowrap;
    transform: scale(0); /* to not display it until hover */
    transition: transform ease-in-out 100ms,
                bottom ease-in-out 100ms;
    font-size: .5em;
}

a[data-tool-tip]:hover::after {
    transform: scale(1);
    bottom: 8px;
    right: 55px;
}
