﻿/* CUSTOMER MENU */
nav.CustomerMenu
{
    float: right;
    width: 100%;
    max-width: 100%;
}
    nav.CustomerMenu ul
    {
        padding-top: 10px;
        float: right;
        max-width: 100%;
    }

    nav.CustomerMenu ul li
    {
        float: left;
        padding-right: 20px;
    }

        nav.CustomerMenu ul li:last-child
        {
            border-right: 0px;
            padding-right: 0;
        }

        nav.CustomerMenu ul li:first-child
        {
            border-left: 0px;
        }

        nav.CustomerMenu ul li a, nav.CustomerMenu ul li span
        {
            text-decoration: none;
            font-size: 1em;
            color: #fafafa;
            text-transform: uppercase;
            display: block;
            white-space: nowrap;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
            padding-right: 20px;
        }
    nav.CustomerMenu .LoggedInUser
    {
        float: right;
        cursor: pointer;
        max-width: 100%;
    }

    nav.CustomerMenu .LoggedInUser span:after
    {
        position:absolute;
        right:0px;
        content: '\f0d7';
        font-family: 'FontAwesome5';
    }

    nav.CustomerMenu ul li a:hover, nav.CustomerMenu ul li span:hover
    {
        color: #CDE1E9;
    }


.CustomerMenu .CustomerMenuDropDown
{
    display: none;
    position: absolute;
    background: #000;
    border: 1px solid #aaa;
    z-index: 999;
    right: 0;
    top: 40px;
    border-top: 0;
    padding-top:0;
}
    .CustomerMenu .CustomerMenuDropDown.Selected
    {
        display: block;
    }

.CustomerLogout { 
    cursor:pointer;
}

.CustomerMenuDropDown li
{
    float: left;
    width: 100%;
    border: 0px;
    margin-left: 0px;
    box-sizing: border-box;
    padding-left: 0;
}

        .CustomerMenuDropDown li a, .CustomerMenuDropDown li span
        {
            height: 30px;
            line-height: 30px;
            display: block;
            padding-left: 10px;
            white-space: nowrap;
            padding-right: 10px;
        }

       

/*.CustomerMenuWrapper
{
    cursor: pointer;
    position: relative;
    color: #aaa;
}

    .CustomerMenuWrapper:after
    {
        content: '\f0d7';
        font-family: 'FontAwesome';
        padding-left: 2px;
    }

    

        .CustomerMenuWrapper .CustomerMenu.Selected
        {
            display: block;
        }

        .CustomerMenuWrapper .CustomerMenu li
        {
            float: left;
            width: 100%;
            border: 0px;
            margin-left: 0px;
            box-sizing: border-box;
            padding-left: 0;
        }

            .CustomerMenuWrapper .CustomerMenu li a
            {
                height: 30px;
                line-height: 30px;
                display: block;
                padding-left: 10px;
                white-space: nowrap;
                padding-right: 10px;
            }

                .CustomerMenuWrapper .CustomerMenu li a:hover
                {
                    background-color: #666;
                }*/
