header {
  position: fixed;
  top: 0;
  min-height: 50px;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #1A4686;
  -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.26);
  box-shadow: 0 3px 5px rgba(0,0,0,0.26);
  color: #ffffff;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  z-index: 9;
  align-content: space-between;
}

.avatar {
  float: left;
  height: 45px;
  width: 45px;
  border: 1px none #000000;
  border-radius: 20px;
  margin-right: 10px;
}

.navbar-header {
  flex-grow: 2;
  width: 33.33%;

  order: 1;
  display: flex;
  align-items: center;
}

.header-menu {
  flex-grow: 2;
  width: 33.33%;
  order: 2;
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: center;
}

.header-menu-link {
  color: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
}

.header-menu-link:hover,
.header-menu-link:focus,
.header-menu-link:active {
  color: #fff;
}

.header-info {
  flex-grow: 2;
  width: 33.33%;
  order: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Altera o padrão bootstrap */
.navbar-nav>li>a {
  line-height: 20px;
  color: #ffffff;
}

.navbar-nav>li>a:focus,
.navbar-nav>li>a:active,
.navbar-nav>li>a:hover,
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover
 {
  background-color: #2A56C6;
}

/* Dropdown usuário; */
.dropdown-menu-usuario{
    padding: 10px;
    font-size: 13px;
}

.dropdown-menu-usuario:after {
    position: absolute;
    top: -8px;
    right: 9px;
    display: inline-block;
    content: '';
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
}

.texto-box-usuario{
  color: #000;
}


@media (min-width: 810px){
  .navbar-toggle {
      display: none;
  }
}

@media all and (max-width: 810px) {
  header{
    position: fixed;
    width: 100%;
    z-index: 9999;
    padding-left: 15px;
  }

  .icon-bar {
    background: #fff;
  }

  .header-menu {
    float: left;
    width: 100%;
    position: absolute;
    margin-top: 50px;
    background: #1A4686;
    left: 0px;
    font-size: 16px;
  }

  .dropdown-menu>li>a.header-menu-link {
    color: #fff;
    font-size: 16px;
  }

  .dropdown-menu>li>a.header-menu-link:hover {
    background: #2A56C6;
  }

  .navbar-collapse {
    width: 100%;
  }

  .header-menu-link {
    float: left;
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
}


