.topbar {
  position: relative;
  display: flex;
}

.topbar > .container {
  align-items: center;
  justify-content: space-between;
}

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

  width: auto;
  height: 80px;

  border-radius: 4px;

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

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

  flex-direction: row;
  flex-wrap: nowrap;

  overflow: auto;
  white-space: nowrap;

  margin: 10px 0;

  max-width: calc(100% - 80px - 20px);

  padding: 10px 0;
}

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

  flex-direction: row;

  align-items: center;

  margin-right: 25px;

  text-decoration: none;

  font-weight: 600;
  font-size: 18px;

  fill: #222;
  color: #222;

  opacity: 0.4;

  transition: 0.25s all ease-out;
}
.topbar .topbar-menu > .topbar-menu__item:first-child {
  margin-right: 0;
}

.topbar .topbar-menu > .topbar-menu__item.active,
.topbar .topbar-menu > .topbar-menu__item:hover {
  opacity: 1;
}

.topbar .topbar-menu > .topbar-menu__item > svg {
  margin-left: 5px;

  width: 24px;
  height: 24px;

  fill: inherit;
}
