/*********************
 Design Tokens (Project)
 *********************/
:root {
  /***** Colors *****/
  --color_primary--200: #eaf7fc;
  /* 90% tint */
  --color_primary--300: #d5eef8;
  /* 80% tint */
  --color_primary--400: #97d5ee;
  /* 50% tint */
  --color_primary--500: #2eaadd;
  /* Primary */
  --color_primary--600: #2999c7;
  /* 10% shade */
  --color_primary--700: #20779b;
  /* 30% shade */
  --color_primary--800: #124458;
  /* 60% shade */
  --color_primary--900: #09222c;
  /* 80% shade */
  --color_primary--gradient--light: linear-gradient(90deg, var(--color_primary--200) 0%, var(--color_primary--400) 100%);
  --color_primary--gradient--dark: linear-gradient(90deg, var(--color_primary--500) 0%, var(--color_primary--700) 100%);
  --color_secondary--200: #e7e8e9;
  /* 90% tint */
  --color_secondary--300: #ced1d2;
  /* 80% tint */
  --color_secondary--400: #858c8f;
  /* 50% tint */
  --color_secondary--500: #0a191f;
  /* Secondary */
  --color_secondary--600: #09171c;
  /* 10% shade */
  --color_secondary--700: #050d10;
  /* 50% shade */
  --color_secondary--800: #020506;
  /* 80% shade */
  --color_secondary--900: #010203;
  /* 90% shade */
  --color_secondary--gradient--light: linear-gradient(90deg, var(--color_secondary--200) 0%, var(--color_secondary--400) 100%);
  --color_secondary--gradient--dark: linear-gradient(90deg, var(--color_secondary--500) 0%, var(--color_secondary--700) 100%);
  --color_crossover-gradient--dark: linear-gradient(90deg, var(--color_primary--500) 0%, var(--color_secondary--500) 100%);
  --color_headings: #0b0b0b;
  --color_body--light: #3a3c41;
  --color_body--dark: #1d1e21;
  /***** Spacing *****/
  --comp-spacing--outer: 144px;
  --comp-spacing--inner: 108px;
  /***** Dimensions *****/
  --p--sm: 24px;
  --p--md: 36px;
  --p--lg: 48px;
  --p--xl: 72px;
  --height_tb: 0px;
  /* Set in JS */
  --height_header: 0px;
  /* Set in JS */
  /***** Base Font Size *****/
  --base-font-size: 17px;
  /***** Font Family *****/
  --font_headings: 'Red Hat Display', sans-serif;
  --font_body: 'Red Hat Display', sans-serif;
  /***** Border Radius *****/
  --border-radius--sm: 3px;
  --border-radius--md: 24px;
  --border-radius--lg: 48px; }

@media only screen and (max-width: 991px) {
  /***** Spacing *****/
    :root {
      --comp-spacing--outer: 108px;
      --comp-spacing--inner: 96px; } }

@media only screen and (max-width: 480px) {
  /***** Spacing *****/
    :root {
      --comp-spacing--outer: 96px;
      --comp-spacing--inner: 72px; } }

.sticky {
  --default_offset: 36px; }
/****************************
 Figure
 ****************************/
figure {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 0; }
/***** Caption *****/
figure figcaption {
  margin-top: var(--type-scale-rel--xs-2);
  padding: 0 5%;
  font-size: var(--type-scale-rel--sm);
  line-height: var(--type-scale-rel--lg);
  text-align: center;
  color: var(--color_body--light);
  opacity: 0.7; }

figure figcaption:empty {
  display: none;
  visibility: hidden;
  opacity: 0; }
/****************************
 Inline Image
 ****************************/
.yls_inlineimg picture {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius--lg);
  box-shadow: var(--shadow--lg); }

.yls_inlineimg picture, .yls_inlineimg picture img, .yls_inlineimg picture .lazyloader {
  -webkit-transition: all 0.64s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.64s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.64s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_inlineimg img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  will-change: transform; }

.yls_inlineimg img.lazyload, .yls_inlineimg img.lazyloading {
  opacity: 0;
  transform: scale(1.1); }

.yls_inlineimg img.lazyloaded {
  opacity: 1;
  transform: scale(1); }

.yls_inlineimg picture .lazyloader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent; }

@keyframes lazyloader {
  0% {
    background: var(--color_secondary--200); }

  50% {
    background: var(--color_secondary--300); }

  100% {
    background: var(--color_secondary--200); } }

.yls_inlineimg img.lazyload + .lazyloader, .yls_inlineimg img.lazyloading + .lazyloader {
  animation-name: lazyloader;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards; }
/****************************
 Inline Embed
 ****************************/
.yls_embed, .yls_embed__container {
  width: 100%; }

.yls_embed__container {
  position: relative;
  line-height: 0; }

.yls_embed iframe, .yls_embed embed {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border: 0;
  outline: 0;
  border-radius: inherit; }
/***** Default *****/
.yls_embed--def .yls_embed__container {
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow--lg); }

.yls_embed--def iframe, .yls_embed--def embed {
  width: 100%;
  height: 450px;
  max-height: 60vh; }
/***** Full Width *****/
.yls_embed--fullw iframe, .yls_embed--fullw embed {
  width: 100%; }
/***** Video *****/
.yls_embed--vid .yls_embed__container {
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: var(--border-radius--md);
  box-shadow: var(--shadow--lg); }

.yls_embed--vid iframe, .yls_embed--vid embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
/****************************
 Breadcrumbs
 ****************************/
.yls_breadcrumbs {
  --gap: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 calc(var(--gap) / -2);
  font-size: var(--type-scale--md); }

.yls_breadcrumbs > * {
  padding: 0 calc(var(--gap) / 2); }

.yls_breadcrumbs a {
  text-decoration: none; }

.yls_breadcrumbs .s-crumb {
  line-height: 1; }

.yls_breadcrumbs .s-crumb:not(.s-active) {
  font-weight: normal;
  opacity: 0.6; }

.yls_breadcrumbs .s-crumb:not(.s-active):hover {
  opacity: 1; }

.yls_breadcrumbs .s-crumb.s-active {
  font-weight: bold; }

.yls_breadcrumbs .s-delimiter {
  height: 1em; }

.yls_breadcrumbs .s-delimiter:before {
  position: relative;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: 0% 0%;
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  vertical-align: top;
  content: '';
  border-style: solid;
  border-width: 2px 2px 0 0;
  opacity: 0.4; }
/***** Light Mode *****/
.yls_breadcrumbs.light .s-crumb {
  color: var(--color_body--dark); }

.yls_breadcrumbs.light .s-delimiter:before {
  border-color: var(--color_body--dark); }
/***** Dark Mode *****/
.yls_breadcrumbs.dark .s-crumb, .yls_breadcrumbs.dark .s-delimiter {
  color: #fff; }

.yls_breadcrumbs.dark .s-delimiter:before {
  color: #fff; }
/****************************
 Date Formatting
 ****************************/
.yls_date {
  font-size: var(--type-scale--sm);
  line-height: 1; }

.yls_date i {
  margin-right: 0.1em;
  opacity: 0.6; }

.yls_date span {
  font-weight: bold; }
/****************************
 Counters
 ****************************/
.yls_counter__list.cols--1, .yls_counter__list.cols--2, .yls_counter__list.cols--3 {
  --gap: 60px; }

.yls_counter__list.cols--4 {
  --gap: 48px; }

.yls_counter__list.cols--5 {
  --gap: 30px; }
/***** Counter Settings *****/
.yls_counter__container {
  width: 100%;
  height: 100%;
  padding: 30px 24px;
  border-radius: var(--border-radius--md);
  box-shadow: var(--shadow--lg); }

.yls_counter__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  font-size: var(--type-scale--xl-2);
  line-height: 1;
  color: var(--color_secondary--900); }

.yls_counter__prefix, .yls_counter__suffix {
  font-size: var(--type-scale-rel--xs);
  opacity: 0.4; }

.yls_counter__value {
  font-weight: bold; }

.yls_counter__label {
  margin-top: var(--type-scale-rel--xs-2);
  font-size: var(--type-scale--md);
  line-height: var(--type-scale-rel--lg);
  font-weight: normal;
  text-align: center;
  color: var(--color_secondary--900);
  opacity: 0.8; }

@media only screen and (max-width: 991px) {
  .yls_counter__list.cols--4 .yls_counter__item, .yls_counter__list.cols--5 .yls_counter__item {
    width: var(--w--6); } }

@media only screen and (max-width: 480px) {
  .yls_counter__list {
    --gap: 24px !important; }

  .yls_counter__list .yls_counter__item {
    width: 100% !important; }

  .yls_counter .yls_counter__container {
    padding: 24px; }

  .yls_counter .yls_counter__value {
    font-size: var(--type-scale--xl); }

  .yls_counter .yls_counter__label {
    font-size: var(--type-scale--sm); } }
/****************************
 Opening Hours
 ****************************/
.yls_openhours h3:empty {
  display: none !important; }

.yls_openhours table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  font-size: var(--type-scale--md);
  line-height: var(--type-scale--md); }

.yls_openhours table tbody, .yls_openhours table tr {
  width: 100%; }

.yls_openhours table tr td {
  --padding-v: var(--type-scale-rel--xs-3);
  padding-top: var(--padding-v);
  padding-bottom: var(--padding-v);
  vertical-align: baseline; }

.yls_openhours table tr:first-child td {
  padding-top: 0; }

.yls_openhours table tr:last-child td {
  padding-bottom: 0; }

.yls_openhours table tr td:first-child {
  padding-right: var(--type-scale-rel--md);
  font-weight: bold; }

.yls_openhours__shorthand {
  font-size: var(--type-scale-rel--sm);
  text-transform: uppercase; }

@media only screen and (min-width: 481px) {
  .yls_openhours__shorthand {
    display: none; } }

@media only screen and (max-width: 480px) {
  .yls_openhours table {
    --gap: var(--type-scale-rel--xs);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; }

  .yls_openhours__label {
    display: none; } }
/****************************
 Table
 ****************************/
.yls_table table {
  width: 100%;
  border: 0;
  border-collapse: collapse; }

.yls_table table tr {
  border-bottom: 1px solid var(--color_secondary--300); }

.yls_table table th, .yls_table table td {
  padding: 1rem; }

.yls_table table th {
  color: var(--color_secondary--600); }

.yls_table table th:not(:empty) {
  background: var(--color_secondary--300); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Red Hat Display', sans-serif, sans-serif; }

html, body {
  font-family: 'Red Hat Display', sans-serif, sans-serif; }

:root {
  /*--sm-loader-color-smC16908SmSn1p3T6i235-style: var(--sm-loader-color);*/
  /*--sm-loader-display-smC16908SmSn1p3T6i235-style: none;*/
  --sm-loader-color-smC16908SmSn1p3T6i235-style: var(--color_secondary--500);
  --sm-loader-background-smC16908SmSn1p3T6i235-style: var(--color_secondary--200);
  --sm-loader-size-smC16908SmSn1p3T6i235-style: 100px;
  border-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  /*display: var(--sm-loader-display-smC16908SmSn1p3T6i235-style);*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--sm-loader-background-smC16908SmSn1p3T6i235-style);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style.s-loader__inactive {
  visibility: hidden;
  opacity: 0;
  pointer-events: none; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style.s-loader__active {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style.s-loader__hidden {
  display: none; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader__inner {
  width: var(--sm-loader-size-smC16908SmSn1p3T6i235-style);
  height: var(--sm-loader-size-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-plane, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-chase-dot:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-bounce-dot, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-wave-rect, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-pulse, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-flow-dot, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-swing-dot, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-circle-dot:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-circle-fade-dot:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-grid-cube, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-fold-cube:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-wander-cube {
  background-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-chase-line {
  border-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style) transparent transparent transparent; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-spinner {
  border-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style) transparent transparent var(--sm-loader-color-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style {
  flex-direction: row; }

/****************************
 General Settings
 ****************************/
.s-cookie__modal86 {
  --offset: 48px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); }

@media only screen and (max-width: 480px) {
  .s-cookie__modal86 {
    --offset: 24px; } }
/****************************
 Banner
 ****************************/
@keyframes ty {
  from {
    opacity: 0;
    transform: translate(0, 100px); }

  to {
    opacity: 1;
    transform: translate(0, 0); } }

.s-cookie__modal86 .s-banner {
  position: absolute;
  top: auto;
  left: var(--offset);
  right: auto;
  bottom: var(--offset);
  z-index: 100002;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - ( var(--offset) * 2 ));
  max-width: 600px;
  padding: 30px;
  background: #fff;
  border-radius: var(--border-radius--md);
  box-shadow: var(--shadow--xl);
  opacity: 0;
  animation-name: ty;
  animation-duration: 0.38s;
  animation-delay: 0.76s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards; }

.s-cookie__modal86 .s-banner > .flex_auto--rows {
  --gap: 24px; }

.s-cookie__modal86 .s-banner .yls_text {
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl); }

.s-cookie__modal86 .s-banner .s-action__list .s-settings__btn, .s-cookie__modal86 .s-banner .s-action__list .s-accept__btn {
  cursor: pointer; }

@media only screen and (max-width: 991px) {
  .s-cookie__modal86 .s-banner .yls_btn-list {
    flex-direction: column;
    align-items: stretch; }

  .s-cookie__modal86 .s-banner .yls_btn-list > * {
    text-align: center; } }

@media only screen and (max-width: 480px) {
  .s-cookie__modal86 .s-banner {
    padding: 30px 24px; } }
/****************************
 Modal
 ****************************/
.s-cookie__modal86 .s-modal {
  position: relative;
  z-index: 100001;
  width: calc(100% - ( var(--offset) * 2 ));
  max-width: 800px;
  max-height: 100%;
  padding: 30px;
  overflow: auto !important;
  background: #fff;
  border-radius: var(--border-radius--md);
  box-shadow: var(--shadow--xl); }

.s-cookie__modal86 .s-modal .s-btn--reset {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none; }
/***** Header *****/
.s-cookie__modal86 .s-modal__header {
  display: flex;
  align-items: center; }

.s-cookie__modal86 .s-modal__header h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: var(--type-scale--xl-1);
  line-height: var(--type-scale-rel--lg); }

.s-cookie__modal86 .s-modal__header h2 i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--type-scale-rel--lg);
  /* match line-height */
  height: var(--type-scale-rel--lg);
  /* match line-height */
  margin-right: var(--type-scale-rel--xs-2);
  background: var(--color_secondary--200);
  border-radius: 50%; }

.s-cookie__modal86 .s-modal__header h2 i:before {
  font-size: var(--type-scale-rel--xs); }
/***** Content *****/
.s-cookie__modal86 .s-modal__content .yls_text {
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl); }
/* Groups */
.s-cookie__modal86 .s-modal__content .s-group__list {
  --gap: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap); }

.s-cookie__modal86 .s-modal__content .s-group__actions {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-group__title {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-group__title svg {
  --height: 0.4em;
  flex-shrink: 0;
  width: calc(var(--height) * 1.62);
  height: var(--height);
  margin-top: calc(var(--height) / 2);
  margin-left: var(--height);
  fill: rgba(0, 0, 0, 0.4); }

.s-cookie__modal86 .s-modal__content .s-group__accordion {
  overflow: hidden !important;
  max-height: 0;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.s-cookie__modal86 .s-modal__content .s-group__accordion .s-group__info {
  margin-top: 1em;
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl); }
/* Switches */
.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch {
  --border-width: 2px;
  --color: rgba(0, 0, 0, 0.1);
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  width: 52px;
  height: 26px;
  padding: 3px;
  background: var(--color);
  border: var(--border-width) solid var(--color);
  border-radius: 50px; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch .s-switch__indicator {
  position: relative;
  display: block;
  pointer-events: 'none';
  left: 0% !important;
  height: 100%;
  border-radius: 50%;
  background: #fff; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch.s-active {
  --color: var(--color_primary--500);
  background: var(--color);
  border: var(--border-width) solid var(--color); }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch.s-active .s-switch__indicator {
  left: 100% !important;
  -webkit-transform: translateX(-100%) !important;
  transform: translateX(-100%) !important; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch.s-disabled {
  pointer-events: none;
  opacity: 0.4 !important; }
/* Button List */
.s-cookie__modal86 .s-modal__content .s-action__list {
  justify-content: space-between; }

.s-cookie__modal86 .s-modal__content .s-action__list .s-save__btn, .s-cookie__modal86 .s-modal__content .s-action__list .s-decline__btn {
  cursor: pointer; }

@media only screen and (max-width: 991px) {
  .s-cookie__modal86 .s-modal__content .yls_btn-list {
    flex-direction: column;
    align-items: stretch; }

  .s-cookie__modal86 .s-modal__content .yls_btn-list > * {
    text-align: center; } }

.yls_tb {
  z-index: 55000;
  width: 100%;
  padding: 10px 0;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_tb.hide-on-load:not(.scroll) {
  transform: translate(0, -100%);
  opacity: 0; }

.yls_tb.hide-on-load.scroll {
  transform: translate(0, 0);
  opacity: 1; }
/***** Offset *****/
.yls_tb.set-offset.absolute + .yls_tb__offset, .yls_tb.set-offset.fixed + .yls_tb__offset {
  height: var(--height_tb); }
/***** Position *****/
.yls_tb.absolute.position--top, .yls_tb.fixed.position--top, .yls_tb.absolute.position--bottom {
  top: 0;
  left: 0; }

.yls_tb.fixed.position--bottom {
  bottom: 0;
  left: 0; }
/***** Color Mode *****/
.yls_tb.light {
  --text_color: inherit;
  background: #fff;
  box-shadow: var(--shadow--md); }

.yls_tb.dark {
  --text_color: #fff;
  background: var(--color_secondary--800); }
/****************************
 Group Settings
 ****************************/
.yls_tb__group {
  flex-grow: 1; }

@media only screen and (min-width: 992px) {
  .yls_tb__group.left {
    justify-content: flex-start; }

  .yls_tb__group.center {
    justify-content: center; }

  .yls_tb__group.right {
    justify-content: flex-end; } }

.yls_tb__group-wrapper {
  align-items: center; }

@media only screen and (max-width: 991px) {
  .yls_tb__group {
    justify-content: center; } }
/****************************
 Announcement
 ****************************/
.yls_tb__announcement {
  --gap: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 calc(var(--gap) / -2); }

.yls_tb__announcement > * {
  padding: 0 calc(var(--gap) / 2); }

.yls_tb__announcement .yls_badge:empty {
  display: none; }

.yls_tb__announcement .yls_text {
  white-space: nowrap; }
/***** Light Mode *****/
/***** Dark Mode *****/
.yls_tb.dark .yls_tb__announcement .yls_text {
  color: var(--text_color); }
/****************************
 Social Media
 ****************************/
.yls_tb .yls_social-media .yls_social-media__label {
  color: var(--text_color); }
/****************************
 Breadcrumbs
 ****************************/
.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb {
  display: inline-block; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-truncate, .s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-truncate.s-index > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-delimiter {
  display: inline-flex;
  justify-content: center;
  align-items: center; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style {
  display: flex !important;
  flex-direction: row; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style {
  align-items: center; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index {
  display: flex !important;
  flex-direction: row; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index {
  align-items: center; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index:hover {
  display: flex !important;
  flex-direction: row; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index.s-active {
  display: flex !important;
  flex-direction: row; }

.yls_footer {
  position: relative;
  padding: calc(var(--comp-spacing--inner) / 2) 0; }

.yls_footer__col.w--auto {
  width: auto !important; }

@media only screen and (max-width: 991px) {
  .yls_footer__col {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important; } }
/****************************
 Color Mode
 ****************************/
/***** Light *****/
.yls_footer.light {
  --text-color: var(--color_body--light);
  background: var(--color_secondary--200); }
/***** Dark *****/
.yls_footer.dark {
  --text-color: #fff;
  background: var(--color_secondary--700); }
/****************************
 Typography
 ****************************/
.yls_footer h2, .yls_footer h3, .yls_footer h4, .yls_footer h5, .yls_footer h6 {
  max-width: 24ch;
  color: var(--text-color); }

.yls_footer h2 {
  margin-bottom: var(--type-scale-rel--sm);
  font-size: var(--type-scale--md); }

.yls_footer .yls_text {
  max-width: 32ch;
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl);
  color: var(--text-color); }

@media only screen and (max-width: 991px) {
  .yls_footer h2, .yls_footer h3, .yls_footer h4, .yls_footer h5, .yls_footer h6, .yls_footer .yls_text {
    margin-left: auto;
    margin-right: auto; } }
/****************************
 Social Media
 ****************************/
@media only screen and (max-width: 991px) {
  .yls_footer .yls_social-media {
    align-items: center; } }
/****************************
 Sitemap
 ****************************/
.yls_sitemap {
  --gap: var(--type-scale--xs);
  margin: calc(var(--gap) / -2) 0;
  line-height: 0; }

.yls_sitemap__item {
  padding: calc(var(--gap) / 2) 0; }

@media only screen and (min-width: 992px) {
  .yls_sitemap.cols-2 {
    --col-count: 2; }

  .yls_sitemap.cols-3 {
    --col-count: 3; }

  .yls_sitemap.cols-4 {
    --col-count: 4; }

  .yls_sitemap {
    display: inline-block;
    -webkit-columns: var(--col-count);
    -moz-columns: var(--col-count);
    columns: var(--col-count);
    column-gap: 30px; }

  .yls_sitemap__item {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid; } }

@media only screen and (max-width: 991px) {
  .yls_sitemap__item {
    text-align: center; } }
/****************************
 Credits
 ****************************/
.yls_footer .yls_credits {
  line-height: var(--type-scale-rel--md); }

@media only screen and (min-width: 992px) {
  .yls_footer .yls_credits {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translate(0, -50%) scale(-1);
    z-index: 20;
    writing-mode: vertical-lr; } }

.yls_footer .yls_credits a {
  display: inline-block;
  white-space: nowrap;
  font-size: var(--type-scale--xs);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--text-color); }

.yls_footer .yls_credits__label {
  color: inherit;
  white-space: nowrap;
  opacity: 0.6; }

.yls_footer .yls_credits__ref {
  color: inherit;
  white-space: nowrap; }

@media only screen and (max-width: 991px) {
  .yls_footer .yls_credits {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px; } }

.yls_header {
  --padding: 12px;
  position: relative;
  z-index: 50000;
  width: 100%;
  padding: var(--padding) 0;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_header.light {
  background: transparent; }

.yls_header.dark {
  background: transparent; }

.yls_header.absolute, .yls_header.fixed {
  top: auto; }

.yls_header__wrapper {
  align-items: center; }

@media only screen and (max-width: 991px) {
  .yls_header {
    --padding: 24px; } }

@media only screen and (max-width: 480px) {
  .yls_header {
    --padding: 24px; } }
/****************************
 Logo
 ****************************/
.yls_header__logo {
  --max-width: 300px;
  --max-height: 96px;
  flex-grow: 0; }

.yls_header__logo .logo_url {
  display: inline-block; }

.yls_header__logo .sw-logo-pic img {
  max-width: var(--max-width);
  max-height: var(--max-height);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

@media only screen and (max-width: 480px) {
  .yls_header__logo .sw-logo-pic img {
    --max-height: 60px;
    max-width: 50vw; } }
/****************************
 Navigation Layout
 ****************************/
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav {
    flex-grow: 1; }

  .yls_header__nav-wrapper {
    --gap: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 calc(var(--gap) / -2); }

  .yls_header__nav-wrapper.secondary--right {
    flex-direction: row;
    align-items: center; }

  .yls_header__nav-wrapper.secondary--top {
    --gap: 12px;
    flex-direction: column-reverse;
    align-items: flex-end;
    margin: calc(var(--gap) / -2) 0; }

  .yls_header__nav-wrapper.primary--left {
    justify-content: space-between; }

  .yls_header__nav-wrapper.primary--right {
    justify-content: flex-end; }

  .yls_header__nav-wrapper > [class*="yls_header__nav"] {
    margin: 0 calc(var(--gap) / 2); }

  .yls_header__nav-wrapper.secondary--top > [class*="yls_header__nav"] {
    margin: calc(var(--gap) / 2) 0; }

  .yls_header .mobile {
    display: none; } }
/* Mobile */
@media only screen and (max-width: 991px) {
  .yls_header .desktop {
    display: none; }

  .yls_header__nav-trigger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end; } }
/****************************
 Navigation Items
 ****************************/
/***** Label Styling *****/
.yls_header__nav-wrapper a, .yls_header__nav-wrapper a .yls_btn-primary__label {
  white-space: nowrap; }

.yls_header.dark .yls_header__nav.desktop .yls_header__nav-primary > ul > li > a:not([class*="yls_btn"]), .yls_header.dark .yls_header__nav.desktop .yls_header__nav-secondary > ul > li > a:not([class*="yls_btn"]), .yls_header.dark .yls_header__nav-modal.mobile ul li a:not([class*="yls_btn"]), .yls_header.dark .yls_header__nav .yls_social-media__label {
  color: #fff; }
/* Active Page */
.yls_header a:not([class*="yls_btn"]).current {
  opacity: 0.6 !important; }
/***** General Layout *****/
[class*="yls_header__nav"] > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none; }

[class*="yls_header__nav"] > ul > li {
  padding: 0; }
/* Desktop */
@media only screen and (min-width: 992px) {
  /* Sub Navigation */
    [class*="yls_header__nav"] > ul {
      --gap: 30px;
      flex-direction: row;
      align-items: center;
      margin: 0 calc(var(--gap) / -2); }
    [class*="yls_header__nav"] > ul > li {
      margin: 0 calc(var(--gap) / 2); }
    .yls_header__nav-primary li.has-sub {
      position: relative; }
    .yls_header__nav-primary .sub-nav-container {
      --background: #fff;
      --padding--h: 36px;
      --padding--v: 20px;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, 0);
      z-index: 10;
      min-width: calc(100% + ( var(--padding--h) * 2 ));
      padding-top: calc(0.2em + 36px);
      pointer-events: none;
      opacity: 0; }
    .yls_header__nav-primary li.has-sub:hover .sub-nav-container {
      opacity: 1;
      pointer-events: auto; }
    .yls_header__nav-primary .sub-nav-container > ul {
      --gap: 30px;
      position: relative;
      transform: translate(0, 24px);
      min-width: 100%;
      margin: calc(var(--gap) / -2) 0;
      padding: var(--padding--v) var(--padding--h);
      white-space: nowrap;
      background: var(--background);
      border-radius: var(--border-radius--md);
      box-shadow: var(--shadow--lg);
      list-style: none;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .yls_header__nav-primary li.has-sub:hover .sub-nav-container > ul {
      transform: translate(0, 0); }
    .yls_header__nav-primary .sub-nav-container > ul:before {
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translate(-50%, 0) rotate(45deg);
      z-index: 5;
      width: 16px;
      height: 16px;
      content: '';
      background: var(--background);
      box-shadow: var(--shadow--md); }
    .yls_header__nav-primary .sub-nav-container > ul:after {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, 0);
      z-index: 10;
      width: 32px;
      height: 16px;
      content: '';
      background: var(--background); }
    .yls_header__nav-primary .sub-nav-container > ul > li {
      position: relative;
      z-index: 20;
      margin: calc(var(--gap) / 2) 0; }
    .yls_header__nav-primary .sub-nav-container .back-btn {
      display: none;
      opacity: 0;
      pointer-events: none;
      visibility: hidden; }
    .yls_header__nav-primary .sub-nav-container > ul ul {
      display: none; } }
/* Mobile */
@media only screen and (max-width: 991px) {
  [class*="yls_header__nav"] > ul, .yls_header__nav-primary .sub-nav-container > ul {
    --gap: 24px;
    flex-direction: column;
    align-items: flex-end;
    margin: calc(var(--gap) / -2) 0;
    padding: 0;
    list-style: none; }

  .yls_header__nav-primary .sub-nav-container > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }

  [class*="yls_header__nav"] > ul > li, .yls_header__nav-primary .sub-nav-container > ul > li {
    margin: calc(var(--gap) / 2) 0; }

  .yls_header__nav-wrapper {
    position: relative;
    -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

  .yls_header__nav-wrapper.open-sub {
    transform: translate(calc(-100% - var(--padding)), 0); }

  .yls_header__nav-wrapper.open-sub > .yls_header__nav-primary > ul > li:not(.active-sub), .yls_header__nav-wrapper.open-sub .yls_header__nav-secondary {
    opacity: 0; }

  .yls_header__nav-primary li.has-sub > a i {
    position: relative;
    transform: rotate(-90deg); }

  .yls_header__nav-primary .sub-nav-container {
    position: absolute;
    right: calc(-100% - var(--padding));
    width: 100%; }

  .yls_header__nav-primary .has-sub:not(.active-sub) .sub-nav-container {
    opacity: 0;
    pointer-events: none; }

  .yls_header__nav-primary .sub-nav-container .back-btn span {
    opacity: 0.4;
    -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

  .yls_header__nav-primary .sub-nav-container .back-btn:hover span {
    opacity: 1; } }
/***** Primary Navigation *****/
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav-wrapper.secondary--top .yls_header__nav-primary {
    padding-top: var(--gap);
    border-top: 1px solid; }

  .yls_header.light .yls_header__nav-wrapper.secondary--top .yls_header__nav-primary {
    border-color: rgba(0, 0, 0, 0.2); }

  .yls_header.dark .yls_header__nav-wrapper.secondary--top .yls_header__nav-primary {
    border-color: rgba(255, 255, 255, 0.2); } }
/***** Secondary Navigation *****/
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav-wrapper.secondary--top .yls_header__nav-secondary a:not([class*="yls_btn"]):not([class*="s-lang"]) {
    opacity: 0.6;
    font-size: 0.95em; }

  .yls_header__nav-wrapper.secondary--top .yls_header__nav-secondary .s-lang:not([class*="s-active"]) span {
    opacity: 0.6; } }
/* Mobile */
@media only screen and (max-width: 991px) {
  .mobile .yls_header__nav-secondary a:not([class*="yls_btn"]) {
    opacity: 0.4;
    font-size: 0.9em; } }
/***** Divider *****/
.yls_header.light .yls_header__nav .yls_divider {
  background: rgba(0, 0, 0, 0.2); }

.yls_header.dark .yls_header__nav .yls_divider {
  background: rgba(255, 255, 255, 0.2); }
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav .yls_divider.hori {
    width: 72px;
    height: 1px; }

  .yls_header__nav .yls_divider.vert {
    width: 1px;
    height: 36px; } }

@media only screen and (max-width: 991px) {
  .yls_header__nav .yls_divider {
    width: 50%;
    height: 2px;
    margin-left: auto; } }
/* Language Switcher */
.yls_header__nav .yls_lang-switcher {
  --gap: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 calc(var(--gap) / -2); }

.yls_header__nav .yls_lang-switcher .s-lang, .yls_header__nav .yls_lang-switcher .s-delimiter {
  margin: 0 calc(var(--gap) / 2); }

.yls_header__nav .yls_lang-switcher .s-lang {
  font-size: 1em !important;
  line-height: 1; }

.yls_header__nav .yls_lang-switcher a.s-lang {
  padding-top: 0.1em; }

.yls_header__nav .yls_lang-switcher .s-lang.s-active {
  padding-top: 0.1em; }

.yls_header__nav .yls_lang-switcher .s-lang span {
  font-size: var(--type-scale-rel--sm);
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing--loose); }

.yls_header__nav-wrapper:not(.secondary--top) .s-lang:not(.s-active) span {
  opacity: 0.6; }

.yls_header__nav-wrapper:not(.secondary--top) .s-lang:not(.s-active):hover span {
  opacity: 1; }

.yls_header__nav .yls_lang-switcher .s-delimiter {
  padding-top: 0.2em;
  font-size: var(--type-scale-rel--sm);
  line-height: var(--type-scale-rel--sm);
  opacity: 0.6; }
/***** Mobile Trigger *****/
@media only screen and (max-width: 991px) {
  /* Active */
    .yls_header__nav-trigger-inner {
      position: relative;
      z-index: 99;
      width: 40px;
      height: 40px;
      cursor: pointer; }
    .yls_header__nav-trigger-inner:before {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      content: '';
      border-radius: 50%;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .yls_header.light .yls_header__nav-trigger-inner:before {
      background: var(--color_primary--500); }
    .yls_header.dark .yls_header__nav-trigger-inner:before {
      background: var(--color_primary--500); }
    .yls_header__nav-trigger-inner > div {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 20px;
      height: 10px; }
    .yls_header__nav-trigger-inner span {
      position: absolute;
      display: block;
      width: 100%;
      height: 2px;
      border-radius: 0;
      -webkit-transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
      -moz-transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
      transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
      will-change: top, bottom, transform, width; }
    .yls_header.light .yls_header__nav-trigger-inner span {
      background: var(--color_primary--200); }
    .yls_header.dark .yls_header__nav-trigger-inner span {
      background: var(--color_primary--200); }
    .yls_header__nav-trigger-inner span:nth-child(1) {
      top: 0; }
    .yls_header__nav-trigger-inner span:nth-child(2) {
      bottom: 0;
      width: 60%; }
    .yls_header.mobile-active .yls_header__nav-trigger-inner span:nth-child(1) {
      top: 4px;
      transform: rotate(45deg);
      width: 100%; }
    .yls_header.mobile-active .yls_header__nav-trigger-inner span:nth-child(2) {
      bottom: 4px;
      transform: rotate(-45deg);
      width: 100%; } }
/***** Mobile Overlay *****/
@media only screen and (max-width: 991px) {
  /* Idle */
  /* For browsers that do support backdrop-filter */
  /* Active */
    .yls_header__nav-modal {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      width: 100%;
      height: 100vh; }
    .yls_header:not(.mobile-active) .yls_header__nav-modal {
      pointer-events: none !important; }
    .yls_header__nav-overlay {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      opacity: 0;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .yls_header.light .yls_header__nav-overlay {
      background: rgba(255, 255, 255, 0.99);
      /* For browsers that don't support backdrop-filter */ }
    .yls_header.dark .yls_header__nav-overlay {
      background: rgba(0, 0, 0, 0.99);
      /* For browsers that don't support backdrop-filter */ }
    @supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
    .yls_header__nav-overlay {
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px); }
    .yls_header.light .yls_header__nav-overlay {
      background: rgba(255, 255, 255, 0.8); }
    .yls_header.dark .yls_header__nav-overlay {
      background: rgba(0, 0, 0, 0.8); } }
    .yls_header:not(.mobile-active) .yls_header__nav-overlay {
      transition-delay: 0.5s; }
    .yls_header__nav {
      position: relative;
      transform: translateX(50%);
      z-index: 10;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      justify-content: center;
      width: 100%;
      opacity: 0;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition-delay: 0.5s; }
    .yls_header:not(.mobile-active) .yls_header__nav {
      transition-delay: 0.2s; }
    .yls_header__nav-wrapper {
      --padding: 48px;
      --gap: 24px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-direction: column;
      width: calc(100% - ( var(--padding) * 2 ));
      margin: calc(var(--gap) / -2) 0; }
    .yls_header__nav-primary, .yls_header__nav-secondary {
      margin: calc(var(--gap) / 2) 0; }
    .yls_header.mobile-active .yls_header__nav-overlay {
      opacity: 1; }
    .yls_header.mobile-active .yls_header__nav {
      transform: translateX(0%);
      opacity: 1; }
    .yls_header.mobile-active .yls_social-media {
      flex-direction: column;
      align-items: flex-end; }
    .yls_header.mobile-active .yls_social-media__label {
      margin-right: 0;
      margin-bottom: 8px; } }

@media only screen and (max-width: 480px) {
  .yls_header__nav-wrapper {
    --padding: 24px; } }
/****************************
 Header Offset
 ****************************/
.yls_header__offset {
  width: 100%; }

.yls_header.set-offset.absolute + .yls_header__offset, .yls_header.set-offset.fixed + .yls_header__offset {
  height: var(--height_header); }
/****************************
 Fixed Scroll Settings
 ****************************/
.yls_header.fixed.scroll-post {
  will-change: backdrop-filter; }

.yls_header.fixed.scroll-post {
  --padding: 12px;
  top: 0;
  box-shadow: var(--shadow--md); }

.yls_header.fixed.light.scroll-post {
  background: rgba(255, 255, 255, 0.95); }

.yls_header.fixed.dark.scroll-post {
  background: rgba(0, 0, 0, 0.95); }

@supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
  .yls_header.fixed.scroll-post {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px); }

  .yls_header.fixed.light.scroll-post {
    background: rgba(255, 255, 255, 0.8); }

  .yls_header.fixed.dark.scroll-post {
    background: rgba(0, 0, 0, 0.8); } }

.yls_header.fixed.scroll-post .yls_header__logo {
  --max-height: 30px; }

