<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.top-bar-main-container {
  padding: 10px;
  background-color: #e2097e;
  display: block;
  height: 58px;
}
.top-bar-inner-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.company-info-wrapper-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: white;
  font-weight: bold;
  padding: 0 20px;
}
.company-info-wrapper-container &gt; p {
  padding-top: 10px;
}

.company-info-wrapper-mobile {
  display: none;
  color: white;
  font-weight: bold;
  overflow: hidden;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  white-space: nowrap;
  width: auto;
}

.company-info-wrapper-mobile p {
  color: white !important;
  margin: 0;
}

#top-bar-btn-desktop,
#top-bar-btn-mobile {
  padding: 10px;
  color: #e2097e;
  font-family: 'Roboto';
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 2px 8px 0px rgba(232, 60, 189, 0.9);
  cursor: pointer;
  border: 0px;
  z-index: 2;
}

#top-bar-btn-desktop {
  margin-left: 2rem;
}

@media screen and (max-width: 990px) {
  .navigation-buttons {
    position: unset;
  }
  .company-info-wrapper-mobile {
    display: flex;
  }
  .company-info-wrapper-container {
    display: none;
  }
}
</pre></body></html>