<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --zenegy-loader-shell-background: #f5f5f5;
  --zenegy-loader-shell-light-background: #fff;
  --zenegy-loader-shell-standard-drawer-border-color: #dddddd80;
  --zenegy-loader-shell-notification-background: rgb(221, 221, 221);
  --zenegy-loader-shell-header-background-color: #ccc;
  --zenegy-loader-shell--hamburger-menu-color: #edeef1;
  --zenegy-loader-shell-shimmer-background: linear-gradient(
    to right,
    #f6f7f8 0%,
    #edeef1 20%,
    #f6f7f8 40%,
    #f6f7f8 100%
  );
  --zenegy-loader-shell-shimmer-border-radius: 3px;
}

.flex-row-centered {
  display: flex;
  align-items: center;
}

.zenegy-loader-shell--container {
  font-family: 'Roboto', sans-serif;
  background-color: var(--zenegy-loader-shell-background);
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: -1;
}

.zenegy-loader-shell--standard-drawer {
  background: var(--zenegy-loader-shell-light-background);
  border-right: 1px solid var(--zenegy-loader-shell-standard-drawer-border-color);
  display: flex;
  height: 100vh;
  width: 61px;
  flex-direction: column;
  justify-content: space-between;
}

.zenegy-loader-shell--toggle-standard-drawer-button {
  background-color: transparent;
  border-bottom: 1px solid var(--zenegy-loader-shell-standard-drawer-border-color);
  height: 50px;
}

.zenegy-loader-shell--header {
  left: 61px;
  top: 0;
  right: 0;
  position: absolute;
  background-color: var(--zenegy-loader-shell-light-background);
  height: 120px;
}

@media screen and (min-width: 600px) {
  .zenegy-loader-shell--header {
    height: 110px;
  }

  .zenegy-loader-shell--action-button {
    padding: 11px 80px 12px;
  }
}

.zenegy-loader-shell--navbar {
  height: 50px;
  justify-content: space-between;
  position: relative;
}

.zenegy-loader-shell--menu-username,
.zenegy-loader-shell--menu-links li {
  font-size: 1.8rem;
  color: transparent;
  margin-left: 10px;
  margin-right: 25px;
  line-height: 0.5;
  border-radius: var(--zenegy-loader-shell-shimmer-border-radius);
  overflow: hidden;
}

.zenegy-loader-shell--breadcrumb,
.zenegy-loader-shell--menu-links li:first-of-type {
  color: transparent;
  font-size: 1.9rem;
  line-height: 0.8;
}

.zenegy-loader-shell--breadcrumb &gt; span {
  display: block;
  border-radius: var(--zenegy-loader-shell-shimmer-border-radius);
  overflow: hidden;
}

.zenegy-loader-shell--breadcrumb &gt; span:first-of-type {
  margin-right: 5px;
}

@media screen and (max-width: 599px) {
  .zenegy-loader-shell--breadcrumb &gt; span {
    display: none;
  }

  .zenegy-loader-shell--breadcrumb &gt; span:first-of-type {
    display: block;
  }
}

.zenegy-loader-shell--menu-links li:first-of-type {
  font-weight: 500;
  margin-left: 20px;
  margin-right: 30px;
}

.zenegy-loader-shell--menu-notifications {
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 15px;
  margin-right: 6px;
  margin-left: 6px;
  box-sizing: border-box;
  background-color: var(--zenegy-loader-shell-notification-background);
}

.zenegy-loader-shell--menu-username {
  margin-left: 10px;
}

.zenegy-loader-shell--hamburger-menu {
  display: none;
}

.zenegy-loader-shell--menu-lvl2 {
  padding: 0 20px;
  height: 60px;
  justify-content: space-between;
}

.zenegy-loader-shell--breadcrumb {
  font-weight: 300;
  font-size: 2.2rem;
  overflow: hidden;
}

.zenegy-loader-shell--action-button {
  background-color: var(--zenegy-loader-shell-header-background-color);
  height: 40px;
  width: 40px;
  border: 0;
  border-radius: 50px;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--zenegy-loader-shell-light-background);
  overflow: hidden;
}

.zenegy-loader-shell--standard-drawer-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.zenegy-loader-shell--separator {
  border-bottom: 1px solid var(--zenegy-loader-shell-standard-drawer-border-color);
  margin-bottom: 25px;
}

.mb-0 {
  margin-bottom: 0;
}

.zenegy-loader-shell--standard-drawer-footer-button {
  justify-self: flex-end;
}

.zenegy-loader-shell--standard-drawer-button:after,
.shimmer:after {
  background: var(--zenegy-loader-shell-shimmer-background);
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
}

.zenegy-loader-shell--standard-drawer-button:after {
  background-size: 12rem 100%;
  height: 2.3rem;
  width: 2.3rem;
  border-radius: 50px;
  animation: standard-drawer-shimmer 2s infinite;
}

.shimmer {
  position: relative;
}

.shimmer:after {
  animation: shimmer 2s infinite;
  background-size: 800px 100%;
  height: 100%;
  width: 100%;
  position: absolute;
}

.shimmer-round::after {
  border-radius: 50%;
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@keyframes standard-drawer-shimmer {
  0% {
    background-position: -12rem 0;
  }

  100% {
    background-position: 12rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .zenegy-loader-shell--menu-links li:not(:first-of-type) {
    display: none;
  }

  .zenegy-loader-shell--menu-username {
    display: none;
  }

  .zenegy-loader-shell--hamburger-menu {
    display: block;
    color: var(--zenegy-loader-shell--hamburger-menu-color);
    height: 24px;
    width: 24px;
    margin-right: 23px;
  }
}
</pre></body></html>