
/****************************************/
/* NAVBAR */
/****************************************/
.tl-navbar {
  background: #f7f7f7;
  color: #444444;
  border: transparent; /*1px solid rgba(0, 0, 0, 0.1);*/
  border-bottom-color: transparent;/* rgba(0, 0, 0, 0.3);*/
  border-radius: 4px;
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  display: block;
  min-height: 46px;
  max-width: calc(100%);
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 8px;
}

.tl-navbar .tl-mobile {
  display: none;
}


.tl-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

header .tl-mobile .tl-login {
  display: none;
}

/*
 * 1. Create position context for dropdowns
 */
.tl-navbar-nav > li {
  /* 1 */
  position: relative;
}
/*
 * 1. Dimensions
 * 2. Style
 */
.tl-navbar-nav > li > a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 45px;
  padding: 0 15px;
  line-height: 44px;
  /* 2 */
  color: #444444;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  text-shadow: 0 1px 0 #ffffff;
  white-space: nowrap;
}
/* Appear not as link */
.tl-navbar-nav > li > a[href='#'] {
  cursor: text;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.tl-navbar-nav > li:hover > a,
.tl-navbar-nav > li > a:focus,
.tl-navbar-nav > li.tl-open > a {
  background-color: transparent;
  color: #444444;
  /* 3 */
  outline: none;
  position: relative;
  z-index: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* OnClick */
.tl-navbar-nav > li > a:active {
  background-color: #f5f5f5;
  color: #444444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Active */
.tl-navbar-nav > li.tl-active > a {
  background-color: #fafafa;
  color: #444444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}



.tl-navbar-toggle {
  font-size: 18px;
  color: #444444;
  text-decoration: none;
  display: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.tl-navbar-toggle:hover,
.tl-navbar-toggle:focus {
  color: #444444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/*
 * 1. Center icon vertically
 */
.tl-navbar-toggle:after {
  content: "\f0c9";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}
.tl-navbar-toggle-alt:after {
  content: "\f002";
}