/*
 * black and white for mixing
 */
/*
  * Standard error/warning/success
  */
/*
 * Define base brand colors and gray variables here and then add them to the map below.
 * Color names can be generated entering hex values into http://chir.ag/projects/name-that-color/
 * Colors below are examples YOU SHOULD REPLACE WITH YOU OWN COLOR NAMES/HEX
 */
/*
 * Populate the map below with the brand colors you entered above gray in map for shades
 * Helper classes are being generated by this sass map in styles/scss/base/_helpers.scss
 * as well as populating in pug/styleguide.pug
 * USAGE (scss):
	 div {
		 color: palette(gray,500);
		 background-color: palette(gray,50);
		 border: 1px solid palette(gray,900);
	 }
 */
:root {
  --breakXs: 0;
  --breakSm: 576px;
  --breakMd: 769px;
  --breakLg: 992px;
  --breakXl: 1200px;
}

/*
* Call the color palette modifiers for scss usage
* USAGE (scss):
	div {
		color: palette(gray,500);
		background-color: palette(gray,50);
		border: 1px solid palette(gray,900);
	}
*/
/* FLUID FONT SIZE
========================================================================== */
/* ASPECT RATIO
========================================================================== */
/* more concise media queries than bootstraps oob
* always up, never down.
* USAGE:
@include mq(sm) {

}
*/
/*
SASS:
.card {
  background-color:$white;
  @include modifier(--red) {
    background-color:red;
}
COMPILED CSS:
.card {
  background-color:#fff;
}
.p-card--red .card, .card--red {
  background-color: red;
}
*/
/*
USAGE:
@include icon(search, Site Search, outline);

Modifier is optional, for screen readers, alt text is not
*/
/*
    Use the latest Material Icons as class-based psuedo elements
    without the need for spans or <i> tags.
    This needs to be in the head of all pages, so make sure this link
    in pug/includes/head.pug

    link(href='https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined', rel='stylesheet')

    Usage:
    p.ico-home Go Home
    p.ico-outline-home Go Home

    .widget {
        &:before {
            @extend %iconStyle;
        }
    }
*/
#vueContentLibrary {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 576px) {
#vueContentLibrary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
}
#vueContentLibrary .results {
  width: 70%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.5rem;
}
@media (max-width: 576px) {
#vueContentLibrary .results {
    width: 100%;
}
}
#vueContentLibrary .results .no-results {
  font-family: "Public Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  color: #000;
  margin: 0;
  margin-top: 2rem;
}
#vueContentLibrary .results .list {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  row-gap: 2.5rem;
}
@media (max-width: 991px) {
#vueContentLibrary .results .list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
#vueContentLibrary .results .list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
}/*
 * black and white for mixing
 */
/*
  * Standard error/warning/success
  */
/*
 * Define base brand colors and gray variables here and then add them to the map below.
 * Color names can be generated entering hex values into http://chir.ag/projects/name-that-color/
 * Colors below are examples YOU SHOULD REPLACE WITH YOU OWN COLOR NAMES/HEX
 */
/*
 * Populate the map below with the brand colors you entered above gray in map for shades
 * Helper classes are being generated by this sass map in styles/scss/base/_helpers.scss
 * as well as populating in pug/styleguide.pug
 * USAGE (scss):
	 div {
		 color: palette(gray,500);
		 background-color: palette(gray,50);
		 border: 1px solid palette(gray,900);
	 }
 */
:root {
  --breakXs: 0;
  --breakSm: 576px;
  --breakMd: 769px;
  --breakLg: 992px;
  --breakXl: 1200px;
}

/*
* Call the color palette modifiers for scss usage
* USAGE (scss):
	div {
		color: palette(gray,500);
		background-color: palette(gray,50);
		border: 1px solid palette(gray,900);
	}
*/
/* FLUID FONT SIZE
========================================================================== */
/* ASPECT RATIO
========================================================================== */
/* more concise media queries than bootstraps oob
* always up, never down.
* USAGE:
@include mq(sm) {

}
*/
/*
SASS:
.card {
  background-color:$white;
  @include modifier(--red) {
    background-color:red;
}
COMPILED CSS:
.card {
  background-color:#fff;
}
.p-card--red .card, .card--red {
  background-color: red;
}
*/
/*
USAGE:
@include icon(search, Site Search, outline);

Modifier is optional, for screen readers, alt text is not
*/
/*
    Use the latest Material Icons as class-based psuedo elements
    without the need for spans or <i> tags.
    This needs to be in the head of all pages, so make sure this link
    in pug/includes/head.pug

    link(href='https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined', rel='stylesheet')

    Usage:
    p.ico-home Go Home
    p.ico-outline-home Go Home

    .widget {
        &:before {
            @extend %iconStyle;
        }
    }
*/
.result {
  text-decoration: none;
  border: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.08);
  display: inline-block;
  width: 100%;
  min-width: 220px;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.result:hover {
  text-decoration: none;
  -webkit-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.result__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  height: 100%;
}
.result__graphics {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #989ba0;
  z-index: 0;
}
.result__graphics.overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.1;
  z-index: 1;
}
.result__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  padding: 0;
  aspect-ratio: 16/9;
}
.result__video-icon {
  z-index: 2;
  position: absolute;
  left: calc(50% - 2rem);
  top: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
}
.result__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.25rem;
  margin: 0;
  gap: 1rem;
  height: 100%;
  width: 100%;
}
.result__title {
  color: #0971ce;
  font-family: "Public Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.result__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
}
.result__item {
  color: #4e5054;
  font-family: "Public Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.result__item:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
}/*
 * black and white for mixing
 */
/*
  * Standard error/warning/success
  */
/*
 * Define base brand colors and gray variables here and then add them to the map below.
 * Color names can be generated entering hex values into http://chir.ag/projects/name-that-color/
 * Colors below are examples YOU SHOULD REPLACE WITH YOU OWN COLOR NAMES/HEX
 */
/*
 * Populate the map below with the brand colors you entered above gray in map for shades
 * Helper classes are being generated by this sass map in styles/scss/base/_helpers.scss
 * as well as populating in pug/styleguide.pug
 * USAGE (scss):
	 div {
		 color: palette(gray,500);
		 background-color: palette(gray,50);
		 border: 1px solid palette(gray,900);
	 }
 */
:root {
  --breakXs: 0;
  --breakSm: 576px;
  --breakMd: 769px;
  --breakLg: 992px;
  --breakXl: 1200px;
}

/*
* Call the color palette modifiers for scss usage
* USAGE (scss):
	div {
		color: palette(gray,500);
		background-color: palette(gray,50);
		border: 1px solid palette(gray,900);
	}
*/
/* FLUID FONT SIZE
========================================================================== */
/* ASPECT RATIO
========================================================================== */
/* more concise media queries than bootstraps oob
* always up, never down.
* USAGE:
@include mq(sm) {

}
*/
/*
SASS:
.card {
  background-color:$white;
  @include modifier(--red) {
    background-color:red;
}
COMPILED CSS:
.card {
  background-color:#fff;
}
.p-card--red .card, .card--red {
  background-color: red;
}
*/
/*
USAGE:
@include icon(search, Site Search, outline);

Modifier is optional, for screen readers, alt text is not
*/
/*
    Use the latest Material Icons as class-based psuedo elements
    without the need for spans or <i> tags.
    This needs to be in the head of all pages, so make sure this link
    in pug/includes/head.pug

    link(href='https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined', rel='stylesheet')

    Usage:
    p.ico-home Go Home
    p.ico-outline-home Go Home

    .widget {
        &:before {
            @extend %iconStyle;
        }
    }
*/
.resultSkeleton {
  text-decoration: none;
  border: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.08);
  display: inline-block;
  width: 100%;
  min-width: 220px;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.resultSkeleton:hover {
  text-decoration: none;
  -webkit-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.resultSkeleton__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  height: 100%;
  width: 100%;
}
.resultSkeleton__graphics {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #989ba0;
}
.resultSkeleton__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  padding: 0;
  position: absolute;
}
.resultSkeleton__img.video {
  -o-object-fit: contain;
     object-fit: contain;
}
.resultSkeleton__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.25rem;
  margin: 0;
  gap: 1rem;
  height: 100%;
  width: 100%;
}
.resultSkeleton__title {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
}
.resultSkeleton__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
}
.resultSkeleton__item {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.resultSkeleton__item:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
}
.resultSkeleton .line {
  width: 100%;
  height: 0.75rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-animation-name: pulseColor;
          animation-name: pulseColor;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.resultSkeleton .line.short {
  width: 50%;
}
.resultSkeleton .line.fifty {
  min-width: 50px;
}
@-webkit-keyframes pulseColor {
0% {
    background-color: rgba(0, 0, 0, 0.1);
}
50% {
    background-color: rgba(0, 0, 0, 0.3);
}
100% {
    background-color: rgba(0, 0, 0, 0.1);
}
}
@keyframes pulseColor {
0% {
    background-color: rgba(0, 0, 0, 0.1);
}
50% {
    background-color: rgba(0, 0, 0, 0.3);
}
100% {
    background-color: rgba(0, 0, 0, 0.1);
}
}/*
 * black and white for mixing
 */
/*
  * Standard error/warning/success
  */
/*
 * Define base brand colors and gray variables here and then add them to the map below.
 * Color names can be generated entering hex values into http://chir.ag/projects/name-that-color/
 * Colors below are examples YOU SHOULD REPLACE WITH YOU OWN COLOR NAMES/HEX
 */
/*
 * Populate the map below with the brand colors you entered above gray in map for shades
 * Helper classes are being generated by this sass map in styles/scss/base/_helpers.scss
 * as well as populating in pug/styleguide.pug
 * USAGE (scss):
	 div {
		 color: palette(gray,500);
		 background-color: palette(gray,50);
		 border: 1px solid palette(gray,900);
	 }
 */
:root {
  --breakXs: 0;
  --breakSm: 576px;
  --breakMd: 769px;
  --breakLg: 992px;
  --breakXl: 1200px;
}

/*
* Call the color palette modifiers for scss usage
* USAGE (scss):
	div {
		color: palette(gray,500);
		background-color: palette(gray,50);
		border: 1px solid palette(gray,900);
	}
*/
/* FLUID FONT SIZE
========================================================================== */
/* ASPECT RATIO
========================================================================== */
/* more concise media queries than bootstraps oob
* always up, never down.
* USAGE:
@include mq(sm) {

}
*/
/*
SASS:
.card {
  background-color:$white;
  @include modifier(--red) {
    background-color:red;
}
COMPILED CSS:
.card {
  background-color:#fff;
}
.p-card--red .card, .card--red {
  background-color: red;
}
*/
/*
USAGE:
@include icon(search, Site Search, outline);

Modifier is optional, for screen readers, alt text is not
*/
/*
    Use the latest Material Icons as class-based psuedo elements
    without the need for spans or <i> tags.
    This needs to be in the head of all pages, so make sure this link
    in pug/includes/head.pug

    link(href='https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined', rel='stylesheet')

    Usage:
    p.ico-home Go Home
    p.ico-outline-home Go Home

    .widget {
        &:before {
            @extend %iconStyle;
        }
    }
*/
.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}
.firstPage,
.previous,
.next,
.lastPage {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #4e5054;
  color: #4e5054;
}
.firstPage:hover,
.previous:hover,
.next:hover,
.lastPage:hover {
  background-color: rgba(78, 80, 84, 0.5);
  color: #fff;
}
.firstPage:hover div::before,
.previous:hover div::before,
.next:hover div::before,
.lastPage:hover div::before {
  color: #fff;
}
.firstPage div,
.previous div,
.next div,
.lastPage div {
  color: #4e5054;
  margin: 0;
  padding: 0;
  width: 0.75rem;
  height: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}
.firstPage div::before,
.previous div::before,
.next div::before,
.lastPage div::before {
  margin: 0;
  padding: 0;
  width: 0.75rem;
  height: 0.75rem;
  position: relative;
  left: -15%;
}
.selectPages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}
.selectPages button {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #4e5054;
  color: #0971ce;
}
.selectPages button:hover {
  background-color: rgba(78, 80, 84, 0.5);
  color: #fff;
}
.selectPages button.active {
  border: 2px solid #ff9c00;
  color: #4e5054;
}
.selectPages button.active:hover {
  background-color: rgba(78, 80, 84, 0.5);
  color: #fff;
}
.selectPages p {
  margin: 0;
  padding: 0;
}/*
 * black and white for mixing
 */
/*
  * Standard error/warning/success
  */
/*
 * Define base brand colors and gray variables here and then add them to the map below.
 * Color names can be generated entering hex values into http://chir.ag/projects/name-that-color/
 * Colors below are examples YOU SHOULD REPLACE WITH YOU OWN COLOR NAMES/HEX
 */
/*
 * Populate the map below with the brand colors you entered above gray in map for shades
 * Helper classes are being generated by this sass map in styles/scss/base/_helpers.scss
 * as well as populating in pug/styleguide.pug
 * USAGE (scss):
	 div {
		 color: palette(gray,500);
		 background-color: palette(gray,50);
		 border: 1px solid palette(gray,900);
	 }
 */
:root {
  --breakXs: 0;
  --breakSm: 576px;
  --breakMd: 769px;
  --breakLg: 992px;
  --breakXl: 1200px;
}

/*
* Call the color palette modifiers for scss usage
* USAGE (scss):
	div {
		color: palette(gray,500);
		background-color: palette(gray,50);
		border: 1px solid palette(gray,900);
	}
*/
/* FLUID FONT SIZE
========================================================================== */
/* ASPECT RATIO
========================================================================== */
/* more concise media queries than bootstraps oob
* always up, never down.
* USAGE:
@include mq(sm) {

}
*/
/*
SASS:
.card {
  background-color:$white;
  @include modifier(--red) {
    background-color:red;
}
COMPILED CSS:
.card {
  background-color:#fff;
}
.p-card--red .card, .card--red {
  background-color: red;
}
*/
/*
USAGE:
@include icon(search, Site Search, outline);

Modifier is optional, for screen readers, alt text is not
*/
/*
    Use the latest Material Icons as class-based psuedo elements
    without the need for spans or <i> tags.
    This needs to be in the head of all pages, so make sure this link
    in pug/includes/head.pug

    link(href='https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined', rel='stylesheet')

    Usage:
    p.ico-home Go Home
    p.ico-outline-home Go Home

    .widget {
        &:before {
            @extend %iconStyle;
        }
    }
*/
.content-filters {
  width: 30%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto (auto)[3];
  grid-template-rows: auto repeat(3, auto);
  max-height: 100vh;
}
@media (max-width: 576px) {
.content-filters {
    width: 100%;
}
}
.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  gap: 0.5rem;
  width: 100%;
}
.search label {
  display: none;
}
.search input {
  width: 100%;
  padding: 0.75rem;
  color: #4e5054;
  font-family: "Public Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  border: none;
}
.search .ico-search {
  width: 1.5rem;
  height: 1.5rem;
  color: black;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.5rem;
}
.filter-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  max-height: 5rem;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #edeef1;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.filter-section .label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.filter-section .label p {
  color: #4e5054;
  font-family: "Public Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.filter-section .label button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
  color: #4e5054;
}
.filter-section .label button:hover {
  background: unset;
}
.filter-section .label button::before {
  font-size: 1rem;
  font-weight: bold;
  color: #4e5054;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.filter-section.opened {
  max-height: 30vh;
  overflow-y: auto;
}
.filter-section.opened .label button::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}/*
 * black and white for mixing
 */
/*
  * Standard error/warning/success
  */
/*
 * Define base brand colors and gray variables here and then add them to the map below.
 * Color names can be generated entering hex values into http://chir.ag/projects/name-that-color/
 * Colors below are examples YOU SHOULD REPLACE WITH YOU OWN COLOR NAMES/HEX
 */
/*
 * Populate the map below with the brand colors you entered above gray in map for shades
 * Helper classes are being generated by this sass map in styles/scss/base/_helpers.scss
 * as well as populating in pug/styleguide.pug
 * USAGE (scss):
	 div {
		 color: palette(gray,500);
		 background-color: palette(gray,50);
		 border: 1px solid palette(gray,900);
	 }
 */
:root {
  --breakXs: 0;
  --breakSm: 576px;
  --breakMd: 769px;
  --breakLg: 992px;
  --breakXl: 1200px;
}

/*
* Call the color palette modifiers for scss usage
* USAGE (scss):
	div {
		color: palette(gray,500);
		background-color: palette(gray,50);
		border: 1px solid palette(gray,900);
	}
*/
/* FLUID FONT SIZE
========================================================================== */
/* ASPECT RATIO
========================================================================== */
/* more concise media queries than bootstraps oob
* always up, never down.
* USAGE:
@include mq(sm) {

}
*/
/*
SASS:
.card {
  background-color:$white;
  @include modifier(--red) {
    background-color:red;
}
COMPILED CSS:
.card {
  background-color:#fff;
}
.p-card--red .card, .card--red {
  background-color: red;
}
*/
/*
USAGE:
@include icon(search, Site Search, outline);

Modifier is optional, for screen readers, alt text is not
*/
/*
    Use the latest Material Icons as class-based psuedo elements
    without the need for spans or <i> tags.
    This needs to be in the head of all pages, so make sure this link
    in pug/includes/head.pug

    link(href='https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined', rel='stylesheet')

    Usage:
    p.ico-home Go Home
    p.ico-outline-home Go Home

    .widget {
        &:before {
            @extend %iconStyle;
        }
    }
*/
.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}
.checkbox.is-expanded .checkbox__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkbox__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.checkbox__trigger {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1rem 0.5rem 1fr;
  grid-template-columns: 1rem 1fr;
      grid-template-areas: "box label";
  gap: 0.5rem;
  width: 100%;
  cursor: pointer;
}
.checkbox__trigger:hover {
  background: unset;
}
.checkbox__trigger:hover .checkbox__box {
  background-color: rgba(0, 0, 0, 0.1);
}
.checkbox__trigger.is-active .checkbox__box,
.checkbox__trigger.is-active .checkbox__box:hover,
.checkbox__trigger.is-active .checkbox__box .checkbox__trigger:hover {
  background: #0971ce !important;
}
.checkbox__trigger.is-indeterminate .checkbox__box,
.checkbox__trigger.is-indeterminate .checkbox__box:hover,
.checkbox__trigger.is-indeterminate .checkbox__box .checkbox__trigger:hover {
  background: #989ba0 !important;
}
.checkbox__trigger.is-active .checkbox__icon--check, .checkbox__trigger.is-indeterminate .checkbox__icon--indeterminate {
  opacity: 1;
}
.checkbox__box {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: box;
  width: 1rem;
  height: 1rem;
  border-radius: 0.1875rem;
  border: 1px solid #4e5054;
  background-color: white;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.checkbox__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  font-size: 0.75rem;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  color: white;
}
.checkbox__label {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: label;
  pointer-events: none;
  color: #4e5054;
  font-family: "Public Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  margin: auto 0;
}
.checkbox__expand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
  color: #4e5054;
}
.checkbox__expand:hover {
  background: unset;
}
.checkbox__expand::before {
  font-size: 1rem;
  font-weight: bold;
  color: #4e5054;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.checkbox__content {
  -webkit-transition: ease 0.35s;
  transition: ease 0.35s;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  display: none;
}