/* Navbar */
.navbar-nav .hamburger {
  display: none;
  color: #191919;
  padding: 7px 16px 8px;
  font-size: 1.5em;
}

.main-nav__links {
  flex-direction: row;
  display: flex;
}

@media screen and (max-width: 900px) {
  .navbar-nav a {
    display: none;
  }

  .is-open .nav-link {
    display: block;
  }

  .is-open .fa-bars {
    display: none;
  }
  .fa-times {
    display: none;
    font-size: 26px;
    padding: 6px 2px;
  }
  .is-open .fa-times {
    display: block;
  }
  .navbar-nav .hamburger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    text-decoration: none;
  }
  .main-nav {
    width: 100%;
  }
  .main-nav__links.is-open {
    flex-wrap: wrap;
    flex-direction: column !important;
    width: 100%;
    height: 100vh;
    justify-content: center;
    text-align: center;
    padding-bottom: 40vh;
    border-top: 1px solid;
  }
}
.navbar-brand {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0;
  min-width: 334px;
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    max-width: calc(100% - 54px);
    margin-right: 0;
    width: 100%;
    min-width: unset;
  }
}
.navbar-brand__link {
  float: left;
  min-width: 38px;
  margin-left: 10px;
  margin-right: 10px;
}

.course-nav-link {
  width: 100%;
  white-space: nowrap;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  height: 52px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-left: 1px solid;
  border-right: 1px solid;
  color: #191919;
  font-size: 0.85em;
}
.course-nav-link.is-open,
.course-nav-link:hover {
  text-decoration: none;
  background-color: #191919;
  color: #fff;
  border-left: 1px solid #191919;
  border-right: 1px solid #191919;
}

/* @media screen and (min-width: 374px) {
  .course-nav-link {
    justify-content: center;
  }
} */

@media screen and (min-width: 767px) {
  .course-nav-link {
    display: none;
  }
}

.course-nav-link__text {
  padding-left: 10px;
}
