/* Uncomment and set these variables to customize the grid. */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.fx-row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*margin-right: -1rem;*/
  /*margin-left: -1rem;*/
}

.fx-row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .fx-container {
    width: 46rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .fx-container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .fx-container {
    width: 71rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
.page-header-pre {
    color: rgba(255, 255, 255, .78);
}

.page-header-h1 {
    color: white;
    text-align: start;
    font-size: 50px;
    line-height: 65px;
}

.big-header {
    min-height: 47vh;
    height: 770px;
    width: 100%;
    -webkit-filter: none;
    filter: none;

    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
}

.big-header-no-fixed-height {
    height: auto;
    min-height: auto;
}

.page-header-image-container-v2 {
    /*max-width: 1440px;*/
    max-width: 960px;
    width: 100%;
    height: 380px;
    margin: auto;
}

.page-header-background-img.page-header-background-img-new-style {
    background-size: 555px;
    /*background-position: top center;*/
    background-position: top right;
    padding: 32px;
}

@media (max-width: 999px) {
    .page-header-background-img.page-header-background-img-new-style {
        background-size: 405px;
        background-position: right bottom;
        padding: 32px;
    }
    .big-header {
        min-height: 100%;
        height: inherit;
        flex-direction: column;
    }

    .page-header-image-container .page-header-background-img,
    .page-header-image-container {
        min-height: 350px;
    }

    .page-header-h1 {
        font-size: 26px !important;
        line-height: 32px !important;
        margin-bottom: 16px !important;
        margin-top: 4px !important;
    }

    .page-header-pre {
        font-size: 0.9rem;
    }

    .page-header-paragraph {
        font-size: 18px;
    }
}

.page-header-section-1 {
    margin: auto;
    padding-top: 45px;
    padding-right: 8%;
    padding-bottom: 45px;
    padding-left: 8%;
    max-width: 850px;
}

.page-header-section-full-width {
    margin: auto;
    padding-top: 45px;
    padding-right: 0;
    padding-bottom: 45px;
    padding-left: 0;
    background-color: white;
}

.medium-header {
    min-height: 32vh;
    /*background-color: #03a9f4;*/
    width: 100%;
}

.small-header {
    min-height: 20vh;
    /*background-color: #03a9f4;*/
    width: 100%;
}

.background-1 {
    /*background-image: url("/img/background/icon_bg_trans_wave.png");*/
    /*background-image: url("/img/background/home-image-v3.png");*/
    /*background: linear-gradient(90deg, rgba(119, 119, 119, 1) 0%, rgba(170, 170, 170, 1) 15%, rgba(254, 254, 254, 1) 100%);*/
    /*background-repeat: no-repeat;*/
    /*background-attachment: scroll;*/
    /*background-position: bottom left;*/
    /*background-size: auto 100%;*/
    /*background-color: rgb(119, 119, 119);*/

    background: #83a4d4; /* fallback for old browsers */
    background: linear-gradient(to left, #b6fbff, #83a4d4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.background-1-img {
    /*background-image: url("/img/background/icon_bg_trans_wave.png");*/
    background-image: url("/img/background/home-image-v3.png");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position-x: 35%;
    background-position-y: bottom;

    background-size: auto 100%;

    -webkit-filter: drop-shadow(0px 5px 25px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 5px 25px rgba(0, 0, 0, 0.15));
}

.page-header-paragraph {
    max-width: 400px;
    margin-top: 28px;
    font-size: 20px;
}

.page-header-background-img {
    background-position: top center;
    background-color: #161617;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.page-header-hint {
    bottom: 0px;
    left: 0px;
    padding: 6px;
    position: absolute;
    /*background-color: rgba(255, 255, 255, 0.25);*/
    font-size: 0.8em;
}

.header-checkbox-list {
    margin-top: 30px;
    /*margin-right: 10vw;*/
    color: #fefefe;
}

.header-checkbox-list strong {
    font-size: 1.2rem;
    /*text-shadow: .4px .4px #3a7bd5;*/
}

.header-checkbox-title {
    margin-left: 16px;
    font-size: 20px;
    /*color: rgba(0, 0, 0, 82);*/
    /*flex: 1;*/
    text-align: left;
}

.header-checkbox-icon {
    font-size: 42px;
}


.header-tip-container {
    margin-top: 36px;
    border-radius: 5px;
    border: 1px solid white;
    color: black;
    background-color: rgba(255, 255, 255, 0.25);
    position: relative;
}

.header-tip-title {
    padding: 8px 16px 8px 15px;
    top: -30px;
    left: -16px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    color: var(--primary-color);
    display: flex;
    justify-content: start;
    align-items: center;
}

.header-tip-icon,
.header-checkbox-icon {
    font-size: 42px;
}

.header-tip-title div {
    margin-left: 16px;
    font-size: 20px;
}


.header-tip-smily {
    background-color: #FFFFFF;
    color: var(--primary-color);
    position: absolute;
    bottom: -24px;
    right: -16px;
    border-radius: 50%;
    font-size: 32px;
    padding: 6px;
}

.page-header-h1-second-line {
    color: black;
}

@media (max-width: 768px) {

    .header-checkbox-title {
        font-size: 17px;
    }

    .header-tip-icon,
    .header-checkbox-icon {
        font-size: 36px;
    }

    .header-checkbox-list {
        margin-top: 24px;
    }
    .page-header-background-img.page-header-background-img-new-style {
        background-size: 395px;
        background-position: bottom right;
        padding: 16px;
    }
}

@media (max-width: 600px) {

    .page-header-background-img.page-header-background-img-new-style {
        background-size: 285px;
        background-position: bottom center;
    }
}

.bestseller-insurer-logo {
    height: 55px !important;
}
/* https://github.com/jossef/material-design-icons-iconfont/tree/master/dist/fonts */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: local(''),
    url('/fonts/MaterialIcons-Regular.woff2') format('woff2'),
    url('/fonts/MaterialIcons-Regular.woff') format('woff');
}


/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('/fonts/roboto-v30.woff2') format('woff2'),
    url('/fonts/roboto-v29-latin-regular.woff') format('woff');
    font-display: swap;
}

/* noto-serif-sc-regular - latin */
@font-face {
    font-family: 'Noto Serif SC';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('/fonts/noto-serif-sc-v19-latin-regular.woff2') format('woff2'),
    url('/fonts/noto-serif-sc-v19-latin-regular.woff') format('woff');
    font-display: swap;
}


body, html {
    font-family: 'Roboto', cursive;

    font-size: 18px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Noto Serif SC', cursive;
    text-align: left;
    font-weight: 600;
}

h1 {
    font-size: 3.2rem;
    /*word-break: break-all;*/
}

h2 {
    font-size: 2.56rem;
    /*word-break: break-all;*/
}

h3 {
    font-size: 1.9rem;
    /*word-break: break-all;*/
}

h4 {
    font-size: 1.7rem;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

.break-words {
    word-break: break-all;
}

.no-padding {
    padding: 0;
}

/* Imprint Styles */
.imprint-header {
    background: linear-gradient(135deg, #f0fffe 0%, #e6fffe 100%);
    padding: 3rem 0;
    border-bottom: 1px solid #24b2a5;
}

.imprint-title {
    color: #1a8a7f;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.imprint-main {
    background: #ffffff;
    min-height: 100vh;
}

.imprint-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
    line-height: 1.6;
}

.imprint-section {
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.imprint-section-title {
    color: #1a8a7f;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #24b2a5;
    text-align: left;
}

.imprint-subsection-title {
    color: #1a8a7f;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    text-align: left;
}

.imprint-service-info {
    background: #f0fffe;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #24b2a5;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #1a8a7f;
}

.imprint-company-info {
    margin: 1.5rem 0;
}

.imprint-company-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.imprint-address {
    color: #495057;
    line-height: 1.8;
}

.imprint-address > div {
    margin-bottom: 0.3rem;
}

.imprint-contact-info {
    margin: 1.5rem 0;
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 6px;
}

.imprint-contact-item {
    display: flex;
    margin-bottom: 0.5rem;
}

.imprint-contact-label {
    font-weight: 600;
    color: #495057;
    min-width: 80px;
    margin-right: 1rem;
}

.imprint-contact-value {
    color: #2c3e50;
}

.imprint-registration-info {
    margin: 1.5rem 0;
}

.imprint-license {
    background: #e6fffe;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #24b2a5;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #1a8a7f;
}

.imprint-registration-details {
    margin: 1.5rem 0;
}

.imprint-detail-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.imprint-detail-label {
    font-weight: 600;
    color: #495057;
    min-width: 180px;
    margin-right: 1rem;
    margin-bottom: 0.3rem;
}

.imprint-detail-value {
    color: #2c3e50;
    flex: 1;
}

.imprint-activity-note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin-top: 1.5rem;
    font-weight: 500;
    color: #856404;
}

.imprint-notice-box {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.imprint-notice-info {
    border: 1px solid #bee5eb;
    background: #f1f9fa;
}

.imprint-notice-title {
    background: #d1ecf1;
    color: #0c5460;
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.imprint-notice-content {
    padding: 1.5rem;
}

.imprint-notice-content p {
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.6;
}

.imprint-notice-content p:last-child {
    margin-bottom: 0;
}

.imprint-link {
    color: #24b2a5;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.imprint-link:hover {
    color: #1a8a7f;
    text-decoration: none;
}

/* Authority Information */
.imprint-authority-section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.imprint-authority-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.imprint-authority-info {
    color: #6c757d;
    line-height: 1.8;
}

.imprint-authority-info > div {
    margin-bottom: 0.3rem;
}

/* Legal Text Sections */
.imprint-legal-section {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
    margin-top: 2rem;
}

.imprint-legal-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.imprint-legal-content {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.imprint-legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.imprint-legal-content a:hover {
    color: #004499;
    text-decoration: none;
}

/* Product Information */
.imprint-product-info {
    border-radius: 6px;
    padding: 0;
    margin: 0;
}

/* Legal Lists */
.imprint-legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.imprint-legal-list li {
    background: #f8f9fa;
    margin: 0.5rem 0;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
}

.imprint-legal-list li:hover {
    background: #ffffff;
    border-color: #24b2a5;
    box-shadow: 0 1px 3px rgba(36, 178, 165, 0.1);
}

.imprint-legal-list li::before {
    content: "§";
    color: #24b2a5;
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #e6fffe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .imprint-header {
        padding: 2rem 0;
    }
    
    .imprint-title {
        font-size: 2rem;
    }
    
    .imprint-content {
        padding: 2rem 1rem;
    }
    
    .imprint-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .imprint-section-title {
        font-size: 1.3rem;
    }
    
    .imprint-detail-item {
        flex-direction: column;
    }
    
    .imprint-detail-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .imprint-contact-item {
        flex-direction: column;
    }
    
    .imprint-contact-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 480px) {
    .imprint-content {
        padding: 1.5rem 0.8rem;
    }
    
    .imprint-section {
        padding: 1rem;
    }
    
    .imprint-title {
        font-size: 1.8rem;
    }
}

.no-padding-important {
    padding: 0 !important;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.margin-left-sm {
    margin-left: 10px;
}

.margin-left-md {
    margin-left: 18px;
}

.margin-left-xl {
    margin-left: 25px;
}

.margin-right-xs {
    margin-right: 4px;
}

.margin-right-sm {
    margin-right: 10px;
}

.margin-right-md {
    margin-right: 18px;
}

.margin-right-xl {
    margin-right: 25px;
}

.margin-right-sm {
    margin-right: 10px;
}

.margin-right-md {
    margin-right: 18px;
}

.margin-md {
    margin: 18px;
}

.margin-md {
    margin: 18px;
}

.margin-right-lg {
    margin-right: 25px;
}

.margin-right-xl {
    margin-right: 35px;
}

.margin-top-sm {
    margin-top: 10px;
}

.margin-top-sm-important {
    margin-top: 10px !important;
}

.margin-top-md {
    margin-top: 18px;
}

.margin-top-lg {
    margin-top: 25px;
}

.margin-top-xxl {
    margin-top: 70px;
}

.margin-top-xl {
    margin-top: 35px;
}

.margin-bottom-sm {
    margin-bottom: 10px;
}

.margin-bottom-md {
    margin-bottom: 18px;
}

.margin-bottom-lg {
    margin-bottom: 25px;
}

.margin-bottom-xl {
    margin-bottom: 35px;
}

.padding-left-sm {
    padding-left: 10px;
}

.padding-left-md {
    padding-left: 18px;
}

.padding-left-xl {
    padding-left: 25px;
}

.padding-right-xs {
    padding-right: 4px;
}

.padding-right-sm {
    padding-right: 10px;
}

.padding-right-md {
    padding-right: 18px;
}

.padding-right-xl {
    padding-right: 25px;
}

.padding-right-sm {
    padding-right: 10px;
}

.padding-right-md {
    padding-right: 18px;
}

.padding-md {
    padding: 18px;
}

.padding-lg {
    padding: 25px;
}

.padding-xl {
    padding: 35px;
}

.padding-right-lg {
    padding-right: 25px;
}

.padding-right-xl {
    padding-right: 35px;
}

.padding-top-sm {
    padding-top: 10px;
}

.padding-top-md {
    padding-top: 18px;
}

.padding-top-lg {
    padding-top: 25px;
}

.padding-top-xl {
    padding-top: 35px;
}

.padding-bottom-sm {
    padding-bottom: 10px;
}

.padding-bottom-md {
    padding-bottom: 18px;
}

.padding-bottom-lg {
    padding-bottom: 25px;
}

.padding-bottom-xl {
    padding-bottom: 35px;
}

.padding-side-md {
    padding: 0 18px;
}

.badge-lg {
    font-size: 16px;
}

.full-size {
    width: 100%;
    height: 100%;
}

.no-scroll {
    overflow: hidden;
}

.relative {
    position: relative;
}

.no-margin {
    margin: 0;
}


p {
    text-align: left;
}

@-webkit-keyframes autofill {
    to {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill !important;
    -webkit-animation-fill-mode: both !important;
}

*:focus {
    outline: none;
}

* {
    -webkit-tap-highlight-color: transparent;
}


.alb-blue {
    background-color: #03a9f4;
}

.alb-blue-button {
    background-color: #03a9f4;
}

.btn.alb-blue-button:hover {
    background-color: #036194;
}

.alb-blue-text {
    color: #03a9f4;
}

i.medium.star {
    font-size: 3rem;
}

.no-padding-top {
    padding-top: 0 !important;
}

.section-title {
    font-size: 2.6rem;
    line-height: 110%;
    margin: 24px 0 48px 0;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.82);
    font-weight: bold;
}

.page-footer {
    padding-top: 24px;
    background-color: rgb(245, 245, 247);
    margin-top: 42px;
}

.no-shadow {
    box-shadow: none;
}

h1 {
    margin: 0.8rem 0 0.68rem 0;
}

.gradient-friday {
    background: #83a4d4; /* fallback for old browsers */
    background: linear-gradient(to left, #b6fbff, #83a4d4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.gradient-decent {
    background: #4CA1AF; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #C4E0E5, #4CA1AF); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #C4E0E5, #4CA1AF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.background-2,
.gradient-nighthawk {
    background: #2980b9; /* fallback for old browsers */
    background: linear-gradient(to right, #2c3e50, #2980b9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.gradient-inbox {
    background: #457fca; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #5691c8, #457fca); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #5691c8, #457fca); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}


.gradient-reef {
    background: #00d2ff; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.gradient-mantle {
    background: #24C6DC; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #514A9D, #24C6DC); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #514A9D, #24C6DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.gradient-sexy-blue {
    background: #2193b0; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #6dd5ed, #2193b0); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #6dd5ed, #2193b0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.gradient-cool-sky {
    background: #2980B9; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #FFFFFF, #6DD5FA, #2980B9); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #FFFFFF, #6DD5FA, #2980B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}


@media print {
    .noprint {
        display: none;
        visibility: hidden;
    }
}

.category-grid-item {
    transition: all 200ms linear;
    cursor: pointer;
    margin: 8px;
    text-align: center;
    flex: calc(33.3% - 16px);
    min-width: 300px;
    box-shadow: none;
    -webkit-box-shadow: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.35);
}


.advantages-2-item {
    transition: all 200ms linear;
    margin: 16px 8px;
    text-align: center;
    /*width: 100%;*/
    box-shadow: none;
    -webkit-box-shadow: none;
    display: flex;
    padding: 0;
}

.advantages-2-item:hover,
.category-grid-item:hover {
    -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}

.advantages-2-item .advantages-2-svg {
    height: 128px;
}

.advantages-2-topic {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 32px;
    min-width: 300px;
    background-color: #eaeded;
}

.advantages-2-topic img {
    /*width: 150px;*/
    /*max-width: 150px;*/
}

.advantages-2-savings {
    flex: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.advantages-2-savings-title {
    font-size: 18px;
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
}

.advantages-2-savings-money {
    font-size: 42px;
    font-family: 'Noto Serif SC', cursive;
    font-weight: bold;
}

.advantages-2-savings-hint {
    color: #545454;
}

.advantages-2-details {
    flex: 1.3;
    margin-right: 8px;
}

.advantages-2-downwards-container .material-icons {
    font-size: 62px;
    margin: 12px;
}

ul.alb-ul {
    list-style-type: circle;
    text-align: left;
}

ul.alb-ul li {
    list-style-type: circle;
}

.laser-result-card {
    width: fit-content;
    padding: 24px;
}

.line-through {
    text-decoration: line-through;
}

.underline {
    text-decoration: underline
}

.category-grid-item div,
.category-grid-item object,
.category-grid-item img {
    /*width: 85%;*/
    max-width: 100px;
    height: 100px;
    /*margin: 20px auto 30px auto;*/
    margin: auto;
}

.category-grid-item p {
    color: #545454
}

.fx-column {
    display: flex;
    flex-direction: column;
}

.hint {
    color: #545454;
    text-align: center;
    width: 860px;
    max-width: 90%;
    margin: auto;
}

.hint-white {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    width: 860px;
    max-width: 90%;
    margin: auto;
}

.info {
    color: #545454;
    text-align: center;
    margin: auto;
}

.center-text {
    text-align: center;
}

html, main, body {
    /*background-color: #eaeded;*/
    background-color: #FFFFFF;
}

.section-type-0 {
    background-color: #FFFFFF;
    padding: 45px 0 85px 0;
}

.section-type-1 {
    background-color: #f2f9f4;
    padding: 45px 0 45px 0;
}

.section-type-warn {
    /*background-color: #be5c24;*/
    background: linear-gradient(to right, #f12711, #f5af19); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    padding: 45px 0 85px 0;
    color: white;
}

.section-type-special {
    background-color: rgba(35, 47, 62, 0.7);;
    padding: 45px 0 85px 0;
    color: white;
}

.section-type-2 {
    background-color: #f8f8f8;
    padding: 45px 0 45px 0;
}

.info-video-container {
    display: flex;
    child-align: middle;
    position: relative;
    cursor: pointer;
    transition: all 200ms linear;
}

.info-video-container * {
    transition: all 200ms linear;
}

.info-video-img {
    max-width: 100%;
    max-height: 720px;
}

.info-video-container:hover .info-video-img {
    opacity: 0.55;
}

.info-video-container:hover .info-video-play-button i {
    text-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    color: #245690;
    transform: scale(1.1);
}

.info-video-play-button {
    position: absolute;
    text-align: center;
    top: calc(50% - 82px);
    left: calc(50% - 82px);
}

.info-video-play-button i {
    font-size: 164px;
    color: #03a9f4;
    transition: all 200ms linear;
}

.advantages-container {
    margin: 45px 0;
    flex-wrap: wrap;
}

.advantages-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*border: 1px solid lightgray;*/
    padding: 24px;

    transition: all 200ms linear;
    margin: 8px;
    text-align: center;
    flex: calc(33.3% - 16px);
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: #ffffff;
}

.advantages-item:hover {
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    background-color: white;
    border-radius: 8px;
    border-color: transparent;
}


.advantages-divider {
    height: 1px;
    background-color: #dedede;
    margin: 10px;
}

.advantages-circle {
    margin-bottom: 16px;
    font-family: 'Noto Serif SC', cursive;
}

.circles-text {
    font-size: 42px !important;
    font-family: 'Noto Serif SC', cursive;
    font-weight: bold;
}

.circle-price {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    margin-top: -45px;
    color: rgba(0, 0, 0, 0.6);
}

.advantages-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 16px;
}

.advantages-list-container {
    font-size: 1.2em;
    margin: 12px auto;
    text-align: left;
}

.advantages-circle-container {
    height: 180px;
    width: 180px;
    border: 7px solid #03a9f4;
    border-radius: 50%;


    font-size: 32px;
    position: relative;
}

.advantages-circle-bg {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100%;*/
    width: 100%;
    background-color: #03a9f4;
    position: absolute;
    bottom: 0%;
    top: 20%;
}

.input-field .helper-text.success-icon::after {
    right: 0 !important;
    left: unset;
}

.faqs-container {
    padding: 24px;
    background-repeat: repeat repeat;
    /*background-image: url('/img/background/whatsapp-background.png');*/
}

.rating-number {
    font-size: 32px;
    font-weight: bold;
}

.rating-text {
    color: #262626;
}

.rating-container {
    padding: 32px 0;
}

.rating-img {
    width: 32px;
    height: 32px;
}

.rating-name {
    margin-left: 16px;
    color: rgba(0, 0, 0, 0.55);
}

.rating-title {
    font-weight: bold;
    margin-left: 8px;
}

.rating-date {
    color: rgba(0, 0, 0, 0.55);
    margin-left: 5px;
}

.rating-content {
    text-align: start;
}

.primary-text {
    color: var(--primary-color);
}

.home-h1 {
    margin-top: 50px;
    margin-bottom: 10px;
}

.no-margin-top {
    margin-top: 0;
}

.home-card-title {
    color: rgba(0, 0, 0, 0.87);
    font-size: 36px;
}

.laser-configurator-container {
    width: 640px;
    min-height: 260px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    margin: .5rem auto 1rem auto;
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow .25s;
    transition: -webkit-box-shadow .25s;
    transition: box-shadow .25s;
    padding: 0;
}

.action-button {
    margin: 25px 0 6px 0;
    min-width: 450px;
    max-width: 100%;
    padding: 15px 35px;
    font-size: 24px;
    border-radius: 5px;
    transition: all 200ms linear;
    cursor: pointer;

}

.action-button-md {
    text-transform: uppercase;
    /*margin: 25px auto 6px auto;*/
    width: 400px;
    max-width: 100%;
    padding: 15px 35px;
    font-size: 24px;
    border-radius: 5px;
    transition: all 200ms linear;
    cursor: pointer;
    max-height: 90px;

}

.action-button-2-md {
    text-transform: uppercase;
    margin: 3px 10px;
    width: 400px;
    max-width: 100%;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 24px;
    transition: all 200ms linear;
    cursor: pointer;
    max-height: 90px; /*font-weight: bold;*/
    border-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) 1;
    color: #4665dd;
    border: 1px solid;
    background-color: rgb(240, 240, 240);
}

.action-button-2-md:hover {
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.18);
    border-image: linear-gradient(45deg, var(--primary-color), var(--primary-color)) 1;

}


.action-button-sm {
    text-transform: uppercase;
    width: auto;
    max-width: 100%;
    padding: 6px 15px;
    font-size: 13px;
    line-height: 18px;
    border-radius: 5px;
    transition: all 200ms linear;
    cursor: pointer;
    max-height: 90px;
    border: 1px solid #949494;
    color: #fefefe;
    background: var(--primary-color);
    /*background: linear-gradient(to right, var(--primary-color), var(--secondary-color));*/
}

.comparison-card-selected {
    color: #fefefe;
    background: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));

    border-radius: 20px !important;
}

.comparison-card-selected .comparison-item, .comparison-card-selected .comparison-title {
    color: #fefefe;
}

.comparison-card-selected .tariff-choice-action-button {
    background: linear-gradient(to right, #e3e0e0, #e2e2e2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: rgba(0, 0, 0, 0.85);
}

.clickable {
    cursor: pointer;
}

.clickable:hover {
    cursor: pointer;
}

.action-button-light {
    text-transform: uppercase;
    margin: 8px auto 6px auto;
    max-width: 100%;
    /*padding: 15px 35px;*/
    font-size: 16px;
    border-radius: 5px;
    transition: all 200ms linear;
    cursor: pointer;
    max-height: 45px;
    padding: 4px 8px;
    border: 2px solid var(--primary-color);
}

.action-button:hover, .action-button-md:hover, .action-buttonsm:hover, .action-button-light:hover {
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.18);
}

.action-button:hover i, .action-button-md:hover i {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.happiness-warranty {
    color: rgba(0, 0, 0, 0.72);
    font-size: 16px;
}

.action-button i {
    font-size: 32px;
}

.text-sm {
    font-size: 0.8rem;
    line-height: 0.9rem;
}

.text-lg {
    font-size: 1.2rem;
}

.step-title {
    text-align: left;
}

.laser-configurator-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.laser-configurator-title {
    padding: 12px 16px;
    font-size: 2.28rem;
    line-height: 110%;
    font-family: 'Noto Serif SC', cursive;
    text-align: center;

}

.stepper {
    margin: 24px;
    text-align: left;
}

.step-question {
    font-size: 19px;
    color: #262626;
    font-weight: bold;
    margin-bottom: 14px;
}

.step.active .step-title {
    font-weight: bold;
}

.step-action-button {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 150ms linear;
    min-height: 52px;
}

.step-action-button:hover {
    background-color: #dedede;
}

.step-action-button:hover .hover-icon {
    display: block;
}

.hover-icon {
    display: none;
}

.step-img {
    width: 42px;
    font-size: 43px;
    text-align: center;
}

.step-choice-title {
    flex: 1;
    margin-left: 24px;
}

.step-summary-description {
    margin: 18px 0 24px 0;
}

.step-summary-result {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 4px;
    text-align: center;
}

.step-summary-cost {
    text-align: center;
}

.step-summary-actions {
    margin-top: 28px;
}

ul.stepper {
    margin: 1em -24px;
    padding: 0 48px;
}

.collapsible-header {
    font-size: 110%;
}

.collapsible-header i {
    height: 24px;
}

.active .collapsible-header {
    color: #03a9f4;
    background-color: #FFFFFF;
}

.collapsible-header i {
    transition: all 250ms linear;
}

.active .collapsible-header i {
    color: #262626;
}

.collapsible-header i {
    transition: all 250ms linear;
    min-width: 44px;
}

.collapsible-header:hover i {
    color: #03a9f4;
}

.collapsible-header:hover {
    background-color: #eeeeee;
}

.flex {
    flex: 1;
}

.fancy-img-container-glasses {
    background-color: white;
    flex: 50%;
}

.fancy-img-container-vorsorge {
    background-color: lightgray;
    flex: 50%;
}

.fancy-img-container {
    /*box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);*/
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-img {
    width: 600px;
    max-width: 100%;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

.split-container-text {
    flex: 50%;
    padding: 64px;
}


.active .collapsible-header i {
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}

.rating-carousel {
    min-height: 300px;
    height: 300px;
}

.carousel.carousel-slider .carousel-item {
    height: 300px;
    min-height: 300px;
}

.fx-start-center {
    align-items: center;
    justify-content: flex-end;
}

.fx-start-start {
    align-items: start;
    justify-content: flex-start;
}

.fx-center-center {
    align-items: center;
    justify-content: center;
}

.fx-center-start {
    align-items: start;
    justify-content: center;
}

.fx-center-end {
    align-items: end;
    justify-content: center;
}

.fx-end-end {
    align-items: end;
    justify-content: flex-end;
}

.fx-start-end {
    align-items: end;
    justify-content: flex-start;
}

.addition-plus {
    margin-left: 35px;
    font-weight: bold;
}

.line-height-1 {
    line-height: 1 !important;
}

.gradient-text,
.h2-gradient {
    color: var(--primary-color);
    background: -webkit-linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teeth-white-bg {
    background-color: #FFFFFF;
    background-image: url(/img/background/dental-mix-background.png);
    background-repeat: repeat repeat;
}

.white-bg {
    background-color: #FFFFFF;
}

.teeth-lightgrey-bg {
    background-color: #f8f8f8;
    background-image: url(/img/background/dental-mix-background-dark.png);
    background-repeat: repeat repeat;
}

.carousel .indicators .indicator-item {
    background-color: rgba(0, 0, 0, 0.45);
}

.carousel .indicators .indicator-item.active {
    background-color: rgba(0, 0, 0, 0.95);
}

.bold {
    font-weight: bold;
}

.first-info p,
.imprint p {
    text-align: left;
    margin-bottom: 16px;
}

.first-info h4 {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    margin-top: 24px;
}

.navigation-first-info {
    background-color: rgba(255, 255, 255, 0.5);
}

.job-offer-header {
    margin: 0 0 24px 0;
    color: #03a9f4;
    word-break: break-all;
}

.job-offer li:before {
    content: "-";
    padding-right: 16px;
}

.job-offer {
    max-width: 820px;
    margin: 48px auto 0 auto;
}


.warranty-button-container {
    width: 100%;
    max-width: 450px;
    margin: 32px auto 0 auto;
}

.job-offer li {
    margin: 6px 0;
}

.team-member {
    margin: 6px 12px;
    text-align: left;
    border-radius: 5px;
    display: flex;
    /*flex-direction: column;*/
    justify-content: flex-start;
}

.card-image {
    width: 100%;
    background: radial-gradient(circle at 18.7% 37.8%, rgb(250, 250, 250) 0%, rgb(225, 234, 238) 90%);
}

.card-image img {
    width: 100%;
    max-height: 100%;
    max-width: 250px;
    margin: auto;
}

.card .card-image img {
    width: fit-content;
}

.card.team-member .card-content p {
    text-align: left;
}

.card-image-team {
    background: radial-gradient(circle at 18.7% 37.8%, rgb(250, 250, 250) 0%, rgb(225, 234, 238) 90%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image-team img {
    height: 200px;
    object-fit: cover;
}

strong {
    font-weight: bold;
}

.contact-container {
    padding: 12px 8px 54px 8px;
    position: relative;

}


.contact-item-container {
    flex: 1;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.contact-item-container a {
    width: 300px;
    max-width: 100%;
}

.contact-item-container:hover .contact-icon {
    color: #03a9f4;
}

.contact-icon {
    font-size: 62px;
    transition: all 250ms linear;
    margin: 8px 24px;
}

.contact-hint {
    color: #545454;
    font-size: 90%;
}

.contact-vertical-divider {
    height: calc(100% - 12px);
    width: 1px;
    background-color: lightgray;
    position: absolute;
    left: 50%;
}

.contact-form .card {
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    max-width: 80%;
    width: 640px;
    margin: 148px auto 62px auto;
    position: relative;
}

.recall-form {
    max-width: 80%;
    width: 640px;
    margin: 24px auto;
    position: relative;
}

.contact-person-container {
    position: absolute;
    left: calc(50% - 106px);
    top: -106px;
}

.contact-person-image {
    border-radius: 50%;
    width: 220px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.card .card-content.contact-card-content {
    padding-top: 25px;
}

.contact-form .card .card-action {
    border-top: none;
}

.input-field textarea,
.input-field input {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-top-right-radius: 5px !important;
    border-top-left-radius: 5px !important;
    padding-left: 8px !important;
}

.input-field label {
    padding-left: 8px;
}

.mein-vorteil-text {
    /*max-width: 100%;*/
    padding: 8px;
    text-align: center;
    width: 50%;
}

.mein-vorteil-rechner {
    max-width: 100%;
    /*min-width: 480px;*/
    width: 50%;
}

input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default), input[type=email]:not(.browser-default), input[type=url]:not(.browser-default), input[type=time]:not(.browser-default), input[type=date]:not(.browser-default), input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default), input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default), textarea.materialize-textarea {
    width: calc(100% - 8px);
}

.input-field {
    margin-bottom: 0;
}


.flyer-img {
    max-height: 400px;
    max-width: 100%;
    margin: 28px 4px;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.process-step-container {
    display: flex;
    flex-direction: row;
}

.process-step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 25px 45px;
    text-align: center;
    color: white;
}

.process-step-icon {
    /*font-size: 84px;*/
    width: 156px;
    height: 156px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    border-radius: 50%;
    margin: auto;
    padding: 6px;
}

.process-step-title {
    font-size: 1.95em;
    font-weight: bold;
    margin: 25px auto 2px auto;
}

.process-step-hint {
    color: rgba(255, 255, 255, 0.7);
}

.process-step-connector {
    flex: 1;
    height: 1px;
    /*background-color: rgba(0, 0, 0, 0.15);*/
}

textarea.materialize-textarea {
    height: 6rem;
}

.timeline-card {
    margin: 0;
    background-color: transparent;
    box-shadow: none;
}

.video-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.success-icon {
    position: absolute !important;
    right: 5px;
    top: 10px;
    font-size: 32px !important;
    width: 40px !important;
    margin: 0 !important;
}

.contact-form-state-container {
    padding: 128px 42px 64px 42px;
    text-align: center;
    justify-content: center;
}

.row-center {
    justify-content: center;
}

.grey-background {
    background-color: #eaeded;
}

.contact-form-state-container i {
    font-size: 64px;
    margin-right: 24px;
}

.contact-form-state-container div {
    font-size: 1.05em;
}

.footer-awards-img {
    width: 135px;
    height: 100%;
}

.award-img {
    width: 450px;
    height: 100%;
    max-width: 100%;
}

.full-loading-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
}


.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-margin {
    margin: auto;
}


.req-container {
    margin: 62px 0 36px 0;
}

.req-title {
    font-size: 32px;
    text-align: left;
    font-weight: bold;
    padding: 16px;
}

.dis-advantages-title {
    font-size: 32px;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid lightgrey;
    padding: 16px;
    margin-bottom: 12px;
}

.dis-advantages-container-parent,
.req-list {
    display: flex;
    flex-wrap: wrap;
}

.req-item {
    flex: calc(33% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    margin: 8px;
}

.req-item-title {
    margin-top: 12px;
}

.req-item-content {
    color: #03a9f4;
    font-weight: bold;
    font-size: 1.1em;
    margin: 12px 0;
}


.dis-advantages-overview {
    display: flex;
    width: 100%;
    max-width: 1220px;
    margin: auto;
}

.dis-advantages-overview-questions {
    flex: 1;
    font-weight: bold;
    min-width: 250px;
}

.dis-advantages-overview-answers {
    text-align: center;
    display: flex;
    background: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0 8px;
    min-width: 158px;
}

.dis-advantages-overview-item,
.dis-advantages-overview-title {
    height: 42px;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);

}

.dis-advantages-overview-title {
    font-size: 1.2em;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 64px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.laser-facts-container {
    width: 100%;
}

.partners-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 48px 0 72px 0;
    flex-wrap: wrap;
}

.wrap {
    flex-wrap: wrap;
}

.partners-container img {
    margin: 16px;
    max-width: 90vw;
}

.header-title {
    margin: 2.8rem 0;
}

.header-icon {
    margin-right: 32px;
    width: 150px;
}

.hiddendiv {
    display: none
}

i.input-field .prefix ~ input, .input-field .prefix ~ textarea, .input-field .prefix ~ label, .input-field .prefix ~ .validate ~ label, .input-field .prefix ~ .helper-text, .input-field .prefix ~ .autocomplete-content {
    width: calc(100% - 3rem) !important;
}

.show-md {
    display: none;
}

.margin30 {
    margin-top: 30px;
}

.hm-logo {
    margin: 12px auto;
    padding: 16px;
    background-image: linear-gradient(35deg, #005e52 10%, #00a075 80%);
    border-radius: 4px;
    display: block;
    /*height: 8.8rem;*/
    position: relative;
    width: 14rem;
    z-index: 5;
}

.insurance-card {
    max-width: 100%;
    width: 973px;
    margin: auto;
    border-radius: 10px;
    /*padding: 10px 0;*/
}

.card.insurance-card .card-content {
    border-radius: 10px;
}

.insurance-card.card .card-content {
    padding: 0;
}


.flyer-card {
    max-width: 98%;
    width: 1040px;
    margin: auto;
    border-radius: 10px;
    padding: 10px 0;
}


.calc-insurance-button-container {
    padding: 8px 32px;
    background-color: #eaeded;
    margin-right: 27px;
    margin-top: -16px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.laser-info-text {
    color: #545454;
    text-align: left;
    font-size: 0.75em;
    max-width: 640px;
    margin: .5rem auto 1rem auto;
}

.ins-row {
    display: flex;
    margin-top: 16px;
}


.ins-row .input-field {
    margin: 0 8px;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 4px 4px 0 0;
}

.ins-row .input-field input {
    margin: 0;
    padding: .75em .75em 0 .75em;
    width: calc(100% - 2 * .75em);
    height: 2.4rem;
}

.ins-row .input-field > label {
    width: calc(100% - 2 * .75em) !important;
    left: .75em;
    right: .75em;
    top: 6px;
>
}

.input-field > input[type]:-webkit-autofill:not(.browser-default) + label, .input-field > input[type=date]:not(.browser-default) + label, .input-field > input[type=time]:not(.browser-default) + label,
.ins-row .input-field > label:not(.label-icon).active {
    -webkit-transform: translateY(-3px) scale(0.7);
    transform: translateY(-3px) scale(0.7);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    left: .7em;
}


.input-field .prefix ~ input, .input-field .prefix ~ textarea, .input-field .prefix ~ label, .input-field .prefix ~ .validate ~ label, .input-field .prefix ~ .helper-text, .input-field .prefix ~ .autocomplete-content {
    margin-left: 3rem;
    width: 92%;
    width: calc(100% - 3rem - 8px);
}

.ins-row .select-wrapper + label {
    top: -11px;
    font-size: 0.7rem;
}

.ins-header {
    display: flex;
    color: #03a9f4;
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #e9e9e9;
}

.selected {
    background-color: #03a9f4 !important;
    color: #e9e9e9;
}

.selected:hover i {
    color: #e9e9e9;
}

.ins-img {
    width: 100px;
    margin-right: 24px;
}

.ins-question {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.ins-switch {
    margin-top: 8px;
    font-size: 16px;
}

.stepper, ul.stepper.horizontal {
    min-height: 820px !important;
}

.ins-yes-no-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    /*margin: 8px;*/
    min-width: 80px;
    transition: all 200ms linear;
    border-radius: 8px;
    height: inherit;
}

.ins-yes-no-container:hover {
    /*background-color: rgba(0, 0, 0, 0.1);*/
}

.ins-yes-no-container i {
    font-size: 35px;
}


.choose-container {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
}

.choose-container .btn,
.choose-container .btn-flat {
    font-size: 17px;
}

.material-tooltip {
    width: 350px;
}

.team-member {
}

.flex-50-gt-md,
.flex-50-gt-sm {
    flex: calc(50% - 24px);
    width: calc(50% - 24px);
}

.flex-50 {
    flex: 50%;
    width: 50%;
}

.flex-33-gt-sm {
    flex: calc(33% - 24px);
    width: calc(33% - 24px);
}

.cite {
    margin: 28px auto;
    max-width: 800px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    font-style: italic;
}

.insurance-main-topic {
    font-weight: bold;
    color: #03a9f4;
}

.insurance-main-topic-money {
    font-weight: bold;
    color: #4CAF50;
}

.border-top {
    border-top: 1px solid lightgray;
}

.border-bottom {
    border-bottom: 1px solid lightgray;
}

.mdl-ol p {
    text-align: left;
}

.sidenav-trigger {
    padding: 0 16px;
}


iframe {
    transition: all 150ms linear 0s;
    width: 1px;
    min-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    vertical-align: baseline;
    background: transparent;
}

.highlight-bigger {
    font-weight: bold;
    font-size: 1.15em;
}

.key-facts {
    padding-top: 12px;
}

.card-subtitle {
    font-size: 14px;
}

.blog-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 24px;
}

.blog-item-title {
    height: 81px;
}

.blog-list-container {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-gap: 20px;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
    color: #545454;
}

.bleaching-card {
    transition: all .25s linear;
    /*box-shadow: 0 3px 3px -2px #4665dd33, 0 3px 4px #4665dd24, 0 1px 8px #4665dd1f;*/
    max-width: 680px;
    border-radius: 12px;
    margin: 36px auto;
    width: 90%;

    /*background-color: rgba(255, 255, 255, 0.23);*/
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    z-index: 5;
    box-shadow: 0 8px 32px 0 rgba(36, 173, 162, 0.34);

    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /*background-image: url('/img/background/whatsapp-background.png');*/
}

.bleaching-card .card-title {
    font-size: 28px;
    line-height: 34px;
}

.bleaching-card .card-title .hint {
    font-size: 18px;
}

.card .card-image img {
    max-width: 100%;
}

.top-right-icon-highlight {
    background-color: var(--primary-color);
    color: #FFFFFF;
    position: absolute;
    top: -24px;
    right: -16px;
    border-radius: 50%;
    font-size: 32px;
    padding: 6px;
}

.background-gradient {
    background: var(--primary-color); /* fallback for old browsers */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.divider-gradient {
    background: var(--primary-color); /* fallback for old browsers */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 1px;
    width: 100%;
}

.background-grey {
    background: #1f1f1f /* fallback for old browsers */
}

.background-white {
    background-color: white;
}

@media (max-width: 1240px) {

    .info-video-img {
        max-width: 100%;
        max-height: 320px;
    }

    .background-1-img {
        background-image: none;
    }

    .nav-wrapper {
        margin: 0 24px 0 30px;
    }


    .process-step {
        padding: 25px 25px;
    }

    .advantages-2-item {
        display: flex;
        flex-direction: column;
        margin: 12px 0;
    }

    .advantages-2-topic {
        width: 100%;
    }

    .advantages-2-topic img {
        width: 100px;
        max-width: 100px;
    }

    .advantages-2-topic h2 {
        font-size: 24px;
        margin: 18px 0;
    }

    .advantages-2-savings {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .advantages-2-savings .key-facts {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 24px;
    }

    .advantages-2-details {
        margin-left: 16px;
    }

    .advantages-2-details.padding-top-xl {
        padding-top: 0px !important;
    }

    .margin-md-gt-lg {
        margin: 0;
    }
}

@media only screen and (min-width: 993px) {
    ul.stepper.horizontal .step .step-content .step-actions {
        position: relative !important;
    }
}

@media (max-width: 992px) {


    .flex-50-gt-md {
        flex: calc(100% - 24px);
        width: calc(100% - 24px);
    }

    .fx-column-lt-lg {
        display: flex;
        flex-direction: column;
    }

    img.giftcard-image {
        height: auto !important;
    }

    #logo-container {
        right: 16px;
        /*left: unset;*/
    }

    .rating-carousel {
        min-height: 200px;
        height: 350px;
    }

    .carousel.carousel-slider .carousel-item {
        height: 350px;
        min-height: 350px;
    }

    .split-container-text {
        flex: 100%;
        padding: 18px;
    }

    .mein-vorteil-text {
        padding: 16px;
        width: 100%;
    }

    .mein-vorteil-rechner {
        width: 100%;
    }

    .comparison-card-description {
        padding: 0px;
    }

    .comparison-card-description .comparison-item {
        font-size: 14px;
        line-height: 16px;
    }

    .comparison-title {
        font-size: 95%;
    }

    .blog-list-container {
        grid-template-columns: 50% 50%;
        grid-gap: 20px;
    }

    .hide-le-lg {
        display: none;
    }
}

@media (max-width: 768px) {


    .comparison-card {
        padding: 12px 12px 8px 12px;
    }

    .dis-advantages-overview-answers {
        margin-top: 28px;
    }

    .hide-le-md {
        display: none;
    }

    .show-md {
        display: block;
    }

    .dis-advantages-overview-questions {
        text-align: left;
    }

    .dis-advantages-overview {
        flex-direction: column;
    }

    .info-video-img {
        max-width: 100%;
        max-height: 220px;
    }

    .action-button {
        font-size: 18px;
        min-width: 150px;
        padding: 15px 15px;
    }

    .advantages-item {
        border-bottom: 1px solid #dedede;
    }

    .process-step-container {
        flex-direction: column;
    }

    .process-step {
        padding: 25px 25px;
    }

    .fancy-img-container {
        width: 240px;
        height: 210px;
        margin-left: 0 !important;
    }

    .happiness-warranty {
        text-align: center;
    }


    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .faqs-container {
        padding: 0;
        width: 100%;
    }

    .faqs-container .collapsible-header .material-icons {
        display: none;
    }


    .timeline-card {
        margin: 24px 4px;
    }

    .dis-advantages-container-parent,
    .req-list {
        flex-direction: column;
    }

    .laser-facts-container {
        width: inherit;
    }

    .dis-advantages-overview-title {
        font-size: 1.1em;
    }

    .dis-advantages-overview-item {
        font-size: 0.9em;
        padding-right: 6px;
        padding-left: 6px;
    }

    .fx-column-lt-lg {
        display: flex;
        flex-direction: column;
    }

    .flex-33-gt-sm,
    .flex-50-gt-sm {
        flex: calc(100% - 24px);
        width: calc(100% - 24px);
    }

    .comparison-title-angeraten {
        font-size: 0.8rem;
    }

    .team-member {
        flex-direction: column;
    }


    .fx-column-lt-md {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 580px) {
    .comparison-title-angeraten {
        font-size: 0.75rem;
    }

    .category-grid-item {
        flex: calc(100% - 16px);
    }
}

@media (max-width: 460px) {
    .info-banner-2 {
        font-size: 13px;
    }

    .blog-list-container {
        grid-template-columns: 100%;
        grid-gap: 0;
    }

    .giftcard-hint-icon {
        display: none;
    }

    .fx-column-lt-md {
        display: flex;
        flex-direction: column;
    }


    .collapsible-header {
        font-size: 17px;
    }

    .contact-form {
        max-width: 98%;
    }

    .recall-form {
        max-width: 98%;
    }

    .contact-item-container {
        flex-direction: column;
    }

    .nav-wrapper {
        margin: 0 8px;
    }

    #logo-container {
        right: 0;
    }
}

@media (max-width: 380px) {
    h1 {
        font-size: 24px;
        word-break: break-all;
    }

    .action-button-md {
        font-size: 22px;
    }

    .info-banner-2 {
        font-size: 10px;
        padding: 4px 2px;
    }
}

a {
    color: var(--primary-color);
}

.header li a:after {
    background-color: var(--primary-color);
}


.category-grid-item:hover .home-card-title,
.category-grid-item:hover .underline,
.category-grid-item:hover .bold,
.category-grid-item:hover strong {
    color: var(--primary-color);
}


.active .collapsible-header {
    color: var(--primary-color);
    background-color: #FFFFFF;
}

.collapsible-header:hover i {
    color: var(--primary-color);
}


.title-sm {
    color: var(--primary-color);
}

.contact-item-container:hover .contact-icon {
    color: var(--primary-color);
}

.header-checkbox-list strong {
    font-size: 1.2rem;
    /*text-shadow: 0.4px 0.4px var(--primary-color);*/
}


input:not([type]):focus:not([readonly]) + label, input[type=text]:not(.browser-default):focus:not([readonly]) + label, input[type=password]:not(.browser-default):focus:not([readonly]) + label, input[type=email]:not(.browser-default):focus:not([readonly]) + label, input[type=url]:not(.browser-default):focus:not([readonly]) + label, input[type=time]:not(.browser-default):focus:not([readonly]) + label, input[type=date]:not(.browser-default):focus:not([readonly]) + label, input[type=datetime]:not(.browser-default):focus:not([readonly]) + label, input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label, input[type=tel]:not(.browser-default):focus:not([readonly]) + label, input[type=number]:not(.browser-default):focus:not([readonly]) + label, input[type=search]:not(.browser-default):focus:not([readonly]) + label, textarea.materialize-textarea:focus:not([readonly]) + label {
    color: var(--primary-color);
}

input:not([type]):focus:not([readonly]),
input[type=text]:not(.browser-default):focus:not([readonly]),
input[type=password]:not(.browser-default):focus:not([readonly]),
input[type=email]:not(.browser-default):focus:not([readonly]),
input[type=url]:not(.browser-default):focus:not([readonly]),
input[type=time]:not(.browser-default):focus:not([readonly]),
input[type=date]:not(.browser-default):focus:not([readonly]),
input[type=datetime]:not(.browser-default):focus:not([readonly]),
input[type=datetime-local]:not(.browser-default):focus:not([readonly]),
input[type=tel]:not(.browser-default):focus:not([readonly]),
input[type=number]:not(.browser-default):focus:not([readonly]),
input[type=search]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid var(--primary-color);
    -webkit-box-shadow: 0 1px 0 0 var(--primary-color);
    box-shadow: 0 1px 0 0 var(--primary-color);
}

input:not([type]):focus:not([readonly]) + label,
input[type=text]:not(.browser-default):focus:not([readonly]) + label,
input[type=password]:not(.browser-default):focus:not([readonly]) + label,
input[type=email]:not(.browser-default):focus:not([readonly]) + label,
input[type=url]:not(.browser-default):focus:not([readonly]) + label,
input[type=time]:not(.browser-default):focus:not([readonly]) + label,
input[type=date]:not(.browser-default):focus:not([readonly]) + label,
input[type=datetime]:not(.browser-default):focus:not([readonly]) + label,
input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label,
input[type=tel]:not(.browser-default):focus:not([readonly]) + label,
input[type=number]:not(.browser-default):focus:not([readonly]) + label,
input[type=search]:not(.browser-default):focus:not([readonly]) + label,
textarea.materialize-textarea:focus:not([readonly]) + label {
    color: var(--primary-color);
}


.margin-auto {
    margin: auto;
}

#myIframeFlyer {
    min-height: 425px;
    background-color: #fff;
}


.giftcard-container {
    padding: 45px 0 85px 0;
}

.giftcard-card {
    background: rgba(35, 47, 62, 0.7);
    color: white;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    position: relative;
}

.giftcard-title {
    margin-bottom: 16px;
}


.giftcard-subtitle {
    color: rgba(255, 255, 255, .72);
    margin-top: 2px;
    /*font-size: 1.34rem;*/
}

img.giftcard-image {
    height: 250px;
    max-width: 100%;
    margin: auto;
}

.giftcard-hint-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #f7981d;
    border-radius: 50%;
    width: 52px;
    height: 52px;

    padding: 10px;
}

.giftcard-hint-icon i.material-icons {
    font-size: 32px;
}

.partners-container a:hover {
    border-radius: 10px;
    transition: all 150ms linear;
}

.partners-container a:hover {
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}

.vertical-line {
    width: 1px;
    height: 80%;
    min-height: 125px;
    margin: 10% 16px;
    background: rgba(255, 255, 255, 0.45);
}

.show-to-hide-animation {
    opacity: 1;
}

.hide-animation {
    opacity: 0;
    transition: opacity 0.6s linear;
}

.hide {
    display: none;
}

#myIframeFlyer,
#myIframeEyes,
#myIframeUkvEyes,
#myIframe {
    border-radius: 10px;
}

.margin-md-gt-lg {
    margin: 16px;
}

.info-banner {
    background: linear-gradient(to left, #ff8d28, #ff7043); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    font-weight: bold;
}

.info-banner-2 {
    background: rgba(0, 0, 0, 0.05); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #ff8d28;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.1);;
}

.new-banner {
    border-radius: 10px;
    padding: 4px 8px;
    margin-left: 6px
}

.choice-bestseller {
    top: -17px;
    left: 33px;
    position: absolute;
    font-size: 12px;
}

.new-badge {
    top: -16px;
    left: 33px;
    position: absolute;
    font-size: 16px;
}

.choice-bestseller .material-icons {
    font-size: 18px;
}

.info-banner-content {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    position: relative;
    line-height: 40px;
    overflow: hidden;
}

.moving-text {
    width: max-content;
    height: 100%;
    line-height: 40px;
    text-align: center;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    animation: move-right-to-left 60s linear infinite;
}

@keyframes move-right-to-left {
    0% {
        transform: translateX(300px);
    }
    100% {
        transform: translateX(-100%);
    }

}

.orange-border {
    border: 1px solid darkorange;
    border-radius: 10px;
}

.comparison-card {
    transition: all .25s linear;
    /*box-shadow: 0 3px 3px -2px #4665dd33, 0 3px 4px #4665dd24, 0 1px 8px #4665dd1f;*/
    border-radius: 12px;
    margin: 0px 6px;
    /*width: 90%;*/

    /*background-color: rgba(255, 255, 255, 0.23);*/
    backdrop-filter: blur(20px);
    /*border: 2px solid rgba(255, 255, 255, 0.1);*/
    padding: 24px 24px 8px 24px;
    z-index: 5;
    box-shadow: 0 8px 32px 0 rgba(173, 172, 172, 0.34);

    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    /*background-image: url('/img/background/whatsapp-background.png');*/

    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    min-width: 175px;
}

.comparison-card:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.comparison-title {
    padding: 16px 6px;
    font-weight: bold;
    /*background-color: var(--primary-color);*/
    min-height: 90px;
    margin: -24px -24px 0 -24px;
    text-align: center;

}

.comparison-insurer {
    height: 100px;

    img {
        width: 100%;
    }
}

.comparison-item {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: row;
    line-height: 32px;
    height: 61px;
}

.comparison-item.center-text {
    text-align: center;
    justify-content: center;
}

.comparison-item-no-border {
    border: none
}

.comparison-checkbox {
    background-color: rgb(247, 247, 247);
    padding: 4px;
    border-radius: 8px;
    color: var(--primary-color);
    margin-right: 16px;
    height: 32px;
    width: 32px;
}

.comparison-checkbox-none {
    background-color: rgba(0, 0, 0, 0.05);
    color: grey;
}

.comparison-checkbox-black {
    color: grey;
}

.comparison-percent {
    font-weight: bold;
}

.comparison-sub-description {
    font-size: 0.8rem;
    /*color: rgba(255, 255, 255, 0.7)*/
    opacity: 0.7;
    margin-top: 3px;
}

.comparison-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1rem;
}

.comparison-price-container {
    padding: 12px;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 0 -26px -10px -26px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    min-height: 100px;
}

.comparison-price {
    font-weight: bold;
    font-size: 28px;
    margin-left: 4px;
    text-align: center;
}

.price-after-discount {
    color: grey;
    margin-top: 4px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.price-after-discount span {
    text-decoration: underline;
}

.comparison-price-pre {
    margin-bottom: 2px;
}

.comparison-selection {
    box-shadow: 0 8px 32px 0 rgba(36, 173, 162, 0.34);

}

.comparison-selection-checkbox {
    position: absolute;

    top: -20px;
    left: calc(50% - 16px);
    height: 32px;
    width: 32px;
    color: white;
    background: -webkit-linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    padding: 4px;
    border-radius: 50%;
}

.comparison-card-container {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    overflow-x: auto;
    flex-wrap: unset;
    margin: auto;
}


.your-age {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
}


.your-age-input #age {
    font-size: 32px;
    text-align: center;
    max-width: 100px;
    width: 100px;
    padding-right: 5px;
}

.age-input-container {
    /*background-color: rgba(255, 255, 255, 0.72);*/
    width: 480px;
    max-width: 98%;
    justify-content: center;
    padding: 24px;

    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(215, 216, 225, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


.comparison-card-light {
    margin: 0px;
    box-shadow: none;
    cursor: default;
    border-radius: 0;
    /*border-right: 1px solid rgba(0, 0, 0, 0.1);*/
}

.comparison-age {
    min-width: 150px;
}


.hints-container {
    font-size: 0.8rem;
}

.text-right {
    text-align: right;
}


.input-field-2 {
    margin-top: 0;
}

textarea.materialize-textarea {
    width: 100%;
}

.input-field-2.input-field textarea,
.input-field-2.input-field input {
    background-color: white !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0 !important;
}

.input-field-2.input-field textarea::placeholder,
.input-field-2.input-field input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.contact-send-button {
    align-items: flex-end;
    background-color: var(--goldenrod);
    border-radius: 50px;
    cursor: pointer;
    padding: 15px 31px;
    min-height: 50px;
    color: black;
    line-height: 20px;
    font-weight: bold;
}

#superchat-widget {
    min-width: auto;
}

.contact-send-button:hover {
    background-color: var(--selective-yellow);
}

.win-table {
    max-width: 640px;
    margin: auto;
}

.win-table-item {
    width: 100%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 6px;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    text-align: left;
}

.win-table-item-title {
    font-weight: bold;
}

.win-table-item-subtitle {
    margin-left: 8px;
    font-size: 0.9rem;
}

.win-table-item-price {
    font-size: 1.2rem;
    margin-left: 8px;
}

.bigger-text {
    font-size: 1.4rem;
}


.comparison-card-description {
    min-width: 123px;
    padding: 24px 24px 8px 24px;
}

.page-header-h2 {
    color: var(--primary-color);
    background: linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    margin: 16px 0;
    line-height: 130%;

}

#hm-container img, #vigo-container img {
    height: 105px;
}

@media (max-width: 768px) {


    .comparison-card {
        padding: 24px 12px 8px 12px;
    }
}

.input-container {
    width: 135px;
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.04);
    /*padding: 16px 0 0 0;*/
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    border-bottom: 1px solid #9da0a1;

}

.calendar-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #111827;
    width: 20px;
    height: 20px;
}

input[type=number]:not(.browser-default).year-input {
    width: 100%;
    /*padding: 16px 0 0 0;*/
    padding: 0;
    height: 50px;
    line-height: 50px;
    border-bottom: none;

    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    outline: none;
    transition: border-color 0.2s;
    font-size: 22px;
    font-weight: bold;
    text-align: center !important;
    margin: 0;
}

input[type=number]:not(.browser-default):focus:not([readonly]).year-input:focus {
    /*border-color: #3B82F6;*/
    border: none;
}


.insurance-comparison-button-container {
    /*border: 3px solid;*/
    /*border-image: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59) 1;*/
    /*border-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) 1;*/
    padding: 4px 12px 4px 18px;
    width: fit-content;
    margin: auto;
< border-radius: 8 px;
    position: relative;
    box-shadow: 4px 4px 15px rgba(18, 194, 233, 0.3),
    -4px -4px 15px rgba(196, 113, 237, 0.3),
    6px 6px 15px rgba(246, 79, 89, 0.3);

}

.insurer-logo-item {
    padding: 8px 16px;
    display: flex;
    justify-content: center;
}

.insurer-logo-item img {
    height: 40px !important;
    max-width: 125px !important;
}

.explanation-section-sm {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.6);
    background-color: white;
    /*margin-bottom: 16px;*/
    padding-left: 16px;
}
.no-wrap{
    flex-wrap: nowrap;
}


.insurance-disclaimer {
    line-height: 1.6;
    padding: 12px;
    text-align: left;
}
.insurance-disclaimer h3 {
    color: #333;
    margin-bottom: 15px;
}
.insurance-disclaimer h4 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}
.insurance-disclaimer ul {
    margin: 10px 0;
    padding-left: 20px;
}
.insurance-disclaimer li {
    margin-bottom: 5px;
}
.insurance-disclaimer p {
    margin-bottom: 15px;
}
.highlight {
    font-weight: bold;
}
.hide-on-mobile {
    display: block;
}
.show-on-mobile{
    display: none ;
}

@media only screen and (max-width: 800px) {
    .hide-on-mobile {
        display: none !important;
    }
    .show-on-mobile{
        display: inline ;
    }
}
/* Header Base Styles */
.header {
    min-height: 65px;
    background-color: white;
    position: relative;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin: 0 80px 0 125px;
    height: 65px;
}

/* Logo Container */
#logo-container {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
}


#logo-container img {
    height: 54px;
}

#logo-container .host {
    line-height: 14px;
    font-size: 11px;
    background-color: #f0f8ff;
    color: #006666;
    padding: 0 6px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-family: monospace;
    border-left: 2px solid #20B2AA;
    margin-left: 4px;
    margin-top: 0;
}
#logo-container img {
    height: auto;
    max-height: 40px;
}

.host {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

/* Desktop Navigation */
.desktop-navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.desktop-navigation li {
    margin: 0 10px;
}

.desktop-navigation a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 50px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.92);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.desktop-navigation a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.desktop-navigation a.selected-nav-item {
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
}

.desktop-navigation a.selected-nav-item:after,
.desktop-navigation a:hover:after {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.desktop-navigation a:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    left: 50%;
    bottom: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    transform: translate(-50%, 0);
    background-color: #20B2AA; /* Türkis für Desktop Navigation */
}

.nav-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 22px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger-line:nth-child(1) {
    top: 8px;
}

.hamburger-line:nth-child(2) {
    top: 16px;
}

.hamburger-line:nth-child(3) {
    top: 24px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateX(-50%) rotate(-45deg);
    top: 16px;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateX(-50%) rotate(45deg);
    top: 16px;
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    list-style: none;
    margin: 0;
    padding: 20px 0;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
}

.mobile-navigation.active {
    display: block;
}

.mobile-navigation li {
    margin: 0;
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.mobile-navigation a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-navigation a.selected-nav-item {
    background-color: rgba(32, 178, 170, 0.1); /* Türkis Background */
    font-weight: bold;
    color: #20B2AA; /* Türkis Text */
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        min-height: 54px; /* Weitere 10px reduziert */
    }
    
    .nav-wrapper {
        margin: 0 20px;
        padding: 0;
        height: 54px; /* Weitere 10px reduziert */
    }

    .desktop-navigation {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
    
    #logo-container img {
        max-height: 42px; /* Angepasst an neue Header-Höhe */
    }
    
    .mobile-navigation {
        top: 54px; /* Angepasst an neue Header-Höhe */
        max-height: calc(100vh - 54px);
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        margin: 0 10px;
    }

    #logo-container img {
        max-height: 40px; /* Noch kleineres Logo für sehr kleine Screens */
    }

    .host {
        display: none;
    }
}
/* CSS for head-with-css-tracking partial */

/* Enhanced styling for automatically loaded CSS indicators */
.auto-css-loaded {
    position: relative;
}

.auto-css-loaded::after {
    content: "✓ Auto CSS";
    position: absolute;
    top: -20px;
    right: 0;
    background: #28a745;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    opacity: 0.8;
    pointer-events: none;
    display: none; /* Hidden by default, can be shown for debugging */
}

/* CSS loading indicator styles */
.css-loading-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: none; /* Hidden by default */
}

/* Debug mode styles - only show when debug parameter is present */
body[data-css-debug="true"] .auto-css-loaded::after {
    display: block;
}

body[data-css-debug="true"] .css-loading-indicator {
    display: block;
}

/* Enhanced meta tag styling */
head {
    /* This won't be visible but helps with organization */
}

/* Print styles for CSS tracking */
@media print {
    .auto-css-loaded::after,
    .css-loading-indicator {
        display: none !important;
    }
}