<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">my-login .alert-info {
  opacity: 0;
  height: 0;
}

my-login .alert-info.fade {
  height: max-content;
  opacity: 1;
  animation: fade 0.4s;
}

@keyframes fade {
  0% {
    animation-timing-function: ease-in-out;
  }

  100% {
    height: max-content;
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
}
.top-menu .panel-block .custom-link {
    display: flex;
    align-items: center;
    padding-left: 26px;
    color: var(--menuForegroundColor);
    cursor: pointer;
    min-height: 40px;
    font-size: 16px;
    transition: background-color .1s ease-in-out;
    white-space: normal;
    word-break: break-word;
    padding-right: 20px;
}
.orion-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 40px;
    margin-bottom: 40px;
}</pre></body></html>