/* Navbar */
.top-nav {
  position: fixed;
  width: 100%;
  height: 60px;
  padding: 0 var(--padding);
  background-color: var(--theme-main);
  color: var(--theme-white);
  box-shadow: var(--box-shadow-nav);
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.nav-btn {
  color: black;
  cursor: pointer;
  background: var(--theme-white);
  min-width: 64px;
  padding: 6px 16px;
  border-radius: 4px;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  outline: 0;
  border: 0;
  font-size: 15px;
}
.nav-btn:hover {
  background-color: #d6d6d6;
}
.nav-btn-link :hover {
  background: #cccccc !important;
}
.nav-vr {
  margin: 0 16px;
  font-size: 2em;
  font-weight: 200;
  margin-bottom: 5px;
}
.nav-right {
  margin-right: 22px;
  display: flex;
  align-items: center;
}
.nav-left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#dvrpc-logo {
  margin-top: 12px;
}
.project-logo {
  margin-right: var(--padding-half);
}

/* END Navbar */

/*# sourceMappingURL=header.3489c19d.css.map*/