/*------------------------------------------------------------------------------*/
/* Site
/*------------------------------------------------------------------------------*/
.SiteHeader {
  background-color: var(--background-color);
  padding-inline: var(--container-page-margin);
}

.SiteFooter {
  background-color: var(--background-color);
  border-top: 1px solid var(--border-color);
  color: var(--color-text);
  padding-block: var(--margin-xlarge) var(--margin-large);
}

.SiteBody {
  background-color: var(--background-color);
  border-color: var(--border-color);
  color: var(--color-text);
  margin-bottom: var(--margin-xlarge);
  padding-block: var(--margin-large);
}

@media screen and (max-width: 480px) {
  .SiteBody {
    padding-top: var(--margin);
  }
}
/*------------------------------------------------------------------------------*/
/* Site Template Layout
/*------------------------------------------------------------------------------*/
.SiteLayout {
  --sidecolumn-width: 320px;
  border: 1px solid var(--border-color);
  border-width: 0 1px;
  display: grid;
  grid-template-columns: var(--sidecolumn-width) calc(100% - var(--sidecolumn-width));
  margin: 0 auto;
  max-width: 100vw;
  width: 100%;
}

@media screen and (max-width: 1240px) {
  .SiteLayout {
    border: 0;
    display: block;
  }
  .ColumnLayoutSection {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .MainLayoutSection {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .OffsetTop .ColumnLayoutSection {
    top: 0;
    max-height: 100svh;
  }
}

.ColumnLayoutSection {
  background-color: var(--background-color);
  border-right: 1px solid var(--border-color-subtle);
  color: var(--color-text);
  position: relative;
  z-index: 1;
  padding: 20px;
}
@media (min-width: 1025px) {
  .ColumnLayoutSection {
    position: fixed;
    top: 35px;
    height: 100%;
    max-height: calc(100svh - 35px);
    overflow-y: auto;
    max-width: var(--sidecolumn-width);
    transition: top 0.2s ease;
  }
}
.ColumnLayoutSection a {
  text-decoration: none !important;
}
.ColumnLayoutSection .StickySide {
  transition: top 0.3s linear;
  position: sticky;
  top: 2rem;
}
.ColumnLayoutSection .NavigationExpander {
  color: inherit;
}
.ColumnLayoutSection .SideNavigation > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ColumnLayoutSection .SideNavigation > ul > li {
  background-color: #E6E6E6;
  border: 0;
}
.ColumnLayoutSection .SideNavigation > ul > li > a {
  padding: 6px 10px;
  width: 100%;
  color: #343A40;
  text-transform: uppercase;
  font-weight: 700;
}
.ColumnLayoutSection .SideNavigation > ul > li.Open {
  background-color: #ED1C24;
}
.ColumnLayoutSection .SideNavigation > ul > li.Open > a {
  color: #fff;
}
.ColumnLayoutSection .SideNavigation > ul > li ul {
  margin: 0;
  background-color: #fff;
  padding: 5px 0 0 20px;
}
.ColumnLayoutSection .SideNavigation > ul > li ul > li {
  background-color: #E6E6E6;
  margin-bottom: 5px;
}
.ColumnLayoutSection .SideNavigation > ul > li ul > li:last-of-type {
  margin-bottom: 0;
}
.ColumnLayoutSection .SideNavigation > ul > li ul > li > a {
  margin: 0;
  padding: 5px 10px;
  width: 100%;
  font-size: 16px;
  color: #343A40;
  position: relative;
  font-weight: 400 !important;
}
.ColumnLayoutSection .SideNavigation > ul > li ul > li.Open {
  background-color: #ED1C24;
}
.ColumnLayoutSection .SideNavigation > ul > li ul > li.Open > a {
  color: #fff;
  font-weight: 700 !important;
}
.ColumnLayoutSection .SideNavigation > ul > li ul ul li {
  background-color: #fff;
}

/*# sourceMappingURL=site.css.map */
