/*
Base Css
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

a {
    color: inherit;
    text-decoration: inherit;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
:after,
:before {
    box-sizing: border-box;
    margin: 0;
}

h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    h2 {
        margin-bottom: 0;

    }
}

/* STANDARDIZED VALUES */

.mt-65 {
    margin-top: 50px !important;
}

.mt-30 {
    margin-top: 50px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

/* BUTTON */

.btn {
    font-family: "Source Sans Pro", sans-serif;
    color: inherit;
    font-size: 18px;
    line-height: 28px;
    display: inline-flex;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    background-color: transparent;
    padding: 13px 16px;
    justify-content: center;
    width: auto;
    align-items: center;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .btn {
        font-size: 21px;
        line-height: 32px;
    }
}

.btn:hover {
    cursor: pointer;
}

.btn--primary,
.btn--secondary {
    background-color: #2988ff;
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    width: auto;
    font-size: 16px;
    height: 52px;
    padding: 0 16px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
    transition: all 150ms ease-in-out;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.btn--primary:hover,
.btn--secondary:hover {
    color: #fff;
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.3);
    background-color: #2988ff;
    transform: translateY(-1px);
}

.btn--primary:after,
.btn--secondary:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 300ms, opacity 0.8s;
}

.btn--primary:active:after,
.btn--secondary:active:after {
    transform: scale(0, 0);
    opacity: 0.2;
    transition: 0s;
}

@media (min-width: 768px) {

    .btn--primary,
    .btn--secondary {
        font-size: 18px;
        width: auto;
    }
}

.btn--primary[disabled],
.btn--primary-disabled {
    background-color: #495d75;
    color: #d6dde6;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
}

.btn--primary[disabled]:after,
.btn--primary-disabled:after {
    display: none;
}

.btn--primary[disabled]:hover,
.btn--primary[disabled]:active,
.btn--primary[disabled]:focus,
.btn--primary[disabled]:active:focus,
.btn--primary-disabled:hover,
.btn--primary-disabled:active,
.btn--primary-disabled:focus,
.btn--primary-disabled:active:focus {
    background-color: #495d75;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn--flat {
    position: relative;
    background-color: #fff;
    color: #495d75;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    line-height: 28px;
    transition: all 150ms ease-in-out;
    width: auto;
}

.btn--flat:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 32px);
    margin: auto;
    border-bottom: 4px solid;
    border-color: transparent;
    transition: all 150ms ease-in-out;
}

.btn--flat:hover {
    color: #2988ff;
}

.btn--flat:hover:after {
    border-color: #2988ff;
}

.btn--flat-active,
.btn--flat--hover {
    color: #2988ff;
}

.btn--flat-active:after,
.btn--flat--hover:after {
    border-color: #2988ff;
}

.btn--flat--compact {
    font-size: 21px;
    line-height: 33px;
    padding: 4px;
}

.btn--flat--compact:after {
    width: calc(100% - 8px);
}

.btn--flat--responsive:after {
    bottom: 12px;
}

@media (min-width: 1200px) {
    .btn--flat--responsive:after {
        bottom: 0;
    }
}

.btn--ghost {
    border: 2px solid #2988ff;
    font-size: 16px;
    padding: 0 16px;
    color: #2988ff;
    transition: all 150ms ease-in-out;
    height: 52px;
}

.btn--ghost:hover {
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .btn--ghost:hover {
        border-color: #2988ff;
        background-color: #2988ff;
    }
}

@media (min-width: 768px) {
    .btn--ghost {
        background: #2988ff;
        color: #fff;
        font-size: 18px;
    }
}

.btn--ghost--primary {
    background-color: transparent;
    color: #2988ff;
    border: 2px solid #2988ff;
    box-shadow: none;
}

.btn--ghost--primary:hover {
    border-color: #2988ff;
    background-color: inherit;
}

.btn--ghost--primary:hover,
.btn--ghost--primary:active,
.btn--ghost--primary:focus,
.btn--ghost--primary:active:focus {
    color: #2988ff;
}

.btn--ghost--white {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn--ghost--white:hover {
    border-color: #fff;
    background-color: inherit;
}

/* WRAPPER */

.homeday_wrapper {
    width: 100%;
    overflow-y: auto;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #1c3553;
    padding: 0 5vw;
}
@media (min-width: 768px) {
.homeday_wrapper {
    padding: 0;
    font-size: 21px;
    line-height: 32px;
}
}

/* MODAL */

.hd-modal {
    position: fixed;
    z-index: 100;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 16px 91px;
    margin-top: 6vh;
}

@media (min-width: 768px) {
    .hd-modal {
        z-index: 9004 !important;
        margin-top: 140px;
        align-items: center;
    }
}

.hd-modal.hd-modal--custom,
.hd-modal.hd-modal--sliders {
    align-items: flex-start;
}

.hd-modal__overlay {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f1d2e;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hd-modal__container {
    box-shadow: 0 8px 10px rgb(0 0 0 / 20%), 0 16px 24px rgb(0 0 0 / 14%),
    0 6px 30px rgb(0 0 0 / 12%);
    position: relative;
    z-index: 9999;
    width: 100%;
    max-width: 568px;
    padding: 40px 16px 16px;
    background-color: #fff;
    border-radius: 4px;

    overflow: scroll;
}
@media (min-width: 768px) {
    .hd-modal__container{
        max-height: 90%;
    }
}

.hd-modal.hd-modal--sliders .hd-modal__container {
    overflow: visible;
    padding: 0;
    max-width: 768px;
    height: 80vh;
}

@media (min-width: 983px) {
.hd-modal.hd-modal--sliders .hd-modal__container {
    height: 475px;
}
}

@media screen and (min-width: 768px) and (max-width: 982px ) {
    .hd-modal.hd-modal--sliders .hd-modal__container {
        height: 66%;
    }
}

.hd-modal__header {
    display: flex;
    margin-bottom: 4px;
}

.hd-modal.hd-modal--sliders .hd-modal__header {
    display: none;
}

.hd-modal__title {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
}

.hd-modal__body {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.hd-modal.hd-modal--sliders .hd-modal__body {
    margin-bottom: 0;
}

.hd-modal.hd-modal--sliders .hd-modal__body,
.hd-modal.hd-modal--sliders iframe {
    width: 100%;
    height: 100%;
}

.homeday-sliders {
    height: 475px;
}

.hd-modal__close-button {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    background: hsla(0, 0%, 100%, 0.1);
    border: 0;
    cursor: pointer;
}

.hd-modal.hd-modal--sliders .hd-modal__close-button {
    top: -24px;
    width: 24px;
    height: 24px;
    right: 0;
    background: #000;
}

.container {
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    width: auto;
    max-width: 782px !important;
}

/* HERO */

.the-hero {
    overflow: hidden;
}

.the-hero__row {
    display: flex;
    flex-direction: column;
}

.the-hero__column {
    flex: 1;
}

.the-hero__content .the-hero__header {
    width: 100%;
    background-color: #1c3553;
    position: relative;
}

.the-hero__content .the-hero__header img {
    display: block;
    width: calc(100% + 32px);
    height: auto;
    margin-left: -16px;
}

.the-hero__content .the-hero__header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 16px 0;
}

.the-hero__content .the-hero__header h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    padding: 0 0.5rem 0 0.5rem;
}

.the-hero__content .the-hero__header p.subline {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    padding: 0 0.5rem 0 0.5rem;
}

p.intro {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 50px;
}

a.link {
    border-bottom: 2px solid #5ba4ff;
    cursor: pointer;
}

.the-hero__content .the-hero__header h2 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.the-hero__content .the-hero__box {
    padding: 16px 0;
}

.the-hero__content .the-hero__box-heading {
    color: #1c3553;
    margin-bottom: 16px;
    text-align: left;
    font-style: normal;
}

.the-hero__content .the-hero__box-heading p {
    margin: 0 auto 27px auto;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.the-hero__content .the-hero__box .the-hero__ctas {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0 auto;
}

.the-hero__content .the-hero__box .the-hero__cta {
    background: #fff;
    flex: 1;
    position: relative;
    /* border: 2px solid #2988ff; */
    text-align: center;
    color: #1c3553;
    /* border-radius: 8px;
  box-shadow: 5px 5px 10px rgb(0 0 0 / 20%); */
    box-shadow: 0 4px 4px rgb(0 0 0 / 35%), 0 0 4px rgb(0 0 0 / 15%);
    cursor: pointer;
    top: 0;
    transition: all 0.3s;
    margin: 0 auto;
}

.the-button--invisible .btn {
    position: static;
    display: inline-block;
    align-items: unset;
    justify-content: unset;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    outline: 0;
    background-color: transparent;
    font-family: unset;
    font-weight: unset;
    font-size: unset;
    line-height: unset;
    text-align: unset;
    text-decoration: unset;
    -webkit-appearance: none;
    transform: unset;
    box-shadow: none;
    color: inherit;
}

.the-hero__content .the-hero__box .the-hero__cta .btn {
    height: 100%;
    width: 100%;
    padding: 16px;
}

.the-hero__widget-info {
    margin-top: 16px;
    height: 50px;
    position: relative;
    padding-left: 12px;
    left: auto;
}

.is_desktop {
    display: none;
}

.is_mobile {
    display: block;
}

.the-hero__column:last-child {
    display: none;
}

@media screen and (min-width: 984px) {


    .the-hero .container {
        padding-left: 0;
        padding-right: 0;
    }

    .the-hero__column:last-child {
        display: block;
    }

    .the-hero__row {
        flex-direction: row;
    }

    .the-hero__content .the-hero__header {
        position: relative;
        background-color: transparent;
        padding: 0;
        /* right: calc(611px - 100%); */
        width: 707px;
    }

    .the-hero__content .the-hero__header img {
        display: none;
    }

    .the-hero__content .the-hero__header-content {
        position: static;
        color: #1c3553;
        margin-top: 8px;
        margin-bottom: 6px;
        padding: 0;
    }

    .the-hero__content .the-hero__header h1 {
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 25px;
    }


    .the-hero__content .the-hero__box {
        position: relative;
        background-color: #f5f9ff;
        padding-top: 19px;
        padding-left: 39px;
        width: 573px;
        height: 250px;
        border-radius: 5px;
    }

    .the-hero__content .the-hero__box-heading {
        font-size: 18px;
        line-height: 26px;
        font-weight: 700;
        white-space: nowrap;
        margin-bottom: 0;
    }

    .the-hero__content .the-hero__box-heading p {
        margin: 0;
        font-weight: 600;
        font-size: 18px;
        line-height: 26px;
    }

    .the-hero__column:first-child {
        width: 71%;
    }

    .the-hero__column:last-child {
        width: 230px;
    }
}



@media screen and (max-width: 984px) {

    .the-hero__content .the-hero__header:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -16px;
        right: -16px;
        background: linear-gradient(0deg,
        rgba(28, 53, 83, 0.8) 40%,
        rgba(28, 53, 83, 0) 40%);
    }
}

@media screen and (min-width: 768px) {
    .is_desktop {
        display: block;
    }

    .is_mobile {
        display: none;
    }

    .the-hero__content .the-hero__box .the-hero__ctas {
        width: 100%;
        margin-top: 15px;
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: space-around;
    }

    .the-hero__content .the-hero__box .the-hero__cta {
        border-width: 3px;
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        margin-right: 25px;
        width: 150px;
        height: 150px;
    }

    @media screen and (min-width: 768px) and (max-width: 982px ) {
        .the-hero__content .the-hero__box .the-hero__cta {
            width: 100%;
    }
    }

    .the-hero__content .the-hero__box .the-hero__cta .btn {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    @media screen and (min-width: 768px) and (max-width: 844px ) {
        .the-hero__content .the-hero__box .the-hero__cta .btn .slider_icon {
            margin: 0
        }
    }


        .the-hero__content .the-hero__box .the-hero__cta .btn .slider_icon {
            margin: 0 auto;
            width: 107px;
        height: 107px;
    }

    .the-hero__content .the-hero__box .the-hero__cta .btn span {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 16px;
    }
}

@media screen and (max-width: 768px) {
    .the-hero__content_logo {
        width: 155px;
        position: absolute;
        z-index: 10;
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 17px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin: 6px;
    }

    .the-hero__content_logo svg {
        width: 70px;
        height: auto;
    }

    .the-hero__content .the-hero__header:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -16px;
        right: -16px;
        background: linear-gradient(0deg,
        rgba(28, 53, 83, 0.8) 15%,
        rgba(28, 53, 83, 0) 40%);
    }

    .the-hero__content .the-hero__box {
        background: #f5f9ff;
    }

    .the-hero__content .the-hero__box .the-hero__ctas {
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-around;
    }

    .the-hero__content .the-hero__box .the-hero__cta {
        margin: 1px;
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35), 0 0 4px rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        margin-bottom: 16px;
    }

    .the-hero__content .the-hero__box .the-hero__cta .btn {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        align-items: center;
        padding: 8px 25px;
        height: 82px;
    }

    .slider_icon {
        height: auto;
        width: auto;
    }

    .the-hero__content .the-hero__box .the-hero__cta .btn img {
        width: 70px;
    }

    .the-hero__content .the-hero__box .the-hero__cta .btn span {
        font-family: "Source Sans Pro";
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 16px;
        margin-left: 30px;
    }
}

/* Marker */
.mrkr {
    overflow: visible;
    position: relative;
    margin: 35px 6px;
    height: 1px;
    background-color: #787878;
    border: 0;
}

.mrkr:before {
    display: none;
}

.mrkr:before,
.mrkr:after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    position: absolute;
    left: 50%;
    top: -16px;
    padding: 0 6px;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;
    color: #787878;
    content: "Anzeige";
    font-size: 0.75rem;
}

@media screen and (min-width: 984px) {
    .mrkr:before {
        display: inline-block;
        left: 12px;
        -webkit-transform: none;
        transform: none;
    }

    .mrkr:after {
        display: inline-block;
        right: 12px;
        left: auto;
        -webkit-transform: none;
        transform: none;
    }
}

/* homeday_slider_bottom */
.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-around;
}

.homeday_slider_bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-around;
    margin-top: 15px;
}

.homeday_slider_bottom .item {
    background: #f5f9ff;
    /* border-radius: 5px; */
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.homeday_slider_bottom .item>div {
    margin: 10px 25px;
}

.homeday_slider_bottom .item div>.check {
    width: 13px;
    height: 12px;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .homeday_slider_bottom {
        flex-direction: column;
    }

    .homeday_slider_bottom .item>div {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        margin-left: 30px;
    }
}

.row-center {
    justify-content: center !important;
}

.row p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
}

.row strong {
    font-style: normal;
    font-weight: 700;
}

.homeday_real_estate .row {
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 30px;
}

.homeday_real_estate .icon {
    height: 150px;
    width: 150px;
}

.homeday_real_estate .row>.d-w-160 {
    max-width: 430px;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .homeday_real_estate .row {
        flex-direction: column;
    }

    .homeday_real_estate .row div {
        display: flex;
        justify-content: center;
    }

    .homeday_real_estate .row:nth-child(5) {
        flex-flow: column-reverse;
    }

    .homeday_real_estate .row>.d-w-160 {
        max-width: 100%;
    }
}

/* Questions */
.homeday_questions {
    background: #f5f9ff;
    border-radius: 5px;
    padding: 32px;
}

.homeday_questions .item:nth-child(1) {
    margin-left: 26px;
    margin-right: 26px;
    width: 36%;
}

.homeday_questions .item:nth-child(2) {
    min-width: 54%;
}

.homeday_questions .item h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.homeday_questions .item p {
    margin: 16px auto;
    line-height: 20px;
    font-size: 14px;
}

.btn-questions {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    padding: 5px 8px;
    height: auto;
}

.toggleable-content {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 6px;
    margin-top: -32px;
}

.toggleable-content--info .hd-toggle {
    border-radius: 8px;
    border: 1px solid #d6dde6;
    margin-bottom: 16px;
    background-color: #fff;
}

.hd-toggle__body {
    transition-duration: 300ms;
    max-height: 0 ;
}

.hd-toggle--body-is-open {
    max-height: 360px;
}

.hd-toggle--is-open .hd-toggle__control-icon {
    transform: rotate(-90deg);
}

.hd-toggle__control {
    font-family: "Source Sans Pro", sans-serif;
    color: inherit;
    display: block;
    position: relative;
    width: 100%;
    min-height: 32px;
    padding: 0 32px 0 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-align: left;
    transition: outline 0.15s ease-in-out;
}

.hd-toggle__control:not([disabled]) {
    cursor: pointer;
}

.hd-toggle--is-using-mouse .hd-toggle__control {
    outline: 0;
}

.toggleable-content--info .hd-toggle__control {
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    padding: 8px 12px 8px 12px;
    color: black;
}

.toggleable-content--info .hd-toggle__control-icon svg {
    display: inline-block;
}

.hd-toggle__control-icon {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
}

.app-toggle .hd-toggle__control-icon {
    height: 32px;
    width: 32px;
    top: 50%;
    margin-top: -16px;
}

.toggleable-content--info .hd-toggle__control-icon {
    right: 16px;
}

.toggleable-content--info .hd-toggle__control-icon path {
    fill: #006df5;
}

.hd-toggle__body {
    overflow: auto;
    transition-property: max-height;
    transition-timing-function: linear;
}

.toggleable-content .hd-toggle .rich-text {
    padding: 0 16px 32px;
}

.toggleable-content .rich-text p {
    margin-bottom: 16px;
    font-size: 14px;
}

.toggleable-content .rich-text p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .homeday_questions {
        padding: 16px;
    }

    .homeday_questions .row {
        flex-direction: column;
    }

    .homeday_questions .item:nth-child(1) {
        margin: 0 auto;
        width: 100%;
    }

    .homeday_questions .row {
        flex-flow: column-reverse;
    }

    .toggleable-content {
        padding: 0;
        margin-top: 0;
    }
}

/* homeday_advice */
.homeday_frame .advice {
    display: flex;
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: 16px;
}
.homeday_frame .advice {
    margin-bottom: 32px;
}
.homeday_frame .advice__info {
    background-color: #f1efed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    min-width: 90px;
}
.homeday_frame .advice__logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.homeday_frame .advice__logo .svg {
    max-height: 46px;
    max-width: 96px;
    margin-left: 1em;
    height: auto;
}

@media screen and (max-width: 768px) {
    .homeday_advice {
        display: none;
    }

    .homeday_advice_bottom {
        display: block;
    }

    .homeday_advice .advice__right .svg img {
        width: 70px;
        height: 17px;
        margin-left: 0;
    }

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

    .homeday_advice_bottom .item {
        margin: 15px auto;
    }

    .homeday_advice_bottom .item-last {
        align-items: center;
        justify-content: center;
    }

    .px-16 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hd-toggle__control_title {
        z-index: 2;
        position: inherit;
        display: inline-block;
        width: 85%;
        font-size: 12px;
        color: #1C3553;
    }
}

.sz-global-header *,
.sz-global-header *::before,
.sz-global-header *::after {
    box-sizing: inherit;
}

.sz-global-header * {
    margin: 0;
    padding: 0;
}

.sz-global-header {
    box-sizing: border-box;
    font-size: 100%;
}

.sz-global-header button {
    color: inherit;
}
[data-whatintent='keyboard'] .sz-global-header-product-switch *:focus {
    outline: 2px solid #69c1b8;
    outline-offset: -2px;
}
.custom-1nki10h {
    color: #29293a;
    font-family: 'SZSansDigital', 'Neue Helvetica', 'Helvetica', sans-serif;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .custom-1nki10h {
        background-color: #ffffff;
        border-bottom: 2px solid #e0e0e3;
    }
}

.custom-18oklh9 {
    background-color: #29293a;
    color: #ffffff;
    font-family: 'SZSansDigital', 'Neue Helvetica', 'Helvetica', sans-serif;
    height: 40px;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 768px) {
    .custom-18oklh9 {
        height: 30px;
    }
}

.custom-18oklh9 * {
    margin: 0;
    padding: 0;
}

.custom-s1n7u4 {
    border: 0;
    clip: rect(0 0 0 0);
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    font-size: 12px;
    font-weight: 200;
    height: inherit;
    letter-spacing: 0.085em;
    line-height: 40px;
    -webkit-text-decoration: none;
    text-decoration: none;
}

.custom-s1n7u4:active,
.custom-s1n7u4:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

@media screen and (min-width: 768px) {
    .custom-s1n7u4 {
        line-height: 30px;
    }
}

.custom-s1n7u4:active,
.custom-s1n7u4:focus {
    color: #69c1b8;
    padding: 0 10px;
    position: absolute;
}

.custom-5fcpo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.custom-rhxb0u {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    list-style-type: none;
}

.custom-1ib6ddn {
    font-size: 12px;
    font-weight: 200;
    height: inherit;
    letter-spacing: 0.085em;
    line-height: 40px;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 0 10px;
    position: relative;
    -webkit-transition: color 100ms ease-in-out;
    transition: color 100ms ease-in-out;
}

.widget__header{
    display: inline-block;
    margin-left: 50px;
}

@media screen and (min-width: 768px) {
    .custom-1ib6ddn {
        line-height: 30px;
    }
}

.custom-1ib6ddn:hover {
    color: #69c1b8;
}

.custom-1ovk7c8 {
    margin: 0 auto;
    max-width: calc(1000px + (2 * 12px));
}

.custom-1o0i4es {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #e0e0e3;
    -webkit-transition: border-bottom 150ms ease-in-out;
    transition: border-bottom 150ms ease-in-out;
}

@media screen and (min-width: 768px) {
    .custom-1o0i4es {
        border-bottom: none;
        margin-bottom: 6px;
    }
}

.custom-rligzv {
    height: 20px;
    margin: 14px auto 10px;
}

@media screen and (min-width: 768px) {
    .custom-rligzv {
        height: 55px;
        margin-bottom: 0;
        margin-top: 24px;
    }
}

@media screen and (min-width: 768px) {
    .custom-rligzv {
        margin-bottom: 16px;
    }
}

.custom-gth0vq {
    height: inherit;
}
@font-face {
    font-family: "SZSansDigital";
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/4e10fe1ffaa4436c37f6c45486d5b6d9.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/81c30cfdbc61aa0c9b7df55b9989540c.woff) format("woff")
}

@font-face {
    font-family: "SZSansDigital";
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/b8cc1746c0a8538cd47c135ecbc50681.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/cdeefc49602a5bac37237d4037ef5919.woff) format("woff")
}

@font-face {
    font-family: "SZSansDigital";
    font-weight: 700;
    font-style: italic;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/e1abad390eb57e83ac57b59d8081bdff.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/eb13f38102122dc650fe61bfd85ddf71.woff) format("woff")
}

@font-face {
    font-family: "SZSansDigital";
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/b5e0e178c2959ba0ed0e3a551ef038d5.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/5913664e03a497132d3fdbca11e421ab.woff) format("woff")
}

@font-face {
    font-family: "SZSansDigital";
    font-weight: 400;
    font-style: italic;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/1afefad4643a1e5f1a26a9ecd738f043.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/a97636d2ac7e1040042710727b5be4d5.woff) format("woff")
}

@font-face {
    font-family: "SZSansDigital";
    font-weight: 200;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/4532d630eb0fe04f3dd938ce985914dc.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/17dcbef98fc5b8ede7462da2e1d7a235.woff) format("woff")
}

@font-face {
    font-family: "SZ Text";
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/468ccc238a83174a1d6de03c7b5cf738.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/11659784dd5db1dad57e03919b846c0a.woff) format("woff")
}

@font-face {
    font-family: "SZ Text";
    font-stretch: normal;
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/e28037d5f4a9b825a902bc363d8d3e4f.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/e8ba76230c6b001a51c761bc34374b73.woff) format("woff")
}

@font-face {
    font-family: "SZ Text";
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/b70a5eda7bb4723684fbc47b931b4588.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/bb67532463f5ed54586d3fd42e81ad2a.woff) format("woff")
}

@font-face {
    font-family: "SZ Text";
    font-weight: 400;
    font-style: italic;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/a71659b83c8139f165affe8f13d022ae.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/b54f92435ffaab9facb18d0480ad8fb0.woff) format("woff")
}

@font-face {
    font-family: "SZ Text";
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/610fa1e636698d7c57bf3a228657005b.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/775c013657b3ac68ba5e25eb74f41a69.woff) format("woff")
}

@font-face {
    font-family: "SZ Serif";
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/5d0578c5a42a03088c1ac7bfb7b3372c.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/e0b56762db895e637621d700dcc06299.woff) format("woff")
}

@font-face {
    font-family: "SZ Serif";
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/d152a162f75e28dbaa0dd6ca97523f99.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/a541c178a163b1c7b4178fd78766d761.woff) format("woff")
}

@font-face {
    font-family: "SZ Serif";
    font-weight: 500;
    font-style: italic;
    font-stretch: normal;
    font-display: swap;
    src: url(https://www.sueddeutsche.de/assets/woff2/d0a842dc7d72ec7dba4c960c2c524caa.woff2) format("woff2"), url(https://www.sueddeutsche.de/assets/woff/e13f81be1f7eaad7539a7004a79bb464.woff) format("woff")
}
.css-4deb6t-footer {
    color: #71737f;
    font-family: 'SZSansDigital', 'Neue Helvetica', 'Helvetica', sans-serif;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 0.025em;
    line-height: 1.5;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f2f3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 0;
    padding-top: 96px;
    padding-bottom: 72px;
    position: absolute;
    width: 100%;
}
.homeday_frame {
    font-family: Source Sans Pro, sans-serif;
    margin: 10px auto;
    font-size: 18px;
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1c3553;
    min-width: 320px;
    max-width: 770px;
    width: 100%;
    border: none;
    padding-top: 30px;
    padding-bottom: 30px;
}

.homeday_frame .mrkr {
    overflow: visible;
    position: relative;
    margin: 24px 6px 24px;
    height: 1px;
    background: #787878;
    border: 0;
}

.homeday_frame .mrkr:before {
    left: 12px;
}

.homeday_frame .mrkr:before,
.homeday_frame .mrkr:after {
    display: inline-block;
    position: absolute;
    top: -16px;
    padding: 0 6px;
    text-align: center;
    text-transform: uppercase;
    background: #fff;
    color: #787878;
    content: "Anzeige";
    font-size: .75rem;
}

.homeday_frame .mrkr:after {
    right: 12px;
    left: auto;
}

.homeday_frame h4 {
    font-size: 1.5rem;
    line-height: 1.334;
    margin: 8px 0;
    font-weight: 700;
}

.homeday_img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.homeday_frame p {
    font-size: 16px;
    line-height: 1.5;
}

.homeday_frame .slide_container {
    display: flex;
    justify-content: center;
}


.homeday_frame .link_div {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 30px;

}

.homeday_link {
    background-color: #2988ff;
    border-color: #2988ff;
    font-size: 16px;
    line-height: 18px;
    transform: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    text-transform: none;
    text-decoration: none;
    padding: 10px;
    margin: 10px;
}

#homeday_frame_button {
    display: none;
    position: sticky;
    bottom: 10px;
    right: 20px;
    z-index: 99;
    font-family: Source Sans Pro, sans-serif;
    border: none;
    outline: none;
    background-color: #2988ff;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    float: right;
    font-size: 16px;
    height: 32px;
    text-transform: none;
    padding: 0 12px;
}

#homeday_frame_button:hover {
    background-color: #555;
}

@media (min-width: 770px) {
    .homeday_frame {
        font-size: 21px;
        line-height: 32px;
    }
}


/* homeday_advice */
.homeday_advice {
    margin: 25px 10px;
    display: flex;
    font-size: 14px;
    line-height: 1rem;
}

.homeday_advice .advice__center {
    flex: 1;
    display: flex;
    align-items: center;
}

.homeday_advice .advice__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.homeday_advice .advice__right .svg {
    max-height: 46px;
    max-width: 96px;
    margin-left: 1em;
    height: auto;
}

.homeday_advice_bottom {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-around;
    margin-bottom: 28px;
}

.homeday_advice_bottom .item {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    min-width: 33%;
    justify-content: center;
}

.homeday_advice_bottom .item-center {
    align-items: center;
}

.homeday_advice_bottom .item-last {
    align-items: end;
    flex-direction: row;
    justify-content: end;
}

.homeday_advice_bottom .item-last a {
    margin: 0 5px 0 5px;
}

@media screen and (max-width: 768px) {
    .homeday_advice {
        display: none;
    }

    .homeday_advice_bottom {
        display: block;
    }

    .homeday_advice .advice__right .svg img {
        width: 70px;
        height: 17px;
        margin-left: 0;
    }

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

    .homeday_advice_bottom .item {
        margin: 15px auto;
    }

    .homeday_advice_bottom .item-last {
        align-items: center;
        justify-content: center;
    }

    .px-16 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hd-toggle__control_title {
        z-index: 2;
        position: inherit;
        display: inline-block;
        width: 100%;
    }
}
