/*
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 : Dec 18, 2017, 12:47:39 PM
    Author     : OHM_NB
*/

/* Style the header */
.header,
.header-notxt {
    background: url('../images/customer/header.jpg') no-repeat;
    /*background: url('../images/header.jpg') no-repeat;*/
    background-color: white;
    height: 68px;
    width: 100%;
}

.header {
    /*background: url('../images/header.jpg') no-repeat;*/
    background: url('../images/customer/header.jpg') no-repeat;
}

.header-notxt {
    /*background: url('../images/header_notxt.jpg') no-repeat;*/
    background: url('../images/customer/header_notxt.jpg') no-repeat;
}

.header-icon {
    display: block;
    visibility: hidden;
    float: right;
    margin-right: 20px;
    margin-top: 15px;
    color: #0e5e9c;
    font-size: 16px;
    font-weight: bold;
}

.header-icon img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

/***** header menu ****/

.header-menu ul {
    list-style: none;
    text-align: center;
    padding-left: 150px;
    margin: 0;
}
.header-menu li {
    float: left;
    line-height: 40px;
    height: 40px;
}

.header-menu li a{
    text-decoration: none;
    color: #fff;
    display: block
}

/********** navigation ***/
.nav {
    
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 3px 15px 0 rgba(0, 0, 0, 0.19);
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}

.nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color:#33afde;
}

.nav li {
    float: left;
    border-right:1px solid white;
}

.nav li:last-child {
    border-right: none;
    padding: 4px 10px;
}

.nav li a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    height: 25px;
    width: 100px;
    padding: 4px 0px;
    
}
.nav span {
    color: white;
}

.nav li a:hover:not(.active) {
    background-color: #419fc3;
}

.nav .active {
    background-color: #3b8baa;
}

@media screen and (max-width: 600px) {
    .header-menu { display: none;}
    .header-icon label {display: none;}
  .nav ul li a:not(#home) {display: none;}
/*  .nav a.icon {
    float: right;
    display: block;
  }*/
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #81D4FA;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content label a{
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    min-width: 160px;
    height: 25px;
}

/* Show the dropdown menu on hover */
.nav li.dropdown:hover .dropdown-content {display: block;}
