/* ==========================================================================
   Trattoria La Perfetta — Custom Elementor Widgets
   Compiled: widgets.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   TLP Marquee Widget
   Pro-level infinite marquee:
   - Zwei identische Content-Gruppen (Original + Klon)
  - JS setzt dynamische Loop-Distanz für nahtlosen Lauf
   - Separator als eigenes Element im Flex-Flow → exakt mittig
   - Elementor selectors steuern Speed/Gap live im Editor
  - Optionale Link-Icons nur für verlinkte Einträge
   -------------------------------------------------------------------------- */

.tlp-marquee {
  overflow: hidden;
  overflow-x: clip;
  background-color: #ffffff;
  padding-block: 0.9rem;
  user-select: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--color-border, rgba(12, 93, 105, 0.18));
  border-bottom: 1px solid var(--color-border, rgba(12, 93, 105, 0.18));
  --tlp-marquee-gap: 2.5rem;
}

.tlp-marquee__inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  max-width: 100%;
  padding-inline-end: 0;
}

.tlp-marquee.is-toggle-hidden .tlp-marquee__inner {
  padding-inline-end: 0 !important;
}

.tlp-marquee__viewport {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
}

.tlp-marquee__track {
  display: flex;
  align-items: center;
  gap: var(--tlp-marquee-gap, 2.5rem);
  width: max-content;
  min-width: 100%;
  animation: tlp-marquee-scroll 20s linear infinite;
  animation-play-state: running;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  --tlp-marquee-loop-offset: -50%;
}

.tlp-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  gap: var(--tlp-marquee-gap, 2.5rem);
}

@keyframes tlp-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(var(--tlp-marquee-loop-offset, -50%), 0, 0); }
}

.tlp-marquee--pause-hover:hover .tlp-marquee__track {
  animation-play-state: paused;
}

.tlp-marquee--pause-focus:focus-within .tlp-marquee__track {
  animation-play-state: paused;
}

.tlp-marquee.is-user-paused .tlp-marquee__track,
.tlp-marquee.is-visibility-paused .tlp-marquee__track {
  animation-play-state: paused !important;
}

/* Items ------------------------------------------------------------------- */
.tlp-marquee__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.tlp-marquee__label,
.tlp-marquee__link {
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
  color: var(--color-primary, #0c5d69);
  line-height: 1;
}

.tlp-marquee__link {
  color: inherit;
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  line-height: inherit;
  opacity: 1;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.tlp-marquee .tlp-marquee__item .tlp-marquee__link,
.tlp-marquee .tlp-marquee__item .tlp-marquee__link:any-link,
.tlp-marquee .tlp-marquee__item .tlp-marquee__link:link,
.tlp-marquee .tlp-marquee__item .tlp-marquee__link:visited,
.tlp-marquee .tlp-marquee__item .tlp-marquee__link:active {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  line-height: inherit;
  text-decoration: none;
}

.tlp-marquee__link:visited,
.tlp-marquee__link:active {
  color: inherit;
  text-decoration: none;
}

.tlp-marquee__link-text,
.tlp-marquee__label-text {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
  font-family: inherit;
  text-decoration: none;
}

.tlp-marquee__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 1em;
  min-height: 1em;
  flex: 0 0 auto;
  overflow: visible;
  font-size: 0.82em;
  line-height: 1;
  opacity: 0.75;
  transform: translateY(-0.02em);
  text-decoration: none;
}

.tlp-marquee__link-icon-svg {
  display: block;
  width: var(--tlp-marquee-link-icon-scale, 0.9em);
  height: var(--tlp-marquee-link-icon-scale, 0.9em);
  max-width: none;
  max-height: none;
  stroke: currentColor;
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-0.06em, 0.08em);
}

.tlp-marquee__link-icon-svg--down-straight {
  transform: translate(-0.06em, -0.03em);
}

.tlp-marquee__link:focus:not(:focus-visible) {
  outline: none;
  text-decoration: none;
}

.tlp-marquee__link:hover,
.tlp-marquee__link:focus-visible {
  opacity: 1;
  text-decoration: none;
  outline-offset: 3px;
}

.tlp-marquee--hover-underline-yes .tlp-marquee__link:hover .tlp-marquee__link-text,
.tlp-marquee--hover-underline-yes .tlp-marquee__link:focus-visible .tlp-marquee__link-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Separator --------------------------------------------------------------- */
.tlp-marquee__sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary, #0c5d69);
  font-size: 0.55rem;
  line-height: 1;
  opacity: 0.55;
}

.tlp-marquee__toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 0.8rem;
  appearance: none;
  border: 1px solid currentColor;
  background: #ffffff;
  color: var(--color-primary, #0c5d69);
  border-radius: 999px;
  padding: 0.26rem 0.38rem;
  line-height: 0;
  font-size: 0;
  min-height: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.tlp-marquee__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
}

.tlp-marquee__toggle-icon-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}

.tlp-marquee__toggle-icon-state--play {
  display: none;
}

.tlp-marquee__toggle[aria-pressed="true"] .tlp-marquee__toggle-icon-state--pause {
  display: none;
}

.tlp-marquee__toggle[aria-pressed="true"] .tlp-marquee__toggle-icon-state--play {
  display: inline-flex;
}

.tlp-marquee__toggle-icon-svg {
  display: block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tlp-marquee__toggle-icon-svg--play {
  fill: currentColor;
  stroke: none;
}

.tlp-marquee__toggle-icon-svg--pause {
  stroke-width: 1.35;
}

.tlp-marquee__toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (hover: hover) and (pointer: fine) {
  .tlp-marquee__toggle:hover {
    opacity: 0.8;
  }
}

.tlp-marquee__toggle:active,
.tlp-marquee__link:active {
  opacity: 1;
  background-color: inherit;
}

.tlp-marquee__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@supports not selector(:focus-visible) {
  .tlp-marquee__link:focus {
    opacity: 1;
    text-decoration: none;
    outline-offset: 3px;
  }

  .tlp-marquee__link:focus .tlp-marquee__link-text {
    text-decoration: none;
  }

  .tlp-marquee--hover-underline-yes .tlp-marquee__link:focus .tlp-marquee__link-text {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .tlp-marquee__toggle:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }
}

/* Farbschemata ------------------------------------------------------------ */

/* Standard: White-Hintergrund, Grün-Text (kein Modifier nötig) */

/* Gold: Gold-Hintergrund, Grün-Text */
.tlp-marquee--gold {
  background-color: var(--color-secondary, #D4AF37);
}
.tlp-marquee--gold .tlp-marquee__label,
.tlp-marquee--gold .tlp-marquee__link,
.tlp-marquee--gold .tlp-marquee__sep,
.tlp-marquee--gold .tlp-marquee__toggle {
  color: var(--color-primary, #0c5d69);
}

/* Dark: Grün-Hintergrund, Gold-Text */
.tlp-marquee--dark {
  background-color: var(--color-primary, #0c5d69);
}
.tlp-marquee--dark .tlp-marquee__label,
.tlp-marquee--dark .tlp-marquee__link,
.tlp-marquee--dark .tlp-marquee__sep,
.tlp-marquee--dark .tlp-marquee__toggle {
  color: var(--color-secondary, #D4AF37);
}
.tlp-marquee--dark .tlp-marquee__sep {
  opacity: 0.6;
}

/* Light: Creme-Hintergrund, Grün-Text */
.tlp-marquee--light {
  background-color: var(--color-light, #f7f4ee);
}
.tlp-marquee--light .tlp-marquee__label,
.tlp-marquee--light .tlp-marquee__link,
.tlp-marquee--light .tlp-marquee__sep,
.tlp-marquee--light .tlp-marquee__toggle {
  color: var(--color-primary, #0c5d69);
}

/* --------------------------------------------------------------------------
   TLP Öffnungszeiten Widget
   -------------------------------------------------------------------------- */

.tlp-oeffnungszeiten {
  --tlp-oeff-gap-min: 0.375rem;
  --tlp-oeff-gap-fluid: 1vw;
  --tlp-oeff-gap-max: 0.8rem;
  --tlp-oeff-gap: clamp(var(--tlp-oeff-gap-min), var(--tlp-oeff-gap-fluid), var(--tlp-oeff-gap-max));
  --tlp-oeff-card-min: clamp(7.8rem, 12vw, 10.5rem);
  --tlp-oeff-day-gap: 0.08rem;
  --tlp-oeff-track-pad-inline: clamp(0.35rem, 4vw, 0.9rem);
  --tlp-oeff-track-pad-inline-clean: clamp(0.22rem, 2.8vw, 0.6rem);
  --tlp-oeff-scroll-pad-inline: clamp(0.6rem, 6vw, 1.5rem);
  --tlp-oeff-hint-line-width: 0.95rem;
  --tlp-oeff-hint-icon-gap-left: 0.32rem;
  --tlp-oeff-hint-icon-gap-right: 0.32rem;
  position: relative;
  color: var(--color-primary, #0c5d69);
}

.tlp-oeffnungszeiten__heading {
  margin: 0;
  margin-block: 0 clamp(0.65rem, 1.4vw, 0.95rem);
  margin-inline: 0;
  padding: 0;
  color: inherit;
  text-align: left;
}

.tlp-oeffnungszeiten__viewport {
  position: relative;
  width: 100%;
  overflow-x: visible;
  overflow-y: hidden;
  outline: none;
}

.tlp-oeffnungszeiten__viewport:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .tlp-oeffnungszeiten.is-scrollable .tlp-oeffnungszeiten__viewport {
    cursor: grab;
  }

  .tlp-oeffnungszeiten.is-pointer-dragging .tlp-oeffnungszeiten__viewport {
    cursor: grabbing;
  }
}

.tlp-oeffnungszeiten.is-pointer-dragging,
.tlp-oeffnungszeiten.is-pointer-dragging .tlp-oeffnungszeiten__viewport,
.tlp-oeffnungszeiten.is-pointer-dragging .tlp-oeffnungszeiten__track,
.tlp-oeffnungszeiten.is-pointer-dragging .tlp-oeffnungszeiten__row {
  -webkit-user-select: none;
  user-select: none;
}

.tlp-oeffnungszeiten__track {
  display: grid;
  grid-template-columns: repeat(var(--tlp-oeff-days-count, 7), minmax(var(--tlp-oeff-card-min), 1fr));
  gap: var(--tlp-oeff-gap);
}

.tlp-oeffnungszeiten__row {
  min-height: 8.6rem;
  margin: 0;
  padding: 0.62rem 0.28rem 0.68rem;
  border: 1px solid var(--color-border, rgba(12, 93, 105, 0.18));
  border-radius: 0;
  background: var(--color-light, #f7f4ee);
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--tlp-oeff-day-gap);
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex: 0 0 auto;
}

.tlp-oeffnungszeiten__day {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
}

.tlp-oeffnungszeiten__slots {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  min-height: 4.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
}

.tlp-oeffnungszeiten__slots--single {
  justify-content: flex-start;
}

.tlp-oeffnungszeiten__time {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.26em;
  white-space: nowrap;
}

.tlp-oeffnungszeiten__time-dash {
  display: inline-block;
  font-size: 0.95em;
  line-height: 1;
  transform: translateY(-0.02em);
  opacity: 0.75;
}

.tlp-oeffnungszeiten__row--closed .tlp-oeffnungszeiten__time {
  font-style: italic;
  opacity: 0.8;
}

.tlp-oeffnungszeiten__row--today {
  border-color: currentColor;
  background: var(--color-light, #f7f4ee);
}

.tlp-oeffnungszeiten__row--today .tlp-oeffnungszeiten__day {
  color: var(--color-primary, #0c5d69);
}

.tlp-oeffnungszeiten__row--muted {
  color: rgba(12, 93, 105, 0.78);
}

.tlp-oeffnungszeiten__drag-hint {
  display: none;
  margin: 0.52rem 0 0;
  font-size: 0.66rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(12, 93, 105, 0.62);
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  white-space: nowrap;
}

.tlp-oeff-hint-align-left .tlp-oeffnungszeiten__drag-hint {
  justify-content: flex-start;
  text-align: left;
}

.tlp-oeff-hint-align-center .tlp-oeffnungszeiten__drag-hint {
  justify-content: center;
  text-align: center;
}

.tlp-oeff-hint-align-right .tlp-oeffnungszeiten__drag-hint {
  justify-content: flex-end;
  text-align: right;
}

.tlp-oeffnungszeiten__drag-line {
  display: block;
  width: var(--tlp-oeff-hint-line-width);
  height: 1px;
  background: currentColor;
  opacity: 0.66;
}

.tlp-oeffnungszeiten__drag-text {
  display: inline-flex;
  align-items: center;
}

.tlp-oeffnungszeiten__drag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.tlp-oeffnungszeiten__drag-icon--left {
  margin-inline-end: var(--tlp-oeff-hint-icon-gap-left);
}

.tlp-oeffnungszeiten__drag-icon--right {
  margin-inline-start: var(--tlp-oeff-hint-icon-gap-right);
}

.tlp-oeffnungszeiten[data-tlp-hours-hint-design="lines"] .tlp-oeffnungszeiten__drag-icon,
.tlp-oeffnungszeiten[data-tlp-hours-hint-design="text"] .tlp-oeffnungszeiten__drag-icon {
  display: none;
}

.tlp-oeffnungszeiten[data-tlp-hours-hint-design="icon"] .tlp-oeffnungszeiten__drag-line,
.tlp-oeffnungszeiten[data-tlp-hours-hint-design="text"] .tlp-oeffnungszeiten__drag-line {
  display: none;
}

.tlp-oeffnungszeiten[data-tlp-hours-hint-icon-position="left"] .tlp-oeffnungszeiten__drag-icon--right {
  display: none;
}

.tlp-oeffnungszeiten[data-tlp-hours-hint-icon-position="right"] .tlp-oeffnungszeiten__drag-icon--left {
  display: none;
}

.tlp-oeffnungszeiten.is-drag-hint-hidden .tlp-oeffnungszeiten__drag-hint {
  opacity: 0;
  visibility: hidden;
}

/* Varianten */
.tlp-oeffnungszeiten--compact .tlp-oeffnungszeiten__row {
  min-height: 7.8rem;
  padding-block: 0.62rem;
}

.tlp-oeffnungszeiten--compact .tlp-oeffnungszeiten__day {
  font-size: 0.82rem;
}

.tlp-oeffnungszeiten--compact .tlp-oeffnungszeiten__time {
  font-size: 0.78rem;
}

.tlp-oeffnungszeiten--dark .tlp-oeffnungszeiten {
  color: var(--color-light, #f7f4ee);
}

.tlp-oeffnungszeiten--dark .tlp-oeffnungszeiten__row {
  background: var(--color-primary, #0c5d69);
  border-color: rgba(247, 244, 238, 0.28);
}

.tlp-oeffnungszeiten--dark .tlp-oeffnungszeiten__row--today {
  border-color: var(--color-secondary, #D4AF37);
}

.tlp-oeffnungszeiten--dark .tlp-oeffnungszeiten__row--muted {
  color: rgba(247, 244, 238, 0.8);
}

.tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten {
  --tlp-oeff-gap-min: 0.18rem;
  --tlp-oeff-gap-fluid: 0.5vw;
  --tlp-oeff-gap-max: 0.4rem;
  --tlp-oeff-card-min: clamp(5.9rem, 9.5vw, 8.4rem);
  --tlp-oeff-day-gap: 0.04rem;
}

.tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__row {
  min-height: 0;
  padding: 0.2rem 0.04rem 0.16rem;
  background: transparent;
  border-color: transparent;
}

.tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__slots {
  min-height: 0;
  gap: 0.26rem;
}

.tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__time {
  font-size: 0.82rem;
}

.tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__row--today {
  background: transparent;
  border-color: currentColor;
}

@media (max-width: 1024px) {
  .tlp-oeffnungszeiten__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--tlp-oeff-scroll-pad-inline);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .tlp-oeffnungszeiten__viewport::-webkit-scrollbar {
    display: none;
  }

  .tlp-oeffnungszeiten__track {
    display: flex;
    gap: var(--tlp-oeff-gap);
    width: max-content;
    min-width: 100%;
    padding-inline: var(--tlp-oeff-track-pad-inline);
  }

  .tlp-oeffnungszeiten__row {
    width: clamp(8.4rem, 27vw, 10.2rem);
    min-height: 8.3rem;
    padding: 0.54rem 0.22rem 0.62rem;
  }

  .tlp-oeffnungszeiten[data-tlp-hours-hint="1"].is-scrollable .tlp-oeffnungszeiten__drag-hint {
    display: inline-flex;
  }

  .tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__track {
    padding-inline: var(--tlp-oeff-track-pad-inline-clean);
  }

  .tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__row {
    width: clamp(6.4rem, 22vw, 8rem);
    min-height: 0;
    padding: 0.18rem 0.03rem 0.14rem;
  }
}

@media (max-width: 767px) {
  .tlp-oeffnungszeiten__row {
    width: clamp(7.7rem, 36vw, 9rem);
    min-height: 7.8rem;
    padding: 0.5rem 0.18rem 0.6rem;
  }

  .tlp-oeffnungszeiten__day {
    font-size: 0.86rem;
    letter-spacing: 0.085em;
  }

  .tlp-oeffnungszeiten__slots {
    min-height: 4.15rem;
    gap: 0.28rem;
  }

  .tlp-oeffnungszeiten__time {
    font-size: 0.76rem;
  }

  .tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__row {
    width: clamp(5.9rem, 30vw, 7.3rem);
    min-height: 0;
    padding: 0.16rem 0.02rem 0.12rem;
  }

  .tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__day {
    font-size: 0.8rem;
  }

  .tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__slots {
    min-height: 0;
    gap: 0.2rem;
  }

  .tlp-oeffnungszeiten--template-clean .tlp-oeffnungszeiten__time {
    font-size: 0.71rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tlp-oeffnungszeiten__drag-hint {
    transition: none;
  }
}


/* --------------------------------------------------------------------------
   TLP Offcanvas Menu Widget (V1)
   -------------------------------------------------------------------------- */

.tlp-oc {
  --tlp-oc-toggle-color: var(--color-primary, #0c5d69);
  --tlp-oc-toggle-font-family: 'Cause', serif;
  --tlp-oc-toggle-font-weight: 500;
  --tlp-oc-toggle-font-size: 1.72rem;
  --tlp-oc-toggle-icon-stroke: 1.5px;
  --tlp-oc-panel-bg: #ffffff;
  --tlp-oc-overlay-bg: rgba(12, 93, 105, 0.22);
  --tlp-oc-header-z: 920;
  --tlp-oc-header-offset: 0px;
  --tlp-oc-panel-width: 520px;
  --tlp-oc-overlay-z: 900;
  --tlp-oc-panel-z: 910;
  --tlp-oc-open-duration: 340ms;
  --tlp-oc-close-duration: 420ms;
  --tlp-oc-open-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tlp-oc-close-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tlp-oc-link-color: var(--color-text, #2f3437);
  --tlp-oc-link-hover-color: var(--tlp-oc-link-color);
  --tlp-oc-link-font-family: var(--e-global-typography-primary-font-family, 'Cause', serif);
  --tlp-oc-link-font-size: clamp(1.35rem, 3.1vw, 2.4rem);
  --tlp-oc-link-font-weight: 600;
  --tlp-oc-link-letter-spacing: 0.006em;
  --tlp-oc-link-line-height: 1.16;
  --tlp-oc-link-text-transform: none;
  --tlp-oc-panel-pt: 24px;
  --tlp-oc-panel-pr: 24px;
  --tlp-oc-panel-pb: 24px;
  --tlp-oc-panel-pl: 24px;
  --tlp-oc-nav-gap: 12px;
  --tlp-oc-nav-justify: center;
  --tlp-oc-nav-text-align: center;
  position: relative;
}

html.tlp-oc-open .site-header,
html.tlp-oc-open .elementor-location-header,
html.tlp-oc-open [data-elementor-type="header"] {
  position: relative;
  z-index: var(--tlp-oc-header-z, 920);
  isolation: isolate;
}

html.tlp-oc-open .elementor-sticky--active,
html.tlp-oc-open .elementor-location-header .elementor-sticky--active,
html.tlp-oc-open [data-elementor-type="header"] .elementor-sticky--active {
  z-index: calc(var(--tlp-oc-header-z, 920) + 1) !important;
}

.tlp-oc__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--tlp-oc-toggle-color);
  font-family: var(--tlp-oc-toggle-font-family);
  font-weight: var(--tlp-oc-toggle-font-weight);
  letter-spacing: inherit;
  text-transform: none;
  line-height: 1;
  padding-block: 0;
  padding-inline: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.tlp-oc .tlp-oc__toggle {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.tlp-oc__toggle::before {
  content: '';
  position: absolute;
  inset-block: -12px;
  inset-inline: -12px;
}

.tlp-oc__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.tlp-oc__toggle-icon {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
  overflow: visible;
}

.tlp-oc__toggle-icon-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--tlp-oc-toggle-icon-stroke, 1.5px);
  border-radius: 99px;
  background-color: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
  transform-origin: center;
}

.tlp-oc__toggle-icon-bar--top {
  top: 0px;
}

.tlp-oc__toggle-icon-bar--middle {
  top: calc(52% + 0px);
  transform: translateY(-50%);
}

.tlp-oc__toggle-icon-bar--bottom {
  bottom: 0px;
}

.tlp-oc__toggle-label {
  color: inherit;
  font-size: var(--tlp-oc-toggle-font-size, 1.95rem);
}

.tlp-oc.is-open .tlp-oc__toggle-icon-bar--top,
.tlp-oc.is-opening .tlp-oc__toggle-icon-bar--top {
  transform: translateY(6px) rotate(45deg);
}

.tlp-oc.is-open .tlp-oc__toggle-icon-bar--middle,
.tlp-oc.is-opening .tlp-oc__toggle-icon-bar--middle {
  opacity: 0;
}

.tlp-oc.is-open .tlp-oc__toggle-icon-bar--bottom,
.tlp-oc.is-opening .tlp-oc__toggle-icon-bar--bottom {
  transform: translateY(-6px) rotate(-45deg);
}

.tlp-oc__overlay {
  position: fixed;
  inset-inline: 0;
  inset-block-start: var(--tlp-oc-header-offset, 0px);
  inset-block-end: 0;
  z-index: var(--tlp-oc-overlay-z);
  background-color: var(--tlp-oc-overlay-bg);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tlp-oc-open-duration) var(--tlp-oc-open-ease);
}

.tlp-oc__panel {
  position: fixed;
  inset-block-start: var(--tlp-oc-header-offset, 0px);
  inset-block-end: 0;
  inset-inline-start: 0;
  width: min(var(--tlp-oc-panel-width), 100vw);
  z-index: var(--tlp-oc-panel-z);
  background-color: var(--tlp-oc-panel-bg);
  border-inline-end: 1px solid var(--color-border, #d8d3ce);
  visibility: hidden;
  transform: translate3d(-100%, 0, 0);
  transition: transform var(--tlp-oc-open-duration) var(--tlp-oc-open-ease);
  will-change: transform, opacity;
  backface-visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

.tlp-oc__panel-inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 93, 105, 0.55) rgba(12, 93, 105, 0.12);
  padding: var(--tlp-oc-panel-pt, clamp(136px, 18vh, 220px)) var(--tlp-oc-panel-pr, 24px) var(--tlp-oc-panel-pb, 24px) var(--tlp-oc-panel-pl, 24px);
}

.tlp-oc__panel-inner::-webkit-scrollbar {
  width: 9px;
}

.tlp-oc__panel-inner::-webkit-scrollbar-track {
  background: rgba(12, 93, 105, 0.12);
  border-radius: 999px;
}

.tlp-oc__panel-inner::-webkit-scrollbar-thumb {
  background: rgba(12, 93, 105, 0.55);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.88);
}

.tlp-oc__panel-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(12, 93, 105, 0.7);
}

.tlp-oc.is-opening .tlp-oc__overlay,
.tlp-oc.is-open .tlp-oc__overlay,
.tlp-oc.is-closing .tlp-oc__overlay,
.tlp-oc.is-opening .tlp-oc__panel,
.tlp-oc.is-open .tlp-oc__panel,
.tlp-oc.is-closing .tlp-oc__panel {
  visibility: visible;
}

.tlp-oc.is-opening .tlp-oc__overlay,
.tlp-oc.is-open .tlp-oc__overlay {
  opacity: 1;
  pointer-events: auto;
}

.tlp-oc.is-open .tlp-oc__panel {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.tlp-oc.is-closing .tlp-oc__overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tlp-oc-close-duration) var(--tlp-oc-close-ease) !important;
}

.tlp-oc.is-closing .tlp-oc__panel {
  transform: translate3d(-100%, 0, 0);
  pointer-events: none;
  transition: transform var(--tlp-oc-close-duration) var(--tlp-oc-close-ease) !important;
}

.tlp-oc__nav,
.tlp-oc__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlp-oc__nav-list {
  display: grid;
  gap: var(--tlp-oc-nav-gap, 12px);
  justify-items: var(--tlp-oc-nav-justify, center);
  text-align: var(--tlp-oc-nav-text-align, center);
}

.tlp-oc__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tlp-oc-link-color);
  font-family: var(--tlp-oc-link-font-family);
  font-size: var(--tlp-oc-link-font-size);
  font-weight: var(--tlp-oc-link-font-weight);
  letter-spacing: var(--tlp-oc-link-letter-spacing);
  line-height: var(--tlp-oc-link-line-height);
  text-transform: var(--tlp-oc-link-text-transform);
  text-decoration: none;
  transition: opacity 180ms ease;
}

.tlp-oc .tlp-oc__link,
.tlp-oc .tlp-oc__link:any-link,
.tlp-oc .tlp-oc__link:visited,
.tlp-oc .tlp-oc__link:active,
.tlp-oc .tlp-oc__link:hover,
.tlp-oc .tlp-oc__link:focus,
.tlp-oc .tlp-oc__link:focus-visible {
  text-decoration: none !important;
}

.tlp-oc__link:hover,
.tlp-oc__link:focus-visible {
  color: var(--tlp-oc-link-hover-color);
  opacity: 0.76;
  text-decoration: none;
}

.tlp-oc__link:visited,
.tlp-oc__link:active {
  color: var(--tlp-oc-link-color);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .tlp-oc__toggle-icon-bar {
    transition: transform 220ms ease, opacity 220ms ease !important;
  }

  .tlp-oc__overlay {
    transition: opacity var(--tlp-oc-open-duration) var(--tlp-oc-open-ease) !important;
  }

  .tlp-oc__panel {
    transition: transform var(--tlp-oc-open-duration) var(--tlp-oc-open-ease) !important;
  }
}

@media (max-width: 1024px) {
  .tlp-oc__panel {
    width: 100vw;
    border-inline-end: 0;
    transform: translate3d(-100%, 0, 0);
  }

  .tlp-oc.is-open .tlp-oc__panel {
    transform: translate3d(0, 0, 0);
  }

  .tlp-oc {
    --tlp-oc-panel-pt: 20px;
    --tlp-oc-panel-pr: 20px;
    --tlp-oc-panel-pb: 20px;
    --tlp-oc-panel-pl: 20px;
  }
}

@media (max-width: 767px) {
  .tlp-oc {
    --tlp-oc-panel-pt: 16px;
    --tlp-oc-panel-pr: 16px;
    --tlp-oc-panel-pb: 16px;
    --tlp-oc-panel-pl: 16px;
  }
}


