﻿.navbar-dark
{
    background-color:#fff;
}

.navbar-nav {
    -ms-flex-direction: column;
    flex-direction: column;
}

.navbar-nav .nav-item
{
    font-size:14px;
}

.navbar-text, .nav-link
{
    
    color:#6D6E71 !important;
}

.nav-link
{
    position:relative;
}


.nav-item:hover .nav-link, .nav-item.active .nav-link, .nav-link.active, .burger-nav-link.active
{
    color:#6D6E71 !important;
}

.navbar-nav .nav-link:hover::before, .navbar-nav .nav-link.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: -13px;
    left: 0;
    background-color: #00aeef;
}

.navbar-nav .nav-link.red:hover::before, .navbar-nav .nav-link.red.active::before {
    background-color: #ee492e;
}

.navbar-nav .nav-link.green:hover::before, .navbar-nav .nav-link.green.active::before {
    background-color: #95d222;
}

.navbar-nav .nav-link.dark-blue:hover::before, .navbar-nav .nav-link.dark-blue.active::before {
    background-color: #11386a;
}

.navbar-nav .nav-link.dark-grey:hover::before, .navbar-nav .nav-link.dark-grey.active::before {
    background-color: #6D6E71;
}

.collapse .navbar-nav .nav-link:hover::before, .collapse .navbar-nav .nav-link.active::before
{
    content:none;
}

.collapse .dropdown-menu
{
    text-align:center;
}

.collapse .dropdown-menu.show::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 43px;
    left: 0;
    background-color: #00aeef;
}

.collapse .dropdown-menu.show.red::after {
    background-color: #ee492e;
}

.collapse .dropdown-menu.show.green::after {
    background-color: #95d222;
}

.collapse .dropdown-menu.show.dark-blue::after {
    background-color: #11386a;
}

.collapse .dropdown-menu
{
    background-color:#ededed !important;
}

.navbar-text {
    color: #6D6E71 !important;
}

.search-icon
{
    width:18px;
}

.navbar-brand img
{
    width:125px;
}

.dropdown-item
{
    font-size:12px;
    white-space:normal !important;
}

.navbar-toggler
{
    border-radius:0;
}

.navbar-toggler:focus
{
    background-color:#ededed;
}


@media (min-width:900px)
{
    .navbar-nav .nav-item {

        font-size: 15px;
    }

}



/*mega menu*/

/* adds some margin below the link sets  */
.navbar .dropdown-menu div[class*="col"] {
    margin-bottom: 1rem;
}

.navbar .dropdown-menu {
    border: none;
    background-color: transparent;
}

.navbar .dropdown-menu .container-fluid
{
    padding-top:0.8rem;
}

.dropdown-list-links
{
    text-align:left;
}

.dropdown-list-links li
{
    position:relative;
    padding:10px 0;
}

.dropdown-list-links li::before
{
    content:"";
    background-color:#fff;
    width:100%;
    max-width:560px;
    height:1px;
    position:absolute;
    top:0;
    left:0;
}

.dropdown-list-links li:last-child::after
{
    content:"";
    background-color:#fff;
    width:100%;
    max-width:560px;
    height:1px;
    position:absolute;
    bottom:0;
    left:0;
}

.dropdown-list-links li a
{
    padding-left:20px;
}

.dropdown-list-links li a::before
{
    content:"";
    background : url(images/bulletArrow.svg) no-repeat;
    width:15px;
    height:15px;
    position:absolute;
    top:14px;
    left:0;
}

.dropdown-list-links.green li a::before
{
    background : url(images/arrowGreen.svg) no-repeat;
}

.dropdown-list-links.red li a::before
{
    background : url(images/arrowRed.svg) no-repeat;
}

.dropdown-list-links.white li a::before
{
    background : url(images/arrowWhite.svg) no-repeat;
}


/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 1199px) {

    /* remove the padding from the navbar so the dropdown hover state is not broken */
    .navbar {
        padding-top: 0px;
        padding-bottom: 0px;
    }

        /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
        .navbar .nav-item {
            padding: .5rem .5rem;
            margin: 0 .25rem;
        }

        /* makes the dropdown full width  */
        .navbar .dropdown {
            position: static;
        }

        .navbar .dropdown-menu {
            width: 100%;
            left: 0;
            right: 0;
            top: 45px;
            display: block;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s linear;
            font-size:16px;
        }




        /* shows the dropdown menu on hover */
        .navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
            display: block;
            visibility: visible;
            opacity: 1;
            transition: visibility 0s, opacity 0.3s linear;
        }
    /*end mega menu*/

    .navbar-nav {

        -ms-flex-direction: row;
        flex-direction: row;
    }

}

