/* Navbar core styles */
.navbar {
  height: 58.33px;
}

.navbar-logo {
  min-width: 162.38px;
}

.navbar__item {
  padding-right: 0px;
}

.navbar-bg-default {
  background-color: #fff;
}

.navbar-main--with-shadow {
  box-shadow: 0px 10px 28px 0px rgba(13, 46, 36, 0.05);
}

.navbar-toggler {
  border: none;
  height: 40px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:hover {
  border-color: #fff !important;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-text {
  font-size: 14px;
  font-weight: 600;
  color: #72787c;
  margin-right: 9px;
}

.navbar-collapse {
  justify-content: flex-end;
  display: flex;
}

.nav-item--responsive {
  display: none;
}

.nav-link {
  color: #4e4e4e !important;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: #4e4e4e96 !important;
}

.navbar-link-active {
  font-weight: 600;
}

/* Login/Register */
ul.log-in-register {
  list-style: none;
  display: flex;
  margin-bottom: 0;
}

ul.log-in-register li:first-of-type {
  margin-left: -10px;
  border-right: 2px solid #e0e0e0;
}

.log-in-register li {
  display: flex;
  align-items: center;
}

.log-in-register-link {
  color: #4e4e4e;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  font-weight: 600;
  font-size: 15px;
  display: flex;
}

.log-in-register-link:hover {
  color: #4e4e4e96;
  text-decoration: none;
}

/* Login bar */
.login-register-bar {
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: #273252;
  font-size: 13px;
  font-weight: 600;
  height: 0;
  z-index: 9998;
  display: none;
}

.login-register-bar,
.bar-link {
  color: #fff;
}

/* Media Queries */
@media screen and (max-width: 576px) {
  .navbar-logo {
    width: 162.38px;
  }
}

@media screen and (max-width: 1200px) {
  .nav-item--responsive {
    display: block;
  }

  .navbar {
    height: auto;
  }

  .navbar-main {
    min-height: 58.5px;
    align-items: unset;
    position: fixed;
    width: 100%;
  }

  .navbar-main::after {
    width: 100%;
    height: 1px;
    background-color: #e6e9ed;
    position: absolute;
    top: 58.5px;
    left: 0;
    box-shadow: 0px 2px 4px 0px hsla(0, 0%, 53.7%, 0.41176470588235294);
    content: "";
  }

  .navbar-nav {
    margin-top: 20px;
    align-items: center;
  }

  .navbar-collapse {
    justify-content: center !important;
  }

  ul.log-in-register {
    padding-left: 0;
  }

  .log-in-register-link {
    transform: none;
  }

  .login-register-bar {
    height: 45px;
    display: flex;
  }
}

@media only screen and (min-width: 576px) {
  .navbar__item {
    padding-right: 15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .navbar__item {
    padding-right: 5px;
  }
}
