/******************************************************************************************************
*
* Project		: RT Live
* File			: navigation.css
* Description	: Styles for the RT Live navigation bar.
* Author		: Harindra Herath
* Copyright		: Race Technology Ltd, UK
*
*
* Version	  Date			Author					Change/Reason
* -------	----------		--------------------	-------------------------------------------------------
*	1.0		06/04/2015		Harindra Herath		Created
*******************************************************************************************************/

div#navigation {
    margin: 2px 40px 0 40px;
    clear: both;
    min-height: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    height: auto;
    border-bottom: 1px solid #3b3b46;
}

ul {
    display: block;
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}

div#navigation ul li a {
    text-decoration: none;
    color: white;
    font-size: 14pt;
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding: 0 0 14px;
}

div#navigation li {
    border: none;
    padding: 10px 14px 0;
    font-size: 14pt;
    position: relative;
}

div#navigation li:not(:first-child) {
    border-left: 1px solid #5a5a63;
}

div#navigation ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background-color: transparent;
}

div#navigation li.selected a::after {
    background-color: currentColor;
}

/*Menu Item colours
*/
div#navigation ul li a.selected {
    color: var(--accent-color);
    cursor: default;
}

div#navigation ul li a.normal {
    color: white;
}

div#navigation ul li a.normal:hover {
    color: #FD9921;
}

/*desktop site*/
@media screen and (min-width: 913px) {
    div#navigation li {
        display: inline-block;
    }

    div#navigation ul li a {
        text-decoration: none;
        color: white;
        font-size: 14pt;
        font-weight: 600;
    }
}

@media screen and (max-width: 912px) {
    div#navigation {
        border-bottom: none;
    }

    div#navigation li {
        border-left: none;
        padding: 5px 0;
    }

    div#navigation ul li a {
        padding: 0;
    }

    div#navigation ul li a::after {
        display: none;
    }
}
