.topbar {
  position: fixed;
  display: flex;
  z-index: 1000;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  top: 0;
  right: 0;
  left: 0;

  width: 100%;

  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.topbar-inner {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin: 0 auto;

  width: 100%;
  max-width: 900px;
  height: 70px;

  padding: 0 20px;
}
.topbar-inner > div {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  height: 100%;
}

.topbar-logo {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  text-decoration: none;
}
.topbar-logo img {
  position: relative;
  display: flex;

  width: auto;
  max-width: 70px;
  height: auto;
  max-height: 40px;

  object-fit: contain;
  object-position: center center;
}

.topbar-menu {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  height: 100%;
}

.topbar-menu-item {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  height: 100%;

  padding: 0 20px;

  text-decoration: none;

  white-space: nowrap;

  font-size: 16px;

  color: inherit;
  transition: 0.3s all ease-out;
}
.topbar-menu-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
.topbar-menu-item:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.topbar-menu-item span {
  margin-top: 4px;
}

.topbar-menu-item.active {
  font-weight: 500;
  border-bottom: 2px solid rgba(0, 0, 0, 1);
}



/* Responsive. */
@media (max-width: 830px) {
  .topbar-__after-830px-hide {
    display: none;
  }
}
