[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

:root,[data-bs-theme=light]{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #0d6efd;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-primary-rgb: 13, 110, 253;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-primary-text-emphasis: #052c65;--bs-secondary-text-emphasis: #2b2f32;--bs-success-text-emphasis: #0a3622;--bs-info-text-emphasis: #055160;--bs-warning-text-emphasis: #664d03;--bs-danger-text-emphasis: #58151c;--bs-light-text-emphasis: #495057;--bs-dark-text-emphasis: #495057;--bs-primary-bg-subtle: #cfe2ff;--bs-secondary-bg-subtle: #e2e3e5;--bs-success-bg-subtle: #d1e7dd;--bs-info-bg-subtle: #cff4fc;--bs-warning-bg-subtle: #fff3cd;--bs-danger-bg-subtle: #f8d7da;--bs-light-bg-subtle: #fcfcfd;--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: #9ec5fe;--bs-secondary-border-subtle: #c4c8cb;--bs-success-border-subtle: #a3cfbb;--bs-info-border-subtle: #9eeaf9;--bs-warning-border-subtle: #ffe69c;--bs-danger-border-subtle: #f1aeb5;--bs-light-border-subtle: #e9ecef;--bs-dark-border-subtle: #adb5bd;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family: PressStart2P;--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #070707;--bs-body-color-rgb: 7, 7, 7;--bs-body-bg: #fff;--bs-body-bg-rgb: 255, 255, 255;--bs-emphasis-color: #000;--bs-emphasis-color-rgb: 0, 0, 0;--bs-secondary-color: rgba(7, 7, 7, 0.75);--bs-secondary-color-rgb: 7, 7, 7;--bs-secondary-bg: #e9ecef;--bs-secondary-bg-rgb: 233, 236, 239;--bs-tertiary-color: rgba(7, 7, 7, 0.5);--bs-tertiary-color-rgb: 7, 7, 7;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: inherit;--bs-link-color: #070707;--bs-link-color-rgb: 7, 7, 7;--bs-link-decoration: underline;--bs-link-hover-color: #070707;--bs-link-hover-color-rgb: 7, 7, 7;--bs-code-color: #d63384;--bs-highlight-color: #070707;--bs-highlight-bg: #fff3cd;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.375rem;--bs-border-radius-sm: 0.25rem;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-xxl: 2rem;--bs-border-radius-2xl: var(--bs-border-radius-xxl);--bs-border-radius-pill: 50rem;--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width: 0.25rem;--bs-focus-ring-opacity: 0.25;--bs-focus-ring-color: rgba(13, 110, 253, 0.25);--bs-form-valid-color: #198754;--bs-form-valid-border-color: #198754;--bs-form-invalid-color: #dc3545;--bs-form-invalid-border-color: #dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color: #dee2e6;--bs-body-color-rgb: 222, 226, 230;--bs-body-bg: #212529;--bs-body-bg-rgb: 33, 37, 41;--bs-emphasis-color: #fff;--bs-emphasis-color-rgb: 255, 255, 255;--bs-secondary-color: rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb: 222, 226, 230;--bs-secondary-bg: #343a40;--bs-secondary-bg-rgb: 52, 58, 64;--bs-tertiary-color: rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb: 222, 226, 230;--bs-tertiary-bg: #2b3035;--bs-tertiary-bg-rgb: 43, 48, 53;--bs-primary-text-emphasis: #6ea8fe;--bs-secondary-text-emphasis: #a7acb1;--bs-success-text-emphasis: #75b798;--bs-info-text-emphasis: #6edff6;--bs-warning-text-emphasis: #ffda6a;--bs-danger-text-emphasis: #ea868f;--bs-light-text-emphasis: #f8f9fa;--bs-dark-text-emphasis: #dee2e6;--bs-primary-bg-subtle: #031633;--bs-secondary-bg-subtle: #161719;--bs-success-bg-subtle: #051b11;--bs-info-bg-subtle: #032830;--bs-warning-bg-subtle: #332701;--bs-danger-bg-subtle: #2c0b0e;--bs-light-bg-subtle: #343a40;--bs-dark-bg-subtle: #1a1d20;--bs-primary-border-subtle: #084298;--bs-secondary-border-subtle: #41464b;--bs-success-border-subtle: #0f5132;--bs-info-border-subtle: #087990;--bs-warning-border-subtle: #997404;--bs-danger-border-subtle: #842029;--bs-light-border-subtle: #495057;--bs-dark-border-subtle: #343a40;--bs-heading-color: inherit;--bs-link-color: #6ea8fe;--bs-link-hover-color: #8bb9fe;--bs-link-color-rgb: 110, 168, 254;--bs-link-hover-color-rgb: 139, 185, 254;--bs-code-color: #e685b5;--bs-highlight-color: #dee2e6;--bs-highlight-bg: #664d03;--bs-border-color: #495057;--bs-border-color-translucent: rgba(255, 255, 255, 0.15);--bs-form-valid-color: #75b798;--bs-form-valid-border-color: #75b798;--bs-form-invalid-color: #ea868f;--bs-form-invalid-border-color: #ea868f}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}h6,h5,h4,h3,h2,h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width: 1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + 0.6vw)}@media(min-width: 1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + 0.3vw)}@media(min-width: 1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:0.875em}mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));text-decoration:underline}a:hover{--bs-link-color-rgb: var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:0.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none !important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.simplebar-track.simplebar-horizontal{height:16px;background-color:#c2c2bf}.simplebar-scrollbar.simplebar-visible:before{opacity:1;border:2px solid #5e5e5e;border-radius:0;background-color:#807f7a}@font-face{font-family:"PressStart2P";src:url(../../Public/Fonts/PressStart2P-Regular..ttf) format("truetype");font-weight:normal}html,body{cursor:url(../../Public/Images/user-interface_cursor-arrow.png),auto}body{overflow:hidden}.bb-animation-handler{width:var(--bb-width);height:var(--bb-height);background-size:cover;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.bb-scene{--bb-scene-scale: 1;--bb-tile-size: 64px;max-width:100dvw;height:100dvh;overflow-x:auto;overflow-y:hidden;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated;background-color:#d9effb}.bb-scene .scene-wrapper{display:flex}.bb-scene .scene-wrapper.flex-end{justify-content:flex-end}.bb-scene .scene-wrapper .checklist-container{position:fixed;height:0;left:10%;right:0;bottom:0;top:5%;z-index:10;width:320px;font-size:12px}.bb-scene .scene-wrapper .checklist-wrapper{position:relative}.bb-scene .scene-wrapper .checklist-header,.bb-scene .scene-wrapper .checklist-top,.bb-scene .scene-wrapper .checklist-center,.bb-scene .scene-wrapper .checklist-bottom,.bb-scene .scene-wrapper .checklist-footer{width:320px}.bb-scene .scene-wrapper .checklist-header,.bb-scene .scene-wrapper .checklist-footer{height:64px}.bb-scene .scene-wrapper .checklist-top,.bb-scene .scene-wrapper .checklist-center,.bb-scene .scene-wrapper .checklist-bottom{height:0;transition:height 300ms cubic-bezier(0.4, 0, 0.2, 1)}.bb-scene .scene-wrapper .checklist-top.open,.bb-scene .scene-wrapper .checklist-bottom.open{height:64px}.bb-scene .scene-wrapper .checklist-center{background:url(../../Public/Images/user-interface_schriftrolle-mitte-2.png) no-repeat}.bb-scene .scene-wrapper .checklist-center.open{height:32px}.bb-scene .scene-wrapper .checklist-header{position:relative;background:url(../../Public/Images/user-interface_schriftrolle-oben.png) no-repeat}.bb-scene .scene-wrapper .checklist-header:before,.bb-scene .scene-wrapper .checklist-header:after{position:absolute;content:"";display:block;width:64px;height:32px;top:35%}.bb-scene .scene-wrapper .checklist-header:before{background:url(../../Public/Images/user-interface_muster-links.png);left:10%}.bb-scene .scene-wrapper .checklist-header:after{background:url(../../Public/Images/user-interface_muster-rechts.png);right:10%}.bb-scene .scene-wrapper .checklist-header p{position:absolute;left:50%;transform:translateX(-50%);top:50%}.bb-scene .scene-wrapper .checklist-top{background:url(../../Public/Images/user-interface_schriftrolle-mitte-1.png) no-repeat}.bb-scene .scene-wrapper .checklist-bottom{background:url(../../Public/Images/user-interface_schriftrolle-mitte-3.png) no-repeat}.bb-scene .scene-wrapper .scene-container{position:relative;transition:margin 1s ease-out;display:flex;height:calc(100vh - 38px);height:calc(100dvh - 38px);margin:0 auto}.bb-scene .scene-wrapper .scene-container.first.hide{opacity:0;display:none}.bb-scene .scene-wrapper .scene-container.second{display:none}.bb-scene .scene-wrapper .scene-container.second.showing{display:block;opacity:0}.bb-scene .scene-wrapper .scene-container.second.show{opacity:1;display:block}.bb-scene .scene-wrapper.expanded .scene-container.first{margin:0 0 0 auto}.bb-scene .scene-wrapper.expanded .scene-container.second{transition:max-width 3s cubic-bezier(0.4, 0, 0.2, 1),opacity 3s cubic-bezier(0.4, 0, 0.2, 1);opacity:1;margin:0 auto 0 0;display:flex;max-width:100%;overflow:visible}.bb-scene .scene-wrapper .objects{position:absolute;top:0;left:0;right:0;bottom:0}.bb-scene .scene-wrapper .objects>div,.bb-scene .scene-wrapper .objects>img{position:absolute;transform-origin:top left;scale:var(--bb-scene-scale)}.bb-scene .scene-wrapper .objects.second-scene>div.reindeer-second,.bb-scene .scene-wrapper .objects.second-scene>img.reindeer-second{left:calc(.2*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(-0.55*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.fire,.bb-scene .scene-wrapper .objects.second-scene>img.fire{left:calc(4.15*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(10.3*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.dog,.bb-scene .scene-wrapper .objects.second-scene>img.dog{left:calc(13.95*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(6.9*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.dogs,.bb-scene .scene-wrapper .objects.second-scene>img.dogs{left:calc(21.1*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(10.6*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.spotlight.right,.bb-scene .scene-wrapper .objects.second-scene>img.spotlight.right{left:calc(33.3*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(2.55*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.spotlight.right-second,.bb-scene .scene-wrapper .objects.second-scene>img.spotlight.right-second{left:calc(36*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(3.55*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.spotlight.right-third,.bb-scene .scene-wrapper .objects.second-scene>img.spotlight.right-third{left:calc(36*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(8.55*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.spotlight.left,.bb-scene .scene-wrapper .objects.second-scene>img.spotlight.left{left:calc(25.5*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(3*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.spotlight.left-second,.bb-scene .scene-wrapper .objects.second-scene>img.spotlight.left-second{left:calc(23.5*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(4*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.spotlight.left-third,.bb-scene .scene-wrapper .objects.second-scene>img.spotlight.left-third{left:calc(23.6*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(8.6*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.speaker.left,.bb-scene .scene-wrapper .objects.second-scene>img.speaker.left{left:calc(25.8*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(9*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.speaker.right,.bb-scene .scene-wrapper .objects.second-scene>img.speaker.right{left:calc(35*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(9*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.dj-bear,.bb-scene .scene-wrapper .objects.second-scene>img.dj-bear{left:calc(29*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(3.5*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.second-scene>div.bb-lounge-sign,.bb-scene .scene-wrapper .objects.second-scene>img.bb-lounge-sign{left:calc(28.1*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(11.5*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene{display:none}.bb-scene .scene-wrapper .objects.first-scene>div.info-desk-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.info-desk-wrapper{pointer-events:none;left:calc(20.34*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(9.64*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.clean-up-box-1-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.clean-up-box-1-wrapper{left:calc(22.5*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(3.35*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.clean-up-box-2-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.clean-up-box-2-wrapper{left:calc(51.2*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(6.28*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.decoration-light-container,.bb-scene .scene-wrapper .objects.first-scene>img.decoration-light-container{display:flex;left:calc(6.28*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(1.35*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.decoration-light-container .hide,.bb-scene .scene-wrapper .objects.first-scene>img.decoration-light-container .hide{display:none}.bb-scene .scene-wrapper .objects.first-scene>div.decoration-light-container-stay,.bb-scene .scene-wrapper .objects.first-scene>img.decoration-light-container-stay{display:flex;left:calc(16.25*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(1.35*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.decoration-light-hang-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.decoration-light-hang-wrapper{left:calc(22.25*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(1.35*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.decoration-garland-lamp,.bb-scene .scene-wrapper .objects.first-scene>img.decoration-garland-lamp{left:calc(24.8*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(.88*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.decoration-garland-painting,.bb-scene .scene-wrapper .objects.first-scene>img.decoration-garland-painting{left:calc(50.8*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(4.88*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.glass-wall,.bb-scene .scene-wrapper .objects.first-scene>img.glass-wall{pointer-events:none;left:calc(48.88*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(4*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.table-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.table-wrapper{left:calc(9.55*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(7.6*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.decorated-tree-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.decorated-tree-wrapper{left:calc(13.2*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(1.79*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.back-door-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.back-door-wrapper{left:calc(55*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(4.75*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.reindeer-chewing,.bb-scene .scene-wrapper .objects.first-scene>img.reindeer-chewing{left:calc(1*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(8.6*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.reindeer-standard,.bb-scene .scene-wrapper .objects.first-scene>img.reindeer-standard{left:calc(0*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(3*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.hide,.bb-scene .scene-wrapper .objects.first-scene>img.hide{display:none}.bb-scene .scene-wrapper .objects.first-scene>div.initial-hidden,.bb-scene .scene-wrapper .objects.first-scene>img.initial-hidden{display:none}.bb-scene .scene-wrapper .objects.first-scene>div .initial-hidden,.bb-scene .scene-wrapper .objects.first-scene>img .initial-hidden{display:none}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.hide,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.hide{display:none}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.power-switch,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.power-switch{left:calc(39.9*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(2.3*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-first,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-first{left:calc(8.95*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(6.58*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-first.end-position,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-first.end-position{left:calc(5.8*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(4.45*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-second,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-second{left:calc(25.25*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(7.08*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-second.end-position,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-second.end-position{left:calc(6.7*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(3.95*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-third,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-third{left:calc(19.37*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(9.38*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-fourth,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-fourth{left:calc(14.25*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(11.67*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-fifth,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-fifth{left:calc(51.2*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(10*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-sixth,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-sixth{left:calc(24*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(12.5*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.clean-up-seventh,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.clean-up-seventh{left:calc(38.3*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(9.75*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.decoration-light-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.decoration-light-wrapper{left:calc(12.05*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(5.88*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.decoration-lamp-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.decoration-lamp-wrapper{left:calc(33.05*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(4.52*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.decoration-painting-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.decoration-painting-wrapper{left:calc(49.25*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(8*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.coin-first,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.coin-first{left:calc(9*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(9.3*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.coin-second,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.coin-second{left:calc(39.4*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(3.8*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.coin-third,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.coin-third{left:calc(45.83*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(12.55*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object.coin-sack-wrapper,.bb-scene .scene-wrapper .objects.first-scene>img.click-object.coin-sack-wrapper{left:calc(48.55*var(--bb-tile-size)*var(--bb-scene-scale));top:calc(4.5*var(--bb-tile-size)*var(--bb-scene-scale))}.bb-scene .scene-wrapper .objects.first-scene>div.click-object>img.active,.bb-scene .scene-wrapper .objects.first-scene>div.click-object>div.active,.bb-scene .scene-wrapper .objects.first-scene>img.click-object>img.active,.bb-scene .scene-wrapper .objects.first-scene>img.click-object>div.active{cursor:url(../../Public/Images/user-interface_cursor-hand.png),pointer}.bb-scene .scene-wrapper .objects.first-scene>div .puff,.bb-scene .scene-wrapper .objects.first-scene>img .puff{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.bb-scene .change-scene{position:fixed;top:0;width:1920px;height:calc(100vh - 30px);height:100dvh;z-index:1040}.bb-scene .change-scene .image{width:100%;height:100%;object-fit:cover;object-fit:fill}.bb-scene .change-scene.change-scene-left{left:-1920px}.bb-scene .change-scene.change-scene-left .image{object-position:right}.bb-scene .change-scene.change-scene-left.show{left:0}.bb-scene .change-scene.change-scene-right{right:-1920px}.bb-scene .change-scene.change-scene-right .image{object-position:left}.bb-scene .change-scene.change-scene-right.show{right:0}.bb-scene .background{height:100%}.bb-scene .background.no-light{position:absolute}.bb-scene .background.hide{display:none}.login{position:fixed;margin:auto;left:0;right:0;bottom:0;top:0;z-index:1000;max-width:100%;width:600px;font-size:9px;line-height:16px;display:flex;flex-direction:column;justify-content:center;opacity:0}.login.show{opacity:1}.login:before{position:fixed;content:"";width:100%;height:100%;top:0;left:0;z-index:999;background:rgba(76,133,179,.6)}.login.hide{display:none}.login .login-content-wrapper{position:relative;z-index:1000}.login .login-center{display:flex;justify-content:space-between;height:calc(100% - 192px)}.login .login-content{position:relative;padding:112px 40px 40px;z-index:2}@media(min-width: 768px){.login .login-content{padding:112px 64px 64px}}.login .login-content b,.login .login-content strong{letter-spacing:1px}.login .login-content .thank-you-headline{font-size:12px;line-height:20px;margin-bottom:24px}.login .login-border{top:0;left:0;position:absolute;width:100%;height:100%}.login .login-border:before{content:"";position:absolute;background-color:#faf9f6;width:calc(100% - 64px);height:calc(100% - 32px);margin:auto;left:0;right:0;bottom:0;top:12px;z-index:-1}.login .login-header{display:flex}.login .login-header div{height:32px}.login .login-header div:first-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_links-oben.png) no-repeat}.login .login-header div:nth-child(2){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_oben-1.png) no-repeat}.login .login-header div:nth-child(3){width:auto;flex-grow:1;background:url(../../Public/Images/user-interface_papier-overlay_oben-2.png) repeat}.login .login-header div:nth-child(4){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_oben-3.png) no-repeat}.login .login-header div:last-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_rechts-oben.png) no-repeat}.login .login-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-top:32px}@media(min-width: 768px){.login .login-input-field{flex:1}}.login .login-input-field input{width:100%;border:none;background-color:#e8e4d6;border-bottom:4px solid #d0cdbc;padding:6px 12px 4px}.login .login-input-field input:focus-visible{outline:2px solid #101010;outline-color:#101010}.login .login-button{flex-shrink:0;position:relative;display:inline-block;height:32px;min-width:90px;cursor:url(../../Public/Images/user-interface_cursor-hand.png),pointer}.login .login-button-container{margin-top:24px}.login .login-button-border{display:flex;position:absolute;width:100%}.login .login-button-border>div:first-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_btn_main-links.png) no-repeat}.login .login-button-border>div:nth-child(2){width:32px;height:32px;background:url(../../Public/Images/user-interface_btn_main-mitte-1.png) repeat}.login .login-button-border>div:nth-child(3){flex:1;height:32px;background:url(../../Public/Images/user-interface_btn_main-mitte-2.png) repeat}.login .login-button-border>div:last-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_btn_main-rechts.png) no-repeat}.login .login-button-content{position:relative;font-size:10px;line-height:14px;padding:7px 24px;text-align:center}.login .login-button:hover .login-button-border>div:first-child{background:url(../../Public/Images/user-interface_btn_hover-links.png) no-repeat}.login .login-button:hover .login-button-border>div:nth-child(2){background:url(../../Public/Images/user-interface_btn_hover-mitte-1.png) repeat}.login .login-button:hover .login-button-border>div:nth-child(3){background:url(../../Public/Images/user-interface_btn_hover-mitte-2.png) repeat}.login .login-button:hover .login-button-border>div:last-child{background:url(../../Public/Images/user-interface_btn_hover-rechts.png) no-repeat}.login .login-button:hover .login-button-content{padding-top:10px}.login .login-elf-container{position:absolute;width:176px;height:176px;top:-80px;left:50%;transform:translateX(-50%);z-index:1}.login .login-elf-bg{width:100%;height:100%;background:url(../../Public/Images/user-interface_elfe-portait-rahmen.png) no-repeat;background-size:contain}.login .login-elf{position:relative;width:160px;height:160px;top:1px;left:8px;background:url(../../Public/Images/sprite-sheet_patrik_portrait.png) no-repeat}.login .form-error{margin:12px 8px 0;color:#d02b2b}.login .form-info{margin-top:12px}.login .form-info.hide{display:none}.login .login-left,.login .login-right{display:flex;flex-direction:column}.login .login-left div,.login .login-right div{height:32px;width:32px}.login .login-left div:first-child,.login .login-right div:first-child{height:100%;background:url(../../Public/Images/user-interface_papier-overlay_links-1.png) repeat}.login .login-left div:last-child,.login .login-right div:last-child{background:url(../../Public/Images/user-interface_papier-overlay_links-2.png) no-repeat}.login .login-right div:first-child{height:32px;background:url(../../Public/Images/user-interface_papier-overlay_rechts-1.png) no-repeat}.login .login-right div:last-child{height:100%;background:url(../../Public/Images/user-interface_papier-overlay_rechts-2.png) repeat}.login .login-footer{display:flex;align-items:flex-end}.login .login-footer div{height:32px}.login .login-footer div:first-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_links-unten.png) no-repeat}.login .login-footer div:nth-child(2){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_unten-1.png) no-repeat}.login .login-footer div:nth-child(3){width:auto;flex-grow:1;background:url(../../Public/Images/user-interface_papier-overlay_unten-2.png) repeat}.login .login-footer div:nth-child(4){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_unten-3.png) no-repeat}.login .login-footer div:last-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_rechts-unten.png) no-repeat}.loading-banner{position:fixed;opacity:0;margin:auto;left:0;right:0;bottom:0;top:0;z-index:1030;max-width:100%;width:600px;font-size:12px;display:flex;flex-direction:column;justify-content:center}.loading-banner:before{position:fixed;content:"";width:100%;height:100%;top:0;left:0;z-index:999;background:rgba(76,133,179,.6)}.loading-banner img{position:relative;width:100%;height:auto;margin-bottom:124px;z-index:1000}.loading-banner.show{display:flex;opacity:1}.loading-banner.hide{display:none}.main-backdrop{transition:opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);position:fixed;content:"";width:100%;height:100%;top:0;left:0;z-index:999;background:rgba(76,133,179,.6)}.main-backdrop.blur~.scene-wrapper{filter:blur(30px)}.main-backdrop.hide{display:none}form .form-success,form .form-error{display:none}footer{width:100%;position:fixed;bottom:16px;z-index:1010}footer .footer-bg{display:flex}footer .footer-bg div{height:64px}footer .footer-bg div:first-child{width:96px;background:url(../../Public/Images/user-interface_footer-mobile_links.png) no-repeat}footer .footer-bg div:nth-child(2){flex:1;background:url(../../Public/Images/user-interface_footer-mobile_mitte.png) repeat}footer .footer-bg div:last-child{width:96px;background:url(../../Public/Images/user-interface_footer-mobile_rechts.png) no-repeat}@media(min-width: 768px){footer .footer-bg div:first-child{width:64px;background:url(../../Public/Images/user-interface_footer_links.png) no-repeat}footer .footer-bg div:nth-child(2){flex:1;background:url(../../Public/Images/user-interface_footer_mitte.png) repeat}footer .footer-bg div:last-child{width:64px;background:url(../../Public/Images/user-interface_footer_rechts.png) no-repeat}}footer .footer-link{position:absolute;width:calc(100% - 72px);height:36px;bottom:12px;left:36px;z-index:1;font-size:8px;color:#362a22}footer .footer-link a{color:#362a22}footer .footer-link a:hover{color:#362a22}footer .footer-link-content{height:100%;display:flex;justify-content:space-between;align-items:flex-end;gap:24px}footer .footer-link-group{display:flex;flex-direction:column;gap:8px;text-align:right;white-space:nowrap}@media(min-width: 768px){footer .footer-link{width:auto;height:auto;right:64px;left:auto}footer .footer-link-content{flex-direction:row-reverse;gap:32px}footer .footer-link-group{flex-direction:row;gap:32px}}.buttons{display:flex;gap:8px}.buttons-container{position:absolute;top:16px;right:120px;width:320px;height:32px}.button-menu{position:fixed;bottom:72px;right:16px;width:36px;height:32px;z-index:999}.button{flex-shrink:0;width:32px;height:32px;cursor:url(../../Public/Images/user-interface_cursor-hand.png),pointer}.button.active{background-position-x:-32px}@media(hover: hover){.button:hover{background-position-x:-32px}}.button-info{background:url(../../Public/Images/user-interface_btn_info_sprite-sheet.png) no-repeat}.button-music{background:url(../../Public/Images/user-interface_btn_musik_sprite-sheet.png) no-repeat}.button-music-off{background-position-x:-64px}.button-music-off:hover{background-position-x:-96px}.button-help{background:url(../../Public/Images/user-interface_btn_hilfe_sprite-sheet.png) no-repeat}.button-new-game{background:url(../../Public/Images/user-interface_btn_nochmal-spielen_sprite-sheet.png) no-repeat}.button-save{background:url(../../Public/Images/user-interface_btn_speichern_sprite-sheet.png) no-repeat}.button-share{background:url(../../Public/Images/user-interface_btn_teilen_sprite-sheet.png) no-repeat}.button.disabled{touch-action:none;pointer-events:none}.introduction-backdrop{display:none;position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.4);z-index:1009}.introduction-backdrop.show{display:block}.introduction{position:fixed;width:calc(100% - 32px);height:auto;max-width:520px;min-height:64px;bottom:-100%;left:50%;transform:translateX(-50%);padding:20px 20px 10px 20px;z-index:1020;transition:bottom 300ms cubic-bezier(0.4, 0, 0.2, 1)}.introduction.show{bottom:90px}@media(min-width: 768px){.introduction{width:720px;bottom:-100%;padding:30px 30px 20px 30px}.introduction.show{bottom:64px}}.introduction .introduction-body{transition:height 300ms cubic-bezier(0.4, 0, 0.2, 1);position:relative;font-size:9px;line-height:16px;overflow-y:hidden}.introduction .introduction-border{position:absolute;width:100%;height:100%;top:0;left:0}.introduction .introduction-border:before{content:"";position:absolute;background-color:#faf9f6;width:calc(100% - 48px);height:calc(100% - 32px);margin:auto;left:0;right:0;bottom:0;top:12px;z-index:-1}.introduction .introduction-border-top{display:flex}.introduction .introduction-border-top>div:first-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_copy_links-oben.png) no-repeat}.introduction .introduction-border-top>div:nth-child(2){flex:1;height:32px;background:url(../../Public/Images/user-interface_copy_mitte-oben.png) repeat}.introduction .introduction-border-top>div:last-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_copy_rechts-oben.png) no-repeat}.introduction .introduction-border-middle{display:flex;justify-content:space-between;height:calc(100% - 64px)}.introduction .introduction-border-middle>div:first-child{width:32px;height:100%;background:url(../../Public/Images/user-interface_copy_links-mitte.png) repeat}.introduction .introduction-border-middle>div:nth-child(2){flex:1;height:100%;background-color:#faf9f6}.introduction .introduction-border-middle>div:last-child{width:32px;height:100%;background:url(../../Public/Images/user-interface_copy_rechts-mitte.png) repeat}.introduction .introduction-border-bottom{display:flex}.introduction .introduction-border-bottom>div:first-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_copy_links-unten.png) no-repeat}.introduction .introduction-border-bottom>div:nth-child(2){flex:1;height:32px;background:url(../../Public/Images/user-interface_copy_mitte-unten-1.png) repeat}.introduction .introduction-border-bottom>div:nth-child(3){width:32px;height:32px;background:url(../../Public/Images/user-interface_copy_mitte-unten-2.png) no-repeat}.introduction .introduction-border-bottom>div:last-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_copy_rechts-unten.png) no-repeat}.introduction .introduction-headline{position:absolute;top:-16px;left:50%;transform:translate(-50%);z-index:10}.introduction .introduction-headline-border{display:flex;position:absolute;width:100%}.introduction .introduction-headline-border>div:first-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_name_links.png) no-repeat}.introduction .introduction-headline-border>div:nth-child(2){flex:1;height:32px;background:url(../../Public/Images/user-interface_name_mitte.png) repeat}.introduction .introduction-headline-border>div:last-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_name_rechts.png) no-repeat}.introduction .introduction-headline-content{position:relative;font-size:10px;line-height:14px;padding:10px 32px}@media(min-width: 768px){.introduction .introduction-headline{left:32px;transform:none}}.introduction .introduction-content{transition:height 300ms cubic-bezier(0.4, 0, 0.2, 1);position:relative}.introduction .introduction-content p:last-child{margin-bottom:0}.introduction .introduction-content .list-item{display:inline-flex}.introduction .introduction-content .list-item:not(:last-child){margin-bottom:8px}.introduction .introduction-content .list-item-count{margin-right:12px}.introduction .introduction-content .list-item-link{text-decoration:underline;cursor:url(../../Public/Images/user-interface_cursor-hand.png),pointer}.introduction .introduction-content-text{overflow:hidden}.introduction .introduction-content-text>div{transition:top 300ms cubic-bezier(0.4, 0, 0.2, 1);position:relative;top:0;left:0}.introduction .introduction-content-text b{letter-spacing:1px}.introduction .introduction-button{position:relative;display:inline-block;height:32px;min-width:90px;cursor:url(../../Public/Images/user-interface_cursor-hand.png),pointer}.introduction .introduction-button-container{margin-top:24px}.introduction .introduction-button-container.hide{display:none}.introduction .introduction-button-border{display:flex;position:absolute;width:100%}.introduction .introduction-button-border>div:first-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_btn_main-links.png) no-repeat}.introduction .introduction-button-border>div:nth-child(2){width:32px;height:32px;background:url(../../Public/Images/user-interface_btn_main-mitte-1.png) repeat}.introduction .introduction-button-border>div:nth-child(3){flex:1;height:32px;background:url(../../Public/Images/user-interface_btn_main-mitte-2.png) repeat}.introduction .introduction-button-border>div:last-child{width:32px;height:32px;background:url(../../Public/Images/user-interface_btn_main-rechts.png) no-repeat}.introduction .introduction-button-content{position:relative;font-size:10px;line-height:14px;padding:7px 24px;text-align:center}.introduction .introduction-button:hover .introduction-button-border>div:first-child{background:url(../../Public/Images/user-interface_btn_hover-links.png) no-repeat}.introduction .introduction-button:hover .introduction-button-border>div:nth-child(2){background:url(../../Public/Images/user-interface_btn_hover-mitte-1.png) repeat}.introduction .introduction-button:hover .introduction-button-border>div:nth-child(3){background:url(../../Public/Images/user-interface_btn_hover-mitte-2.png) repeat}.introduction .introduction-button:hover .introduction-button-border>div:last-child{background:url(../../Public/Images/user-interface_btn_hover-rechts.png) no-repeat}.introduction .introduction-button:hover .introduction-button-content{padding-top:10px}.introduction .introduction-scroll{position:absolute;right:16px;width:32px;height:32px;z-index:1;cursor:url(../../Public/Images/user-interface_cursor-hand.png),pointer}.introduction .introduction-scroll.disabled{pointer-events:none;touch-action:none}@media(min-width: 768px){.introduction .introduction-scroll{right:32px}}.introduction .introduction-scroll--top{top:-16px;background:url(../../Public/Images/user-interface_pfeil_up.png) no-repeat}.introduction .introduction-scroll--bottom{bottom:-12px;background:url(../../Public/Images/user-interface_pfeil_down.png) no-repeat}.introduction .introduction-elf-holder{position:absolute;width:110px;height:110px;bottom:100%;left:50%;transform:translateX(-50%)}@media(min-width: 768px){.introduction .introduction-elf-holder{width:160px;height:160px;right:-120px;bottom:0;left:auto;transform:none}}.introduction .introduction-elf{background-size:cover}.introduction .introduction-elf.question{background-position:110px 0 !important}.introduction .introduction-elf.happy{background-position:220px 0 !important}@media(min-width: 768px){.introduction .introduction-elf.question{background-position:160px 0 !important}.introduction .introduction-elf.happy{background-position:320px 0 !important}}.introduction .introduction-icon-holder{position:absolute;width:64px;height:64px;top:-190px;left:50%;transform:translateX(-50%)}@media(min-width: 768px){.introduction .introduction-icon-holder{top:-100px}}.introduction .introduction-icon-swipe{display:none;width:96px;height:64px}.introduction .introduction-icon-swipe.show{display:block}.donation-container{transition:top 300ms cubic-bezier(0.4, 0, 0.2, 1);position:fixed;top:-64px;left:50%;width:303px;height:64px;transform:translateX(-50%)}.donation-container.show{top:0}.closed .donation-container{z-index:1010}.donation{position:relative;width:100%;height:100%;background:url(../../Public/Images/user-interface_spende.png) no-repeat;background-size:contain}.donation .donation-amount{position:absolute;top:38px;left:33px;width:32px;height:18px;font-size:8px;line-height:12px;text-align:center;padding:4px 0;white-space:nowrap}.donation .donation-text{font-size:8px;line-height:12px;position:absolute;top:0;left:74px;width:214px;height:48px;padding:8px 12px 8px 0;display:flex;align-items:center;justify-content:center}.checklist{position:absolute;top:80px;left:4px;width:320px;padding:40px 40px 40px 30px;z-index:1030}@media(min-width: 576px){.checklist{left:64px}}.checklist.hide{display:none}.checklist.open .checklist-open-icon{transform:rotate(-180deg)}.checklist.disabled .checklist-border-bottom{touch-action:none;pointer-events:none}.checklist.disabled .checklist-open-icon{display:none}.checklist .checklist-border{position:absolute;width:100%;height:100%;top:0;left:0}.checklist .checklist-border:before{content:"";position:absolute;background-color:#faf9f6;width:calc(100% - 64px);height:calc(100% - 32px);margin:auto;left:0;right:0;bottom:0;top:12px;z-index:-1}.checklist .checklist-border-top{display:flex;align-items:flex-end;height:42px;padding:10px 35px 10px 25px;background:url(../../Public/Images/user-interface_schriftrolle-oben.png) no-repeat bottom}.checklist .checklist-border-top>div:first-child{width:64px;height:32px;background:url(../../Public/Images/user-interface_muster-links.png) no-repeat}.checklist .checklist-border-top>div:nth-child(2){flex:1;font-size:12px;text-align:center;margin-bottom:4px}.checklist .checklist-border-top>div:last-child{width:64px;height:32px;background:url(../../Public/Images/user-interface_muster-rechts.png) no-repeat}.checklist .checklist-border-middle{display:flex;flex-direction:column;height:calc(100% - 80px)}.checklist .checklist-border-middle>div:first-child{height:64px;background:url(../../Public/Images/user-interface_schriftrolle-mitte-1.png) no-repeat}.checklist .checklist-border-middle>div:nth-child(2){flex:1;background:url(../../Public/Images/user-interface_schriftrolle-mitte-2.png)}.checklist .checklist-border-middle>div:last-child{height:64px;background:url(../../Public/Images/user-interface_schriftrolle-mitte-3.png) no-repeat}.checklist .checklist-border-bottom{display:flex;justify-content:center;padding-top:3px;height:42px;background:url(../../Public/Images/user-interface_schriftrolle-unten.png) no-repeat;cursor:url(../../Public/Images/user-interface_cursor-hand.png),pointer}.checklist .checklist-border-bottom.open .checklist-open-icon{transform:rotate(-180deg)}.checklist .checklist-open-icon{width:32px;height:32px;background:url(../../Public/Images/user-interface_pfeil_down.png) no-repeat;transition:transform 300ms cubic-bezier(0.4, 0, 0.2, 1)}.checklist .checklist-body{transition:height 300ms cubic-bezier(0.4, 0, 0.2, 1);position:relative;font-size:9px;line-height:14px;overflow-y:hidden}.checklist .checklist-content{transition:height 300ms cubic-bezier(0.4, 0, 0.2, 1);position:relative;padding-top:30px;padding-bottom:20px;padding-left:25px}.checklist .checklist-content p{transition:padding 300ms cubic-bezier(0.4, 0, 0.2, 1)}.checklist .checklist-content p:last-child{margin-bottom:0}.checklist .checked{position:relative}.checklist .checked:before{content:"";position:absolute;width:32px;height:32px;top:-12px;left:-28px;background:url(../../Public/Images/user-interface_btn_check.png) no-repeat}.checklist .active{position:relative;padding-left:15px}.checklist .active:before{content:"";position:absolute;width:32px;height:32px;top:-10px;left:-12px;background:url(../../Public/Images/user-interface_pfeil_active-todo.png) no-repeat;animation:active 1s linear infinite}@keyframes active{0%{left:-10px}50%{left:-14px}100%{left:-10px}}.thank-you{position:fixed;margin:auto;left:0;right:0;bottom:0;top:0;z-index:1000;max-width:100%;width:600px;font-size:9px;line-height:16px;display:flex;flex-direction:column;justify-content:center;opacity:0}.thank-you.show{opacity:1}.thank-you:before{position:fixed;content:"";width:100%;height:100%;top:0;left:0;z-index:999;background:rgba(76,133,179,.6)}.thank-you.hide{display:none}.thank-you .thank-you-content-wrapper{position:relative;z-index:1000}.thank-you .thank-you-center{display:flex;justify-content:space-between;height:calc(100% - 192px)}.thank-you .thank-you-content{position:relative;padding:112px 40px 40px;z-index:2}@media(min-width: 768px){.thank-you .thank-you-content{padding:112px 64px 64px}}.thank-you .thank-you-content b,.thank-you .thank-you-content strong{letter-spacing:1px}.thank-you .thank-you-content .thank-you-headline{font-size:14px;line-height:22px;margin-bottom:30px}.thank-you .thank-you-border{top:0;left:0;position:absolute;width:100%;height:100%}.thank-you .thank-you-border:before{content:"";position:absolute;background-color:#faf9f6;width:calc(100% - 64px);height:calc(100% - 32px);margin:auto;left:0;right:0;bottom:0;top:12px;z-index:-1}.thank-you .thank-you-header{display:flex}.thank-you .thank-you-header div{height:32px}.thank-you .thank-you-header div:first-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_links-oben.png) no-repeat}.thank-you .thank-you-header div:nth-child(2){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_oben-1.png) no-repeat}.thank-you .thank-you-header div:nth-child(3){width:auto;flex-grow:1;background:url(../../Public/Images/user-interface_papier-overlay_oben-2.png) repeat}.thank-you .thank-you-header div:nth-child(4){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_oben-3.png) no-repeat}.thank-you .thank-you-header div:last-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_rechts-oben.png) no-repeat}.thank-you .thank-you-elf-container{position:absolute;width:176px;height:176px;top:-80px;left:50%;transform:translateX(-50%);z-index:1}.thank-you .thank-you-elf-bg{width:100%;height:100%;background:url(../../Public/Images/user-interface_elfe-portait-rahmen.png) no-repeat;background-size:contain}.thank-you .thank-you-elf{position:relative;width:160px;height:160px;top:1px;left:8px;background:url(../../Public/Images/sprite-sheet_patrik_portrait.png) no-repeat}.thank-you .thank-you-left,.thank-you .thank-you-right{display:flex;flex-direction:column}.thank-you .thank-you-left div,.thank-you .thank-you-right div{height:32px;width:32px}.thank-you .thank-you-left div:first-child,.thank-you .thank-you-right div:first-child{height:100%;background:url(../../Public/Images/user-interface_papier-overlay_links-1.png) repeat}.thank-you .thank-you-left div:last-child,.thank-you .thank-you-right div:last-child{background:url(../../Public/Images/user-interface_papier-overlay_links-2.png) no-repeat}.thank-you .thank-you-right div:first-child{height:32px;background:url(../../Public/Images/user-interface_papier-overlay_rechts-1.png) no-repeat}.thank-you .thank-you-right div:last-child{height:100%;background:url(../../Public/Images/user-interface_papier-overlay_rechts-2.png) repeat}.thank-you .thank-you-footer{display:flex;align-items:flex-end}.thank-you .thank-you-footer div{height:32px}.thank-you .thank-you-footer div:first-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_links-unten.png) no-repeat}.thank-you .thank-you-footer div:nth-child(2){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_unten-1.png) no-repeat}.thank-you .thank-you-footer div:nth-child(3){width:auto;flex-grow:1;background:url(../../Public/Images/user-interface_papier-overlay_unten-2.png) repeat}.thank-you .thank-you-footer div:nth-child(4){width:64px;background:url(../../Public/Images/user-interface_papier-overlay_unten-3.png) no-repeat}.thank-you .thank-you-footer div:last-child{height:96px;width:64px;background:url(../../Public/Images/user-interface_papier-overlay_rechts-unten.png) no-repeat}.loading-banner{position:fixed;opacity:0;margin:auto;left:0;right:0;bottom:0;top:0;z-index:1030;max-width:100%;width:600px;font-size:12px;display:flex;flex-direction:column;justify-content:center}.loading-banner:before{position:fixed;content:"";width:100%;height:100%;top:0;left:0;z-index:999;background:rgba(76,133,179,.6)}.loading-banner img{position:relative;width:100%;height:auto;margin-bottom:124px;z-index:1000}.loading-banner.show{display:flex;opacity:1}.loading-banner.hide{display:none}.main-backdrop{transition:opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);position:fixed;content:"";width:100%;height:100%;top:0;left:0;z-index:999;background:rgba(76,133,179,.6)}.main-backdrop.blur~.scene-wrapper{filter:blur(30px)}.main-backdrop.hide{display:none}

/*# sourceMappingURL=style.css.map*/