.navbar {
  display: flex;
  background-color: #1b202b;
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 1;
  height: 80px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
}
.navbar__linkContainer {
  border: none;
}
.navbar__link,
.navbar__link:hover {
  float: left;
  display: flex;
  height: 100%;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1rem;
  background-color: #1b202b;
  cursor: pointer;
  border: none;
}
.navbar__link--active,
.navbar__link--active:hover {
  border-bottom: 3px solid #88e506;
}
.navbar__logo {
  width: 80px;
  margin: 0px 40px;
}
.navbar__buttonContainer {
  margin-left: auto;
  margin-right: 40px;
  display: flex;
  align-items: center;
}
.navbar__button {
  color: white;
  height: 2.5rem;
  background: #494d55;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.5rem 0.8rem;
  line-height: 1.42857143;
  border-radius: 5px;
  margin: 0.2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cdropdown {
  position: absolute;
  top: 80px;
  background: rgb(185 185 185 / 24%);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
  border: none;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}
.cdropdown--hidden {
  visibility: hidden;
}
.cdropdown__link {
  text-decoration: none;
  color: black;
  width: 100%;
  padding: 10px 20px;
}
.cdropdown__link:hover {
  background-color: #e7e7f1;
  color: black;
}
.navbar__profileBtn {
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 151px;
}
.profileIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e2f0ff;
  border-radius: 50%;
  border: 1px solid #d2e7ff;
  box-sizing: border-box;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.15);
  height: 30px;
  width: 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #3c7dc6;
}
@media (max-width: 500px) {
  .navbar__link {
    display: none;
  }
  .navbar__link.nav-item:nth-child(1) {
    display: flex;
  }
}
@media (max-width: 700px) {
  .navbar__linkContainer {
    visibility: hidden;
  }
}
#signup-nav {
  position: fixed;
  width: 100vw;
  height: 50px;
  background-color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  top: 0px;
  font-size: 14px;
}
#start-trial-nav {
  color: #89c16a;
  font-weight: 700;
  border: 1px solid#89C16A;
  padding: 5px;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  margin-top: auto;
  margin-bottom: auto;
}
.current-link {
  border-bottom: 2px solid #89c16a;
}
.link-row a.link {
  color: black;
  font-weight: 500;
  user-select: none;
  cursor: pointer;
  padding: 15px 7px 10px 7px;
}
.link-row {
  margin-left: auto;
  margin-right: 80px;
  display: flex;
  height: 100%;
}
#schools-link {
  pointer-events: none;
  color: #333333;
  opacity: 0.5;
}
#hamburger {
  display: none;
}
@media (max-width: 500px) {
  .link-row {
    display: none;
    position: fixed;
    top: 50px;
    right: -80px;
    flex-direction: column;
    background-color: white;
    height: 160px;
  }
  #strt-trial-nav,
  .link-row span {
    display: none;
  }
  #hamburger {
    display: block;
    margin-left: auto;
    margin-right: 30px;
    border: 1px solid #89c16a;
    color: #89c16a;
    padding: 3px 7px;
    border-radius: 3px;
  }
}
