.header-bar {
  background: rgb(var(--company-color));
  height: 57px;
  display: flex;
  flex-direction: row;
  padding: 0px 23px;
  align-items: center;
}

.header-bar-item {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

.header-bar-item:first-of-type {
  justify-content: flex-start;
}

.header-bar-item:nth-of-type(2) {
  justify-content: center;
}

.header-bar-item:nth-of-type(3) {
  justify-content: flex-end;
}

.cloud-gate-logo {
  width: 40px;
  height: 40px;
}

.cloud-gate-text {
  color: rgb(var(--company-font-color));
  margin: 0px 0px 0px 0.25em;
  font-family: 'Kiona';
  font-size: 27px;
}

.cloud-gate-text span {
  font-weight: bold;
}

.page-name {
  height: 100%;
  color: rgb(var(--company-font-color));
  font-size: 23px;
  font-family: var(--company-font);
  margin: 0 0 0 8px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-bar-menu-arrow {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgb(var(--company-font-color));
  border-bottom: 1px solid rgb(var(--company-font-color));
  transform: rotate(45deg);
  margin-left: 8px;
}

.user-name {
  height: 100%;
  padding: 0 8px;
  color: rgb(var(--company-font-color));
  font-size: 15px;
  font-family: var(--company-font);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-picture {
  width: 32px;
  height: 32px;
  margin: 0px 0px 0px 12px;
  border-radius: 32px;
}