/**
 * Layout/ Base
 *******************************/
html,
body {
  padding: 0px;
  margin: 0px;
  height: 100%;
}

html {
  scroll-padding-top: var(--scroll-padding-top, 4rem);
}
html body {
  position: relative;
  min-width: 280px;
  direction: ltr;
  overscroll-behavior-y: none;
}

html:has(.js-search-desktop-open) {
  --scroll-padding-top: 0 !important;
}

html.scrollSmooth {
  scroll-behavior: smooth;
}

/**
 * As of late 2019 Apple is now recommending to use a @supports(padding:max(0px))
 * query to detect and fix the notched environment for your website, like so:
 *
 */
@supports (padding: 0px) {
  body,
footer {
    padding-left: min(15vmin, env(safe-area-inset-left));
    padding-right: min(15vmin, env(safe-area-inset-right));
  }
}
.mc {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  opacity: 0;
}
.mc__page {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.mc__page > * {
  position: relative;
  top: 0;
  width: clamp(280px, 100%, 1390px);
  margin: 0 auto;
  opacity: 1;
  background: white;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  justify-self: center;
  min-height: 12.5rem;
}
.mc__page > *:has(.main-full-width) {
  width: 100%;
}
.mc [data-page][data-loading-section=true]::before {
  position: absolute;
  top: 50px;
}
@media (max-width: 991px) {
  .mc__page {
    background-color: #d8d8d8;
  }
}
.mobilemenu-open .mc {
  height: auto;
}

/**
 * Layouts/Header
 *******************************/
.mc__header {
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: var(--clr-header-top-bg, whitesmoke);
  color: var(--clr-header-top-text, #000);
  z-index: 1000;
  user-select: none;
}
.mc__header-top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
  justify-content: center;
}
.mc__header-top > * {
  position: relative;
  display: flex;
}
.mc__header-top > *:first-child {
  flex: none;
  padding-inline: 0.9375rem;
}
.mc__header-bottom {
  font-size: 0.875rem;
  background-color: var(--clr-header-bottom-bg);
  color: var(--clr-header-bottom-text);
}
.mc__header-bottom > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2.1875rem;
  padding: 0 0.625rem;
}
.mc__header-bottom > ul > li {
  display: flex;
  padding: 0 0.9375rem;
  align-items: center;
  gap: 1rem;
}
.mc__header-bottom > ul > li:not(.hide):has(~ li:not(.hide))::after {
  content: " | ";
  font-size: 0.75rem;
  padding-left: 0.3125rem;
}
.mc__header-bottom > ul > li > a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: white;
  text-decoration: none;
}
.mc__header-bottom button {
  color: var(--clr-header-text);
}
@media (max-width: 991px) {
  .mc__header {
    display: flex;
    flex-direction: column;
  }
  .mc__header-bottom {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .mc__header-bottom > ul {
    height: 36px;
  }
  .js_mobile-popmenu-active .mc__header {
    height: 100%;
    border-bottom: 1px solid #ddd;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  }
  .js_mobile-popmenu-active .mc__header-bottom {
    display: none;
  }
  .mc__header [data-popmenu-btn] {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s, visibility 0.25s;
  }
  [data-global-nav=open] .mc__header [data-popmenu-btn] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@media (max-width: 400px) {
  .mc__header-bottom > ul > li:first-child {
    display: none;
  }
  .mc__header-bottom > ul > li {
    padding: 0;
    gap: 1rem;
  }
  .mc__header-bottom > ul > li:not(:last-child)::after {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .mc__header-top {
    order: 1;
  }
  .mc__header-top > * {
    flex: 1;
  }
  .mc__header-banner {
    max-width: 780px;
    max-height: 90px;
    margin-left: auto;
  }
}
@media (max-height: 380px) {
  .touch-device.landscape-mode .mc__header, .mobile-mode.landscape-mode .mc__header {
    position: relative;
  }
}

html:has(.show-compact-header) .mc__header,
html:has(.scrollview) .mc__header {
  top: calc(var(--data-header-top) * -1);
}
html:has(.show-compact-header) .mc__header-bottom,
html:has(.scrollview) .mc__header-bottom {
  display: flex;
}
html:has(.show-compact-header) .mc__header-bottom > ul,
html:has(.scrollview) .mc__header-bottom > ul {
  margin-left: auto;
}
html:has(.show-compact-header) body:not(.mobilemenu-open) [data-nav-container],
html:has(.scrollview) body:not(.mobilemenu-open) [data-nav-container] {
  top: 2.1875rem !important;
}
html:has(.show-compact-header) body.mobilemenu-open [data-nav-aside],
html:has(.scrollview) body.mobilemenu-open [data-nav-aside] {
  top: 2.1875rem !important;
}
@media (min-width: 62rem) {
  html:has(.show-compact-header)[data-scroll] .mc__header-compact-logo, html:has(.show-compact-header)[data-scroll] .mc__header-compact-logo.fadeIn,
html:has(.show-compact-header) .mc__header-compact-logo.fadeOut,
html:has(.scrollview)[data-scroll] .mc__header-compact-logo,
html:has(.scrollview)[data-scroll] .mc__header-compact-logo.fadeIn,
html:has(.scrollview) .mc__header-compact-logo.fadeOut {
    display: flex;
    align-items: center;
    padding-inline: 0.9375rem;
  }
}

@media (min-width: 62rem) {
  html:has(.show-compact-header) .mc__header-compact-logo {
    animation: scroll-watcher 50ms linear forwards;
    animation-timeline: scroll();
    animation-range: contain 100px;
    display: flex;
    align-items: center;
    padding-inline: 0.9375rem;
    opacity: 0;
    pointer-events: none;
  }
  @keyframes scroll-watcher {
    0% {
      opacity: 0;
    }
    2% {
      opacity: 1;
    }
    4% {
      opacity: 1;
      pointer-events: auto;
    }
    100% {
      opacity: 1;
    }
  }
  @supports not (animation-timeline: scroll()) {
    html:has(.show-compact-header) .mc__header-top {
      display: none;
    }
    html:has(.show-compact-header) .mc__header-compact-logo {
      display: flex;
      opacity: 1;
      pointer-events: auto;
    }
  }
}

.js_mobile-popmenu-active.mobilemenu-open [data-nav-container] {
  display: none;
}

@-webkit-keyframes slide-out-right {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(200%, 0);
    opacity: 0;
    display: none;
  }
}
@keyframes slide-out-right {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(200%, 0);
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
  }
}
@-webkit-keyframes fade-in-out {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes fade-in-out {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@-webkit-keyframes slide-down {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes slide-down {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
/* Slide in top */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* Slide out top */
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
}
@-webkit-keyframes reveal-rl {
  0% {
    opacity: 0;
    transform: translateX(1000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes reveal-rl {
  0% {
    opacity: 0;
    transform: translateX(1000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes reveal-lr {
  0% {
    opacity: 0;
    transform: translateX(-1000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes reveal-lr {
  0% {
    opacity: 0;
    transform: translateX(-1000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes reveal-bt {
  0% {
    opacity: 0;
    transform: translateY(400px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes reveal-bt {
  0% {
    opacity: 0;
    transform: translateY(400px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes slide-down {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes slide-down {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}
@-webkit-keyframes scaleUp {
  0% {
    opacity: 0.5;
    scale: 0.5;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0.5;
    scale: 0.5;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@-webkit-keyframes scaleDown {
  0% {
    opacity: 1;
    scale: 1;
  }
  100% {
    opacity: 0.5;
    scale: 0.5;
  }
}
@keyframes scaleDown {
  0% {
    opacity: 1;
    scale: 1;
  }
  100% {
    opacity: 0.5;
    scale: 0.5;
  }
}
@-webkit-keyframes popmenu-in {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes popmenu-in {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes popmenu-slidedown {
  0% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes popmenu-slidedown {
  0% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fadeIn {
  animation-duration: 150ms;
  animation-name: fade-in;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.42, 0, 0.35, 0.99);
  animation-iteration-count: 1;
}

.fadeOut {
  animation-duration: 150ms;
  animation-name: fade-out;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.42, 0, 0.35, 0.99);
  animation-iteration-count: 1;
}

.fadeTransition {
  opacity: 1;
  transition: display 400ms, opacity 400ms;
  transition-behavior: allow-discrete;
}

.fadeTransition.close {
  display: none;
  opacity: 0;
}
@starting-style {
  .fadeTransition.close {
    opacity: 1;
  }
}

.fadeTransition.open {
  transition: display 400ms, opacity 400ms;
  transition-behavior: allow-discrete;
  opacity: 1;
}
@starting-style {
  .fadeTransition.open {
    opacity: 0;
  }
}

.slideDown {
  transform-origin: center top;
  animation-duration: 150ms;
  animation-name: slide-down;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.42, 0, 0.35, 0.99);
  animation-iteration-count: 1;
}

.slideUp {
  transform-origin: center top;
  animation-duration: 150ms;
  animation-name: slide-up;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.42, 0, 0.35, 0.99);
  animation-iteration-count: 1;
}

.bounce {
  animation-duration: 0.5s;
  animation-name: bounce;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.42, 0, 0.35, 0.99);
  animation-iteration-count: 1;
}

.reveal-rl {
  animation-duration: 350ms;
  animation-name: reveal-rl;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.63, 0.42, 1.07);
  animation-iteration-count: 1;
}

.reveal-lr {
  animation-duration: 350ms;
  animation-name: reveal-lr;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.63, 0.42, 1.07);
  animation-iteration-count: 1;
}

.scaleIn {
  animation-duration: 350ms;
  animation-name: scaleUp;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.63, 0.42, 1.07);
  animation-iteration-count: 1;
}

.shake {
  animation-duration: 350ms;
  animation-name: shake;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.63, 0.42, 1.07);
  animation-iteration-count: 1;
}

.slide-in-top {
  animation-duration: 350ms;
  animation-name: slide-in-top;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.63, 0.42, 1.07);
  animation-iteration-count: 1;
}

.reflow-height {
  max-height: 10000px;
  transition: max-height 350ms ease 0s;
  overflow: hidden;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fadeOut {
    opacity: 0 !important;
  }

  .fadeIn {
    opacity: 1 !important;
  }
}
/**
 * Layout/ Page body
 *******************************/
.page__view {
  position: relative;
  display: flex;
  align-items: stretch;
}
.page__content {
  position: relative;
  -webkit-transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page__content > * {
  margin: 1rem 0;
}
.page__right-col {
  position: relative;
  flex: 0 0 30%;
  -webkit-transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.page__sidemenu {
  left: 0;
  flex: 0 0 25%;
  z-index: 100;
}
.page__subnav {
  font-family: var(--menu-font);
}
.page .page__subnav + .page__sidemenu + .page__content[data-loading-section=true]::before {
  min-height: max-content;
  top: 30%;
}
@media (max-width: 991px) {
  .page__subnav {
    position: fixed;
    width: 100%;
    height: 3.125rem;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  *:has(.loader) .page__subnav {
    top: 0px !important;
  }
  .page__view {
    flex-wrap: wrap;
  }
  .page__content, .page__right-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page__subnav + .page__sidemenu {
    position: relative;
    top: 0;
    width: 100%;
    overflow: hidden;
    user-select: none;
    display: none;
    opacity: 0;
    transition: opacity 0.388s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .page__subnav + .page__sidemenu + .page__content {
    padding-top: 3.125rem;
    padding-inline: 0.625rem;
  }
  .page .page__subnav + .page__sidemenu + .page__content[data-loading-section=true]::before {
    padding-top: var(--margin-gap);
  }
  .page__sidemenu + .page__content, .page__sidemenu + .page__content + .page__right-col {
    left: -250px;
    margin-left: 250px;
  }
  .page .page__subnav + .page__sidemenu + .page__content[data-loading-section=true]::after {
    margin-top: 3.125rem;
  }
  .js_sidemenu-open .page__view {
    overflow: hidden;
  }
  .js_sidemenu-open .page__sidemenu {
    position: relative;
    display: block;
    opacity: 1;
    user-select: auto;
    flex: none;
    max-width: 100%;
    width: 100%;
    padding-top: 3.125rem;
    z-index: 1;
  }
  @starting-style {
    .js_sidemenu-open .page__sidemenu {
      opacity: 0;
    }
  }
  .js_sidemenu-open .page__content, .js_sidemenu-open .page__right-col {
    display: none;
  }
}
@media (min-width: 992px) {
  .page__view {
    padding: 1rem 15px 0;
    gap: 1rem;
  }
  .page__sidemenu {
    position: relative;
    flex: none;
    width: 100%;
    max-width: 250px;
  }
  .page__sidemenu-sticky {
    width: 250px;
    transition: left 0.4s ease;
    top: 0;
  }
  .page__sidemenu.sidemenu-ready {
    opacity: 1;
  }
  .page__content {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    left: 0;
    gap: 0.9375rem;
    display: flex;
    flex-wrap: wrap;
  }
  .page__content .js_stickySidebar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .page__center {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .page__right-col {
    flex: none;
    border-left: 1px solid #ddd;
    width: clamp(250px, 100%, 350px);
  }
}
@media (min-width: 991px) and (max-width: 80rem) {
  .page__right-col {
    flex: 100%;
    width: auto;
    max-width: 100%;
    border: none;
    width: 100%;
  }
  .page .page__view > .page__right-col {
    flex: 1;
  }
}
@media (max-width: 576px) {
  .page__content, .page__right-col {
    padding-inline: 0;
  }
}
@media (max-height: 380px) {
  .mobile-mode.landscape-mode:not(.mobilemenu-open) .page {
    padding-top: 0 !important;
  }
  .mobile-mode.landscape-mode:not(.mobilemenu-open) .page__view {
    padding-top: 0 !important;
  }
  .mobile-mode.landscape-mode:not(.mobilemenu-open) .page__subnav {
    position: relative;
    top: 0 !important;
  }
}
.mobilemenu-open .page {
  display: none;
}
.js_blur .page {
  -webkit-filter: blur(0.2em);
  filter: blur(0.2em);
}

/**
 * Layouts/Footer
 *******************************/
.mc__footer {
  position: relative;
  padding-block: 1.25rem;
  padding-inline: 2em;
  text-align: center;
  line-height: 1.5;
  display: grid;
  gap: 0.9375rem;
}
.js_sidemenu-open .mc__footer {
  display: none;
}

.mc__footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #4d5666;
}
.mc__footer-nav a {
  color: #454545;
}
.mc__footer-nav li:not(:last-child)::after {
  content: "|";
  margin-left: 0.5em;
  opacity: 0.5;
}

.mc__footer-social {
  --linkedin-color: hsl(201, 99%, 35%);
  --facebook-color: hsl(214, 89%, 52%);
  --x-color: hsl(0, 0%, 0%);
  --instagram-color: linear-gradient(45deg, #8a49a1, #c1558b, #e56969, #ffc273, #ffdf9e);
  --youtube-color: hsl(0, 100%, 50%);
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}
.mc__footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  line-height: 30px;
  border-radius: 50%;
  transform: translateY(0);
  transition: transform 300ms ease;
  font-size: 0.75rem;
  text-decoration: none;
  color: white;
}
@media (hover: hover) {
  .mc__footer-social a:hover, .mc__footer-social a:focus-visible {
    color: #f2f2f2;
    transform: translateY(-3px);
  }
}
.mc__footer-social a[data-social-type=linkedin] {
  background-color: var(--linkedin-color);
}
.mc__footer-social a[data-social-type=facebook] {
  background-color: var(--facebook-color);
}
.mc__footer-social a[data-social-type=x] {
  background-color: var(--x-color);
}
.mc__footer-social a[data-social-type=instagram] {
  background: var(--instagram-color);
}
.mc__footer-social a[data-social-type=youtube] {
  background-color: var(--youtube-color);
}

/**
 * Layouts/Navigation
 *******************************/
:root {
  --main-nav-height: 3.125rem;
}

.nav {
  --globalnav-background: rgba(250, 250, 252, 1);
  --globalnav-backdrop-filter: none;
  --mobile-nav-top-position: 0;
  position: sticky;
  top: 0;
  margin: 0 auto;
  width: 100%;
  background: #f9f9f9;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  min-height: 50px;
  user-select: none;
  font-family: var(--menu-font);
  z-index: 10;
}
@supports (-webkit-backdrop-filter: initial) or (backdrop-filter: initial) {
  .nav {
    --globalnav-backdrop-filter: saturate(180%) blur(20px);
    --globalnav-background: rgba(250, 250, 252, 0.8);
  }
}
.nav__inner {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
  gap: 0.9375rem;
  flex-wrap: nowrap;
}
.nav__menu {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: var(--main-nav-height);
  opacity: 0;
}
.nav__menu [data-nav-list] {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000 !important;
  list-style: "";
}
.nav__menu [data-nav-list] .icon-home {
  line-height: normal;
  font-size: 25px;
}
.nav__menu [data-nav-list] li {
  position: relative;
  pointer-events: auto;
}
.nav__menu a.nav__menu-link {
  text-decoration: none;
}
.nav__menu a.nav__menu-link, .nav__menu-link:not([role=option]) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  /* solves mobile sticky problem */
}
@media (hover: hover) {
  .nav__menu a.nav__menu-link:hover, .nav__menu-link:not([role=option]):hover {
    color: var(--clr-nav-text-hover);
    background: var(--clr-nav-bg-hover);
    opacity: 1;
  }
}
.nav__search-btn.icon-search {
  display: none;
  font-size: 1.2em;
  width: 3.125rem;
  height: 3.125rem;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  background-color: #fff;
}
.nav__search-cancel {
  display: none;
}
.nav__aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.nav__aside > * {
  flex: none;
}
@media (max-width: 991px) {
  .nav {
    width: 100%;
    top: var(--mobile-nav-top-position);
  }
  .nav__inner {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0;
  }
  .nav__menu {
    display: none;
    width: 100%;
    order: 2;
  }
  .nav__menu [data-nav-list] {
    width: 100%;
  }
  .nav__menu [data-nav-list] li, .nav__menu-dropdown > * {
    opacity: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
    color: #222;
  }
  .nav__menu-link {
    display: block;
    padding: 15px 0 15px 30px;
  }
  .nav__menu-link[aria-expanded] {
    display: none !important;
  }
  .nav__aside {
    order: 1;
    position: sticky;
    top: var(--mobile-nav-top-position);
    width: 100%;
    padding-inline: 1em;
    background: var(--globalnav-background);
    -webkit-backdrop-filter: var(--globalnav-backdrop-filter);
    backdrop-filter: var(--globalnav-backdrop-filter);
    border-bottom: 1px solid #ddd;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  .nav__aside_item[nav-item=mobile-menu-btn] {
    margin-right: auto;
  }
  .nav__aside_item[nav-item=site-logo] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav__aside_item[nav-item=credits] {
    display: none;
    background: var(--clr-nav-item-credits-bg, #dfe3e7);
  }
  .nav__aside_item .search {
    display: none;
  }
  .nav__aside .search {
    position: absolute;
    top: 0;
    width: 100%;
    background: #dde4ea;
    z-index: 999;
  }
  .nav__search-btn.icon-search {
    display: block;
  }
  .mobilemenu-open .nav {
    position: relative;
    top: 0px;
    display: flex;
    flex-direction: column;
  }
  .mobilemenu-open .nav__menu {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .nav {
    background: var(--globalnav-background);
    -webkit-backdrop-filter: var(--globalnav-backdrop-filter);
    backdrop-filter: var(--globalnav-backdrop-filter);
    padding: 0 15px;
    z-index: 999;
  }
  .nav #mobileMenuBtn {
    display: none;
  }
  .nav__menu {
    flex: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    transition: opacity 300ms ease-out;
  }
  .nav__menu [data-nav-list] {
    display: flex;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .nav__menu [data-nav-list] li {
    flex: 0 1 auto;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
    background: #fcfcfc;
    display: flex;
    line-height: 25px;
  }
  .nav__menu [data-nav-list] li > *:not([role=option]) {
    white-space: nowrap;
    padding: 11px 20px;
    background: var(--clr-nav-bg);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), inset 0px -1px 2px white;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2), 0px 1px 0px white;
  }
  .nav__menu-link[aria-expanded]::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3125rem;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    border-bottom: 0;
    color: #e60c2d;
  }
  .nav__menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 1000;
    min-width: 14rem;
    height: auto;
    max-height: var(--nav-dropdown-max-height, 500px);
    overflow-y: auto;
    padding: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #ebf2f6;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
  }
  .nav__menu-dropdown > * {
    display: block;
    width: 100%;
    min-width: 200px;
    padding: 0.3rem 1.2rem;
    clear: both;
    font-size: 13px;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    opacity: 1;
  }
  .nav__menu-dropdown > *:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .nav__search {
    height: 50px;
  }
  .nav__aside {
    position: absolute;
    right: 0;
    margin: 0 auto;
    height: 50px;
  }
  .nav [data-dropdown-btn][aria-expanded=true] + * {
    display: block;
  }
}
@media (min-width: 991px) and (max-width: 1279px) {
  .nav__search-btn.icon-search {
    display: block;
  }
}
@media (max-width: 400px) {
  .nav [nav-item=site-logo] {
    left: 47%;
    transform: translateX(-47%);
  }
}
@media (max-width: 350px) {
  .nav [nav-item=site-logo] {
    transform: none;
    left: 65px;
  }
}
@media (max-height: 380px) {
  .touch-device.landscape-mode .nav, .mobile-mode.landscape-mode .nav {
    --mobile-nav-top-position: 0 !important;
    padding-top: 0 !important;
  }
  .touch-device.landscape-mode .nav__search, .mobile-mode.landscape-mode .nav__search {
    position: static;
  }
}
.nav__menu [data-nav-list] li > *[aria-current=page] {
  color: var(--clr-nav-selected-text);
  background: var(--clr-nav-selected-bg, var(--clr-nav-bg));
}
.nav__menu-dropdown a[aria-current=page] {
  color: var(--clr-nav-selected-text);
  background: var(--nav-selected-bg);
}

.mobilemenu-open [data-feedback] {
  display: none;
}

[data-usermenu-mobile] {
  background-color: #e7f4ff;
}

body:has(dialog[open]) .nav {
  --globalnav-backdrop-filter: none;
}

/**
 * Components/ Search
 *******************************/
@property --aimode-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.search {
  --border-radius: 30px;
  position: relative;
  z-index: 99;
}
.search .search__inner > * {
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  width: 100%;
}
.search input[type=search] {
  position: relative;
  width: 100%;
  height: var(--main-nav-height);
  border: 0 none;
  font-size: 16px;
  font: inherit;
  pointer-events: auto;
  padding: 0;
  background: none !important;
}
.search input[type=search]::placeholder {
  padding-left: 10px;
  font-size: 1rem;
  color: #333;
  font-family: "icomoon", "Helvetica Neue";
}
.search input[type=search]:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.search input[type=search]:focus::placeholder {
  color: #e0e0e0;
  font-size: 1rem;
}
.search__input-c {
  position: relative;
  background-color: white;
  isolation: isolate;
  display: flex;
  flex-wrap: nowrap;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.search__input-c > i.icon-search {
  flex: none;
  width: 40px;
  height: inherit;
  place-content: center;
  padding-left: 0.625rem;
  color: #333333;
}
.search .search__input-c:has(input[type=search]:focus) {
  box-shadow: 0px 0px 1px 3px var(--clr-form-box-shadow);
  border-radius: 0.3125rem;
}
.search .search__cta {
  flex: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-inline: 0.625rem;
  margin-left: auto;
}
.search .search__cta [role=listitem]:has(.search__clearval, .search-guide-btn, .admin-search-btn, .close-search-btn) {
  display: none;
}
.search__cancel-c {
  display: none;
  height: 3.4375rem;
  padding: 0.3125rem 0;
  text-align: right;
  padding-inline: 1em;
}
.search__cancel-c button {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: -0.6em;
  margin-top: -0.75rem;
}
.search .admin-search-btn {
  color: white;
  background: linear-gradient(135deg, #667fea 0%, #754aa1 100%);
  border-color: #754aa1;
}
.search .aimode-btn {
  color: #400c8d;
  background-color: white;
  outline: 1px solid #ff0095;
  border-radius: calc(var(--border-radius) + 1px);
  transition: border-color 1s ease-in-out;
}
@keyframes borderspin {
  from {
    --aimode-angle: 0deg;
  }
  to {
    --aimode-angle: 360deg;
  }
}
@keyframes entryspin {
  0% {
    opacity: 0;
    --aimode-angle: 0deg;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    --aimode-angle: 360deg;
  }
}
.search .aimode-btn::before,
.search .aimode-btn::after {
  content: "";
  position: absolute;
  inset: -0.1rem;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  background-image: conic-gradient(from var(--aimode-angle), transparent 15%, #ff0095, #f0f63b, #ff4545);
  padding: 0.135rem;
  border-radius: inherit;
  box-sizing: content-box;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  animation: 3s borderspin linear infinite, entryspin 3s linear 1;
  animmate-play-state: paused, running;
}
.search .aimode-btn::before,
.search .aimode-btn::after {
  animation: 3s borderspin linear infinite, entryspin 3s linear 1;
  animmate-play-state: paused, running;
}
.search .aimode-btn:hover {
  border-color: transparent;
}
.search .aimode-btn:hover:after {
  opacity: 1;
  animmate-play-state: running;
}
.search .aimode-btn:hover::before {
  filter: blur(0.2rem);
  opacity: 0.3;
  animmate-play-state: running;
}
.search .aimode-btn > i {
  color: #a000bd;
}
.search .aimode-btn:hover > i {
  color: #ff4545;
}
.search .search-guide-btn {
  color: #333333;
  opacity: 0.8;
}
.search .quick-search-reference {
  background: whitesmoke;
  max-height: 97vh;
  max-height: -webkit-fill-available;
}
.search .quick-search-reference table {
  max-width: 61.9375rem;
}
.search .quick-search-reference .operator {
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 0.9em;
}
.search .operator.and {
  background: #27ae60;
}
.search .operator.or {
  background: #f39c12;
}
.search .operator.not {
  background: #e74c3c;
}
.search .operator.must {
  background: #3498db;
}
.search .quick-search-reference code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  color: #e83e8c;
  font-size: 0.9em;
}
.search__clearval {
  display: none;
  width: 25px;
  height: 25px;
  color: #666666;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  z-index: 10;
}
.search__clearval::before {
  display: flex;
  justify-content: center;
}
@media (hover: hover) {
  .search__clearval:hover, .search__clearval:focus-visible {
    color: #666666;
  }
  @supports not selector(:focus-visible) {
    .search__clearval:focus {
      color: #666666;
    }
  }
}
.search__panel {
  display: none;
  position: absolute;
  top: calc(var(--main-nav-height) + 0.0625rem);
  left: 0;
  width: 100%;
  height: 1lh;
  z-index: 9999;
  background: white;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  transition: height 400ms, opacity 400ms, display 400ms;
  transition-delay: 200ms;
  interpolate-size: allow-keywords;
  opacity: 0;
  padding: 1em;
  font-size: var(--fs--1);
}
.search__panel > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
:has(input[type=search][aria-expanded=true]) .search__panel {
  display: block;
  height: auto;
  opacity: 1;
  z-index: 1;
}
@starting-style {
  :has(input[type=search][aria-expanded=true]) .search__panel {
    height: 1lh;
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .search {
    opacity: 0;
    background: none;
    transform: translateY(50px);
    transition: opacity 300ms, transform 400ms;
  }
  .search .search__inner {
    position: sticky;
    top: 0;
    z-index: 2;
    -webkit-backdrop-filter: var(--globalnav-backdrop-filter);
    backdrop-filter: var(--globalnav-backdrop-filter);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1em;
  }
  .search__input-c {
    width: 100%;
    margin: auto;
    border: 1px solid #ddd;
    z-index: 2;
  }
  .search input[type=search] {
    background: white;
  }
  .search .search__cta {
    gap: 0;
  }
  .search .search__clearval {
    padding-right: 1.25rem;
  }
  .search__panel {
    position: relative;
    top: 0px;
  }
  .search .search-guide-btn {
    position: absolute;
    top: -3rem;
    left: 0;
  }
  .search .admin-search-btn {
    position: absolute;
    top: -3rem;
    left: 170px;
  }
  .search .quick-search-reference table tr {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 992px) {
  .search {
    float: right;
    width: 17.5rem;
    height: var(--main-nav-height);
    transition: width 300ms ease-out;
  }
  .search input[type=search] {
    background: none !important;
    width: 9.375rem;
    padding-right: 1.25rem;
  }
  .search .search__cta .aimode-btn {
    margin-left: -75px;
  }
  .search__panel {
    overflow-y: auto;
    max-height: 75vh;
    padding: 0;
  }
  .search .search__results-list {
    padding: 1em;
  }
  .search .quick-search-reference table {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .search input[type=search] {
    width: 230px;
  }
}

.js-search-desktop-open .search__cta [role=listitem]:has(.search__clearval, .search-guide-btn),
.js-search-mobile-open .search__cta [role=listitem]:has(.search__clearval, .search-guide-btn) {
  display: initial;
}
.js-search-desktop-open[data-admin-user=true] .search__cta [role=listitem]:has(.admin-search-btn),
.js-search-mobile-open[data-admin-user=true] .search__cta [role=listitem]:has(.admin-search-btn) {
  display: initial;
}
.js-search-desktop-open .search__cta .aimode-btn,
.js-search-mobile-open .search__cta .aimode-btn {
  margin: 0;
}

@media (min-width: 992px) {
  .js-search-desktop-open .search {
    width: 100%;
  }

  .js-search-desktop-open .search input[type=search] {
    width: 100%;
    max-width: 61.25rem;
    padding-right: 6.25rem;
  }

  .js-search-desktop-open .search__cta {
    animation: search-cta-opacity 400ms ease-in-out;
  }

  @keyframes search-cta-opacity {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .js-search-desktop-open .search [role=listitem]:has(.close-search-btn) {
    display: initial;
    width: 2.5rem;
    text-align: center;
  }

  .js-search-desktop-open .search__clearval {
    font-size: 1.2rem;
    line-height: 1.4375rem;
  }

  .js-search-desktop-open [data-nav-menubar] {
    display: none;
    opacity: 0;
  }

  .js-search-desktop-open [data-nav-search] {
    width: 100%;
    right: 0 !important;
  }

  .js-search-desktop-open [data-search-btn] {
    display: none;
  }

  .js-search-desktop-open [data-nav-aside] {
    display: block;
    width: 100%;
  }

  .js-search-desktop-open [data-nav-aside] > *:not([nav-item=search]) {
    display: none;
  }

  .js-search-desktop-open:has(.search__panel li) {
    overflow: hidden;
  }
}
@media (min-width: 991px) and (max-width: 1279px) {
  .search {
    display: none;
  }

  .js-search-desktop-open .search {
    display: block;
  }
}
@media (max-width: 991px) {
  .js-search-mobile-open header,
.js-search-mobile-open main,
.js-search-mobile-open footer,
.js-search-mobile-open .site-logo,
.js-search-mobile-open .nav__aside > *:not([nav-item=search]),
.js-search-mobile-open .nav__search-btn {
    display: none;
    user-select: none;
  }

  .js-search-mobile-open .search__cancel-c {
    display: block;
  }

  .js-search-mobile-open #mainNavigation {
    position: fixed;
    top: 0px !important;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
  }

  .js-search-mobile-open .nav__aside {
    border: none;
    background: none;
    box-shadow: none;
  }

  .js-search-mobile-open .search {
    display: block;
    top: 0px;
    left: 0px;
    background: none;
    opacity: 1;
    transform: translateY(0);
  }
  @starting-style {
    .js-search-mobile-open .search {
      transform: translateY(50px);
      opacity: 0;
    }
  }
}
.search__filters {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-backdrop-filter: var(--globalnav-backdrop-filter);
  backdrop-filter: var(--globalnav-backdrop-filter);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.625rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.search__filter-btn {
  appearance: none;
  border: 1px solid var(--clr-neutral-200);
  background: var(--clr-neutral-000);
  color: inherit;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.search__filter-btn .search__filter-count {
  font-size: 0.75em;
  color: var(--clr-neutral-500);
}
.search__filter-btn.is-active, .search__filter-btn[aria-pressed=true] {
  background: var(--clr-system-accent);
  color: #fff;
  border-color: var(--clr-system-accent);
}
.search__filter-btn.is-active .search__filter-count, .search__filter-btn[aria-pressed=true] .search__filter-count {
  color: inherit;
}
.search__filter-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.search__results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1em;
}

.search__results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  gap: 0.75rem;
}
.search__results-list > li {
  position: relative;
  padding-top: 1.75rem;
  padding-right: 4rem;
}
.search__results-list > li::after {
  content: "";
  display: block;
  clear: both;
}
.search__results-list.grid-list {
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
}
.search__results-list [item-type] {
  position: absolute;
  top: 0.25rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.1875rem 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--fs-xs);
  border-radius: 0.1875rem;
  z-index: 1;
}
.search__results-list [item-type][item-type=lecture] {
  color: #fafafa;
  background: #6d57c7;
}
.search__results-list [item-type][item-type=news] {
  color: #fafafa;
  background: var(--blue);
}
.search__results-list [item-type][item-type=pub], .search__results-list [item-type][item-type=ezine] {
  color: #fafafa;
  background: var(--clr-system-accent);
}
.search__results-list [item-type][item-type=author], .search__results-list [item-type][item-type=profile] {
  color: #fafafa;
  background: #e93f8e;
}
.search__results-list [item-type][item-type=event] {
  color: #fafafa;
  background: #fd7e17;
}
.search__results-list [item-type][item-type=product] {
  color: #fafafa;
  background: #077f88;
}
.search__results-list [item-type][item-type=support] {
  color: #fafafa;
  background: #314254;
}

.search__empty {
  position: relative;
  top: -0.625rem;
  margin: 0.625rem;
  font-size: var(--fs--1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.search__empty p {
  font-size: var(--fs--1);
}

.search__empty.show-state {
  opacity: 1;
  visibility: visible;
}

.search__view-all {
  align-self: flex-end;
  font-weight: 600;
  position: sticky;
  bottom: 10px;
}

.search-inline-card {
  width: 100%;
  max-width: 100%;
  display: block;
  text-align: left;
  margin-inline: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.search-inline-card .c-product-card__info,
.search-inline-card .title,
.search-inline-card .c-product-card__description,
.search-inline-card .c-author,
.search-inline-card .c-product-card__footer,
.search-inline-card .c-product-card__info > * {
  text-align: left;
  justify-content: flex-start;
  margin-left: 0;
}
.search-inline-card .title a {
  text-align: left;
}

.search-inline-result {
  list-style: none;
  display: block;
}

.search__results .event-card.search-inline-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin: 0;
  box-shadow: none;
  border: 1px solid var(--clr-neutral-200, #ddd);
  border-radius: 0.5rem;
}
.search__results .event-card.search-inline-card .event-card__thumb {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.search__results .event-card.search-inline-card .event-card__thumb img {
  max-width: 6.25rem;
  height: auto;
  margin: 0;
}
.search__results .event-card.search-inline-card .event-card__info {
  padding: 0;
  align-items: flex-start;
  text-align: left;
  gap: 0.5rem;
  width: 100%;
}
.search__results .event-card.search-inline-card .event-card__info .title,
.search__results .event-card.search-inline-card .event-card__info .title * {
  text-align: left;
}
.search__results .event-card.search-inline-card .event-card__info p {
  text-wrap: initial;
}

.search__filter-btn {
  appearance: none;
  color: inherit;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.search__filter-btn.is-active, .search__filter-btn[aria-pressed=true] {
  background: var(--clr-system-accent);
  color: #fff;
  border-color: var(--clr-system-accent);
}
.search__filter-btn.is-active .search__filter-count, .search__filter-btn[aria-pressed=true] .search__filter-count {
  color: inherit;
}

@media (max-width: 991px) {
  .search__empty {
    margin-bottom: -0.9375rem;
  }

  .search__results-list > li {
    padding-right: 0;
    margin-inline: auto;
  }
  .search__results-list li > article {
    margin-inline: auto;
  }

  .search__filters {
    top: 137px;
    padding-top: 10px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .search__empty {
    margin-bottom: -1.875rem;
  }

  .search__filters {
    border-radius: 0;
  }

  .search__results {
    max-height: min(55vh, 43.75rem);
    min-height: min(55vh, 43.75rem);
  }
}
/**
 * Assets/Typography
 *******************************/
:root {
  --fs-lg: 1.5rem;
  --fs-600: 1.5rem;
  --fs-500: 1.2rem;
  --fs-400: 1rem;
  --fs-300: 0.875rem;
  --fs-200: 0.75rem;
  --fs-xs: 0.6rem;
  --fs--2: clamp(0.6944rem, 0.6823rem + 0.0609vw, 0.72rem);
  --fs--1: clamp(0.8333rem, 0.8015rem + 0.159vw, 0.9rem);
  --fs-0: clamp(0.875rem, 0.9404rem + 0.2981vw, 1rem);
  --fs-1: clamp(1.2rem, 1.1016rem + 0.4918vw, 1.4063rem);
  --fs-2: clamp(1.44rem, 1.2884rem + 0.7578vw, 1.7578rem);
  --fs-3: clamp(1.728rem, 1.4648rem + 0.8161vw, 1.875rem);
  --menu-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fs--2,
.fs--2 > * {
  font-size: var(--fs--2);
}

.fs--1,
.fs--1 > * {
  font-size: var(--fs--1) !important;
}

.fs-0,
.fs-0 > * {
  font-size: var(--fs-0) !important;
}

.fs-1 {
  font-size: var(--fs-1) !important;
}

.fs-2 {
  font-size: var(--fs-2) !important;
}

.fs-3 {
  font-size: var(--fs-3) !important;
}

.fs-12 {
  font-size: var(--fs-200) !important;
}

.fs-14 {
  font-size: var(--fs-300) !important;
}

.fs-16 {
  font-size: var(--fs-400) !important;
}

:is(h1, h2, h3) {
  font-weight: 600;
  font-size: inherit;
}

h1,
.h1 {
  font-size: var(--fs-2);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: var(--fs-1);
  line-height: 1.2;
}

h3,
.h3 {
  font-size: var(--fs-0);
  line-height: 1.3;
}

.menu-font {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  font-synthesis: none;
  font-size: var(--fs-0);
  line-height: 1.4;
  font-style: normal;
}

:has(> .c-item-card) {
  container-type: inline-size;
}

.c-item-card {
  --item-card-padding: 0.9375rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-inline: auto;
  gap: 0.975rem 0.625rem;
  opacity: 0;
  font-size: 0.875rem;
  background-color: #fafafa;
  border-bottom: 1px solid #dedede;
  border-radius: 0.3125rem;
  padding: var(--item-card-padding);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.c-item-card p {
  margin: 0;
}
.c-item-card__title {
  font-weight: 600;
  text-decoration: none;
  text-wrap: pretty;
}
.c-item-card__title > * {
  font-weight: 600;
  text-wrap: pretty;
  font-size: var(--fs-0);
  text-decoration: none;
}
.c-item-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.c-item-card__top-right {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}
.c-item-card .c-item-card__thumb {
  max-width: var(--thumb-width, 15.625rem);
  flex: none;
}
.c-item-card .c-item-card__thumb IMG {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
  corner-shape: round;
}
.c-item-card .c-item-card__info {
  flex: 1;
}
.c-item-card .c-item-card__info > *:not(:last-child) {
  margin-bottom: 0.125rem;
}
.c-item-card__right-col {
  flex: none;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  font-size: var(--fs-300);
  list-style: none;
  margin: 0;
  margin-left: auto;
}
.c-item-card [label-type] {
  padding: 0.2em 0.5em;
  border-radius: 0.625rem;
}
.c-item-card:has(.c-item-card__thumb) {
  gap: 1.25rem;
}
.c-item-card__footer {
  margin-left: auto;
}
.c-item-card__footer ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@container (width < 600px) {
  .c-item-card:has(.c-item-card__thumb) {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@container (width >= 600px) {
  .c-item-card {
    --thumb-width: 9.375rem;
  }
  .c-item-card:has(.c-item-card__thumb) .c-item-card__right-col {
    flex-direction: column;
  }
}
@container (width < 700px) {
  .c-item-card .c-item-card__footer {
    flex: 1;
    margin-left: auto;
  }
}
@container (width >= 700px) {
  .c-item-card {
    --thumb-width: 9.375rem;
  }
  .c-item-card:has(.c-item-card__right-col) .c-item-card__title {
    text-wrap: pretty;
  }
}
@container (width >= 800px) {}

:has(> .c-product-card) {
  container-type: inline-size;
  list-style: none;
}

.c-product-card {
  position: relative;
  display: grid;
  width: 100%;
  max-width: var(--max-width, 50rem);
  padding: max(1.5vh, 1.5rem) 0.9375rem;
}
.c-product-card > img {
  max-width: min(100%, var(--thumb-width, 9.375rem));
  max-height: 9.375rem;
  margin-inline: auto;
}
.c-product-card > a img {
  max-width: min(100%, var(--thumb-width, 9.375rem));
  max-height: 9.375rem;
  margin-inline: auto;
}
.c-product-card__thumb {
  transition: opacity 0.3s ease-in-out;
}
.c-product-card__thumb picture {
  position: relative;
  margin: 0 auto;
  max-height: fit-content;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out;
}
.c-product-card .c-product-card__thumb:empty {
  display: none;
}
.c-product-card__info {
  display: grid;
  align-content: start;
  gap: var(--vertical-spacing, 0.5rem) 0.3125rem;
  font-size: var(--fs-0);
}
.c-product-card__info .title {
  font-size: calc(var(--fs-1) - 0.33rem);
  line-height: 1.3;
  text-decoration: none;
  color: #222;
}
.c-product-card__info .title a {
  text-decoration: none;
  color: #222;
}
.c-product-card__info .title a > * {
  font-size: calc(var(--fs-1) - 0.33rem) !important;
}
.c-product-card__info .title a {
  text-decoration: none;
}
.c-product-card__info p {
  text-wrap: pretty;
}
.c-product-card__info .learn-more {
  font-size: var(--fs--1);
}
.c-product-card__info .learn-more:hover {
  text-decoration: underline;
}
.c-product-card__edit {
  position: absolute;
  right: 0;
  top: 0;
}
.c-product-card:has(.c-product-card__top) .c-product-card__edit {
  top: 3.4375rem;
}
.c-product-card__description {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: clip;
  word-break: break-word;
}
.c-product-card__footer {
  margin-top: 0.5rem;
  font-size: var(--fs--1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-product-card__price {
  color: var(--clr-green);
  font-size: var(--fs-1);
  font-weight: 600;
  text-align: center;
}
.c-product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.c-product-card__top > *:first-child {
  max-width: 70%;
}
.c-product-card__status {
  font-size: 0.625rem;
  font-weight: 600;
  background-color: #ebf4fd;
  padding: 0.1875rem 0.5rem;
  border-left: 5px solid var(--gray-steel);
  text-transform: uppercase;
  word-spacing: 0.1rem;
  opacity: 0.8;
  min-width: 3.125rem;
  margin-bottom: 0.5rem;
}
.c-product-card__status:has(> span:empty) {
  display: none !important;
}
.c-product-card__status[data-status=online] {
  border-color: var(--clr-status-online);
}
.c-product-card__status[data-status=offline] {
  border-color: var(--clr-status-offline);
}
.c-product-card__status[data-status=comingsoon] {
  border-color: var(--clr-status-soon);
}
.c-product-card__status[data-status=archived] {
  background: #ebf4fd;
}
.c-product-card__status[data-status=info] {
  border-color: var(--info);
}
.c-product-card.disabled {
  opacity: 0.7;
}
.c-product-card.disabled img {
  filter: grayscale(100%);
  opacity: 0.9;
}
.c-product-card.disabled a {
  color: #222;
}
.c-product-card.disabled .learn-more {
  display: none;
}
.c-product-card.disabled .c-product-card__info {
  opacity: 0.8;
  color: var(--muted-text);
}
.c-product-card .edit-btn a {
  position: absolute;
  right: 0;
}
@container (width < 600px) {
  .c-product-card {
    grid-template-columns: 1fr;
    place-content: center;
    max-width: 28.125rem;
    column-gap: 1rem;
    row-gap: 0.5rem;
    margin-inline: auto;
  }
  .c-product-card__thumb,
.c-product-card picture {
    max-width: var(--thumb-width, 15.625rem);
    place-self: center;
  }
  .c-product-card__info {
    align-items: center;
    gap: 0.625rem;
  }
  .c-product-card__info .title {
    text-align: center;
    margin: 0 auto;
  }
  .c-product-card__footer {
    justify-content: center;
  }
}
@container (width < 400px) {
  .c-product-card__thumb,
.c-product-card picture {
    max-width: var(--thumb-width, 12.5rem);
  }
}
@container (width >= 600px) {
  .c-product-card {
    grid-template-columns: var(--thumb-width, 9.375rem) 1fr;
    grid-template-areas: "thumb info";
    gap: 1.25rem;
    padding: 0.9375rem;
  }
  .c-product-card:has(.c-product-card__thumb:empty) {
    grid-template-columns: 1fr;
  }
  .c-product-card__top {
    grid-column: 1/3;
  }
  .c-product-card__info {
    gap: 0.5rem;
  }
  .c-product-card:has(.c-product-card__edit) .title {
    padding-right: 5rem;
  }
}
.c-product-card[options*=clean], .c-product-card[type*=clean] {
  background-color: transparent;
  box-shadow: none;
  border: none;
  gap: 1.25rem;
}
.c-product-card[options*=deck2], .c-product-card[type*=deck2] {
  font-size: 0.875rem;
}
.c-product-card[options*=deck2] picture, .c-product-card[type*=deck2] picture {
  max-width: 11.25rem;
}
.c-product-card[options*=deck2] .c-product-card__info, .c-product-card[type*=deck2] .c-product-card__info {
  align-items: start;
}
.c-product-card[options*=deck2] .title, .c-product-card[type*=deck2] .title {
  font-size: 1rem;
}
.c-product-card[options*=deck2] .learn-more, .c-product-card[type*=deck2] .learn-more {
  display: none;
}
.c-product-card[options*=pop] {
  background-color: #f7f7f7;
  border-radius: 0.3125rem;
  border-bottom: 1px solid #ddd;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
}
.c-product-card[type*=search2] .title,
.c-product-card[type*=search2] .title * {
  font-size: var(--fs-0) !important;
}
.c-product-card[type*=search2] .c-product-card__info {
  font-size: var(--fs--1);
}
.c-product-card[type*=search2] .c-product-card__footer {
  font-size: calc(var(--fs--2) + 0.06rem);
}
.c-product-card[type*=author] {
  align-items: start;
  /* If profile has city and state show comma after city */
  /* If no location hide the whole location container */
  /* If profile has city and state show comma after city */
  /* If no location hide the whole location container */
}
.c-product-card[type*=author] .c-product-card__thumb {
  position: relative;
  border: 1px solid #ddd;
  width: min(100%, 7.5rem);
  border-radius: 0.25rem;
}
.c-product-card[type*=author] .c-product-card__footer {
  justify-content: start;
}
.c-product-card[type*=author] .location:has(i + * + *) i + *:not(:empty)::after {
  content: ", ";
  display: inline-block;
}
.c-product-card[type*=author] .location:not(:has(i + *:not(:empty))) {
  display: none;
}

.c-product-card .title[shimmer=on] {
  color: transparent;
}

.c-product-card .title[shimmer=on] > * {
  opacity: 0;
}

/* Smooth image loading transitions to prevent flash */
.c-product-card img {
  transition: opacity 0.3s ease-in-out;
}

img.preloaded,
.c-product-card img.preloaded,
.c-product-card img:not(.lazy) {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

:has(> .c-featured-card) {
  container-type: inline-size;
  list-style: none;
}

.c-featured-card {
  display: grid;
  justify-content: center;
  gap: 1em;
  width: min(100% - 2rem, 50rem);
}
.c-featured-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin-top: -0.5rem;
}
.c-featured-card__thumb {
  position: relative;
  margin: 0 auto;
  max-height: fit-content;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
}
.c-featured-card__thumb img {
  width: 100%;
  width: min(100%, 50rem);
  height: auto;
}
.c-featured-card__title a {
  text-decoration: none;
  font-size: var(--fs-3);
  color: #212121;
}
.c-featured-card__info {
  display: grid;
  gap: 2em;
}
.c-featured-card__info > * {
  display: grid;
  gap: 0.5rem;
}
.c-featured-card__teaser {
  font-size: var(--fs-0);
}
.c-featured-card__teaser > * {
  width: min(100% - 2rem, 60ch);
}
.c-featured-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: min(100% - 2rem, 60ch);
  font-size: var(--fs--1);
}
@container (width >= 600px) {
  .c-featured-card__info {
    padding-top: 1.5em;
    display: flex;
    flex-wrap: wrap;
  }
  .c-featured-card__info > * {
    flex: 1;
  }
  .c-featured-card__author {
    flex: none;
    max-width: 30cqmin;
    border-right: 1px solid #ddd;
    padding-right: 1rem;
  }
}

/**
 * Components/Author
 *******************************/
.c-author {
  --avatar-width: 6.25rem;
  --avatar-height: 7.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  text-decoration: none;
}
.c-author a {
  text-decoration: none;
}
.c-author__avatar {
  flex: none;
  display: flex;
  place-content: center;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 2px;
  width: var(--avatar-width);
}
.c-author__avatar::after {
  content: "";
  -webkit-mask-image: url("/_assets/images/global/avatar-d.svg");
  mask-image: url("/_assets/images/global/avatar-d.svg");
  -webkit-mask-size: 80%;
  mask-size: 80%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  background-color: white;
  width: var(--avatar-width);
  height: var(--avatar-height);
}
.c-author__avatar-img {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  border-radius: 0.125rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.c-author__avatar:has(img) {
  background-color: transparent;
  width: auto;
  max-height: none;
}
.c-author__avatar:has(img)::after {
  background-color: transparent;
  background-image: none;
  content: "";
  width: auto;
  height: auto;
}
.c-author__avatar:has(img) img {
  border: 1px solid white;
  width: var(--avatar-width);
}
.c-author__info {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  text-align: left;
  max-width: fit-content;
  line-height: 1.4;
  text-wrap: balance;
}
.c-author__info.clamp {
  max-width: none;
}
.c-author__title {
  border-top: 2px solid #444;
  font-size: var(--fs-200);
  width: 100%;
  padding: 0.3125rem 0;
}
.c-author__title > * {
  word-break: break-word;
  margin-bottom: 0.2rem;
}
.c-author__bio {
  font-size: var(--fs-300);
  width: 100%;
  padding: 0.3125rem 0;
}
.c-author__bio > * {
  word-break: break-word;
}
.c-author__bio::first-letter {
  font-family: Georgia;
  float: left;
  font-size: 6rem;
  line-height: 0.65;
  margin: 0.1em 0.1em 0.2em 0;
  initial-letter: 2;
  color: #333;
}
.c-author__credentials {
  opacity: 0.9;
  font-size: var(--fs--2);
  margin-left: -2px;
  word-spacing: -1px;
}
.c-author .c-author__credentials:empty {
  display: none;
}
.c-author__credentials span:first-child::before {
  content: ", ";
}
.c-author__credentials span:not(:last-child)::after {
  content: " ,";
}
.c-author--simple {
  align-items: center;
}
.c-author--simple .c-author__info {
  max-width: none;
}
.c-author--simple .c-author__name {
  font-size: var(--fs-400);
}
.c-author--simple .c-author__title {
  font-size: var(--fs-300);
  border: 0 none;
  padding: 0;
}
.c-expiration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #e3f2fc;
  color: #176ec4;
  border: 1px solid #bbdefb;
}

.c-expiration-badge--warning {
  color: #866504;
  background-color: #fff3cc;
  border-color: #ffeaa7;
}

.c-expiration-badge--expired {
  color: #be091e;
  background-color: #f7d4d7;
  border-color: #f5c7cb;
}

.c-expiration-badge i {
  font-size: 1rem;
}

.c-expiration-badge__label {
  font-weight: 600;
}

.c-expiration-badge__date {
  font-weight: 700;
}

.c-expiration-badge[badge-type*=square] {
  border-radius: 0;
  padding: 0;
}

/*# sourceMappingURL=layout-build.css.map */
