/*********************
    Design Tokens (Project)
*********************/
:root {
  /***** Colors *****/
  --color_primary--200: #fbf6e6;
  --color_primary--300: #f7eccd;
  --color_primary--400: #dfb535;
  --color_primary--500: #D7A203;
  --color_primary--600: #c29203;
  --color_primary--700: #ac8202;
  --color_primary--800: #977102;
  --color_primary--900: #4C3901;
  --color_secondary--200: #fdfcf8;
  --color_secondary--300: #fcf9f0;
  --color_secondary--400: #f5ecd3;
  --color_secondary--500: #EEE0B5;
  --color_secondary--600: #d6caa3;
  --color_secondary--700: #beb391;
  --color_secondary--800: #8f866d;
  --color_secondary--900: #5f5a48;
  --color_headings: #4C3901;
  --color_body--light: #5f5a48;
  --color_body--dark: #5f5a48;
  --color_body-bg: #F9F8F3;
  /***** 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 */
  /***** Typography *****/
  --base-font-size: 18px;
  --font_headings: "Outfit", sans-serif;
  --font_body: "Outfit", sans-serif;
  --letterspacing_headings: -0.015em;
  --letterspacing_text: -0.02em;
  /***** Border Radius *****/
  --border-radius--sm: 4px;
  --border-radius--md: 12px;
  --border-radius--lg: 24px;
}
@media only screen and (max-width: 991px) {
  :root {
    /***** Spacing *****/
    --comp-spacing--outer: 108px;
    --comp-spacing--inner: 96px;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    /***** Spacing *****/
    --comp-spacing--outer: 96px;
    --comp-spacing--inner: 72px;
  }
}
html, body {
  overflow-x: hidden;
}
body {
  background: var(--color_body-bg);
}
.sticky {
  --default_offset: 36px;
}
/*
.sm-editbar-commenting,
.sm-editbar-dragging {
    display: none !important;
}
*/
/****************************
    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--linked {
  display: inline-block;
  width: 100%;
}
.yls_inlineimg picture {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius--lg);
}
.yls_inlineimg picture.img--cover {
  box-shadow: var(--shadow--lg);
}
.yls_inlineimg--linked:hover picture {
  opacity: 0.6;
}
.yls_inlineimg picture, .yls_inlineimg picture img, .yls_inlineimg picture .lazyloader {
  -webkit-transition: var(--transition--default);
  -moz-transition: var(--transition--default);
  transition: var(--transition--default);
}
.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 picture.img--cover img {
  transform: none;
  object-fit: cover;
}
.yls_inlineimg picture.img--contain img {
  object-fit: contain;
}
.yls_inlineimg img.lazyload, .yls_inlineimg img.lazyloading {
  opacity: 0;
  /*transform: scale(1.1);*/
  scale: 1.1;
}
.yls_inlineimg img.lazyloaded {
  opacity: 1;
  scale: 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;
}
/***** Aspect Ratio: Auto *****/
.yls_inlineimg picture.aspect--auto {
  height: auto;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.yls_inlineimg picture.aspect--auto img {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: initial;
  will-change: transform;
}
.yls_inlineimg picture.aspect--auto:not(.img--contain) img {
  max-height: 65vh;
  border-radius: var(--border-radius--lg);
  box-shadow: var(--shadow--lg);
}
/****************************
    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: var(--border-radius--md);
  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;
  max-width: 100%;
  margin: 0 calc(var(--gap) / -2);
  overflow: hidden;
  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.2;
  white-space: nowrap;
}
.yls_breadcrumbs .s-crumb:not(:last-child) {
  font-weight: normal;
  opacity: 0.6;
}
.yls_breadcrumbs .s-crumb:not(:last-child):hover {
  opacity: 1;
}
.yls_breadcrumbs .s-crumb:last-child {
  font-weight: bold;
}
.yls_breadcrumbs .s-crumb.s-truncate {
  max-width: max-content;
  overflow: hidden;
  text-overflow: ellipsis;
}
.yls_breadcrumbs .s-delimiter {
  height: 1em;
}
.yls_breadcrumbs .s-delimiter:before {
  position: relative;
  top: 50%;
  left: 0;
  transform: translate3d(25%, -75%, 0) 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;
}
@media only screen and (max-width: 480px) {
  .yls_breadcrumbs {
    --gap: 0.833em;
    font-size: var(--type-scale--sm);
  }
}
/***** 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;
}
/***** Centered *****/
.left-all .yls_breadcrumbs {
  justify-content: flex-start;
}
.center-all .yls_breadcrumbs {
  justify-content: center;
}
.right-all .yls_breadcrumbs {
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .md_left-all .yls_breadcrumbs {
    justify-content: flex-start;
  }
  .md_center-all .yls_breadcrumbs {
    justify-content: center;
  }
  .md_right-all .yls_breadcrumbs {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 480px) {
  .sm_left-all .yls_breadcrumbs {
    justify-content: flex-start;
  }
  .sm_center-all .yls_breadcrumbs {
    justify-content: center;
  }
  .sm_right-all .yls_breadcrumbs {
    justify-content: flex-end;
  }
}
/***** Popover *****/
/* Trigger */
.yls_breadcrumbs__popover-trigger {
  position: relative;
}
.yls_breadcrumbs__popover-trigger i {
  padding: 2px 8px;
  background: var(--color_primary--200);
  border-radius: var(--border-radius--sm);
  cursor: pointer;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
@media only screen and (min-width: 992px) {
  .yls_breadcrumbs__popover-trigger i:hover {
    background: var(--color_primary--300);
  }
}
/* Popover */
.yls_breadcrumbs__popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  padding: 1rem;
  box-shadow: var(--shadow--md);
  border-radius: var(--border-radius--sm);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.yls_breadcrumbs__popover-trigger:not(.is-open) .yls_breadcrumbs__popover {
  opacity: 0;
  pointer-events: none;
}
.yls_breadcrumbs.light .yls_breadcrumbs__popover {
  background: #fff;
}
.yls_breadcrumbs__popover ul {
  --gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
.yls_breadcrumbs__popover ul li:not(:last-child) {
  width: 100%;
  padding-bottom: var(--gap);
  border-bottom: 1px solid transparent;
}
.yls_breadcrumbs.light .yls_breadcrumbs__popover ul li {
  border-color: rgba(0, 0, 0, 0.1);
}
.yls_breadcrumbs__popover a {
  display: inline-block;
  width: 100%;
}
/****************************
    Counters
****************************/
.yls_counter__item {
  width: calc(100% / var(--cols));
}
/***** Counter Settings *****/
.yls_counter__container {
  width: 100%;
  height: 100%;
}
.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-4);
  line-height: 1;
  color: var(--color_secondary--900);
  letter-spacing: var(--letterspacing_headings);
}
.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 .yls_counter__item {
    width: 100% !important;
  }
  .yls_counter .yls_counter__wrapper {
    font-size: var(--type-scale--xl-3);
  }
  .yls_counter .yls_counter__label {
    font-size: var(--type-scale--sm);
  }
}
/***** Prestyle: Cards *****/
.yls_counter[data-prestyle="cards"] .yls_counter__container {
  padding: 30px 24px;
  border-radius: var(--border-radius--md);
  box-shadow: var(--shadow--lg);
}
@media only screen and (max-width: 480px) {
  .yls_counter[data-prestyle="cards"] .yls_counter__container {
    padding: 24px;
  }
}
/****************************
    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;
  letter-spacing: var(--letterspacing_text);
}
.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;
  border-radius: var(--border-radius--md);
  background: var(--color_secondary--400);
  overflow: hidden;
}
.yls_table table tbody > tr {
  border-bottom: 2px solid var(--color_secondary--500);
}
.yls_table table tbody > tr:last-child {
  border-bottom: none;
}
.yls_table table th {
  position: relative;
  color: var(--color_primary--200);
  padding: 1rem;
}
.yls_table table th:not(:empty) {
  background: var(--color_primary--500);
}
.yls_table table th .yls_text {
  position: relative;
}
.yls_table table td {
  padding: 1.4rem 1rem;
}
/****************************
    Form Elements
****************************/
/***** Checkboxes *****/
.yls_checkbox:hover {
  cursor: pointer;
}
.yls_checkbox input {
  position: absolute;
  opacity: 0;
}
.yls_checkbox label {
  --gap: 8px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--gap);
  margin: 0;
  font-size: var(--type-scale--md);
  user-select: none;
  pointer-events: auto;
  cursor: pointer;
}
.yls_check__info {
  padding-top: calc(( var(--type-scale-rel--lg) - var(--type-scale--md) ) / 2);
}
.yls_check__indicator {
  position: relative;
  width: var(--type-scale-rel--lg);
  height: var(--type-scale-rel--lg);
  border-radius: var(--border-radius--sm);
  border: 2px solid var(--color_primary--300);
  background-color: var(--color_primary--200);
  -webkit-transition: var(--transition--default);
  -moz-transition: var(--transition--default);
  transition: var(--transition--default);
}
.yls_check__indicator i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0);
  z-index: 1;
  font-size: var(--type-scale--xs);
  color: #fff;
  opacity: 0;
  -webkit-transition: var(--transition--default);
  -moz-transition: var(--transition--default);
  transition: var(--transition--default);
}
.yls_checkbox:hover input + label .yls_check__indicator {
  background-color: var(--color_primary--300);
  border-color: var(--color_primary--400);
}
.yls_checkbox input:checked + label .yls_check__indicator {
  background-color: var(--color_primary--500);
  border-color: var(--color_primary--500);
}
.yls_checkbox input:checked + label .yls_check__indicator i {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
  transition-duration: 0.1s;
  transition-delay: 0.1s;
}
@media only screen and (max-width: 991px) {
  .yls_checkbox label {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }
}
/***** Input Fields *****/
.yls_collection__input {
  --font-size: var(--type-scale--md);
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 100%;
  height: auto;
  padding: var(--font-size);
  border-radius: var(--border-radius--md);
  outline: 0;
  border: 1px solid transparent;
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  font-size: var(--font-size);
  color: var(--color_body--dark);
  line-height: var(--type-scale-rel--lg);
  will-change: box-shadow;
}
.yls_collection__input::placeholder {
  color: var(--color_body--dark);
  opacity: 1;
}
.yls_collection__input:focus {
  box-shadow: 0 0 0 2px var(--color_primary--500);
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif, sans-serif;
}
html, body {
  font-family: "Outfit", sans-serif, sans-serif;
}

/****************************
 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: translate3d(0, 100px, 0); }

  to {
    opacity: 1;
    transform: translate3d(0, 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: var(--transition--default);
  -moz-transition: var(--transition--default);
  transition: var(--transition--default); }

.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: translate3d(-100%, 0, 0) !important;
  transform: translate3d(-100%, 0, 0) !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_version {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999999999999;
  display: inline-block;
  padding: 0.2em;
  background: #fff; }

.yls_version .yls_text {
  display: inline-block;
  font-size: var(--type-scale--sm);
  line-height: 1;
  color: #000; }

: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: var(--transition--default);
  -moz-transition: var(--transition--default);
  transition: var(--transition--default); }

.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; }

.yls_footer {
  position: relative;
  padding: calc(var(--comp-spacing--inner) / 2) 0;
  opacity: 1 !important;
}
.yls_footer:before {
  content: "";
  position: absolute;
  top: -22vw;
  right: 0;
  transform: translate(0, 0);
  width: 30vw;
  padding-bottom: 22vw;
  background-image: url(https://cloud.sitemn.gr/users/Arista/swfiles/body/bg-01.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.3;
  z-index: -1;
}
.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_primary--900);
  border-radius: var(--border-radius--lg) var(--border-radius--lg) 0 0;
}
/****************************
    Logo
****************************/
.yls_footer__logo {
  display: block !important;
  width: 144px;
  /*height: 72px;*/
}
.yls_footer__logo img {
  max-width: 100%;
  max-height: 100%;
}
/****************************
    Opening hours
*****************************/
.yls_footer .yls_openhours table {
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale--sm);
}
.yls_footer.dark .yls_openhours table tr td, .yls_footer.dark .yls_openhours__shorthand {
  color: #fff;
}
/****************************
    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;
    justify-content: 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;
  }
  .yls_sitemap__item a {
    justify-content: flex-start !important;
  }
}
@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: translate3d(0, -50%, 0) 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_tb {
  z-index: 55000;
  width: 100%;
  padding: 10px 0; }
/*
 .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:not([data-scroll-behavior="static"]) + .yls_tb__offset {
  height: var(--height_tb); }
/***** Position *****/
.yls_tb[data-scroll-behavior="fixed"] {
  position: fixed;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: all !important; }

.yls_tb[data-scroll-behavior="absolute"] {
  position: absolute; }

.yls_tb.position--top:not([data-scroll-behavior="static"]), .yls_tb.position--bottom:not([data-scroll-behavior="static"]):not([data-scroll-behavior="fixed"]) {
  top: 0;
  left: 0; }

.yls_tb.position--bottom[data-scroll-behavior="fixed"] {
  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; }

.yls_header {
  --padding: 18px;
  --padding-h: 48px;
  position: relative;
  z-index: 50000;
  width: calc(100vw - calc(var(--padding-h) * 2));
  padding: var(--padding);
  margin-top: calc(var(--padding) * 1.5);
  margin-left: var(--padding-h);
  border-radius: var(--border-radius--lg);
  border: 1px solid var(--color_secondary--400); }

@media only screen and (min-width: 1080px) {
  .yls_header .yls_container.wide {
    --container__padding: 8px !important; } }

.yls_header.light {
  background: var(--color_body-bg); }

.yls_header.dark {
  background: var(--color_secondary--900); }

.yls_header__wrapper {
  align-items: center; }

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

@media only screen and (max-width: 480px) {
  .yls_header {
    --padding: 18px;
    padding: var(--padding) 0; } }
/****************************
 Logo
 ****************************/
.yls_header__logo {
  --max-width: 320px;
  --max-height: 100px;
  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: var(--transition--default);
  -moz-transition: var(--transition--default);
  transition: var(--transition--default); }

@media only screen and (max-width: 1400px) {
  .yls_header__logo .sw-logo-pic img {
    --max-width: 250px; } }

@media only screen and (max-width: 1300px) {
  .yls_header__logo .sw-logo-pic img {
    max-width: 320px; } }

@media only screen and (max-width: 991px) {
  .yls_header__logo .sw-logo-pic img {
    --max-height: 65px;
    max-width: 50vw; } }
/****************************
 Navigation Layout
 ****************************/
/* Desktop */
@media only screen and (min-width: 1301px) {
  .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--center {
    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.primary--center .yls_header__nav-primary {
    margin-left: auto;
    margin-right: auto; }

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

  .yls_header .mobile {
    display: none; } }
/* Mobile */
@media only screen and (max-width: 1300px) {
  .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 {
  color: var(--color_primary--500) !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: 1301px) {
  /* Sub Navigation */
    [class*="yls_header__nav"] > ul {
      --gap: 20px;
      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: translate3d(-50%, 0, 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: var(--transition--default);
      -moz-transition: var(--transition--default);
      transition: var(--transition--default); }
    .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: 1300px) {
  [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: var(--transition--default);
    -moz-transition: var(--transition--default);
    transition: var(--transition--default); }

  .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: fixed;
    top: 50%;
    right: calc(-100% - var(--padding));
    transform: translate3d(0, -50%, 0);
    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: var(--transition--default);
    -moz-transition: var(--transition--default);
    transition: var(--transition--default); }

  .yls_header__nav-primary .sub-nav-container .back-btn:hover span {
    opacity: 1; } }
/***** Primary Navigation *****/
/* Desktop */
@media only screen and (min-width: 1301px) {
  .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: 1301px) {
  .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: 1300px) {
 .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: 1301px) {
  .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: 1300px) {
  .yls_header__nav .yls_divider {
    width: 50vw;
    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: 1300px) {
  /* 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: var(--transition--default);
      -moz-transition: var(--transition--default);
      transition: var(--transition--default); }
    .yls_header.light .yls_header__nav-trigger-inner:before {
      background: var(--color_primary--300); }
    .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_secondary--900); }
    .yls_header.dark .yls_header__nav-trigger-inner span {
      background: var(--color_secondary--900); }
    .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: 1300px) {
  /* 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: var(--transition--default);
      -moz-transition: var(--transition--default);
      transition: var(--transition--default); }
    .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: var(--transition--default);
      -moz-transition: var(--transition--default);
      transition: var(--transition--default);
      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; } }
/****************************
 Scroll Behavior
 ****************************/
.yls_header[data-scroll-behavior="fixed"], .yls_header[data-scroll-behavior="absolute"] {
  top: 0;
  left: 0; }

.yls_header[data-scroll-behavior="fixed"] {
  position: fixed;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: all !important; }

.yls_header[data-scroll-behavior="absolute"] {
  position: absolute; }
/***** Offset *****/
.yls_header__offset {
  width: 100%; }

.yls_header.set-offset:not([data-scroll-behavior="static"]) + .yls_header__offset {
  height: var(--height_header); }
/***** Fixed scroll animation *****/
.yls_header[data-scroll-status="enabled"] {
  --padding: 12px;
  box-shadow: var(--shadow--md); }

.yls_header[data-scroll-status="enabled"] .yls_header__logo .sw-logo-pic img {
  --max-height: 36px; }

