/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 11, 2020, 2:24:24 PM
    Author     : Haroon Ur Rashid
*/

.navbar {
    min-height: 125px;
}

header a.logo img {
    max-height: 100px;
}

.tab-style1 .nav-tabs li {
    width: 25%;
}

.required-error {
    border: 1px solid #ee2323 !important;
}

label.error {
    display: none !important;
}

.change-lang-link {
    font-size: 18px;
    color: #FFF;
    display: inline-block;
    margin: 0 30px;
    font-weight: 600;
}

@media screen and (min-width: 992px) {
    .change-lang-link {
        margin-top: 26px;
    }
}

.navbar-nav>li {
    position: relative;
}

.navbar-nav>li ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav>li ul li a {
    padding: 10px 15px;
    display: block;
    font-weight: normal;
}

@media screen and (min-width: 992px) {
    .navbar-nav>li ul {
        position: absolute;
        left: 0;
        top: 100%;
        background-color: #FFF;
        width: 180px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
        opacity: 0;
        visibility: hidden;
    }

    .navbar-nav>li:hover ul {
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav>li ul li+li {
        border-top: 1px solid #DDD;
    }

    .navbar-nav>li ul li a:hover {
        color: #000;
    }
}