@charset "UTF-8";
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2.5rem;
}

h3,
.h3 {
  font-size: 2.5rem;
}

h4,
.h4 {
  font-size: 2.5rem;
}

h5,
.h5 {
  font-size: 2.5rem;
}

h6,
.h6 {
  font-size: 2.5rem;
}

.lh24-events {
  display: block;
  --lh24-accent: #37aea2;
  --lh24-columns: 3;
  --lh24-card-bg: #fff;
  --lh24-btn-bg: #37aea2;
  --lh24-btn-fg: #fff;
}

.lh24-events-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 14px;
}

.lh24-view-toggle {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 999px;
  font-size: 15px;
  padding: 6px 12px 2px 12px;
  cursor: pointer;
}
.lh24-view-toggle.is-active {
  background: var(--lh24-accent, #37aea2);
  color: #fff;
  border-color: transparent;
}
.lh24-view-toggle .lh24-toggle-icon {
  max-width: 18px;
}

.lh24-list-header {
  display: none;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(140px, auto);
  align-items: center;
  padding: 8px 18px;
  background: var(--lh24-accent, #37aea2);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lh24-list-header-col {
  padding: 0 4px;
}

.lh24-grid {
  display: grid;
  grid-template-columns: repeat(var(--lh24-columns, 3), minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 980px) {
  .lh24-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .lh24-grid {
    grid-template-columns: 1fr;
  }
}
.lh24-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: visible;
  background: var(--lh24-card-bg, #fff);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.lh24-card-media-wrap {
  position: relative;
  width: 100%;
}

.lh24-card-media {
  display: block;
  width: 100%;
  padding-top: 66%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lh24-card-media-overlays {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  gap: 10px;
  pointer-events: none;
}

.lh24-card-info-popup {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  pointer-events: auto;
}

.lh24-card-info-popup__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
  cursor: help;
  color: var(--lh24-accent, #37aea2);
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}
.lh24-card-info-popup__trigger:focus-visible {
  outline: 2px solid var(--lh24-accent, #37aea2);
  outline-offset: 2px;
}

.lh24-card-info-popup__icon {
  position: relative;
  top: 0.5px;
}

.lh24-card-info-popup__panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  max-width: min(300px, 72vw);
  max-height: min(240px, 40vh);
  overflow: auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.85);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.lh24-card-info-popup__panel p {
  margin: 0 0 0.5em;
}
.lh24-card-info-popup__panel p:last-child {
  margin-bottom: 0;
}

.lh24-card-info-popup:hover .lh24-card-info-popup__panel,
.lh24-card-info-popup:focus-within .lh24-card-info-popup__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lh24-list-info-popup {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lh24-list-info-popup__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--lh24-accent, #37aea2);
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  cursor: help;
  line-height: 1;
}
.lh24-list-info-popup__trigger:focus-visible {
  outline: 2px solid var(--lh24-accent, #37aea2);
  outline-offset: 2px;
}

.lh24-list-info-popup__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 20;
  min-width: 200px;
  max-width: min(300px, 85vw);
  max-height: min(220px, 38vh);
  overflow: auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.85);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.lh24-list-info-popup__panel p {
  margin: 0 0 0.5em;
}
.lh24-list-info-popup__panel p:last-child {
  margin-bottom: 0;
}

.lh24-list-info-popup:hover .lh24-list-info-popup__panel,
.lh24-list-info-popup:focus-within .lh24-list-info-popup__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lh24-card-overlay--mod {
  max-width: 48%;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--lh24-accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25;
  align-items: center;
  width: 80px;
  height: 80px;
  justify-content: center;
}

.lh24-card-overlay-label {
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.lh24-card-overlay-value {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.lh24-card-overlay--datetime {
  margin-left: auto;
  padding: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 112px;
  max-width: 46%;
  height: 112px;
  justify-content: space-between;
}

.lh24-card-datetime-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.lh24-card-datetime-date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lh24-accent, #37aea2);
  line-height: 1.3;
}

.lh24-card-datetime-time {
  align-self: stretch;
  margin-top: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 8px;
  border-radius: 0 0 6px 6px;
  background: var(--lh24-accent, #37aea2);
  color: #fff;
}

.lh24-card-body--tile {
  padding-top: 16px;
  position: relative;
}

.lh24-card-acc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.85);
}

.lh24-card-acc--yes .lh24-card-acc-icon {
  color: #37aea2;
  flex-shrink: 0;
}

.lh24-card-acc--no .lh24-card-acc-icon {
  color: #9e9e9e;
  flex-shrink: 0;
}

.lh24-card-acc-text {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 2px;
}

.lh24-card-acc-info {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: rgba(0, 0, 0, 0.45);
  cursor: help;
}

.lh24-card-category {
  margin-bottom: 8px;
}

.lh24-pill {
  display: inline-block;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

.lh24-card-title--tile {
  margin-top: 0;
  margin-bottom: 6px;
  overflow: hidden;
  font-size: 1.25rem;
}
.lh24-card-title--tile a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.lh24-card-subtitle--tile {
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.lh24-card-rule {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 14px 0 12px;
}

.lh24-card-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 14px;
  line-height: 1.3;
  justify-content: space-between;
}

.lh24-badge--type {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 12px;
  background: rgba(55, 174, 162, 0.18);
  color: var(--lh24-accent, #37aea2);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lh24-lang-inline {
  color: rgba(0, 0, 0, 0.65);
}

.lh24-lang-sep {
  font-weight: 700;
  text-transform: uppercase;
  color: black;
}

.lh24-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lh24-card-footer-price {
  flex: 1;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.88);
}

.lh24-button--tile {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 15px;
  white-space: nowrap;
}
.lh24-button--tile.lh24-button--disabled {
  border-radius: 999px;
}

.lh24-card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lh24-card-layout {
  width: 100%;
}

.lh24-card-layout--list {
  display: none;
}

.lh24-events[data-view=grid] .lh24-card-layout--grid {
  display: block;
}

.lh24-events[data-view=grid] .lh24-card-layout--list {
  display: none;
}

.lh24-events[data-view=grid] .lh24-list-header {
  display: none;
}

.lh24-events[data-view=list] .lh24-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.lh24-events[data-view=list] .lh24-card-layout--grid {
  display: none;
}

.lh24-events[data-view=list] .lh24-card-layout--list {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(140px, auto);
  gap: 14px 18px;
  align-items: flex-start;
  padding: 14px 18px;
}

.lh24-events[data-view=list] .lh24-card {
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
}

.lh24-events[data-view=list] .lh24-card:first-child {
  border-top: none;
}

.lh24-events[data-view=list] .lh24-card-col--actions {
  text-align: right;
}

.lh24-events[data-view=list] .lh24-card-subtitle--list {
  margin-bottom: 8px;
}

.lh24-events[data-view=list] .lh24-list-header {
  display: grid;
}

.lh24-card-col--list-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.lh24-list-main__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
  margin-bottom: 10px;
}

.lh24-list-meta-line {
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.85);
}

.lh24-list-meta-line__label {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}

.lh24-list-meta-line__sep {
  font-weight: 400;
}

.lh24-list-meta-line__value {
  font-weight: 400;
  color: black;
}

.lh24-list-main__tail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.lh24-list-main__meta + .lh24-list-main__tail {
  margin-top: 0;
}

.lh24-list-info-popup--in-main {
  margin-top: 0;
}

.lh24-events[data-view=list] .lh24-card-title--list {
  margin-top: 0;
  margin-bottom: 2px;
  min-height: auto;
  text-transform: none;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: normal;
}

.lh24-card-subtitle--list {
  margin-bottom: 0;
  font-size: 15px;
}

.lh24-card-col--list-datetime {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.lh24-list-datetime__date {
  font-size: 16px;
  font-weight: 700;
  color: var(--lh24-accent, #37aea2);
  line-height: 1.25;
}

.lh24-list-datetime__time {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.35;
}

.lh24-badge--list {
  flex-shrink: 0;
}

.lh24-list-row__status {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.35;
}

.lh24-card-col--list-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  text-align: right;
}

.lh24-list-actions__price {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.2;
}

.lh24-button--list-see-more {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lh24-events[data-view=list] .lh24-card-layout--list {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
  }
  .lh24-card-col--list-datetime {
    padding-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .lh24-card-col--list-actions {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    padding-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .lh24-list-row__cta {
    margin-left: auto;
  }
}
.lh24-button.lh24-button--ghost {
  background: transparent;
  color: var(--lh24-accent, #37aea2);
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.lh24-chip {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lh24-accent, #37aea2);
}

.lh24-card-title {
  margin: 10px 0 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  min-height: 3.3em;
}
.lh24-card-title a {
  color: inherit;
  text-decoration: none;
}

.lh24-card-subtitle {
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.65);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.lh24-card-details {
  margin-top: auto;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
}

.lh24-card-row {
  margin: 2px 0;
}

.lh24-button {
  display: inline-block;
  background: white;
  color: var(--lh24-accent);
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--lh24-accent);
}
.lh24-button:hover {
  background: var(--lh24-btn-bg, var(--lh24-accent, #37aea2));
  color: var(--lh24-btn-fg, #fff);
  filter: brightness(0.95);
}

.lh24-button--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lh24-disabled {
  color: rgba(0, 0, 0, 0.55);
  font-style: italic;
}

.lh24-detail {
  --lh24-accent: #37aea2;
  --lh24-card-bg: #fff;
}

.lh24-detail--pretty {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 32px;
}

.lh24-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 415px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px) {
  .lh24-detail-layout {
    grid-template-columns: 1fr;
  }
}
.lh24-detail-sidebar {
  position: sticky;
  top: 16px;
}

@media (max-width: 980px) {
  .lh24-detail-sidebar {
    position: static;
    display: contents;
  }
}
.lh24-detail-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: var(--lh24-card-bg, #fff);
  padding-bottom: 16px;
}

.lh24-detail-acc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 16px 0;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.85);
}

.lh24-detail-acc--yes .lh24-detail-acc__icon {
  color: #37aea2;
  flex-shrink: 0;
}

.lh24-detail-acc--no .lh24-detail-acc__icon {
  color: #9e9e9e;
  flex-shrink: 0;
}

.lh24-detail-acc__text {
  flex: 1;
  min-width: 0;
}

.lh24-detail-acc__info {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: rgba(0, 0, 0, 0.45);
  cursor: help;
}

.lh24-detail-sidebar__category {
  margin: 12px 16px 0;
}

.lh24-detail-organizer {
  margin: 10px 16px 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
}

.lh24-detail-sidebar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin: 12px 16px 0;
  font-size: 14px;
}

.lh24-detail-location {
  margin: 12px 16px 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.85);
}

.lh24-detail-location__label {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}

.lh24-detail-panelists {
  margin: 16px 16px 0;
}

.lh24-detail-panelists__title {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
}

.lh24-detail-panelists__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.lh24-detail-panelist {
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
}

.lh24-detail-panelist__media {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 6px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lh24-detail-panelist__body {
  font-size: 13px;
  line-height: 1.3;
}

.lh24-detail-panelist__name {
  display: block;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.lh24-detail-panelist__name:hover {
  text-decoration: underline;
}

.lh24-detail-panelist__title {
  display: block;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.65);
}

.lh24-detail-meta-inline {
  margin: 14px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
}

.lh24-detail-kv__k,
.lh24-detail-kv__sep {
  font-weight: 700;
  font-size: 1rem;
}

.lh24-detail-kv__v {
  font-size: 1rem;
}

.lh24-detail-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 14px 16px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lh24-detail-footer-price {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.88);
}

.lh24-detail-footer-cta {
  flex-shrink: 0;
}

.lh24-detail-main {
  min-width: 0;
  padding-bottom: 32px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
}

.lh24-detail-back {
  margin: 0 0 16px;
  font-size: 16px;
}
.lh24-detail-back a {
  text-decoration: none;
  color: var(--lh24-accent, #37aea2);
}
.lh24-detail-back a:hover {
  text-decoration: underline;
}

.lh24-detail-title--full {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

.lh24-detail-body {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.85);
}
.lh24-detail-body p:first-child {
  margin-top: 0;
}
.lh24-detail-body p:last-child {
  margin-bottom: 0;
}

.lh24-detail-embed {
  margin: 24px 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lh24-detail-embed__ratio {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}
@supports (aspect-ratio: 16/9) {
  .lh24-detail-embed__ratio {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 16/9;
  }
}
.lh24-detail-embed__ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lh24-detail-external {
  margin: 24px 0;
  padding: 16px;
  border: 2px dashed rgba(185, 28, 28, 0.45);
  border-radius: 10px;
  background: rgba(185, 28, 28, 0.04);
}

.lh24-detail-external__link {
  word-break: break-all;
  font-weight: 600;
  color: var(--lh24-accent, #37aea2);
}

.lh24-detail-supporters {
  margin: 32px 0;
}

.lh24-detail-supporters__title {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 700;
}

.lh24-detail-supporters__scroll {
  display: flex;
  gap: 16px 20px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.lh24-detail-supporter {
  flex: 0 0 auto;
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: opacity 0.15s ease;
}
.lh24-detail-supporter:hover {
  opacity: 0.88;
}

.lh24-detail-supporter__img {
  display: block;
  width: 170px;
  height: 80px;
  object-fit: contain;
  background: #fff;
}

.lh24-detail-main-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 3px solid var(--lh24-accent, #37aea2);
}

.lh24-detail-main-footer .lh24-detail-meta-inline {
  margin: 0 0 12px;
}

.lh24-detail-main-footer .lh24-detail-footer-row {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lh24-detail-wrap:not(.lh24-detail-layout) {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 20px;
}

.lh24-detail-title:not(.lh24-detail-title--full) {
  margin: 0 0 8px;
}

.lh24-detail-subtitle {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.65);
}

.lh24-detail-content {
  border-top: 3px solid var(--lh24-accent, #37aea2);
  padding-top: 18px;
}

.lh24-panel-detail {
  margin: 20px 0;
  --lh24-accent: #37aea2;
}

.lh24-panel-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}

.lh24-panel-back {
  margin: 0 0 16px;
  font-size: 16px;
}
.lh24-panel-back a {
  text-decoration: none;
  color: var(--lh24-accent, #37aea2);
}
.lh24-panel-back a:hover {
  text-decoration: underline;
}
.lh24-panel-back .lh24-panel-back__btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  color: var(--lh24-accent, #37aea2);
}
.lh24-panel-back .lh24-panel-back__btn:hover {
  text-decoration: underline;
}

.lh24-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .lh24-panel-layout {
    grid-template-columns: 1fr;
  }
}
.lh24-panel-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: #fff;
}

.lh24-panel-avatar {
  width: 100%;
  padding-top: 100%;
  border-radius: 12px;
  background: #e5e7eb;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}

.lh24-panel-contact-block {
  font-size: 16px;
}

.lh24-panel-section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 12px 0 4px;
}

.lh24-panel-contact-row {
  margin: 0 0 4px;
}

.lh24-panel-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 10px 0 4px;
}

.lh24-panel-social-link {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.42);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 19px 19px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 19px 19px;
  transition: background-color 0.15s ease, transform 0.12s ease;
}
.lh24-panel-social-link:hover, .lh24-panel-social-link:focus-visible {
  background-color: var(--lh24-accent, #37aea2);
  transform: scale(1.06);
  outline: none;
}
.lh24-panel-social-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}
.lh24-panel-social-link {
  mask-image: url("../img/panel-social-link.svg");
  -webkit-mask-image: url("../img/panel-social-link.svg");
}

.lh24-panel-social-link--website {
  mask-image: url("../img/panel-social-website.svg");
  -webkit-mask-image: url("../img/panel-social-website.svg");
  mask-size: 21px 21px;
  -webkit-mask-size: 21px 21px;
}

.lh24-panel-social-link--facebook {
  mask-image: url("../img/panel-social-facebook.svg");
  -webkit-mask-image: url("../img/panel-social-facebook.svg");
  mask-size: 18px 18px;
  -webkit-mask-size: 18px 18px;
}

.lh24-panel-social-link--linkedin {
  mask-image: url("../img/panel-social-linkedin.svg");
  -webkit-mask-image: url("../img/panel-social-linkedin.svg");
}

.lh24-panel-social-link--instagram {
  mask-image: url("../img/panel-social-instagram.svg");
  -webkit-mask-image: url("../img/panel-social-instagram.svg");
}

.lh24-panel-social-link--youtube {
  mask-image: url("../img/panel-social-youtube.svg");
  -webkit-mask-image: url("../img/panel-social-youtube.svg");
  mask-size: 22px 22px;
  -webkit-mask-size: 22px 22px;
}

.lh24-panel-social-link--xing {
  mask-image: url("../img/panel-social-xing.svg");
  -webkit-mask-image: url("../img/panel-social-xing.svg");
  mask-size: 17px 17px;
  -webkit-mask-size: 17px 17px;
}

.lh24-panel-social-link--twitter {
  mask-image: url("../img/panel-social-twitter.svg");
  -webkit-mask-image: url("../img/panel-social-twitter.svg");
}

.lh24-panel-social-link--x {
  mask-image: url("../img/panel-social-x.svg");
  -webkit-mask-image: url("../img/panel-social-x.svg");
  mask-size: 17px 17px;
  -webkit-mask-size: 17px 17px;
}

.lh24-panel-social-link--tiktok {
  mask-image: url("../img/panel-social-tiktok.svg");
  -webkit-mask-image: url("../img/panel-social-tiktok.svg");
}

.lh24-panel-social-link--github {
  mask-image: url("../img/panel-social-github.svg");
  -webkit-mask-image: url("../img/panel-social-github.svg");
}

.lh24-panel-social-link--link {
  mask-image: url("../img/panel-social-link.svg");
  -webkit-mask-image: url("../img/panel-social-link.svg");
}

.lh24-panel-languages {
  margin: 4px 0 0;
}

.lh24-panel-main {
  align-self: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: #fff;
}

.lh24-panel-name {
  margin: 0 0 4px;
}

.lh24-panel-title {
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.65);
}

.lh24-panel-presentation {
  font-size: 17px;
  line-height: 1.5;
}

.lh24-panel-list {
  margin: 32px 0 0;
}
.lh24-panel-list .lh24-panel-title {
  margin: 0 0 12px;
}

.lh24-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.lh24-panel-card-teaser {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lh24-panel-card-teaser__media {
  display: block;
  width: 100%;
  padding-top: 75%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lh24-panel-card-teaser__body {
  padding: 14px 16px 16px;
}

.lh24-panel-card-teaser__name {
  margin: 0 0 4px;
}
.lh24-panel-card-teaser__name a {
  text-decoration: none;
  color: inherit;
}
.lh24-panel-card-teaser__name a:hover {
  text-decoration: underline;
}

.lh24-panel-card-teaser__title {
  margin: 0 0 4px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}

.lh24-panel-card-teaser__role {
  margin: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

.lh24-callback {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f9fafb;
}
.lh24-callback--success {
  border-color: rgba(22, 163, 74, 0.2);
  background: #ecfdf3;
}
.lh24-callback--error {
  border-color: rgba(185, 28, 28, 0.2);
  background: #fef2f2;
}
.lh24-callback--info {
  border-color: rgba(14, 165, 233, 0.2);
  background: #eff6ff;
}

.lh24-callback-title {
  margin: 0 0 4px;
}

.lh24-callback-code {
  margin: 0 0 8px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
}

.lh24-callback-message {
  margin: 0 0 4px;
  font-weight: 600;
}

.lh24-callback-details {
  margin: 0;
}

.lh24-callback-back {
  margin-top: 12px;
}

.lh24-callback-debug {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
.lh24-callback-debug summary {
  cursor: pointer;
}

.lh24-callback-debug-inner {
  margin-top: 8px;
  padding: 10px 12px;
  background: #f3f4f6;
  border-radius: 8px;
}

.lh24-callback-debug code {
  font-size: 13px;
}

.et-menu-nav .menu-item-lh24-account,
.et_mobile_nav_menu .menu-item-lh24-account {
  flex-direction: column;
  justify-content: center;
}
.et-menu-nav .menu-item-lh24-account .lh24-account-nav__menu,
.et_mobile_nav_menu .menu-item-lh24-account .lh24-account-nav__menu {
  border-top: none;
}
@media screen and (max-width: 980px) {
  .et-menu-nav .menu-item-lh24-account,
  .et_mobile_nav_menu .menu-item-lh24-account {
    padding: 10px 5%;
  }
  .et-menu-nav .menu-item-lh24-account a,
  .et_mobile_nav_menu .menu-item-lh24-account a {
    padding: 0;
    border-bottom: none;
  }
  .et-menu-nav .menu-item-lh24-account .lh24-account-nav--dropdown a,
  .et_mobile_nav_menu .menu-item-lh24-account .lh24-account-nav--dropdown a {
    padding: 10px 5%;
  }
}
@media screen and (min-width: 981px) {
  .et-menu-nav .menu-item-lh24-account,
  .et_mobile_nav_menu .menu-item-lh24-account {
    position: absolute !important;
    right: 0;
    top: 0;
    height: 100%;
  }
}

.lh24-account-nav {
  display: inline-block;
}

.lh24-account-nav__link {
  text-decoration: none;
}
.lh24-account-nav__link:hover {
  text-decoration: underline;
}

.lh24-account-nav--dropdown {
  position: relative;
  z-index: 100;
}

.lh24-account-nav__trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0.25em 0;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
  color: #2b2b2b !important;
}
.lh24-account-nav__trigger:hover {
  color: #4a7384 !important;
}

.lh24-account-nav__menu {
  position: absolute;
  top: 100%;
  right: 0;
}
@media screen and (max-width: 980px) {
  .lh24-account-nav__menu {
    right: unset;
    left: 0;
  }
}
.lh24-account-nav__menu {
  min-width: 160px;
  margin: 4px 0 0;
  padding: 0 !important;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 1000;
  list-style-type: none !important;
}

.lh24-account-nav--dropdown:hover .lh24-account-nav__menu,
.lh24-account-nav--dropdown:focus-within .lh24-account-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lh24-account-nav__menu li {
  margin: 0;
}

.lh24-account-nav__menu a {
  display: block;
  padding: 8px 14px;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
}
.lh24-account-nav__menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.lh24-auth-forms {
  --lh24-accent: #37aea2;
  max-width: 22rem;
  box-sizing: border-box;
  margin: 0 auto;
}
.lh24-auth-forms.lh24-auth-forms--wide {
  max-width: min(40rem, 100%);
}
.lh24-auth-forms *,
.lh24-auth-forms *::before,
.lh24-auth-forms *::after {
  box-sizing: inherit;
}
.lh24-auth-forms__notice {
  padding: 12px 14px;
  margin: 0 0 16px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
}
.lh24-auth-forms__notice--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid rgba(185, 28, 28, 0.2);
}
.lh24-auth-forms__notice--success {
  color: #16a34a;
  background: #ecfdf3;
  border: 1px solid rgba(22, 163, 74, 0.25);
}
.lh24-auth-forms__footer-link {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.75);
}
.lh24-auth-forms__footer-link a.lh24-form__link,
.lh24-auth-forms__footer-link .lh24-form__link {
  font-weight: 600;
}
.lh24-auth-forms .lh24-form__link,
.lh24-auth-forms a.lh24-form__link,
.lh24-auth-forms .lh24-link.lh24-form__link {
  color: var(--lh24-accent, #37aea2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.lh24-auth-forms .lh24-form__link:hover, .lh24-auth-forms .lh24-form__link:focus-visible,
.lh24-auth-forms a.lh24-form__link:hover,
.lh24-auth-forms a.lh24-form__link:focus-visible,
.lh24-auth-forms .lh24-link.lh24-form__link:hover,
.lh24-auth-forms .lh24-link.lh24-form__link:focus-visible {
  color: var(--lh24-accent, #37aea2);
  border-bottom-color: var(--lh24-accent, #37aea2);
  opacity: 0.92;
}
.lh24-auth-forms .lh24-form__link:focus-visible,
.lh24-auth-forms a.lh24-form__link:focus-visible,
.lh24-auth-forms .lh24-link.lh24-form__link:focus-visible {
  outline: 2px solid var(--lh24-accent, #37aea2);
  outline-offset: 2px;
  border-radius: 2px;
}
.lh24-auth-forms .lh24-form {
  margin: 0;
  padding: 0;
}
.lh24-auth-forms .lh24-form--cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  row-gap: 16px;
  align-items: start;
}
.lh24-auth-forms .lh24-form--cols-2 > .lh24-form__field {
  margin-bottom: 0;
}
.lh24-auth-forms .lh24-form--cols-2 > .lh24-form__field--full {
  grid-column: 1/-1;
}
.lh24-auth-forms .lh24-form--cols-2 .lh24-form__field--country {
  grid-column: 1/-1;
}
.lh24-auth-forms .lh24-form--cols-2:has(.lh24-form__field--tax-code:not([hidden])) .lh24-form__field--country {
  grid-column: auto;
}
.lh24-auth-forms .lh24-form__nonce {
  margin: 0;
  padding: 0;
  border: 0;
  grid-column: 1/-1;
  line-height: 0;
  min-height: 0;
}
.lh24-auth-forms .lh24-form__field {
  margin: 0 0 16px;
}
.lh24-auth-forms .lh24-form__label {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35em;
  row-gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.3;
}
.lh24-auth-forms .lh24-form__label .lh24-required {
  flex-shrink: 0;
  white-space: nowrap;
}
.lh24-auth-forms .lh24-form__label .lh24-hint {
  font-weight: 400;
}
.lh24-auth-forms .lh24-form__field--country label {
  margin-bottom: 6px;
}
.lh24-auth-forms .lh24-form__label > .lh24-form__input,
.lh24-auth-forms .lh24-form__label > input.lh24-input,
.lh24-auth-forms .lh24-form__label > select.lh24-form__input,
.lh24-auth-forms .lh24-form__label > select.lh24-form__select {
  flex: 1 0 100%;
  min-width: 0;
}
.lh24-auth-forms .lh24-form__input,
.lh24-auth-forms .lh24-form .lh24-input.lh24-form__input,
.lh24-auth-forms .lh24-form select.lh24-form__input,
.lh24-auth-forms .lh24-form select.lh24-form__select {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lh24-auth-forms .lh24-form__input::placeholder,
.lh24-auth-forms .lh24-form .lh24-input.lh24-form__input::placeholder,
.lh24-auth-forms .lh24-form select.lh24-form__input::placeholder,
.lh24-auth-forms .lh24-form select.lh24-form__select::placeholder {
  color: rgba(0, 0, 0, 0.55);
}
.lh24-auth-forms .lh24-form__input:hover,
.lh24-auth-forms .lh24-form .lh24-input.lh24-form__input:hover,
.lh24-auth-forms .lh24-form select.lh24-form__input:hover,
.lh24-auth-forms .lh24-form select.lh24-form__select:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
.lh24-auth-forms .lh24-form__input:focus, .lh24-auth-forms .lh24-form__input:focus-visible,
.lh24-auth-forms .lh24-form .lh24-input.lh24-form__input:focus,
.lh24-auth-forms .lh24-form .lh24-input.lh24-form__input:focus-visible,
.lh24-auth-forms .lh24-form select.lh24-form__input:focus,
.lh24-auth-forms .lh24-form select.lh24-form__input:focus-visible,
.lh24-auth-forms .lh24-form select.lh24-form__select:focus,
.lh24-auth-forms .lh24-form select.lh24-form__select:focus-visible {
  outline: none;
  border-color: var(--lh24-accent, #37aea2);
  box-shadow: 0 0 0 3px rgba(55, 174, 162, 0.22);
}
.lh24-auth-forms .lh24-form select.lh24-form__select,
.lh24-auth-forms .lh24-form select.lh24-form__input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.lh24-auth-forms {
  /* Trennlinie zwischen angepinnten und alphabetischen Ländern (Browser-Styling begrenzt). */
}
.lh24-auth-forms .lh24-form select.lh24-form__select option.lh24-select-divider,
.lh24-auth-forms .lh24-form select.lh24-form__input option.lh24-select-divider {
  font-size: 0.75em;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
}
.lh24-auth-forms .lh24-form-footer {
  margin: 8px 0 12px;
}
.lh24-auth-forms .lh24-form__checkbox {
  margin: 20px 0 16px;
}
.lh24-auth-forms .lh24-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.5;
  cursor: pointer;
}
.lh24-auth-forms .lh24-form__checkbox-input {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.2em 0 0;
  accent-color: var(--lh24-accent, #37aea2);
  cursor: pointer;
}
.lh24-auth-forms .lh24-form__actions {
  margin: 0;
  padding: 0;
}
.lh24-auth-forms .lh24-form--cols-2 > .lh24-form__actions.lh24-form__field--full {
  grid-column: 1/-1;
}
.lh24-auth-forms .lh24-form--cols-2 > .lh24-form__checkbox.lh24-form__field--full {
  grid-column: 1/-1;
}
@media (max-width: 30rem) {
  .lh24-auth-forms .lh24-form--cols-2 {
    grid-template-columns: 1fr;
  }
  .lh24-auth-forms .lh24-form--cols-2:has(.lh24-form__field--tax-code:not([hidden])) .lh24-form__field--country {
    grid-column: 1/-1;
  }
}
.lh24-auth-forms .lh24-form__submit,
.lh24-auth-forms .lh24-form .lh24-btn.lh24-form__submit,
.lh24-auth-forms .lh24-form button[type=submit].lh24-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 10px 24px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--lh24-btn-fg, #fff);
  background: var(--lh24-btn-bg, var(--lh24-accent, #37aea2));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.lh24-auth-forms .lh24-form__submit:hover,
.lh24-auth-forms .lh24-form .lh24-btn.lh24-form__submit:hover,
.lh24-auth-forms .lh24-form button[type=submit].lh24-form__submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.lh24-auth-forms .lh24-form__submit:active,
.lh24-auth-forms .lh24-form .lh24-btn.lh24-form__submit:active,
.lh24-auth-forms .lh24-form button[type=submit].lh24-form__submit:active {
  transform: translateY(1px);
}
.lh24-auth-forms .lh24-form__submit:focus-visible,
.lh24-auth-forms .lh24-form .lh24-btn.lh24-form__submit:focus-visible,
.lh24-auth-forms .lh24-form button[type=submit].lh24-form__submit:focus-visible {
  outline: 2px solid var(--lh24-accent, #37aea2);
  outline-offset: 2px;
}
.lh24-auth-forms .lh24-required {
  color: #b91c1c;
  font-weight: 700;
}
.lh24-auth-forms .lh24-hint {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
}

.lh24-login-register {
  margin-top: 1em;
}

.lh24-form-footer {
  margin-top: -0.5em;
  margin-bottom: 0.5em;
}

.lh24-register-form .lh24-form p,
.lh24-forgot-password-form .lh24-form p {
  margin-bottom: 1em;
}

.lh24-register-form .lh24-form--cols-2 > p {
  margin-bottom: 0;
}

.lh24-register-form .lh24-checkbox {
  margin: 1em 0;
}

.lh24-register-login {
  margin-top: 1em;
}

.lh24-forgot-register {
  margin-top: 1em;
}

header .et_builder_inner_content {
  z-index: 4;
}

.otgs-development-site-front-end {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 1px !important;
}
