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
 */
body.path-slideshow__html #block-flasubheadingblock, body.path-slideshow__html #block-pagetitle-desktop {
  display: inline-block !important;
}

body.path-slideshow__html #block-fla-content {
  display: none;
}

body.path-slideshow__html #block-views-block-7x7-slideshow-block-1, body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 > div, body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .view, body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .view .view-content, body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .skin-default, body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .views_slideshow_cycle_main, body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .views_slideshow_cycle_teaser_section {
  height: 100% !important;
  width: 100%;
}

body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .views_slideshow_cycle_main {
  height: calc(100% - 50px) !important;
}

html.glass-dock body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .views_slideshow_cycle_main {
  height: 100% !important;
}

body.path-slideshow__html #block-views-block-7x7-slideshow-block-1 .view-content {
  position: relative;
}

body.path-slideshow__html .views_slideshow_cycle_main .views_slideshow_cycle_slide, body.path-slideshow__html .views_slideshow_cycle_main .views_slideshow_cycle_slide div:not(.field--name-name), body.path-slideshow__html .views_slideshow_cycle_main .views_slideshow_cycle_slide article {
  height: 100% !important;
  width: 100%;
}

html[data-fla-state*="le:1"] body.path-slideshow__html .views_slideshow_cycle_main .views_slideshow_cycle_slide, html[data-fla-state*="le:1"] body.path-slideshow__html .views_slideshow_cycle_main .views_slideshow_cycle_slide div:not(.field--name-name), html[data-fla-state*="le:1"] body.path-slideshow__html .views_slideshow_cycle_main .views_slideshow_cycle_slide article {
  background-color: black;
  width: 100% !important;
}

body.path-slideshow__html .views_slideshow_cycle_main .field--name-name {
  display: none;
  opacity: 0.7;
  width: 100%;
  background: none;
  text-align: center;
  position: absolute;
  left: 0;
  top: 60px;
  background-color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  color: #669900;
}

body.path-slideshow__html .views_slideshow_cycle_main .field--name-field-media-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html[data-fla-state*="le:1"] body.path-slideshow__html .views_slideshow_cycle_main .field--name-field-media-image picture img {
  object-fit: contain !important;
}

body.path-slideshow__html .views_slideshow_cycle_main .field--name-field-media-image > div[class*="orientation-"] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #323232;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media {
  /**
 * Should be included within article.media or article.media--type-_x7-slide
 */
}

body.path-slideshow__html .views_slideshow_cycle_main article.media .field--name-field-media-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-TopLeft picture img {
  object-position: top left;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-TopCenter picture img {
  object-position: top center;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-TopRight picture img {
  object-position: top right;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-CenterLeft picture img {
  object-position: center left;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-CenterCenter picture img {
  object-position: center center;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-CenterRight picture img {
  object-position: center right;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-BottomLeft picture img {
  object-position: bottom left;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-BottomCenter picture img {
  object-position: bottom center;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-BottonCenter picture img {
  object-position: bottom center;
}

body.path-slideshow__html .views_slideshow_cycle_main article.media.alignment-BottomRight picture img {
  object-position: bottom right;
}

body.path-slideshow__html .views-slideshow-controls-bottom {
  height: 50px;
  width: 100%;
  text-align: center;
  z-index: 20;
  position: absolute;
  background-color: #323232;
  border-top: 1px solid black;
  z-index: 60;
}

html.glass-dock body.path-slideshow__html .views-slideshow-controls-bottom {
  background-color: transparent;
  bottom: var(--fla-dock-height);
}

html.glass-dock body.path-slideshow__html .views-slideshow-controls-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

html.glass-dock body.path-slideshow__html .views-slideshow-controls-bottom:before {
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 0;
  backdrop-filter: grayscale(20%) blur(3px) brightness(60%);
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_previous a,
body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_next a,
body.path-slideshow__html .views-slideshow-controls-bottom .views-slideshow-controls-text-status-pause a,
body.path-slideshow__html .views-slideshow-controls-bottom .views-slideshow-controls-text-status-play a,
body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_exit a {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px auto;
  width: 50px;
  height: 50px;
  display: inline-block;
  overflow: hidden;
  color: transparent;
  filter: invert(1);
  opacity: 0.9;
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_previous,
body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_next {
  position: absolute;
  top: 0;
  font-size: 0;
  text-transform: uppercase;
  padding: 0 10px;
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_previous {
  left: 60px;
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_previous a {
  background-image: url(/themes/custom/fla/icons/ionicons-5.2.3/play-back-sharp.svg);
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_next {
  right: 60px;
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_next a {
  background-image: url(/themes/custom/fla/icons/ionicons-5.2.3/play-forward-sharp.svg);
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_exit {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotateY(180deg);
  opacity: 0.5;
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_controls_text_exit a {
  background-image: url(/themes/custom/fla/icons/ionicons-5.2.3/exit-outline.svg);
}

body.path-slideshow__html .views-slideshow-controls-bottom .views-slideshow-controls-text-status-pause a {
  background-image: url(/themes/custom/fla/icons/ionicons-5.2.3/play-sharp.svg);
}

body.path-slideshow__html .views-slideshow-controls-bottom .views-slideshow-controls-text-status-play a {
  background-image: url(/themes/custom/fla/icons/ionicons-5.2.3/pause-sharp.svg);
}

body.path-slideshow__html .views-slideshow-controls-bottom .views_slideshow_slide_counter {
  position: absolute;
  top: -25px;
  width: 100%;
  pointer-events: none;
  text-align: center;
  opacity: 0.9;
}

body.path-slideshow__html .views-slideshow-controls-bottom .widget_pager {
  margin-bottom: 0;
}

body.path-slideshow__html .views-slideshow-controls-bottom .widget_pager > li {
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 16px;
  background: #323232;
  border: 1px solid transparent;
}

body.path-slideshow__html .views-slideshow-controls-bottom .widget_pager > li.active {
  background: #669900;
  border: 1px solid #323232;
}

/*# sourceMappingURL=fla-slideshow.css.map */