<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --olive: #585520;
  --olive-faded: #bfbe7d;
  --olive-dark: #7e7e49;
  --grey: #f7f2ef;
  --red: #cf4827;
  --yellow: #e7b721;
  --teal: #43ab9b;
  --light-teal: #8ed4da;
  --orange: #de741b;
  --purple: #b2d9a4;
  /* #6c8f5f */
  --blue: #5181a1;
  --primary: var(--olive);
  --people: var(--red);
  --planet: var(--teal);
  --paddock: var(--yellow);
  --projects: var(--purple);
  --product: var(--orange);
  --practices: var(--blue);
}

@font-face {
  font-family: HeroicCondensedBold;
  src: url("~/HeroicCondensed-Bold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

body {
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: HeroicCondensedBold, serif;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: var(--grey);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--olive-faded);
}

/* -------------------- NAVBAR  -------------------- */
.navbar {
  background-color: var(--olive);
  min-height: 5.25rem;
  font-size: 1rem;
}

.navbar-item {
  font-size: 1.7rem;
  font-family: HeroicCondensedBold, serif;
  text-transform: uppercase;
  color: white;
}

.navbar-item:hover,
.navbar-link:hover {
  background-color: var(--olive-faded) !important;
  color: white !important;
  text-decoration: none;
}

.sidebar-collapse-icon {
  color: white;
  font-size: 25px;
  position: absolute;
  top: 2.5rem;
}

.navbar-collapse-icon {
  color: white;
  position: absolute;
  top: 2.5rem;
  right: 18px;
}

.navbar-burger {
  position: inherit;
}

.navbar-burger:hover {
  background-color: unset;
}

/* -------------------- BODY WRAPPER  -------------------- */

.sentient-center-wrapper {
  /* display: flex; */
  margin-top: 0px;
  margin: auto;
}

/* -------------------- SIDE BAR  -------------------- */
.menu-label {
  color: black;
  font-weight: 600;
  position: relative;
  bottom: 9px;
  font-size: 1.5rem;
  font-family: HeroicCondensedBold, serif;
}

#sentient-sidebar-nav {
  text-align: center;
  border-right: solid 1px #ebebeb;
  background-color: var(--grey);
  padding: 0px;
  /* padding-top: 30px; */
  z-index: 3; /* this needs to be more than the z-index of tile text */
  min-height: 90vh;
}

.menu-list {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 3;
  position: sticky;
  top: 0;
}

.menu-list a {
  text-decoration: none;
  color: var(--olive-dark);
  padding-left: 2rem;
  text-align: left;
}

.menu-list a:hover {
  border-bottom: 1px solid var(--olive);
}

.menu-list-a {
  background-color: white;
  font-family: HeroicCondensedBold, serif;
  font-size: 23px;
}

.menu-list-a.is-active {
  border-bottom: 1px solid var(--olive);
  background-color: white !important;
  color: var(--olive-dark) !important;
}

.sub-menu-list {
  margin: unset !important;
  padding-left: unset !important;
  border-left: solid 0.4rem var(--olive) !important;
}

.sub-menu-list-item-a {
  margin-left: -1rem;
  font-family: Sanchez, serif;
}

.sub-menu-list-item-a.is-active {
  background-color: unset !important;
  color: var(--olive-dark) !important;
  border-bottom: 1px solid var(--olive);
}

.sidebar-icon-span {
  float: right;
}

@media only screen and (max-width: 768px) {
  .sidebar-icon-span {
    position: absolute;
    right: 3%;
  }
}

.sidebar-icon {
  transition: 0.5s;
}

/* -------------------- MAIN BODY  -------------------- */

.body-content {
  padding-right: 24px;
}

@media only screen and (max-width: 768px) {
  .body-content {
    padding-left: 24px;
    padding-right: 17px;
  }
}

#back-btn:hover {
  zoom: 102%;
}

@media only screen and (max-width: 768px) {
  #back-btn {
    padding-left: 10px;
  }
}

#back-icon {
  color: var(--olive);
}

#back-text {
  padding-left: 5px;
  text-transform: capitalize;
}

.nav-tile-parent {
  height: 20em;
  position: relative;
  margin: 0px 25px 15px 20px;
}

.nav-tile {
  background-color: var(--grey);
  opacity: 0.8;
  height: 100%;
  /* color: var(--olive); */
  text-align: center;
  font-size: 1.5rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .nav-tile {
    font-size: 1rem;
  }
}

.tile-text {
  /* z-index: 1;
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  width: 90%;
  font-size: 2rem;
  font-family: HeroicCondensedBold, serif; */

  text-transform: uppercase;
  font-size: 2rem;
  font-family: HeroicCondensedBold, serif;
  /* float: left; */
}

.tile-icon {
  position: absolute;
  top: 60%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 7em;
}

.tile-summary {
  height: 100%;
  padding: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.tile-summary-icon {
  z-index: 2;
  position: absolute;
  right: 22px;
  top: 24px;
}

.tile-summary-icon:hover {
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: 0.5s;
}

.tile-summary-dashboard-icon {
  position: absolute;
  right: 52px;
  top: 22px;
  z-index: 1;
  padding: 4px;
  font-size: 26px;
  color: #ffffffcc;
}
.tile-summary-dashboard-icon:hover {
  transition: 0.2s;
  animation: zoom-in-zoom-out 0.2s ease-out;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.tile-summary-icon:hover {
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: 0.5s;
}

.tile-summary-close-icon {
  position: absolute;
  right: 22px;
  top: 25px;
  z-index: 1;
  padding: 4px;
  color: #ffffffcc;
  font-size: 21px;
}

.tile-summary-close-icon:hover {
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: 0.5s;
}

.summary-text-container {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  font-size: 22px;
  width: 87%;
  background-color: #fffffff0;
}

.summary-bg-image {
  opacity: 0.8;
  height: 100%;
  width: 100%;
}

.hero-text .xrm-attribute-value {
  font-family: sanchez;
  font-size: 16px;
}

.summary-text-container .xrm-attribute-value {
  font-family: sanchez;
  font-size: 16px;
}

/* -------------------- PBI Report  -------------------- */
#pbi-container .title {
  text-transform: uppercase !important;
}

#pbi-banner-img-col {
  padding: 0;
}

#pbi-banner-img {
  height: 100% !important;
}

/* -------------------- FOOTER  -------------------- */
footer {
  padding: 20px !important;
  background-color: var(--olive) !important;
  color: white;
}

.footer-img {
  margin: 2rem 0 0 2rem;
}

.footer .content {
  margin: 1rem 2rem 0rem 2rem;
}

/* iframe */
.pbi-dashboard iframe {
  height: 100vh;
}

.logoBar {
  display: none !important;
}
</pre></body></html>