.brand-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login-logo {
  width: 78px;
  height: 58px;
}

.topbar {
  padding: 2px 16px 2px 14px;
  gap: 0;
  border-bottom-color: #0d6098;
  background: linear-gradient(180deg, #187fc1, #116fae);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 330px;
  min-width: 330px;
  max-width: 330px;
  margin-right: 32px;
}

.topbar-brand > div:last-child {
  display: grid;
  gap: 1px;
  flex: 1 1 auto;
  min-width: 0;
}

.topbar-brand strong {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.topbar-brand > div:last-child > span {
  display: block;
  width: 100%;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  line-height: 1.1;
  text-align: justify;
  text-align-last: justify;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-brand .topbar-logo {
  width: 66px;
  height: 61px;
  flex: 0 0 66px;
  border: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .topbar-brand {
    flex: 1 1 auto;
    min-width: 230px;
    max-width: none;
    margin-right: 10px;
  }

  .topbar-brand .topbar-logo {
    width: 54px;
    height: 50px;
    flex-basis: 54px;
  }

  .topbar-brand strong {
    font-size: 15px;
    text-align: left;
    text-align-last: auto;
  }

  .topbar-brand > div:last-child > span {
    display: none;
  }
}
