/* Compiled from practice-banner.scss — sass -> autoprefixer -> postcss-em.
   Edit the .scss, never this file. Rebuild: node practice-banner/build.js */
.practice-banner {
  background: var(--color-1, #173d2c);
  overflow: hidden;
  max-height: 60px;
  opacity: 1;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
  -o-transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
}
.practice-banner__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
  padding: 9px 20px;
}
.practice-banner .practice-banner__text {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-3, #ffffff);
}
@media only screen and (max-width: 767px) {
  .practice-banner {
    max-height: 96px;
  }
  .practice-banner__wrapper {
    min-height: 38px;
    padding: 8px 16px;
  }
  .practice-banner .practice-banner__text {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}
.practice-banner--hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .practice-banner {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}