:root {
    --body-bg:#020F12;
     --mainfontcolor: #fff;
    --header-bg: #020303;
    --green: #03E5CC;
    --yellow: #EABF5F;
    --blue: #5CA6B3;
    --neonblue: #09D7E5;
    --grey: #B4B9BA;
   --kontenbubble-bg:#224147;
    --kontenbubble-font:#E9CA76;
    --bgcolor: #020F12;
    --boxcolor: #0C242B;
    --boxcolorlight: #0B2C33;
    --darkbxcolor: #1D262C;
    --bgicon-light: #095760;
    --bgicon-dark: #203D43;
    --footer-bg: #131C24;
    --footer-btn: #7589A3;
    --footer-btn-active: #51B2A9;
    --bordercolor:#000;
    --font: 'Inter';
    --gradient-v1: linear-gradient(135deg, rgba(10, 60, 67, 1) 0%, rgba(12, 120, 129, 1) 100%);
    --gradient-v2: linear-gradient(135deg, rgba(0, 60, 53, 1) 1%, rgba(1, 128, 117, 1) 100%);
    --gradient-v3: linear-gradient(135deg, rgba(40, 101, 236, 1) 0%, rgba(91, 161, 249, 1) 100%);
    --gradient-v4: linear-gradient(135deg, rgba(138, 105, 238, 1) 0%, rgba(190, 177, 248, 1) 100%);
    

}

.theme-greenmining {
    --body-bg:#E8F4E3;
    --mainfontcolor: #000;
    --header-bg: #161D17;
    --green: #6EB04C;
    --yellow: #EABF5F;
    --blue: #6F7E71;
    --neonblue: #B8F428;
    --grey: #777777;
    --kontenbubble-bg:#DDEDD5;
    --kontenbubble-font:#6EB04C;
    --bgcolor: #E8F4E3;
    --darkbxcolor: #161D17;
    --boxcolor: #fff;
    --boxcolorlight: #6EB04C;
    --bgicon-light: #65B73C;
    --bgicon-dark: #253C1E;
    --footer-bg: #161D17;
    --footer-btn: #A5C797;
    --footer-btn-active: #B8F528;
    --bordercolor:#000;
    --gradient-v1: linear-gradient(135deg, rgba(85, 136, 62, 1) 0%, rgba(97, 174, 56, 1) 100%);
    --gradient-v2: linear-gradient(135deg, rgba(0, 60, 53, 1) 1%, rgba(1, 128, 117, 1) 100%);
    --gradient-v3: linear-gradient(135deg, rgba(40, 101, 236, 1) 0%, rgba(91, 161, 249, 1) 100%);
}
.theme-whitevalley {
    --body-bg:#fff;
    --mainfontcolor: #000;
    --btncolor:#523F38;
    --header-bg: #EFE7E4;
    --green: #B08271;
    --yellow: #EABF5F;
    --blue:#523F38;
    --neonblue: #B08271;
    --grey: #777777;
    --kontenbubble-bg:#E2D4CF;
    --kontenbubble-font:#523F38;
    --bgcolor: #E8F4E3;
    --darkbxcolor: #EEE7E4;
    --boxcolor: #EEE7E4;
    --boxcolorlight: #AD7D6C;
    --bgicon-light: #AD7D6C;
    --bgicon-dark: #E2D4CF;
    --footer-bg: #EEE7E4;
    --footer-btn: #AD7D6C;
    --footer-btn-active: #745E4D;
        --bordercolor:#fff;
    --gradient-v1: linear-gradient(135deg, rgba(173, 125, 108, 1) 0%, rgba(212, 172, 156, 1) 100%);
    --gradient-v2: linear-gradient(135deg, rgba(0, 60, 53, 1) 1%, rgba(1, 128, 117, 1) 100%);
    --gradient-v3: linear-gradient(135deg, rgba(40, 101, 236, 1) 0%, rgba(91, 161, 249, 1) 100%);
}

/* inter-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-italic - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/inter-v20-latin-italic.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
    box-sizing: border-box;
}

body {
    color: #fff;
}

section .wrap {
    margin: 0;
}

/* --- Handyrahmen --- */

.phone-frame {
    position: relative;
     width: 100%;
    max-width: 400px; /* größte Breite */
    aspect-ratio: 400 / 830; /* responsive Höhe */
    background: #000;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 4px rgba(255, 255, 255, 0.2) inset;
    border-radius: 65px;
    margin: 0 auto 50px;
}

.phone-hardware {
    position: absolute;
    inset: 0;
    z-index: 100;
    pointer-events: none;

}

.phone-screen {
    position: absolute;
    left: 2.5%;     /* 10px relativ zu 400px */
    top: 7.23%;     /* 60px relativ zu 830px */
    width: 95%;     /* 100% - 2 * 2.5% */
    height: 91.5%;
    overflow: hidden;
    z-index: 99;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

/**
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1005;
}
***/


/* --- Scrollbarer Inhalt --- */
.app-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 0;
    color: var(--mainfontcolor);
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
      background: var(--body-bg);
    font-family: var(--font);
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE und Edge (alt) */
}


/* Chrome, Safari und Co. */
.app-content::-webkit-scrollbar {
    display: none;
}

/* Optional: eigene Scrollbar etwas hübscher (nur WebKit) */
.app-content::-webkit-scrollbar {
    width: 4px;
}

.app-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.app-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
}

.app-view {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(30px);
    transition: all 0.4s ease;
}
.app-view {
    display: none;
}

.app-view.active {
    display: block;
}
.app-view.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* --- Beispiel-Content Styles: kannst ersetzen/löschen --- */

.flex {
    display: flex;
}

.spacebetween {
    justify-content: space-between;
}

.justifycenter {
    justify-content: center;
}

.flexaligncenter {
    align-items: center
}

.flexwrap {
    flex-wrap: wrap;
}

.flexnowrap {
    flex-wrap: nowrap;
}

.vsuper {
    vertical-align: super
}

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

.entry-content ul.nostyle {
    margin: 0;
    padding: 0;
    gap: 10px;
}

.entry-content ul.nostyle li {
    list-style: none;
}

.colorwhite, .colorwhite:hover {
    color: #fff;
}

.colorblack, .colorblack:hover {
    color: #000;
}

.textneon {
    color: var(--neonblue);
}

.boxcolor {
    background: var(--boxcolor);
}

.darkboxcolor {
    background: var(--darkbxcolor);
}

.bigsize {
    font-size: 1.3em;
    font-weight: 600;
}

.mediumsize {
    font-size: 1.2em;
    font-weight: 600;
}

.smallsize {
    font-size: .9em;
}

.headlinesize {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

.center {
    text-align: center
}
.textright {
    text-align: right
}

.blue {
    color: var(--blue);
}

.neonblue {
    color: var(--neonblue);
}

.green {
    color: var(--green);
}

.yellow {
    color: var(--yellow);
}

.grey {
    color: var(--grey);
}

.border-radius {
    border-radius: 20px;
}

.boxcolorlight {
    position: relative;
    background: var(--boxcolorlight);

    padding: 15px 20px;

}
.btncolor{
    color: var(--btncolor);
}
.border-radius-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.multiply{
    mix-blend-mode: multiply;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;


}
.padding{
    padding: 15px 20px;
}
.padding-x-10{
    padding: 0 10px;
}
.p-right {
    right: 0;
}

.p-bottom {
    bottom: 0;
}

.p-right-10 {
    right: 10px;
}

.p-bottom-10 {
    bottom: 10px;
}

.p-right-15 {
    right: 15px;
}

.p-bottom-15 {
    bottom: 15px;
}

.p-left {
    left: 10px;
}

.p-vcenter {
    top: 50%;
    transform: translateY(50%);
}
.m-bottom-10{
    margin-bottom: 10px;
}

.w1-1 {
    width: 100%;
}

.w1-2 {
    width: calc(50% - 10px);
}

.w1-3 {
    width: 33%;
}

.w2-3 {
    width: 60%;
    padding-right: 20px;
}

.space,
.smallspace {
    width: 100%;
    height: 20px;
}

.smallspace {
    height: 10px;
}

img {
    max-width: 100%;
}

.app-content header {

    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0 15px 5px;
}

.app-content header:after {
    position: absolute;
    content: '';
    left: -20px;
    top: 0;
    width: calc(100% + 40px);
    height: 100%;
    background: var(--header-bg);
    z-index: -1;
}

header svg {
    margin-left: 8px;
}


section {
    margin-bottom: 20px;
}

.boxcolor {
    border-radius: 20px;
}

.boxcolor.padding {
    padding: 15px 20px;
}

.boxcolor .accordioncontent > .flex {
    padding: 15px 20px;
}

.icon {
    stroke: white;
    vertical-align: middle;
    z-index: 100;

}

.bgicon {
    width: 40px;
    height: 40px
}
.bgicon .icon{
    max-width: 25px;
}
.bgicon-big {
    width: 70px;
    height: 70px
}

.bgicon:before {
    position: absolute;
    content: '';
    background: var(--bgicon-light);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    top: 0;
}

.bgicon-light {
    margin-bottom: 15px;
}

.bgicon-light:last-child {
    margin-bottom: 0px;
}

.bgicon-light .bgicon {
    width: 45px;
    height: 45px;
    color: var(--neonblue);
}

.bgicon-light .bgicon:before {
    background: var(--bgicon-light);
}

.bgicon-dark .bgicon:before {
    background: var(--bgicon-dark);
}

.bgicon-neon .bgicon:before {
    background: var(--neonblue);
    opacity: .8;
}


.bgicon-light .text {
    width: calc(100% - 60px);
}
.bgicon-dark .bgicon-white .bgicon:before{
    background: #fff;
    opacity: .3;
}
.bgicon-dark .bgicon-white .bgicon svg{
    color: #fff;
}
.text-bgicon {
    width: calc(100% - 50px);
}
.text-bgicon-small {
  width: calc(100% - 30px);
    line-height: 1.3;
}
.icon-info {
    margin-right: 10px;
}

.left {
    color: white;
}

.icon-arrow-left {
    top: 1.3em;
    left: 32px;
}

.boxcolor.padding.gradient {
    padding: 35px 20px 80px 20px;
    overflow: hidden;
}

.boxcolor.padding.gradient.first {
    padding: 35px 20px;
    margin-bottom: 20px;
}

.icon-big-card use {
    opacity: .35;
}

.icon-chart-lines use {
    opacity: .1;
}

.gradient {
    background: var(--gradient-v1);
}

.gradient-v2 {
    background: var(--gradient-v2);
}

.gradient-v3 {
    background: var(--gradient-v3);
}
.gradient-v4 {
    background: var(--gradient-v4);
}
.font-600 {
    font-weight: 600;
}

.margin-x-auto {
    margin: 0 auto
}
.margin-10-auto {
    margin: 10px auto;
}

.button {
    aspect-ratio: 1/1;
    margin-bottom: 15px;
    padding: 0;
    letter-spacing: 0;
text-transform: none;
}

.button:hover {
    background: var(--boxcolorlight);
}
.buttonfull{
    padding: 25px 15px;
    font-weight: bold;
}
.bgicon-dark .bgicon {
    width: 60px;
    height: 60px;
    color: var(--neonblue);
    border-radius: 50%;
    overflow: hidden;
}



.bgicon-dark .gradient-v3 .bgicon {
    color: #fff;
}

.bgicon-dark .gradient-v3 .bgicon::before {
    background: rgba(256, 256, 256, .2)
}

.dummy-set footer {
    position: absolute;
    bottom: 0;
    background: var(--footer-bg);
    padding: 15px 20px 30px;
    z-index: 1000;
}

.dummy-set footer li {
    flex: 1;
    font-size: 13px;
    color: #A5C797;
}

.dummy-set footer li:nth-child(2) {
    margin-right: 60px;
}

.dummy-set footer li .icon {
    height: 22px;
    margin-bottom: 5px;
    stroke:  var(--footer-btn);
}

.dummy-set footer li button {
    border: none;
    padding: 0;
    background: transparent;
    color: var(--footer-btn);
    font-size: 13px;
    font-weight: normal;
}
.dummy-set footer li button:focus {
    outline: none;
}

.dummy-set footer li button:hover,
.dummy-set footer li button:hover .icon,
.dummy-set footer li .active,
.dummy-set footer li .active .icon{
    stroke: var(--footer-btn-active);
    color: var(--footer-btn-active);
}

.dummy-set footer button.plus {
    stroke: var(--bordercolor);
        color: var(--bordercolor);
    background: var(--neonblue);
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--bordercolor);
    top: -30px;
    padding: 0;

}

.dummy-set footer button.plus .icon {
    stroke: var(--bordercolor);
}

.label,
.value {
    font-size: 1.1em;
    font-weight: 600;
}

.p-bottom-0,
.boxcolor .accordioncontent > .p-bottom-0 {
    padding-bottom: 0;
}

.pointnav {
    gap: 8px;
}

.pointnav li a {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grey);
    opacity: .45;
    display: block
}

.pointnav li a.active {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--grey);
    opacity: 1;
}

/* Accordion-Styles */
.accordionheader {
    cursor: pointer;
    user-select: none;
    position: relative;
    border-radius: 20px;
    text-align: left;
    padding-left: 70px;
}

.open .accordionheader {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordionheader:focus {
    color: #fff;
}

.icon-arrow-top {
    transition: transform .25s ease;
}

.boxcolor .accordioncontent {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .2s ease;
    opacity: 0;
}

.boxcolor.open .accordioncontent {
    opacity: 1;
}

.boxcolor.open .icon-arrow-top {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {

    .boxcolor .accordioncontent,
    .icon-arrow-top {
        transition: none;
    }
}


img.centered,
img.aligncenter,
.singular-image {
    margin: 0;
}

.diagramm .btn {
    padding: 15px;
    margin-top: 15px;
}

.diagramm .btn .smallsize {
    padding-top: 7px;
    margin-top: 7px;
    border-top: 1px solid rgba(256, 256, 256, .1)
}

.diagramm .btn.w1-1 .smallsize {
    padding: 0 0 0 15px;
    margin: 0 0 0 15px;
    border-top: 0;
    border-left: 1px solid rgba(256, 256, 256, .1)
}

#thumbnail-gallery {
    color: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 260px;
  margin-top: 20px;
}
#thumbnail-gallery div{
cursor: pointer;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  padding: 10px;
  line-height: 0;
}
@media (max-width: 630px) {
 #thumbnail-gallery {   
     margin-left: 0;
     margin-top: -55px;
    justify-content: center;
     align-items: stretch;
     display: flex
    }
    #thumbnail-gallery div {
    font-size: 0;
    min-height: 100%;
    margin: 0 4px;
    display: flex;
    }
    .phone-frame{
        margin: 30px auto 50px;
    }
}
.is-hidden {
    display: none;
}
.transform-180deg{
    transform: rotate(180deg);
}
.transform-90deg{
    transform: rotate(90deg);
}
.border-bottom{
    border-bottom: 1px solid #C6C6C6;
}
.kontenbubble:before{
    background: var(--kontenbubble-bg);
}
.kontenbubble .icon{
    color: var(--kontenbubble-font);
}
.nobold{
    font-weight: normal;
}
.letter-spacing-1{
    letter-spacing: 1px;
}
.opacity-6{
    opacity: .6;
}
.opacity-6:hover{
    opacity: 1;
}
.yellow-bg{
    background: #EACB77
}
.yellow-color{
    color: #EACB77;
    stroke:#EACB77;
    fill:#EACB77
}
#walletnav li a{
    padding: 5px 10px;
    border-radius: 10px;
}
.kontobewegung .label{
  max-width: 155px;
  overflow: hidden;
  white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width:420px) {
    .diagramm .btn.w1-1 .smallsize{
        margin: 0;
        padding: 0;
    }
    .kontobewegung .label {
        max-width: 35vw;
    }
    .kontobewegung .smallsize{
        font-size: 10px;
    }
}

@media (max-width: 390px) {
    .app-content{
        font-size: 13px;
    }
      .kontobewegung .label {
    max-width: 30vw;
  }
}

@media (max-width: 360px) {
    .app-content{
        font-size: 12px;
    }
}