﻿/*Here I will write css for show horizantal nav menu*/

.navbar {
    min-height: 43px !important;
    border-radius: initial;
}

    .navbar ul {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #000;
    }

        .navbar ul li {
            display: block;
            position: relative;
            background: #000;
        }

@media (min-width:768px) {
    .navbar ul li {
        float: left;
    }

    .navbar li ul {
        display: none;
    }
}

.navbar ul li a {
    display: block;
    padding: 1em;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
}

.multiselect-parent ul li {
    background: #fff !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    float: none;
}

    .multiselect-parent ul li a {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

        .multiselect-parent ul li a:hover {
            background: #fff !important;
        }

.multiselect-parent li.divider {
    background: #e5e5e5 !important;
}

.navbar li > ul > li {
    padding-left: 10px;
}

    .navbar li > ul > li > a:before {
        content: "-";
        padding-right: 10px;
    }

    .navbar li > ul > li.active > a:before {
        content: "*";
    }

@media (min-width:768px) {
    .navbar li > ul > li {
        padding-left: initial;
    }

        .navbar li > ul > li > a:before, .navbar li > ul > li.active > a:before {
            content: initial;
            padding-right: initial;
        }

        .navbar li > ul > li.active > a {
            background: #3b536b;
        }

    .navbar ul > li:hover > a, .navbar ul > li.active > a {
        background: #2c3e50;
    }

    .navbar li:hover > ul {
        display: block;
        position: absolute;
        z-index: 1001;
    }

    .navbar li:hover li {
        float: none;
    }

    .navbar li:hover a {
        background: #2c3e50;
        color: #fff;
    }
}

.main-navigation li ul li {
    border-top: 0;
}

ul ul ul {
    left: 100%;
    top: 0;
}

ul:before,
ul:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

ul:after {
    clear: both;
}

.navbar-toggle {
    margin-bottom: 0px;
    margin-right: 4px;
    margin-top: 0px;
}

    .navbar-toggle .icon-bar:nth-of-type(2) {
        top: 1px;
    }

    .navbar-toggle .icon-bar {
        position: relative;
        transition: 300ms ease-in-out;
    }

    .navbar-toggle.active {
        background: none;
    }

        .navbar-toggle.active .icon-bar:nth-child(2) {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 8px;
        }

        .navbar-toggle.active .icon-bar:nth-child(3) {
            opacity: 0;
        }

        .navbar-toggle.active .icon-bar:last-child {
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: -8px;
        }

/*YOU Can download this css from the below link (see youtube description)
    */

