:root {
    --font-family-base:
        'Vorwerk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-sans: var(--font-family-base);
    --font-weight-light: 300;    /* Vorwerk Light */
    --font-weight-normal: 400;   /* Vorwerk Regular */
    --font-weight-semibold: 500; /* Vorwerk Medium */

    /* H1 */
    --text-h1-size: 2.875rem;
    --text-h1-lh:   3.175rem;
    --text-h1-weight: var(--font-weight-light);
    /* H2 – Subheadline */
    --text-h2-size: 2rem;
    --text-h2-lh:   1.3rem;
    --text-h2-weight: var(--font-weight-normal);
    /* H3 – Copy Headline */
    --text-h3-size: 1.2rem;
    --text-h3-lh:   1.1rem;
    --text-h3-weight: var(--font-weight-semibold);
    /* Body */
    --text-body-size: 1.125rem;
    --text-body-lh: 1.5625rem;
    --text-body-weight: var(--font-weight-light);

    --font-size-base: 1rem;
    --line-height-base: 1.5;

    --akf-green: #003228;
    --akf-green-90: #005147;
    --akf-green-10: #EAFFFD;
    --akf-green-hell: #2FA893;

    --ob-digital-blue: #007BBD;
    --ob-digital-blue-90: #027BBD;
    --ob-digital-blue-60: #4E91C4;
    --ob-digital-blue-hell: #04D1FF;
    --ob-digital-blue-hell-60: #77E6FF;
    --ob-digital-blue-hell-10: #EAF9FE;

    --disabled-color-bg: #AAA;
    --disabled-color-border: #888;
}

html {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-size: var(--text-body-size);
    font-weight: var(--text-body-weight);
    line-height: var(--text-body-lh);

    color: var(--akf-green);
}

a {
    color: var(--ob-digital-blue);
    text-decoration: none;
    font-weight: var(--font-weight-normal);
    transition: all 0.5s ease;
}

.card p a {
    text-decoration: underline;
}

a:hover {
    color: var(--ob-digital-blue-60);
    text-decoration: none;
}

#main a:not(.button) {
    color: var(--ob-digital-blue);
    text-decoration: underline;
}

#main a:not(.button):hover {
    color: var(--ob-digital-blue-60);
    text-decoration: underline;
}

h1, h2, h3 {
    font-family: var(--font-family-base);
    color: var(--akf-green);
}

h1 {
    font-size: var(--text-h1-size);
    line-height: var(--text-h1-lh);
    font-weight: var(--text-h1-weight);
    text-align: center;
}

h2 {
    font-size: var(--text-h2-size);
    line-height: var(--text-h2-lh);
    font-weight: var(--text-h2-weight);
}

h3 {
    font-size: var(--text-h3-size);
    line-height: var(--text-h3-lh);
    font-weight: var(--text-h3-weight);
    letter-spacing: 0.02em;
}

strong {
    font-weight: var(--font-weight-normal);
}

/* Custom Form Fields */
input[type=radio], input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    background-color: #FFF;
    height: 18px;
    width: 18px;
    border: 1px solid var(--ob-digital-blue);
    cursor: pointer;
    outline: none;
    margin-top: 1px;
    float: left;
    margin-top: 3px;
    margin-right: 10px;
}

.actions input[type=checkbox] {
    float: unset;
    margin: .75em 1em;
}

input[type=radio] {
    border-radius: 9px;
}

input[type=radio]:hover, input[type=checkbox]:hover {
    border-color: var(--ob-digital-blue);
    background-color: var(--ob-digital-blue-hell-10);
}

input[type=radio]:hover::before, input[type=checkbox]:hover::before {
    background-color: var(--ob-digital-blue-hell-10);
}

input[type=radio]::before, input[type=checkbox]::before {
    position: absolute;
    content: '';
    background-color: #FFF;
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
}

input[type=radio]::before {
    border-radius: 5px;
}

input[type=radio]:checked, input[type=checkbox]:checked {
    border-color: var(--ob-digital-blue);
}

input[type=radio]:checked::before, input[type=checkbox]:checked::before {
    background-color: var(--ob-digital-blue);
}

input[type=radio] ~ label, input[type=checkbox] ~ label {
    cursor: pointer;
}

input[type=radio].spreaded-radio-no-label + label {
    display: none;
}

input[type=radio]+label, input[type=checkbox]+label, table.radio input[type=radio]+label, table.radio input[type=checkbox]+label {
    padding-left: 28px;
    display: block;
}

#main input[type=radio] ~ label.inline {
    display: inline;
    padding-left: 0;
}

input[type=text], input[type=password], select, textarea {
    border-width: 1px;
    border-style: solid;
    border-color: var(--ob-digital-blue);
    border-radius: 4px;
    width: 100%;
    outline: 0;
    font-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 16px;
    color: var(--akf-green);
    background-color: var(--ob-digital-blue-hell-10);
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
    border-color: var(--ob-digital-blue-90);
    border-width: 2px;
}

input[type=text], input[type=password], select {
    height: 40px;
}

input[type=text]:disabled {
    border-color: var(--disabled-color-border);
    background-color: var(--disabled-color-bg);
    color: white;
}

input[type=text]:read-only {
    cursor: default;
}

input[type=text]:read-only:focus {
    background-color: var(--ob-digital-blue-hell-10);
}

.select-wrapper.inline {
    display: inline-block;
}

.select-wrapper {
    display: block;
}

input[type=text].inline.interjacent, .select-wrapper.inline.interjacent select {
    margin-left: 15px;
}

input[type=text].inline.interjacent + input[type=text].inline.interjacent,
input[type=text].inline.interjacent + .select-wrapper.inline.interjacent select,
.select-wrapper.inline.interjacent + input[type=text].inline.interjacent,
.select-wrapper.inline.interjacent + .select-wrapper.inline.interjacent select {
    margin-left: 0;
}

input[type=text].small, .select-wrapper.small select {
    font-size: 14px;
    padding-right: 22px;
    height: 34px;
}

.select-wrapper.small::after {
    width: 12px;
    right: 7px;
}

input[type=text].inline, .select-wrapper.inline select {
    width: auto;
    display: inline-block;
}

.select-wrapper.inline select {
    margin-right: 0px;
}

.select-wrapper.inline {
    margin-right: 10px;
}

input[type=text].w25 {
    width: 25%;
}

.input-container .suffix {
    padding-left: 15px;
}

textarea {
    width: 100%;
    height: 100px;
    resize: vertical;
    padding-top: 6px;
}

:not(.input-container-placeholder) > input[type=text], input[type=password], textarea, select {
    background-color: var(--ob-digital-blue-hell-10);
}

input[type=text]:focus, input[type=password]:focus, textarea:focus{
    border-color: var(--ob-digital-blue-90);
    border-width: 2px;
}

.inputs-inline input[type=text] {
    display: inline-block;
    width: 180px;
}

.label-inline {
    display: inline;
    cursor: default;
    vertical-align: text-top;
}

label.normal, .label-inline, .input-container .input-list label {
    font-family: inherit !important;
    font-weight: var(--font-weight-light);
}

.dyn-form .inputs-inline label {
    float: left;
}

.inputs-inline input[type=radio] + label, .inputs-inline input[type=checkbox] + label {
    padding-left: 0px;
}

.dyn-form .inputs-inline input[type=text], .dyn-form .inputs-inline select, .dyn-form .inputs-inline span.label-inline {
    margin-left: 15px;
}

.dyn-form .inputs-inline input[type=text], .dyn-form .inputs-inline select {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: -4px;
}

.dyn-form .inputs-inline .select-container, .dyn-form .inputs-inline .select-wrapper {
    display: inline-block;
}

.dyn-form li.inputs-inline {
    padding-bottom: 15px;
}

.input-container {
    margin-bottom: 2rem;
}

.input-container label, .label {
    display: block;
    font-family: inherit;
}

.input-container label {
    font-size: 16px;
    line-height: 25px;
}

label.required:after {
    content: "*";
}

.input-container.submit.submit-left {
    text-align: left;
}

.input-container.submit {
    text-align: right;
}

.input-container.submit .button {
    margin-left: 15px;
}

.input-container.submit.submit-left .button {
    margin-left: 0;
    margin-right: 15px;
}

.input-container-placeholder {
    position: relative;
}

.input-container-placeholder label {
    font-family: inherit;
    font-weight: var(--font-weight-light);
    font-size: 18px;
    color: var(--akf-green);
    line-height: 25px;
    position: absolute;
    top: 17px;
    left: 17px;
    transition: all 0.5s ease;
    pointer-events: none;
}

.input-container-placeholder input:focus + label, .input-container-placeholder input:not(:placeholder-shown) + label {
    padding-left: 8px;
    font-family: inherit;
    font-weight: var(--font-weight-normal);
    font-size: 14px;
    line-height: 18px;
    top: 6px;
}

.input-container-placeholder input:focus + label {
    color: var(--akf-green);
}

.input-container-placeholder input {
    padding-top: 24px;
    height: 54px;
    transition: all 0.5s ease;
    padding-left: 16px;
}

.card {
    margin-bottom: 1.2rem;
}

label.inline {
    display: inline;
}

label.normal {
    font-family: inherit;
    font-weight: var(--font-weight-light);
}

table.radio td {
    padding-right: 30px;
    padding-bottom: 10px;
}

/* Spezifischer Fix für einzeilige Labels in Radio-Tabellen */
.label-inline-force label {
    display: inline !important;
    white-space: nowrap !important;
    width: auto !important;
    font-weight: normal !important;
}

/* Layout-Strukturen */
#header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    background: var(--akf-green);
}

#header .logo {
    padding: 30px;
    display: inline-block;
}

#header .logo img {
    width: auto;
    height: 57px;
    max-width: 100%;
    max-height: 100%;
}

#header-right {
    width: 70%;
    float: right;
}

#header-right-mobile {
    float: right;
}

.nav-trigger {
    width: 36px;
    display: inline-block;
    margin: 23px 15px 10px;
}

.nav-trigger .bar {
    background-color: var(--ob-digital-blue-hell);
    width: 100%;
    height: 1px;
    display: block;
    margin-bottom: 8px;
}

#header-meta {
    padding-top: 10px;
    padding-right: 30px;
    text-align: right;
}

#header-meta .user {
    display: inline-block;
    padding-right: 2rem;
}

#nav-main-wrapper {
    padding-top: 11px;
}

#nav-main {
    font-size: 22px;
    float: right;
    white-space: nowrap;
}

#nav-main li > span,
#nav-main li > a {
    color: #FFFFFF;
    transition: color .15s linear, border .15s linear;
    line-height: 28px;
    text-decoration: none;
}

#nav-main li > span {
    cursor: default;
}

#nav-main a:hover,
#nav-main ul.level_1 > li:hover > span,
#nav-main ul.level_1 > li:focus > span,
#nav-main ul.level_1 > li:focus-within > span {
    color: var(--ob-digital-blue-hell-60);
}

#nav-main li.highlighted > span {
    cursor: pointer;
}

#nav-main ul.level_1 > li.highlighted > span > a {
    color: var(--ob-digital-blue-hell);
}

#nav-main ul.level_1 > li.highlighted > span > a:hover {
    color: var(--ob-digital-blue-hell-60);
}

#nav-main ul.level_1 {
    margin: 0;
    padding: 0;
}

#nav-main ul.level_1 > li {
    float: left;
    padding: 0 15px 6px;
    list-style-type: none;
    position: relative;
}

#nav-main ul.level_2 {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    transition: all 0.3s ease-in-out;
    padding: 25px 43px 25px 25px;
    box-shadow: 1px 5px 34px -7px rgba(0,0,0,.46);
    background-color: var(--akf-green);
    z-index: 10;
    width: auto;
    font-size: 0.8em;
}

#nav-main ul.level_1 > li.last > ul.level_2 {
    left: auto;
    right: -10px;
    width: auto;
}

#nav-main ul.level_1 li:hover > ul.level_2,
#nav-main ul.level_1 li:focus > ul.level_2,
#nav-main ul.level_1 li:focus-within > ul.level_2 {
    display: block;
}

#nav-main a {
    color: var(--ob-digital-blue-hell);
    position: relative;
}

#nav-main a::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 2px;
    background: var(--ob-digital-blue-hell);
    bottom: 2px;
    transition: width .3s;
    border-bottom: 1px solid var(--ob-digital-blue-hell);
}

#nav-main a:hover::before {
    width: 100%;
    border-color: var(--ob-digital-blue-hell-60);
}

#nav-main ul.level_2 a {
    position: relative;
    padding: 5px 0;
    vertical-align: middle;
    display: inline-block;
}

#content {
    padding-top: 100px;
}

#footer {
    background-color: var(--akf-green);
}

#footer-content {
    padding: 24px 0;
}

#footer-content a {
    color: var(--ob-digital-blue-hell);
    border-bottom: 1px solid var(--ob-digital-blue-hell);
}

#footer-content a:hover {
    color: var(--ob-digital-blue-hell-60);
    border-bottom: 1px solid var(--ob-digital-blue-hell-60);
}

#footer-content div,
#footer-content li {
    color: #FFF;
}

#footer-meta {
    text-align: center;
    padding: 14px 0;
}

#nav-footer {
    text-align: center;
    padding: 12px 0;
}

#nav-footer ul {
    margin: 0;
    padding: 0;
}

#nav-footer ul li {
    margin: 0;
    padding: 0 10px;
    display: inline-block;
    list-style: none
}

#footer-contact {
    text-align: center;
    padding: 40px 0 40px;
}

#footer-contact .title {
    font-family: inherit;
    font-weight: var(--font-weight-normal);
}

#footer-contact ul {
    margin: 0;
    padding: 0;
}

#footer-contact ul li {
    margin: 0;
    padding: 0 8px;
    display: inline-block;
    list-style: none;
    position: relative;
}

#footer-contact ul li::after {
    position: absolute;
    content: '|';
    right: -4px;
    top: 0;
}

#footer-contact ul li:last-child::after {
    display: none;
}

/* Buttons */
.button, .button:focus {
    padding: 10px 24px 10px 24px;
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    border-radius: 4px;
    transition: all 0.5s ease;
    border-color: #4a4a4a;
    border-style: solid;
    position: relative;
    color: #4a4a4a;
    background-color: #FFF;
    text-decoration: none;
}

.button.filled {
    width: 100%;
}

.button:not(.button-icon):not(.fa) {
    font-family: inherit;
    font-weight: var(--font-weight-normal);
    padding: 10px 24px;
    margin-bottom: 20px;
}

.button-icon {
    padding: 10px;
    color: var(--akf-green) !important;
    border: none !important;
}

.button-important, .button-important:focus {
    color: var(--ob-digital-blue);
    border-color: var(--ob-digital-blue);
    border-width: 1px;
}

.button-important:disabled {
    background-color: var(--disabled-color-bg);
    border: none;
    color: white;
}

.button-important:not(:disabled):hover {
    background-color: var(--ob-digital-blue-hell-10);
    color: var(--ob-digital-blue);
}

.button-important:active {
    background-color: var(--ob-digital-blue-hell-10);
    box-shadow: inset 1px 1px 10px #333;
}

.button-icon-small {
    padding: 2px 6px;
    font-size: 1.1rem;
}

.button-primary, .button-primary:focus {
    background: var(--ob-digital-blue);
    background-size: 205% 200%;
    transition: all 0.5s ease;
    color: #FFF;
    border-width: 0;
}

.button-primary:not(:disabled):hover {
    color: var(--akf-green);
    background: var(--ob-digital-blue-hell);
    background-position: 0%;
}

.button-primary:disabled,
.button-primary:disabled:active {
    background-color: var(--disabled-color-bg);
    border: none;
    color: white;
}

.button-primary:active {
    background-color: var(--ob-digital-blue-60);
    box-shadow: inset 1px 1px 10px #333;
}

.button-secondary,
.button-secondary:focus,
.button-back,
.button-back:focus,
.cancel,
.cancel:focus {
    color: var(--ob-digital-blue);
    border-color: var(--ob-digital-blue);
    border-width: 1px;
}

.button-secondary:disabled,
.button-back:disabled,
.cancel:disabled {
    background-color: var(--disabled-color-bg);
    border: none;
    color: white;
}

.button-secondary:not(:disabled):hover,
.button-back:not(:disabled):hover,
.cancel:not(:disabled):hover {
    color: var(--ob-digital-blue-hell);
    background: var(--akf-green);
}

.button-secondary:active,
.button-back:active,
.cancel:active {
    background-color: var(--ob-digital-blue-hell-10);
    box-shadow: inset 1px 1px 10px #333;
}

.button-small, .button-small:not(.button-icon):not(.fa) {
    padding: 8px 22px;
    font-size: 16px;
    line-height: 18px;
}

/* Tables & Component Elements */
table.table .actions .button, table.table .actions .button-icon {
    margin: 0 0 3px 3px;
}

table.table {
    width: 100%;
    color: var(--akf-green);
}

table.table, .data-listing, .fieldset {
    margin-bottom: 2rem;
}

table.table td, table.table th, .data-listing-heading, .data-listing-body > .row, .fieldset-heading, .form-heading {
    padding-bottom: 0.5rem;
    padding-top: 0.7rem;
}

table.table td, table.table th {
    border-bottom: 1px solid #878787;
}

.data-listing-heading, .data-listing-body > .row {
    border-bottom: 1px solid #DDDDDD;
}

table tr:first-child:last-child td:first-child:last-child {
    border-bottom: 0;
}

table.table:not(.list-table) td, table.table:not(.list-table) th {
    padding-left: 8px;
    padding-right: 8px;
}

table.table:not(.list-table) td:not(:first-child), table.table:not(.list-table) th:not(:first-child) {
    border-left: 1em solid #FFF;
}

table.table td.amount, table.table th.amount, table.table td.actions, table.table th.actions {
    text-align: right;
}

table.table th, table.table.list-table td {
    vertical-align: middle;
}

table.table:not(.list-table) th {
    border-bottom-width: 2px;
}

table.list-table th, .data-listing-heading, .fieldset-heading, .form-heading {
    padding-top: 1.6rem;
}

table.table th, .data-listing-heading, .fieldset-heading, .form-heading {
    font-weight: var(--font-weight-semibold);
}

.data-listing .data-listing-body {
    padding: 0 15px;
}

.data-listing .label {
    text-align: right;
    margin-bottom: 0;
}

/* Steps System */
.steps {
    counter-reset: step;
    margin-bottom: 3rem;
}

.steps .step .number {
    display: none;
}

.steps .step {
    counter-increment: step;
    position: relative;
}

.steps .step::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--akf-green);
    position: absolute;
    border: none;
    top: 17px;
}

.steps .step.done .title::before {
    content: '';
    background-image: url("/OnlineBankingAntrag/javax.faces.resource/img/check.png.xhtml?loc=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.2rem auto;
}

.steps ul {
    display: flex;
}

.steps ul li {
    flex-grow: 1;
    flex-basis: 0;
}

.steps .row > *:last-child .step::before {
    display: none;
}

.steps .step .title {
    position: relative;
    padding-top: 40px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
    padding-right: 40px;
}

.steps .step .title::before {
    content: counter(step);
    border: 1px solid var(--akf-green-hell);
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 33px;
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    border-radius: 17px;
    text-align: center;
    position: absolute;
    background-color: #FFF;
    top: 0;
    left: 0;
    color: var(--akf-green);
}

.steps .step.current .title::before {
    background: var(--akf-green);
    color: #FFF;
    border: none;
}

.panel {
    background-color: var(--akf-green-10);
    padding: 30px;
    margin-bottom: 3rem;
}

.panel .panel-heading {
    font-family: inherit;
    font-weight: var(--font-weight-normal);
    margin-bottom: 0.7em;
    color: var(--akf-green);
}

.panel-body:last-child, .panel-body:last-child .input-container:last-child:not(:first-child), .panel-body > :last-child .input-container:last-child .button:last-child, .panel-body p:last-child {
    margin-bottom: 0;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    background-image: url("/OnlineBankingAntrag/javax.faces.resource/img/arrow-down.png.xhtml?loc=");
    position: absolute;
    z-index: 5;
    right: 0;
    top: 0;
    bottom: 0;
    width: 36px;
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

select {
    cursor: pointer;
    padding-right: 36px;
    line-height: 20px;
    font-family: inherit;
    font-size: inherit;
    background-color: var(--ob-digital-blue-hell-10);
    border-color: var(--ob-digital-blue);
    color: inherit;
}

.monospace {
    font-family: monospace;
}

.panel select {
    padding-left: 17px;
    height: 40px;
}

p, .paragraph {
    margin-bottom: 16px;
}

/* Blendet komplett leere p-Tags im Inhaltscontainer aus */
#contentMainLong p:empty {
    display: none;
}

ul.listing, ol.listing, ul.list, ol.list {
    padding-left: 25px;
}

ul.listing li, ol.listing li, ul.list li, ol.list li {
    padding-left: 5px;
    margin-bottom: 3px;
}

ul.listing li, ul.list li {
    list-style-type: square;
    padding-left: 0.4em;
    margin-bottom: 0.25em;
    color: #7A868C;
}

ul.listing li ul, ul.list li ul {
    padding-left: 20px;
}

ul.arrow-list {
    padding-left: 35px;
}

ul.arrow-list li {
    padding-left: 0.4em;
    list-style-type: disclosure-closed;
}

ol.listing li, ol.list li {
    list-style: decimal;
}

.float-right {
    float: right;
}

#main .introduction {
    font-size: 20px;
    color: var(--akf-green);
    line-height: 28px;
}

.pagination input, .month-filter input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    background-color: transparent;
    border: 1px solid var(--akf-green-hell);
    color: var(--akf-green);
    margin: 0 5px 10px;
    padding: 2px 10px;
    border-radius: 15px;
}

.pagination input.current, .month-filter input.current {
    color: #FFF;
    background-color: var(--akf-green);
    border: none;
}

.pagination input:hover, .month-filter input:hover {
    color: var(--akf-green);
    border: 1px solid var(--akf-green);
    background-color: var(--akf-green-10);
}

.pagination {
    padding-top: 15px;
    padding-bottom: 30px;
    text-align: center;
}

.month-filter {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: right;
}

.month-filter .year-container {
    display: inline-block;
    padding: 0 15px 0 30px;
}

.month-filter .year-container.last-year {
    color: #D9DBDC;
}

.error {
    color: #8E1E1E;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0;
}

#security-info {
    text-align: center;
    padding-top: 50px;
    font-size: 1.4rem;
}

#security-info .label {
    display: inline;
    font-weight: var(--font-weight-normal);
}

.form-buttons .button {
    margin-right: 2rem;
}

.padding-top-s {
    padding-top: 15px;
}

.padding-bottom-s {
    padding-bottom: 15px;
}

.margin-top-m {
    margin-top: 22px;
}

.margin-right-s {
    margin-right: 15px;
}

#products .interest-rates .label {
    vertical-align: top;
    display: inline;
    float: left;
    margin-right: 0.3rem;
    font-family: inherit;
    font-weight: var(--font-weight-light);
}

#products .interest-rates ul {
    display: inline-block;
}

/* Media Queries für Responsive Design */
@media (max-width: 1199px) {
    #nav-main {
        font-size: 19px;
        transition: all 0.5s ease;
    }

    #nav-main ul.level_1 > li {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 991px) {
    #header {
        transition: all 0.5s ease;
    }

    #header .logo {
        transition: all 0.5s ease;
        padding: 10px 0 10px 15px;
    }

    #header .logo img {
        max-width: 220px;
        max-height: 46px;
    }

    #mno {
        position: relative;
    }

    #mNav {
        position: fixed;
        top: 0;
        z-index: 50;
        right: 0;
        width: 65%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        -webkit-backface-visibility: hidden;
        overflow-x: hidden;
        overflow-y: auto;

        transform: translate(100%, 0);
        background-color: var(--akf-green);
        box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
        padding: 18px 0 18px 18px;
    }

    #mNav .user {
        padding-bottom: 5px;
    }

    #mno:target #mNav {
        position: absolute;
        transform: translate(0, 0);
        overflow: visible;
        transition: transform 500ms ease;
    }

    #mNav .close-trigger {
        width: 20px;
        height: 20px;
        position: relative;
        display: inline-block;
        float: right;
        margin-right: 30px;
    }

    #mNav .close-trigger:after, #mNav .close-trigger:before {
        content: '';
        height: 24px;
        border-left: 1px solid white;
        position: absolute;
        left: 10px;
    }

    #mNav .close-trigger:after {
        transform: rotate(45deg);
    }

    #mNav .close-trigger:before {
        transform: rotate(-45deg);
    }

    #mNav h2, #mNav .menu {
        font-family: inherit;
        font-weight: var(--font-weight-light);
        font-size: 22px;
        color: white;
    }

    #mNav h2 {
        padding: 5px 0;
        line-height: 28px;
    }

    #mNav ul.level_2 {
        padding: 10px 15px;
    }

    #mNav ul.level_2 li {
        padding: 5px 0;
    }
}
