@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-BoldItalic.ttf') format("truetype"), url('../fonts/NotoSans-ExtraBoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-ExtraBold.ttf') format("truetype"), url('../fonts/NotoSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosans;
  src: url('../fonts/NotoSans-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #33393c;
  --text-grey: #4f4f4f;
  --accent: #ea9d42;
  --light-orange: #fdf6f0;
  --white: white;
  --gainsboro: #dbdbdb;
  --light-grey: #f4f4f4;
  --primary-dark: #112f5f;
  --light-blue: #f2f3f9;
  --accessible-components-dark-grey: #9b9b9b;
  --accessible-components-white-smoke: whitesmoke;
  --accessible-components-dodger-blue: #1378d1;
  --highlight-outline: #f9d9a6;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  color: var(--text-grey);
  margin-bottom: 0;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: none;
}

ul {
  box-shadow: none;
  background-color: #f8f8f8;
  border-radius: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  position: static;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--accent);
  background-color: var(--light-orange);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.hide {
  display: none;
}

.text-style-link {
  text-decoration: underline;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.max-width-medium.angebotcontent {
  flex: 1;
  max-width: 25rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.max-width-xxsmall.margin-bottom {
  margin-bottom: 2rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-large.anbieter {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: 5%;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  overflow: visible;
}

.main-wrapper.anbieter {
  flex: 1;
  align-self: stretch;
}

.main-wrapper.anbieter.background-color-lightblue {
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 1rem;
  position: sticky;
  top: 3%;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: auto;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-top, .margin-top.margin-custom1, .margin-top.margin-huge, .margin-top.margin-small, .margin-top.margin-tiny, .margin-top.margin-custom3, .margin-top.margin-medium, .margin-top.margin-xxsmall, .margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.embed {
  z-index: 1;
  background-color: var(--white);
  height: 50px;
  margin-top: -50px;
  display: none;
  position: relative;
}

.margin-bottom {
  margin: 0 0 1rem;
}

.margin-bottom.margin-small {
  margin-bottom: 2rem;
}

.margin-bottom.margin-small.siegelcontainer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.margin-bottom.margin-small.overlap {
  z-index: 999;
  position: relative;
}

.margin-bottom.margin-xsmall {
  position: static;
}

.margin-bottom.margin-xsmall.productimagetop {
  height: 450px;
}

.margin-bottom.margin-xsmall.produktdatenblatt {
  display: flex;
}

.margin-bottom.margin-xsmall.anbieterhead {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.margin-bottom.margin-xsmall.vergleichproductimage {
  position: relative;
}

.margin-bottom.margin-xsmall.sticky {
  z-index: 999;
  background-color: var(--white);
  min-height: 5rem;
  position: sticky;
  top: 0;
}

.margin-bottom.margin-xsmall.siegelvergleich {
  align-self: stretch;
  margin-bottom: 0;
}

.margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-custom3, .margin-bottom.margin-custom1, .margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xxsmall.vergleichfakten {
  grid-column-gap: 1rem;
  justify-content: flex-start;
  display: flex;
}

.margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-medium {
  justify-content: space-between;
  align-items: center;
}

.margin-bottom.margin-xxlarge.produktvergleichheader {
  display: none;
}

.margin-bottom.sliderreviewtest {
  z-index: 999;
  display: none;
  position: absolute;
  inset: auto auto 2% 2%;
}

.margin-bottom.margin-small.align-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.margin-bottom.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin: 0 1rem 0 0;
}

.margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-large, .padding-vertical.padding-custom3, .padding-vertical.padding-medium, .padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge, .padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small, .padding-vertical.padding-xhuge {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-custom1, .padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-weight-medium {
  font-weight: 500;
}

.text-size-medium {
  font-size: 1.125rem;
}

.text-size-medium.text-weight-semibold {
  text-align: left;
}

.text-size-medium.text-weight-semibold.productname {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  line-height: 1.5;
}

.text-size-medium.platzierung {
  font-weight: 700;
}

.text-size-medium.h3style {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

.heading-medium {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.margin-top-auto {
  margin-top: auto;
}

.margin-top-auto.presivergleichbutton {
  flex: 1;
}

.text-style-quote {
  border-left: .1875rem solid var(--accent);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-style-h2.kommentare {
  color: var(--gainsboro);
}

.heading-style-h2.h2style {
  font-family: Montserrat, sans-serif;
}

.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .75rem .75rem 1rem;
  display: flex;
}

.rl-styleguide_callout-link-wrapper {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

.styleguide_grid-colours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.background-color-gray {
  background-color: var(--light-grey);
}

.heading-style-h6 {
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.heading-style-h6.is-tagline {
  font-size: .75rem;
  font-weight: 600;
}

.heading-style-h6.is-tagline.text-weight-medium {
  font-weight: 500;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
  display: block;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.heading-style-h5.h5style {
  font-family: Montserrat, sans-serif;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.heading-style-h1 {
  color: var(--black);
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-style-h1.text-weight-semibold {
  letter-spacing: -1px;
}

.form-checkbox-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form-checkbox-label {
  margin-bottom: 0;
}

.text-size-tiny {
  font-size: .75rem;
}

.text-size-tiny.anbieter {
  display: none;
}

.field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.button {
  border: 2px solid var(--accent);
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  transition: background-color .3s;
}

.button:hover {
  background-color: #d69343;
}

.button.is-link {
  color: var(--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: var(--white);
  background-color: #0000;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.is-icon.bestangebot {
  flex: 1;
  font-weight: 400;
}

.button.is-secondary {
  border-color: var(--primary-dark);
  background-color: var(--white);
  color: var(--black);
  transition: background-color .3s;
}

.button.is-secondary:hover {
  border-color: var(--primary-dark);
  background-color: var(--light-orange);
}

.button.is-secondary.is-alternate {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.button.is-secondary.is-icon.product {
  margin-top: auto;
}

.button.is-secondary.is-icon.is-small {
  color: var(--primary-dark);
  justify-content: flex-start;
}

.button.is-secondary.is-icon.vergleichsangebot {
  font-size: .9rem;
}

.button.is-secondary.hubbutton {
  flex: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-weight: 500;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-small.is-icon {
  justify-content: center;
}

.button.is-small.is-icon.align-left {
  justify-content: flex-start;
}

.button.is-alternate {
  background-color: var(--white);
  color: #000;
}

.text-weight-normal {
  font-weight: 400;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

.heading-style-h4.externtests {
  font-weight: 600;
}

.heading-style-h4.text-weight-normal {
  font-weight: 400;
}

.text-style-italic {
  font-style: italic;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.form-radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

.text-weight-light {
  font-weight: 300;
}

.rl-styleguide_label {
  color: var(--white);
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  background-color: #be4aa5;
}

.text-size-regular {
  color: var(--text-grey);
  font-size: 1rem;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-align-right {
  text-align: right;
}

.text-weight-bold {
  font-weight: 700;
}

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-style-h3.text-color-white.h3style {
  font-family: Montserrat, sans-serif;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.form-input {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  border-radius: 5px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.is-select-input {
  background-image: none;
}

.rl-styleguide_paste-text {
  color: #00000080;
  text-align: center;
  border: 1px dashed #00000026;
  padding: 1rem;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.rl-styleguide_color {
  padding-bottom: 8rem;
}

.rl-styleguide_color.is-black {
  background-color: var(--black);
}

.rl-styleguide_color.is-gray {
  background-color: var(--light-grey);
}

.rl-styleguide_color.is-white {
  background-color: var(--white);
}

.rl-styleguide_color.is-graytrue25 {
  background-color: #fcfcfc;
}

.rl-styleguide_color.is-graytrue50 {
  background-color: #fafafa;
}

.rl-styleguide_color.is-graytrue100 {
  background-color: #f5f5f5;
}

.rl-styleguide_color.is-graytrue200 {
  background-color: #e5e5e5;
}

.rl-styleguide_color.is-graytrue300 {
  background-color: #d6d6d6;
}

.rl-styleguide_color.is-graytrue400 {
  background-color: #a3a3a3;
}

.rl-styleguide_color.is-graytrue500 {
  background-color: #737373;
}

.rl-styleguide_color.is-graytrue600 {
  background-color: #525252;
}

.rl-styleguide_color.is-graytrue700 {
  background-color: #424242;
}

.rl-styleguide_color.is-graytrue800 {
  background-color: #292929;
}

.rl-styleguide_color.is-graytrue900 {
  background-color: #141414;
}

.rl-styleguide_color.is-orange {
  background-color: var(--accent);
}

.rl-styleguide_color.is-blue {
  background-color: var(--primary-dark);
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.productctabuttonbox {
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.button-group.vergleich {
  grid-column-gap: .2rem;
  grid-row-gap: 0rem;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.text-color-white {
  color: var(--white);
}

.background-color-white {
  background-color: var(--white);
}

.text-weight-semibold {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-style-muted {
  opacity: .6;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-align-left {
  text-align: left;
}

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

.text-color-black {
  color: var(--black);
}

.icon-embed-xxsmall {
  color: var(--primary-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  line-height: 1;
  display: block;
}

.icon-embed-xxsmall.rotate {
  transform: rotate(180deg);
}

.icon-embed-xsmall {
  color: #ea9d42b0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-embed-xsmall.is-orange {
  color: var(--accent);
  align-items: center;
}

.icon-height-xxsmall {
  height: 1rem;
}

.background-color-black {
  background-color: var(--black);
  color: var(--white);
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

.form-radio-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  display: flex;
}

.icon-height-custom1 {
  height: 1.25rem;
}

.text-align-center {
  text-align: center;
}

.text-size-small {
  font-size: .875rem;
}

.text-size-small.text-weight-semibold.text-inline {
  display: inline;
}

.text-size-small.text-align-right.text-rich-text.column {
  text-align: left;
}

.text-size-small.angebotsinfo {
  text-align: right;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-field-wrapper {
  position: relative;
}

.icon-height-small {
  height: 2rem;
}

.icon-height-large {
  height: 5rem;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 800;
}

.text-rich-text blockquote {
  background-color: var(--light-orange);
  border-left-width: 3px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 2;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.text-rich-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.text-rich-text h5 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.text-rich-text a {
  border-bottom: 2px solid var(--accent);
  color: var(--black);
  text-decoration: none;
}

.text-rich-text a:hover {
  color: #885213;
  font-weight: 500;
}

.text-rich-text figcaption {
  border-left: 2px solid var(--accent);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.text-rich-text img {
  border-radius: 10px;
}

.text-rich-text.summary {
  background-color: var(--light-orange);
  background-color: var(--light-blue);
  border-radius: 10px;
  margin-bottom: 2rem;
  padding: 1rem;
}

.text-rich-text li {
  border-bottom: 2px none var(--accent);
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 1rem;
  padding-left: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  list-style-type: decimal;
}

.text-rich-text ol {
  border: 2px solid var(--accent);
  background-color: var(--light-orange);
  border-radius: 1rem;
  flex-direction: column;
  padding: 2.5rem;
  list-style-type: decimal;
  display: block;
}

.text-rich-text ul {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 2px solid var(--accent);
  background-color: var(--light-orange);
  box-shadow: none;
  flex-direction: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  padding: 2.5rem 1rem 2.5rem 2rem;
  list-style-type: disc;
  display: block;
}

.icon-height-medium {
  height: 3rem;
}

.form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.text-size-large {
  font-size: 1.25rem;
}

.text-size-large.text-weight-bold {
  font-size: 1.35rem;
}

.text-size-large.text-weight-semibold {
  text-align: left;
}

.icon-height-xsmall {
  height: 1.5rem;
}

.rl-styleguide_spacing-all {
  display: none;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-section-small.anbieter {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.padding-section-small.custom, .padding-section-small.custom2 {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-section-small.xtrasmall {
  padding-top: 2rem;
}

.padding-section-small.custmpadding {
  padding-top: 1rem;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.padding-global.datenblattmodal {
  padding-left: 0%;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-section-medium.padding-custom4 {
  padding-top: 1.5rem;
}

.padding-section-medium.relative {
  position: relative;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.padding-section-large.question {
  padding-top: 15rem;
}

.padding-section-large.rechner {
  padding-top: 4rem;
}

.padding-section-large.pvmagazin {
  padding-top: 2rem;
}

.success-message {
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 1.5rem;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.video-overlay-layer {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.section_header38 {
  display: block;
}

.header38_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.header38_content {
  max-width: 35rem;
  margin-left: 5vw;
  margin-right: 5rem;
}

.header38_image-wrapper {
  height: 80vh;
  min-height: 60rem;
  position: relative;
  overflow: hidden;
}

.header38_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 60rem;
  position: absolute;
  inset: 0%;
}

.navbar10_component {
  border-bottom: 1px none var(--black);
  background-color: var(--white);
  align-items: center;
  width: 100vw;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar10_component.shadow-medium {
  width: 100%;
  position: sticky;
}

.navbar10_component.shadow-medium.product {
  position: relative;
}

.navbar10_component.shadow-medium.vergleich {
  background-color: var(--primary-dark);
  color: var(--black);
  background-image: linear-gradient(#00000080, #00000080);
  position: relative;
}

.navbar10_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar10_logo-link {
  padding-left: 0;
}

.navbar10_logo {
  object-fit: contain;
  width: 100%;
  max-width: 10rem;
  height: 100%;
  max-height: 4rem;
}

.navbar10_menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.navbar10_menu.vergleich {
  color: var(--black);
}

.navbar10_menu-left {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.navbar10_menu-dropdown {
  position: static;
}

.navbar10_dropdown-toggle {
  padding: 1.5rem 2.5rem 1.5rem 1rem;
}

.dropdown-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.dropdown-icon.uberunstoggle {
  display: none;
}

.dropdown-icon.no-margin-right {
  margin-right: 1rem;
}

.navbar10_dropdown-list.w--open {
  background-color: var(--white);
  border: 1px #000;
  width: 100vw;
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.navbar10_dropdown-list.shadow-medium {
  background-color: var(--light-blue);
  min-height: 40rem;
}

.navbar10_dropdown-content {
  width: 100%;
  display: flex;
}

.navbar10_dropdown-content.container-large {
  height: 100%;
  min-height: 30rem;
}

.navbar10_dropdown-content-left {
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 15rem;
  padding: 2rem 0;
  display: flex;
}

.navbar10_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  grid-template-rows: max-content max-content max-content max-content max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar10_dropdown-link {
  grid-column-gap: 8px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.navbar10_dropdown-content-right {
  background-color: var(--white);
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  position: relative;
}

.navbar10_dropdown-content-right.margin-top.margin-medium {
  border-top-left-radius: 0;
  padding-top: 1.5rem;
}

.navbar10_blog-list-wrapper {
  width: 100%;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

.navbar10_blog-list {
  grid-column-gap: 3rem;
  grid-row-gap: .5rem;
  background-color: var(--white);
  border-radius: 10px;
  grid-template-rows: max-content;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: max-content;
  width: 100%;
  min-width: 100%;
  padding: 1rem 0;
  display: grid;
  position: static;
  inset: 0%;
}

.navbar10_blog-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: .5rem;
  padding-bottom: .5rem;
  text-decoration: none;
  display: grid;
}

.navbar10_blog-item-content {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.navbar10_menu-button {
  padding: 0;
}

.section_cta50 {
  position: relative;
}

.section_cta50.home {
  height: 15rem;
  position: relative;
  top: -25rem;
}

.cta50_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.cta50_component.shadow-xlarge {
  grid-template-columns: 1fr;
}

.cta50_card {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  background-color: var(--primary-dark);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 3rem;
  display: grid;
  position: relative;
}

.cta50_content {
  flex: 1;
}

.signup-form-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.success-text {
  font-weight: 600;
}

.error-text {
  color: #e23939;
}

.cta50_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.layout350_component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  position: relative;
}

.layout350_content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.layout350_tabs-menu {
  z-index: 1;
  grid-column-gap: .25rem;
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: 10px;
  align-items: center;
  padding: .25rem;
  display: flex;
  position: sticky;
  top: 6rem;
}

.layout350_tabs-menu.shadow-medium {
  border-style: none;
  padding: 0;
  overflow: hidden;
}

.layout350_tab-link {
  color: var(--black);
  text-align: center;
  background-color: #0000;
  border: 1px solid #0000;
  flex: none;
  padding: .75rem 1rem;
  transition: background-color .5s;
}

.layout350_tab-link.w--current {
  border: 0px none var(--black);
  background-color: var(--accent);
  color: var(--white);
}

.layout350_content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
}

.layout350_mobile-image-wrapper {
  display: none;
}

.layout350_desktop-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.layout350_image {
  width: 100%;
  position: absolute;
}

.layout350_image.is-image2, .layout350_image.is-image3, .layout350_image.is-image4 {
  display: block;
}

.cta40_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.cta40_component.richtext {
  margin-bottom: 4rem;
}

.cta40_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 1px none var(--black);
  background-color: var(--primary-dark);
  color: var(--white);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.cta40_card.shadow-xlarge {
  background-color: var(--white);
  color: var(--black);
}

.cta40_card-content {
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  display: flex;
}

.cta40_form-block {
  background-color: #0000;
  max-width: 30rem;
  margin-bottom: 0;
}

.layout294_component {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.layout294_item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section_blog68 {
  background-color: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.section_blog68.product {
  position: static;
}

.blog68_heading-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: end;
  display: grid;
}

.blog68_heading-wrapper.product {
  grid-template-columns: 2fr minmax(max-content, 1fr);
}

.blog68_heading {
  flex: 1;
}

.blog68_button-row {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.blog68_button-row.show-mobile-landscape {
  display: none;
}

.blog68_component {
  background-color: #0000;
  height: 100%;
  padding-bottom: 8rem;
  display: block;
  position: relative;
}

.blog68_mask {
  width: 33.33%;
  height: 100%;
  overflow: visible;
}

.blog68_slide {
  height: 43rem;
  min-height: 100%;
  padding-right: 2rem;
}

.blog68_item {
  border: 1px none var(--black);
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

.blog68_item.shadow-medium {
  height: 100%;
  display: block;
}

.blog68_item-link {
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog68_image-wrapper {
  background-image: url('../images/Solar1de78_Icon_BlackTransparentBG.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 250px;
  background-attachment: scroll;
  width: 100%;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.blog68_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog68_item-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.blog68_meta-wrapper {
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.blog68_category {
  background-color: var(--light-orange);
  border-radius: 5px;
  margin-right: 1rem;
  padding: .25rem .5rem;
  display: flex;
}

.blog68_title-wrapper {
  margin-bottom: .5rem;
}

.blog68_button-wrapper {
  margin-top: 1.5rem;
  display: flex;
}

.slide68_arrow {
  border: 2px solid var(--primary-dark);
  background-color: var(--white);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.slide68_arrow.left {
  right: 4rem;
}

.blog68_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.section_cta12 {
  position: relative;
}

.cta12_component {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  display: grid;
}

.cta12_content {
  flex: 1;
}

.cta12_form-block {
  max-width: 30rem;
  margin-bottom: 0;
}

.cta12_background-video-wrapper {
  z-index: -1;
  background-color: var(--primary-dark);
  position: absolute;
  inset: 0%;
}

.footer5_component {
  background-color: var(--black);
  color: var(--white);
}

.footer5_top-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}

.footer5_logo-link {
  padding-left: 0;
}

.footer5_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer5_column-heading {
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer5_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
  display: inline-block;
}

.line-divider {
  background-color: var(--gainsboro);
  width: 100%;
  height: 1px;
}

.footer5_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer5_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.footer5_credit-text {
  font-size: .875rem;
}

.footer5_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.footer5_social-icons {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: grid;
}

.footer5_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.section_product-header7 {
  position: relative;
  overflow: visible;
}

.section_product-header7.hubremove {
  display: none;
}

.product-header7_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-bottom: 3rem;
  display: grid;
}

.product-header7_gallery-slider {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 5rem;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: sticky;
  top: 10vh;
  bottom: 10vh;
}

.product-header7_slider {
  border-radius: 10px;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.product-header7_slider.shadow-medium {
  height: 45vh;
}

.product-header7_slide {
  height: 100%;
}

.product-header7_image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-header7_main-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.product-header7_arrow-left {
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: 0% auto 0% 1rem;
}

.product-header7_arrow-left.hide-tablet {
  border-width: 2px;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  border-radius: 10px;
  inset: auto 6rem 2rem auto;
}

.product-header7_arrow {
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: 0% 1rem 0% auto;
}

.product-header7_arrow.hide-tablet {
  border-width: 2px;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  border-radius: 10px;
  top: auto;
  bottom: 2rem;
  right: 2rem;
}

.product-header7_slide-nav {
  height: 1.75rem;
  margin-bottom: 1rem;
  font-size: .5rem;
}

.product-header7_breadcrumb {
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: .875rem;
  display: flex;
}

.breadcrumb-link {
  color: var(--black);
  text-decoration: none;
}

.breadcrumb-link.w--current {
  font-weight: 600;
}

.breadcrumb-divider {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  display: flex;
}

.section_logo2 {
  background-color: var(--light-blue);
  display: none;
}

.section_logo2.background-color-white {
  background-color: #fff;
}

.section_logo2.background-color-white.margin-top.margin-large, .section_logo2.hubremove {
  display: none;
}

.logo2_component {
  grid-column-gap: 4rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.logo2_content-left {
  max-width: 20rem;
}

.logo2_logo-list {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: grid;
}

.logo2_wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.logo2_logo {
  max-height: 3.5rem;
}

.blogpost5_header {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.blogpost5_title-wrapper {
  flex-direction: column;
}

.blogpost5_meta-wrapper {
  margin-bottom: 1.5rem;
}

.blogpost5_category-link {
  background-color: var(--light-orange);
  border-radius: 8px;
  margin-right: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blogpost5_category-link.w--current {
  background-color: var(--light-orange);
  border-bottom: 2px #000;
  border-radius: 5px;
}

.blogpost5_date-wrapper {
  align-items: center;
  margin-top: .25rem;
  display: flex;
}

.blogpost5_date {
  margin-left: .25rem;
  font-size: .875rem;
}

.blogpost5_image-wrapper {
  border-radius: 10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.blogpost5_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blogpost5_content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.blogpost5_content-left {
  max-width: 20rem;
  position: sticky;
  top: 5rem;
}

.blogpost5_author-wrapper {
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  display: flex;
}

.blogpost5_author-image-wrapper {
  margin-right: 1rem;
}

.blogpost5_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.horizontal_divider {
  border-bottom: 1px solid var(--gainsboro);
  border-left: 1px solid var(--gainsboro);
  background-color: var(--gainsboro);
  width: 100%;
  height: 1px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.horizontal_divider.small {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.blogpost5_form {
  margin-bottom: 0;
}

.blogpost5_form-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.blogpost5_share-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
}

.blogpost5_share {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-items: start;
  display: grid;
}

.blogpost5_social-link {
  background-color: var(--light-orange);
  color: var(--primary-dark);
  border-radius: 20px;
  padding: .25rem;
}

.blogpost3_social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.blogpost5_content {
  margin-bottom: 2rem;
}

.layout247_component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.layout247_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.layout247_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.layout247_item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.layout247_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 0;
}

.header76_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.header76_content-left {
  max-width: 40rem;
  margin-left: 5vw;
  margin-right: 5rem;
}

.header76_content-right {
  grid-column-gap: 1rem;
  align-items: center;
  height: 100vh;
  padding-right: 5vw;
  overflow: hidden;
}

.header76_images-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.header76_image-list-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  column-gap: 1.5rem;
  width: 100%;
  height: 100%;
  margin-top: -120%;
  display: grid;
}

.header76_image-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.header76_image-wrapper {
  width: 100%;
  padding-top: 120%;
  position: relative;
}

.header76_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header76_image-list-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.section_team8 {
  background-color: var(--light-blue);
  position: relative;
}

.team8_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.team8_item {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team8_image-wrapper {
  border-radius: 10px;
  width: 100%;
  padding-top: 0%;
  position: relative;
  overflow: hidden;
}

.team8_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  color: var(--primary-dark);
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: flex-start;
  margin-top: 1.5rem;
  display: grid;
}

.social-link.absolute {
  color: var(--white);
  position: absolute;
  inset: auto 1rem 1rem auto;
}

.section_contact7 {
  background-color: var(--light-blue);
}

.contact7_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.contact7_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.contact7_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact7_image-wrapper {
  padding-top: 100%;
  position: relative;
}

.contact7_image {
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.section_career27 {
  background-color: var(--light-blue);
}

.career27_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: relative;
}

.career27_list {
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.career27_item {
  border: 1px none var(--black);
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
}

.career27_title-wrapper {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.career27_department-label {
  background-color: var(--light-orange);
  border-radius: 5px;
  margin-left: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.career27_department-label.w--current {
  border-bottom: 2px solid #000;
}

.career27_job-details-wrapper {
  display: flex;
}

.career27_detail-wrapper {
  align-items: center;
  margin-right: 1.5rem;
  display: flex;
}

.career27_icon-wrapper {
  margin-right: .75rem;
}

.career27_image-wrapper {
  z-index: 0;
  margin-top: 0;
  margin-bottom: 370px;
  position: sticky;
  top: 100px;
  bottom: auto;
}

.navbar11_dropdown-toggle {
  height: 100%;
  padding: 1.5rem 2.5rem 1.5rem 1rem;
  display: inline-block;
}

.navbar11_dropdown-toggle.background-color-lightorange {
  padding-left: 2rem;
}

.navbar11_dropdown-list.w--open {
  border: 1px none var(--black);
  background-color: var(--white);
  border-radius: 10px;
  width: 20rem;
  padding: 1.5rem;
  left: -125%;
}

.navbar11_dropdown-list.background-color-lightblue {
  background-color: var(--light-blue);
}

.navbar11_dropdown-list.background-color-lightblue.shadow-medium.w--open {
  z-index: 9999;
}

.navbar11_dropdown-list.background-color-lightblue.shadow-medium.uberunsdrop {
  display: none;
}

.navbar11_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar11_dropdown-link-list.hide-desktop {
  display: none;
}

.avatar_dropdown_more-info {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: .25rem;
  padding-bottom: .25rem;
  text-decoration: none;
  display: flex;
}

.avatar_dropdown_more-info.authors {
  flex-direction: column;
  align-items: flex-start;
}

.navbar11_icon-wrapper {
  background-color: #ea9d424d;
  border-radius: 10px;
  flex: none;
  padding: .5rem;
}

.navbar11_text-wrapper {
  grid-column-gap: .1rem;
  grid-row-gap: .1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.navbar6_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar6_menu-dropdown {
  position: static;
}

.navbar6_dropdown-toggle {
  padding: 1.5rem 2.5rem 1.5rem 1rem;
}

.navbar6_dropdown-list.w--open {
  border-bottom: 0px none var(--black);
  background-color: var(--white);
  width: 100vw;
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.navbar6_dropdown-content {
  width: 100%;
  display: flex;
}

.navbar6_dropdown-content-left {
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 2rem 2rem 2rem 0;
  display: grid;
}

.navbar6_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  border-radius: 10px;
  grid-template-rows: max-content max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.navbar6_dropdown-link-list.background-color-lightblue.shadow-small {
  transition: transform .3s;
}

.navbar6_dropdown-link-list.background-color-lightblue.shadow-small:hover {
  transform: translate(-3px, -3px);
}

.navbar6_dropdown-content-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: max-content auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 20rem;
  padding: 2rem;
  position: relative;
}

.navbar6_dropdown-content-wrapper {
  grid-template-rows: auto max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar6_dropdown-content-wrapper.z-index-1 {
  grid-row-gap: 1rem;
}

.navbar6_dropdown-blog-item-wrapper {
  flex-direction: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
}

.navbar6_blog-item {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  text-decoration: none;
  display: flex;
}

.navbar6_blog-image-wrapper {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.navbar6_blog-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.navbar6_blog-content {
  flex-direction: column;
  justify-content: flex-start;
  max-width: 18rem;
  display: flex;
}

.navbar6_dropdown-background-layer {
  background-color: var(--light-grey);
  min-width: 100vw;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.body {
  font-family: Notosans, sans-serif;
}

.rl-styleguide_color-sample-list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: auto;
  grid-auto-flow: row;
}

.background-color-blue {
  background-color: var(--primary-dark);
}

.background-color-lightblue {
  background-color: var(--light-blue);
}

.background-color-lightorange {
  background-color: var(--light-orange);
}

.list1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.list1_component.padding-medium {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.list1_component.siegel {
  align-content: center;
}

.list1_item {
  display: flex;
}

.layout65_item-icon-wrapper {
  color: var(--accent);
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.layout65_item-icon-wrapper.siegel {
  align-self: center;
}

.image-wrapper_image {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-wrapper_image.battery {
  object-position: 0% 50%;
  height: auto;
}

.layout294_icon-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 10px;
  flex-direction: row;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  display: flex;
}

.icon-wrapper {
  background-color: var(--light-orange);
  border-radius: 10px;
  padding: .5rem;
}

.icon-wrapper.shadow-small {
  color: var(--primary-dark);
}

.sun-blog {
  z-index: 0;
  color: var(--light-orange);
  width: 50%;
  position: absolute;
  inset: 5% 5% auto auto;
}

.sun-blog.productsun {
  width: 35%;
  top: 5%;
  bottom: auto;
  right: 5%;
}

.sun-product {
  z-index: 0;
  color: var(--light-orange);
  width: 120%;
  position: absolute;
  inset: -5% -8% auto auto;
}

.blogpost5_toc-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: block;
}

.blogpost5_toc-wrapper.sticky {
  position: sticky;
  top: 5rem;
}

.toc-list_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: .25rem;
  padding-bottom: .25rem;
  display: grid;
}

.fs-toc_link-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  display: grid;
  overflow: hidden;
}

.fs-toc_link-wrapper {
  color: #f5f5f5;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  overflow: hidden;
}

.fs-toc_link-wrapper.is-h2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px #dbdbdb;
}

.fs-toc_link-wrapper.is-h3 {
  border-left: 1px solid var(--gainsboro);
  margin-left: 1.5rem;
  padding-left: 1.5rem;
}

.fs-toc_link-wrapper.is-h4 {
  border-left: 1px solid #dbdbdb;
  padding-left: 1.5rem;
}

.fs-toc_link-wrapper.is-h5, .fs-toc_link-wrapper.is-h6 {
  border-left: 1px solid #dbdbdb;
  padding-left: .75rem;
  display: none;
}

.fs-toc_link {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--accent);
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: .25rem;
  margin-bottom: .25rem;
  font-size: .875rem;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.fs-toc_link.w--current {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 700;
}

.fs-toc_link.is-h3 {
  color: var(--accent);
  letter-spacing: .025rem;
  font-size: .875rem;
}

.fs-toc_link.is-h3.w--current {
  color: var(--primary-dark);
}

.fs-toc_link.is-h4 {
  color: var(--accent);
  font-size: .875rem;
}

.fs-toc_link.is-h4.w--current {
  color: var(--primary-dark);
}

.fs-toc_link.is-h5 {
  color: var(--accent);
  font-size: .875rem;
}

.fs-toc_link.is-h5.w--current {
  color: var(--primary-dark);
}

.fs-toc_link.is-h6 {
  color: var(--accent);
  font-size: .875rem;
}

.fs-toc_link.is-h6.w--current {
  color: var(--primary-dark);
}

.fs-toc_h-trigger {
  display: none;
}

.text-block {
  color: var(--black);
}

.text-block.toctext {
  font-size: 1.15rem;
}

.text-block.toctext.h3 {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-block-2 {
  color: var(--black);
}

.text-block-2.toctext.h4 {
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.3;
}

.text-block-3, .text-block-4, .text-block-5 {
  color: var(--black);
}

.section_product6 {
  display: block;
  position: relative;
}

.section_product6.hubremove {
  display: none;
}

.product6_heading-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: end;
  display: grid;
}

.product6_heading {
  flex: 1;
}

.product6_button-row {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.product6_component {
  background-color: #0000;
  height: auto;
  padding-bottom: 6rem;
  position: relative;
}

.product6_mask {
  width: 33%;
  height: auto;
  overflow: visible;
}

.product6_slide {
  padding-right: 2rem;
}

.product6_item {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
  position: relative;
}

.product6_image-link {
  display: block;
}

.product6_text-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 1fr;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start stretch;
  place-items: start stretch;
  min-height: auto;
  text-decoration: none;
  display: grid;
}

.product6_left {
  margin-right: auto;
}

.product6_slide-nav {
  z-index: 0;
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.image-wrapper-1-1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.product6_subtitle {
  margin-right: 1rem;
}

.product6_content-wrapper_numbers {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  text-decoration: none;
  display: grid;
}

.product6_content-wrapper_numbers.produktdatenblatt {
  border-right: 1px solid var(--gainsboro);
  align-content: start;
  justify-items: center;
  width: 80%;
  padding-left: 20px;
  padding-right: 20px;
}

.product6_content-wrapper_numbers.produktdatenblatt.last {
  border-right-style: none;
}

.product6_content-wrapper_numbers.siegel {
  min-height: 15rem;
}

.product6_content-wrapper_numbers.topnumbersheight {
  min-height: 18rem;
}

.product6_number-table {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  text-decoration: none;
  display: grid;
}

.product6_number-table.logos {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  height: 150px;
}

.product6_number-table.datenblatt {
  margin-top: 20px;
}

.product6_number-table.siegel {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.section_header54 {
  position: relative;
}

.header54_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#112f5fcc, #112f5fcc);
  position: absolute;
  inset: 0%;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #0000;
  background-image: linear-gradient(100deg, var(--primary-dark) 13%, #050e1c17 70%, transparent);
  position: absolute;
  inset: 0%;
}

.header54_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section_faq11 {
  background-color: var(--light-blue);
}

.faq11_component {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.faq11_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.faq11_accordion {
  border: 1px none var(--black);
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq11_question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.faq11_icon {
  color: var(--accent);
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
}

.faq11_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.layout350_item-wrapper {
  padding-bottom: 6rem;
  padding-left: 2rem;
  position: relative;
}

.numbers-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 10px;
  grid-template-rows: auto auto auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 20rem;
  display: grid;
  position: absolute;
  inset: auto auto 0% 0%;
}

.numbers-wrapper.padding-xsmall {
  justify-items: start;
}

.numbers-wrapper.padding-xsmall.shadow-medium {
  grid-template-columns: .5fr 1fr .5fr;
}

.progress-bar_wrapper {
  background-color: var(--gainsboro);
  border-radius: 5px;
  width: 100%;
  height: 8px;
  position: relative;
  overflow: hidden;
}

.progress-bar_line {
  background-color: var(--accent);
  width: 20%;
  min-width: 20%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.progress-bar_line._50 {
  width: 50%;
  min-width: 50%;
}

.progress-bar_line._60 {
  width: 60%;
}

.stecker {
  color: var(--accent);
  border: 1px #000;
  width: 4rem;
  height: 4rem;
  position: absolute;
  inset: -2px 5% auto auto;
}

.cable1 {
  width: 70%;
  position: absolute;
  inset: auto auto 0% -12.5%;
}

.cable2 {
  width: 49%;
  position: absolute;
  inset: auto auto 26% -4.4%;
}

.sun-home {
  z-index: 0;
  color: var(--light-orange);
  width: 100%;
  position: absolute;
  inset: 5% 5% auto auto;
}

.house-cover {
  min-width: 120%;
  position: absolute;
  inset: 22% 0% 0% -10%;
}

.section_header81 {
  display: block;
  overflow: visible;
}

.header81_component {
  height: 300vh;
  position: relative;
}

.header81_content-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100vh;
  display: grid;
  position: sticky;
  top: 0;
}

.header81_content-left {
  flex: none;
  max-width: 40rem;
  margin-left: 5vw;
  margin-right: 5rem;
  position: relative;
}

.header81_content-right {
  flex: none;
  width: 50%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.header81_image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.header81_image {
  object-fit: cover;
  object-position: 0% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header81_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.header_logos {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.header_logo-listt {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: grid;
}

.header-image_wrapper_roof {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  object-fit: fill;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: auto auto 160px 700px;
}

.header_numbers-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 10px;
  grid-template-rows: auto auto auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 20rem;
  display: grid;
  position: static;
  inset: auto auto 0% 0%;
}

.header_numbers-wrapper.padding-xsmall {
  justify-items: start;
}

.header-icon_wrapper {
  background-color: var(--white);
}

.header-icon_wrapper.padding-tiny {
  border-radius: 10px;
}

.header83_component {
  height: 300vh;
  position: relative;
}

.header83_content-wrapper {
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.header83_content {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.header83_background-images {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.header83_images-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
  transform: scale(3.2);
}

.header83_image-wrapper {
  position: relative;
  overflow: hidden;
}

.header83_image {
  object-fit: cover;
  object-position: 100% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header83_image.centerfold {
  object-fit: cover;
  object-position: 30% 100%;
  inset: 0% 0 auto 0%;
}

.header83_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.hero-content, .cta50_buttons-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-wrapper-4-3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.tab-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #0000;
  align-items: center;
  display: flex;
}

.tab-link.w--current {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 2px none var(--primary-dark);
  background-color: var(--white);
  border-radius: 10px 0 0 10px;
  align-items: center;
  display: flex;
}

.section_blog6 {
  background-color: var(--light-blue);
}

.blog6_featured-item {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  margin-bottom: 4rem;
  display: grid;
}

.blog6_featured-image-link {
  width: 100%;
}

.blog6_featured-image-wrapper {
  width: 100%;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.blog6_featured-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog6_featured-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.blog6_meta-wrapper {
  margin-bottom: 1rem;
}

.blog6_category-link {
  background-color: var(--light-orange);
  border-radius: 5px;
  margin-right: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
}

.blog6_category-link.w--current {
  border-bottom: 2px solid #000;
}

.blog6_featured-title-link {
  margin-bottom: 1rem;
  text-decoration: none;
}

.blog6_button-wrapper {
  margin-top: 1.5rem;
  display: flex;
}

.blog6_category-menu {
  align-items: center;
  width: 100%;
  display: flex;
}

.blog6_menu-link {
  white-space: nowrap;
  border: 1px solid #0000;
  flex: none;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: background-color .2s;
}

.blog6_menu-link.w--current {
  border: 1px solid var(--black);
}

.blog6_menu-link.current.w--current {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--white);
  border-radius: 10px;
}

.blog6_menu-link.viewall {
  border-style: dashed;
  border-color: var(--black);
  border-radius: 10px;
}

.blog6_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.category-links {
  flex-direction: row;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.collection-list-wrapper {
  display: block;
}

.product_price-wrapper {
  grid-column-gap: .15rem;
  grid-row-gap: .5rem;
  text-align: right;
  justify-content: flex-end;
  display: flex;
}

.product_price-wrapper.uvp {
  white-space: nowrap;
}

.hersteller_logo-link {
  max-height: 4rem;
  margin-top: 10px;
  padding-left: 0;
  position: static;
}

.hersteller_logo-link.datenblatt {
  text-align: right;
  margin-top: 0;
}

.collection-item {
  margin-bottom: auto;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: auto;
  margin-bottom: auto;
  display: grid;
}

.collection-list-wrapper-2 {
  width: 100%;
  height: auto;
}

.product-top {
  z-index: 1;
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  min-height: 10rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  position: sticky;
  top: 4.5rem;
  left: 0;
  right: 0;
}

.product6_arrow-sticky {
  z-index: 2;
  border: 2px solid var(--primary-dark);
  background-color: var(--white);
  color: var(--primary-dark);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  position: sticky;
  inset: 20rem auto auto;
}

.product6_arrow-wrapper {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-top: 20%;
  display: flex;
  position: absolute;
  top: 0;
  left: -1rem;
  right: -1rem;
}

.blogpost5_content-left-mobile {
  max-width: 20rem;
  display: none;
  position: sticky;
  top: 5rem;
}

.collection-item-2, .collection-list-2 {
  height: 100%;
}

.change-filters-here {
  height: 100%;
  display: none;
}

.image-2 {
  object-fit: fill;
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}

.layout253_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.layout253_content {
  flex-direction: column;
  align-items: center;
}

.layout253_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  width: 100%;
}

.layout253_item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product6_badge {
  background-color: var(--accent);
  border-radius: 100px;
  margin-top: 1rem;
  margin-right: 1rem;
  padding: .25rem .75rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.banner2_component {
  z-index: 999;
  width: 100%;
  position: sticky;
  top: 5rem;
}

.banner2_component.margin-vertical.margin-medium.test {
  margin-top: 1rem;
}

.banner2_wrapper {
  background-color: var(--white);
  border: 1px solid #000;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1rem;
  display: flex;
  position: relative;
}

.banner2_wrapper.shadow-medium {
  border-style: none;
  border-radius: 10px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.banner2_wrapper.shadow-medium.test {
  width: 100%;
}

.banner2_content {
  flex: 1;
  align-items: center;
  margin-right: 2rem;
  display: flex;
}

.banner2_icon-wrapper {
  flex: none;
  margin-right: 1rem;
}

.banner2_close-button {
  margin-left: 1rem;
}

.layout253_icon-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 10px;
  flex-direction: row;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  display: flex;
}

.career27_component-wrapper {
  position: relative;
}

.blogpost3_content {
  margin-bottom: 4rem;
  position: relative;
}

.blogpost3_content-bottom {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.blogpost3_tag-list-wrapper {
  width: 50%;
}

.toc-list_component-centered {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 70%;
  margin-bottom: 2rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.toc-floating-wrapper {
  background-color: var(--white);
  border-radius: 10px;
  width: 20rem;
  max-width: 20rem;
  padding: 1rem;
  position: absolute;
  inset: 0% auto auto -46%;
}

.toc-sticky-wrapper {
  display: none;
  position: sticky;
  top: 7rem;
}

.floating-list-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--white);
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  width: 20rem;
  padding: 1rem;
  display: grid;
  position: absolute;
  inset: auto auto 0% 0%;
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.floating-list-wrapper.last-item {
  width: 23rem;
  padding: 1.5rem;
  bottom: 5%;
}

.list2_item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta41_card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px none var(--black);
  background-color: var(--white);
  color: var(--black);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding: 2rem;
  display: grid;
}

.cta41_card.shadow-small.testcta {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding: 1rem 1.5rem;
}

.highlight-section-orange {
  background-color: var(--light-orange);
  padding: 1rem;
  font-size: 1.25rem;
  display: block;
}

.highlight-section-blue {
  background-color: var(--light-blue);
  padding: 1rem;
  font-size: 1.25rem;
  display: block;
}

.blog-content-bottom {
  display: block;
}

.arrow-wrapper {
  opacity: .8;
  justify-content: flex-end;
  align-items: center;
  width: 70px;
  display: flex;
  position: relative;
}

.blog39_component {
  flex-direction: column;
  align-items: center;
}

.blog39_list-wrapper.anbietercms {
  margin-bottom: 40px;
}

.blog39_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.blog39_list.anbieter {
  grid-column-gap: 1rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pagination {
  margin-top: 2rem;
}

.home_cta-divider-wrapper {
  align-items: center;
  display: flex;
}

.divider-text {
  color: var(--light-orange);
  padding-left: 1rem;
  padding-right: 1rem;
}

.button-group-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.team12_list-wrapper {
  justify-content: center;
  display: flex;
}

.team12_list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.team12_item {
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.countup-number {
  color: var(--accent);
}

.icon-wrapper-dark {
  background-color: var(--white);
  color: var(--accent);
  border-radius: 10px;
  padding: .5rem;
}

.icon-wrapper-dark.shadow-large {
  color: var(--primary-dark);
}

.contact15_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.contact15_contact-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.testimonial4_client {
  text-align: left;
  align-items: flex-start;
  display: flex;
}

.testimonial4_client-image-wrapper {
  margin-right: 1.25rem;
}

.testimonial4_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.testimonial4_client-info {
  grid-column-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.blog15_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  display: grid;
}

.blog15_item {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
}

.blog15_image-wrapper {
  width: 100%;
  padding-top: 0;
  position: static;
  overflow: hidden;
}

.blog15_image {
  object-fit: contain;
  width: 100%;
  max-width: 15rem;
  height: 100%;
  position: static;
  inset: 0%;
}

.blog15_item-content {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.blog15_author-wrapper {
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.expertiese-wrapper {
  background-color: #fff;
  border-radius: 10px;
}

.layout232_item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.heading-style-h5-2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h5-2.h5style {
  font-family: Montserrat, sans-serif;
}

.icon-embed-xxsmall-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.button-2 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-2.is-secondary {
  color: var(--black);
  background-color: #0000;
}

.button-2.is-secondary.is-small.max-width-full {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 500;
}

.button-2.is-link {
  color: var(--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-2.is-small {
  padding: .5rem 1.25rem;
}

.career20_tabs-menu {
  align-self: center;
  margin-bottom: 3rem;
}

.career20_tabs-menu.no-scrollbar {
  text-align: center;
}

.career20_tab-link {
  background-color: #0000;
  border: 1px solid #0000;
  padding: .5rem 1rem;
}

.career20_tab-link.w--current {
  border-color: var(--black);
  background-color: var(--white);
}

.career20_item {
  border: 1px solid var(--black);
  text-align: center;
  padding: 2rem;
}

.career20_list {
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.background-holder {
  z-index: -999;
  opacity: 0;
  position: relative;
}

.layout348_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  position: relative;
}

.layout348_mobile-image-wrapper {
  display: none;
}

.layout348_desktop-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.layout348_image {
  width: 100%;
  position: absolute;
}

.layout348_image.is-image1 {
  width: auto;
  height: 90%;
}

.layout348_content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
}

.background-layer {
  z-index: -1;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.background-layer.background-color-4 {
  background-color: var(--white);
}

.background-layer.background-color-3 {
  background-color: #e5e5e5;
}

.background-layer.background-color-2 {
  background-color: var(--white);
}

.background-layer.background-color-1 {
  background-color: #e5e5e5;
}

.layout348_mobile-image {
  width: 100%;
  position: absolute;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #ea9d42;
  border: 2px solid #ea9d42;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  transition: background-color .3s;
}

.button-3:hover {
  background-color: #d69343;
}

.button-3.is-link {
  color: #33393c;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-3.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
}

.tab-title-wrapper.margin-bottom.margin-small {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.inline-hightlight-blue {
  background-color: #d4e7f8;
}

.toctext {
  border-bottom: 1px none var(--accent);
  color: var(--text-grey);
  white-space: normal;
  overflow-wrap: break-word;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.toctext:hover {
  color: #a26925;
}

.cta39_image-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta39_card-content {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.testimonial5_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.testimonial5_divider {
  background-color: var(--black);
  align-self: stretch;
  width: 1px;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.testimonial5_client {
  text-align: left;
  align-items: center;
  display: flex;
}

.testimonial5_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.testimonial5_rating-wrapper {
  display: flex;
}

.testimonial5_client-image-wrapper {
  margin-right: 1.25rem;
}

.testimonial5_logo {
  max-height: 3rem;
}

.testimonial5_rating-icon {
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .25rem;
  display: flex;
}

.testimonial5_content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.heading-style-h6-2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.scrollprogress {
  z-index: 999;
  transform-origin: 0%;
  background-color: #ea9d426e;
  width: 100%;
  height: .5rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.scrollprogress.bottom {
  position: fixed;
}

.productnav_component {
  border-bottom: 1px none var(--black);
  background-color: var(--white);
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: sticky;
  top: 0;
}

.productnav_component.shadow-small {
  display: none;
}

.productnav_container {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.productnav_container.container-large {
  position: relative;
}

.brand {
  display: none;
}

.datenblatt.popup {
  overflow: auto;
}

.text-block-6, .paragraph {
  display: inline;
}

.paragraph.detailwertung {
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: none;
}

.shopreviews {
  display: block;
}

.reviewembed {
  z-index: 0;
  margin-bottom: 0;
  display: none;
  position: relative;
}

.anbieterwrapper {
  background-color: var(--white);
  background-image: radial-gradient(circle farthest-corner at 100% 0%, var(--light-blue), white);
}

.anbieterlogo {
  max-width: 15rem;
  max-height: 3rem;
}

.waiting-icon {
  background-image: url('../images/send-waiting.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 45%;
  height: 45%;
  display: none;
}

.form-error {
  text-align: center;
  text-transform: uppercase;
  background-color: #e91010;
  border-radius: 3px;
  width: 100%;
  margin-top: 10px;
  padding: 7px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  position: absolute;
}

.submit-button {
  z-index: 5;
  color: #0000;
  background-color: #0000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.form-success {
  text-transform: uppercase;
  background-color: #ffffff4d;
  border-radius: 3px;
  padding: 40px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.form-processing-icons {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.send-icon {
  opacity: .5;
  background-image: url('../images/send-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 45%;
  height: 45%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
}

.submit-button-wrapper {
  color: #0000;
  background-color: #ffffff40;
  border: 2px solid #0000;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.comment-form {
  color: var(--white);
  max-width: 710px;
  margin: 40px auto 12px;
  display: block;
  position: relative;
  bottom: 40px;
}

.form-field {
  color: #fff;
  text-transform: capitalize;
  background-color: #ffffff1a;
  border: 2px solid #fff0;
  border-radius: 3px;
  min-height: 60px;
  margin-bottom: 30px;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  transition: background-color .3s;
}

.form-field:focus {
  background-color: #ffffff2b;
  border-color: #ffffff1a;
}

.form-field.text-area {
  text-transform: none;
  min-height: 150px;
  max-height: 150px;
  margin-bottom: 0;
  padding-top: 23px;
  padding-right: 150px;
}

.comments-section-header {
  align-items: flex-start;
}

.main-separator-wrapper {
  opacity: .35;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-top: 2px;
  padding-bottom: 2px;
  display: flex;
}

.separator-line {
  background-color: #fff;
  flex: 1;
  height: 1px;
}

.separator-circle {
  border: 1px solid #fff;
  border-radius: 100%;
  width: 10px;
  height: 10px;
}

.comment-loader-wrapper {
  background-image: url('../images/send-waiting.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 35px;
  display: none;
  position: absolute;
  inset: 335px auto auto 0%;
}

.single-comment-wrapper {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.profile-image {
  background-color: #c4acac;
  background-image: url('../images/Group-8favicons.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 64px;
  height: 64px;
  margin-right: 20px;
  overflow: hidden;
}

.comment-details {
  flex: 1;
}

.author-date-details {
  white-space: nowrap;
  margin-top: 21px;
  margin-bottom: 5px;
}

.comment-author {
  float: left;
  color: var(--accent);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.vertical-separator {
  float: left;
  background-color: #ffffff4d;
  width: 2px;
  height: 18px;
  margin-left: 10px;
  margin-right: 10px;
}

.comment-date {
  float: left;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  display: inline-block;
}

.comment-body {
  color: var(--light-grey);
  font-size: 16px;
  line-height: 26px;
}

.all-comments-wrapper {
  margin-top: 2%;
  position: static;
}

.comments-section {
  margin-bottom: 10px;
  position: relative;
}

.text-block-7 {
  color: var(--gainsboro);
}

.nameemailwrapper {
  grid-column-gap: 5%;
  grid-row-gap: 0%;
  display: flex;
}

.html-embed {
  display: none;
}

.fs_starrating-1_message {
  color: var(--accessible-components-dark-grey);
  display: block;
}

.fs_starrating-1_icon {
  color: var(--accessible-components-white-smoke);
  width: 2rem;
  position: relative;
}

.fs_starrating-1_icon.is-active-starrating {
  color: #ffc800;
}

.fs_starrating-1_label {
  display: none;
}

.fs_starrating-1_radio-button {
  border-style: none;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.fs_starrating-1_radio-button.w--redirected-focus {
  box-shadow: none;
}

.fs_starrating-1_radio-button.w--redirected-focus-visible {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_starrating-1_item {
  cursor: pointer;
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
}

.fs_starrating-1_item:hover {
  transform: translate(0, -2px);
}

.fs_starrating-1_group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-items: stretch stretch;
  display: grid;
}

.fs_starrating-1_wrapper {
  display: flex;
}

.fs_starrating-1_wrapper.top {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
}

.fs_starrating-1_wrapper.top.vergleich {
  z-index: 99;
  grid-row-gap: .5rem;
  background-color: var(--white);
  color: var(--black);
  border-radius: 8px;
  padding: 1rem;
  position: absolute;
  inset: 3% 3% auto auto;
}

.fs_starrating-1_embed {
  margin-bottom: 0;
}

.fs_starrating-1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 10px;
  display: grid;
}

.all-reviews-wrapper {
  margin-top: 2%;
  position: static;
}

.single-review-wrapper {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
}

.review-body {
  color: var(--light-grey);
  font-size: 16px;
  line-height: 26px;
}

.filters1_instructions-callout {
  background-color: #0000001a;
  align-items: center;
  padding: 1.5rem;
  line-height: 1.6;
}

.filters1_rangeslider2-input {
  display: none;
}

.filters1_sort-link {
  padding: .5rem;
}

.filters1_sort-link.w--current {
  color: var(--black);
}

.filters1_form-radio2-icon {
  border: 1px none var(--black);
  cursor: pointer;
  border-radius: 0%;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  inset: 0%;
}

.filters1_form-radio2-icon.w--redirected-checked {
  border-color: #0000;
}

.filters1_form-radio2-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.filters1_layout {
  grid-column-gap: 4rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.filters1_form-radio2 {
  border: 1px solid var(--black);
  align-items: center;
  margin-top: .25rem;
  margin-bottom: .25rem;
  margin-right: .5rem;
  padding: .5rem 1rem;
  display: inline-block;
  position: relative;
}

.filters1_form-radio2.is-active {
  background-color: var(--black);
  color: var(--white);
}

.filters1_results-text {
  font-size: .875rem;
}

.filters1_rangeslider1-fill {
  background-color: var(--black);
  width: 20%;
  height: 100%;
  position: absolute;
}

.filters1_form-checkbox1-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin: auto .75rem auto -1.25rem;
  transition: all .2s;
}

.filters1_form-checkbox1-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-image: none;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.filters1_form-checkbox1-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.filters1_form-checkbox2-label {
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.filters1_form-block, .filters1_form-radio1-label {
  margin-bottom: 0;
}

.filters1_rangeslider2-track {
  background-color: var(--light-grey);
  height: .25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.filters1_form-checkbox2 {
  border: 1px solid #000;
  align-items: center;
  margin-top: .25rem;
  margin-bottom: .25rem;
  margin-right: .5rem;
  padding: .5rem 1rem;
  display: flex;
  position: relative;
}

.filters1_form-checkbox2.is-active {
  background-color: var(--black);
  color: var(--white);
}

.filters1_tablet-modal-close-button {
  display: none;
}

.filters-1-instructions-delete {
  background-color: var(--light-grey);
  text-align: left;
  padding: 2rem;
  display: none;
}

.filters1_filters-wrapper {
  max-width: 18rem;
}

.filters1_heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.filters1_empty {
  border: 1px solid var(--black);
  text-align: center;
  padding: 2.9rem;
}

.filters1_tablet-modal-menu {
  display: none;
}

.filters1_rangeslider2-values {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.filters1_tags-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  margin-right: 2rem;
  display: flex;
}

.filters1_toggle-button {
  cursor: pointer;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 2.5rem;
  margin-bottom: 0;
  margin-right: 1.5rem;
  padding: .25rem;
  display: flex;
  position: relative;
}

.filters1_filter-group-list {
  border-bottom: 1px solid var(--black);
}

.filters1_component {
  position: relative;
}

.filters1_toggle-button-label {
  width: auto;
  margin-bottom: 0;
  font-weight: 500;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.filters1_keyword-search {
  align-items: center;
  display: flex;
  position: relative;
}

.filters1_list.is-radio2, .filters1_list.is-checkbox2 {
  flex-wrap: wrap;
  display: flex;
}

.filters1_form-checkbox1-label {
  margin-top: auto;
  margin-bottom: auto;
}

.filters_instructions-callout-image {
  margin-top: .5rem;
}

.filters1_form-radio2-label {
  z-index: 1;
  margin-bottom: 0;
  position: relative;
}

.filters_instructions-list {
  list-style-type: decimal;
}

.filters1_rangeslider1-track {
  background-color: var(--light-grey);
  width: 100%;
  height: .25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.filters1_toggle-button-circle {
  z-index: 2;
  background-color: var(--white);
  border-radius: 999rem;
  flex: none;
  width: 1rem;
  height: 1rem;
  display: block;
  position: relative;
}

.filters1_filter-group {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.filters1_filter-group.radio, .filters1_filter-group.multiselect, .filters1_filter-group.select, .filters1_filter-group.search.generator, .filters1_filter-group.singledropdown {
  display: none;
}

.filters1_tag {
  background-color: var(--light-grey);
  align-items: center;
  padding: .5rem .75rem .5rem 1rem;
  display: flex;
}

.filters1_form-radio1 {
  align-items: center;
  margin-bottom: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1.125rem;
  display: flex;
}

.filters1_toggle-button-mask {
  z-index: 1;
  background-color: #c6c6c6;
  border-radius: 999rem;
  position: absolute;
  inset: 0%;
}

.filters1_feed-header {
  grid-column-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.form-input-2 {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input-2:focus {
  border-color: #000;
}

.form-input-2::placeholder {
  color: #0009;
}

.form-input-2.is-search-input {
  padding-left: 3rem;
}

.form-input-2.is-select-input {
  background-image: none;
}

.filters1_rangeslider2-handle-right {
  z-index: 1;
  border: 2px solid var(--black);
  cursor: grab;
  background-color: #fff;
  border-radius: 999rem;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(86%, -50%);
  box-shadow: 0 0 10px #0000001a;
}

.filters1_rangeslider2-handle-right:focus {
  box-shadow: 0 0 0 3px #00000040, 0 0 10px #0000001a;
}

.filters1_rangeslider2-handle-right:focus-visible, .filters1_rangeslider2-handle-right[data-wf-focus-visible] {
  outline-offset: 0px;
  outline: 0 solid #000;
}

.filters1_close-icon {
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: .5rem;
}

.filters1_rangeslider1-text {
  text-align: center;
  font-size: 1.125rem;
  position: absolute;
  top: 1.5rem;
  left: auto;
  right: auto;
}

.filters1_form-checkbox2-icon {
  border: 1px none var(--black);
  cursor: pointer;
  border-radius: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  transition: all .2s;
  position: absolute;
  inset: 0%;
}

.filters1_form-checkbox2-icon.w--redirected-checked {
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-color: #0000;
}

.filters1_form-checkbox2-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.button-icon-left {
  margin-right: .5rem;
}

.filters1_form {
  background-color: #0000;
}

.filters1_results-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
}

.search-icon {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  inset: auto auto auto 12px;
}

.filters1_sort-dropdown-list {
  z-index: 999;
}

.filters1_sort-dropdown-list.w--open {
  z-index: 9999;
  background-color: var(--white);
  border: 1px solid #000;
  padding: .5rem;
  right: 0%;
}

.filters1_rangeslider2-fill {
  background-color: var(--black);
  width: 20%;
  height: 100%;
  position: absolute;
}

.filters1_filter-options {
  overflow: hidden;
}

.filters1_tablet-filters-button {
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  padding: .75rem 1.5rem;
  display: none;
}

.filters1_form-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.filters1_rangeslider2-text {
  text-align: center;
  font-size: 1.125rem;
  position: relative;
}

.filters1_form-radio1-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .75rem;
}

.filters1_form-radio1-icon.w--redirected-checked {
  border-width: 1px;
  border-color: var(--black);
  background-color: var(--black);
  background-image: none;
  background-position: 50%;
  background-size: 14px 14px;
  width: 1.125rem;
  height: 1.125rem;
}

.filters1_form-radio1-icon.w--redirected-focus {
  box-shadow: none;
  margin-top: 0;
}

.filters1_list-wrapper {
  margin-bottom: 1.25rem;
}

.filters1_sort-dropdown-toggle {
  color: var(--white);
  background-color: #112f5fe6;
  border-radius: 8px;
  padding: .5rem 2.5rem .5rem 1.5rem;
}

.filters1_form-checkbox1 {
  align-items: center;
  margin-bottom: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1.25rem;
  display: flex;
}

.filters1_rangeslider1-handle {
  z-index: 1;
  border: 2px solid var(--black);
  background-color: var(--white);
  cursor: grab;
  border-radius: 100rem;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  position: absolute;
  top: 50%;
  left: .5rem;
  right: .5rem;
  transform: translate(-50%, -50%);
  box-shadow: 1px 1px 10px #0000001a;
}

.filters1_rangeslider1-handle:focus {
  box-shadow: 0 0 0 3px #00000040, 1px 1px 10px #0000001a;
}

.filters1_rangeslider1-handle:focus-visible, .filters1_rangeslider1-handle[data-wf-focus-visible] {
  outline-offset: 0px;
  outline: 0 solid #000;
}

.filters1_filter-group-heading {
  border-top: 1px solid var(--black);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.filters1_rangeslider2-handle-left {
  z-index: 1;
  border: 2px solid var(--black);
  background-color: var(--white);
  cursor: grab;
  border-radius: 999rem;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  box-shadow: 0 0 10px #0000001a;
}

.filters1_rangeslider2-handle-left:focus {
  box-shadow: 0 0 0 3px #00000040, 0 0 10px #0000001a;
}

.filters1_rangeslider2-handle-left:focus-visible, .filters1_rangeslider2-handle-left[data-wf-focus-visible] {
  outline-color: var(--black);
  outline-offset: 0px;
  outline-width: 0;
  outline-style: solid;
}

.filters1_rangeslider1-input {
  display: none;
}

.filters1_accordion-icon {
  align-self: flex-start;
  width: 1.5rem;
  margin-left: 1.5rem;
}

.filters1_accordion-icon.closed {
  transform: rotate(-180deg);
}

.filters1_rangeslider1-wrapper {
  align-items: center;
  width: 100%;
  padding: 1rem .75rem 3rem;
  display: block;
  position: relative;
}

.filters1_rangeslider2-wrapper {
  align-items: center;
  width: 100%;
  padding: 1rem .75rem .5rem;
  position: relative;
}

.filters1_toggle-button-checkbox {
  border-style: none;
  border-radius: 999rem;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.filters1_toggle-button-checkbox:focus-visible, .filters1_toggle-button-checkbox[data-wf-focus-visible] {
  outline-color: var(--black);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.filters1_toggle-button-checkbox.w--redirected-checked {
  background-color: #0000;
  background-image: none;
  border-style: none;
}

.filters1_toggle-button-checkbox.w--redirected-focus {
  box-shadow: none;
}

.product8_image-link {
  display: block;
}

.product8_left {
  flex: 1;
  margin-right: 0;
}

.product8_text-link {
  justify-content: space-between;
  text-decoration: none;
  display: flex;
}

.product8_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  display: grid;
  position: static;
  top: 0;
}

.product8_image-wrapper {
  width: 100%;
  padding-top: 120%;
  position: relative;
  overflow: hidden;
}

.product8_image-wrapper.card {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0%;
  overflow: auto;
}

.product8_image {
  object-fit: cover;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.product8_item {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: static;
}

.fs_modal-1_close-icon {
  width: 1rem;
  height: 1rem;
}

.fs_modal-1_close {
  cursor: pointer;
  background-color: #f5f5f5;
  padding: 1.5rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.fs_modal-1_close:focus-visible, .fs_modal-1_close[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_modal-1_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center start;
  place-items: center start;
  padding: 1rem 1rem 4rem;
  display: block;
  overflow: auto;
}

.fs_modal-1_wrapper {
  z-index: 999;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #000;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  overflow: visible;
}

.fs_modal-1_cover {
  position: absolute;
  inset: 0%;
}

.fs_modal-1_popup {
  z-index: 9999;
  background-color: #00000080;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs_modal-1_button {
  background-color: var(--accent);
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  max-width: 6rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 1rem;
  display: block;
  position: static;
}

.fs_modal-1_button:focus-visible, .fs_modal-1_button[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_modal-1_embed {
  margin-bottom: 0;
  display: none;
}

.fs_modal-1_component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.product-header5_heading {
  border-top: 1px solid var(--black);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.product-header5_accordion-icon {
  align-self: flex-start;
  width: 1.5rem;
  margin-left: 1.5rem;
}

.product-header5_accordion-icon.tab1 {
  transform: rotate(45deg);
}

.product-header5_details {
  overflow: hidden;
}

.div-block-5 {
  display: flex;
}

.div-block-6 {
  grid-column-gap: .25rem;
  display: flex;
}

.reviewbadgew {
  min-width: 180px;
  max-width: 200px;
}

.reviewbadgeheading {
  font-weight: 600;
}

.produktname {
  padding-left: 1rem;
  padding-right: 1rem;
}

.reviewgrade {
  font-weight: 700;
}

.banner7_close-button {
  width: 2rem;
  height: 2rem;
}

.banner7_text-wrapper {
  margin-bottom: 10px;
  padding-left: 5%;
  padding-right: 5%;
}

.banner7_icon-wrapper {
  flex: none;
}

.banner7_content {
  grid-row-gap: 5px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.banner7_content-wrapper {
  grid-row-gap: 20px;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: flex;
  position: relative;
}

.banner7_component {
  z-index: 999;
  float: left;
  clear: left;
  background-color: var(--white);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  min-width: 7rem;
  max-width: 8%;
  min-height: 40vh;
  margin-top: 7rem;
  margin-bottom: -57vh;
  display: block;
  position: sticky;
  inset: 15% auto 0% 0%;
}

.banner7_component.rechner {
  float: right;
  clear: right;
  left: auto;
  right: 0%;
}

.image-4 {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-8 {
  text-align: center;
}

.rechnerembed {
  margin-bottom: 2rem;
}

.cta45_button-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.cta45_content {
  grid-column-gap: 1rem;
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.navmarginhide {
  margin-bottom: -4.5rem;
  display: none;
}

.fs_modal-1_close-icon-2 {
  width: 1rem;
  height: 1rem;
}

.fs_modal-1_close-2 {
  cursor: pointer;
  background-color: #f5f5f5;
  padding: 1.5rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.fs_modal-1_close-2:focus-visible, .fs_modal-1_close-2[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_modal-1_content-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center start;
  place-items: center start;
  padding: .25rem 4rem 4rem;
  display: grid;
}

.fs_modal-1_wrapper-2 {
  z-index: 999;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #000;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  width: 100%;
  max-width: 60rem;
  height: 90%;
  display: grid;
  position: relative;
  overflow: auto;
}

.fs_modal-1_cover-2 {
  position: absolute;
  inset: 0%;
}

.fs_modal-1_popup-2 {
  z-index: 9999;
  background-color: #00000080;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs_modal-1_button-2 {
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  border: 1px solid #000;
  width: 100%;
  max-width: none;
  padding: .5rem 1rem;
}

.fs_modal-1_button-2:focus-visible, .fs_modal-1_button-2[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_modal-1_embed-2 {
  margin-bottom: 0;
}

.fs_modal-1_component-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.vergleich {
  color: var(--white);
}

.fs_inputcounter-1_button {
  background-color: var(--accessible-components-dodger-blue);
  color: #fff;
  cursor: pointer;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  display: flex;
}

.fs_inputcounter-1_button:focus-visible, .fs_inputcounter-1_button[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_inputcounter-1_input {
  text-align: center;
  background-color: #f5f5f5;
  border: 1px #000;
  min-height: 3rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.fs_inputcounter-1_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.fs_inputcounter-1_embed {
  margin-bottom: 0;
}

.fs_inputcounter-1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.filters1_filter-group-heading_closed {
  border-top: 1px solid var(--black);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.angebote_preis {
  border-bottom: 3px solid var(--accent);
  white-space: nowrap;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.angebot_card {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  border: 1px solid var(--black);
  grid-template-rows: auto;
  grid-template-columns: .25fr minmax(max-content, 2.25fr);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  height: 15vh;
  margin-bottom: 3%;
  padding: .5rem 1.5rem;
  display: grid;
  overflow: hidden;
}

.angebot_card.amazon, .angebot_card.ebay, .angebot_card.shop {
  grid-column-gap: 0rem;
  grid-template-columns: 1fr minmax(max-content, 2.25fr);
}

.angebot_card_container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  display: block;
}

.angebot_card_container.angebotcms_multiref {
  display: block;
}

.text-block-9 {
  color: var(--accessible-components-dark-grey);
}

.userreviewfotolightbox {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.eurowrapper {
  color: var(--primary-dark);
  display: flex;
}

.eurozeichen {
  word-break: break-all;
  border-bottom: 1px #000;
  align-self: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.shopbeschreibung {
  grid-column-gap: .25rem;
  flex-wrap: wrap;
  display: flex;
}

.shopbeschreibung.platzierung {
  margin-bottom: 1rem;
}

.product-header4_product-details {
  position: sticky;
  top: 8rem;
}

.product-header4_tabs-menu {
  flex-wrap: nowrap;
  align-items: center;
  display: flex;
}

.product-header4_tab-link {
  white-space: nowrap;
  background-color: #0000;
  border-bottom: 1.5px solid #0000;
  margin-right: 1.5rem;
  padding: .5rem 0;
}

.product-header4_tab-link.w--current {
  border-bottom-color: var(--black);
  background-color: #0000;
}

.ratings-count {
  grid-column-gap: 1rem;
  font-weight: 500;
  display: block;
}

.ratings-count.vergleich {
  color: var(--black);
  font-size: .85rem;
}

.link-block {
  grid-column-gap: 1rem;
  border-bottom: 1px solid var(--accessible-components-dodger-blue);
  display: flex;
}

.link-block:hover {
  border-bottom-color: var(--accent);
}

.link-block.vergleich {
  color: var(--black);
  border-bottom-style: none;
}

.link-block.vergleich:hover {
  color: #0c4c85;
  text-decoration: underline;
}

.fs_starrating-1_icon-copy {
  color: var(--accessible-components-white-smoke);
  width: 2rem;
  position: relative;
}

.fs_starrating-1_icon-copy.vergleich {
  width: 1.15rem;
}

.externetests_count {
  grid-column-gap: 1rem;
  font-weight: 500;
  display: block;
}

.externetests_count.vergleich {
  color: var(--black);
  flex-direction: column;
  align-self: center;
  display: flex;
}

.testswrappertop {
  grid-row-gap: .25rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.externetests {
  border-top: 1px solid var(--primary-dark);
  box-shadow: -1px 2px 5px 0 var(--primary-dark);
}

.test_card_container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  display: block;
}

.test_card {
  grid-column-gap: 0rem;
  grid-row-gap: 2rem;
  border: 1px solid var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(max-content, 2.25fr);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 25vh;
  margin-bottom: 3%;
  padding: 1rem 1.5rem;
  display: grid;
  overflow: hidden;
}

.externtestsheading {
  grid-column-gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.testheadingwrapper {
  grid-column-gap: 1rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
}

.test_content {
  flex-direction: row;
  flex: 1;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.html-embed-4 {
  display: none;
}

.testtitel {
  border-bottom: 1px #000;
  align-self: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.reviewbadgewvergleich {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.testswrappervergleich {
  grid-row-gap: .25rem;
  flex-direction: row;
  align-items: center;
  min-height: 8rem;
  display: flex;
}

.card-row44_card-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.card-row44_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 1rem;
}

.card-row44_card {
  border: 1px solid var(--black);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.fs_cmssort_button {
  display: none;
}

.blog_multi_authors {
  grid-column-gap: 1rem;
  display: flex;
}

.contributor_labels {
  grid-column-gap: 1rem;
  justify-content: space-around;
  margin-top: 3rem;
  margin-bottom: 1rem;
  display: flex;
}

.contributor_label {
  background-color: var(--light-orange);
  border-radius: 5px;
  margin-right: 1rem;
  padding: .25rem .5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
}

.contributor_label.w--current {
  border-bottom: 2px solid #000;
}

.contributor_label._2 {
  background-color: var(--light-blue);
}

.contributor_label._3 {
  background-color: var(--light-grey);
}

.empty-state {
  display: none;
}

.testnoteextern {
  border-bottom: 3px solid var(--accent);
  white-space: nowrap;
  padding-right: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.text-rich-text_sized h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 800;
}

.text-rich-text_sized blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 2;
}

.text-rich-text_sized h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.text-rich-text_sized h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.text-rich-text_sized h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.text-rich-text_sized h5 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.text-rich-text_sized h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.text-rich-text_sized p {
  margin-bottom: 1rem;
  font-size: .875rem;
  line-height: 1.5;
}

.text-rich-text_sized a {
  border-bottom: 2px solid var(--accent);
  color: var(--black);
  text-decoration: none;
}

.text-rich-text_sized figcaption {
  border-left: 2px solid var(--accent);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.text-rich-text_sized img {
  border-radius: 10px;
}

.text-rich-text_sized li {
  color: var(--text-grey);
  background-image: url('../images/Group-7favicons.png');
  background-position: 0 6px;
  background-repeat: no-repeat;
  background-size: 14px;
  background-attachment: scroll;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.text-rich-text_sized ul {
  box-shadow: 0 1px 3px 0 var(--accent);
  padding: 15px;
  list-style-type: none;
}

.image-5 {
  width: 100%;
  max-width: none;
  height: auto;
}

.mobilebg {
  background-color: var(--accent);
  background-image: linear-gradient(to bottom, var(--accent), var(--accent));
  display: none;
}

.communityreviewtotal {
  float: left;
  color: #dbdbdb;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  padding-right: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.communityreviewtotal.number {
  color: #ffc800;
}

.link {
  text-decoration: underline;
}

.customcalctest {
  display: block;
}

.fs-cc-prefs2_option {
  border-bottom: 1px solid #c0c0c04d;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-prefs2_close {
  color: #fff;
  cursor: pointer;
  background-color: #0540f2;
  padding: 12px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: 0 0 auto auto;
  box-shadow: -1px 1px 4px #3333331a;
}

.fs-cc-prefs2_overlay {
  z-index: -1;
  background-color: #010440e6;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_label {
  color: #0540f2;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs2_form-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fs-cc-banner2_component {
  z-index: 999;
  color: #fff;
  background-color: #0540f2;
  width: 450px;
  padding: 30px;
  display: none;
  position: fixed;
  inset: auto 0% 0% auto;
}

.fs-cc-prefs2_checkbox-label {
  display: none;
}

.fs-cc-manager2_button {
  color: #0540f2;
  cursor: pointer;
  background-color: #fff;
  flex-direction: column;
  width: 48px;
  padding: 8px;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager2_button:hover {
  color: #4353ff;
}

.fs-cc-manager2_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

.fs-cc-banner2_text {
  font-size: 15px;
}

.fs-cc-prefs2_title {
  color: #010440;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-banner2_text-link {
  color: #fff;
  border-bottom: 2px solid #fff;
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-prefs2_button {
  text-align: center;
  background-color: #0540f2;
  border: 1px solid #0540f2;
  padding: 12px 20px;
  font-weight: 700;
}

.fs-cc-prefs2_button.fs-cc-button-alt {
  color: #0540f2;
  background-color: #fff;
  border-color: #0540f2;
  margin-bottom: 12px;
}

.fs-cc-banner2_container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs2_content {
  color: #000;
  background-color: #fff;
  height: 100%;
  padding: 40px 32px;
}

.fs-cc-prefs2_checkbox {
  z-index: 1;
  cursor: pointer;
  background-color: #fff;
  border-width: 2px;
  border-color: #0540f2;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_checkbox.w--redirected-checked {
  background-color: #0540f2;
  background-size: auto;
  border-color: #0540f2;
}

.fs-cc-prefs2_form {
  color: #fff;
  background-color: #333;
  width: 100%;
  max-width: 400px;
  max-height: 85vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs2_submit {
  text-align: center;
  background-color: #010440;
  margin-top: 12px;
  padding: 12px 20px;
  font-weight: 700;
}

.fs-cc-prefs2_component {
  z-index: 997;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs2_space-small {
  margin-bottom: 12px;
}

.fs-cc-preferences2_close-icon {
  color: #fff;
  width: 24px;
  height: 24px;
}

.fs-cc-banner2_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 16px;
  display: flex;
}

.fs-cc-banner2_button {
  color: #0540f2;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  flex: 1;
  min-width: 120px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px 20px;
  font-weight: 700;
}

.fs-cc-banner2_button.fs-cc-button-alt {
  color: #fff9;
  background-color: #02087366;
}

.fs-cc-prefs2_buttons-wrapper {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 16px;
  display: flex;
}

.fs-cc-prefs2_checkbox-field {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.content-left-sidebar {
  display: flex;
}

.content-left-sidebar.relative {
  position: relative;
}

.content27_link-wrapper {
  overflow: hidden;
}

.content27_link-wrapper.is-h6 {
  padding-left: 1rem;
}

.content27_link-wrapper.is-h2 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
  overflow: visible;
}

.content27_link-wrapper.is-h5, .content27_link-wrapper.is-h3, .content27_link-wrapper.is-h4, .content27_link-wrapper.is-h3, .content27_link-wrapper.is-h4 {
  padding-left: 1rem;
}

.content27_h-trigger {
  display: none;
}

.content27_topbar_heading {
  font-size: 1.5rem;
}

.content27_accordion-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: none;
}

.content27_sidebar-heading-text {
  justify-content: space-between;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.toc-top-link-content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.content27_sidebar {
  flex-direction: column;
  align-items: flex-start;
  max-width: 20rem;
  height: 100%;
  margin-right: 0;
  display: flex;
  position: sticky;
  top: 5rem;
}

.content27_sidebar.hide-mobile-landscape {
  height: auto;
  position: sticky;
  top: 5rem;
}

.content27_link {
  background-color: var(--accessible-components-white-smoke);
  text-align: center;
  border-radius: .375rem;
  width: 100%;
  padding: .75rem 1rem;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.content27_link:hover {
  background-color: var(--light-orange);
  color: var(--accent);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.content27_link:focus {
  background-color: var(--accessible-components-white-smoke);
  color: var(--black);
  font-weight: 400;
}

.content27_link.w--current {
  background-color: var(--accessible-components-white-smoke);
  color: var(--accent);
  font-weight: 600;
}

.content27_link.w--current:active {
  background-color: var(--accessible-components-white-smoke);
  color: var(--black);
  font-weight: 400;
}

.content27_link.is-h4 {
  padding-top: .3rem;
  padding-bottom: .3rem;
}

.content27_link.is-h4.w--current {
  background-color: #0000;
}

.content27_link.current {
  background-color: var(--light-grey);
  text-align: center;
  border-style: none;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-weight: 600;
}

.content27_link.current.w--current {
  background-color: var(--light-grey);
  border-style: none;
  font-weight: 600;
}

.content27_link.is-h6 {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.content27_link.is-h6.w--current {
  background-color: #0000;
}

.content27_link.is-h3 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.content27_link.is-h3.w--current {
  background-color: #0000;
}

.content27_link.is-h5 {
  background-color: #0000;
  padding-top: .3rem;
  padding-bottom: .3rem;
}

.multi_contributors_blog {
  margin-bottom: 3rem;
}

.section_header23 {
  background-color: #ea9d421a;
  border-radius: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.authors-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  align-items: center;
  display: flex;
}

.navbar11_dropdown-toggle-avatar {
  border-radius: 100%;
  height: 100%;
  padding: 0;
  display: inline-block;
}

.navbar11_dropdown-toggle-avatar:hover {
  border: 2px solid var(--accent);
}

.avatar-image-dropdown {
  z-index: 3;
  margin-left: -.5rem;
}

.avatar-image-wrapper {
  border-left: 2px solid var(--accent);
  align-items: center;
  height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1rem;
  display: flex;
}

.text-style-small {
  font-family: Montserrat, sans-serif;
  font-size: .75rem;
}

.avatar_dropdown_info.w--open {
  z-index: 0;
  border: 1px none var(--black);
  background-color: #f5f5f500;
  border-radius: 10px;
  width: 20rem;
  padding: 1.5rem;
  left: -125%;
}

.avatar_dropdown_info.authors.w--open {
  width: 25rem;
}

.author-dropdown-info-wrapper {
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: #ea9d424d;
  border-radius: 1rem;
  padding: 1rem;
}

.tagline-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #ea9d421a;
  border-radius: .5rem;
  flex-direction: row;
  justify-content: center;
  padding: .5rem;
  display: flex;
}

.tagline-wrapper.hero {
  margin-left: 2rem;
  margin-right: 2rem;
}

.blog-button-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  display: flex;
}

.blog-button-wrapper.margin-bottom {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  width: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.container-custom {
  margin-left: 4rem;
  margin-right: 4rem;
}

.is-link {
  color: var(--black);
  background-color: #3898ec00;
}

.blog-hero-header {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.blog-hero-header.top-0 {
  padding-top: 0;
}

.is-tagline {
  padding: 0;
}

.is-tagline.heading-style-h6 {
  font-family: Montserrat, sans-serif;
}

.authors-section {
  margin-bottom: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.authors-container {
  justify-content: space-between;
  display: flex;
}

.authors-container.bottom {
  justify-content: center;
}

.blog-image-wrapper {
  border-radius: 1rem;
  overflow: hidden;
}

.link-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.margin-top-4 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top-4.margin-xsmall {
  width: 100%;
}

.content27_topbar {
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: none;
  height: auto;
  margin-right: 1rem;
  display: flex;
  position: sticky;
  top: 5rem;
}

.toc-top-link-wrapper {
  overflow: hidden;
}

.toc-top-link-wrapper.is-h2 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
  overflow: visible;
}

.content27_component {
  grid-column-gap: 4rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 13.5rem 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: grid;
}

.content27_sidebar-heading {
  font-size: 1.5rem;
}

.margin-top-5 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.content27_link-content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
}

.sidebar_link-wrapper {
  overflow: hidden;
}

.sidebar_link-wrapper.is-h2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
  overflow: visible;
}

.max-width-blog {
  max-width: 48rem;
  margin-right: 20rem;
}

.section_content7 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.content7_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.blog-content-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.blog-content-top.margin-bottom {
  margin-bottom: 1rem;
}

.toc-topbar {
  display: block;
}

.blog-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 48rem;
  display: flex;
}

.blog-content-inner {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.image-7 {
  max-width: none;
  overflow: auto;
}

.blog-contents-wrapper {
  background-color: #f2f5f800;
  font-size: 15px;
  font-weight: 300;
}

.blog-section {
  width: 100%;
  padding: 7rem 0%;
}

.blog-grid {
  grid-template-rows: auto;
  grid-template-columns: 4fr 10fr;
  justify-content: center;
  width: 100%;
  padding-left: 0;
  display: flex;
  position: relative;
}

.content-left {
  width: 14.5rem;
  height: auto;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.stick-wrapper {
  padding-top: 1.5rem;
  position: sticky;
  top: 5rem;
}

.title-small {
  color: var(--black);
  margin-bottom: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.tocitem {
  color: #000;
  background-color: #f5f5f5;
  border-left: 2px #b4b4b4;
  border-radius: 0 5px 5px 0;
  justify-content: space-between;
  margin-top: .5rem;
  padding: .75rem 1rem .75rem .5rem;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .2s, background-color .2s, color .2s;
  display: flex;
}

.tocitem:hover {
  color: #ea9d42;
  background-color: #fdf6f0;
  border-left: 2px solid #ea9d42;
  padding-left: 7px;
  font-family: Montserrat, sans-serif;
}

.tocitem.active {
  color: #ea9d42;
  background-color: #fdf6f0;
  border-left: 2px solid #ea9d42;
  padding-left: 7px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.content-right_blog {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  max-width: 48rem;
  display: flex;
}

.rich-text-blog {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  display: flex;
}

.rich-text-blog h2 {
  margin-bottom: .5rem;
}

.rich-text-blog p {
  margin-bottom: 2rem;
}

.rich-text-blog-top {
  flex-direction: column;
  display: flex;
}

.rich-text-blog-top blockquote {
  margin-bottom: 1.5rem;
}

.table {
  background-color: #f8f8f8;
  border-radius: 2rem;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

.table-headings-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2rem;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.table-content-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: stretch;
}

.table-content-row.background-color-lightorange {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f7eedf;
}

.table_feature {
  padding: 1rem 1.5rem;
}

.table_row-content {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  font-weight: 600;
  display: flex;
}

.table_row-content.highlight-outline {
  border-style: none solid;
  border-width: 1px 3px;
  border-color: black var(--highlight-outline);
  border-radius: 0;
}

.icon-1x1-xsmall-3 {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
}

.table-v2 {
  background-color: #f8f8f8;
  border-radius: 2rem;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.highlight-outline {
  border-style: solid solid none;
  border-width: 3px 3px 1px;
  border-color: var(--highlight-outline) var(--highlight-outline) black;
  background-color: #f8efdf;
  border-radius: 2.5rem 2.5rem 0 0;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
  display: flex;
}

.table-bottom-row {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.highlight-outline-bottom {
  border-right: 3px solid var(--highlight-outline);
  border-bottom: 3px solid var(--highlight-outline);
  border-left: 3px solid var(--highlight-outline);
  background-color: #f8efdf;
  border-bottom-right-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.table-heading {
  padding-top: 2rem;
}

.block-quote-2 {
  font-family: Notosans, sans-serif;
}

.toctext2 {
  color: var(--black);
}

.table-of-content-opener {
  z-index: 3;
  background-color: var(--accent);
  cursor: pointer;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: none;
  position: sticky;
  top: 90%;
  left: 95%;
}

.button-6 {
  color: #fff;
  text-align: center;
  background-color: #ea9d42;
  border: 2px solid #ea9d42;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  transition: background-color .3s;
}

.button-6:hover {
  background-color: #d69343;
}

.button-6.is-link {
  color: #33393c;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-6.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
}

.text-size-small-2 {
  font-size: 12px;
}

.icon-embed-xxsmall-4 {
  color: #112f5f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  line-height: 1;
  display: block;
}

.icon-embed-xxsmall-4.rotate {
  transform: rotate(180deg);
}

.blogpost5_category-link-2 {
  background-color: #fdf6f0;
  border-radius: 8px;
  margin-right: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blogpost5_category-link-2.w--current {
  background-color: #fdf6f0;
  border-bottom: 2px #000;
  border-radius: 5px;
}

.header23-flex {
  grid-column-gap: 48px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.anbietererfahrungentest {
  display: none;
}

.komponenten {
  display: block;
}

.rich-text-block {
  flex-direction: column;
  align-items: center;
  display: block;
}

.bundles {
  display: block;
}

.bundlelist {
  display: flex;
}

.anbieter {
  display: block;
  position: relative;
}

.anbieter.hubremove {
  display: none;
}

.icon-embed-xsmall-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.testimonial11_rating-wrapper {
  display: flex;
}

.testimonial11_rating-icon {
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  display: flex;
}

.s1-calc {
  margin-bottom: 5rem;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .max-width-large.anbieter {
    width: 50%;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-xsmall {
    display: block;
  }

  .margin-top.embed {
    z-index: 999;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small.siegelcontainer {
    grid-column-gap: 3rem;
    grid-row-gap: 5px;
    justify-content: flex-start;
  }

  .margin-bottom.margin-xsmall.productimagetop {
    height: auto;
    min-height: 30rem;
  }

  .margin-bottom.margin-xsmall.produktdatenblatt {
    flex-direction: row;
    justify-content: center;
  }

  .margin-bottom.margin-xsmall.sticky {
    position: static;
  }

  .margin-bottom.sliderreviewtest {
    display: none;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-medium {
    font-size: 1.75rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .button.is-icon.bestangebot {
    font-weight: 500;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .button-group.productctabuttonbox {
    justify-content: flex-start;
  }

  .text-size-small {
    color: var(--text-grey);
    font-weight: 500;
  }

  .text-size-small.hide-mobile-landscape {
    color: var(--text-grey);
  }

  .padding-global.padding-custom4 {
    padding-left: 10%;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header38_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

  .header38_content {
    margin-left: 5%;
    margin-right: 5%;
  }

  .header38_image {
    height: auto;
    max-height: none;
  }

  .navbar10_component.shadow-medium.product {
    position: relative;
  }

  .navbar10_container.hide-tablet {
    display: none;
  }

  .navbar10_menu {
    background-color: var(--white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    flex-direction: row;
    align-items: flex-start;
    height: 100vh;
    margin-left: 0;
    padding: 1rem 5% 5rem;
    position: absolute;
    overflow: auto;
  }

  .navbar10_menu.vergleich {
    z-index: 999;
  }

  .navbar10_menu-left {
    flex-direction: column;
  }

  .navbar10_menu-dropdown {
    width: 100%;
  }

  .navbar10_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .dropdown-icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .navbar10_dropdown-list {
    position: relative;
    overflow: hidden;
  }

  .navbar10_dropdown-list.w--open {
    box-shadow: none;
    border-style: none;
    border-radius: 10px;
    align-items: flex-start;
    min-height: auto;
    padding: 0 0 0;
    position: relative;
    top: 0;
  }

  .navbar10_dropdown-content {
    flex-direction: column;
  }

  .navbar10_dropdown-content-left {
    align-content: start;
    align-items: start;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar10_dropdown-content-right {
    align-items: flex-start;
    max-width: none;
    padding-top: 0;
  }

  .navbar10_blog-list {
    grid-row-gap: 2rem;
    width: 100%;
  }

  .navbar10_blog-item {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .navbar10_blog-item-content {
    width: 100%;
  }

  .navbar10_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-top {
    background-color: var(--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-top.darkbg {
    background-color: var(--white);
  }

  .menu-icon_line-middle {
    background-color: var(--black);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-middle.darkbg {
    background-color: var(--white);
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-bottom {
    background-color: var(--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-bottom.darkbg {
    background-color: var(--white);
  }

  .cta50_card {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .cta50_content {
    margin-right: 0;
  }

  .layout350_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .layout350_tabs-menu.shadow-medium {
    display: none;
  }

  .layout350_content {
    height: auto;
  }

  .layout350_mobile-image-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0;
    min-height: 55rem;
    display: flex;
  }

  .layout350_desktop-image-wrapper {
    display: none;
  }

  .layout350_image {
    width: 80%;
  }

  .cta40_component {
    margin-top: 0;
  }

  .cta40_card {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .cta40_card.shadow-xlarge {
    z-index: 0;
    background-color: var(--white);
    justify-items: stretch;
    overflow: visible;
  }

  .cta40_card-content {
    z-index: 1;
    padding: 3rem;
    overflow: visible;
  }

  .layout294_component {
    grid-template-columns: 1fr 1fr;
  }

  .blog68_heading-wrapper {
    grid-column-gap: 3rem;
  }

  .blog68_heading {
    margin-right: 3rem;
  }

  .blog68_button-row {
    flex: none;
  }

  .blog68_component {
    padding-left: 0;
    padding-right: 0;
  }

  .blog68_mask {
    width: 50%;
  }

  .cta12_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .cta12_content {
    margin-right: 0;
  }

  .footer5_top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer5_bottom-wrapper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer5_social-icons {
    margin-bottom: 2rem;
  }

  .product-header7_component {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .product-header7_gallery-slider {
    position: static;
  }

  .product-header7_slider {
    height: auto;
  }

  .product-header7_image-wrapper {
    padding-top: 120%;
  }

  .product-header7_main-image {
    height: 45vh;
  }

  .product-header7_product-details {
    max-height: none;
    padding-right: 0;
    position: static;
    overflow: visible;
  }

  .logo2_component {
    grid-column-gap: 3rem;
  }

  .logo2_content-left {
    max-width: 16rem;
  }

  .logo2_logo-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .blogpost5_header {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .blogpost5_content-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blogpost5_content-left {
    max-width: none;
    padding-right: 0;
    position: static;
  }

  .blogpost5_content-left.product {
    display: none;
  }

  .blogpost5_contributers, .blogpost5_newsletter {
    position: static;
  }

  .blogpost5_content {
    margin-bottom: 1rem;
  }

  .layout247_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .layout247_list {
    grid-column-gap: 2rem;
  }

  .header76_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

  .header76_content-left {
    margin-left: 5%;
    margin-right: 5%;
  }

  .header76_content-right {
    height: 40rem;
    padding-left: 5vw;
  }

  .team8_list {
    grid-column-gap: 2rem;
  }

  .contact7_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .career27_component {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
  }

  .navbar11_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .navbar11_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .navbar11_dropdown-toggle.background-color-lightorange {
    background-color: #0000;
    padding-left: 0;
  }

  .navbar11_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar11_dropdown-list.w--open {
    border-style: none;
    width: auto;
    padding: 0;
  }

  .navbar11_dropdown-list.background-color-lightblue.shadow-medium.w--open {
    box-shadow: none;
  }

  .navbar11_dropdown-link-list {
    border-radius: 10px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
  }

  .navbar11_dropdown-link-list.hide-desktop {
    display: block;
  }

  .avatar_dropdown_more-info {
    padding: .5rem 1rem;
  }

  .navbar6_menu-dropdown {
    width: 100%;
  }

  .navbar6_menu-dropdown.background-color-lightorange {
    background-color: #0000;
  }

  .navbar6_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar6_dropdown-list {
    inset: 0% 0% auto;
    overflow: hidden;
  }

  .navbar6_dropdown-list.w--open {
    border-style: none;
    align-items: flex-start;
    padding: 0 0 0;
    position: relative;
    top: 0;
  }

  .navbar6_dropdown-list.shadow-medium.w--open {
    box-shadow: none;
  }

  .navbar6_dropdown-content {
    flex-direction: column;
  }

  .navbar6_dropdown-content-left {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar6_dropdown-content-left.container-large {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .navbar6_dropdown-link-list.background-color-lightblue.shadow-small {
    grid-template-rows: max-content;
    grid-template-columns: 1fr 1fr;
  }

  .navbar6_dropdown-content-right {
    max-width: 50rem;
    margin-bottom: 1rem;
  }

  .navbar6_dropdown-background-layer {
    min-width: 100%;
  }

  .sun-blog {
    width: 70%;
  }

  .sun-product {
    width: 100%;
    top: 7%;
    right: auto;
  }

  .sun-product.productdetail {
    top: 1%;
  }

  .sun-product.productdetail.height {
    height: 53vh;
  }

  .sun-product.sunhubheight {
    height: 57vh;
  }

  .fs-toc_link-content {
    object-fit: fill;
    overflow: visible;
  }

  .fs-toc_link-wrapper.is-h2 {
    overflow: auto;
  }

  .fs-toc_link-wrapper.is-h3 {
    display: none;
  }

  .fs-toc_link {
    white-space: nowrap;
    word-break: break-all;
    margin-bottom: .1rem;
  }

  .product6_heading-wrapper {
    grid-column-gap: 3rem;
  }

  .product6_heading {
    margin-right: 3rem;
  }

  .product6_button-row {
    flex: none;
  }

  .product6_component {
    padding-left: 0;
    padding-right: 0;
  }

  .product6_mask {
    width: 50%;
  }

  .product6_slide {
    padding-right: 2rem;
  }

  .product6_slide-nav {
    z-index: -1;
  }

  .product6_content-wrapper_numbers.produktdatenblatt {
    width: 80%;
  }

  .product6_content-wrapper_numbers.anbieter {
    min-height: 15rem;
  }

  .product6_number-table.logos {
    height: auto;
  }

  .numbers-wrapper.padding-xsmall.shadow-medium {
    width: 23rem;
  }

  .cable1 {
    width: 77%;
    bottom: -2%;
  }

  .cable2 {
    width: 53.5%;
    bottom: 24.5%;
    left: -4.1%;
  }

  .sun-home {
    top: 20%;
  }

  .header81_component {
    height: auto;
  }

  .header81_content-wrapper {
    grid-row-gap: 4rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 6rem;
    position: static;
  }

  .header81_content-left {
    flex: 0 auto;
    margin-left: 5%;
    margin-right: 5%;
  }

  .header81_content-right {
    flex: 0 auto;
    width: 100%;
    position: static;
  }

  .header81_image-wrapper {
    padding-top: 100%;
  }

  .header_logo-listt {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .header83_image {
    object-position: 80% 50%;
  }

  .header83_image.centerfold {
    object-position: 50% 50%;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .cta50_buttons-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .blog6_featured-image-wrapper {
    padding-top: 75%;
  }

  .blog6_list, .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .product6_arrow-sticky.shadow-medium {
    top: 50vh;
  }

  .blogpost5_content-left-mobile {
    max-width: none;
    padding-right: 0;
    display: block;
    position: static;
  }

  .blogpost5_info-wrapper {
    display: none;
  }

  .layout253_component {
    grid-column-gap: 3rem;
  }

  .layout253_list {
    grid-column-gap: 2rem;
  }

  .banner2_icon-wrapper {
    display: none;
  }

  .blogpost3_content {
    margin-bottom: 3rem;
  }

  .toc-floating-wrapper {
    width: auto;
    max-width: none;
    position: static;
  }

  .toc-floating-wrapper.shadow-medium {
    box-shadow: none;
  }

  .cta41_card {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .arrow-wrapper {
    display: none;
  }

  .blog39_list {
    grid-template-columns: 1fr 1fr;
  }

  .team12_list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .contact15_component {
    grid-column-gap: 3rem;
  }

  .blog15_list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .layout348_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .cta39_card-content {
    padding: 3rem;
  }

  .testimonial5_component {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
  }

  .productnav_component.shadow-small {
    display: none;
  }

  .filters1_sort-link {
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .filters1_layout {
    grid-template-columns: 1fr;
  }

  .filters1_form-block {
    z-index: 999;
    max-width: 100%;
  }

  .filters1_tablet-modal-close-button {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .filters-1-instructions-delete {
    display: none;
  }

  .filters1_filters-wrapper {
    z-index: 9999;
    background-color: var(--white);
    width: 100%;
    max-width: none;
    padding: 3rem 5% 0;
    position: fixed;
    inset: 0%;
    overflow: scroll;
    transform: translate(0, 100%);
  }

  .filters1_heading {
    font-size: 2.25rem;
  }

  .filters1_tablet-modal-menu {
    z-index: 999;
    background-color: var(--white);
    border-top: 1px solid #000;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    margin-top: 3rem;
    margin-left: -5vw;
    padding: .75rem 5%;
    display: flex;
    position: sticky;
    bottom: 0;
    left: 0%;
    right: 0%;
  }

  .filters1_rangeslider2-handle-right {
    width: 1.75rem;
    height: 1.75rem;
  }

  .filters1_rangeslider1-text {
    top: 2rem;
  }

  .filters1_sort-dropdown-list {
    overflow: hidden;
  }

  .filters1_sort-dropdown-list.w--open {
    min-width: 12rem;
  }

  .filters1_tablet-filters-button {
    z-index: 1;
    background-color: var(--white);
    justify-content: center;
    display: flex;
    position: sticky;
    top: 0%;
  }

  .filters1_form-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filters1_list-wrapper {
    margin-bottom: 1.75rem;
  }

  .filters1_sort-dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 1.5rem;
    display: flex;
  }

  .filters1_rangeslider1-handle, .filters1_rangeslider2-handle-left {
    width: 1.75rem;
    height: 1.75rem;
  }

  .product8_list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .product8_image-wrapper.card {
    width: 60%;
    margin-left: 10%;
  }

  .fs_modal-1_wrapper {
    grid-template-columns: 1fr;
  }

  .banner7_icon-wrapper {
    display: block;
  }

  .banner7_content {
    max-width: 100%;
    padding-left: 0;
  }

  .banner7_content-wrapper {
    flex-wrap: wrap;
  }

  .banner7_component {
    max-width: 14%;
    min-height: 40vh;
  }

  .cta45_button-row {
    flex: none;
  }

  .cta45_content {
    flex-flow: column wrap;
    margin-right: 3rem;
  }

  .fs_modal-1_content-2 {
    place-items: start stretch;
    overflow: auto;
  }

  .fs_modal-1_wrapper-2 {
    grid-template-columns: 1fr;
  }

  .fs_modal-1_popup-2 {
    display: none;
  }

  .vergleich {
    color: var(--black);
  }

  .angebote_preis {
    font-size: 1.75rem;
  }

  .angebot_card {
    grid-column-gap: 1rem;
    grid-template-columns: .5fr 1.5fr;
    grid-auto-flow: row;
    height: auto;
    padding: 2rem .5rem;
  }

  .eurozeichen {
    white-space: nowrap;
    font-size: 1.75rem;
  }

  .product-header4_product-details {
    max-height: none;
    padding-right: 0;
    position: static;
    overflow: visible;
  }

  .test_card {
    grid-column-gap: 1rem;
    grid-template-columns: .5fr 1.5fr;
    grid-auto-flow: row;
    height: auto;
    padding: 2rem .5rem;
  }

  .test_content {
    flex-flow: column wrap;
    align-items: flex-start;
    margin-right: 3rem;
  }

  .testtitel {
    font-size: 1.75rem;
  }

  .testswrappervergleich {
    min-height: 0;
  }

  .card-row44_component {
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .fs_cmssort_button {
    display: none;
  }

  .testnoteextern {
    font-size: 1.75rem;
  }

  .content27_topbar_heading {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border: 1px solid var(--black);
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    display: block;
  }

  .content27_accordion-icon {
    display: flex;
  }

  .content27_sidebar-heading-text {
    font-size: 1.125rem;
    font-weight: 600;
  }

  .content27_sidebar {
    z-index: 999;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #fdf6f03d;
    border-radius: 1rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: none;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 1rem 1rem;
    position: fixed;
    inset: auto 0% 2%;
    overflow: visible;
  }

  .content27_link {
    background-color: var(--light-orange);
  }

  .navbar11_dropdown-toggle-avatar {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .navbar11_dropdown-toggle-avatar:hover {
    border-style: none;
  }

  .avatar-image-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .avatar-image-dropdown.avatar-1 {
    position: relative;
  }

  .avatar_dropdown_info {
    position: static;
    overflow: hidden;
  }

  .avatar_dropdown_info.w--open {
    border-style: none;
    width: auto;
    padding: 0;
  }

  .avatar_dropdown_info.authors.w--open {
    width: 100%;
  }

  .author-dropdown-info-wrapper {
    position: absolute;
  }

  .container-custom {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .blog-hero-header {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .margin-top-4 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .content27_topbar {
    width: 100%;
    margin-right: 1rem;
    position: sticky;
    top: 5rem;
  }

  .section_content27 {
    position: absolute;
    overflow: visible;
  }

  .content27_component {
    grid-column-gap: 3rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .content27_sidebar-heading {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border: 1px solid var(--black);
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    display: flex;
  }

  .margin-top-5 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .sidebar_link-wrapper.is-h2 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: row;
  }

  .max-width-blog {
    margin-right: 0;
  }

  .blog-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    padding-left: 232px;
    display: flex;
  }

  .content-left {
    width: 200px;
  }

  .toctext2 {
    font-size: .75rem;
  }

  .text-size-small-2 {
    color: #4f4f4f;
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .max-width-large.align-center {
    margin-top: 1rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small.siegelcontainer {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
    flex-direction: row;
    justify-content: space-around;
  }

  .margin-bottom.margin-xsmall.productimagetop {
    min-height: 24rem;
  }

  .margin-bottom.margin-xsmall.produktdatenblatt, .margin-bottom.margin-xsmall.anbieterhead {
    flex-direction: column;
  }

  .margin-bottom.margin-xsmall.sticky {
    min-height: auto;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .heading-medium {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .button.is-icon.bestangebot {
    flex: 1;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .button-group.productctabuttonbox {
    width: 100%;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .header38_component {
    padding-top: 4rem;
  }

  .navbar10_component {
    min-height: 4rem;
  }

  .navbar10_dropdown-content-left {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .navbar10_dropdown-link-list {
    max-width: none;
  }

  .navbar10_dropdown-content-right {
    padding-bottom: 1.5rem;
  }

  .navbar10_blog-item {
    grid-row-gap: 1rem;
  }

  .cta50_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .cta50_card {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta50_content {
    margin-right: 0;
  }

  .layout350_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout350_tabs-menu {
    display: none;
    position: relative;
    top: 0;
  }

  .layout350_tab-link {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
  }

  .layout350_content {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .layout350_mobile-image-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45rem;
    margin-top: 2.5rem;
    display: flex;
  }

  .layout350_desktop-image-wrapper {
    display: none;
  }

  .layout350_image, .layout350_image.is-image1 {
    width: 80%;
  }

  .cta40_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .cta40_card-content {
    padding: 2rem;
  }

  .layout294_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout294_item {
    text-align: center;
  }

  .blog68_heading-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog68_heading {
    margin-right: 0;
  }

  .blog68_button-row {
    justify-content: flex-start;
    width: 100%;
  }

  .blog68_button-row.show-mobile-landscape {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    display: flex;
  }

  .blog68_component {
    padding-bottom: 6rem;
  }

  .blog68_mask {
    width: 80%;
  }

  .blog68_slide {
    padding-right: 1.5rem;
  }

  .slide68_arrow.left {
    right: 3.5rem;
  }

  .cta12_component {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta12_content {
    margin-right: 0;
  }

  .footer5_top-wrapper {
    grid-row-gap: 2.5rem;
  }

  .footer5_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer5_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-auto-flow: row;
    display: flex;
  }

  .footer5_credit-text {
    margin-top: 1rem;
  }

  .product-header7_component {
    grid-column-gap: 5rem;
    grid-row-gap: 2rem;
    padding-bottom: 1.5rem;
  }

  .product-header7_gallery-slider {
    grid-template-columns: 1fr;
  }

  .product-header7_slider.shadow-medium, .product-header7_main-image {
    height: 35vh;
  }

  .logo2_component {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo2_content-left {
    max-width: none;
  }

  .logo2_logo-list {
    grid-column-gap: 1rem;
    padding-top: 1rem;
  }

  .logo2_wrapper {
    padding: .75rem 1rem;
  }

  .logo2_logo {
    max-height: 3rem;
  }

  .blogpost5_header {
    grid-row-gap: 3rem;
  }

  .blogpost5_content-left {
    width: 100%;
    max-width: none;
  }

  .horizontal_divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .blogpost5_content {
    margin-bottom: 2rem;
  }

  .layout247_content {
    grid-template-columns: 1fr;
  }

  .layout247_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .header76_component {
    padding-top: 4rem;
  }

  .header76_content-right {
    height: 30rem;
  }

  .team8_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .team8_image-wrapper {
    height: 100%;
  }

  .contact7_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .career27_component {
    grid-column-gap: 0rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .career27_list {
    grid-row-gap: 1.5rem;
  }

  .career27_item {
    padding: 1.5rem;
  }

  .career27_image-wrapper {
    margin-bottom: 20px;
    padding-top: 66%;
  }

  .navbar11_dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .avatar_dropdown_more-info {
    align-items: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .navbar6_dropdown-list.shadow-medium.w--open {
    box-shadow: none;
  }

  .navbar6_dropdown-content-left {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .navbar6_dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
  }

  .navbar6_dropdown-link-list.background-color-lightblue.shadow-small {
    grid-template-rows: max-content;
  }

  .navbar6_dropdown-content-right {
    padding: 1.5rem;
  }

  .layout294_icon-wrapper {
    justify-content: center;
  }

  .sun-blog {
    width: 80%;
  }

  .sun-blog.productsun {
    width: 45%;
    top: 7%;
  }

  .sun-product {
    top: 10%;
  }

  .sun-product.productdetail.height {
    height: 40vh;
  }

  .sun-product.sunhubheight {
    height: 42vh;
  }

  .blogpost5_toc-wrapper.max-height-80-30vh {
    max-height: 30vh;
    overflow: auto;
  }

  .fs-toc_link-content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .fs-toc_link {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    white-space: normal;
    word-break: normal;
    margin-top: .1rem;
  }

  .product6_heading-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .product6_heading {
    margin-right: 0;
  }

  .product6_button-row {
    justify-content: flex-start;
    width: 100%;
  }

  .product6_mask {
    width: 90%;
  }

  .product6_slide {
    padding-right: 1.5rem;
  }

  .product6_text-link {
    min-height: 5rem;
  }

  .product6_content-wrapper_numbers.produktdatenblatt {
    border-right-style: none;
    width: 100%;
    margin-top: 20px;
  }

  .product6_content-wrapper_numbers.topnumbersheight {
    min-height: 23rem;
  }

  .faq11_component {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .faq11_question {
    padding: 1rem 1.25rem;
  }

  .faq11_icon {
    width: 1.75rem;
  }

  .faq11_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .numbers-wrapper.padding-xsmall.shadow-medium {
    width: 18.1rem;
  }

  .cable2 {
    width: 50%;
    bottom: 28%;
    left: .9%;
  }

  .header_logo-listt {
    grid-column-gap: 1rem;
    padding-top: 1rem;
  }

  .cta50_buttons-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .blog6_featured-item {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .blog6_featured-image-wrapper {
    padding-top: 66%;
  }

  .blog6_category-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    margin-bottom: 3rem;
    margin-left: auto;
    padding-left: 0;
    display: flex;
    overflow: auto;
  }

  .blog6_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .category-links {
    flex-direction: column;
  }

  .collection-list-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .blogpost5_content-left-mobile {
    width: 100%;
    max-width: none;
  }

  .layout253_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout253_list {
    grid-row-gap: 3rem;
  }

  .banner2_wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .banner2_content {
    align-items: flex-start;
    margin-bottom: 1rem;
    margin-right: 1.75rem;
  }

  .banner2_close-button {
    margin-left: 0;
    position: absolute;
    inset: .5rem .5rem auto auto;
  }

  .layout253_icon-wrapper {
    justify-content: flex-start;
  }

  .blogpost3_content {
    margin-bottom: 2rem;
  }

  .floating-list-wrapper {
    width: 18.1rem;
    padding: .75rem;
  }

  .blog39_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blog39_list.anbieter {
    flex-direction: column;
    display: flex;
  }

  .team12_list, .contact15_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .testimonial4_client {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial4_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .testimonial4_client-info {
    margin-bottom: 1rem;
  }

  .blog15_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blog15_item {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .blog15_image-wrapper {
    height: 100%;
  }

  .heading-style-h5-2 {
    font-size: 1.25rem;
  }

  .career20_tabs-menu {
    justify-content: flex-start;
    align-self: auto;
    width: 100vw;
    margin-left: -5vw;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    overflow: auto;
  }

  .career20_tab-link {
    flex: none;
  }

  .career20_item {
    padding: 1.5rem;
  }

  .career20_list {
    grid-row-gap: 1.5rem;
  }

  .layout348_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout348_mobile-image-wrapper {
    width: 100%;
    margin-top: 2.5rem;
    display: block;
  }

  .layout348_desktop-image-wrapper {
    display: none;
  }

  .layout348_content {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .layout348_mobile-image {
    position: static;
  }

  .tab-title-wrapper {
    grid-column-gap: 1rem;
    align-items: center;
    display: flex;
  }

  .toctext {
    white-space: normal;
  }

  .cta39_card-content {
    padding: 2rem;
  }

  .testimonial5_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial5_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .testimonial5_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .testimonial5_client-info {
    margin-bottom: 1rem;
  }

  .heading-style-h6-2 {
    font-size: 1.125rem;
  }

  .productnav_component {
    min-height: 4rem;
  }

  .datenblatt.popup {
    overflow: hidden;
  }

  .submit-button-wrapper {
    width: 120px;
    height: 120px;
  }

  .form-field {
    min-height: 50px;
    font-size: 15px;
    line-height: 21px;
  }

  .form-field.text-area {
    min-height: 120px;
    max-height: 120px;
  }

  .main-separator-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .comment-loader-wrapper {
    font-size: 14px;
    line-height: 20px;
    top: 135px;
  }

  .single-comment-wrapper {
    margin-bottom: 25px;
  }

  .profile-image {
    width: 52px;
    height: 52px;
  }

  .author-date-details {
    margin-top: 18px;
  }

  .comment-body {
    font-size: 15px;
    line-height: 25px;
  }

  .single-review-wrapper {
    margin-bottom: 25px;
  }

  .review-body {
    font-size: 15px;
    line-height: 25px;
  }

  .filters1_layout {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .filters1_filters-wrapper {
    transform: translate(0, 100%);
  }

  .filters1_tablet-modal-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .filters1_filter-group-heading {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .filters1_accordion-icon {
    width: 1.75rem;
  }

  .product8_list {
    grid-column-gap: 1.25rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .product8_image-wrapper {
    height: 100%;
  }

  .product8_image-wrapper.card {
    margin-left: auto;
    margin-right: auto;
  }

  .fs_modal-1_close {
    padding: 1rem;
  }

  .fs_modal-1_content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 3rem 2rem;
  }

  .fs_modal-1_popup {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .product-header5_heading {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .product-header5_accordion-icon {
    width: 1.75rem;
  }

  .banner7_close-button {
    margin-left: 0;
    position: static;
    inset: auto 0% 0%;
  }

  .banner7_text-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .banner7_icon-wrapper {
    display: block;
  }

  .banner7_content {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .banner7_content-wrapper {
    flex-flow: column wrap;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .banner7_component {
    float: left;
    clear: right;
    max-width: 20%;
    min-height: auto;
    margin-top: 4rem;
    margin-bottom: -50px;
    margin-right: 10px;
    position: sticky;
    top: 8%;
  }

  .cta45_button-row {
    justify-content: flex-start;
    width: 100%;
  }

  .cta45_content {
    flex-flow: column wrap;
    margin-right: 0;
  }

  .fs_modal-1_close-2 {
    padding: 1rem;
  }

  .fs_modal-1_content-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    align-items: start;
    padding: .25rem 2rem 3rem;
    overflow: scroll;
  }

  .fs_modal-1_popup-2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: none;
  }

  .filters1_filter-group-heading_closed {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .angebote_preis {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .angebot_card {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: .25fr 1fr;
    grid-auto-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .angebot_card_container {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .eurozeichen {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .test_card_container {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .test_card {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: .35fr 1fr;
    grid-auto-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .test_content {
    flex-wrap: wrap;
    margin-right: 0;
  }

  .testtitel {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .card-row44_card-content {
    padding: 1.5rem;
  }

  .card-row44_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .card-row44_card {
    grid-template-columns: 1fr;
  }

  .testnoteextern {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .fs-cc-prefs2_title {
    font-size: 20px;
  }

  .fs-cc-banner2_text-link {
    margin-right: 8px;
  }

  .fs-cc-banner2_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner2_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-banner2_button {
    margin-left: 0;
    margin-right: 8px;
  }

  .content-left-sidebar {
    flex-direction: column;
  }

  .content27_sidebar-heading-text {
    font-size: 1rem;
  }

  .content27_sidebar {
    z-index: 999;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background-color: #fff3;
    width: auto;
    max-width: 80%;
    height: auto;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1rem;
    display: flex;
    position: fixed;
    top: auto;
  }

  .avatar_dropdown_info.authors.w--open {
    width: 100%;
  }

  .author-dropdown-info-wrapper {
    position: absolute;
  }

  .margin-top-4 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .content27_topbar {
    z-index: 999;
    background-color: var(--white);
    max-width: none;
    height: 100%;
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 1rem;
    display: flex;
    position: sticky;
    top: 5rem;
  }

  .section_content27 {
    position: static;
  }

  .margin-top-5 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-grid {
    grid-row-gap: 62px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .content-left {
    width: auto;
    position: relative;
  }

  .table-content-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .table_feature, .table_row-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .table-of-content-opener {
    width: 2rem;
    height: 2rem;
    left: 92%;
  }

  .header23-flex {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .bundlelist {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .max-width-large.anbieter {
    width: 90%;
    padding-left: 5%;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small.siegelcontainer {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .margin-bottom.margin-xsmall.productimagetop {
    min-height: 30rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .icon-embed-medium {
    width: 2rem;
    height: 2rem;
  }

  .text-size-regular {
    font-size: 1rem;
  }

  .button-group.productctabuttonbox {
    flex-direction: column;
    align-items: stretch;
  }

  .text-rich-text {
    overflow-wrap: anywhere;
  }

  .padding-section-small.anbieter {
    flex-direction: column;
  }

  .padding-global.padding-custom4 {
    padding-left: 5%;
    padding-right: 7%;
  }

  .padding-section-large.rechner {
    padding-top: 0;
  }

  .header38_component {
    grid-template-columns: 1fr;
  }

  .navbar10_dropdown-content-left {
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar10_dropdown-link {
    padding-left: 0;
  }

  .navbar10_blog-list {
    grid-template-columns: 1fr;
  }

  .navbar10_blog-item {
    flex-direction: column;
  }

  .section_cta50.home {
    height: 40rem;
  }

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .section_layout350.padding-top.padding-large {
    padding-top: 0;
  }

  .layout350_component {
    grid-template-columns: 1fr;
  }

  .layout350_tabs-menu {
    justify-content: flex-start;
    width: 90vw;
    overflow: scroll;
  }

  .layout350_content {
    height: auto;
  }

  .layout350_mobile-image-wrapper {
    height: 40rem;
    min-height: 40rem;
    margin-top: 0;
  }

  .layout350_image {
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .layout350_image.is-image1 {
    width: 100%;
  }

  .layout350_image.is-image2, .layout350_image.is-image3, .layout350_image.is-image4 {
    display: flex;
  }

  .cta40_card, .layout294_component {
    grid-template-columns: 1fr;
  }

  .blog68_mask {
    width: 95%;
  }

  .blog68_item-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer5_top-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .footer5_logo-link {
    max-width: 150px;
  }

  .footer5_legal-list {
    flex-direction: column;
    display: flex;
  }

  .product-header7_component {
    grid-template-columns: 1fr;
  }

  .product-header7_slider.shadow-medium, .product-header7_main-image {
    height: 25vh;
  }

  .logo2_logo-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .logo2_wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .logo2_logo {
    max-height: 3rem;
  }

  .blogpost5_header {
    grid-template-columns: 1fr;
  }

  .blogpost5_form-wrapper {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .blogpost5_share-wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .layout247_content, .layout247_list, .header76_component {
    grid-template-columns: 1fr;
  }

  .section_team8 {
    overflow: hidden;
  }

  .team8_list, .contact7_component, .career27_component {
    grid-template-columns: 1fr;
  }

  .career27_image-wrapper {
    padding-top: 0%;
    display: none;
  }

  .avatar_dropdown_more-info {
    align-items: center;
    padding-left: 1rem;
  }

  .navbar6_dropdown-content-left {
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar6_dropdown-link-list.background-color-lightblue.shadow-small {
    grid-template-columns: 1fr;
  }

  .navbar6_dropdown-content-right {
    max-width: none;
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .navbar6_dropdown-content-wrapper {
    width: 100%;
  }

  .navbar6_dropdown-blog-item-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: .5rem;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    max-width: none;
    display: grid;
  }

  .navbar6_blog-item {
    flex-direction: column;
    display: flex;
  }

  .navbar6_blog-content {
    margin-top: .5rem;
  }

  .sun-blog {
    width: 120%;
    top: 10%;
    right: -20%;
  }

  .sun-product {
    width: 100%;
    top: 17%;
    right: 0%;
  }

  .sun-product.productdetail.height {
    height: 30vh;
  }

  .sun-product.sunhubheight {
    height: 35vh;
  }

  .blogpost5_toc-wrapper, .product6_mask {
    width: 100%;
  }

  .product6_text-link {
    min-height: 4rem;
  }

  .product6_content-wrapper_numbers.produktdatenblatt {
    width: 100%;
  }

  .image-overlay-layer {
    background-image: linear-gradient(100deg, var(--primary-dark) 8%, #050d1a00 70%, transparent);
  }

  .faq11_component {
    grid-template-columns: 1fr;
  }

  .layout350_item-wrapper {
    width: 331.219px;
  }

  .numbers-wrapper.padding-xsmall.shadow-medium {
    grid-column-gap: 0px;
    grid-template-columns: .5fr 1fr .4fr;
    width: 17rem;
    bottom: -5%;
    left: -5%;
  }

  .stecker {
    width: 3rem;
    height: 3rem;
    top: 0;
    right: 7%;
  }

  .cable1 {
    width: 21.5rem;
    bottom: -5%;
    left: -19.5%;
  }

  .cable2 {
    width: 56%;
    bottom: 24%;
    left: -2.6%;
  }

  .header_logo-listt {
    justify-content: center;
  }

  .header83_content-wrapper {
    height: 100vh;
  }

  .header83_images-layout {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    transform: scale(3.4);
  }

  .header83_image.centerfold {
    object-fit: cover;
    object-position: 70% 80%;
  }

  .cta50_buttons-wrapper {
    grid-column-gap: 16px;
    grid-template-columns: 1fr;
  }

  .category-links {
    flex-direction: column;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

  .product-top {
    top: 4rem;
  }

  .product6_arrow-sticky.shadow-medium {
    top: 75vh;
    right: 0%;
  }

  .product6_arrow-wrapper {
    width: 105%;
  }

  .layout253_component, .layout253_list {
    grid-template-columns: 1fr;
  }

  .blogpost3_content-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .blogpost3_tag-list-wrapper {
    width: 100%;
  }

  .floating-list-wrapper {
    bottom: 0%;
  }

  .floating-list-wrapper.bottom {
    width: auto;
    bottom: 7%;
  }

  .cta41_card {
    grid-template-columns: 1fr;
  }

  .button-group-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact15_component, .contact15_contact-list {
    grid-template-columns: 1fr;
  }

  .testimonial4_client {
    text-align: left;
    align-items: flex-start;
  }

  .blog15_item {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .blog15_image-link {
    width: 100%;
    display: flex;
  }

  .career20_tabs-menu.no-scrollbar {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .layout348_component {
    grid-template-columns: 1fr;
  }

  .layout348_content {
    height: auto;
  }

  .waiting-icon, .send-icon {
    width: 50%;
    height: 50%;
  }

  .submit-button-wrapper {
    width: 80px;
    height: 100px;
  }

  .form-field {
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 15px;
  }

  .form-field.text-area {
    min-height: 100px;
    max-height: 100px;
    padding-top: 9px;
    padding-right: 90px;
  }

  .comments-section-header {
    position: relative;
  }

  .comment-loader-wrapper {
    max-height: 32px;
    font-size: 12px;
    font-weight: 400;
  }

  .single-comment-wrapper {
    flex-direction: column;
    margin-bottom: 35px;
  }

  .author-date-details {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .fs_starrating-1_group.top, .fs_starrating-1_group.top.vergleich {
    display: block;
  }

  .fs_starrating-1_wrapper.top {
    display: flex;
  }

  .single-review-wrapper {
    flex-direction: column;
    margin-bottom: 35px;
  }

  .filters1_filters-wrapper {
    transform: translate(0, 100%);
  }

  .product8_image-link.card {
    max-width: 7rem;
  }

  .product8_image-link.card.offer {
    display: none;
  }

  .product8_image-wrapper.card {
    width: 80%;
    height: auto;
    position: static;
  }

  .fs_modal-1_content {
    padding: .25rem;
  }

  .fs_modal-1_wrapper {
    width: 80%;
  }

  .fs_modal-1_popup {
    display: none;
  }

  .reviewbadgew {
    flex: 0 auto;
  }

  .banner7_close-button {
    position: static;
  }

  .banner7_content {
    align-items: center;
    padding-right: 0;
  }

  .banner7_content-wrapper {
    flex-direction: column;
  }

  .banner7_component {
    max-width: 30%;
    margin-bottom: -120px;
  }

  .banner7_component.rechner {
    float: right;
    clear: left;
    border-left: 1px solid #000;
    border-right-style: none;
    margin-bottom: -150px;
    margin-right: 0;
    left: auto;
    right: 0;
  }

  .cta45_button-row {
    flex-flow: row;
  }

  .fs_modal-1_popup-2 {
    display: none;
  }

  .angebote_preis {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .angebot_card {
    flex-direction: row;
    align-items: stretch;
    height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .angebot_card.amazon {
    background-color: #ff99004f;
  }

  .angebot_card.ebay {
    background-color: #3333ff52;
  }

  .eurozeichen {
    white-space: normal;
    font-size: 1.2rem;
  }

  .shopbeschreibung {
    grid-column-gap: 0rem;
    flex-direction: column;
    justify-content: space-between;
  }

  .product-header4_tabs-menu {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .testswrappertop {
    align-items: center;
    display: flex;
  }

  .test_card {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .testheadingwrapper {
    flex-wrap: wrap;
  }

  .testtitel {
    font-size: 1.35rem;
  }

  .reviewbadgewvergleich {
    flex: 1;
  }

  .testswrappervergleich {
    align-items: center;
    display: flex;
  }

  .card-row44_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .blog_multi_authors {
    flex-direction: column;
  }

  .testnoteextern {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .mobilebg {
    background-color: #0000;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 125px;
    flex: 1;
    align-self: auto;
    width: 100%;
    height: 100%;
    margin-top: 5px;
    margin-bottom: 0;
    padding-bottom: 40px;
    padding-right: 0;
    display: block;
  }

  .fs-cc-prefs2_close {
    padding: 8px;
  }

  .fs-cc-prefs2_label {
    font-size: 14px;
  }

  .fs-cc-banner2_component {
    width: 100%;
  }

  .fs-cc-prefs2_title {
    font-size: 18px;
  }

  .fs-cc-prefs2_button.fs-cc-button-alt {
    margin-bottom: 8px;
  }

  .fs-cc-prefs2_content {
    padding: 24px;
  }

  .fs-cc-prefs2_submit {
    margin-top: 8px;
  }

  .fs-cc-prefs2_component {
    padding: 24px;
  }

  .content27_link-wrapper.is-h3, .content27_link-wrapper.is-h4 {
    display: none;
  }

  .content27_topbar_heading, .content27_sidebar-heading-text {
    align-self: auto;
  }

  .author-dropdown-info-wrapper {
    right: 0;
  }

  .authors-container {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .margin-top-4 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .content27_sidebar-heading {
    align-self: auto;
  }

  .margin-top-5 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

#w-node-_8b79fd1f-1cc7-3483-ac85-f99e80698ba5-3ed280aa, #w-node-_8b79fd1f-1cc7-3483-ac85-f99e80698bab-3ed280aa, #w-node-_8b79fd1f-1cc7-3483-ac85-f99e80698bb1-3ed280aa {
  align-self: start;
}

#w-node-b5a7d87c-97d7-003c-5be9-b186b670e732-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e733-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e734-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e735-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e736-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e737-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e738-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e739-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73a-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73b-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73c-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73d-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73e-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73f-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e740-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e741-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e742-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e743-3ed280aa, #w-node-_9c611dec-132a-9938-3589-644fbcc123d3-3ed280aa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_85cecc26-81bc-384c-204d-d3baaf0ce6c8-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_37e56664-0410-3b8b-e630-8e948ee3bde6-3ed280aa, #w-node-_37e56664-0410-3b8b-e630-8e948ee3bdee-3ed280aa {
  justify-self: center;
}

#w-node-fd59b936-5aa6-cc27-6b3d-904f633f685d-3ed280aa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58e15f9c-8429-176d-8787-dd480783ed75-3ed280aa {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_58e15f9c-8429-176d-8787-dd480783ed78-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_89e39e49-2c95-8a47-99fa-433a3dd8d54a-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_58e15f9c-8429-176d-8787-dd480783ed7d-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b3d5b444-4398-b6c3-cc56-ee1449928989-3ed280aa, #w-node-b3d5b444-4398-b6c3-cc56-ee144992898f-3ed280aa, #w-node-b3d5b444-4398-b6c3-cc56-ee1449928995-3ed280aa {
  align-self: start;
}

#w-node-_5dc6f411-403e-ad9c-b7b3-7b649fcec4a3-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_5dc6f411-403e-ad9c-b7b3-7b649fcec4a8-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_5dc6f411-403e-ad9c-b7b3-7b649fcec4ab-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_5dc6f411-403e-ad9c-b7b3-7b649fcec4b0-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_779c9c94-de9d-3c35-6929-3990b0bed1d0-3ed280aa, #w-node-_779c9c94-de9d-3c35-6929-3990b0bed1d6-3ed280aa, #w-node-_779c9c94-de9d-3c35-6929-3990b0bed1dc-3ed280aa {
  align-self: start;
}

#w-node-ee09ab37-691a-c173-156a-f9bdcfc18e2b-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-ee09ab37-691a-c173-156a-f9bdcfc18e31-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ee09ab37-691a-c173-156a-f9bdcfc18e34-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-ee09ab37-691a-c173-156a-f9bdcfc18e39-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-bce18367-1969-0962-0189-851dcb442a64-3ed280aa, #w-node-bce18367-1969-0962-0189-851dcb442a6a-3ed280aa, #w-node-bce18367-1969-0962-0189-851dcb442a70-3ed280aa {
  align-self: start;
}

#w-node-_4e4b9437-b709-d67e-aa9b-cc8a550b3315-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_084e535e-f8b4-f8ba-a592-91c9b54be87a-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_532d1c1c-333a-e38b-1ed2-c5be5217cee4-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_084e535e-f8b4-f8ba-a592-91c9b54be87f-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_2480e005-308b-ebf8-2cda-3f7a0533b813-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_34760824-db12-3b2b-ca6f-4d18932c5aa4-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_95a5f42a-8477-579b-7ca8-4ec1f3fe1061-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_34760824-db12-3b2b-ca6f-4d18932c5aa9-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_809540a4-01c1-64d9-5fb9-cef9397dd950-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_5ea5c0dc-e32c-67f2-d906-5872764416dc-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_5ea5c0dc-e32c-67f2-d906-5872764416df-3ed280aa {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_5ea5c0dc-e32c-67f2-d906-5872764416e1-3ed280aa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b189a-6c6b1892 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b18b4-6c6b1892 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b18c1-6c6b1892 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_750ff34e-230f-51e2-301b-8c68e039be16-3ed280fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_34d4e5b4-0f2a-1d93-066f-34f239c78f47-3ed28101 {
  align-self: center;
}

#w-node-ab15c5c4-f43a-0f7c-c79f-b422364bf34e-364bf349 {
  place-self: center;
}

#w-node-_59afe395-aa98-cbdb-b580-5715d78d4a31-d78d4a2a, #w-node-b80d7e1e-bbec-738c-115b-33c91de9d813-3ed28108, #w-node-c38e54c4-e535-a84a-53df-57ec7a77a184-3ed28111 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd2cad2c-1d1b-5ceb-d576-4064a21ca131-3ed28112 {
  order: 9999;
}

#w-node-_3da58412-1de3-deaa-a034-d437085866a0-3ed28112 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_78ae9d8f-6e37-6384-1eca-fff5327113da-3ed28112, #w-node-_78ae9d8f-6e37-6384-1eca-fff5327113e0-3ed28112, #w-node-_78ae9d8f-6e37-6384-1eca-fff5327113e6-3ed28112 {
  align-self: start;
}

#w-node-c25b6ea1-b62e-8d66-3f23-c8208825dff3-3ed28128, #w-node-ad64e52e-8b79-e3b9-4779-7c0daa71150d-3ed28128, #w-node-ed07709b-9d9b-6795-e014-e1c5345a0671-3ed28128, #w-node-_64265e6d-9077-5b11-8520-e68654910f87-3ed28128, #w-node-ad64e52e-8b79-e3b9-4779-7c0daa71151b-3ed28128 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ad64e52e-8b79-e3b9-4779-7c0daa711519-3ed28128 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-ad64e52e-8b79-e3b9-4779-7c0daa71151a-3ed28128 {
  justify-self: end;
}

#w-node-ad64e52e-8b79-e3b9-4779-7c0daa71157a-3ed28128, #w-node-ad64e52e-8b79-e3b9-4779-7c0daa711578-3ed28128, #w-node-ad64e52e-8b79-e3b9-4779-7c0daa711576-3ed28128, #w-node-_28a64c48-a5cc-bc01-e827-60bf1a15ed97-3ed28128, #w-node-_6d5348d7-eefe-ff6e-9f22-4ab467151aa9-3ed28128, #w-node-_3ab7ec8c-c5df-1481-097b-657717f457e2-17f457d5, #w-node-_60a793f5-6a98-4e5b-7a7b-cb8cd99ab6c3-3ed28145, #w-node-_8997ff83-87fc-75b0-8aee-058eeaed16ec-3ed28145 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8997ff83-87fc-75b0-8aee-058eeaed1703-3ed28145 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#What-is-a-self-sufficient-house.w-node-_7d8ee8ef-228a-976c-a885-ca2009b563e8-3ed28145, #Is-complete-self-sufficiency-possible.w-node-_0ecc3b40-c593-b218-44cc-359f4d31fd01-3ed28145, #Self-sufficient-house-versus-passive-house.w-node-_97d07cfd-1955-ff0d-2ae2-4f923263236b-3ed28145, #Examples-of-fully-self-sufficient-houses.w-node-a94ca4c7-fe39-b497-aae8-81d7e33151ff-3ed28145, #Maximum-independence-through-a-self-sufficient-house.w-node-_6cbd5280-979c-5300-945b-1a67a672d4f3-3ed28145, #Is-it-possible-to-build-a-self-sufficient-house-in-Germany.w-node-_797c5a40-4716-71ef-171b-506ea0190906-3ed28145, #How-expensive-is-a-self-sufficient-house.w-node-_1f6207de-19c6-917e-7e86-67bf4c4ed079-3ed28145, #Consumers-reduce-their-costs.w-node-e5a959c5-2415-dc8e-bd62-2be17d6e131f-3ed28145, #Investment-in-energy-storage.w-node-c26dc523-c528-b2ab-e74e-0f0d8800f7dc-3ed28145, #Self-sufficient-living-Is-a-self-sufficient-house-worth-it-for-me.w-node-f90c8ac1-4709-6d86-9554-15574a1158af-3ed28145, #Sustainably-increase-the-value-of-real-estate.w-node-_78bc7266-74b1-669d-f124-41886a434845-3ed28145, #Disadvantages-of-the-self-sufficient-house.w-node-a01d1527-d4a5-655e-eb2d-af4637ba749b-3ed28145, #Realize-self-sufficiency-in-waste-water.w-node-_90e88940-65b2-75c5-7286-5763a1dea47a-3ed28145, #Self-sufficient-energy-supply---control-the-risks-of-failure.w-node-ad393ef2-6c56-eb52-d72a-c18faad7af4c-3ed28145, #The-mobile-self-sufficient-house---environmentally-friendly-on-the-road-with-the-caravan.w-node-_5249b886-540e-b63a-607b-2e00c9373f0c-3ed28145, #What-is-there-to-consider-when-planning-the-self-sufficient-house.w-node-_043ffe69-742f-21de-9ccb-bfb61a804309-3ed28145, #Self-sufficient-internet-is-possible.w-node-d9b57a61-e2a3-c6e7-6f72-92da9351715b-3ed28145, #Modular-living-in-the-mini-house.w-node-_0cf99a93-664b-2a00-5d1c-112e70a1f743-3ed28145, #Self-sufficient-power-supply-via-PV-systems.w-node-_92e3fa01-5e1a-d6c5-7e88-6a4d25752f3f-3ed28145, #Self-sufficient-living-with-intelligent-energy-management-system-EMS.w-node-_3a96d923-8522-653d-5fcb-46b474e03d3f-3ed28145, #Various-options-for-self-sufficient-heat-supply.w-node-d3c75c16-6546-1391-8830-822810a97b75-3ed28145, #Get-offers-for-energy-systems-now.w-node-_6a7ec502-db7d-17f3-64c5-87ef613d5848-3ed28145, #Conclusion-How-much-independence-is-possible-in-a-self-sufficient-house.w-node-_5b793105-b6d9-20e7-a18f-bdc708c5cd72-3ed28145, #w-node-cc67a931-3464-84c9-983b-160605d024df-3ed2815c, #w-node-_456031d6-ac6c-31c9-d923-5a4d850575f5-3ed28189, #w-node-_8eb31ffe-bdcf-289f-b08f-3838f9095119-3ed28189 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_00fadd06-e795-63c9-ac92-054be2cbf9a7-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9ad-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9b3-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9bf-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9c5-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9cb-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9d7-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9dd-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbf9e3-3ed2818b {
  align-self: start;
}

#w-node-_00fadd06-e795-63c9-ac92-054be2cbf9ed-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_00fadd06-e795-63c9-ac92-054be2cbfac0-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfad9-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfaf2-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfb0c-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfb28-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfb43-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfb5e-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfb88-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfb93-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfb9e-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfba9-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfbb4-3ed2818b, #w-node-_00fadd06-e795-63c9-ac92-054be2cbfbbf-3ed2818b {
  align-self: center;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372b1-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372c9-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372cd-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372d0-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372d2-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372de-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372e4-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372ea-3ed2818b {
  align-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372ff-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537301-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537304-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537306-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537312-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537318-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153731e-3ed2818b {
  align-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537334-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537337-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153733a-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153733c-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537348-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153734e-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537354-3ed2818b {
  align-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537375-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153737b-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537381-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537387-3ed2818b {
  align-self: center;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537397-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153739d-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373a3-3ed2818b {
  align-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373c1-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373c7-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373ca-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373ce-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373d7-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373dc-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373df-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373e1-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373eb-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373ee-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373f1-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373f3-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715373fa-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537400-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537406-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153740c-3ed2818b {
  align-self: center;
}

#w-node-e4a3eb82-9d66-d305-15e7-01fd2110a3fa-3ed2818b, #w-node-e4a3eb82-9d66-d305-15e7-01fd2110a400-3ed2818b, #w-node-e4a3eb82-9d66-d305-15e7-01fd2110a406-3ed2818b, #w-node-e4a3eb82-9d66-d305-15e7-01fd2110a40c-3ed2818b {
  align-self: start;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be1217967-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be1217969-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be121796b-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be121796d-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be1217972-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be1217974-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be1217979-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be121797b-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be121797e-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be1217980-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be1217983-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be1217985-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be121798d-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be121798f-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be1217990-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be1217991-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be1217996-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be1217997-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be1217998-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be121799a-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be121799b-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be121799c-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be121799e-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be121799f-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179a0-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179a2-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179a3-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179a6-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179a7-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179aa-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179ab-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179ae-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179af-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179b2-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179b3-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179b6-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179b7-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179ba-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179bb-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179be-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179bf-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179c2-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179c3-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179c6-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179c7-3ed2818b {
  justify-self: end;
}

#w-node-_99800b10-072e-cb7e-6a9a-3d3be12179cd-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179cf-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179d2-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179d4-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179d7-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179d9-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179dc-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179de-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179e1-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179e3-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179e8-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179ea-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179ed-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179ef-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179f2-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179f4-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179f7-3ed2818b, #w-node-_99800b10-072e-cb7e-6a9a-3d3be12179f9-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c615-3ed2818b {
  justify-self: end;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c61d-3ed2818b, #w-node-f79470e4-69d2-9068-9037-a7f071e8c623-3ed2818b, #w-node-f79470e4-69d2-9068-9037-a7f071e8c629-3ed2818b {
  align-self: start;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c634-3ed2818b {
  justify-self: auto;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c635-3ed2818b, #w-node-f79470e4-69d2-9068-9037-a7f071e8c639-3ed2818b {
  justify-self: center;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c642-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c644-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c647-3ed2818b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-f79470e4-69d2-9068-9037-a7f071e8c649-3ed2818b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_4b1b5265-90f6-65a0-3e7a-ccfbaff6b846-3ed2818b {
  justify-self: end;
}

#w-node-_4b1b5265-90f6-65a0-3e7a-ccfbaff6b84e-3ed2818b, #w-node-_4b1b5265-90f6-65a0-3e7a-ccfbaff6b854-3ed2818b, #w-node-_4b1b5265-90f6-65a0-3e7a-ccfbaff6b85a-3ed2818b {
  align-self: start;
}

#w-node-_477a6b16-93bb-1ef4-546e-4a3513f95cad-3ed2818b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952bf-3ed2818b {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952d3-3ed2818b {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952de-3ed2818b {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_76bad522-b6d1-2728-1067-741bb4bfcb26-b4bfcb24 {
  place-self: stretch stretch;
}

#w-node-e40bd749-f7a0-8195-6a80-03f268149b18-3ed2818e, #w-node-e40bd749-f7a0-8195-6a80-03f268149b19-3ed2818e, #w-node-e40bd749-f7a0-8195-6a80-03f268149b1b-3ed2818e, #w-node-e40bd749-f7a0-8195-6a80-03f268149c17-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d770-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d772-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d774-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d776-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d77a-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d77c-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d780-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d782-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d784-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d786-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d788-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d78a-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d791-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d793-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d794-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d795-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d79a-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d79b-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d79c-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d79e-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d79f-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7a0-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7a2-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7a3-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7a4-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7a6-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7a7-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7aa-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7ab-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7ae-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7af-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7b2-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7b3-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7b6-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7b7-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7ba-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7bb-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7be-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7bf-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7c2-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7c3-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7c6-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7c7-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7ca-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7cb-3ed2818e {
  justify-self: end;
}

#w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7d1-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7d3-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7d5-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7d7-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7d9-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7db-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7dd-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7df-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7e1-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7e3-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7e7-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7e9-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7eb-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7ed-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7ef-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7f1-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7f3-3ed2818e, #w-node-bba060ac-5a0e-a613-26b4-8da79bb6d7f5-3ed2818e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-3ed2818f {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-3ed2818f, #w-node-_5d45b7ab-29d5-12ba-0704-573bdcb2f40c-3ed2818f {
  justify-self: start;
}

#w-node-fb592210-121e-d16f-0944-9077ec485405-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28246c14-1aed-bb90-656b-065a2a1a3c1e-3ed2818f {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-baa1a644-47a4-6bce-7f1e-7a9476de4c6e-3ed2818f {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_7ceba4e2-34d8-a915-7e71-a5be55430ef1-3ed2818f {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: center;
}

#w-node-_2088cc33-5b83-6909-ec96-9fababe52a79-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_706c2cfd-b89a-b0a2-a1e3-19689656c3da-3ed2818f {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: stretch;
}

#w-node-d5f82a56-37dc-e7d8-c22f-620017fe735e-3ed2818f {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-b4ef5246-202d-d079-81ae-f5227cc901a4-3ed2818f {
  grid-area: 1 / 3 / 2 / 4;
  place-self: stretch center;
}

#w-node-d1c2ac47-b1e0-d8db-5d51-705f2fa4bcf0-3ed2818f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_04c35c19-9f75-ea58-bc2e-fc92d2914bc1-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86386-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638f-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863a4-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863b0-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-3ed2818f {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-3ed2818f {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-3ed2818f, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-3ed2818f, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369536-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369537-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-3ed2818f {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-3ed2818f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-3ed2818f {
  justify-self: start;
}

#w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d11-3ed28195 {
  justify-self: end;
}

#w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d20-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d21-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d22-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d23-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d24-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d25-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d26-3ed28195, #w-node-a8900963-e756-acce-a826-06af349d855b-3ed28195, #w-node-a8900963-e756-acce-a826-06af349d855c-3ed28195, #w-node-a8900963-e756-acce-a826-06af349d855d-3ed28195, #w-node-a8900963-e756-acce-a826-06af349d855e-3ed28195, #w-node-a8900963-e756-acce-a826-06af349d855f-3ed28195, #w-node-a8900963-e756-acce-a826-06af349d8560-3ed28195, #w-node-a8900963-e756-acce-a826-06af349d8561-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d2f-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d30-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d31-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d32-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d33-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d34-3ed28195, #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d35-3ed28195, #w-node-_4e921d9f-4c03-af45-579d-311273d6b2bc-3ed28195, #w-node-_4e921d9f-4c03-af45-579d-311273d6b2bd-3ed28195, #w-node-_4e921d9f-4c03-af45-579d-311273d6b2be-3ed28195, #w-node-_4e921d9f-4c03-af45-579d-311273d6b2bf-3ed28195, #w-node-_4e921d9f-4c03-af45-579d-311273d6b2c0-3ed28195, #w-node-_4e921d9f-4c03-af45-579d-311273d6b2c1-3ed28195, #w-node-_4e921d9f-4c03-af45-579d-311273d6b2c2-3ed28195 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_959043a3-7e5f-5e1b-c40c-c56de99accbe-3ed28195, #w-node-_959043a3-7e5f-5e1b-c40c-c56de99accc7-3ed28195, #w-node-_959043a3-7e5f-5e1b-c40c-c56de99accd0-3ed28195 {
  align-self: start;
}

#w-node-be623087-3262-df61-f7e8-4a67c5c9d854-3ed28195, #w-node-_4d12e1a6-fb22-5563-1289-2684afe4634b-3ed28195 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_67b57dec-d168-4ed7-b5bd-4b3cc853a1ee-3ed28195 {
  align-self: start;
}

#w-node-f91bd0aa-0ac3-feff-28f7-5ba52292ce71-3ed28195, #w-node-_3b1dee39-dd3a-6019-4386-a099a1d13a63-3ed28195 {
  align-self: center;
}

#w-node-_4595848c-8f49-d344-2a58-dc4e4d1840c2-3ed28195 {
  justify-self: start;
}

#w-node-_44a107d5-f5d5-12f5-e2be-90d5d038c8a3-d35fdc9d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2b46a17c-e28b-2581-2c8b-57f2177782c2-4062d9de, #w-node-_2b46a17c-e28b-2581-2c8b-57f2177782c8-4062d9de, #w-node-_2b46a17c-e28b-2581-2c8b-57f2177782ce-4062d9de {
  align-self: start;
}

#w-node-_70b5ea4f-55c7-87fd-fa31-241d27ab4883-4062d9de {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b5ea4f-55c7-87fd-fa31-241d27ab489e-4062d9de, #w-node-_3f506abe-0be7-1fc2-6b1b-9a4d822587d4-4062d9de, #w-node-e4ad32ef-35ff-1bd7-7901-36b9ee00fedc-ee00fed3, #w-node-e4ad32ef-35ff-1bd7-7901-36b9ee00fee4-ee00fed3 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-b5a7d87c-97d7-003c-5be9-b186b670e734-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e736-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e738-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73a-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73c-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e73e-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e740-3ed280aa, #w-node-b5a7d87c-97d7-003c-5be9-b186b670e742-3ed280aa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_89e39e49-2c95-8a47-99fa-433a3dd8d54a-3ed280aa, #w-node-_5dc6f411-403e-ad9c-b7b3-7b649fcec4a3-3ed280aa, #w-node-_5dc6f411-403e-ad9c-b7b3-7b649fcec4ab-3ed280aa, #w-node-ee09ab37-691a-c173-156a-f9bdcfc18e2b-3ed280aa, #w-node-ee09ab37-691a-c173-156a-f9bdcfc18e34-3ed280aa {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b1898-6c6b1892 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_3ab7ec8c-c5df-1481-097b-657717f457da-17f457d5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_3ab7ec8c-c5df-1481-097b-657717f4581f-17f457d5 {
    order: -9999;
  }

  #w-node-_8997ff83-87fc-75b0-8aee-058eeaed16e7-3ed28145 {
    justify-self: auto;
  }

  #w-node-_8997ff83-87fc-75b0-8aee-058eeaed1703-3ed28145 {
    justify-self: start;
  }

  #w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372d0-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d76715372ff-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537304-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d7671537334-3ed2818b, #w-node-_94fb1e83-cb82-a6fc-7cbf-6d767153733a-3ed2818b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-f79470e4-69d2-9068-9037-a7f071e8c615-3ed2818b {
    justify-self: auto;
  }

  #w-node-_4b1b5265-90f6-65a0-3e7a-ccfbaff6b846-3ed2818b {
    justify-self: start;
  }

  #w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952bd-3ed2818b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-c45a12ce-d1cb-3a1b-2a1c-4505d1689d11-3ed28195 {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b1898-6c6b1892 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b189a-6c6b1892, #w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b18b4-6c6b1892 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b18df-6c6b1892 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-fac27b60-9ab7-600d-edb6-73b48f1834db-f5834197 {
    place-self: auto;
  }

  #w-node-_8997ff83-87fc-75b0-8aee-058eeaed16e7-3ed28145 {
    justify-self: auto;
  }

  #w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952bd-3ed2818b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952bf-3ed2818b, #w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952d3-3ed2818b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952ed-3ed2818b {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_7bdb6ef2-b546-1851-4cb9-c77d074e793f-3ed2818f, #w-node-_7bdb6ef2-b546-1851-4cb9-c77d074e794c-3ed2818f, #w-node-_1dc66b79-d952-2e17-1b97-585591d5920a-3ed2818f, #w-node-_7bdb6ef2-b546-1851-4cb9-c77d074e7956-3ed2818f, #w-node-ba4a0112-6f0d-196d-7918-58625af03669-3ed2818f, #w-node-_2088cc33-5b83-6909-ec96-9fababe52a83-3ed2818f, #w-node-_2088cc33-5b83-6909-ec96-9fababe52a90-3ed2818f, #w-node-_2088cc33-5b83-6909-ec96-9fababe52a9a-3ed2818f, #w-node-_746a0dc1-8cb0-d855-ef9e-6b1869b381a4-3ed2818f, #w-node-_2088cc33-5b83-6909-ec96-9fababe52ab1-3ed2818f, #w-node-_2088cc33-5b83-6909-ec96-9fababe52aa7-3ed2818f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_85cecc26-81bc-384c-204d-d3baaf0ce6c8-3ed280aa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b1898-6c6b1892 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_446bbe3d-9fb7-2c41-e100-9d7c6c6b189a-6c6b1892 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952bd-3ed2818b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4e3f5a16-ad67-49cf-df36-8e3c181952bf-3ed2818b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f91bd0aa-0ac3-feff-28f7-5ba52292ce70-3ed28195, #w-node-_3b1dee39-dd3a-6019-4386-a099a1d13a62-3ed28195 {
    place-self: auto;
  }
}


@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-BoldItalic.ttf') format('truetype'), url('../fonts/NotoSans-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-ExtraBold.ttf') format('truetype'), url('../fonts/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosans';
  src: url('../fonts/NotoSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}