/**
 */
html {
  --fla-heading-font-family: "CenturyGothicStd", "Inter", sans-serif;
  --fla-subheading-font-family: "Poppins";
  --fla-body-font-family: "Inter", "Helvetica Neue", "Arial", "Helvetica", "sans-serif";
  --fla-text-color-light: rgba(255,255,255,0.618);
}

body {
  --fla-dock-height: 0px;
}

body[data-fla-state*="do:1"] {
  --fla-dock-height: var(--fla-footer-height);
}

/**
 * TO BE INCLUDED WITHIN THE CONTENT CONTAINING ELEMENT
 * (WHERE THE SCOLLING DOES HAPPEN)
 */
/**
 * Must be applied not to the block element but the h1/h2/h3 directly
 * block must be display: contents
 */
/**
  NOTE: THIS IS SPECIFIC TO FONTS
  ARIAL: 0.318/2
 */
/**
 * What this does, is:
 * Given a Text like "First, Last and Always" we have the descender "y"
 * this mixin calculates the space that is taken by descenders and subtracts it
 * from the height of the element via negative margin bottom. By the way:
 * the descender space is also taken if we have text that does NOT have a descender!
 * When to use:
 * - The text block needs to sit bottom align with a specific design line or element
 *
 * When NOT to use:
 * - If another text block is placed below this one. in that case we need to use another mixin "centuryGothicDescendantEqualizer"
 *
 * Get the UnitsPerEM via "ttx -t head CenturyGothicStd.ttf" (fonttools)
 * Get the sTypoDescender via `ttx -t OS/2 CenturyGothicStd.ttf` (fonttools)
 * Calculate the Descener Ratio: Descender Ratio = |sTypoDescender| / unitsPerEm
 * Translate into CSS: margin-bottom: calc(-1*<DescenderRatio>)
 *
 * @see https://stackoverflow.com/questions/27631736/meaning-of-top-ascent-baseline-descent-bottom-and-leading-in-androids-font
 */
/**
 What we do here is:
 Based on this graphic: https://i.sstatic.net/LwZJF.png we cut off the
 distance from the bottom to the Descent
 */
/**
 * @deprecated Moved to a SDC component
 */
/**
 * Meant to glue the menu image before and after the content area so it can be used as glass background..
 */
/**
 * Use the content's image as a background below the content area to prevent boring grey areas
 */
/*
 * Use this for sections where the main content area must start below the header (not overlayed by the glass header)
 * to look fine u need to define a backkground image either for the body element or the layout container
 */
html.path-inspiration-area-faces__html {
  overflow: hidden;
}

@media screen and (max-width: 10768px) {
  body.path-inspiration-area-faces__html #block-pagetitle {
    display: none;
  }
}

body.path-inspiration-area-faces__html header .block-system-breadcrumb-block ol li:last-of-type {
  display: inline-block !important;
}

body.path-inspiration-area-faces__html .node__content {
  position: relative;
}

html:not(.faceshow-controls)[data-fla-state*="do:0"] body.path-inspiration-area-faces__html .node__content {
  overflow: auto;
}

body.path-inspiration-area-faces__html #block-fla-content {
  --faces-controls-height: var(--fla-footer-height, 80px);
  --faces-cover-background-width: 1;
  --faces-25x4-grid-height: auto;
  --faces-overlay-height: calc( 100vh - var(--fla-header-height) - var(--faces-controls-height) );
  --faces-10x10grid-width: 100vmin;
  overflow: visible !important;
  height: calc(100%) !important;
  padding: 0 !important;
}

@container layout-container (min-aspect-ratio: 1.01) {
  body.path-inspiration-area-faces__html #block-fla-content {
    --faces-10x10grid-width: calc(100vh - var(--fla-header-height) );
  }
  html.faceshow-controls body.path-inspiration-area-faces__html #block-fla-content {
    --faces-10x10grid-width: calc(100vh - var(--fla-header-height) - var(--faces-controls-height) );
    --faces-overlay-height: calc( 100vh - var(--fla-header-height) - var(--faces-controls-height) - var(--faces-25x4-grid-height) );
  }
  html[data-fla-state*="do:1"] body.path-inspiration-area-faces__html #block-fla-content {
    --faces-10x10grid-width: calc(100vh - var(--fla-header-height) - var(--fla-footer-height));
  }
}

html.faceshow-controls body.path-inspiration-area-faces__html #block-fla-content {
  --faces-overlay-height: calc( 100vh - var(--fla-header-height) - var(--faces-controls-height) - var(--faces-25x4-grid-height) );
}

body.path-inspiration-area-faces__html #block-fla-content article, body.path-inspiration-area-faces__html #block-fla-content .node__content {
  height: 100%;
}

body.path-inspiration-area-faces__html #block-fla-content .node__content {
  display: flex;
  align-items: safe center;
  justify-content: safe center;
  overflow-anchor: none;
  /* stops browser scroll-anchoring jumps */
  scroll-padding-top: 0;
  overflow: hidden;
}

body.path-inspiration-area-faces__html #block-fla-content .node__content .cover-backgrounds {
  background: transparent url(/themes/custom/fla/img/faces/Covers_5x5_01.01.jpg) left top repeat;
}

@container layout-container (max-aspect-ratio: 10000) {
  body.path-inspiration-area-faces__html #block-fla-content .node__content {
    flex-direction: column;
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content .cover-backgrounds {
    width: 100%;
    background-size: calc(var(--faces-cover-background-width) * 100%);
    position: absolute;
    right: 0;
    left: 0;
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content .cover-backgrounds:first-of-type {
    top: 0;
    height: var(--fla-header-height);
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content .cover-backgrounds:last-of-type {
    bottom: 0;
    height: var(--fla-footer-height);
    display: none;
  }
  @container layout-container (min-aspect-ratio: 1.01) {
    body.path-inspiration-area-faces__html #block-fla-content .node__content .cover-backgrounds:last-of-type {
      display: block;
      width: var(--faces-10x10grid-width);
      margin: 0 auto;
      z-index: -1;
      background-image: url(/themes/custom/fla/img/faces/Vignette-Covers-vertical.png), url(/themes/custom/fla/img/faces/Covers_5x5_01.01.jpg);
      background-position: top center, calc( var(--faces-10x10grid-width) * -0.2) calc( var(--faces-10x10grid-width) * -0.4) !important;
      background-repeat: no-repeat, repeat;
      background-size: 100% calc(100vh - var(--fla-header-height) - var(--faces-10x10grid-width)), 100% auto;
    }
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content:before, body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    opacity: 0;
    transition: opacity, filter, background-position 0.5s ease-out;
    content: "";
    display: block;
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    background-image: url(/themes/custom/fla/img/faces/Vignette-Covers-vertical.png), var(--random-covers-left, url(/modules/custom/fla_faces/img/random-covers-5x5-left.jpg));
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%, 100% auto;
    filter: saturate(0.8) blur(2.5px);
  }
  html.fupreload-progress-100 body.path-inspiration-area-faces__html #block-fla-content .node__content:before, html.fupreload-progress-100 body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    opacity: 0.9;
  }
  html.faceshow-controls body.path-inspiration-area-faces__html #block-fla-content .node__content:before, html.faceshow-controls body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    filter: saturate(0.5) blur(3.5px);
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content:before {
    background-position: left top, 100% 0 !important;
  }
  html.faceshow-controls body.path-inspiration-area-faces__html #block-fla-content .node__content:before {
    background-position: left top, 80% 0 !important;
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    background-image: url(/themes/custom/fla/img/faces/Vignette-Covers-vertical.png), var(--random-covers-right, url(/modules/custom/fla_faces/img/random-covers-5x5-right.jpg));
    background-position: left top, 0 0 !important;
  }
  html.faceshow-controls body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    background-position: left top, 20% 20% !important;
  }
  html[data-fla-state*="do:1"] body.path-inspiration-area-faces__html #block-fla-content .node__content {
    background-position: left top, top center;
  }
  html[data-fla-state*="do:1"] body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    padding-bottom: var(--fla-footer-height);
  }
}

@container layout-container (min-aspect-ratio: 1.01) {
  body.path-inspiration-area-faces__html #block-fla-content .node__content {
    flex-direction: row;
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content:before, body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    padding: 0;
    height: 100%;
    background-size: 100% 100%, auto calc(var(--faces-cover-background-width) * var(--faces-10x10grid-width));
  }
  html.fupreload-progress-100 body.path-inspiration-area-faces__html #block-fla-content .node__content:before, html.fupreload-progress-100 body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    opacity: 0.9;
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content:before {
    background-position: right var(--fla-header-height);
  }
  body.path-inspiration-area-faces__html #block-fla-content .node__content:after {
    background-position: left var(--fla-header-height);
  }
}

body.path-inspiration-area-faces__html #grid-container {
  aspect-ratio: 1;
  width: var(--faces-10x10grid-width);
  flex: 0 0 var(--faces-10x10grid-width);
  position: relative;
  overflow: hidden;
  line-height: 0;
  /*
    &:before{
      content: " ";
      width: 100%;
      height: calc(100% - 120vw);
      // iphone 678+ patch
      @media screen and (width: 414px){
      height: calc(100% - 120vw + 4px);
      }
      display: block;
      @at-root html:not(.faceshow-controls) #grid-container:before{
        background: url("/themes/custom/fla/img/faces/Vignette-Covers.png") center center no-repeat,
        url("/themes/custom/fla/img/faces/Covers-01_1-row-reverse.png") bottom center no-repeat,
        url("/themes/custom/fla/img/faces/Aero_1200px-bottom.jpg") 50% calc(100% - 20vw) no-repeat;
        background-size: 100% 100%, 100% auto, 100% auto;
      }
    }

    &:after{
      content: " ";
      width: 100%;
      height: 20vw;
      display: block;

      @at-root html:not(.faceshow-controls) #grid-container:after{
        background: url("/themes/custom/fla/img/faces/Vignette-Covers.png") center center no-repeat,
        url("/themes/custom/fla/img/faces/Covers-01_1-row.jpg") center center no-repeat;
        background-size: 100% 100%, 100% auto;
      }
    }
    //*/
}

@container layout-container (min-aspect-ratio: 1.01) {
  body.path-inspiration-area-faces__html #grid-container {
    margin-top: var(--fla-header-height);
    margin-bottom: var(--fla-footer-height);
  }
}

body.path-inspiration-area-faces__html #grid-container .group {
  display: inline-block;
  cursor: pointer;
  width: 20%;
  height: 20%;
  /*
        filter: brightness(1.382);
        z-index: 3;
        &:before {
          @include sunrays;
        }
        // */
}

body.path-inspiration-area-faces__html #grid-container .group.active::before, body.path-inspiration-area-faces__html #grid-container .group:hover::before {
  content: "";
  border: 2px solid #669900;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

body.path-inspiration-area-faces__html #grid-container .group:hover::before {
  border-color: #ba5912 !important;
}

body.path-inspiration-area-faces__html #grid-container .face {
  width: 50%;
  box-sizing: border-box;
  display: inline-block;
}

body.path-inspiration-area-faces__html #grid-container .face img {
  width: 100%;
  height: auto;
}

body.path-inspiration-area-faces__html #grid-overlay + #grid-container,
body.path-inspiration-area-faces__html #grid-overlay + .cover-backgrounds + #grid-container {
  display: none;
  width: 100vw;
  height: var(--faces-25x4-grid-height);
  flex: 1 1 var(--faces-25x4-grid-height);
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  flex-direction: row;
  font-size: 0;
}

body.path-inspiration-area-faces__html #grid-overlay + #grid-container .group,
body.path-inspiration-area-faces__html #grid-overlay + .cover-backgrounds + #grid-container .group {
  width: auto;
  height: 100%;
  position: relative;
  display: inline-block;
  white-space: normal;
  flex: 0 0 auto;
  aspect-ratio: 1/4;
}

body.path-inspiration-area-faces__html #grid-overlay + #grid-container .group .face,
body.path-inspiration-area-faces__html #grid-overlay + .cover-backgrounds + #grid-container .group .face {
  width: auto;
  height: 25%;
  display: block;
  aspect-ratio: 1;
}

body.path-inspiration-area-faces__html #grid-overlay + #grid-container .group img,
body.path-inspiration-area-faces__html #grid-overlay + .cover-backgrounds + #grid-container .group img {
  height: 100%;
  width: auto;
  display: block;
}

@media (pointer: fine) {
  body.path-inspiration-area-faces__html #grid-overlay + #grid-container,
body.path-inspiration-area-faces__html #grid-overlay + .cover-backgrounds + #grid-container {
    overflow-x: hidden;
    cursor: ew-resize;
  }
}

body.path-inspiration-area-faces__html #grid-overlay {
  height: 100vmin;
  aspect-ratio: 1;
  z-index: 100;
  flex: 0 0 calc(var(--faces-overlay-height));
  border: 0 solid rgba(255, 255, 255, 0.5);
  border-top-width: 1px;
  border-bottom-width: 1px;
}

@container layout-container (min-aspect-ratio: 1.01) {
  body.path-inspiration-area-faces__html #grid-overlay {
    height: calc( 100vmin - var(--fla-header-height) - var(--fla-footer-height));
    margin-bottom: var(--fla-footer-height);
    margin-top: var(--fla-header-height);
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 1px;
    border-right-width: 1px;
    box-sizing: content-box;
  }
}

body.path-inspiration-area-faces__html #grid-overlay div.content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  filter: contrast(1.1) brightness(1.1) saturate(1.282) drop-shadow(0 0 10px black);
  z-index: 1000;
}

body.path-inspiration-area-faces__html #grid-overlay div.content img:not(.trans) {
  width: 100%;
  height: 100%;
}

body.path-inspiration-area-faces__html #grid-overlay div.content img.trans {
  display: none !important;
}

body.path-inspiration-area-faces__html #grid-overlay.grid-overlay-artist .content > div, body.path-inspiration-area-faces__html #grid-overlay.grid-overlay-album .content > div {
  flex-basis: 100vw;
  cursor: pointer;
}

body.path-inspiration-area-faces__html #grid-overlay.grid-overlay-group4 .content > div, body.path-inspiration-area-faces__html #grid-overlay.grid-overlay-artist-albums .content > div {
  flex-basis: 50%;
  aspect-ratio: 1;
  flex-grow: 1;
  flex-shrink: 1;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
}

body.path-inspiration-area-faces__html #grid-overlay .back {
  line-height: 0;
  background-color: #2B2B2B;
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  aspect-ratio: 1;
  height: var(--faces-controls-height);
  padding: 0;
}

html.faceshow-controls #grid-overlay .back {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

html.faceshow-controls #grid-overlay .back:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

html.faceshow-controls #grid-overlay .back::before {
  background: transparent url(/themes/custom/fla/icons/bootstrap/chevron-left.svg) center center no-repeat;
  filter: invert(1) opacity(0.258) drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.718));
  z-index: 100;
  font-size: 100px;
  background-size: contain;
}

html.faceshow-controls #grid-overlay .back:hover:before {
  filter: invert(1) opacity(0.258) drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.718));
  z-index: 100;
  font-size: 100px;
  background-size: contain;
  filter: invert(1) opacity(0.58) drop-shadow(2px 2px 8px red);
}

body.path-inspiration-area-faces__html #grid-overlay .back .group {
  display: inline-block;
  position: relative;
  z-index: 1;
}

body.path-inspiration-area-faces__html #grid-overlay.grid-overlay-group4 .back .group {
  width: 20%;
  height: 20%;
}

body.path-inspiration-area-faces__html #grid-overlay.grid-overlay-group4 .back .face {
  display: inline-block;
  width: 50%;
  height: 50%;
}

body.path-inspiration-area-faces__html #grid-overlay.grid-overlay-artist .back .flex-item {
  display: inline-block;
  width: 50%;
  height: 50%;
}

body.path-inspiration-area-faces__html #grid-overlay .back .group.active {
  /*//
      &:before{
      @include sunrays;
      }
      // */
}

body.path-inspiration-area-faces__html #grid-overlay .back .group.active .flex-item, body.path-inspiration-area-faces__html #grid-overlay .back .group.active .face {
  position: relative;
  display: inline-block;
}

body.path-inspiration-area-faces__html #grid-overlay .back .group.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ba5912;
  opacity: 0.5;
  z-index: 100;
}

body.path-inspiration-area-faces__html .grid-container .group {
  position: relative;
  box-sizing: border-box;
  transition-property: filter;
  transition-duration: 62ms;
  transition-timing-function: ease-out;
  filter: brightness(1);
  z-index: 2;
}

body.path-inspiration-area-faces__html .grid-container .group.flash {
  filter: brightness(1.618);
  z-index: 3;
}

body.path-inspiration-area-faces__html .grid-container .group.flash:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  background: transparent url("/themes/custom/fla/img/faces/Square-Sunrays.png") center center no-repeat;
  background-size: 100% 100%;
  z-index: 100;
}

html.touchevents body.path-inspiration-area-faces__html #controls {
  right: 0;
  opacity: 1;
}

body.path-inspiration-area-faces__html #controls {
  container-name: faces-controls;
  container-type: size;
  display: none;
  width: calc(100% - 2*var(--faces-controls-height));
  margin-left: var(--faces-controls-height);
  margin-right: var(--faces-controls-height);
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-duration: 0.5s;
  position: relative;
  z-index: 10;
  height: var(--faces-controls-height);
  flex: 0 0 var(--faces-controls-height);
}

body.path-inspiration-area-faces__html #controls > * {
  --active-layout: "none";
}

html.faceshow-controls #controls {
  display: block;
  opacity: 1;
  position: absolute;
  bottom: 0;
  z-index: 100;
}

html.faceshow-controls #controls:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

html.faceshow-controls #controls:after {
  height: 1px;
  bottom: auto;
  left: calc(-1*var(--faces-controls-height));
  width: calc(100vw);
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 200;
}

body.path-inspiration-area-faces__html #controls.slideshow-state-1, body.path-inspiration-area-faces__html #controls.slideshow-state-2, body.path-inspiration-area-faces__html #controls.slideshow-state-3, body.path-inspiration-area-faces__html #controls.slideshow-state-4 {
  left: 164px;
}

body.path-inspiration-area-faces__html #controls:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: transparent url("/themes/custom/fla/img/faces/Vignette-Covers.png") center center no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}

body.path-inspiration-area-faces__html #controls .control-panel {
  position: absolute;
  height: 100%;
  aspect-ratio: 1;
  background-color: black;
  right: calc( -1 * var(--faces-controls-height));
  bottom: 0;
  z-index: 10;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

body.path-inspiration-area-faces__html #controls .control-panel .background {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 0;
}

body.path-inspiration-area-faces__html #controls .control-panel .background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

body.path-inspiration-area-faces__html #controls .control-panel .background::before {
  background: transparent url(/themes/custom/fla/icons/bootstrap/chevron-right.svg) center center no-repeat;
  filter: invert(1) opacity(0.258) drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.718));
  z-index: 100;
  font-size: 100px;
  background-size: contain;
}

body.path-inspiration-area-faces__html #controls .control-panel .background:hover:before {
  filter: invert(1) opacity(0.258) drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.718));
  z-index: 100;
  font-size: 100px;
  background-size: contain;
  filter: invert(1) opacity(0.58) drop-shadow(2px 2px 8px red);
}

body.path-inspiration-area-faces__html #controls .control-panel .background > img {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50%;
  width: 50%;
}

body.path-inspiration-area-faces__html #controls .control-panel .background[data-num-items="1"] img {
  flex-basis: 100%;
  width: 100%;
}

body.path-inspiration-area-faces__html #controls #slider {
  border-radius: 0;
  border: 0;
  height: 100%;
  width: auto;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
}

body.path-inspiration-area-faces__html #controls #slider .ui-slider-handle {
  padding: 0;
  margin: 0 !important;
  pointer-events: none;
  border-top: 2px solid transparent;
  border-bottom: 1px solid transparent;
  height: 100cqh;
  width: 2px;
  box-sizing: border-box;
  transform: translateX(-50%);
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  background-size: contain;
  cursor: pointer;
}

html.faceshow-controls #slider:hover .ui-slider-handle {
  background-color: white !important;
  display: none;
}

body.path-inspiration-area-faces__html #controls #slider.ui-slider-disabled {
  opacity: 1;
  pointer-events: auto;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track {
  container-name: faces-slides-track;
  container-type: size;
  width: 100%;
  height: 100%;
  font-size: 0;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track > * {
  --active-layout: "none";
}

body.path-inspiration-area-faces__html #controls #slider .slides-track div.slide {
  display: inline;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid transparent;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track div.slide img {
  display: inline-block;
  width: 1cqw;
  height: 14.2857cqh;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: saturate(0.9) brightness(0.9);
}

body.path-inspiration-area-faces__html #controls #slider .slides-track div.slide:hover {
  filter: saturate(1.5) brightness(1.5);
  border-color: white;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track div.slide:hover.num-images-4 {
  border-color: yellow;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track div.slide:hover.num-images-4:nth-child(1) {
  border-left-width: 5px;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track div.slide:hover.num-images-4:nth-child(4) {
  border-right-width: 5px;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

body.path-inspiration-area-faces__html #controls #slider .slides-track:before {
  transition: all 0.5s ease-out;
  backdrop-filter: blur(3px);
}

body.path-inspiration-area-faces__html #controls #slider .slides-track:hover:before {
  backdrop-filter: blur(0);
}

body.path-inspiration-area-faces__html #controls .button, body.path-inspiration-area-faces__html #controls .ui-slider-handle {
  width: 40px;
  height: 40px;
  padding: 9px 10px;
  display: inline-block;
  background: transparent center center no-repeat;
  background-size: auto;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  box-sizing: content-box;
}

body.path-inspiration-area-faces__html #controls.prev-next-enabled-0 .prev, body.path-inspiration-area-faces__html #controls.prev-next-enabled-0 .next {
  display: none;
}

body.path-inspiration-area-faces__html #controls.prev-next-enabled-1 .prev {
  position: absolute;
  left: 0;
  margin: 0;
}

body.path-inspiration-area-faces__html #controls.prev-next-enabled-1 .next {
  position: absolute;
  right: 0;
  margin: 0;
}

body.path-inspiration-area-faces__html #controls .first {
  background-image: url(/themes/custom/fla/img/icons/first.png);
  display: none;
}

body.path-inspiration-area-faces__html #controls .last {
  background-image: url(/themes/custom/fla/img/icons/last.png);
  display: none;
}

/**
 * EFFECTS
 */
html {
  --fla-heading-font-family: "CenturyGothicStd", "Inter", sans-serif;
  --fla-subheading-font-family: "Poppins";
  --fla-body-font-family: "Inter", "Helvetica Neue", "Arial", "Helvetica", "sans-serif";
  --fla-text-color-light: rgba(255,255,255,0.618);
}

body {
  --fla-dock-height: 0px;
}

body[data-fla-state*="do:1"] {
  --fla-dock-height: var(--fla-footer-height);
}

/**
 * TO BE INCLUDED WITHIN THE CONTENT CONTAINING ELEMENT
 * (WHERE THE SCOLLING DOES HAPPEN)
 */
/**
 * Must be applied not to the block element but the h1/h2/h3 directly
 * block must be display: contents
 */
/**
  NOTE: THIS IS SPECIFIC TO FONTS
  ARIAL: 0.318/2
 */
/**
 * What this does, is:
 * Given a Text like "First, Last and Always" we have the descender "y"
 * this mixin calculates the space that is taken by descenders and subtracts it
 * from the height of the element via negative margin bottom. By the way:
 * the descender space is also taken if we have text that does NOT have a descender!
 * When to use:
 * - The text block needs to sit bottom align with a specific design line or element
 *
 * When NOT to use:
 * - If another text block is placed below this one. in that case we need to use another mixin "centuryGothicDescendantEqualizer"
 *
 * Get the UnitsPerEM via "ttx -t head CenturyGothicStd.ttf" (fonttools)
 * Get the sTypoDescender via `ttx -t OS/2 CenturyGothicStd.ttf` (fonttools)
 * Calculate the Descener Ratio: Descender Ratio = |sTypoDescender| / unitsPerEm
 * Translate into CSS: margin-bottom: calc(-1*<DescenderRatio>)
 *
 * @see https://stackoverflow.com/questions/27631736/meaning-of-top-ascent-baseline-descent-bottom-and-leading-in-androids-font
 */
/**
 What we do here is:
 Based on this graphic: https://i.sstatic.net/LwZJF.png we cut off the
 distance from the bottom to the Descent
 */
/**
 * @deprecated Moved to a SDC component
 */
/**
 * Meant to glue the menu image before and after the content area so it can be used as glass background..
 */
/**
 * Use the content's image as a background below the content area to prevent boring grey areas
 */
/*
 * Use this for sections where the main content area must start below the header (not overlayed by the glass header)
 * to look fine u need to define a backkground image either for the body element or the layout container
 */
/**
 * Very basic progress indicator attaching two pseudo-elements before and after html
 *
 */
html[class*='fupreload-progress']:after {
  content: "";
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 998;
  background-size: cover;
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-duration: 1s;
  pointer-events: none;
}

html[class*='fupreload-progress']:before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: calc(-75px - 2rem);
  margin-top: calc(-75px - 2rem);
  width: 150px;
  height: 150px;
  font-size: 3.625rem;
  font-family: "Roboto Light", "Arial";
  font-weight: 300;
  z-index: 999;
  text-align: center;
  color: white;
  text-rendering: optimizeLegibility;
  line-height: 150px;
  vertical-align: center;
  border-radius: 1000px;
  opacity: 1;
  pointer-events: none;
  text-shadow: 0px 0px 10px black;
  background: transparent var(--fla-preloader-item-url) center center no-repeat;
  background-size: cover;
  padding: 2rem;
  box-sizing: content-box;
}

html.fupreload-progress-0:before {
  content: "0%";
}

html.fupreload-progress-1:before {
  content: "1%";
}

html.fupreload-progress-2:before {
  content: "2%";
}

html.fupreload-progress-3:before {
  content: "3%";
}

html.fupreload-progress-4:before {
  content: "4%";
}

html.fupreload-progress-5:before {
  content: "5%";
}

html.fupreload-progress-6:before {
  content: "6%";
}

html.fupreload-progress-7:before {
  content: "7%";
}

html.fupreload-progress-8:before {
  content: "8%";
}

html.fupreload-progress-9:before {
  content: "9%";
}

html.fupreload-progress-10:before {
  content: "10%";
}

html.fupreload-progress-11:before {
  content: "11%";
}

html.fupreload-progress-12:before {
  content: "12%";
}

html.fupreload-progress-13:before {
  content: "13%";
}

html.fupreload-progress-14:before {
  content: "14%";
}

html.fupreload-progress-15:before {
  content: "15%";
}

html.fupreload-progress-16:before {
  content: "16%";
}

html.fupreload-progress-17:before {
  content: "17%";
}

html.fupreload-progress-18:before {
  content: "18%";
}

html.fupreload-progress-19:before {
  content: "19%";
}

html.fupreload-progress-20:before {
  content: "20%";
}

html.fupreload-progress-21:before {
  content: "21%";
}

html.fupreload-progress-22:before {
  content: "22%";
}

html.fupreload-progress-23:before {
  content: "23%";
}

html.fupreload-progress-24:before {
  content: "24%";
}

html.fupreload-progress-25:before {
  content: "25%";
}

html.fupreload-progress-26:before {
  content: "26%";
}

html.fupreload-progress-27:before {
  content: "27%";
}

html.fupreload-progress-28:before {
  content: "28%";
}

html.fupreload-progress-29:before {
  content: "29%";
}

html.fupreload-progress-30:before {
  content: "30%";
}

html.fupreload-progress-31:before {
  content: "31%";
}

html.fupreload-progress-32:before {
  content: "32%";
}

html.fupreload-progress-33:before {
  content: "33%";
}

html.fupreload-progress-34:before {
  content: "34%";
}

html.fupreload-progress-35:before {
  content: "35%";
}

html.fupreload-progress-36:before {
  content: "36%";
}

html.fupreload-progress-37:before {
  content: "37%";
}

html.fupreload-progress-38:before {
  content: "38%";
}

html.fupreload-progress-39:before {
  content: "39%";
}

html.fupreload-progress-40:before {
  content: "40%";
}

html.fupreload-progress-41:before {
  content: "41%";
}

html.fupreload-progress-42:before {
  content: "42%";
}

html.fupreload-progress-43:before {
  content: "43%";
}

html.fupreload-progress-44:before {
  content: "44%";
}

html.fupreload-progress-45:before {
  content: "45%";
}

html.fupreload-progress-46:before {
  content: "46%";
}

html.fupreload-progress-47:before {
  content: "47%";
}

html.fupreload-progress-48:before {
  content: "48%";
}

html.fupreload-progress-49:before {
  content: "49%";
}

html.fupreload-progress-50:before {
  content: "50%";
}

html.fupreload-progress-51:before {
  content: "51%";
}

html.fupreload-progress-52:before {
  content: "52%";
}

html.fupreload-progress-53:before {
  content: "53%";
}

html.fupreload-progress-54:before {
  content: "54%";
}

html.fupreload-progress-55:before {
  content: "55%";
}

html.fupreload-progress-56:before {
  content: "56%";
}

html.fupreload-progress-57:before {
  content: "57%";
}

html.fupreload-progress-58:before {
  content: "58%";
}

html.fupreload-progress-59:before {
  content: "59%";
}

html.fupreload-progress-60:before {
  content: "60%";
}

html.fupreload-progress-61:before {
  content: "61%";
}

html.fupreload-progress-62:before {
  content: "62%";
}

html.fupreload-progress-63:before {
  content: "63%";
}

html.fupreload-progress-64:before {
  content: "64%";
}

html.fupreload-progress-65:before {
  content: "65%";
}

html.fupreload-progress-66:before {
  content: "66%";
}

html.fupreload-progress-67:before {
  content: "67%";
}

html.fupreload-progress-68:before {
  content: "68%";
}

html.fupreload-progress-69:before {
  content: "69%";
}

html.fupreload-progress-70:before {
  content: "70%";
}

html.fupreload-progress-71:before {
  content: "71%";
}

html.fupreload-progress-72:before {
  content: "72%";
}

html.fupreload-progress-73:before {
  content: "73%";
}

html.fupreload-progress-74:before {
  content: "74%";
}

html.fupreload-progress-75:before {
  content: "75%";
}

html.fupreload-progress-76:before {
  content: "76%";
}

html.fupreload-progress-77:before {
  content: "77%";
}

html.fupreload-progress-78:before {
  content: "78%";
}

html.fupreload-progress-79:before {
  content: "79%";
}

html.fupreload-progress-80:before {
  content: "80%";
}

html.fupreload-progress-81:before {
  content: "81%";
}

html.fupreload-progress-82:before {
  content: "82%";
}

html.fupreload-progress-83:before {
  content: "83%";
}

html.fupreload-progress-84:before {
  content: "84%";
}

html.fupreload-progress-85:before {
  content: "85%";
}

html.fupreload-progress-86:before {
  content: "86%";
}

html.fupreload-progress-87:before {
  content: "87%";
}

html.fupreload-progress-88:before {
  content: "88%";
}

html.fupreload-progress-89:before {
  content: "89%";
}

html.fupreload-progress-90:before {
  content: "90%";
}

html.fupreload-progress-91:before {
  content: "91%";
}

html.fupreload-progress-92:before {
  content: "92%";
}

html.fupreload-progress-93:before {
  content: "93%";
}

html.fupreload-progress-94:before {
  content: "94%";
}

html.fupreload-progress-95:before {
  content: "95%";
}

html.fupreload-progress-96:before {
  content: "96%";
}

html.fupreload-progress-97:before {
  content: "97%";
}

html.fupreload-progress-98:before {
  content: "98%";
}

html.fupreload-progress-100:before {
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-duration: 1s;
  transition-delay: 1s;
  content: "99%";
}

html.fupreload-progress-100:after {
  opacity: 0;
}

html.fupreload-progress-100:before {
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-delay: 1s;
  transition-duration: 1s;
  content: "100%";
  pointer-events: none;
  opacity: 0;
}

/**
 * ANIMATIONS
 */
.flip-grid {
  perspective: 1000px;
  aspect-ratio: 1;
  width: 1000px;
  font-size: 0;
}

.flip-grid .tile {
  position: relative;
  aspect-ratio: 1 / 1;
  perspective: 1000px;
  cursor: pointer;
  display: inline-block;
}

.flip-grid .tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 700ms ease;
}

.flip-grid .tile.flop .tile-inner {
  transform: rotateY(180deg);
}

.flip-grid .image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  background: #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.flip-grid .image:nth-of-type(2) {
  transform: rotateY(180deg);
}

.flip-grid .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/**
 * faces specific flip grid formatting
 */
.node__content {
  /** Portrait Mode */
  /** landscape mode */
  /** Tile blur/black&white toogle */
}

.node__content .flip-grid {
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: 99;
}

.node__content .flip-grid:nth-child(1 of .flip-grid) {
  bottom: calc( 50% + var(--faces-10x10grid-width)/2);
}

.node__content .flip-grid:nth-child(2 of .flip-grid) {
  top: calc( 50% + var(--faces-10x10grid-width)/2);
}

html[data-fla-state*="do:1"] .node__content .flip-grid:nth-child(2 of .flip-grid) {
  top: calc( 50% + var(--faces-10x10grid-width)/2 - var(--fla-footer-height));
}

@container layout-container (min-aspect-ratio: 1.01) {
  .node__content .flip-grid {
    top: var(--fla-header-height) !important;
    width: auto;
    height: calc(100dvh - var(--fla-header-height));
  }
  html[data-fla-state*="do:1"] .node__content .flip-grid, html.faceshow-controls .node__content .flip-grid {
    height: calc(100dvh - var(--fla-header-height) - var(--fla-footer-height));
  }
  .node__content .flip-grid:nth-child(1 of .flip-grid) {
    right: calc( 50% + var(--faces-10x10grid-width)/2);
    left: auto;
  }
  .node__content .flip-grid:nth-child(2 of .flip-grid) {
    left: calc( 50% + var(--faces-10x10grid-width)/2);
  }
}

.node__content .flip-grid .tile {
  --flip-grid-grey-blurred:    saturate(0.1) blur(0.5px) contrast(0.85) hue-rotate(20deg) ;
  --flip-grid-colored-blurred: saturate(0.8) blur(0.5px) contrast(0.85) hue-rotate(20deg) ;
  --flip-grid-grey: saturate(0.1) blur(0);
  --flip-grid-colored: saturate(0.8) blur(0);
  --flip-grid-tile-accented: saturate(1.382);
  transition: filter 0.5s ease-out;
}

html:not(.faceshow-controls) .node__content .flip-grid .tile {
  filter: var(--flip-grid-colored-blurred);
}

html:not(.faceshow-controls) .flip-grid:hover .tile {
  filter: var(--flip-grid-colored);
}

.grid-overlay-group4 ~ .flip-grid .tile,
.grid-overlay-artist ~ .flip-grid .tile {
  filter: var(--flip-grid-colored-blurred);
}

.grid-overlay-group4 ~ .flip-grid:hover .tile,
.grid-overlay-artist ~ .flip-grid:hover .tile {
  filter: var(--flip-grid-colored);
}

.grid-overlay-album ~ .flip-grid .tile,
.grid-overlay-artist-albums ~ .flip-grid .tile {
  filter: var(--flip-grid-grey-blurred);
}

.grid-overlay-album ~ .flip-grid:hover .tile,
.grid-overlay-artist-albums ~ .flip-grid:hover .tile {
  filter: var(--flip-grid-grey);
}

.node__content .flip-grid .tile.is-flipping, .node__content .flip-grid .tile:hover {
  filter: var(--flip-grid-tile-accented);
}

/**
 * LB Jun19, 2026 - Re-enable the old "faceshow-running" mode for PHONES only!
 *
 */
@container layout-container (max-width: 500px) and (max-height: 1000px) {
  html.path-inspiration-area-faces__html.faceshow-controls .node__content:before {
    flex: 0 0 calc(var(--fla-header-height)) !important;
  }
  html.path-inspiration-area-faces__html.faceshow-controls .node__content:after {
    flex: 0 0 calc(var(--fla-footer-height)) !important;
  }
  html.path-inspiration-area-faces__html .node__content .flip-grid {
    display: none;
  }
  html.path-inspiration-area-faces__html #grid-overlay + #grid-container,
html.path-inspiration-area-faces__html #grid-overlay + .cover-backgrounds + #grid-container {
    display: block;
  }
}

@container layout-container (min-aspect-ratio: 1.01) {
  html.path-inspiration-area-faces__html #grid-overlay + #grid-container,
html.path-inspiration-area-faces__html #grid-overlay + .cover-backgrounds + #grid-container {
    display: none;
  }
}

/*# sourceMappingURL=fla-inspiration-faces.css.map */