/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-gray-500: oklch(55.1% 0.027 264.364);
    --color-black: #000;
    --spacing: 0.25rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .pointer-events-none {
    pointer-events: none;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .inset-x-0 {
    inset-inline: calc(var(--spacing) * 0);
  }
  .right-6 {
    right: calc(var(--spacing) * 6);
  }
  .bottom-6 {
    bottom: calc(var(--spacing) * 6);
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .mx-auto {
    margin-inline: auto;
  }
  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }
  .flex {
    display: flex;
  }
  .hidden {
    display: none;
  }
  .h-12 {
    height: calc(var(--spacing) * 12);
  }
  .h-full {
    height: 100%;
  }
  .min-h-\[683px\] {
    min-height: 683px;
  }
  .w-12 {
    width: calc(var(--spacing) * 12);
  }
  .max-w-\[468px\] {
    max-width: 468px;
  }
  .flex-1 {
    flex: 1;
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .gap-12 {
    gap: calc(var(--spacing) * 12);
  }
  .space-y-6 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-\[15px\] {
    border-radius: 15px;
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-gray-500 {
    border-color: var(--color-gray-500);
  }
  .bg-contain {
    background-size: contain;
  }
  .object-cover {
    object-fit: cover;
  }
  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }
  .pt-36 {
    padding-top: calc(var(--spacing) * 36);
  }
  .pr-4 {
    padding-right: calc(var(--spacing) * 4);
  }
  .text-black {
    color: var(--color-black);
  }
  .opacity-0 {
    opacity: 0%;
  }
  .opacity-100 {
    opacity: 100%;
  }
  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-300 {
    --tw-duration: 300ms;
    transition-duration: 300ms;
  }
  .md\:block {
    @media (width >= 48rem) {
      display: block;
    }
  }
  .md\:min-h-36 {
    @media (width >= 48rem) {
      min-height: calc(var(--spacing) * 36);
    }
  }
  .md\:min-h-\[744px\] {
    @media (width >= 48rem) {
      min-height: 744px;
    }
  }
  .md\:justify-end {
    @media (width >= 48rem) {
      justify-content: flex-end;
    }
  }
}
:root {
  --html-background: #F2F2F2;
  --color-text: #1A1A1A;
  color: var(--color-text);
  background: var(--html-background);
  --font-family: field-gothic-wide, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5em;
}
@layer base {
  html {
    color: var(--color-text);
    background: var(--html-background);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 300;
    scroll-behavior: smooth;
  }
  header {
    background: var(--html-background);
    z-index: 5;
  }
  h1 {
    font-family: var(--font-family);
    font-style: normal;
    font-size: clamp(2rem, 1.6479rem + 1.5023vw, 3rem);
    line-height: 110%;
    color: #1A1A1A;
    margin: 0;
  }
  h1 span {
    font-weight: 400;
    display: block;
  }
  h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(2rem, 1.6479rem + 1.5023vw, 3rem);
    line-height: 111%;
    color: #1A1A1A;
    margin: 0 0 0.5em;
  }
  h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(2rem, 1.6479rem + 1.5023vw, 3rem);
    line-height: 111%;
    color: #1A1A1A;
    margin: 0 0 0.5em;
  }
  p {
    font-size: clamp(1rem, 0.5599rem + 1.8779vw, 2.25rem);
    line-height: 110%;
    margin: 0 0;
  }
  b {
    font-weight: 400;
  }
  section {
    padding-block: calc(var(--spacing) * 4);
    @media (width >= 48rem) {
      padding-block: calc(var(--spacing) * 6);
    }
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 7);
    }
  }
  a:hover, a:active, a:focus {
    text-decoration: underline;
  }
  nav a {
    font-size: clamp(2rem, 1.6479rem + 1.5023vw, 3rem);
    line-height: 110%;
    color: #1A1A1A;
  }
  nav a:last-child {
    margin-top: 3rem;
  }
  details summary {
    position: relative;
    display: flex;
    cursor: pointer;
    list-style-type: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #D9D9D9;
    border-radius: 15px;
    padding: 1.25rem;
    z-index: 2;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  }
  details summary:after {
    position: absolute;
    bottom: 15px;
    right: 15px;
    content: 'i';
    width: 50px;
    height: 50px;
    background-color: #F2F2F2;
    */ transform: translateY(50%);
    border-radius: 15px;
    color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: normal;
    transition: color 0.2s ease;
  }
  details summary:hover:after {
    color: #1A1A1A;
  }
  details summary h3 {
    font-size: clamp(1.25rem, 0.8979rem + 1.5023vw, 2.25rem);
    line-height: 110%;
    margin: 0 35px 0 0;
  }
  details summary+div {
    position: relative;
    top: -1rem;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.125);
    z-index: 1;
    padding: 2.5rem 1.25rem 1.25rem;
    @media (width >=48rem) {
      padding: 3rem 2rem 2rem;
    }
  }
  details summary+div>* {
    font-size: 1rem;
    line-height: 110%;
  }
}
@layer utilities {
  .container {
    margin-inline: auto;
    max-width: 1440px;
    padding-inline: calc(var(--spacing) * 4);
    @media (width >= 48rem) {
      padding-inline: calc(var(--spacing) * 6);
    }
    @media (width >= 64rem) {
      padding-inline: calc(var(--spacing) * 7);
    }
  }
}
@media print {
  header {
    position: static;
  }
}
#backToTop {
  background: #D9D9D9;
}
#Startframe>div {
  background: transparent url(../images/RechtsanwaltProfDrUlrichZeitel_mobile.png) top right no-repeat;
  background-size: contain;
  margin-top: 1rem;
  @media (width >=48rem) {
    margin-top: 0;
    background: transparent url(../images/RechtsanwaltProfDrUlrichZeitel.png) top right no-repeat;
    background-size: contain;
  }
}
#Kanzleiprofil>div {
  background: #D9D9D9;
  border-radius: 15px;
  padding: 1.25rem;
}
#Impressum>div {
  background: #D9D9D9;
  border-radius: 15px;
  padding: 1.25rem;
}
.multi-column {
  column-count: 1;
  column-gap: 1rem;
}
@media (min-width: 768px) {
  .multi-column {
    column-count: 5;
  }
}
.multi-column h2, .multi-column h3 {
  break-inside: avoid;
  column-span: all;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.multi-column p {
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 110%;
  margin-bottom: 1em;
  hyphens: auto;
}
.multi-column p b {
  font-weight: 500;
}
.badges {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-items: center;
  align-items: start;
  margin: 0.5rem 0 1rem;
  @media (width >=48rem) {
    align-items: start;
    flex-direction: row;
  }
}
.badge {
  background: #F2F2F2;
  border-radius: 15px;
  font-size: clamp(1.25rem, 0.8979rem + 1.5023vw, 2.25rem);
  line-height: 1;
  color: #000000;
  padding: 0.2rem 1rem;
  width: 100%;
  @media (width >=48rem) {
    width: auto;
  }
}
#IhrKontakt .badge {
  background: #D9D9D9;
}
#IhrKontakt form {
  margin-inline: auto;
  :where(& > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }
}
#IhrKontakt form textarea, #IhrKontakt form input[type=text], #IhrKontakt form input[type=email] {
  position: relative;
  width: 100%;
  border-radius: 15px;
  font-size: clamp(1rem, 0.6479rem + 1.5023vw, 2rem);
  line-height: 1;
  color: #000000;
  background: #D9D9D9;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border: 2px solid #D9D9D9;
  padding: 0.5rem 1rem;
}
#IhrKontakt form textarea:hover, #IhrKontakt form input:hover {
  border-color: #a1a1a1;
}
#IhrKontakt form textarea {
  background: white;
  padding: 1rem;
  z-index: 2;
}
#IhrKontakt form textarea:invalid, #IhrKontakt form input:not(:placeholder-shown):invalid {
  border-color: red;
}
#IhrKontakt form input::placeholder {
  color: transparent;
}
#IhrKontakt form label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: clamp(1rem, 0.5599rem + 1.8779vw, 2.25rem);
  line-height: 1;
  color: #000000;
  padding: 0.5rem 1rem;
  transition: all 150ms;
}
#IhrKontakt form input:focus~label, #IhrKontakt form input:active~label, #IhrKontakt form input:hover~label, #IhrKontakt form input:not(:placeholder-shown)~label {
  top: -4px;
  font-size: 0.75rem;
}
#IhrKontakt form button {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 15px;
  font-size: clamp(1rem, 0.6479rem + 1.5023vw, 2rem);
  line-height: 1;
  color: #000000;
  background: #D9D9D9;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border: 2px solid #D9D9D9;
  padding: 0.5rem 1rem;
  text-align: left;
  font-weight: normal;
  cursor: pointer;
}
#IhrKontakt form button:hover {
  border-color: #a1a1a1;
  background: #a1a1a1;
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-duration: initial;
    }
  }
}
