/*----------------------------------------------------------------------------------------
  File:       home.css
  Author:     Sebastian Morgan
  Custodian:  Sebastian Morgan (sm@enpira.io)
  Date Added: 2019-03-18
  Purpose:    Provides style markup for the pre-login navbar.
  Notes:      -
----------------------------------------------------------------------------------------*/

nav
{
  padding-right: 50px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px !important;
}

.navbar {
  position: relative;
  /* display: flex;
  flex-direction: row;
  justify-content: space-between; */
  margin: 0 !important;
  padding: 8px 16px !important;
}

a.navbar-brand {
  padding: 8px 16px !important;
  margin: 0 !important;
  position: relative;
  height: 60px;
}

.navbar-toggler {
  padding: 0px 4px;
  width: 35.75px;
  height: 25.75px;
  border-radius: 5px !important;
}

.navbar-toggler-icon {
  position: relative;
  width: 100%;
  height: 20px;
}

#enpiraLogo {
  height: 55px;
  position: relative;
}

#navbarNavAltMarkup {
  padding: 8px;
}

.nav-item {
  margin-right: 20px;
}

.activeLink {
  color: #3E5AA8;
}

.dropdown-item {
  font-size: 16px;
  padding: 4px 12px;
}

#navbarContent {
  display: flex;
  padding: auto 15px;
}

@media all and (max-width: 991px) {
  #navbarContent {
    display: none;
  }

  .navbar:before,
  .navbar:after {
    display: none;
    content: none;
  }

  .navbar-nav {
    float: none;
  }
}

